Version Description
- Added a new feature to enforce strong password on the password field. When this option is enabled in the advanced settings, the members will be required to use a strong password.
Download this release
Release Info
Developer | mra13 |
Plugin | Simple Membership |
Version | 3.6.2 |
Comparing to | |
See all releases |
Code changes from version 3.5.8 to 3.6.2
- classes/class.simple-wp-membership.php +26 -6
- classes/class.swpm-admin-registration.php +12 -3
- classes/class.swpm-auth.php +1 -0
- classes/class.swpm-front-registration.php +16 -1
- classes/class.swpm-registration.php +10 -6
- classes/class.swpm-settings.php +50 -15
- classes/class.swpm-utils-misc.php +3 -2
- classes/class.swpm-utils.php +20 -13
- classes/class.swpm-wp-loaded-tasks.php +9 -1
- images/addons/swpm-bulk-member-importer-from-csv-addon.png +0 -0
- ipn/swpm-stripe-subscription-ipn.php +2 -1
- ipn/swpm_handle_subsc_ipn.php +3 -3
- js/jquery.validationEngine-en.js +4 -0
- languages/simple-membership-de_DE.mo +0 -0
- languages/simple-membership-de_DE.po +848 -531
- languages/simple-membership.pot +779 -585
- readme.txt +29 -1
- simple-wp-membership.php +4 -3
- views/add.php +10 -2
- views/admin_add_ons_page.php +19 -11
- views/admin_edit_level.php +1 -1
- views/admin_tools_settings.php +6 -0
- views/edit.php +10 -2
- views/payments/admin_payment_settings.php +6 -0
- views/payments/payment-gateway/stripe_button_shortcode_view.php +9 -3
classes/class.simple-wp-membership.php
CHANGED
@@ -214,17 +214,37 @@ class SimpleWpMembership {
|
|
214 |
SwpmLog::writeall();
|
215 |
}
|
216 |
|
217 |
-
public static function swpm_login($
|
218 |
-
if (is_user_logged_in()) {
|
219 |
$current_user = wp_get_current_user();
|
220 |
-
|
|
|
221 |
return;
|
222 |
}
|
223 |
}
|
224 |
-
|
225 |
-
|
226 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
227 |
}
|
|
|
|
|
228 |
do_action('swpm_after_login');
|
229 |
if (!SwpmUtils::is_ajax()) {
|
230 |
$redirect_url = apply_filters('swpm_after_login_redirect_url', SIMPLE_WP_MEMBERSHIP_SITE_HOME_URL);
|
214 |
SwpmLog::writeall();
|
215 |
}
|
216 |
|
217 |
+
public static function swpm_login($username, $pass, $rememberme = true) {
|
218 |
+
if (is_user_logged_in()) {
|
219 |
$current_user = wp_get_current_user();
|
220 |
+
SwpmLog::log_auth_debug("static function swpm_login(). User is logged in. WP Username: ". $current_user->user_login, true);
|
221 |
+
if ($current_user->user_login == $username) {
|
222 |
return;
|
223 |
}
|
224 |
}
|
225 |
+
SwpmLog::log_auth_debug("Trying wp_signon() with username: ". $username, true);
|
226 |
+
$user_obj = wp_signon(array('user_login' => $username, 'user_password' => $pass, 'remember' => $rememberme), is_ssl());
|
227 |
+
if ($user_obj instanceof WP_User) {
|
228 |
+
wp_set_current_user($user_obj->ID, $user_obj->user_login);
|
229 |
+
SwpmLog::log_auth_debug("Setting current WP user to: ". $user_obj->user_login, true);
|
230 |
+
} else {
|
231 |
+
SwpmLog::log_auth_debug("wp_signon() failed for the corresponding WP user account.", false);
|
232 |
+
if( is_wp_error( $user_obj ) ) {
|
233 |
+
//SwpmLog::log_auth_debug("Error Message: ". $user_obj->get_error_message(), false);
|
234 |
+
$force_wp_user_sync = SwpmSettings::get_instance()->get_value('force-wp-user-sync');
|
235 |
+
if (!empty($force_wp_user_sync)) {
|
236 |
+
//Force WP user login sync is enabled. Show error and exit out since the WP user login failed.
|
237 |
+
$error_msg = SwpmUtils::_("Error! This site has the force WP user login feature enabled in the settings. We could not find a WP user record for the given username: "). $username;
|
238 |
+
$error_msg .= "<br /><br />" . SwpmUtils::_("This error is triggered when a member account doesn't have a corresponding WP user account. So the plugin fails to log the user into the WP User system.");
|
239 |
+
$error_msg .= "<br /><br />" . SwpmUtils::_("Contact the site admin and request them to check your username in the WP Users menu to see what happened with the WP user entry of your account.");
|
240 |
+
$error_msg .= "<br /><br />" . SwpmUtils::_("The site admin can disable the Force WP User Synchronization feature in the settings to disable this feature and this error will go away.");
|
241 |
+
$error_msg .= "<br /><br />" . SwpmUtils::_("You can use the back button of your browser to go back to the site.");
|
242 |
+
wp_die($error_msg);
|
243 |
+
}
|
244 |
+
}
|
245 |
}
|
246 |
+
|
247 |
+
SwpmLog::log_auth_debug("Triggering swpm_after_login hook.", true);
|
248 |
do_action('swpm_after_login');
|
249 |
if (!SwpmUtils::is_ajax()) {
|
250 |
$redirect_url = apply_filters('swpm_after_login_redirect_url', SIMPLE_WP_MEMBERSHIP_SITE_HOME_URL);
|
classes/class.swpm-admin-registration.php
CHANGED
@@ -80,16 +80,21 @@ class SwpmAdminRegistration extends SwpmRegistration {
|
|
80 |
public function edit_admin_end($id) {
|
81 |
//Check we are on the admin end and user has management permission
|
82 |
SwpmMiscUtils::check_user_permission_and_is_admin('member edit by admin');
|
83 |
-
|
84 |
//Check nonce
|
85 |
if ( !isset($_POST['_wpnonce_edit_swpmuser_admin_end']) || !wp_verify_nonce($_POST['_wpnonce_edit_swpmuser_admin_end'], 'edit_swpmuser_admin_end' )){
|
86 |
//Nonce check failed.
|
87 |
wp_die(SwpmUtils::_("Error! Nonce verification failed for user edit from admin end."));
|
88 |
}
|
89 |
-
|
90 |
global $wpdb;
|
91 |
$query = $wpdb->prepare("SELECT * FROM " . $wpdb->prefix . "swpm_members_tbl WHERE member_id = %d", $id);
|
92 |
$member = $wpdb->get_row($query, ARRAY_A);
|
|
|
|
|
|
|
|
|
|
|
93 |
$email_address = $member['email'];
|
94 |
$user_name = $member['user_name'];
|
95 |
unset($member['member_id']);
|
@@ -101,11 +106,15 @@ class SwpmAdminRegistration extends SwpmRegistration {
|
|
101 |
SwpmUtils::update_wp_user($user_name, $member);
|
102 |
unset($member['plain_password']);
|
103 |
$wpdb->update($wpdb->prefix . "swpm_members_tbl", $member, array('member_id' => $id));
|
|
|
|
|
|
|
|
|
104 |
$message = array('succeeded' => true, 'message' => '<p>Member profile updated successfully.</p>');
|
105 |
$error = apply_filters('swpm_admin_edit_custom_fields', array(), $member + array('member_id' => $id));
|
106 |
if (!empty($error)) {
|
107 |
$message = array('succeeded' => false, 'message' => SwpmUtils::_('Please correct the following:'), 'extra' => $error);
|
108 |
-
SwpmTransfer::get_instance()->set('status', $message);
|
109 |
return;
|
110 |
}
|
111 |
SwpmTransfer::get_instance()->set('status', $message);
|
80 |
public function edit_admin_end($id) {
|
81 |
//Check we are on the admin end and user has management permission
|
82 |
SwpmMiscUtils::check_user_permission_and_is_admin('member edit by admin');
|
83 |
+
|
84 |
//Check nonce
|
85 |
if ( !isset($_POST['_wpnonce_edit_swpmuser_admin_end']) || !wp_verify_nonce($_POST['_wpnonce_edit_swpmuser_admin_end'], 'edit_swpmuser_admin_end' )){
|
86 |
//Nonce check failed.
|
87 |
wp_die(SwpmUtils::_("Error! Nonce verification failed for user edit from admin end."));
|
88 |
}
|
89 |
+
|
90 |
global $wpdb;
|
91 |
$query = $wpdb->prepare("SELECT * FROM " . $wpdb->prefix . "swpm_members_tbl WHERE member_id = %d", $id);
|
92 |
$member = $wpdb->get_row($query, ARRAY_A);
|
93 |
+
// let's get previous membership level
|
94 |
+
$prev_level=false;
|
95 |
+
if ($member) {
|
96 |
+
$prev_level=$member['membership_level'];
|
97 |
+
}
|
98 |
$email_address = $member['email'];
|
99 |
$user_name = $member['user_name'];
|
100 |
unset($member['member_id']);
|
106 |
SwpmUtils::update_wp_user($user_name, $member);
|
107 |
unset($member['plain_password']);
|
108 |
$wpdb->update($wpdb->prefix . "swpm_members_tbl", $member, array('member_id' => $id));
|
109 |
+
// set previous membership level
|
110 |
+
$member['prev_membership_level'] = $prev_level;
|
111 |
+
//Trigger action hook
|
112 |
+
do_action('swpm_admin_end_edit_complete_user_data', $member);
|
113 |
$message = array('succeeded' => true, 'message' => '<p>Member profile updated successfully.</p>');
|
114 |
$error = apply_filters('swpm_admin_edit_custom_fields', array(), $member + array('member_id' => $id));
|
115 |
if (!empty($error)) {
|
116 |
$message = array('succeeded' => false, 'message' => SwpmUtils::_('Please correct the following:'), 'extra' => $error);
|
117 |
+
SwpmTransfer::get_instance()->set('status', $message);
|
118 |
return;
|
119 |
}
|
120 |
SwpmTransfer::get_instance()->set('status', $message);
|
classes/class.swpm-auth.php
CHANGED
@@ -266,6 +266,7 @@ class SwpmAuth {
|
|
266 |
if ($hmac != $hash) {
|
267 |
$this->lastStatusMsg = SwpmUtils::_("Please login again.");
|
268 |
SwpmLog::log_auth_debug("validate() - Bad Hash", true);
|
|
|
269 |
return false;
|
270 |
}
|
271 |
|
266 |
if ($hmac != $hash) {
|
267 |
$this->lastStatusMsg = SwpmUtils::_("Please login again.");
|
268 |
SwpmLog::log_auth_debug("validate() - Bad Hash", true);
|
269 |
+
wp_logout();//Force logout of WP user session to clear the bad hash.
|
270 |
return false;
|
271 |
}
|
272 |
|
classes/class.swpm-front-registration.php
CHANGED
@@ -44,7 +44,9 @@ class SwpmFrontRegistration extends SwpmRegistration {
|
|
44 |
if (empty($membership_level)) {
|
45 |
$joinuspage_link = '<a href="' . $joinuspage_url . '">' . SwpmUtils::_('Join Us') . '</a>';
|
46 |
$free_rego_disabled_msg = '<p>';
|
47 |
-
$free_rego_disabled_msg .= SwpmUtils::_('Free membership is disabled on this site. Please make a payment from the '
|
|
|
|
|
48 |
$free_rego_disabled_msg .= '</p><p>';
|
49 |
$free_rego_disabled_msg .= SwpmUtils::_('You will receive a unique link via email after the payment. You will be able to use that link to complete the premium membership registration.');
|
50 |
$free_rego_disabled_msg .= '</p>';
|
@@ -96,6 +98,17 @@ class SwpmFrontRegistration extends SwpmRegistration {
|
|
96 |
do_action('swpm_front_end_registration_complete'); //Keep this action hook for people who are using it (so their implementation doesn't break).
|
97 |
do_action('swpm_front_end_registration_complete_user_data', $this->member_info);
|
98 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
99 |
$login_page_url = SwpmSettings::get_instance()->get_value('login-page-url');
|
100 |
$after_rego_msg = '<div class="swpm-registration-success-msg">' . SwpmUtils::_('Registration Successful. ') . SwpmUtils::_('Please') . ' <a href="' . $login_page_url . '">' . SwpmUtils::_('Login') . '</a></div>';
|
101 |
$after_rego_msg = apply_filters('swpm_registration_success_msg', $after_rego_msg);
|
@@ -226,6 +239,8 @@ class SwpmFrontRegistration extends SwpmRegistration {
|
|
226 |
$msg_str = '<div class="swpm-profile-update-success">' . SwpmUtils::_('Profile updated successfully. You will need to re-login since you changed your password.') . '</div>';
|
227 |
$message = array('succeeded' => true, 'message' => $msg_str);
|
228 |
unset($member_info['plain_password']);
|
|
|
|
|
229 |
}
|
230 |
|
231 |
$wpdb->update($wpdb->prefix . "swpm_members_tbl", $member_info, array('member_id' => $auth->get('member_id')));
|
44 |
if (empty($membership_level)) {
|
45 |
$joinuspage_link = '<a href="' . $joinuspage_url . '">' . SwpmUtils::_('Join Us') . '</a>';
|
46 |
$free_rego_disabled_msg = '<p>';
|
47 |
+
$free_rego_disabled_msg .= SwpmUtils::_('Free membership is disabled on this site. Please make a payment from the ');
|
48 |
+
$free_rego_disabled_msg .= SwpmUtils::_($joinuspage_link);
|
49 |
+
$free_rego_disabled_msg .= SwpmUtils::_(' page to pay for a premium membership.');
|
50 |
$free_rego_disabled_msg .= '</p><p>';
|
51 |
$free_rego_disabled_msg .= SwpmUtils::_('You will receive a unique link via email after the payment. You will be able to use that link to complete the premium membership registration.');
|
52 |
$free_rego_disabled_msg .= '</p>';
|
98 |
do_action('swpm_front_end_registration_complete'); //Keep this action hook for people who are using it (so their implementation doesn't break).
|
99 |
do_action('swpm_front_end_registration_complete_user_data', $this->member_info);
|
100 |
|
101 |
+
//Check if there is after registration redirect
|
102 |
+
$after_rego_url = SwpmSettings::get_instance()->get_value('after-rego-redirect-page-url');
|
103 |
+
$after_rego_url = apply_filters('swpm_after_registration_redirect_url', $after_rego_url);
|
104 |
+
if(!empty($after_rego_url)){
|
105 |
+
//Yes. Need to redirect to this after registration page
|
106 |
+
SwpmLog::log_simple_debug("After registration redirect is configured in settings. Redirecting user to: " . $after_rego_url, true);
|
107 |
+
wp_redirect($after_rego_url);
|
108 |
+
exit(0);
|
109 |
+
}
|
110 |
+
|
111 |
+
//Set the registration complete message
|
112 |
$login_page_url = SwpmSettings::get_instance()->get_value('login-page-url');
|
113 |
$after_rego_msg = '<div class="swpm-registration-success-msg">' . SwpmUtils::_('Registration Successful. ') . SwpmUtils::_('Please') . ' <a href="' . $login_page_url . '">' . SwpmUtils::_('Login') . '</a></div>';
|
114 |
$after_rego_msg = apply_filters('swpm_registration_success_msg', $after_rego_msg);
|
239 |
$msg_str = '<div class="swpm-profile-update-success">' . SwpmUtils::_('Profile updated successfully. You will need to re-login since you changed your password.') . '</div>';
|
240 |
$message = array('succeeded' => true, 'message' => $msg_str);
|
241 |
unset($member_info['plain_password']);
|
242 |
+
wp_logout();//Log the user out from the WP user session also.
|
243 |
+
SwpmLog::log_simple_debug("Member has updated the password from profile edit page. Logging the user out so he can re-login using the new password.", true);
|
244 |
}
|
245 |
|
246 |
$wpdb->update($wpdb->prefix . "swpm_members_tbl", $member_info, array('member_id' => $auth->get('member_id')));
|
classes/class.swpm-registration.php
CHANGED
@@ -40,10 +40,14 @@ abstract class SwpmRegistration {
|
|
40 |
$body = apply_filters('swpm_registration_complete_email_body', $body);//This filter can be used to modify the registration complete email body dynamically.
|
41 |
|
42 |
//Send notification email to the member
|
43 |
-
$subject=apply_filters('swpm_email_registration_complete_subject',$subject);
|
44 |
-
$body=apply_filters('swpm_email_registration_complete_body',$body)
|
45 |
-
|
46 |
-
|
|
|
|
|
|
|
|
|
47 |
|
48 |
if ($settings->get_value('enable-admin-notification-after-reg')) {
|
49 |
//Send notification email to the site admin
|
@@ -72,8 +76,8 @@ abstract class SwpmRegistration {
|
|
72 |
|
73 |
foreach ($notify_emails_array as $to_email){
|
74 |
$to_email = trim($to_email);
|
75 |
-
$admin_notify_subject=apply_filters('swpm_email_admin_notify_subject',$admin_notify_subject);
|
76 |
-
$admin_notify_body=apply_filters('swpm_email_admin_notify_body',$admin_notify_body);
|
77 |
wp_mail($to_email, $admin_notify_subject, $admin_notify_body, $headers);
|
78 |
SwpmLog::log_simple_debug('Admin notification email sent to: '.$to_email, true);
|
79 |
}
|
40 |
$body = apply_filters('swpm_registration_complete_email_body', $body);//This filter can be used to modify the registration complete email body dynamically.
|
41 |
|
42 |
//Send notification email to the member
|
43 |
+
$subject = apply_filters('swpm_email_registration_complete_subject',$subject);
|
44 |
+
$body = apply_filters('swpm_email_registration_complete_body',$body);//You can override the email to empty to disable this email.
|
45 |
+
if(!empty($body)){
|
46 |
+
wp_mail(trim($email), $subject, $body, $headers);
|
47 |
+
SwpmLog::log_simple_debug('Member registration complete email sent to: '.$email.'. From email address value used: '.$from_address, true);
|
48 |
+
} else {
|
49 |
+
SwpmLog::log_simple_debug('NOTICE: Registration complete email body value is empty. Member registration complete email will NOT be sent.', true);
|
50 |
+
}
|
51 |
|
52 |
if ($settings->get_value('enable-admin-notification-after-reg')) {
|
53 |
//Send notification email to the site admin
|
76 |
|
77 |
foreach ($notify_emails_array as $to_email){
|
78 |
$to_email = trim($to_email);
|
79 |
+
$admin_notify_subject = apply_filters('swpm_email_admin_notify_subject',$admin_notify_subject);
|
80 |
+
$admin_notify_body = apply_filters('swpm_email_admin_notify_body',$admin_notify_body);
|
81 |
wp_mail($to_email, $admin_notify_subject, $admin_notify_body, $headers);
|
82 |
SwpmLog::log_simple_debug('Admin notification email sent to: '.$to_email, true);
|
83 |
}
|
classes/class.swpm-settings.php
CHANGED
@@ -110,15 +110,12 @@ class SwpmSettings {
|
|
110 |
|
111 |
private function tab_3() {
|
112 |
//Register settings sections and fileds for the email settings tab.
|
113 |
-
|
114 |
-
//Show settings updated message when it is updated
|
115 |
-
if (isset($_REQUEST['settings-updated'])) {
|
116 |
-
echo '<div id="message" class="updated fade"><p>' . SwpmUtils::_('Settings updated!') . '</p></div>';
|
117 |
-
}
|
118 |
-
|
119 |
register_setting('swpm-settings-tab-3', 'swpm-settings', array(&$this, 'sanitize_tab_3'));
|
120 |
|
|
|
121 |
add_settings_section('email-misc-settings', SwpmUtils::_('Email Misc. Settings'), array(&$this, 'email_misc_settings_callback'), 'simple_wp_membership_settings');
|
|
|
122 |
add_settings_field('email-misc-from', SwpmUtils::_('From Email Address'), array(&$this, 'textfield_callback'), 'simple_wp_membership_settings', 'email-misc-settings', array('item' => 'email-from',
|
123 |
'message' => 'This value will be used as the sender\'s address for the emails. Example value: Your Name <sales@your-domain.com>'));
|
124 |
|
@@ -177,12 +174,7 @@ class SwpmSettings {
|
|
177 |
|
178 |
private function tab_5() {
|
179 |
//Register settings sections and fileds for the advanced settings tab.
|
180 |
-
|
181 |
-
//Show settings updated message when it is updated
|
182 |
-
if (isset($_REQUEST['settings-updated'])) {
|
183 |
-
echo '<div id="message" class="updated fade"><p>' . SwpmUtils::_('Settings updated!') . '</p></div>';
|
184 |
-
}
|
185 |
-
|
186 |
register_setting('swpm-settings-tab-5', 'swpm-settings', array(&$this, 'sanitize_tab_5'));
|
187 |
|
188 |
add_settings_section('advanced-settings', SwpmUtils::_('Advanced Settings'), array(&$this, 'advanced_settings_callback'), 'simple_wp_membership_settings');
|
@@ -193,9 +185,18 @@ class SwpmSettings {
|
|
193 |
add_settings_field('renewal-page-url', SwpmUtils::_('Membership Renewal URL'), array(&$this, 'textfield_long_callback'), 'simple_wp_membership_settings', 'advanced-settings', array('item' => 'renewal-page-url',
|
194 |
'message' => SwpmUtils::_('You can create a renewal page for your site. Read <a href="https://simple-membership-plugin.com/creating-membership-renewal-button/" target="_blank">this documentation</a> to learn how to create a renewal page.')) );
|
195 |
|
|
|
|
|
|
|
196 |
add_settings_field('allow-account-deletion', SwpmUtils::_('Allow Account Deletion'), array(&$this, 'checkbox_callback'), 'simple_wp_membership_settings', 'advanced-settings', array('item' => 'allow-account-deletion',
|
197 |
'message' => SwpmUtils::_('Allow users to delete their accounts.')));
|
198 |
|
|
|
|
|
|
|
|
|
|
|
|
|
199 |
add_settings_field('use-wordpress-timezone', SwpmUtils::_('Use WordPress Timezone'), array(&$this, 'checkbox_callback'), 'simple_wp_membership_settings', 'advanced-settings', array('item' => 'use-wordpress-timezone',
|
200 |
'message' => SwpmUtils::_('Use this option if you want to use the timezone value specified in your WordPress General Settings interface.')));
|
201 |
|
@@ -208,7 +209,7 @@ class SwpmSettings {
|
|
208 |
'options' => array('manage_options' => 'Admin', 'edit_pages' => 'Editor', 'edit_published_posts' => 'Author', 'edit_posts' => 'Contributor'),
|
209 |
'default' => 'manage_options',
|
210 |
'message' => SwpmUtils::_('SWPM admin dashboard is accessible to admin users only (just like any other plugin). You can allow users with other WP user role to access the SWPM admin dashboard by selecting a value here.')));
|
211 |
-
|
212 |
}
|
213 |
|
214 |
private function tab_6() {
|
@@ -307,6 +308,10 @@ class SwpmSettings {
|
|
307 |
|
308 |
public function pages_settings_callback() {
|
309 |
SwpmUtils::e('Page Setup and URL Related settings.');
|
|
|
|
|
|
|
|
|
310 |
}
|
311 |
|
312 |
public function testndebug_settings_callback() {
|
@@ -321,7 +326,27 @@ class SwpmSettings {
|
|
321 |
SwpmUtils::e('This email will be sent to your users when they use the password reset functionality.');
|
322 |
}
|
323 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
324 |
public function email_misc_settings_callback() {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
325 |
SwpmUtils::e('Settings in this section apply to all emails.');
|
326 |
}
|
327 |
|
@@ -340,6 +365,13 @@ class SwpmSettings {
|
|
340 |
}
|
341 |
|
342 |
public function advanced_settings_callback() {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
343 |
SwpmUtils::e('This page allows you to configure some advanced features of the plugin.');
|
344 |
}
|
345 |
|
@@ -408,10 +440,13 @@ class SwpmSettings {
|
|
408 |
$output = $this->settings;
|
409 |
$output['enable-expired-account-login'] = isset($input['enable-expired-account-login']) ? esc_attr($input['enable-expired-account-login']) : "";
|
410 |
$output['allow-account-deletion'] = isset($input['allow-account-deletion']) ? esc_attr($input['allow-account-deletion']) : "";
|
|
|
411 |
$output['use-wordpress-timezone'] = isset($input['use-wordpress-timezone']) ? esc_attr($input['use-wordpress-timezone']) : "";
|
412 |
$output['delete-pending-account'] = isset($input['delete-pending-account']) ? esc_attr($input['delete-pending-account']) : 0;
|
413 |
$output['admin-dashboard-access-permission'] = isset($input['admin-dashboard-access-permission']) ? esc_attr($input['admin-dashboard-access-permission']) : '';
|
414 |
$output['renewal-page-url'] = esc_url($input['renewal-page-url']);
|
|
|
|
|
415 |
return $output;
|
416 |
}
|
417 |
|
@@ -477,8 +512,8 @@ class SwpmSettings {
|
|
477 |
//Tools
|
478 |
$link_for = filter_input(INPUT_POST, 'swpm_link_for', FILTER_SANITIZE_STRING);
|
479 |
$member_id = filter_input(INPUT_POST, 'member_id', FILTER_SANITIZE_NUMBER_INT);
|
480 |
-
$send_email =
|
481 |
-
$links = SwpmUtils::
|
482 |
include(SIMPLE_WP_MEMBERSHIP_PATH . 'views/admin_tools_settings.php');
|
483 |
break;
|
484 |
case 5:
|
110 |
|
111 |
private function tab_3() {
|
112 |
//Register settings sections and fileds for the email settings tab.
|
113 |
+
|
|
|
|
|
|
|
|
|
|
|
114 |
register_setting('swpm-settings-tab-3', 'swpm-settings', array(&$this, 'sanitize_tab_3'));
|
115 |
|
116 |
+
add_settings_section('email-settings-overview', SwpmUtils::_('Email Settings Overview'), array(&$this, 'email_settings_overview_callback'), 'simple_wp_membership_settings');
|
117 |
add_settings_section('email-misc-settings', SwpmUtils::_('Email Misc. Settings'), array(&$this, 'email_misc_settings_callback'), 'simple_wp_membership_settings');
|
118 |
+
|
119 |
add_settings_field('email-misc-from', SwpmUtils::_('From Email Address'), array(&$this, 'textfield_callback'), 'simple_wp_membership_settings', 'email-misc-settings', array('item' => 'email-from',
|
120 |
'message' => 'This value will be used as the sender\'s address for the emails. Example value: Your Name <sales@your-domain.com>'));
|
121 |
|
174 |
|
175 |
private function tab_5() {
|
176 |
//Register settings sections and fileds for the advanced settings tab.
|
177 |
+
|
|
|
|
|
|
|
|
|
|
|
178 |
register_setting('swpm-settings-tab-5', 'swpm-settings', array(&$this, 'sanitize_tab_5'));
|
179 |
|
180 |
add_settings_section('advanced-settings', SwpmUtils::_('Advanced Settings'), array(&$this, 'advanced_settings_callback'), 'simple_wp_membership_settings');
|
185 |
add_settings_field('renewal-page-url', SwpmUtils::_('Membership Renewal URL'), array(&$this, 'textfield_long_callback'), 'simple_wp_membership_settings', 'advanced-settings', array('item' => 'renewal-page-url',
|
186 |
'message' => SwpmUtils::_('You can create a renewal page for your site. Read <a href="https://simple-membership-plugin.com/creating-membership-renewal-button/" target="_blank">this documentation</a> to learn how to create a renewal page.')) );
|
187 |
|
188 |
+
add_settings_field('after-rego-redirect-page-url', SwpmUtils::_('After Registration Redirect URL'), array(&$this, 'textfield_long_callback'), 'simple_wp_membership_settings', 'advanced-settings', array('item' => 'after-rego-redirect-page-url',
|
189 |
+
'message' => SwpmUtils::_('You can enter an URL here to redirect the members to this page after they submit the registration form. Read <a href="https://simple-membership-plugin.com/configure-registration-redirect-members/" target="_blank">this documentation</a> to learn how to setup after registration redirect.')) );
|
190 |
+
|
191 |
add_settings_field('allow-account-deletion', SwpmUtils::_('Allow Account Deletion'), array(&$this, 'checkbox_callback'), 'simple_wp_membership_settings', 'advanced-settings', array('item' => 'allow-account-deletion',
|
192 |
'message' => SwpmUtils::_('Allow users to delete their accounts.')));
|
193 |
|
194 |
+
add_settings_field('force-strong-passwords', SwpmUtils::_('Force Strong Password for Members'), array(&$this, 'checkbox_callback'), 'simple_wp_membership_settings', 'advanced-settings', array('item' => 'force-strong-passwords',
|
195 |
+
'message' => SwpmUtils::_('Enable this if you want the users to be forced to use a strong password for their accounts.')));
|
196 |
+
|
197 |
+
add_settings_field('force-wp-user-sync', SwpmUtils::_('Force WP User Synchronization'), array(&$this, 'checkbox_callback'), 'simple_wp_membership_settings', 'advanced-settings', array('item' => 'force-wp-user-sync',
|
198 |
+
'message' => SwpmUtils::_('Enable this option if you want to force the member login to be synchronized with WP user account. This can be useful if you are using another plugin that uses WP user records. For example: bbPress plugin.')));
|
199 |
+
|
200 |
add_settings_field('use-wordpress-timezone', SwpmUtils::_('Use WordPress Timezone'), array(&$this, 'checkbox_callback'), 'simple_wp_membership_settings', 'advanced-settings', array('item' => 'use-wordpress-timezone',
|
201 |
'message' => SwpmUtils::_('Use this option if you want to use the timezone value specified in your WordPress General Settings interface.')));
|
202 |
|
209 |
'options' => array('manage_options' => 'Admin', 'edit_pages' => 'Editor', 'edit_published_posts' => 'Author', 'edit_posts' => 'Contributor'),
|
210 |
'default' => 'manage_options',
|
211 |
'message' => SwpmUtils::_('SWPM admin dashboard is accessible to admin users only (just like any other plugin). You can allow users with other WP user role to access the SWPM admin dashboard by selecting a value here.')));
|
212 |
+
|
213 |
}
|
214 |
|
215 |
private function tab_6() {
|
308 |
|
309 |
public function pages_settings_callback() {
|
310 |
SwpmUtils::e('Page Setup and URL Related settings.');
|
311 |
+
|
312 |
+
echo '<p>';
|
313 |
+
SwpmUtils::e('The following pages are required for the plugin to function correctly. These pages were automatically created by the plugin at install time.');
|
314 |
+
echo '</p>';
|
315 |
}
|
316 |
|
317 |
public function testndebug_settings_callback() {
|
326 |
SwpmUtils::e('This email will be sent to your users when they use the password reset functionality.');
|
327 |
}
|
328 |
|
329 |
+
public function email_settings_overview_callback() {
|
330 |
+
echo '<div class="swpm-grey-box">';
|
331 |
+
echo '<p>';
|
332 |
+
SwpmUtils::e('This interface lets you custsomize the various emails that gets sent to your members for various actions. The default settings should be good to get your started.');
|
333 |
+
echo '</p>';
|
334 |
+
|
335 |
+
echo '<p>';
|
336 |
+
echo '<a href="https://simple-membership-plugin.com/email-merge-tags-email-shortcodes-for-email-customization/" target="_blank">'.SwpmUtils::_('This documentation').'</a>';
|
337 |
+
SwpmUtils::e(' explains what email merge tags you can use in the email body field to customize it (if you want to).');
|
338 |
+
echo '</p>';
|
339 |
+
echo '</div>';
|
340 |
+
}
|
341 |
+
|
342 |
public function email_misc_settings_callback() {
|
343 |
+
|
344 |
+
//Show settings updated message when it is updated
|
345 |
+
if (isset($_REQUEST['settings-updated'])) {
|
346 |
+
//This status message need to be in the callback function to prevent header sent warning
|
347 |
+
echo '<div id="message" class="updated fade"><p>' . SwpmUtils::_('Settings updated!') . '</p></div>';
|
348 |
+
}
|
349 |
+
|
350 |
SwpmUtils::e('Settings in this section apply to all emails.');
|
351 |
}
|
352 |
|
365 |
}
|
366 |
|
367 |
public function advanced_settings_callback() {
|
368 |
+
|
369 |
+
//Show settings updated message when it is updated
|
370 |
+
if (isset($_REQUEST['settings-updated'])) {
|
371 |
+
//This status message need to be in the callback function to prevent header sent warning
|
372 |
+
echo '<div id="message" class="updated fade"><p>' . SwpmUtils::_('Settings updated!') . '</p></div>';
|
373 |
+
}
|
374 |
+
|
375 |
SwpmUtils::e('This page allows you to configure some advanced features of the plugin.');
|
376 |
}
|
377 |
|
440 |
$output = $this->settings;
|
441 |
$output['enable-expired-account-login'] = isset($input['enable-expired-account-login']) ? esc_attr($input['enable-expired-account-login']) : "";
|
442 |
$output['allow-account-deletion'] = isset($input['allow-account-deletion']) ? esc_attr($input['allow-account-deletion']) : "";
|
443 |
+
$output['force-wp-user-sync'] = isset($input['force-wp-user-sync']) ? esc_attr($input['force-wp-user-sync']) : "";
|
444 |
$output['use-wordpress-timezone'] = isset($input['use-wordpress-timezone']) ? esc_attr($input['use-wordpress-timezone']) : "";
|
445 |
$output['delete-pending-account'] = isset($input['delete-pending-account']) ? esc_attr($input['delete-pending-account']) : 0;
|
446 |
$output['admin-dashboard-access-permission'] = isset($input['admin-dashboard-access-permission']) ? esc_attr($input['admin-dashboard-access-permission']) : '';
|
447 |
$output['renewal-page-url'] = esc_url($input['renewal-page-url']);
|
448 |
+
$output['after-rego-redirect-page-url'] = esc_url($input['after-rego-redirect-page-url']);
|
449 |
+
$output['force-strong-passwords'] = isset($input['force-strong-passwords']) ? esc_attr($input['force-strong-passwords']) : "";
|
450 |
return $output;
|
451 |
}
|
452 |
|
512 |
//Tools
|
513 |
$link_for = filter_input(INPUT_POST, 'swpm_link_for', FILTER_SANITIZE_STRING);
|
514 |
$member_id = filter_input(INPUT_POST, 'member_id', FILTER_SANITIZE_NUMBER_INT);
|
515 |
+
$send_email = isset($_REQUEST['swpm_reminder_email']) ? true : false;
|
516 |
+
$links = SwpmUtils::get_registration_complete_prompt_link($link_for, $send_email, $member_id);
|
517 |
include(SIMPLE_WP_MEMBERSHIP_PATH . 'views/admin_tools_settings.php');
|
518 |
break;
|
519 |
case 5:
|
classes/class.swpm-utils-misc.php
CHANGED
@@ -210,19 +210,20 @@ class SwpmMiscUtils {
|
|
210 |
}
|
211 |
}
|
212 |
|
|
|
213 |
//Format some field values
|
214 |
$member_since_formatted = SwpmUtils::get_formatted_date_according_to_wp_settings($user_record->member_since);
|
215 |
$subsc_starts_formatted = SwpmUtils::get_formatted_date_according_to_wp_settings($user_record->subscription_starts);
|
216 |
|
217 |
|
218 |
//Define the replacable tags
|
219 |
-
$tags = array("{member_id}", "{user_name}", "{first_name}", "{last_name}", "{membership_level}",
|
220 |
"{account_state}", "{email}", "{phone}", "{member_since}", "{subscription_starts}", "{company_name}",
|
221 |
"{password}", "{login_link}", "{reg_link}", "{primary_address}"
|
222 |
);
|
223 |
|
224 |
//Define the values
|
225 |
-
$vals = array($member_id, $user_record->user_name, $user_record->first_name, $user_record->last_name, $user_record->membership_level,
|
226 |
$user_record->account_state, $user_record->email, $user_record->phone, $member_since_formatted, $subsc_starts_formatted, $user_record->company_name,
|
227 |
$password, $login_link, $reg_link, $primary_address
|
228 |
);
|
210 |
}
|
211 |
}
|
212 |
|
213 |
+
$membership_level_name = SwpmMembershipLevelUtils::get_membership_level_name_of_a_member($member_id);
|
214 |
//Format some field values
|
215 |
$member_since_formatted = SwpmUtils::get_formatted_date_according_to_wp_settings($user_record->member_since);
|
216 |
$subsc_starts_formatted = SwpmUtils::get_formatted_date_according_to_wp_settings($user_record->subscription_starts);
|
217 |
|
218 |
|
219 |
//Define the replacable tags
|
220 |
+
$tags = array("{member_id}", "{user_name}", "{first_name}", "{last_name}", "{membership_level}", "{membership_level_name}",
|
221 |
"{account_state}", "{email}", "{phone}", "{member_since}", "{subscription_starts}", "{company_name}",
|
222 |
"{password}", "{login_link}", "{reg_link}", "{primary_address}"
|
223 |
);
|
224 |
|
225 |
//Define the values
|
226 |
+
$vals = array($member_id, $user_record->user_name, $user_record->first_name, $user_record->last_name, $user_record->membership_level, $membership_level_name,
|
227 |
$user_record->account_state, $user_record->email, $user_record->phone, $member_since_formatted, $subsc_starts_formatted, $user_record->company_name,
|
228 |
$password, $login_link, $reg_link, $primary_address
|
229 |
);
|
classes/class.swpm-utils.php
CHANGED
@@ -162,7 +162,7 @@ abstract class SwpmUtils {
|
|
162 |
}
|
163 |
}
|
164 |
|
165 |
-
public static function
|
166 |
$members = array();
|
167 |
global $wpdb;
|
168 |
switch ($for) {
|
@@ -184,27 +184,34 @@ abstract class SwpmUtils {
|
|
184 |
if (strpos($url, '?') !== false) {
|
185 |
$separator = '&';
|
186 |
}
|
187 |
-
|
188 |
-
if (empty($subject)) {
|
189 |
-
$subject = "Please complete your registration";
|
190 |
-
}
|
191 |
-
$body = $settings->get_value('reg-complete-mail-body');
|
192 |
-
if (empty($body)) {
|
193 |
-
$body = "Please use the following link to complete your registration. \n {reg_link}";
|
194 |
-
}
|
195 |
-
$from_address = $settings->get_value('email-from');
|
196 |
$links = array();
|
197 |
foreach ($members as $member) {
|
198 |
$reg_url = $url . $separator . 'member_id=' . $member->member_id . '&code=' . $member->reg_code;
|
199 |
-
if (
|
200 |
$tags = array("{first_name}", "{last_name}", "{reg_link}");
|
201 |
$vals = array($member->first_name, $member->last_name, $reg_url);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
202 |
$body = html_entity_decode($body);
|
203 |
$email_body = str_replace($tags, $vals, $body);
|
|
|
|
|
204 |
$headers = 'From: ' . $from_address . "\r\n";
|
205 |
-
|
206 |
-
$
|
|
|
207 |
wp_mail($member->email, $subject, $email_body, $headers);
|
|
|
|
|
208 |
}
|
209 |
$links[] = $reg_url;
|
210 |
}
|
162 |
}
|
163 |
}
|
164 |
|
165 |
+
public static function get_registration_complete_prompt_link($for = 'all', $send_email = false, $member_id = '') {
|
166 |
$members = array();
|
167 |
global $wpdb;
|
168 |
switch ($for) {
|
184 |
if (strpos($url, '?') !== false) {
|
185 |
$separator = '&';
|
186 |
}
|
187 |
+
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
188 |
$links = array();
|
189 |
foreach ($members as $member) {
|
190 |
$reg_url = $url . $separator . 'member_id=' . $member->member_id . '&code=' . $member->reg_code;
|
191 |
+
if ( $send_email && empty($member->user_name) ) {
|
192 |
$tags = array("{first_name}", "{last_name}", "{reg_link}");
|
193 |
$vals = array($member->first_name, $member->last_name, $reg_url);
|
194 |
+
|
195 |
+
$subject = $settings->get_value('reg-prompt-complete-mail-subject');
|
196 |
+
if (empty($subject)) {
|
197 |
+
$subject = "Please complete your registration";
|
198 |
+
}
|
199 |
+
|
200 |
+
$body = $settings->get_value('reg-prompt-complete-mail-body');
|
201 |
+
if (empty($body)) {
|
202 |
+
$body = "Please use the following link to complete your registration. \n {reg_link}";
|
203 |
+
}
|
204 |
$body = html_entity_decode($body);
|
205 |
$email_body = str_replace($tags, $vals, $body);
|
206 |
+
|
207 |
+
$from_address = $settings->get_value('email-from');
|
208 |
$headers = 'From: ' . $from_address . "\r\n";
|
209 |
+
|
210 |
+
$subject = apply_filters('swpm_email_complete_your_registration_subject',$subject);
|
211 |
+
$email_body = apply_filters('swpm_email_complete_your_registration_body',$email_body);
|
212 |
wp_mail($member->email, $subject, $email_body, $headers);
|
213 |
+
SwpmLog::log_simple_debug('Prompt to complete registration email sent to: '.$member->email.'. From email address value used: '.$from_address, true);
|
214 |
+
|
215 |
}
|
216 |
$links[] = $reg_url;
|
217 |
}
|
classes/class.swpm-wp-loaded-tasks.php
CHANGED
@@ -22,8 +22,16 @@ class SwpmWpLoadedTasks {
|
|
22 |
if (!is_user_logged_in()) {
|
23 |
/* WP user is logged out. So logout the SWPM user (if applicable) */
|
24 |
if (SwpmMemberUtils::is_member_logged_in()) {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
25 |
/* SWPM user is logged in the system. Log him out. */
|
26 |
-
SwpmLog::log_auth_debug("synchronise_swpm_logout_for_wp_users() -
|
|
|
27 |
wp_logout();
|
28 |
}
|
29 |
}
|
22 |
if (!is_user_logged_in()) {
|
23 |
/* WP user is logged out. So logout the SWPM user (if applicable) */
|
24 |
if (SwpmMemberUtils::is_member_logged_in()) {
|
25 |
+
|
26 |
+
//Check if force WP user login sync is enabled or not
|
27 |
+
$force_wp_user_sync = SwpmSettings::get_instance()->get_value('force-wp-user-sync');
|
28 |
+
if (empty($force_wp_user_sync)) {
|
29 |
+
return "";
|
30 |
+
}
|
31 |
+
/* Force WP user login sync is enabled. */
|
32 |
/* SWPM user is logged in the system. Log him out. */
|
33 |
+
SwpmLog::log_auth_debug("synchronise_swpm_logout_for_wp_users() - Force wp user login sync is enabled. ", true);
|
34 |
+
SwpmLog::log_auth_debug("WP user session is logged out for this user. So logging out of the swpm session also.", true);
|
35 |
wp_logout();
|
36 |
}
|
37 |
}
|
images/addons/swpm-bulk-member-importer-from-csv-addon.png
ADDED
Binary file
|
ipn/swpm-stripe-subscription-ipn.php
CHANGED
@@ -33,8 +33,9 @@ class SwpmStripeSubscriptionIpnHandler {
|
|
33 |
SwpmLog::log_simple_debug("Stripe Subscription Webhook received. Processing request...", true);
|
34 |
//Let's form minimal ipn_data array for swpm_handle_subsc_cancel_stand_alone
|
35 |
$customer = $event_json->data->object->customer;
|
|
|
36 |
$ipn_data = array();
|
37 |
-
$ipn_data['subscr_id'] = $
|
38 |
$ipn_data['parent_txn_id'] = $customer;
|
39 |
|
40 |
swpm_handle_subsc_cancel_stand_alone($ipn_data);
|
33 |
SwpmLog::log_simple_debug("Stripe Subscription Webhook received. Processing request...", true);
|
34 |
//Let's form minimal ipn_data array for swpm_handle_subsc_cancel_stand_alone
|
35 |
$customer = $event_json->data->object->customer;
|
36 |
+
$subscr_id=$event_json->data->object->id;
|
37 |
$ipn_data = array();
|
38 |
+
$ipn_data['subscr_id'] = $subscr_id;
|
39 |
$ipn_data['parent_txn_id'] = $customer;
|
40 |
|
41 |
swpm_handle_subsc_cancel_stand_alone($ipn_data);
|
ipn/swpm_handle_subsc_ipn.php
CHANGED
@@ -62,7 +62,7 @@ function swpm_handle_subsc_signup_stand_alone($ipn_data, $subsc_ref, $unique_ref
|
|
62 |
//Set account status to active, update level to the newly paid level, update access start date, update subsriber ID (if applicable).
|
63 |
$updatedb = $wpdb->prepare("UPDATE $members_table_name SET account_state=%s, membership_level=%d,subscription_starts=%s,subscr_id=%s WHERE member_id=%d", $account_state, $membership_level, $subscription_starts, $subscr_id, $swpm_id);
|
64 |
$results = $wpdb->query($updatedb);
|
65 |
-
do_action('swpm_membership_changed', array('member_id' => $swpm_id, 'from_level' => $old_membership_level, 'to_level' => $membership_level));
|
66 |
|
67 |
//Set Email details for the account upgrade notification
|
68 |
$email = $ipn_data['payer_email'];
|
@@ -174,11 +174,11 @@ function swpm_handle_subsc_cancel_stand_alone($ipn_data, $refund = false) {
|
|
174 |
//This IPN has the subscriber ID. Retrieve the member record using subscr_id.
|
175 |
$subscr_id = $ipn_data['subscr_id'];
|
176 |
swpm_debug_log_subsc("Subscriber ID is present. Retrieving member account from the database. Subscr_id: " . $subscr_id, true);
|
177 |
-
$resultset = $wpdb->get_row($wpdb->prepare("SELECT * FROM $members_table_name where subscr_id
|
178 |
} else {
|
179 |
//Refund for a one time transaction. Use the parent transaction ID to retrieve the profile.
|
180 |
$subscr_id = $ipn_data['parent_txn_id'];
|
181 |
-
$resultset = $wpdb->get_row($wpdb->prepare("SELECT * FROM $members_table_name where subscr_id
|
182 |
}
|
183 |
|
184 |
if ($resultset) {
|
62 |
//Set account status to active, update level to the newly paid level, update access start date, update subsriber ID (if applicable).
|
63 |
$updatedb = $wpdb->prepare("UPDATE $members_table_name SET account_state=%s, membership_level=%d,subscription_starts=%s,subscr_id=%s WHERE member_id=%d", $account_state, $membership_level, $subscription_starts, $subscr_id, $swpm_id);
|
64 |
$results = $wpdb->query($updatedb);
|
65 |
+
do_action('swpm_membership_changed', array('member_id' => $swpm_id, 'member_info' => get_object_vars($resultset), 'from_level' => $old_membership_level, 'to_level' => $membership_level));
|
66 |
|
67 |
//Set Email details for the account upgrade notification
|
68 |
$email = $ipn_data['payer_email'];
|
174 |
//This IPN has the subscriber ID. Retrieve the member record using subscr_id.
|
175 |
$subscr_id = $ipn_data['subscr_id'];
|
176 |
swpm_debug_log_subsc("Subscriber ID is present. Retrieving member account from the database. Subscr_id: " . $subscr_id, true);
|
177 |
+
$resultset = $wpdb->get_row($wpdb->prepare("SELECT * FROM $members_table_name where subscr_id LIKE %s", '%' . $wpdb->esc_like($subscr_id) . '|%'), OBJECT);
|
178 |
} else {
|
179 |
//Refund for a one time transaction. Use the parent transaction ID to retrieve the profile.
|
180 |
$subscr_id = $ipn_data['parent_txn_id'];
|
181 |
+
$resultset = $wpdb->get_row($wpdb->prepare("SELECT * FROM $members_table_name where subscr_id LIKE %s", '%' . $wpdb->esc_like($subscr_id) . '|%'), OBJECT);
|
182 |
}
|
183 |
|
184 |
if ($resultset) {
|
js/jquery.validationEngine-en.js
CHANGED
@@ -87,6 +87,10 @@
|
|
87 |
"regex": /^(([^<>()[\]\\.,;:\s@\"]+(\.[^<>()[\]\\.,;:\s@\"]+)*)|(\".+\"))@((\[[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\])|(([a-zA-Z\-0-9]+\.)+[a-zA-Z]{2,}))$/,
|
88 |
"alertText": "* Invalid email address"
|
89 |
},
|
|
|
|
|
|
|
|
|
90 |
"SWPMUserName": {
|
91 |
"regex": /^[a-zA-Z0-9!@#$%&\'+\/=?^_`{|}~\.-]+$/,
|
92 |
"alertText": "* Invalid Username"
|
87 |
"regex": /^(([^<>()[\]\\.,;:\s@\"]+(\.[^<>()[\]\\.,;:\s@\"]+)*)|(\".+\"))@((\[[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\])|(([a-zA-Z\-0-9]+\.)+[a-zA-Z]{2,}))$/,
|
88 |
"alertText": "* Invalid email address"
|
89 |
},
|
90 |
+
"strongPass": {
|
91 |
+
"regex": /^(?=.*[A-Z])(?=.*[a-z])(?=.*[0-9]).*$/g,
|
92 |
+
"alertText": "* Password must contain at least:<br />- a digit<br />- an uppercase letter<br />- a lowercase letter"
|
93 |
+
},
|
94 |
"SWPMUserName": {
|
95 |
"regex": /^[a-zA-Z0-9!@#$%&\'+\/=?^_`{|}~\.-]+$/,
|
96 |
"alertText": "* Invalid Username"
|
languages/simple-membership-de_DE.mo
CHANGED
Binary file
|
languages/simple-membership-de_DE.po
CHANGED
@@ -1,139 +1,181 @@
|
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Simple Membership\n"
|
4 |
-
"POT-Creation-Date:
|
5 |
-
"PO-Revision-Date:
|
|
|
6 |
"Language-Team: \n"
|
|
|
7 |
"MIME-Version: 1.0\n"
|
8 |
"Content-Type: text/plain; charset=UTF-8\n"
|
9 |
"Content-Transfer-Encoding: 8bit\n"
|
10 |
-
"X-Generator: Poedit 2.0.
|
11 |
"X-Poedit-KeywordsList: __;_e;e\n"
|
12 |
"X-Poedit-Basepath: .\n"
|
13 |
-
"Last-Translator: \n"
|
14 |
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
15 |
-
"Language: de_DE\n"
|
16 |
"X-Poedit-SearchPath-0: .\n"
|
17 |
|
18 |
-
#: simple-membership/classes/class.simple-wp-membership.php:
|
19 |
msgid "The admin of this site does not allow users to access the wp dashboard."
|
20 |
-
msgstr ""
|
21 |
-
"Der Administrator dieser Website erlaubt es Benutzern nicht, auf das WP-"
|
22 |
-
"Dashboard zuzugreifen."
|
23 |
|
24 |
-
#: simple-membership/classes/class.simple-wp-membership.php:
|
25 |
msgid "Go back to the home page by "
|
26 |
msgstr "Gehe zurück zur Startseite "
|
27 |
|
28 |
-
#: simple-membership/classes/class.simple-wp-membership.php:
|
29 |
msgid "clicking here"
|
30 |
-
msgstr "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
31 |
|
32 |
-
#: simple-membership/classes/class.simple-wp-membership.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
33 |
msgid "You are not logged in."
|
34 |
msgstr "Sie sind nicht eingeloggt."
|
35 |
|
36 |
-
#: simple-membership/classes/class.simple-wp-membership.php:
|
37 |
msgid ""
|
38 |
"You have the sandbox payment mode enabled in plugin settings. Make sure to "
|
39 |
"turn off the sandbox mode when you want to do live transactions."
|
40 |
msgstr ""
|
41 |
-
"Sie haben
|
42 |
-
"
|
43 |
-
"
|
44 |
|
45 |
-
#: simple-membership/classes/class.simple-wp-membership.php:
|
46 |
msgid "Simple WP Membership Protection"
|
47 |
-
msgstr "
|
48 |
|
49 |
-
#: simple-membership/classes/class.simple-wp-membership.php:
|
50 |
msgid "Simple Membership Protection options"
|
51 |
-
msgstr "
|
52 |
|
53 |
-
#: simple-membership/classes/class.simple-wp-membership.php:
|
54 |
msgid "Do you want to protect this content?"
|
55 |
msgstr "Möchten Sie diesen Inhalt zu schützen?"
|
56 |
|
57 |
-
#: simple-membership/classes/class.simple-wp-membership.php:
|
58 |
msgid "Select the membership level that can access this content:"
|
59 |
msgstr ""
|
60 |
"Wählen Sie die Mitgliedschaftsstufe aus, die auf diesen Inhalt zugreifen "
|
61 |
"kann:"
|
62 |
|
63 |
-
#: simple-membership/classes/class.simple-wp-membership.php:
|
64 |
-
#: simple-membership/classes/class.simple-wp-membership.php:
|
65 |
msgid "Validating, please wait"
|
66 |
msgstr "Überprüfung, bitte warten"
|
67 |
|
68 |
-
#: simple-membership/classes/class.simple-wp-membership.php:
|
69 |
msgid "Invalid email address"
|
70 |
msgstr "Ungültige E-Mail-Adresse"
|
71 |
|
72 |
-
#: simple-membership/classes/class.simple-wp-membership.php:
|
73 |
msgid "This field is required"
|
74 |
msgstr "Dieses Feld ist erforderlich"
|
75 |
|
76 |
-
#: simple-membership/classes/class.simple-wp-membership.php:
|
77 |
-
#: simple-membership/classes/class.swpm-auth.php:
|
78 |
msgid "Invalid Username"
|
79 |
msgstr "Ungültiger Benutzername"
|
80 |
|
81 |
-
#: simple-membership/classes/class.simple-wp-membership.php:
|
82 |
msgid "Minimum "
|
83 |
msgstr "Minimum "
|
84 |
|
85 |
-
#: simple-membership/classes/class.simple-wp-membership.php:
|
86 |
msgid " characters required"
|
87 |
msgstr " Buchstaben erforderlich"
|
88 |
|
89 |
-
#: simple-membership/classes/class.simple-wp-membership.php:
|
90 |
msgid "Apostrophe character is not allowed"
|
91 |
msgstr "Apostroph ist nicht zulässig"
|
92 |
|
93 |
-
#: simple-membership/classes/class.simple-wp-membership.php:
|
94 |
msgid "WP Membership"
|
95 |
msgstr "WP Mitgliedschaft"
|
96 |
|
97 |
-
#: simple-membership/classes/class.simple-wp-membership.php:
|
98 |
#: simple-membership/classes/class.swpm-members.php:11
|
99 |
#: simple-membership/classes/class.swpm-members.php:579
|
100 |
msgid "Members"
|
101 |
msgstr "Mitglieder"
|
102 |
|
103 |
-
#: simple-membership/classes/class.simple-wp-membership.php:
|
104 |
#: simple-membership/classes/class.swpm-category-list.php:20
|
105 |
#: simple-membership/classes/class.swpm-membership-levels.php:12
|
106 |
-
#: simple-membership/classes/class.swpm-membership-levels.php:
|
|
|
107 |
msgid "Membership Levels"
|
108 |
msgstr "Mitgliedschaftsstufen"
|
109 |
|
110 |
-
#: simple-membership/classes/class.simple-wp-membership.php:
|
111 |
msgid "Settings"
|
112 |
msgstr "Einstellungen"
|
113 |
|
114 |
-
#: simple-membership/classes/class.simple-wp-membership.php:
|
115 |
msgid "Payments"
|
116 |
msgstr "Zahlungen"
|
117 |
|
118 |
-
#: simple-membership/classes/class.simple-wp-membership.php:
|
119 |
msgid "Add-ons"
|
120 |
msgstr "Add-ons"
|
121 |
|
122 |
#: simple-membership/classes/class.swpm-access-control.php:47
|
123 |
#: simple-membership/classes/class.swpm-access-control.php:120
|
124 |
msgid "You need to login to view this content. "
|
125 |
-
msgstr "Sie müssen sich anmelden, um diesen Inhalt
|
126 |
|
127 |
#: simple-membership/classes/class.swpm-access-control.php:56
|
128 |
#: simple-membership/classes/class.swpm-access-control.php:128
|
129 |
#: simple-membership/classes/class.swpm-access-control.php:212
|
130 |
msgid "Your account has expired. "
|
131 |
-
msgstr "
|
132 |
|
133 |
#: simple-membership/classes/class.swpm-access-control.php:66
|
134 |
#: simple-membership/classes/class.swpm-access-control.php:138
|
135 |
msgid "This content can only be viewed by members who joined on or before "
|
136 |
-
msgstr "
|
|
|
|
|
137 |
|
138 |
#: simple-membership/classes/class.swpm-access-control.php:79
|
139 |
#: simple-membership/classes/class.swpm-access-control.php:148
|
@@ -142,7 +184,8 @@ msgstr "Dieser Inhalt ist für Ihre Mitgliedschaftsstufe nicht freigeschaltet."
|
|
142 |
|
143 |
#: simple-membership/classes/class.swpm-access-control.php:204
|
144 |
msgid "You need to login to view the rest of the content. "
|
145 |
-
msgstr "
|
|
|
146 |
|
147 |
#: simple-membership/classes/class.swpm-access-control.php:217
|
148 |
msgid " The rest of the content is not permitted for your membership level."
|
@@ -152,25 +195,28 @@ msgstr ""
|
|
152 |
#: simple-membership/classes/class.swpm-admin-registration.php:25
|
153 |
msgid "Error! Nonce verification failed for user registration from admin end."
|
154 |
msgstr ""
|
155 |
-
"Fehler!
|
|
|
156 |
|
157 |
#: simple-membership/classes/class.swpm-admin-registration.php:71
|
158 |
msgid "Member record added successfully."
|
159 |
-
msgstr "
|
160 |
|
161 |
#: simple-membership/classes/class.swpm-admin-registration.php:76
|
162 |
-
#: simple-membership/classes/class.swpm-admin-registration.php:
|
163 |
-
#: simple-membership/classes/class.swpm-admin-registration.php:
|
164 |
#: simple-membership/classes/class.swpm-membership-level.php:69
|
165 |
#: simple-membership/classes/class.swpm-membership-level.php:97
|
166 |
msgid "Please correct the following:"
|
167 |
-
msgstr "Bitte korrigieren Sie
|
168 |
|
169 |
#: simple-membership/classes/class.swpm-admin-registration.php:87
|
170 |
msgid "Error! Nonce verification failed for user edit from admin end."
|
171 |
-
msgstr "
|
|
|
|
|
172 |
|
173 |
-
#: simple-membership/classes/class.swpm-admin-registration.php:
|
174 |
msgid "Your current password"
|
175 |
msgstr "Ihr aktuelles Passwort"
|
176 |
|
@@ -191,24 +237,23 @@ msgstr "Name enthält ungültiges Zeichen"
|
|
191 |
msgid "Available"
|
192 |
msgstr "Verfügbar"
|
193 |
|
194 |
-
#: simple-membership/classes/class.swpm-auth.php:
|
195 |
msgid ""
|
196 |
"Warning! Simple Membership plugin cannot process this login request to "
|
197 |
"prevent you from getting logged out of WP Admin accidentally."
|
198 |
msgstr ""
|
199 |
-
"
|
200 |
-
"
|
201 |
-
"Admin ausloggen."
|
202 |
|
203 |
-
#: simple-membership/classes/class.swpm-auth.php:
|
204 |
msgid ""
|
205 |
"You are logged into the site as an ADMIN user in this browser. First, logout "
|
206 |
"from WP Admin then you will be able to log in as a member."
|
207 |
msgstr ""
|
208 |
-
"Sie sind
|
209 |
-
"zuerst als Admin aus
|
210 |
|
211 |
-
#: simple-membership/classes/class.swpm-auth.php:
|
212 |
msgid ""
|
213 |
"Alternatively, you can use a different browser (where you are not logged-in "
|
214 |
"as ADMIN) to test the membership login."
|
@@ -216,70 +261,72 @@ msgstr ""
|
|
216 |
"Alternativ können Sie einen anderen Browser verwenden (in welchem Sie nicht "
|
217 |
"als Admin eingeloggt sind), um das Login-Interface zu testen."
|
218 |
|
219 |
-
#: simple-membership/classes/class.swpm-auth.php:
|
220 |
msgid ""
|
221 |
"Your normal visitors or members will never see this message. This message is "
|
222 |
"ONLY for ADMIN user."
|
223 |
msgstr ""
|
224 |
-
"Ihre
|
225 |
-
"Diese
|
226 |
|
227 |
-
#: simple-membership/classes/class.swpm-auth.php:
|
228 |
msgid "Captcha validation failed on login form."
|
229 |
msgstr "Captcha-Validierung fehlgeschlagen."
|
230 |
|
231 |
-
#: simple-membership/classes/class.swpm-auth.php:
|
232 |
msgid "User Not Found."
|
233 |
msgstr "Benutzer nicht gefunden."
|
234 |
|
235 |
-
#: simple-membership/classes/class.swpm-auth.php:
|
236 |
msgid "Password Empty or Invalid."
|
237 |
-
msgstr "
|
238 |
|
239 |
-
#: simple-membership/classes/class.swpm-auth.php:
|
240 |
msgid "Account is inactive."
|
241 |
msgstr "Ihr Konto ist inaktiv."
|
242 |
|
243 |
-
#: simple-membership/classes/class.swpm-auth.php:
|
244 |
-
#: simple-membership/classes/class.swpm-auth.php:
|
245 |
msgid "Account has expired."
|
246 |
-
msgstr "
|
247 |
|
248 |
-
#: simple-membership/classes/class.swpm-auth.php:
|
249 |
msgid "Account is pending."
|
250 |
msgstr "Ihr Konto ist inaktiv."
|
251 |
|
252 |
-
#: simple-membership/classes/class.swpm-auth.php:
|
253 |
msgid "You are logged in as:"
|
254 |
msgstr "Sie sind eingeloggt als:"
|
255 |
|
256 |
-
#: simple-membership/classes/class.swpm-auth.php:
|
257 |
msgid "Logged Out Successfully."
|
258 |
msgstr "Abmeldung war erfolgreich."
|
259 |
|
260 |
-
#: simple-membership/classes/class.swpm-auth.php:
|
261 |
msgid "Session Expired."
|
262 |
msgstr "Sitzung ist abgelaufen."
|
263 |
|
264 |
-
#: simple-membership/classes/class.swpm-auth.php:
|
265 |
msgid "Please login again."
|
266 |
-
msgstr "Bitte
|
267 |
|
268 |
#: simple-membership/classes/class.swpm-category-list.php:19
|
269 |
#: simple-membership/classes/class.swpm-members.php:24
|
270 |
#: simple-membership/classes/class.swpm-membership-levels.php:11
|
271 |
#: simple-membership/classes/class.swpm-membership-levels.php:21
|
|
|
272 |
#: simple-membership/classes/admin-includes/class.swpm-payments-list-table.php:85
|
273 |
#: simple-membership/views/add.php:31
|
274 |
#: simple-membership/views/admin_member_form_common_part.php:2
|
275 |
-
#: simple-membership/views/edit.php:
|
276 |
#: simple-membership/views/payments/payment-gateway/admin_braintree_buy_now_button.php:50
|
277 |
#: simple-membership/views/payments/payment-gateway/admin_paypal_buy_now_button.php:34
|
278 |
-
#: simple-membership/views/payments/payment-gateway/admin_paypal_buy_now_button.php:
|
279 |
#: simple-membership/views/payments/payment-gateway/admin_paypal_subscription_button.php:35
|
280 |
-
#: simple-membership/views/payments/payment-gateway/admin_paypal_subscription_button.php:
|
281 |
#: simple-membership/views/payments/payment-gateway/admin_stripe_buy_now_button.php:47
|
282 |
-
#: simple-membership/views/payments/payment-gateway/admin_stripe_buy_now_button.php:
|
|
|
283 |
msgid "Membership Level"
|
284 |
msgstr "Mitgliedschaftsstufe"
|
285 |
|
@@ -293,7 +340,7 @@ msgstr "Kategorie Name"
|
|
293 |
|
294 |
#: simple-membership/classes/class.swpm-category-list.php:35
|
295 |
msgid "Category Type (Taxonomy)"
|
296 |
-
msgstr "Kategorie Typ"
|
297 |
|
298 |
#: simple-membership/classes/class.swpm-category-list.php:36
|
299 |
msgid "Description"
|
@@ -313,75 +360,103 @@ msgstr "Kategorie wurde nicht gefunden."
|
|
313 |
|
314 |
#: simple-membership/classes/class.swpm-comment-form-related.php:15
|
315 |
msgid "Please login to comment."
|
316 |
-
msgstr "
|
|
|
317 |
|
318 |
#: simple-membership/classes/class.swpm-comment-form-related.php:40
|
319 |
msgid "Please Login to Comment."
|
320 |
-
msgstr "
|
|
|
321 |
|
322 |
#: simple-membership/classes/class.swpm-comment-form-related.php:79
|
323 |
msgid "Comments not allowed by a non-member."
|
324 |
-
msgstr "
|
325 |
|
326 |
#: simple-membership/classes/class.swpm-form.php:29
|
327 |
msgid ""
|
328 |
"Wordpress account exists with given username. But given email doesn't match."
|
329 |
-
msgstr "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
330 |
|
331 |
-
#: simple-membership/classes/class.swpm-form.php:
|
332 |
msgid ""
|
333 |
"Wordpress account exists with given email. But given username doesn't match."
|
334 |
-
msgstr "
|
|
|
|
|
335 |
|
336 |
-
#: simple-membership/classes/class.swpm-form.php:
|
337 |
-
msgid "
|
338 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
339 |
|
340 |
#: simple-membership/classes/class.swpm-form.php:47
|
|
|
|
|
|
|
|
|
341 |
msgid "Username contains invalid character"
|
342 |
-
msgstr "
|
343 |
|
344 |
-
#: simple-membership/classes/class.swpm-form.php:
|
345 |
msgid "Username already exists."
|
346 |
msgstr "Ihr Benutzername existiert bereits."
|
347 |
|
348 |
-
#: simple-membership/classes/class.swpm-form.php:
|
349 |
msgid "Password is required"
|
350 |
-
msgstr "Passwort
|
351 |
|
352 |
-
#: simple-membership/classes/class.swpm-form.php:
|
353 |
msgid "Password mismatch"
|
354 |
msgstr "Die Passwörter stimmen nicht überein"
|
355 |
|
356 |
-
#: simple-membership/classes/class.swpm-form.php:
|
357 |
msgid "Email is required"
|
358 |
msgstr "E-Mail Adresse wird benötigt"
|
359 |
|
360 |
-
#: simple-membership/classes/class.swpm-form.php:
|
361 |
msgid "Email is invalid"
|
362 |
msgstr "E-Mail Adresse ist ungültig"
|
363 |
|
364 |
-
#: simple-membership/classes/class.swpm-form.php:
|
365 |
msgid "Email is already used."
|
366 |
msgstr "Ihre E-Mail Adresse existiert bereits."
|
367 |
|
368 |
-
#: simple-membership/classes/class.swpm-form.php:
|
369 |
msgid "Member since field is invalid"
|
370 |
-
msgstr "
|
371 |
|
372 |
-
#: simple-membership/classes/class.swpm-form.php:
|
373 |
msgid "Access starts field is invalid"
|
374 |
-
msgstr "
|
375 |
|
376 |
-
#: simple-membership/classes/class.swpm-form.php:
|
377 |
msgid "Gender field is invalid"
|
378 |
-
msgstr "
|
379 |
|
380 |
-
#: simple-membership/classes/class.swpm-form.php:
|
381 |
msgid "Account state field is invalid"
|
382 |
msgstr "Kontostatusfeld ist ungültig"
|
383 |
|
384 |
-
#: simple-membership/classes/class.swpm-form.php:
|
385 |
msgid "Invalid membership level"
|
386 |
msgstr "Ungültige Mitgliedschaftsstufe"
|
387 |
|
@@ -394,10 +469,10 @@ msgstr ""
|
|
394 |
"Sicherheitscode und die Benutzer-ID finden."
|
395 |
|
396 |
#: simple-membership/classes/class.swpm-front-registration.php:45
|
397 |
-
#: simple-membership/classes/class.swpm-utils-misc.php:
|
398 |
#: simple-membership/views/login.php:36
|
399 |
msgid "Join Us"
|
400 |
-
msgstr "
|
401 |
|
402 |
#: simple-membership/classes/class.swpm-front-registration.php:47
|
403 |
msgid ""
|
@@ -411,47 +486,48 @@ msgid ""
|
|
411 |
"You will receive a unique link via email after the payment. You will be able "
|
412 |
"to use that link to complete the premium membership registration."
|
413 |
msgstr ""
|
414 |
-
"Sie
|
415 |
-
"
|
416 |
-
"
|
417 |
|
418 |
#: simple-membership/classes/class.swpm-front-registration.php:77
|
419 |
msgid "Security check: captcha validation failed."
|
420 |
msgstr "Sicherheitskontrolle: Captcha-Validierung fehlgeschlagen."
|
421 |
|
422 |
-
#: simple-membership/classes/class.swpm-front-registration.php:
|
423 |
msgid "Registration Successful. "
|
424 |
msgstr "Registrierung erfolgreich. "
|
425 |
|
426 |
-
#: simple-membership/classes/class.swpm-front-registration.php:
|
427 |
-
#: simple-membership/classes/class.swpm-utils-misc.php:
|
428 |
-
#: simple-membership/classes/class.swpm-utils-misc.php:
|
429 |
msgid "Please"
|
430 |
msgstr "Bitte"
|
431 |
|
432 |
-
#: simple-membership/classes/class.swpm-front-registration.php:
|
433 |
-
#: simple-membership/classes/class.swpm-utils-misc.php:
|
434 |
#: simple-membership/views/login.php:30
|
435 |
msgid "Login"
|
436 |
msgstr "Einloggen"
|
437 |
|
438 |
-
#: simple-membership/classes/class.swpm-front-registration.php:
|
439 |
msgid "Please correct the following"
|
440 |
-
msgstr "Bitte korrigieren Sie
|
441 |
|
442 |
-
#: simple-membership/classes/class.swpm-front-registration.php:
|
443 |
msgid "Membership Level Couldn't be found."
|
444 |
msgstr "Mitgliedschaftsstufe konnte nicht gefunden werden."
|
445 |
|
446 |
-
#: simple-membership/classes/class.swpm-front-registration.php:
|
447 |
msgid "Error! Nonce verification failed for front end profile edit."
|
448 |
-
msgstr "
|
|
|
449 |
|
450 |
-
#: simple-membership/classes/class.swpm-front-registration.php:
|
451 |
msgid "Profile updated successfully."
|
452 |
msgstr "Profil erfolgreich aktualisiert."
|
453 |
|
454 |
-
#: simple-membership/classes/class.swpm-front-registration.php:
|
455 |
msgid ""
|
456 |
"Profile updated successfully. You will need to re-login since you changed "
|
457 |
"your password."
|
@@ -459,38 +535,38 @@ msgstr ""
|
|
459 |
"Profil erfolgreich aktualisiert. Sie müssen sich erneut anmelden, da Sie Ihr "
|
460 |
"Passwort geändert haben."
|
461 |
|
462 |
-
#: simple-membership/classes/class.swpm-front-registration.php:
|
463 |
msgid "Please correct the following."
|
464 |
msgstr "Bitte korrigieren Sie folgendes."
|
465 |
|
466 |
-
#: simple-membership/classes/class.swpm-front-registration.php:
|
467 |
msgid "Captcha validation failed."
|
468 |
msgstr "Captcha-Validierung fehlgeschlagen."
|
469 |
|
470 |
-
#: simple-membership/classes/class.swpm-front-registration.php:
|
471 |
msgid "Email address not valid."
|
472 |
-
msgstr "E-Mail Adresse
|
473 |
|
474 |
-
#: simple-membership/classes/class.swpm-front-registration.php:
|
475 |
msgid "No user found with that email address."
|
476 |
msgstr "Kein Benutzer mit dieser E-Mail-Adresse gefunden."
|
477 |
|
478 |
-
#: simple-membership/classes/class.swpm-front-registration.php:
|
479 |
-
#: simple-membership/classes/class.swpm-front-registration.php:
|
480 |
msgid "Email Address: "
|
481 |
msgstr "E-Mail Adresse: "
|
482 |
|
483 |
-
#: simple-membership/classes/class.swpm-front-registration.php:
|
484 |
msgid "New password has been sent to your email address."
|
485 |
msgstr "Es wurde ein neues Passwort an Ihre E-Mail-Adresse gesendet."
|
486 |
|
487 |
-
#: simple-membership/classes/class.swpm-init-time-tasks.php:
|
488 |
msgid "Sorry, Nonce verification failed."
|
489 |
-
msgstr "
|
490 |
|
491 |
-
#: simple-membership/classes/class.swpm-init-time-tasks.php:
|
492 |
msgid "Sorry, Password didn't match."
|
493 |
-
msgstr "
|
494 |
|
495 |
#: simple-membership/classes/class.swpm-level-form.php:47
|
496 |
msgid "Date format is not valid."
|
@@ -498,7 +574,7 @@ msgstr "Datumsformat ist nicht gültig."
|
|
498 |
|
499 |
#: simple-membership/classes/class.swpm-level-form.php:55
|
500 |
msgid "Access duration must be > 0."
|
501 |
-
msgstr "
|
502 |
|
503 |
#: simple-membership/classes/class.swpm-members.php:10
|
504 |
msgid "Member"
|
@@ -511,8 +587,8 @@ msgstr "ID"
|
|
511 |
|
512 |
#: simple-membership/classes/class.swpm-members.php:20
|
513 |
#: simple-membership/views/add.php:7 simple-membership/views/admin_add.php:11
|
514 |
-
#: simple-membership/views/admin_edit.php:
|
515 |
-
#: simple-membership/views/edit.php:
|
516 |
msgid "Username"
|
517 |
msgstr "Benutzername"
|
518 |
|
@@ -520,7 +596,7 @@ msgstr "Benutzername"
|
|
520 |
#: simple-membership/classes/admin-includes/class.swpm-payments-list-table.php:78
|
521 |
#: simple-membership/views/add.php:23
|
522 |
#: simple-membership/views/admin_member_form_common_part.php:15
|
523 |
-
#: simple-membership/views/edit.php:
|
524 |
msgid "First Name"
|
525 |
msgstr "Vorname"
|
526 |
|
@@ -528,19 +604,19 @@ msgstr "Vorname"
|
|
528 |
#: simple-membership/classes/admin-includes/class.swpm-payments-list-table.php:79
|
529 |
#: simple-membership/views/add.php:27
|
530 |
#: simple-membership/views/admin_member_form_common_part.php:19
|
531 |
-
#: simple-membership/views/edit.php:
|
532 |
msgid "Last Name"
|
533 |
msgstr "Nachname"
|
534 |
|
535 |
#: simple-membership/classes/class.swpm-members.php:23
|
536 |
-
#: simple-membership/views/add.php:11 simple-membership/views/edit.php:
|
537 |
msgid "Email"
|
538 |
-
msgstr "E-Mail
|
539 |
|
540 |
#: simple-membership/classes/class.swpm-members.php:25
|
541 |
#: simple-membership/views/admin_member_form_common_part.php:11
|
542 |
msgid "Access Starts"
|
543 |
-
msgstr "
|
544 |
|
545 |
#: simple-membership/classes/class.swpm-members.php:26
|
546 |
msgid "Account State"
|
@@ -579,12 +655,13 @@ msgstr "unvollständig"
|
|
579 |
|
580 |
#: simple-membership/classes/class.swpm-members.php:189
|
581 |
msgid "No member found."
|
582 |
-
msgstr "
|
583 |
|
584 |
#: simple-membership/classes/class.swpm-members.php:335
|
585 |
msgid "Error! Nonce verification failed for user delete from admin end."
|
586 |
msgstr ""
|
587 |
-
"Fehler!
|
|
|
588 |
|
589 |
#: simple-membership/classes/class.swpm-members.php:404
|
590 |
#: simple-membership/classes/class.swpm-members.php:434
|
@@ -601,7 +678,7 @@ msgstr "Datumsänderung erfolgreich abgeschlossen."
|
|
601 |
|
602 |
#: simple-membership/classes/class.swpm-members.php:460
|
603 |
msgid "Bulk Update Membership Level of Members"
|
604 |
-
msgstr "
|
605 |
|
606 |
#: simple-membership/classes/class.swpm-members.php:463
|
607 |
msgid ""
|
@@ -616,8 +693,8 @@ msgid ""
|
|
616 |
"You can use the following option to bulk update the membership level of "
|
617 |
"users who belong to the level you select below."
|
618 |
msgstr ""
|
619 |
-
"Sie können die folgende Option verwenden, um die Mitgliedschaftsstufe
|
620 |
-
"
|
621 |
"auswählen."
|
622 |
|
623 |
#: simple-membership/classes/class.swpm-members.php:470
|
@@ -639,7 +716,7 @@ msgstr ""
|
|
639 |
|
640 |
#: simple-membership/classes/class.swpm-members.php:483
|
641 |
msgid "Level to Change to: "
|
642 |
-
msgstr "
|
643 |
|
644 |
#: simple-membership/classes/class.swpm-members.php:487
|
645 |
msgid "Select Target Level"
|
@@ -651,11 +728,11 @@ msgstr "Wählen Sie die neue Mitgliedschaftsstufe aus."
|
|
651 |
|
652 |
#: simple-membership/classes/class.swpm-members.php:496
|
653 |
msgid "Bulk Change Membership Level"
|
654 |
-
msgstr "Mitgliedschaftsstufe
|
655 |
|
656 |
#: simple-membership/classes/class.swpm-members.php:506
|
657 |
msgid "Bulk Update Access Starts Date of Members"
|
658 |
-
msgstr "
|
659 |
|
660 |
#: simple-membership/classes/class.swpm-members.php:510
|
661 |
msgid ""
|
@@ -673,8 +750,9 @@ msgid ""
|
|
673 |
"You can manually set a specific access starts date value of all members who "
|
674 |
"belong to a particular level using the following option."
|
675 |
msgstr ""
|
676 |
-
"Sie können
|
677 |
-
"
|
|
|
678 |
|
679 |
#: simple-membership/classes/class.swpm-members.php:521
|
680 |
msgid "Select Level"
|
@@ -690,11 +768,11 @@ msgstr ""
|
|
690 |
|
691 |
#: simple-membership/classes/class.swpm-members.php:533
|
692 |
msgid "Specify the access starts date value."
|
693 |
-
msgstr "Geben Sie das
|
694 |
|
695 |
#: simple-membership/classes/class.swpm-members.php:539
|
696 |
msgid "Bulk Change Access Starts Date"
|
697 |
-
msgstr "
|
698 |
|
699 |
#: simple-membership/classes/class.swpm-members.php:574
|
700 |
msgid "Simple WP Membership::Members"
|
@@ -713,26 +791,26 @@ msgstr "Neues Mitglied hinzufügen"
|
|
713 |
|
714 |
#: simple-membership/classes/class.swpm-members.php:581
|
715 |
msgid "Bulk Operation"
|
716 |
-
msgstr "
|
717 |
|
718 |
#: simple-membership/classes/class.swpm-membership-level.php:52
|
719 |
msgid ""
|
720 |
"Error! Nonce verification failed for membership level creation from admin "
|
721 |
"end."
|
722 |
msgstr ""
|
723 |
-
"Fehler!
|
724 |
-
"fehlgeschlagen."
|
725 |
|
726 |
#: simple-membership/classes/class.swpm-membership-level.php:64
|
727 |
msgid "Membership Level Creation Successful."
|
728 |
-
msgstr "
|
729 |
|
730 |
#: simple-membership/classes/class.swpm-membership-level.php:80
|
731 |
msgid ""
|
732 |
"Error! Nonce verification failed for membership level edit from admin end."
|
733 |
msgstr ""
|
734 |
-
"Fehler! Nonce-Überprüfung für
|
735 |
-
"
|
736 |
|
737 |
#: simple-membership/classes/class.swpm-membership-level.php:92
|
738 |
msgid "Membership Level Updated Successfully."
|
@@ -754,8 +832,8 @@ msgstr "Keine Mitgliedschaftsstufen gefunden."
|
|
754 |
msgid ""
|
755 |
"Error! Nonce verification failed for membership level delete from admin end."
|
756 |
msgstr ""
|
757 |
-
"Fehler! Nonce-Überprüfung für Mitgliedschaftsstufe
|
758 |
-
"
|
759 |
|
760 |
#: simple-membership/classes/class.swpm-membership-levels.php:215
|
761 |
#: simple-membership/views/admin_members_list.php:30
|
@@ -763,345 +841,424 @@ msgstr ""
|
|
763 |
msgid "Search"
|
764 |
msgstr "Suchen"
|
765 |
|
766 |
-
#: simple-membership/classes/class.swpm-membership-levels.php:
|
767 |
msgid "Simple WP Membership::Membership Levels"
|
768 |
msgstr "Simple WP Membership::Mitgliedschaftsstufen"
|
769 |
|
770 |
-
#: simple-membership/classes/class.swpm-membership-levels.php:
|
771 |
msgid "Add Level"
|
772 |
-
msgstr "
|
773 |
|
774 |
-
#: simple-membership/classes/class.swpm-membership-levels.php:
|
775 |
msgid "Manage Content Protection"
|
776 |
-
msgstr "
|
777 |
|
778 |
-
#: simple-membership/classes/class.swpm-membership-levels.php:
|
779 |
msgid "Category Protection"
|
780 |
-
msgstr "Kategorie
|
781 |
|
782 |
-
#: simple-membership/classes/class.swpm-
|
783 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
784 |
msgid "General Settings"
|
785 |
-
msgstr "Einstellungen"
|
786 |
|
787 |
-
#: simple-membership/classes/class.swpm-settings.php:
|
788 |
msgid "Payment Settings"
|
789 |
-
msgstr "
|
790 |
|
791 |
-
#: simple-membership/classes/class.swpm-settings.php:
|
792 |
msgid "Email Settings"
|
793 |
msgstr "E-Mail Einstellungen"
|
794 |
|
795 |
-
#: simple-membership/classes/class.swpm-settings.php:
|
796 |
msgid "Tools"
|
797 |
msgstr "Tools"
|
798 |
|
799 |
-
#: simple-membership/classes/class.swpm-settings.php:
|
800 |
-
#: simple-membership/classes/class.swpm-settings.php:
|
801 |
msgid "Advanced Settings"
|
802 |
msgstr "Erweiterte Einstellungen"
|
803 |
|
804 |
-
#: simple-membership/classes/class.swpm-settings.php:
|
805 |
msgid "Addons Settings"
|
806 |
-
msgstr "
|
807 |
|
808 |
-
#: simple-membership/classes/class.swpm-settings.php:
|
809 |
msgid "Plugin Documentation"
|
810 |
msgstr "Plugin-Dokumentation"
|
811 |
|
812 |
-
#: simple-membership/classes/class.swpm-settings.php:
|
813 |
msgid "Enable Free Membership"
|
814 |
msgstr "Kostenlose Mitgliedschaft erlauben"
|
815 |
|
816 |
-
#: simple-membership/classes/class.swpm-settings.php:
|
817 |
msgid ""
|
818 |
"Enable/disable registration for free membership level. When you enable this "
|
819 |
"option, make sure to specify a free membership level ID in the field below."
|
820 |
msgstr ""
|
821 |
-
"Aktivierung
|
822 |
-
"
|
823 |
-
"dass Sie
|
824 |
|
825 |
-
#: simple-membership/classes/class.swpm-settings.php:
|
826 |
msgid "Free Membership Level ID"
|
827 |
msgstr "Kostenlose Mitgliedschaftsstufen-ID"
|
828 |
|
829 |
-
#: simple-membership/classes/class.swpm-settings.php:
|
830 |
msgid "Assign free membership level ID"
|
831 |
-
msgstr "
|
832 |
|
833 |
-
#: simple-membership/classes/class.swpm-settings.php:
|
834 |
msgid "Enable More Tag Protection"
|
835 |
-
msgstr "
|
836 |
|
837 |
-
#: simple-membership/classes/class.swpm-settings.php:
|
838 |
msgid ""
|
839 |
"Enables or disables \"more\" tag protection in the posts and pages. Anything "
|
840 |
"after the More tag is protected. Anything before the more tag is teaser "
|
841 |
"content."
|
842 |
msgstr ""
|
843 |
-
"
|
844 |
-
"
|
|
|
845 |
|
846 |
-
#: simple-membership/classes/class.swpm-settings.php:
|
847 |
msgid "Hide Adminbar"
|
848 |
msgstr "Admin-Bar ausblenden"
|
849 |
|
850 |
-
#: simple-membership/classes/class.swpm-settings.php:
|
851 |
msgid ""
|
852 |
"WordPress shows an admin toolbar to the logged in users of the site. Check "
|
853 |
"this if you want to hide that admin toolbar in the frontend of your site."
|
854 |
msgstr ""
|
855 |
-
"
|
856 |
-
"
|
857 |
-
"Ihrer Website verstecken möchten."
|
858 |
|
859 |
-
#: simple-membership/classes/class.swpm-settings.php:
|
860 |
msgid "Show Adminbar to Admin"
|
861 |
msgstr "Adminbar dem Admin anzeigen"
|
862 |
|
863 |
-
#: simple-membership/classes/class.swpm-settings.php:
|
864 |
msgid ""
|
865 |
"Use this option if you want to show the admin toolbar to admin users only. "
|
866 |
"The admin toolbar will be hidden for all other users."
|
867 |
msgstr ""
|
868 |
-
"
|
869 |
-
"
|
870 |
-
"Benutzer ausgeblendet."
|
871 |
|
872 |
-
#: simple-membership/classes/class.swpm-settings.php:
|
873 |
msgid "Disable Access to WP Dashboard"
|
874 |
msgstr "Deaktivieren Sie den Zugriff auf das WP Dashboard"
|
875 |
|
876 |
-
#: simple-membership/classes/class.swpm-settings.php:
|
877 |
msgid ""
|
878 |
"WordPress allows a sandard wp user to be able to go to the wp-admin URL and "
|
879 |
"access his profile from the wp dashbaord. Using this option will prevent any "
|
880 |
"non admin users from going to the wp dashboard."
|
881 |
msgstr ""
|
882 |
-
"WordPress ermöglicht es einem Standard-
|
883 |
"gelangen und auf sein Profil aus dem WP-Dashboard zuzugreifen. Mit dieser "
|
884 |
-
"Option wird verhindert, dass
|
|
|
885 |
|
886 |
-
#: simple-membership/classes/class.swpm-settings.php:
|
887 |
msgid "Default Account Status"
|
888 |
msgstr "Standardkonto Status"
|
889 |
|
890 |
-
#: simple-membership/classes/class.swpm-settings.php:
|
891 |
msgid ""
|
892 |
"Select the default account status for newly registered users. If you want to "
|
893 |
"manually approve the members then you can set the status to \"Pending\"."
|
894 |
msgstr ""
|
895 |
-
"Wählen Sie
|
896 |
-
"
|
897 |
-
"\"
|
898 |
|
899 |
-
#: simple-membership/classes/class.swpm-settings.php:
|
900 |
msgid "Members Must be Logged in to Comment"
|
901 |
-
msgstr "
|
|
|
902 |
|
903 |
-
#: simple-membership/classes/class.swpm-settings.php:
|
904 |
msgid ""
|
905 |
"Enable this option if you only want the members of the site to be able to "
|
906 |
"post a comment."
|
907 |
msgstr ""
|
908 |
-
"Aktivieren Sie diese Option, wenn Sie
|
909 |
-
"
|
910 |
|
911 |
-
#: simple-membership/classes/class.swpm-settings.php:
|
912 |
msgid "Pages Settings"
|
913 |
msgstr "Seiteneinstellungen"
|
914 |
|
915 |
-
#: simple-membership/classes/class.swpm-settings.php:
|
916 |
msgid "Login Page URL"
|
917 |
-
msgstr "
|
918 |
|
919 |
-
#: simple-membership/classes/class.swpm-settings.php:
|
920 |
msgid "Registration Page URL"
|
921 |
msgstr "Registrierungsseiten-URL"
|
922 |
|
923 |
-
#: simple-membership/classes/class.swpm-settings.php:
|
924 |
msgid "Join Us Page URL"
|
925 |
msgstr "Jetzt Anmelden-URL"
|
926 |
|
927 |
-
#: simple-membership/classes/class.swpm-settings.php:
|
928 |
msgid "Edit Profile Page URL"
|
929 |
-
msgstr "
|
930 |
|
931 |
-
#: simple-membership/classes/class.swpm-settings.php:
|
932 |
msgid "Password Reset Page URL"
|
933 |
msgstr "Passwort zurücksetzten-URL"
|
934 |
|
935 |
-
#: simple-membership/classes/class.swpm-settings.php:
|
936 |
msgid "Test & Debug Settings"
|
937 |
msgstr "Test & Debug-Einstellungen"
|
938 |
|
939 |
-
#: simple-membership/classes/class.swpm-settings.php:
|
940 |
msgid "Check this option to enable debug logging."
|
941 |
msgstr ""
|
942 |
"Aktivieren Sie diese Option, um die Debug-Protokollierung zu aktivieren."
|
943 |
|
944 |
-
#: simple-membership/classes/class.swpm-settings.php:
|
945 |
msgid "Enable Sandbox Testing"
|
946 |
msgstr "Sandbox-Test aktivieren"
|
947 |
|
948 |
-
#: simple-membership/classes/class.swpm-settings.php:
|
949 |
msgid "Enable this option if you want to do sandbox payment testing."
|
950 |
msgstr ""
|
951 |
-
"Aktivieren Sie diese Option
|
952 |
-
"
|
953 |
|
954 |
-
#: simple-membership/classes/class.swpm-settings.php:
|
955 |
-
|
956 |
-
|
957 |
-
msgid "Settings updated!"
|
958 |
-
msgstr "Einstellungen aktualisiert!"
|
959 |
|
960 |
-
#: simple-membership/classes/class.swpm-settings.php:
|
961 |
msgid "Email Misc. Settings"
|
962 |
msgstr "E-Mail Einstellungen"
|
963 |
|
964 |
-
#: simple-membership/classes/class.swpm-settings.php:
|
965 |
msgid "From Email Address"
|
966 |
msgstr "Von E-Mail-Adresse"
|
967 |
|
968 |
-
#: simple-membership/classes/class.swpm-settings.php:
|
969 |
msgid "Email Settings (Prompt to Complete Registration )"
|
970 |
msgstr "E-Mail-Einstellungen (Eingabeaufforderung zur Anmeldung)"
|
971 |
|
972 |
-
#: simple-membership/classes/class.swpm-settings.php:
|
973 |
-
#: simple-membership/classes/class.swpm-settings.php:
|
974 |
-
#: simple-membership/classes/class.swpm-settings.php:
|
975 |
-
#: simple-membership/classes/class.swpm-settings.php:
|
976 |
-
#: simple-membership/classes/class.swpm-settings.php:
|
977 |
msgid "Email Subject"
|
978 |
msgstr "E-Mail Betreff"
|
979 |
|
980 |
-
#: simple-membership/classes/class.swpm-settings.php:
|
981 |
-
#: simple-membership/classes/class.swpm-settings.php:
|
982 |
-
#: simple-membership/classes/class.swpm-settings.php:
|
983 |
-
#: simple-membership/classes/class.swpm-settings.php:
|
984 |
-
#: simple-membership/classes/class.swpm-settings.php:
|
985 |
msgid "Email Body"
|
986 |
-
msgstr "
|
987 |
|
988 |
-
#: simple-membership/classes/class.swpm-settings.php:
|
989 |
msgid ""
|
990 |
"Enter the email address where you want the admin notification email to be "
|
991 |
"sent to."
|
992 |
msgstr ""
|
993 |
-
"Geben Sie die
|
994 |
-
"gesendet werden soll."
|
995 |
|
996 |
-
#: simple-membership/classes/class.swpm-settings.php:
|
997 |
msgid ""
|
998 |
" You can put multiple email addresses separated by comma (,) in the above "
|
999 |
"field to send the notification to multiple email addresses."
|
1000 |
msgstr ""
|
1001 |
-
"Sie können mehrere
|
1002 |
-
"
|
|
|
1003 |
|
1004 |
-
#: simple-membership/classes/class.swpm-settings.php:
|
1005 |
msgid "Enter the subject for the admin notification email."
|
1006 |
msgstr "Geben Sie den Betreff für die Admin-Benachrichtigungs-E-Mail ein."
|
1007 |
|
1008 |
-
#: simple-membership/classes/class.swpm-settings.php:
|
1009 |
msgid ""
|
1010 |
"This email will be sent to the admin when a new user completes the "
|
1011 |
"membership registration. Only works if you have enabled the \"Send "
|
1012 |
"Notification to Admin\" option above."
|
1013 |
msgstr ""
|
1014 |
-
"Diese
|
1015 |
-
"
|
1016 |
-
"Option \"
|
1017 |
|
1018 |
-
#: simple-membership/classes/class.swpm-settings.php:
|
1019 |
msgid "Email Settings (Registration Complete)"
|
1020 |
msgstr "E-Mail-Einstellungen (Anmeldung abgeschlossen)"
|
1021 |
|
1022 |
-
#: simple-membership/classes/class.swpm-settings.php:
|
1023 |
msgid "Send Notification to Admin"
|
1024 |
msgstr "Benachrichtigung an Admin senden"
|
1025 |
|
1026 |
-
#: simple-membership/classes/class.swpm-settings.php:
|
1027 |
msgid ""
|
1028 |
"Enable this option if you want the admin to receive a notification when a "
|
1029 |
"member registers."
|
1030 |
msgstr ""
|
1031 |
-
"Aktivieren Sie diese Option, wenn der
|
1032 |
-
"
|
1033 |
|
1034 |
-
#: simple-membership/classes/class.swpm-settings.php:
|
1035 |
msgid "Admin Email Address"
|
1036 |
-
msgstr "
|
1037 |
|
1038 |
-
#: simple-membership/classes/class.swpm-settings.php:
|
1039 |
msgid "Admin Notification Email Subject"
|
1040 |
-
msgstr "Admin Benachrichtigung
|
1041 |
|
1042 |
-
#: simple-membership/classes/class.swpm-settings.php:
|
1043 |
msgid "Admin Notification Email Body"
|
1044 |
-
msgstr "
|
1045 |
|
1046 |
-
#: simple-membership/classes/class.swpm-settings.php:
|
1047 |
msgid "Send Email to Member When Added via Admin Dashboard"
|
1048 |
msgstr ""
|
1049 |
-
"E-Mail
|
|
|
1050 |
|
1051 |
-
#: simple-membership/classes/class.swpm-settings.php:
|
1052 |
msgid "Email Settings (Password Reset)"
|
1053 |
msgstr "E-Mail-Einstellungen (Passwort zurücksetzen)"
|
1054 |
|
1055 |
-
#: simple-membership/classes/class.swpm-settings.php:
|
1056 |
msgid " Email Settings (Account Upgrade Notification)"
|
1057 |
msgstr " E-Mail-Einstellungen (Kontoaktualisierungsbenachrichtigung)"
|
1058 |
|
1059 |
-
#: simple-membership/classes/class.swpm-settings.php:
|
1060 |
msgid " Email Settings (Bulk Account Activate Notification)"
|
1061 |
msgstr " E-Mail-Einstellungen (Account Benachrichtigung aktivieren)"
|
1062 |
|
1063 |
-
#: simple-membership/classes/class.swpm-settings.php:
|
1064 |
msgid "Enable Expired Account Login"
|
1065 |
msgstr "Aktivieren Sie das \"abgelaufene Konto\" Login"
|
1066 |
|
1067 |
-
#: simple-membership/classes/class.swpm-settings.php:
|
1068 |
msgid ""
|
1069 |
"When enabled, expired members will be able to log into the system but won't "
|
1070 |
"be able to view any protected content. This allows them to easily renew "
|
1071 |
"their account by making another payment."
|
1072 |
msgstr ""
|
1073 |
-
"Wenn aktiviert, können
|
1074 |
-
"können aber
|
1075 |
-
"
|
1076 |
|
1077 |
-
#: simple-membership/classes/class.swpm-settings.php:
|
1078 |
msgid "Membership Renewal URL"
|
1079 |
-
msgstr "
|
1080 |
|
1081 |
-
#: simple-membership/classes/class.swpm-settings.php:
|
1082 |
msgid ""
|
1083 |
"You can create a renewal page for your site. Read <a href=\"https://simple-"
|
1084 |
"membership-plugin.com/creating-membership-renewal-button/\" target=\"_blank"
|
1085 |
"\">this documentation</a> to learn how to create a renewal page."
|
1086 |
msgstr ""
|
1087 |
-
"Sie können eine
|
1088 |
-
"href=\"https://simple-membership-plugin.com/
|
1089 |
-
"button/\" target=\"_blank\">
|
1090 |
-
"eine
|
|
|
1091 |
|
1092 |
-
#: simple-membership/classes/class.swpm-settings.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1093 |
msgid "Allow Account Deletion"
|
1094 |
msgstr "Kontolöschung zulassen"
|
1095 |
|
1096 |
-
#: simple-membership/classes/class.swpm-settings.php:
|
1097 |
msgid "Allow users to delete their accounts."
|
1098 |
msgstr "Benutzern erlauben, ihre Konten zu löschen."
|
1099 |
|
1100 |
-
#: simple-membership/classes/class.swpm-settings.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1101 |
msgid "Use WordPress Timezone"
|
1102 |
-
msgstr "
|
1103 |
|
1104 |
-
#: simple-membership/classes/class.swpm-settings.php:
|
1105 |
msgid ""
|
1106 |
"Use this option if you want to use the timezone value specified in your "
|
1107 |
"WordPress General Settings interface."
|
@@ -1109,78 +1266,123 @@ msgstr ""
|
|
1109 |
"Verwenden Sie diese Option, wenn Sie den in Ihrer WordPress Einstellungen "
|
1110 |
"angegebenen Zeitzonenwert verwenden möchten."
|
1111 |
|
1112 |
-
#: simple-membership/classes/class.swpm-settings.php:
|
1113 |
msgid "Auto Delete Pending Account"
|
1114 |
-
msgstr "
|
1115 |
|
1116 |
-
#: simple-membership/classes/class.swpm-settings.php:
|
1117 |
msgid "Select how long you want to keep \"pending\" account."
|
1118 |
msgstr ""
|
1119 |
"Wählen Sie aus, wie lange Sie ausstehende Benutzerkonten behalten möchten."
|
1120 |
|
1121 |
-
#: simple-membership/classes/class.swpm-settings.php:
|
1122 |
msgid "Admin Dashboard Access Permission"
|
1123 |
msgstr "Admin-Dashboard Zugriffsberechtigung"
|
1124 |
|
1125 |
-
#: simple-membership/classes/class.swpm-settings.php:
|
1126 |
msgid ""
|
1127 |
"SWPM admin dashboard is accessible to admin users only (just like any other "
|
1128 |
"plugin). You can allow users with other WP user role to access the SWPM "
|
1129 |
"admin dashboard by selecting a value here."
|
1130 |
msgstr ""
|
1131 |
-
"SWPM
|
1132 |
-
"
|
1133 |
-
"
|
1134 |
-
|
|
|
|
|
|
|
|
|
|
|
1135 |
|
1136 |
-
#: simple-membership/classes/class.swpm-settings.php:
|
1137 |
msgid "General Plugin Settings."
|
1138 |
msgstr "Allgemeine Plugin-Einstellungen."
|
1139 |
|
1140 |
-
#: simple-membership/classes/class.swpm-settings.php:
|
1141 |
msgid "Page Setup and URL Related settings."
|
1142 |
-
msgstr "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1143 |
|
1144 |
-
#: simple-membership/classes/class.swpm-settings.php:
|
1145 |
msgid "Testing and Debug Related Settings."
|
1146 |
-
msgstr "Testen und Debuggen
|
1147 |
|
1148 |
-
#: simple-membership/classes/class.swpm-settings.php:
|
1149 |
msgid ""
|
1150 |
"This email will be sent to your users when they complete the registration "
|
1151 |
"and become a member."
|
1152 |
msgstr ""
|
1153 |
-
"Diese
|
1154 |
-
"
|
1155 |
|
1156 |
-
#: simple-membership/classes/class.swpm-settings.php:
|
1157 |
msgid ""
|
1158 |
"This email will be sent to your users when they use the password reset "
|
1159 |
"functionality."
|
1160 |
msgstr ""
|
1161 |
-
"Diese
|
1162 |
-
"
|
1163 |
|
1164 |
-
#: simple-membership/classes/class.swpm-settings.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1165 |
msgid "Settings in this section apply to all emails."
|
1166 |
msgstr "Die Einstellungen in diesem Abschnitt gelten für alle E-Mails."
|
1167 |
|
1168 |
-
#: simple-membership/classes/class.swpm-settings.php:
|
1169 |
msgid ""
|
1170 |
"This email will be sent to your users after account upgrade (when an "
|
1171 |
"existing member pays for a new membership level)."
|
1172 |
msgstr ""
|
1173 |
-
"Diese
|
1174 |
-
"
|
1175 |
|
1176 |
-
#: simple-membership/classes/class.swpm-settings.php:
|
1177 |
msgid ""
|
1178 |
"This email will be sent to your members when you use the bulk account "
|
1179 |
"activate and notify action."
|
1180 |
msgstr ""
|
1181 |
-
"Diese
|
|
|
1182 |
|
1183 |
-
#: simple-membership/classes/class.swpm-settings.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1184 |
msgid ""
|
1185 |
"This email will be sent to prompt users to complete registration after the "
|
1186 |
"payment."
|
@@ -1188,13 +1390,13 @@ msgstr ""
|
|
1188 |
"Diese E-Mail wird gesendet, um Benutzer zu veranlassen, die Registrierung "
|
1189 |
"nach der Zahlung zu vervollständigen."
|
1190 |
|
1191 |
-
#: simple-membership/classes/class.swpm-settings.php:
|
1192 |
msgid "This page allows you to configure some advanced features of the plugin."
|
1193 |
msgstr ""
|
1194 |
-
"Auf dieser Seite können Sie einige erweiterte
|
1195 |
"konfigurieren."
|
1196 |
|
1197 |
-
#: simple-membership/classes/class.swpm-settings.php:
|
1198 |
msgid "Simple WP Membership::Settings"
|
1199 |
msgstr "Simple WP Membership::Einstellungen"
|
1200 |
|
@@ -1221,45 +1423,53 @@ msgstr "Profil"
|
|
1221 |
msgid "Password Reset"
|
1222 |
msgstr "Passwort zurücksetzen"
|
1223 |
|
1224 |
-
#: simple-membership/classes/class.swpm-utils-misc.php:
|
1225 |
msgid "Not a Member?"
|
1226 |
msgstr "Noch kein Mitglied?"
|
1227 |
|
1228 |
-
#: simple-membership/classes/class.swpm-utils-misc.php:
|
1229 |
msgid "renew"
|
1230 |
msgstr "erneuern"
|
1231 |
|
1232 |
-
#: simple-membership/classes/class.swpm-utils-misc.php:
|
1233 |
msgid " your account to gain access to this content."
|
1234 |
msgstr " Ihr Konto, um Zugang zu diesem Inhalt zu erhalten."
|
1235 |
|
1236 |
-
#: simple-membership/classes/class.swpm-utils-misc.php:
|
1237 |
-
#: simple-membership/classes/class.swpm-utils-misc.php:
|
1238 |
msgid "Error! This action ("
|
1239 |
msgstr "Fehler! Diese Aktion ("
|
1240 |
|
|
|
|
|
|
|
|
|
1241 |
#: simple-membership/classes/class.swpm-utils-template.php:38
|
1242 |
msgid "Error! Failed to find a template path for the specified template: "
|
1243 |
msgstr ""
|
1244 |
-
"Fehler!
|
1245 |
|
1246 |
#: simple-membership/classes/class.swpm-utils.php:100
|
1247 |
msgid "Never"
|
1248 |
msgstr "Niemals"
|
1249 |
|
1250 |
#: simple-membership/classes/class.swpm-utils.php:115
|
|
|
1251 |
msgid "Active"
|
1252 |
msgstr "Aktiv"
|
1253 |
|
1254 |
#: simple-membership/classes/class.swpm-utils.php:116
|
|
|
1255 |
msgid "Inactive"
|
1256 |
msgstr "Inaktiv"
|
1257 |
|
1258 |
#: simple-membership/classes/class.swpm-utils.php:117
|
|
|
1259 |
msgid "Pending"
|
1260 |
-
msgstr "
|
1261 |
|
1262 |
#: simple-membership/classes/class.swpm-utils.php:118
|
|
|
1263 |
msgid "Expired"
|
1264 |
msgstr "Abgelaufen"
|
1265 |
|
@@ -1295,7 +1505,7 @@ msgstr "Der ausgewählte Eintrag wurde gelöscht!"
|
|
1295 |
|
1296 |
#: simple-membership/classes/admin-includes/class.swpm-payments-admin-menu.php:21
|
1297 |
msgid "Simple Membership::Payments"
|
1298 |
-
msgstr "Simple Membership::
|
1299 |
|
1300 |
#: simple-membership/classes/admin-includes/class.swpm-payments-admin-menu.php:25
|
1301 |
msgid "Transactions"
|
@@ -1325,11 +1535,7 @@ msgstr "E-Mail Adresse"
|
|
1325 |
|
1326 |
#: simple-membership/classes/admin-includes/class.swpm-payments-list-table.php:80
|
1327 |
msgid "Member Profile"
|
1328 |
-
msgstr "
|
1329 |
-
|
1330 |
-
#: simple-membership/classes/admin-includes/class.swpm-payments-list-table.php:81
|
1331 |
-
msgid "Date"
|
1332 |
-
msgstr "Datum"
|
1333 |
|
1334 |
#: simple-membership/classes/admin-includes/class.swpm-payments-list-table.php:82
|
1335 |
msgid "Transaction ID"
|
@@ -1345,7 +1551,7 @@ msgstr "Summe"
|
|
1345 |
|
1346 |
#: simple-membership/classes/shortcode-related/class.swpm-shortcodes-handler.php:57
|
1347 |
msgid "Your membership profile will be updated to reflect the payment."
|
1348 |
-
msgstr "Ihr Profil wird
|
1349 |
|
1350 |
#: simple-membership/classes/shortcode-related/class.swpm-shortcodes-handler.php:58
|
1351 |
msgid "Your profile username: "
|
@@ -1366,9 +1572,10 @@ msgid ""
|
|
1366 |
"processed. Please check back in a few minutes. An email will be sent to you "
|
1367 |
"with the details shortly."
|
1368 |
msgstr ""
|
1369 |
-
"Wenn Sie
|
1370 |
-
"
|
1371 |
-
"
|
|
|
1372 |
|
1373 |
#: simple-membership/classes/shortcode-related/class.swpm-shortcodes-handler.php:90
|
1374 |
msgid "Expiry: "
|
@@ -1376,15 +1583,15 @@ msgstr "Ablauf: "
|
|
1376 |
|
1377 |
#: simple-membership/classes/shortcode-related/class.swpm-shortcodes-handler.php:92
|
1378 |
msgid "You are not logged-in as a member"
|
1379 |
-
msgstr "Sie sind nicht als Mitglied angemeldet.
|
1380 |
|
1381 |
#: simple-membership/views/add.php:15 simple-membership/views/admin_add.php:19
|
1382 |
-
#: simple-membership/views/admin_edit.php:
|
1383 |
-
#: simple-membership/views/edit.php:
|
1384 |
msgid "Password"
|
1385 |
msgstr "Passwort"
|
1386 |
|
1387 |
-
#: simple-membership/views/add.php:19 simple-membership/views/edit.php:
|
1388 |
msgid "Repeat Password"
|
1389 |
msgstr "Passwort wiederholen"
|
1390 |
|
@@ -1402,30 +1609,30 @@ msgstr ""
|
|
1402 |
#: simple-membership/views/admin_add_level.php:12
|
1403 |
#: simple-membership/views/admin_add_level.php:16
|
1404 |
#: simple-membership/views/admin_add_level.php:20
|
1405 |
-
#: simple-membership/views/admin_edit.php:
|
1406 |
-
#: simple-membership/views/admin_edit.php:
|
1407 |
#: simple-membership/views/admin_edit_level.php:16
|
1408 |
#: simple-membership/views/admin_edit_level.php:20
|
1409 |
#: simple-membership/views/admin_edit_level.php:24
|
1410 |
msgid "(required)"
|
1411 |
-
msgstr "(
|
1412 |
|
1413 |
#: simple-membership/views/admin_add.php:15
|
1414 |
-
#: simple-membership/views/admin_edit.php:
|
1415 |
msgid "E-mail"
|
1416 |
msgstr "E-Mail Adresse"
|
1417 |
|
1418 |
#: simple-membership/views/admin_add.php:19
|
1419 |
msgid "(twice, required)"
|
1420 |
-
msgstr "(
|
1421 |
|
1422 |
#: simple-membership/views/admin_add.php:24
|
1423 |
-
#: simple-membership/views/admin_edit.php:
|
1424 |
msgid "Strength indicator"
|
1425 |
msgstr "Passwortsicherheit"
|
1426 |
|
1427 |
#: simple-membership/views/admin_add.php:25
|
1428 |
-
#: simple-membership/views/admin_edit.php:
|
1429 |
msgid ""
|
1430 |
"Hint: The password should be at least seven characters long. To make it "
|
1431 |
"stronger, use upper and lower case letters, numbers and symbols like ! \" ? "
|
@@ -1436,7 +1643,7 @@ msgstr ""
|
|
1436 |
"Symbole wie! \" ? $ % ^ &)."
|
1437 |
|
1438 |
#: simple-membership/views/admin_add.php:29
|
1439 |
-
#: simple-membership/views/admin_edit.php:
|
1440 |
#: simple-membership/views/loggedin.php:10
|
1441 |
msgid "Account Status"
|
1442 |
msgstr "Kontostatus"
|
@@ -1450,12 +1657,17 @@ msgid ""
|
|
1450 |
"Some of the simple membership plugin's addon settings and options will be "
|
1451 |
"displayed here (if you have them)"
|
1452 |
msgstr ""
|
1453 |
-
"
|
|
|
1454 |
|
1455 |
#: simple-membership/views/admin_addon_settings.php:8
|
1456 |
msgid "Save Changes"
|
1457 |
msgstr "Änderungen speichern"
|
1458 |
|
|
|
|
|
|
|
|
|
1459 |
#: simple-membership/views/admin_add_level.php:7
|
1460 |
msgid "Create new membership level."
|
1461 |
msgstr "Neue Mitgliedschaftsstufe erstellen."
|
@@ -1477,7 +1689,7 @@ msgstr "Zugriffsdauer"
|
|
1477 |
|
1478 |
#: simple-membership/views/admin_add_level.php:23
|
1479 |
msgid "No Expiry (Access for this level will not expire until cancelled"
|
1480 |
-
msgstr "Kein Ablauf (
|
1481 |
|
1482 |
#: simple-membership/views/admin_add_level.php:24
|
1483 |
#: simple-membership/views/admin_add_level.php:26
|
@@ -1488,7 +1700,7 @@ msgstr "Kein Ablauf (Zugang für diese Ebene wird nicht abgebrochen"
|
|
1488 |
#: simple-membership/views/admin_edit_level.php:34
|
1489 |
#: simple-membership/views/admin_edit_level.php:37
|
1490 |
msgid "Expire After"
|
1491 |
-
msgstr "
|
1492 |
|
1493 |
#: simple-membership/views/admin_add_level.php:25
|
1494 |
#: simple-membership/views/admin_edit_level.php:29
|
@@ -1497,7 +1709,7 @@ msgstr "Tage (Zugang läuft nach vorgegebener Anzahl der Tage ab.)"
|
|
1497 |
|
1498 |
#: simple-membership/views/admin_add_level.php:27
|
1499 |
msgid "Weeks (Access expires after given number of weeks"
|
1500 |
-
msgstr "Wochen (Zugang läuft nach vorgegebener Anzahl der Wochen ab
|
1501 |
|
1502 |
#: simple-membership/views/admin_add_level.php:29
|
1503 |
#: simple-membership/views/admin_edit_level.php:35
|
@@ -1521,7 +1733,7 @@ msgstr "(Der Zugang läuft zu einem festen Termin ab)"
|
|
1521 |
|
1522 |
#: simple-membership/views/admin_add_level.php:39
|
1523 |
msgid "Add New Membership Level "
|
1524 |
-
msgstr "Neue
|
1525 |
|
1526 |
#: simple-membership/views/admin_add_ons_page.php:7
|
1527 |
msgid "Simple WP Membership::Add-ons"
|
@@ -1533,9 +1745,8 @@ msgid ""
|
|
1533 |
"\"General Protection\" from the drop-down box below and then select the "
|
1534 |
"categories that should be protected from non-logged in users."
|
1535 |
msgstr ""
|
1536 |
-
"Zuerst
|
1537 |
-
"
|
1538 |
-
"auswählen, die vor nicht angemeldeten Benutzern geschützt werden sollen."
|
1539 |
|
1540 |
#: simple-membership/views/admin_category_list.php:8
|
1541 |
msgid ""
|
@@ -1543,63 +1754,63 @@ msgid ""
|
|
1543 |
"then select the categories you want to grant access to (for that particular "
|
1544 |
"membership level)."
|
1545 |
msgstr ""
|
1546 |
-
"
|
1547 |
-
"
|
1548 |
-
"
|
1549 |
|
1550 |
#: simple-membership/views/admin_category_list.php:17
|
|
|
1551 |
msgid "Membership Level:"
|
1552 |
msgstr "Mitgliedschaftsstufe:"
|
1553 |
|
1554 |
#: simple-membership/views/admin_category_list.php:23
|
1555 |
-
#: simple-membership/views/
|
|
|
1556 |
msgid "Update"
|
1557 |
msgstr "Aktualisieren"
|
1558 |
|
1559 |
-
#: simple-membership/views/admin_edit.php:
|
1560 |
msgid "Edit Member"
|
1561 |
msgstr "Mitglied bearbeiten"
|
1562 |
|
1563 |
-
#: simple-membership/views/admin_edit.php:
|
1564 |
msgid "Edit existing member details."
|
1565 |
-
msgstr "Bearbeiten Sie die vorhandenen
|
1566 |
|
1567 |
-
#: simple-membership/views/admin_edit.php:
|
1568 |
msgid " You are currenty editing member with member ID: "
|
1569 |
msgstr " Sie bearbeiten gerade das Mitglied mit der Mitglieds-ID: "
|
1570 |
|
1571 |
-
#: simple-membership/views/admin_edit.php:
|
1572 |
msgid "(twice, leave empty to retain old password)"
|
1573 |
-
msgstr "(leer lassen, um
|
1574 |
|
1575 |
-
#: simple-membership/views/admin_edit.php:
|
1576 |
msgid "Notify User"
|
1577 |
msgstr "Benutzer benachrichtigen"
|
1578 |
|
1579 |
-
#: simple-membership/views/admin_edit.php:
|
1580 |
msgid "Subscriber ID/Reference"
|
1581 |
msgstr "Abonennten ID / Referenz"
|
1582 |
|
1583 |
-
#: simple-membership/views/admin_edit.php:
|
1584 |
msgid "Last Accessed Date"
|
1585 |
-
msgstr "
|
1586 |
|
1587 |
-
#: simple-membership/views/admin_edit.php:
|
1588 |
-
#: simple-membership/views/admin_edit.php:
|
1589 |
msgid "This value gets updated when this member logs into your site."
|
1590 |
-
msgstr ""
|
1591 |
-
"Dieser Wert wird aktualisiert, wenn sich dieses Mitglied bei Ihrer Website "
|
1592 |
-
"anmeldet."
|
1593 |
|
1594 |
-
#: simple-membership/views/admin_edit.php:
|
1595 |
msgid "Last Accessed From IP"
|
1596 |
msgstr "Letzter Zugriff von IP"
|
1597 |
|
1598 |
-
#: simple-membership/views/admin_edit.php:84
|
1599 |
-
msgid "Edit User "
|
1600 |
-
msgstr "Benutzer bearbeiten "
|
1601 |
-
|
1602 |
#: simple-membership/views/admin_edit.php:89
|
|
|
|
|
|
|
|
|
1603 |
msgid "Delete User Profile"
|
1604 |
msgstr "Benutzerprofil löschen"
|
1605 |
|
@@ -1611,8 +1822,7 @@ msgstr "Mitgliedschaft bearbeiten"
|
|
1611 |
msgid ""
|
1612 |
"You can edit details of a selected membership level from this interface. "
|
1613 |
msgstr ""
|
1614 |
-
"Sie können
|
1615 |
-
"Mitgliedschaftsstufe bearbeiten. "
|
1616 |
|
1617 |
#: simple-membership/views/admin_edit_level.php:10
|
1618 |
msgid "You are currently editing: "
|
@@ -1627,44 +1837,52 @@ msgid "Weeks (Access expires after given number of weeks)"
|
|
1627 |
msgstr "Wochen (Zugang läuft nach vorgegebener Anzahl von Wochen)"
|
1628 |
|
1629 |
#: simple-membership/views/admin_edit_level.php:47
|
1630 |
-
msgid "
|
1631 |
-
msgstr "
|
1632 |
|
1633 |
#: simple-membership/views/admin_membership_manage.php:18
|
1634 |
msgid "Example Content Protection Settings"
|
1635 |
-
msgstr "Beispiel
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1636 |
|
1637 |
#: simple-membership/views/admin_member_form_common_part.php:23
|
1638 |
msgid "Gender"
|
1639 |
msgstr "Geschlecht"
|
1640 |
|
1641 |
#: simple-membership/views/admin_member_form_common_part.php:30
|
1642 |
-
#: simple-membership/views/edit.php:
|
1643 |
msgid "Phone"
|
1644 |
msgstr "Telefonnummer"
|
1645 |
|
1646 |
#: simple-membership/views/admin_member_form_common_part.php:34
|
1647 |
-
#: simple-membership/views/edit.php:
|
1648 |
msgid "Street"
|
1649 |
msgstr "Straße"
|
1650 |
|
1651 |
#: simple-membership/views/admin_member_form_common_part.php:38
|
1652 |
-
#: simple-membership/views/edit.php:
|
1653 |
msgid "City"
|
1654 |
msgstr "Stadt"
|
1655 |
|
1656 |
#: simple-membership/views/admin_member_form_common_part.php:42
|
1657 |
-
#: simple-membership/views/edit.php:
|
1658 |
msgid "State"
|
1659 |
msgstr "Bundesland"
|
1660 |
|
1661 |
#: simple-membership/views/admin_member_form_common_part.php:46
|
1662 |
-
#: simple-membership/views/edit.php:
|
1663 |
msgid "Zipcode"
|
1664 |
msgstr "PLZ"
|
1665 |
|
1666 |
#: simple-membership/views/admin_member_form_common_part.php:50
|
1667 |
-
#: simple-membership/views/edit.php:
|
1668 |
msgid "Country"
|
1669 |
msgstr "Land"
|
1670 |
|
@@ -1676,9 +1894,41 @@ msgstr "Firma"
|
|
1676 |
msgid "Member Since"
|
1677 |
msgstr "Mitglied seit"
|
1678 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1679 |
#: simple-membership/views/admin_tools_settings.php:6
|
1680 |
msgid "Generate a Registration Completion link"
|
1681 |
-
msgstr "
|
1682 |
|
1683 |
#: simple-membership/views/admin_tools_settings.php:9
|
1684 |
msgid ""
|
@@ -1686,13 +1936,12 @@ msgid ""
|
|
1686 |
"your customer if they have missed the email that was automatically sent out "
|
1687 |
"to them after the payment."
|
1688 |
msgstr ""
|
1689 |
-
"Sie können hier manuell einen
|
1690 |
-
"generieren
|
1691 |
-
"erhlaten haben, die ihnen nach der Zahlung automatisch zugesandt wurde."
|
1692 |
|
1693 |
#: simple-membership/views/admin_tools_settings.php:14
|
1694 |
msgid "Generate Registration Completion Link"
|
1695 |
-
msgstr "
|
1696 |
|
1697 |
#: simple-membership/views/admin_tools_settings.php:15
|
1698 |
msgid "For a Particular Member ID"
|
@@ -1708,7 +1957,7 @@ msgstr "Für alle unvollständigen Anmeldungen"
|
|
1708 |
|
1709 |
#: simple-membership/views/admin_tools_settings.php:23
|
1710 |
msgid "Send Registration Reminder Email Too"
|
1711 |
-
msgstr "
|
1712 |
|
1713 |
#: simple-membership/views/admin_tools_settings.php:29
|
1714 |
msgid "Submit"
|
@@ -1719,16 +1968,21 @@ msgid ""
|
|
1719 |
"Link(s) generated successfully. The following link(s) can be used to "
|
1720 |
"complete the registration."
|
1721 |
msgstr ""
|
1722 |
-
"Link(s)
|
1723 |
-
"die Registrierung
|
1724 |
|
1725 |
#: simple-membership/views/admin_tools_settings.php:40
|
1726 |
msgid "Registration completion links will appear below"
|
1727 |
-
msgstr "
|
|
|
1728 |
|
1729 |
-
#: simple-membership/views/edit.php:
|
1730 |
msgid "Leave empty to keep the current password"
|
1731 |
-
msgstr "Lassen Sie das Feld leer, um das aktuelle Passwort beizubehalten
|
|
|
|
|
|
|
|
|
1732 |
|
1733 |
#: simple-membership/views/forgot_password.php:12
|
1734 |
msgid "Reset Password"
|
@@ -1746,13 +2000,17 @@ msgstr "Mitgliedschaft"
|
|
1746 |
msgid "Account Expiry"
|
1747 |
msgstr "Kontoablauf"
|
1748 |
|
1749 |
-
#: simple-membership/views/loggedin.php:
|
|
|
|
|
|
|
|
|
1750 |
msgid "Logout"
|
1751 |
msgstr "Ausloggen"
|
1752 |
|
1753 |
#: simple-membership/views/login.php:11
|
1754 |
msgid "Username or Email"
|
1755 |
-
msgstr "
|
1756 |
|
1757 |
#: simple-membership/views/login.php:24
|
1758 |
msgid "Remember Me"
|
@@ -1769,67 +2027,80 @@ msgstr ""
|
|
1769 |
|
1770 |
#: simple-membership/views/payments/admin_all_payment_transactions.php:12
|
1771 |
msgid "Search for a transaction by using email or name"
|
1772 |
-
msgstr "
|
1773 |
|
1774 |
-
#: simple-membership/views/payments/admin_create_payment_buttons.php:
|
1775 |
msgid ""
|
1776 |
"You can create new payment button for your memberships using this interface."
|
1777 |
msgstr ""
|
1778 |
-
"
|
1779 |
-
"
|
1780 |
|
1781 |
-
#: simple-membership/views/payments/admin_create_payment_buttons.php:
|
1782 |
msgid "Select Payment Button Type"
|
1783 |
-
msgstr "Wählen Sie
|
1784 |
|
1785 |
-
#: simple-membership/views/payments/admin_create_payment_buttons.php:
|
1786 |
msgid "PayPal Buy Now"
|
1787 |
msgstr "PayPal Jetzt kaufen"
|
1788 |
|
1789 |
-
#: simple-membership/views/payments/admin_create_payment_buttons.php:
|
1790 |
msgid "PayPal Subscription"
|
1791 |
msgstr "PayPal Abonnement"
|
1792 |
|
1793 |
-
#: simple-membership/views/payments/admin_create_payment_buttons.php:
|
1794 |
msgid "Stripe Buy Now"
|
1795 |
msgstr "Stripe Jetzt kaufen"
|
1796 |
|
1797 |
-
#: simple-membership/views/payments/admin_create_payment_buttons.php:
|
|
|
|
|
|
|
|
|
1798 |
msgid "Braintree Buy Now"
|
1799 |
msgstr "Braintree Jetzt kaufen"
|
1800 |
|
1801 |
-
#: simple-membership/views/payments/admin_create_payment_buttons.php:
|
1802 |
msgid "Next"
|
1803 |
msgstr "Weiter"
|
1804 |
|
1805 |
-
#: simple-membership/views/payments/admin_edit_payment_buttons.php:
|
1806 |
msgid "You can edit a payment button using this interface."
|
1807 |
-
msgstr "Sie können
|
1808 |
|
1809 |
#: simple-membership/views/payments/admin_payment_buttons.php:6
|
1810 |
msgid ""
|
1811 |
"All the membership buttons that you created in the plugin are displayed here."
|
1812 |
msgstr ""
|
1813 |
-
"
|
1814 |
-
"
|
1815 |
|
1816 |
#: simple-membership/views/payments/admin_payment_settings.php:21
|
1817 |
msgid "Error! The membership level ID ("
|
1818 |
msgstr "Fehler! Die Mitgliederstufen-ID ("
|
1819 |
|
1820 |
-
#: simple-membership/views/payments/admin_payment_settings.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1821 |
msgid "PayPal Integration Settings"
|
1822 |
msgstr "PayPal Integration Einstellungen"
|
1823 |
|
1824 |
-
#: simple-membership/views/payments/admin_payment_settings.php:
|
1825 |
msgid "Generate the \"Advanced Variables\" Code for your PayPal button"
|
1826 |
msgstr "Generieren Sie den \"Advanced Variables\" Code für Ihren PayPal-Button"
|
1827 |
|
1828 |
-
#: simple-membership/views/payments/admin_payment_settings.php:
|
1829 |
msgid "Enter the Membership Level ID"
|
1830 |
msgstr "Geben Sie die Mitgliederstufen-ID ein"
|
1831 |
|
1832 |
-
#: simple-membership/views/payments/admin_payment_settings.php:
|
1833 |
msgid "Generate Code"
|
1834 |
msgstr "Code generieren"
|
1835 |
|
@@ -1838,27 +2109,29 @@ msgid "Braintree Buy Now Button Configuration"
|
|
1838 |
msgstr "Braintree \"Jetzt kaufen\" Button Konfiguration"
|
1839 |
|
1840 |
#: simple-membership/views/payments/payment-gateway/admin_braintree_buy_now_button.php:34
|
1841 |
-
#: simple-membership/views/payments/payment-gateway/admin_paypal_buy_now_button.php:
|
1842 |
-
#: simple-membership/views/payments/payment-gateway/admin_paypal_subscription_button.php:
|
1843 |
-
#: simple-membership/views/payments/payment-gateway/admin_stripe_buy_now_button.php:
|
|
|
1844 |
msgid "Button ID"
|
1845 |
msgstr "Button ID"
|
1846 |
|
1847 |
#: simple-membership/views/payments/payment-gateway/admin_braintree_buy_now_button.php:42
|
1848 |
#: simple-membership/views/payments/payment-gateway/admin_paypal_buy_now_button.php:26
|
1849 |
-
#: simple-membership/views/payments/payment-gateway/admin_paypal_buy_now_button.php:
|
1850 |
#: simple-membership/views/payments/payment-gateway/admin_paypal_subscription_button.php:27
|
1851 |
-
#: simple-membership/views/payments/payment-gateway/admin_paypal_subscription_button.php:
|
1852 |
#: simple-membership/views/payments/payment-gateway/admin_stripe_buy_now_button.php:39
|
1853 |
-
#: simple-membership/views/payments/payment-gateway/admin_stripe_buy_now_button.php:
|
|
|
1854 |
msgid "Button Title"
|
1855 |
msgstr "Button Titel"
|
1856 |
|
1857 |
#: simple-membership/views/payments/payment-gateway/admin_braintree_buy_now_button.php:60
|
1858 |
#: simple-membership/views/payments/payment-gateway/admin_paypal_buy_now_button.php:44
|
1859 |
-
#: simple-membership/views/payments/payment-gateway/admin_paypal_buy_now_button.php:
|
1860 |
#: simple-membership/views/payments/payment-gateway/admin_stripe_buy_now_button.php:57
|
1861 |
-
#: simple-membership/views/payments/payment-gateway/admin_stripe_buy_now_button.php:
|
1862 |
msgid "Payment Amount"
|
1863 |
msgstr "Zahlungsbetrag"
|
1864 |
|
@@ -1888,193 +2161,237 @@ msgstr "Händler-Konto-ID"
|
|
1888 |
|
1889 |
#: simple-membership/views/payments/payment-gateway/admin_braintree_buy_now_button.php:113
|
1890 |
#: simple-membership/views/payments/payment-gateway/admin_stripe_buy_now_button.php:137
|
1891 |
-
#: simple-membership/views/payments/payment-gateway/admin_stripe_buy_now_button.php:
|
1892 |
msgid "The following details are optional."
|
1893 |
msgstr "Die folgenden Angaben sind optional."
|
1894 |
|
1895 |
#: simple-membership/views/payments/payment-gateway/admin_braintree_buy_now_button.php:117
|
1896 |
-
#: simple-membership/views/payments/payment-gateway/admin_paypal_buy_now_button.php:
|
1897 |
-
#: simple-membership/views/payments/payment-gateway/admin_paypal_buy_now_button.php:
|
1898 |
-
#: simple-membership/views/payments/payment-gateway/admin_paypal_subscription_button.php:
|
1899 |
-
#: simple-membership/views/payments/payment-gateway/admin_paypal_subscription_button.php:
|
1900 |
-
#: simple-membership/views/payments/payment-gateway/admin_stripe_buy_now_button.php:
|
1901 |
-
#: simple-membership/views/payments/payment-gateway/admin_stripe_buy_now_button.php:
|
|
|
1902 |
msgid "Return URL"
|
1903 |
msgstr "Zu URL zurückkehren"
|
1904 |
|
1905 |
#: simple-membership/views/payments/payment-gateway/admin_braintree_buy_now_button.php:127
|
1906 |
-
#: simple-membership/views/payments/payment-gateway/admin_paypal_buy_now_button.php:
|
1907 |
-
#: simple-membership/views/payments/payment-gateway/admin_paypal_buy_now_button.php:
|
1908 |
-
#: simple-membership/views/payments/payment-gateway/admin_paypal_subscription_button.php:
|
1909 |
-
#: simple-membership/views/payments/payment-gateway/admin_paypal_subscription_button.php:
|
1910 |
-
#: simple-membership/views/payments/payment-gateway/admin_stripe_buy_now_button.php:
|
1911 |
-
#: simple-membership/views/payments/payment-gateway/admin_stripe_buy_now_button.php:
|
|
|
1912 |
msgid "Save Payment Data"
|
1913 |
msgstr "Zahlungsdaten speichern"
|
1914 |
|
1915 |
#: simple-membership/views/payments/payment-gateway/admin_paypal_buy_now_button.php:16
|
1916 |
-
#: simple-membership/views/payments/payment-gateway/admin_paypal_buy_now_button.php:
|
1917 |
msgid "PayPal Buy Now Button Configuration"
|
1918 |
msgstr "PayPal \"Jetzt kaufen\" Button Configuration"
|
1919 |
|
1920 |
#: simple-membership/views/payments/payment-gateway/admin_paypal_buy_now_button.php:52
|
1921 |
-
#: simple-membership/views/payments/payment-gateway/admin_paypal_buy_now_button.php:
|
1922 |
#: simple-membership/views/payments/payment-gateway/admin_paypal_subscription_button.php:45
|
1923 |
-
#: simple-membership/views/payments/payment-gateway/admin_paypal_subscription_button.php:
|
1924 |
#: simple-membership/views/payments/payment-gateway/admin_stripe_buy_now_button.php:65
|
1925 |
-
#: simple-membership/views/payments/payment-gateway/admin_stripe_buy_now_button.php:
|
1926 |
msgid "Payment Currency"
|
1927 |
-
msgstr "Währung"
|
1928 |
|
1929 |
-
#: simple-membership/views/payments/payment-gateway/admin_paypal_buy_now_button.php:
|
1930 |
-
#: simple-membership/views/payments/payment-gateway/admin_paypal_buy_now_button.php:
|
1931 |
-
#: simple-membership/views/payments/payment-gateway/admin_paypal_subscription_button.php:
|
1932 |
-
#: simple-membership/views/payments/payment-gateway/admin_paypal_subscription_button.php:
|
1933 |
msgid "PayPal Email"
|
1934 |
msgstr "PayPal E-Mail Adresse"
|
1935 |
|
1936 |
-
#: simple-membership/views/payments/payment-gateway/admin_paypal_buy_now_button.php:
|
1937 |
-
#: simple-membership/views/payments/payment-gateway/admin_paypal_buy_now_button.php:
|
1938 |
-
#: simple-membership/views/payments/payment-gateway/admin_paypal_subscription_button.php:
|
1939 |
-
#: simple-membership/views/payments/payment-gateway/admin_paypal_subscription_button.php:
|
|
|
1940 |
msgid "Button Image URL"
|
1941 |
msgstr "Button Bild-URL"
|
1942 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1943 |
#: simple-membership/views/payments/payment-gateway/admin_paypal_subscription_button.php:18
|
1944 |
-
#: simple-membership/views/payments/payment-gateway/admin_paypal_subscription_button.php:
|
1945 |
msgid "PayPal Subscription Button Configuration"
|
1946 |
msgstr "PayPal \"Abonnieren\" Button Konfiguration"
|
1947 |
|
1948 |
-
#: simple-membership/views/payments/payment-gateway/admin_paypal_subscription_button.php:
|
1949 |
-
#: simple-membership/views/payments/payment-gateway/admin_paypal_subscription_button.php:
|
1950 |
msgid "Billing Amount Each Cycle"
|
1951 |
msgstr "Abrechnungsbetrag des Zyklusses"
|
1952 |
|
1953 |
-
#: simple-membership/views/payments/payment-gateway/admin_paypal_subscription_button.php:
|
1954 |
-
#: simple-membership/views/payments/payment-gateway/admin_paypal_subscription_button.php:
|
1955 |
msgid "Billing Cycle"
|
1956 |
msgstr "Abrechnungszyklus"
|
1957 |
|
1958 |
-
#: simple-membership/views/payments/payment-gateway/admin_paypal_subscription_button.php:
|
1959 |
-
#: simple-membership/views/payments/payment-gateway/admin_paypal_subscription_button.php:
|
1960 |
msgid "Billing Cycle Count"
|
1961 |
msgstr "Abrechnungszyklen"
|
1962 |
|
1963 |
-
#: simple-membership/views/payments/payment-gateway/admin_paypal_subscription_button.php:
|
1964 |
-
#: simple-membership/views/payments/payment-gateway/admin_paypal_subscription_button.php:
|
1965 |
msgid "Re-attempt on Failure"
|
1966 |
-
msgstr "
|
1967 |
|
1968 |
-
#: simple-membership/views/payments/payment-gateway/admin_paypal_subscription_button.php:
|
1969 |
-
#: simple-membership/views/payments/payment-gateway/admin_paypal_subscription_button.php:
|
1970 |
msgid ""
|
1971 |
"Trial Billing Details (Leave empty if you are not offering a trial period)"
|
1972 |
msgstr ""
|
1973 |
"Abrechnungsdetails für Probezeitraum (Leer lassen, wenn Sie keine Probezeit "
|
1974 |
"anbieten)"
|
1975 |
|
1976 |
-
#: simple-membership/views/payments/payment-gateway/admin_paypal_subscription_button.php:
|
1977 |
-
#: simple-membership/views/payments/payment-gateway/admin_paypal_subscription_button.php:
|
1978 |
msgid "Trial Billing Amount"
|
1979 |
msgstr "Rechnungsbetrag für Probezeitraum"
|
1980 |
|
1981 |
-
#: simple-membership/views/payments/payment-gateway/admin_paypal_subscription_button.php:
|
1982 |
-
#: simple-membership/views/payments/payment-gateway/admin_paypal_subscription_button.php:
|
1983 |
msgid "Trial Billing Period"
|
1984 |
msgstr "Abrechnungszeitraum für Probezeitraum"
|
1985 |
|
1986 |
-
#: simple-membership/views/payments/payment-gateway/admin_paypal_subscription_button.php:
|
1987 |
-
#: simple-membership/views/payments/payment-gateway/admin_paypal_subscription_button.php:
|
|
|
1988 |
msgid "Optional Details"
|
1989 |
msgstr "Optionale Details"
|
1990 |
|
1991 |
#: simple-membership/views/payments/payment-gateway/admin_stripe_buy_now_button.php:29
|
1992 |
-
#: simple-membership/views/payments/payment-gateway/admin_stripe_buy_now_button.php:
|
1993 |
msgid "Stripe Buy Now Button Configuration"
|
1994 |
msgstr "Stripe \"Jetzt kaufen\" Button Konfiguration"
|
1995 |
|
1996 |
#: simple-membership/views/payments/payment-gateway/admin_stripe_buy_now_button.php:104
|
1997 |
-
#: simple-membership/views/payments/payment-gateway/admin_stripe_buy_now_button.php:
|
1998 |
msgid "Stripe API keys. You can get this from your Stripe account."
|
1999 |
-
msgstr "
|
|
|
2000 |
|
2001 |
#: simple-membership/views/payments/payment-gateway/admin_stripe_buy_now_button.php:108
|
2002 |
-
#: simple-membership/views/payments/payment-gateway/admin_stripe_buy_now_button.php:
|
|
|
2003 |
msgid "Test Secret Key"
|
2004 |
msgstr "Testen Sie den geheimen Schlüssel"
|
2005 |
|
2006 |
#: simple-membership/views/payments/payment-gateway/admin_stripe_buy_now_button.php:115
|
2007 |
-
#: simple-membership/views/payments/payment-gateway/admin_stripe_buy_now_button.php:
|
|
|
2008 |
msgid "Test Publishable Key"
|
2009 |
-
msgstr "Testen Sie den
|
2010 |
|
2011 |
#: simple-membership/views/payments/payment-gateway/admin_stripe_buy_now_button.php:122
|
2012 |
-
#: simple-membership/views/payments/payment-gateway/admin_stripe_buy_now_button.php:
|
|
|
2013 |
msgid "Live Secret Key"
|
2014 |
msgstr "Geheimer Schlüssel"
|
2015 |
|
2016 |
#: simple-membership/views/payments/payment-gateway/admin_stripe_buy_now_button.php:129
|
2017 |
-
#: simple-membership/views/payments/payment-gateway/admin_stripe_buy_now_button.php:
|
|
|
2018 |
msgid "Live Publishable Key"
|
2019 |
msgstr "Veröffentlichungs Schlüssel"
|
2020 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2021 |
#: simple-membership/views/payments/payment-gateway/braintree_button_shortcode_view.php:20
|
2022 |
-
#: simple-membership/views/payments/payment-gateway/paypal_button_shortcode_view.php:
|
2023 |
-
#: simple-membership/views/payments/payment-gateway/paypal_button_shortcode_view.php:
|
2024 |
#: simple-membership/views/payments/payment-gateway/stripe_button_shortcode_view.php:20
|
|
|
2025 |
msgid "Buy Now"
|
2026 |
-
msgstr "
|
2027 |
|
2028 |
-
#: simple-membership/views/payments/payment-gateway/paypal_button_shortcode_view.php:
|
2029 |
-
#: simple-membership/views/payments/payment-gateway/paypal_button_shortcode_view.php:
|
2030 |
msgid "Subscribe Now"
|
2031 |
-
msgstr "
|
2032 |
|
2033 |
-
|
2034 |
-
|
2035 |
-
msgstr "Passwort hier eingeben"
|
2036 |
|
2037 |
-
msgid "
|
2038 |
-
msgstr "
|
2039 |
|
2040 |
-
msgid "
|
2041 |
-
msgstr "
|
2042 |
|
2043 |
-
msgid "
|
2044 |
-
msgstr "
|
2045 |
|
2046 |
-
msgid "
|
2047 |
-
msgstr "
|
|
|
2048 |
|
2049 |
-
msgid "
|
2050 |
-
msgstr "
|
2051 |
|
2052 |
-
msgid "
|
2053 |
-
msgstr "
|
2054 |
|
2055 |
-
msgid "
|
2056 |
-
msgstr "
|
2057 |
|
2058 |
-
msgid "
|
2059 |
-
msgstr "
|
2060 |
|
2061 |
-
msgid "
|
2062 |
-
msgstr "
|
2063 |
|
2064 |
-
msgid ""
|
2065 |
-
|
2066 |
-
"the profile."
|
2067 |
-
msgstr ""
|
2068 |
-
"Aktivieren Sie dieses Kontrollkästchen, um das Bild zu löschen. Das Bild "
|
2069 |
-
"wird erst gelöscht, wenn Sie das Profil speichern."
|
2070 |
|
2071 |
-
|
2072 |
-
|
2073 |
-
msgstr "Sie sind nicht berechtigt, diesen Inhalt anzuzeigen."
|
2074 |
|
2075 |
-
msgid "
|
2076 |
-
|
2077 |
-
"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2078 |
|
2079 |
-
msgid "This content is for members only."
|
2080 |
-
msgstr "Dieser Inhalt ist nur für Mitglieder."
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Simple Membership\n"
|
4 |
+
"POT-Creation-Date: 2018-01-20 13:54+0100\n"
|
5 |
+
"PO-Revision-Date: 2018-01-20 15:13+0100\n"
|
6 |
+
"Last-Translator: \n"
|
7 |
"Language-Team: \n"
|
8 |
+
"Language: de_DE\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.0.1\n"
|
13 |
"X-Poedit-KeywordsList: __;_e;e\n"
|
14 |
"X-Poedit-Basepath: .\n"
|
|
|
15 |
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
|
|
16 |
"X-Poedit-SearchPath-0: .\n"
|
17 |
|
18 |
+
#: simple-membership/classes/class.simple-wp-membership.php:175
|
19 |
msgid "The admin of this site does not allow users to access the wp dashboard."
|
20 |
+
msgstr "Es ist Mitgliedern nicht erlaubt, auf das WP-Dashboard zuzugreifen."
|
|
|
|
|
21 |
|
22 |
+
#: simple-membership/classes/class.simple-wp-membership.php:176
|
23 |
msgid "Go back to the home page by "
|
24 |
msgstr "Gehe zurück zur Startseite "
|
25 |
|
26 |
+
#: simple-membership/classes/class.simple-wp-membership.php:176
|
27 |
msgid "clicking here"
|
28 |
+
msgstr "hier klicken"
|
29 |
+
|
30 |
+
#: simple-membership/classes/class.simple-wp-membership.php:237
|
31 |
+
msgid ""
|
32 |
+
"Error! This site has the force WP user login feature enabled in the "
|
33 |
+
"settings. We could not find a WP user record for the given username: "
|
34 |
+
msgstr ""
|
35 |
+
"Fehler! Diese Seite hat in den Einstellungen \"Synchronisation mit den WP "
|
36 |
+
"Benutzereinträgen erzwingen\" aktiviert. Wir konnten keinen WP Benutzer-"
|
37 |
+
"Eintrag für den eingegebenen Benutzernamen finden"
|
38 |
|
39 |
+
#: simple-membership/classes/class.simple-wp-membership.php:238
|
40 |
+
msgid ""
|
41 |
+
"This error is triggered when a member account doesn't have a corresponding "
|
42 |
+
"WP user account. So the plugin fails to log the user into the WP User system."
|
43 |
+
msgstr ""
|
44 |
+
"Dieser Fehler tritt auf, wenn zu einem Mitglieds-Konto kein "
|
45 |
+
"korrespondierender WP User Account existiert. Dann kann das Plugin den "
|
46 |
+
"Benutzer nicht in das WP User System einloggen."
|
47 |
+
|
48 |
+
#: simple-membership/classes/class.simple-wp-membership.php:239
|
49 |
+
msgid ""
|
50 |
+
"Contact the site admin and request them to check your username in the WP "
|
51 |
+
"Users menu to see what happened with the WP user entry of your account."
|
52 |
+
msgstr ""
|
53 |
+
"Kontaktieren Sie den Website-Administrator und fordern sie ihn auf, Ihren "
|
54 |
+
"Benutzernamen zu prüfen, um zu sehen, was mit dem Benutzer-Eintrag Ihres "
|
55 |
+
"Accounts passiert ist."
|
56 |
+
|
57 |
+
#: simple-membership/classes/class.simple-wp-membership.php:240
|
58 |
+
msgid ""
|
59 |
+
"The site admin can disable the Force WP User Synchronization feature in the "
|
60 |
+
"settings to disable this feature and this error will go away."
|
61 |
+
msgstr ""
|
62 |
+
"Der Admin kann die erzwungene WP User Synchronisation in den Einstellungen "
|
63 |
+
"deaktivieren und dadurch diesen Fehler beheben."
|
64 |
+
|
65 |
+
#: simple-membership/classes/class.simple-wp-membership.php:241
|
66 |
+
msgid "You can use the back button of your browser to go back to the site."
|
67 |
+
msgstr ""
|
68 |
+
"Sie können mit Klick auf den \"zurück\" button in Ihrem Browser zu der Seite "
|
69 |
+
"zurückkehren."
|
70 |
+
|
71 |
+
#: simple-membership/classes/class.simple-wp-membership.php:334
|
72 |
msgid "You are not logged in."
|
73 |
msgstr "Sie sind nicht eingeloggt."
|
74 |
|
75 |
+
#: simple-membership/classes/class.simple-wp-membership.php:385
|
76 |
msgid ""
|
77 |
"You have the sandbox payment mode enabled in plugin settings. Make sure to "
|
78 |
"turn off the sandbox mode when you want to do live transactions."
|
79 |
msgstr ""
|
80 |
+
"Sie haben in den Einstellungen des Plugins die Testumgebung für die "
|
81 |
+
"Zahlungsvorgänge aktiviert. Bitte stellen Sie sicher, dass Sie die "
|
82 |
+
"Testumgebung deaktivieren, wenn Sie Zahlungen vornehmen wollen."
|
83 |
|
84 |
+
#: simple-membership/classes/class.simple-wp-membership.php:400
|
85 |
msgid "Simple WP Membership Protection"
|
86 |
+
msgstr "Simple WP Membership Schutz"
|
87 |
|
88 |
+
#: simple-membership/classes/class.simple-wp-membership.php:412
|
89 |
msgid "Simple Membership Protection options"
|
90 |
+
msgstr "Schutz-Einstellungen für Simple Membership"
|
91 |
|
92 |
+
#: simple-membership/classes/class.simple-wp-membership.php:430
|
93 |
msgid "Do you want to protect this content?"
|
94 |
msgstr "Möchten Sie diesen Inhalt zu schützen?"
|
95 |
|
96 |
+
#: simple-membership/classes/class.simple-wp-membership.php:435
|
97 |
msgid "Select the membership level that can access this content:"
|
98 |
msgstr ""
|
99 |
"Wählen Sie die Mitgliedschaftsstufe aus, die auf diesen Inhalt zugreifen "
|
100 |
"kann:"
|
101 |
|
102 |
+
#: simple-membership/classes/class.simple-wp-membership.php:573
|
103 |
+
#: simple-membership/classes/class.simple-wp-membership.php:577
|
104 |
msgid "Validating, please wait"
|
105 |
msgstr "Überprüfung, bitte warten"
|
106 |
|
107 |
+
#: simple-membership/classes/class.simple-wp-membership.php:580
|
108 |
msgid "Invalid email address"
|
109 |
msgstr "Ungültige E-Mail-Adresse"
|
110 |
|
111 |
+
#: simple-membership/classes/class.simple-wp-membership.php:583
|
112 |
msgid "This field is required"
|
113 |
msgstr "Dieses Feld ist erforderlich"
|
114 |
|
115 |
+
#: simple-membership/classes/class.simple-wp-membership.php:586
|
116 |
+
#: simple-membership/classes/class.swpm-auth.php:259
|
117 |
msgid "Invalid Username"
|
118 |
msgstr "Ungültiger Benutzername"
|
119 |
|
120 |
+
#: simple-membership/classes/class.simple-wp-membership.php:589
|
121 |
msgid "Minimum "
|
122 |
msgstr "Minimum "
|
123 |
|
124 |
+
#: simple-membership/classes/class.simple-wp-membership.php:590
|
125 |
msgid " characters required"
|
126 |
msgstr " Buchstaben erforderlich"
|
127 |
|
128 |
+
#: simple-membership/classes/class.simple-wp-membership.php:593
|
129 |
msgid "Apostrophe character is not allowed"
|
130 |
msgstr "Apostroph ist nicht zulässig"
|
131 |
|
132 |
+
#: simple-membership/classes/class.simple-wp-membership.php:624
|
133 |
msgid "WP Membership"
|
134 |
msgstr "WP Mitgliedschaft"
|
135 |
|
136 |
+
#: simple-membership/classes/class.simple-wp-membership.php:625
|
137 |
#: simple-membership/classes/class.swpm-members.php:11
|
138 |
#: simple-membership/classes/class.swpm-members.php:579
|
139 |
msgid "Members"
|
140 |
msgstr "Mitglieder"
|
141 |
|
142 |
+
#: simple-membership/classes/class.simple-wp-membership.php:626
|
143 |
#: simple-membership/classes/class.swpm-category-list.php:20
|
144 |
#: simple-membership/classes/class.swpm-membership-levels.php:12
|
145 |
+
#: simple-membership/classes/class.swpm-membership-levels.php:264
|
146 |
+
#: simple-membership/classes/class.swpm-post-list.php:21
|
147 |
msgid "Membership Levels"
|
148 |
msgstr "Mitgliedschaftsstufen"
|
149 |
|
150 |
+
#: simple-membership/classes/class.simple-wp-membership.php:627
|
151 |
msgid "Settings"
|
152 |
msgstr "Einstellungen"
|
153 |
|
154 |
+
#: simple-membership/classes/class.simple-wp-membership.php:628
|
155 |
msgid "Payments"
|
156 |
msgstr "Zahlungen"
|
157 |
|
158 |
+
#: simple-membership/classes/class.simple-wp-membership.php:629
|
159 |
msgid "Add-ons"
|
160 |
msgstr "Add-ons"
|
161 |
|
162 |
#: simple-membership/classes/class.swpm-access-control.php:47
|
163 |
#: simple-membership/classes/class.swpm-access-control.php:120
|
164 |
msgid "You need to login to view this content. "
|
165 |
+
msgstr "Sie müssen sich anmelden, um diesen Inhalt ansehen zu können. "
|
166 |
|
167 |
#: simple-membership/classes/class.swpm-access-control.php:56
|
168 |
#: simple-membership/classes/class.swpm-access-control.php:128
|
169 |
#: simple-membership/classes/class.swpm-access-control.php:212
|
170 |
msgid "Your account has expired. "
|
171 |
+
msgstr "Mitgliedschaft abgelaufen. "
|
172 |
|
173 |
#: simple-membership/classes/class.swpm-access-control.php:66
|
174 |
#: simple-membership/classes/class.swpm-access-control.php:138
|
175 |
msgid "This content can only be viewed by members who joined on or before "
|
176 |
+
msgstr ""
|
177 |
+
"Dieser Inhalt kann nur von Mitgliedern angesehen werden, die sich "
|
178 |
+
"registriert haben an oder vor "
|
179 |
|
180 |
#: simple-membership/classes/class.swpm-access-control.php:79
|
181 |
#: simple-membership/classes/class.swpm-access-control.php:148
|
184 |
|
185 |
#: simple-membership/classes/class.swpm-access-control.php:204
|
186 |
msgid "You need to login to view the rest of the content. "
|
187 |
+
msgstr ""
|
188 |
+
"Sie müssen sich anmelden um den restlichen Inhalt angezeigt zu bekommen. "
|
189 |
|
190 |
#: simple-membership/classes/class.swpm-access-control.php:217
|
191 |
msgid " The rest of the content is not permitted for your membership level."
|
195 |
#: simple-membership/classes/class.swpm-admin-registration.php:25
|
196 |
msgid "Error! Nonce verification failed for user registration from admin end."
|
197 |
msgstr ""
|
198 |
+
"Fehler! Nonce-Überprüfung für Benutzerregistrierung durch den Admin "
|
199 |
+
"fehlgeschlagen."
|
200 |
|
201 |
#: simple-membership/classes/class.swpm-admin-registration.php:71
|
202 |
msgid "Member record added successfully."
|
203 |
+
msgstr "Der Eintrag für das Mitglied wurde erfolgreich hinzugefügt."
|
204 |
|
205 |
#: simple-membership/classes/class.swpm-admin-registration.php:76
|
206 |
+
#: simple-membership/classes/class.swpm-admin-registration.php:116
|
207 |
+
#: simple-membership/classes/class.swpm-admin-registration.php:142
|
208 |
#: simple-membership/classes/class.swpm-membership-level.php:69
|
209 |
#: simple-membership/classes/class.swpm-membership-level.php:97
|
210 |
msgid "Please correct the following:"
|
211 |
+
msgstr "Bitte korrigieren Sie folgendes:"
|
212 |
|
213 |
#: simple-membership/classes/class.swpm-admin-registration.php:87
|
214 |
msgid "Error! Nonce verification failed for user edit from admin end."
|
215 |
+
msgstr ""
|
216 |
+
"Fehler! Nonce-Überprüfung für die Bearbeitung der Benutzerdaten durch den "
|
217 |
+
"Admin fehlgeschlagen."
|
218 |
|
219 |
+
#: simple-membership/classes/class.swpm-admin-registration.php:131
|
220 |
msgid "Your current password"
|
221 |
msgstr "Ihr aktuelles Passwort"
|
222 |
|
237 |
msgid "Available"
|
238 |
msgstr "Verfügbar"
|
239 |
|
240 |
+
#: simple-membership/classes/class.swpm-auth.php:49
|
241 |
msgid ""
|
242 |
"Warning! Simple Membership plugin cannot process this login request to "
|
243 |
"prevent you from getting logged out of WP Admin accidentally."
|
244 |
msgstr ""
|
245 |
+
"Warnung! Simple Membership Plugin kann dieses Login nicht durchführen, um zu "
|
246 |
+
"verhindern, dass Sie versehentlich als WP Admin ausgeloggt werden."
|
|
|
247 |
|
248 |
+
#: simple-membership/classes/class.swpm-auth.php:50
|
249 |
msgid ""
|
250 |
"You are logged into the site as an ADMIN user in this browser. First, logout "
|
251 |
"from WP Admin then you will be able to log in as a member."
|
252 |
msgstr ""
|
253 |
+
"Sie sind auf dieser Seite mit diesem Browser als ADMIN eingeloggt. Loggen "
|
254 |
+
"Sie sich zuerst als Admin aus, dann können Sie sich als Mitglied einloggen."
|
255 |
|
256 |
+
#: simple-membership/classes/class.swpm-auth.php:51
|
257 |
msgid ""
|
258 |
"Alternatively, you can use a different browser (where you are not logged-in "
|
259 |
"as ADMIN) to test the membership login."
|
261 |
"Alternativ können Sie einen anderen Browser verwenden (in welchem Sie nicht "
|
262 |
"als Admin eingeloggt sind), um das Login-Interface zu testen."
|
263 |
|
264 |
+
#: simple-membership/classes/class.swpm-auth.php:52
|
265 |
msgid ""
|
266 |
"Your normal visitors or members will never see this message. This message is "
|
267 |
"ONLY for ADMIN user."
|
268 |
msgstr ""
|
269 |
+
"Ihre Besucher und Mitglieder werden diese Nachricht niemals sehen können. "
|
270 |
+
"Diese Meldung ist AUSSCHLIESSLICH für ADMIN."
|
271 |
|
272 |
+
#: simple-membership/classes/class.swpm-auth.php:59
|
273 |
msgid "Captcha validation failed on login form."
|
274 |
msgstr "Captcha-Validierung fehlgeschlagen."
|
275 |
|
276 |
+
#: simple-membership/classes/class.swpm-auth.php:84
|
277 |
msgid "User Not Found."
|
278 |
msgstr "Benutzer nicht gefunden."
|
279 |
|
280 |
+
#: simple-membership/classes/class.swpm-auth.php:91
|
281 |
msgid "Password Empty or Invalid."
|
282 |
+
msgstr "kein oder ungültiges Passwort."
|
283 |
|
284 |
+
#: simple-membership/classes/class.swpm-auth.php:124
|
285 |
msgid "Account is inactive."
|
286 |
msgstr "Ihr Konto ist inaktiv."
|
287 |
|
288 |
+
#: simple-membership/classes/class.swpm-auth.php:127
|
289 |
+
#: simple-membership/classes/class.swpm-auth.php:145
|
290 |
msgid "Account has expired."
|
291 |
+
msgstr "Mitgliedschaft abgelaufen."
|
292 |
|
293 |
+
#: simple-membership/classes/class.swpm-auth.php:130
|
294 |
msgid "Account is pending."
|
295 |
msgstr "Ihr Konto ist inaktiv."
|
296 |
|
297 |
+
#: simple-membership/classes/class.swpm-auth.php:153
|
298 |
msgid "You are logged in as:"
|
299 |
msgstr "Sie sind eingeloggt als:"
|
300 |
|
301 |
+
#: simple-membership/classes/class.swpm-auth.php:199
|
302 |
msgid "Logged Out Successfully."
|
303 |
msgstr "Abmeldung war erfolgreich."
|
304 |
|
305 |
+
#: simple-membership/classes/class.swpm-auth.php:250
|
306 |
msgid "Session Expired."
|
307 |
msgstr "Sitzung ist abgelaufen."
|
308 |
|
309 |
+
#: simple-membership/classes/class.swpm-auth.php:267
|
310 |
msgid "Please login again."
|
311 |
+
msgstr "Bitte loggen Sie sich erneut ein."
|
312 |
|
313 |
#: simple-membership/classes/class.swpm-category-list.php:19
|
314 |
#: simple-membership/classes/class.swpm-members.php:24
|
315 |
#: simple-membership/classes/class.swpm-membership-levels.php:11
|
316 |
#: simple-membership/classes/class.swpm-membership-levels.php:21
|
317 |
+
#: simple-membership/classes/class.swpm-post-list.php:20
|
318 |
#: simple-membership/classes/admin-includes/class.swpm-payments-list-table.php:85
|
319 |
#: simple-membership/views/add.php:31
|
320 |
#: simple-membership/views/admin_member_form_common_part.php:2
|
321 |
+
#: simple-membership/views/edit.php:66
|
322 |
#: simple-membership/views/payments/payment-gateway/admin_braintree_buy_now_button.php:50
|
323 |
#: simple-membership/views/payments/payment-gateway/admin_paypal_buy_now_button.php:34
|
324 |
+
#: simple-membership/views/payments/payment-gateway/admin_paypal_buy_now_button.php:229
|
325 |
#: simple-membership/views/payments/payment-gateway/admin_paypal_subscription_button.php:35
|
326 |
+
#: simple-membership/views/payments/payment-gateway/admin_paypal_subscription_button.php:317
|
327 |
#: simple-membership/views/payments/payment-gateway/admin_stripe_buy_now_button.php:47
|
328 |
+
#: simple-membership/views/payments/payment-gateway/admin_stripe_buy_now_button.php:273
|
329 |
+
#: simple-membership/views/payments/payment-gateway/admin_stripe_subscription_button.php:99
|
330 |
msgid "Membership Level"
|
331 |
msgstr "Mitgliedschaftsstufe"
|
332 |
|
340 |
|
341 |
#: simple-membership/classes/class.swpm-category-list.php:35
|
342 |
msgid "Category Type (Taxonomy)"
|
343 |
+
msgstr "Kategorie Typ (Taxonomy)"
|
344 |
|
345 |
#: simple-membership/classes/class.swpm-category-list.php:36
|
346 |
msgid "Description"
|
360 |
|
361 |
#: simple-membership/classes/class.swpm-comment-form-related.php:15
|
362 |
msgid "Please login to comment."
|
363 |
+
msgstr ""
|
364 |
+
"Bitte loggen Sie sich ein, damit Sie einen Kommentar hinterlassen können."
|
365 |
|
366 |
#: simple-membership/classes/class.swpm-comment-form-related.php:40
|
367 |
msgid "Please Login to Comment."
|
368 |
+
msgstr ""
|
369 |
+
"Bitte loggen Sie sich ein, damit Sie einen Kommentar hinterlassen können."
|
370 |
|
371 |
#: simple-membership/classes/class.swpm-comment-form-related.php:79
|
372 |
msgid "Comments not allowed by a non-member."
|
373 |
+
msgstr "Nicht-Mitglieder können keinen Kommentar hinterlassen."
|
374 |
|
375 |
#: simple-membership/classes/class.swpm-form.php:29
|
376 |
msgid ""
|
377 |
"Wordpress account exists with given username. But given email doesn't match."
|
378 |
+
msgstr ""
|
379 |
+
"Es existiert bereits ein Account mit den angegebenen Benutzernamen. Die E-"
|
380 |
+
"Mail Adresse passt aber nicht zum Benutzernamen."
|
381 |
+
|
382 |
+
#: simple-membership/classes/class.swpm-form.php:30
|
383 |
+
msgid ""
|
384 |
+
" Use a different username to complete the registration. If you want to use "
|
385 |
+
"that username then you must enter the correct email address associated with "
|
386 |
+
"the existing WP user to connect with that account."
|
387 |
+
msgstr ""
|
388 |
+
" Verwenden Sie einen anderen Benutzernamen, um die Registrierung "
|
389 |
+
"abzuschließen. Wenn Sie diesen Benutzernamen verwenden möchten, geben Sie "
|
390 |
+
"die korrekte e-Mail-Adresse, die verbunden ist mit dem bestehenden WP-"
|
391 |
+
"Benutzer, um sich mit diesem Konto zu verbinden."
|
392 |
|
393 |
+
#: simple-membership/classes/class.swpm-form.php:36
|
394 |
msgid ""
|
395 |
"Wordpress account exists with given email. But given username doesn't match."
|
396 |
+
msgstr ""
|
397 |
+
"Es existiert bereits ein WP Account mit der angegebenen E-Mail Adresse. Der "
|
398 |
+
"Benutzername passt aber nicht zur E-Mail Adresse."
|
399 |
|
400 |
+
#: simple-membership/classes/class.swpm-form.php:37
|
401 |
+
msgid ""
|
402 |
+
" Use a different email address to complete the registration. If you want to "
|
403 |
+
"use that email then you must enter the correct username associated with the "
|
404 |
+
"existing WP user to connect with that account."
|
405 |
+
msgstr ""
|
406 |
+
" Verwenden Sie eine andere E-Mail Adresse um Ihre Registrierung "
|
407 |
+
"abzuschließen. Wenn Sie diese E-Mail Adresse verwenden wollen, müssen Sie "
|
408 |
+
"den richtigen Benutzernamen des bestehenden WP Benutzereintrags eingeben, um "
|
409 |
+
"sich mit diesem Account zu verbinden."
|
410 |
|
411 |
#: simple-membership/classes/class.swpm-form.php:47
|
412 |
+
msgid "Username is required"
|
413 |
+
msgstr "Der Mitgliedername ist erforderlich"
|
414 |
+
|
415 |
+
#: simple-membership/classes/class.swpm-form.php:51
|
416 |
msgid "Username contains invalid character"
|
417 |
+
msgstr "Der Benutzername enthält ungültige Zeichen"
|
418 |
|
419 |
+
#: simple-membership/classes/class.swpm-form.php:59
|
420 |
msgid "Username already exists."
|
421 |
msgstr "Ihr Benutzername existiert bereits."
|
422 |
|
423 |
+
#: simple-membership/classes/class.swpm-form.php:82
|
424 |
msgid "Password is required"
|
425 |
+
msgstr "Passwort erforderlich"
|
426 |
|
427 |
+
#: simple-membership/classes/class.swpm-form.php:89
|
428 |
msgid "Password mismatch"
|
429 |
msgstr "Die Passwörter stimmen nicht überein"
|
430 |
|
431 |
+
#: simple-membership/classes/class.swpm-form.php:100
|
432 |
msgid "Email is required"
|
433 |
msgstr "E-Mail Adresse wird benötigt"
|
434 |
|
435 |
+
#: simple-membership/classes/class.swpm-form.php:104
|
436 |
msgid "Email is invalid"
|
437 |
msgstr "E-Mail Adresse ist ungültig"
|
438 |
|
439 |
+
#: simple-membership/classes/class.swpm-form.php:120
|
440 |
msgid "Email is already used."
|
441 |
msgstr "Ihre E-Mail Adresse existiert bereits."
|
442 |
|
443 |
+
#: simple-membership/classes/class.swpm-form.php:178
|
444 |
msgid "Member since field is invalid"
|
445 |
+
msgstr "\"Mitglied seit\" Feld ist inkorrekt"
|
446 |
|
447 |
+
#: simple-membership/classes/class.swpm-form.php:189
|
448 |
msgid "Access starts field is invalid"
|
449 |
+
msgstr "Ungültiger Wert für den Beginn des Zugangs"
|
450 |
|
451 |
+
#: simple-membership/classes/class.swpm-form.php:199
|
452 |
msgid "Gender field is invalid"
|
453 |
+
msgstr "Feld \"Geschlecht\" ist inkorrekt"
|
454 |
|
455 |
+
#: simple-membership/classes/class.swpm-form.php:210
|
456 |
msgid "Account state field is invalid"
|
457 |
msgstr "Kontostatusfeld ist ungültig"
|
458 |
|
459 |
+
#: simple-membership/classes/class.swpm-form.php:217
|
460 |
msgid "Invalid membership level"
|
461 |
msgstr "Ungültige Mitgliedschaftsstufe"
|
462 |
|
469 |
"Sicherheitscode und die Benutzer-ID finden."
|
470 |
|
471 |
#: simple-membership/classes/class.swpm-front-registration.php:45
|
472 |
+
#: simple-membership/classes/class.swpm-utils-misc.php:247
|
473 |
#: simple-membership/views/login.php:36
|
474 |
msgid "Join Us"
|
475 |
+
msgstr "Noch kein Mitglied? Registriere dich hier!"
|
476 |
|
477 |
#: simple-membership/classes/class.swpm-front-registration.php:47
|
478 |
msgid ""
|
486 |
"You will receive a unique link via email after the payment. You will be able "
|
487 |
"to use that link to complete the premium membership registration."
|
488 |
msgstr ""
|
489 |
+
"Sie werden einen persönlichen Link per E-Mail nach Beendigung des "
|
490 |
+
"Zahlungsvorgangs erhalten. Mit diesem Link können Sie die Registrierung "
|
491 |
+
"Ihrer Premium Mitgliedschaft abschließen."
|
492 |
|
493 |
#: simple-membership/classes/class.swpm-front-registration.php:77
|
494 |
msgid "Security check: captcha validation failed."
|
495 |
msgstr "Sicherheitskontrolle: Captcha-Validierung fehlgeschlagen."
|
496 |
|
497 |
+
#: simple-membership/classes/class.swpm-front-registration.php:111
|
498 |
msgid "Registration Successful. "
|
499 |
msgstr "Registrierung erfolgreich. "
|
500 |
|
501 |
+
#: simple-membership/classes/class.swpm-front-registration.php:111
|
502 |
+
#: simple-membership/classes/class.swpm-utils-misc.php:246
|
503 |
+
#: simple-membership/classes/class.swpm-utils-misc.php:258
|
504 |
msgid "Please"
|
505 |
msgstr "Bitte"
|
506 |
|
507 |
+
#: simple-membership/classes/class.swpm-front-registration.php:111
|
508 |
+
#: simple-membership/classes/class.swpm-utils-misc.php:246
|
509 |
#: simple-membership/views/login.php:30
|
510 |
msgid "Login"
|
511 |
msgstr "Einloggen"
|
512 |
|
513 |
+
#: simple-membership/classes/class.swpm-front-registration.php:124
|
514 |
msgid "Please correct the following"
|
515 |
+
msgstr "Bitte korrigieren Sie folgendes"
|
516 |
|
517 |
+
#: simple-membership/classes/class.swpm-front-registration.php:169
|
518 |
msgid "Membership Level Couldn't be found."
|
519 |
msgstr "Mitgliedschaftsstufe konnte nicht gefunden werden."
|
520 |
|
521 |
+
#: simple-membership/classes/class.swpm-front-registration.php:220
|
522 |
msgid "Error! Nonce verification failed for front end profile edit."
|
523 |
+
msgstr ""
|
524 |
+
"Fehler! Nonce-Überprüfung für Front-End Profil-Bearbeitung fehlgeschlagen."
|
525 |
|
526 |
+
#: simple-membership/classes/class.swpm-front-registration.php:228
|
527 |
msgid "Profile updated successfully."
|
528 |
msgstr "Profil erfolgreich aktualisiert."
|
529 |
|
530 |
+
#: simple-membership/classes/class.swpm-front-registration.php:237
|
531 |
msgid ""
|
532 |
"Profile updated successfully. You will need to re-login since you changed "
|
533 |
"your password."
|
535 |
"Profil erfolgreich aktualisiert. Sie müssen sich erneut anmelden, da Sie Ihr "
|
536 |
"Passwort geändert haben."
|
537 |
|
538 |
+
#: simple-membership/classes/class.swpm-front-registration.php:249
|
539 |
msgid "Please correct the following."
|
540 |
msgstr "Bitte korrigieren Sie folgendes."
|
541 |
|
542 |
+
#: simple-membership/classes/class.swpm-front-registration.php:261
|
543 |
msgid "Captcha validation failed."
|
544 |
msgstr "Captcha-Validierung fehlgeschlagen."
|
545 |
|
546 |
+
#: simple-membership/classes/class.swpm-front-registration.php:269
|
547 |
msgid "Email address not valid."
|
548 |
+
msgstr "Ungültige E-Mail Adresse."
|
549 |
|
550 |
+
#: simple-membership/classes/class.swpm-front-registration.php:280
|
551 |
msgid "No user found with that email address."
|
552 |
msgstr "Kein Benutzer mit dieser E-Mail-Adresse gefunden."
|
553 |
|
554 |
+
#: simple-membership/classes/class.swpm-front-registration.php:281
|
555 |
+
#: simple-membership/classes/class.swpm-front-registration.php:310
|
556 |
msgid "Email Address: "
|
557 |
msgstr "E-Mail Adresse: "
|
558 |
|
559 |
+
#: simple-membership/classes/class.swpm-front-registration.php:309
|
560 |
msgid "New password has been sent to your email address."
|
561 |
msgstr "Es wurde ein neues Passwort an Ihre E-Mail-Adresse gesendet."
|
562 |
|
563 |
+
#: simple-membership/classes/class.swpm-init-time-tasks.php:117
|
564 |
msgid "Sorry, Nonce verification failed."
|
565 |
+
msgstr "Entschuldigung, Nonce-Überprüfung fehlgeschlagen."
|
566 |
|
567 |
+
#: simple-membership/classes/class.swpm-init-time-tasks.php:124
|
568 |
msgid "Sorry, Password didn't match."
|
569 |
+
msgstr "Passwort stimmt leider nicht überein."
|
570 |
|
571 |
#: simple-membership/classes/class.swpm-level-form.php:47
|
572 |
msgid "Date format is not valid."
|
574 |
|
575 |
#: simple-membership/classes/class.swpm-level-form.php:55
|
576 |
msgid "Access duration must be > 0."
|
577 |
+
msgstr "Zugriffsdauer muss >0 sein."
|
578 |
|
579 |
#: simple-membership/classes/class.swpm-members.php:10
|
580 |
msgid "Member"
|
587 |
|
588 |
#: simple-membership/classes/class.swpm-members.php:20
|
589 |
#: simple-membership/views/add.php:7 simple-membership/views/admin_add.php:11
|
590 |
+
#: simple-membership/views/admin_edit.php:19
|
591 |
+
#: simple-membership/views/edit.php:14
|
592 |
msgid "Username"
|
593 |
msgstr "Benutzername"
|
594 |
|
596 |
#: simple-membership/classes/admin-includes/class.swpm-payments-list-table.php:78
|
597 |
#: simple-membership/views/add.php:23
|
598 |
#: simple-membership/views/admin_member_form_common_part.php:15
|
599 |
+
#: simple-membership/views/edit.php:30
|
600 |
msgid "First Name"
|
601 |
msgstr "Vorname"
|
602 |
|
604 |
#: simple-membership/classes/admin-includes/class.swpm-payments-list-table.php:79
|
605 |
#: simple-membership/views/add.php:27
|
606 |
#: simple-membership/views/admin_member_form_common_part.php:19
|
607 |
+
#: simple-membership/views/edit.php:34
|
608 |
msgid "Last Name"
|
609 |
msgstr "Nachname"
|
610 |
|
611 |
#: simple-membership/classes/class.swpm-members.php:23
|
612 |
+
#: simple-membership/views/add.php:11 simple-membership/views/edit.php:18
|
613 |
msgid "Email"
|
614 |
+
msgstr "E-Mail"
|
615 |
|
616 |
#: simple-membership/classes/class.swpm-members.php:25
|
617 |
#: simple-membership/views/admin_member_form_common_part.php:11
|
618 |
msgid "Access Starts"
|
619 |
+
msgstr "Beginn der Zugriffsmöglichkeit"
|
620 |
|
621 |
#: simple-membership/classes/class.swpm-members.php:26
|
622 |
msgid "Account State"
|
655 |
|
656 |
#: simple-membership/classes/class.swpm-members.php:189
|
657 |
msgid "No member found."
|
658 |
+
msgstr "Kein Mitglied gefunden."
|
659 |
|
660 |
#: simple-membership/classes/class.swpm-members.php:335
|
661 |
msgid "Error! Nonce verification failed for user delete from admin end."
|
662 |
msgstr ""
|
663 |
+
"Fehler! Nonce-Überprüfung für Löschung eines Benutzers durch den Admin "
|
664 |
+
"fehlgeschlagen."
|
665 |
|
666 |
#: simple-membership/classes/class.swpm-members.php:404
|
667 |
#: simple-membership/classes/class.swpm-members.php:434
|
678 |
|
679 |
#: simple-membership/classes/class.swpm-members.php:460
|
680 |
msgid "Bulk Update Membership Level of Members"
|
681 |
+
msgstr "Massen-Änderung der Mitgliedschaftsstufe der Mitglieder"
|
682 |
|
683 |
#: simple-membership/classes/class.swpm-members.php:463
|
684 |
msgid ""
|
693 |
"You can use the following option to bulk update the membership level of "
|
694 |
"users who belong to the level you select below."
|
695 |
msgstr ""
|
696 |
+
"Sie können die folgende Option verwenden, um die Mitgliedschaftsstufe aller "
|
697 |
+
"Benutzer gesammelt zu aktualisieren, die zu der Ebene gehören, die Sie unten "
|
698 |
"auswählen."
|
699 |
|
700 |
#: simple-membership/classes/class.swpm-members.php:470
|
716 |
|
717 |
#: simple-membership/classes/class.swpm-members.php:483
|
718 |
msgid "Level to Change to: "
|
719 |
+
msgstr "Mitgliedschaft ändern in: "
|
720 |
|
721 |
#: simple-membership/classes/class.swpm-members.php:487
|
722 |
msgid "Select Target Level"
|
728 |
|
729 |
#: simple-membership/classes/class.swpm-members.php:496
|
730 |
msgid "Bulk Change Membership Level"
|
731 |
+
msgstr "Massen-Änderung der Mitgliedschaftsstufe"
|
732 |
|
733 |
#: simple-membership/classes/class.swpm-members.php:506
|
734 |
msgid "Bulk Update Access Starts Date of Members"
|
735 |
+
msgstr "Massen-Änderung des Datums, ab dem die Mitgliedschaft beginnt"
|
736 |
|
737 |
#: simple-membership/classes/class.swpm-members.php:510
|
738 |
msgid ""
|
750 |
"You can manually set a specific access starts date value of all members who "
|
751 |
"belong to a particular level using the following option."
|
752 |
msgstr ""
|
753 |
+
"Sie können mit der folgenden Option manuell ein bestimmtes Start-Datum "
|
754 |
+
"festlegen, für alle Mitglieder, die zu einer bestimmten "
|
755 |
+
"Mitgliedschaftsstufe gehören."
|
756 |
|
757 |
#: simple-membership/classes/class.swpm-members.php:521
|
758 |
msgid "Select Level"
|
768 |
|
769 |
#: simple-membership/classes/class.swpm-members.php:533
|
770 |
msgid "Specify the access starts date value."
|
771 |
+
msgstr "Geben Sie das Datum ein, ab dem der Zugriff möglich ist."
|
772 |
|
773 |
#: simple-membership/classes/class.swpm-members.php:539
|
774 |
msgid "Bulk Change Access Starts Date"
|
775 |
+
msgstr "Massen-Änderung des Datums, ab dem der Zugriff möglich ist"
|
776 |
|
777 |
#: simple-membership/classes/class.swpm-members.php:574
|
778 |
msgid "Simple WP Membership::Members"
|
791 |
|
792 |
#: simple-membership/classes/class.swpm-members.php:581
|
793 |
msgid "Bulk Operation"
|
794 |
+
msgstr "Massen-Änderung"
|
795 |
|
796 |
#: simple-membership/classes/class.swpm-membership-level.php:52
|
797 |
msgid ""
|
798 |
"Error! Nonce verification failed for membership level creation from admin "
|
799 |
"end."
|
800 |
msgstr ""
|
801 |
+
"Fehler! Nonce-Überprüfung für die Erstellung von Mitgliedschaft-Stufen durch "
|
802 |
+
"den Admin fehlgeschlagen."
|
803 |
|
804 |
#: simple-membership/classes/class.swpm-membership-level.php:64
|
805 |
msgid "Membership Level Creation Successful."
|
806 |
+
msgstr "Mitgliedschaftstufe erfolgreich erstellt.."
|
807 |
|
808 |
#: simple-membership/classes/class.swpm-membership-level.php:80
|
809 |
msgid ""
|
810 |
"Error! Nonce verification failed for membership level edit from admin end."
|
811 |
msgstr ""
|
812 |
+
"Fehler! Nonce-Überprüfung für Bearbeiten der Mitgliedschafts-Stufe durch den "
|
813 |
+
"Admin fehlgeschlagen ."
|
814 |
|
815 |
#: simple-membership/classes/class.swpm-membership-level.php:92
|
816 |
msgid "Membership Level Updated Successfully."
|
832 |
msgid ""
|
833 |
"Error! Nonce verification failed for membership level delete from admin end."
|
834 |
msgstr ""
|
835 |
+
"Fehler! Nonce-Überprüfung für das Löschen der Mitgliedschaftsstufe durch den "
|
836 |
+
"Admin fehlgeschlagen."
|
837 |
|
838 |
#: simple-membership/classes/class.swpm-membership-levels.php:215
|
839 |
#: simple-membership/views/admin_members_list.php:30
|
841 |
msgid "Search"
|
842 |
msgstr "Suchen"
|
843 |
|
844 |
+
#: simple-membership/classes/class.swpm-membership-levels.php:260
|
845 |
msgid "Simple WP Membership::Membership Levels"
|
846 |
msgstr "Simple WP Membership::Mitgliedschaftsstufen"
|
847 |
|
848 |
+
#: simple-membership/classes/class.swpm-membership-levels.php:265
|
849 |
msgid "Add Level"
|
850 |
+
msgstr "Neue Mitgliedschaftsstufe hinzufügen"
|
851 |
|
852 |
+
#: simple-membership/classes/class.swpm-membership-levels.php:266
|
853 |
msgid "Manage Content Protection"
|
854 |
+
msgstr "Schutz der Inhalte verwalten"
|
855 |
|
856 |
+
#: simple-membership/classes/class.swpm-membership-levels.php:267
|
857 |
msgid "Category Protection"
|
858 |
+
msgstr "Kategorie Schutz"
|
859 |
|
860 |
+
#: simple-membership/classes/class.swpm-membership-levels.php:268
|
861 |
+
msgid "Post and Page Protection"
|
862 |
+
msgstr "Schutz von Beiträgen uns Seiten"
|
863 |
+
|
864 |
+
#: simple-membership/classes/class.swpm-post-list.php:43
|
865 |
+
#: simple-membership/classes/class.swpm-post-list.php:52
|
866 |
+
#: simple-membership/classes/class.swpm-post-list.php:62
|
867 |
+
#: simple-membership/classes/admin-includes/class.swpm-payments-list-table.php:81
|
868 |
+
msgid "Date"
|
869 |
+
msgstr "Datum"
|
870 |
+
|
871 |
+
#: simple-membership/classes/class.swpm-post-list.php:44
|
872 |
+
#: simple-membership/classes/class.swpm-post-list.php:53
|
873 |
+
#: simple-membership/classes/class.swpm-post-list.php:63
|
874 |
+
msgid "Title"
|
875 |
+
msgstr "Titel"
|
876 |
+
|
877 |
+
#: simple-membership/classes/class.swpm-post-list.php:45
|
878 |
+
#: simple-membership/classes/class.swpm-post-list.php:54
|
879 |
+
#: simple-membership/classes/class.swpm-post-list.php:64
|
880 |
+
msgid "Author"
|
881 |
+
msgstr "Autor"
|
882 |
+
|
883 |
+
#: simple-membership/classes/class.swpm-post-list.php:46
|
884 |
+
#: simple-membership/classes/class.swpm-post-list.php:56
|
885 |
+
#: simple-membership/classes/class.swpm-post-list.php:66
|
886 |
+
msgid "Status"
|
887 |
+
msgstr "Status"
|
888 |
+
|
889 |
+
#: simple-membership/classes/class.swpm-post-list.php:55
|
890 |
+
msgid "Categories"
|
891 |
+
msgstr "Kategorien"
|
892 |
+
|
893 |
+
#: simple-membership/classes/class.swpm-post-list.php:65
|
894 |
+
msgid "Type"
|
895 |
+
msgstr "Typ"
|
896 |
+
|
897 |
+
#: simple-membership/classes/class.swpm-post-list.php:125
|
898 |
+
msgid "Protection settings updated!"
|
899 |
+
msgstr "Schutz-Einstellungen aktualisiert!"
|
900 |
+
|
901 |
+
#: simple-membership/classes/class.swpm-post-list.php:230
|
902 |
+
msgid "No items found."
|
903 |
+
msgstr "Keine Einträge gefunden."
|
904 |
+
|
905 |
+
#: simple-membership/classes/class.swpm-settings.php:26
|
906 |
+
#: simple-membership/classes/class.swpm-settings.php:54
|
907 |
msgid "General Settings"
|
908 |
+
msgstr "Allgemeine Einstellungen"
|
909 |
|
910 |
+
#: simple-membership/classes/class.swpm-settings.php:27
|
911 |
msgid "Payment Settings"
|
912 |
+
msgstr "Einstellungen für Zahlungsvorgänge"
|
913 |
|
914 |
+
#: simple-membership/classes/class.swpm-settings.php:28
|
915 |
msgid "Email Settings"
|
916 |
msgstr "E-Mail Einstellungen"
|
917 |
|
918 |
+
#: simple-membership/classes/class.swpm-settings.php:29
|
919 |
msgid "Tools"
|
920 |
msgstr "Tools"
|
921 |
|
922 |
+
#: simple-membership/classes/class.swpm-settings.php:30
|
923 |
+
#: simple-membership/classes/class.swpm-settings.php:180
|
924 |
msgid "Advanced Settings"
|
925 |
msgstr "Erweiterte Einstellungen"
|
926 |
|
927 |
+
#: simple-membership/classes/class.swpm-settings.php:31
|
928 |
msgid "Addons Settings"
|
929 |
+
msgstr "Einstellungen für die Erweiterungen"
|
930 |
|
931 |
+
#: simple-membership/classes/class.swpm-settings.php:53
|
932 |
msgid "Plugin Documentation"
|
933 |
msgstr "Plugin-Dokumentation"
|
934 |
|
935 |
+
#: simple-membership/classes/class.swpm-settings.php:55
|
936 |
msgid "Enable Free Membership"
|
937 |
msgstr "Kostenlose Mitgliedschaft erlauben"
|
938 |
|
939 |
+
#: simple-membership/classes/class.swpm-settings.php:56
|
940 |
msgid ""
|
941 |
"Enable/disable registration for free membership level. When you enable this "
|
942 |
"option, make sure to specify a free membership level ID in the field below."
|
943 |
msgstr ""
|
944 |
+
"Aktivierung/Deaktivierung der Registrierung für eine kostenlose "
|
945 |
+
"Mitgliedschaft. Wenn Sie diese Option aktivieren, stellen Sie bitte sicher, "
|
946 |
+
"dass Sie eine ID für eine kostenlose Mitgliedschaft angeben."
|
947 |
|
948 |
+
#: simple-membership/classes/class.swpm-settings.php:57
|
949 |
msgid "Free Membership Level ID"
|
950 |
msgstr "Kostenlose Mitgliedschaftsstufen-ID"
|
951 |
|
952 |
+
#: simple-membership/classes/class.swpm-settings.php:58
|
953 |
msgid "Assign free membership level ID"
|
954 |
+
msgstr "ID der kostenlosen Mitgliedschaftsstufe zuweisen"
|
955 |
|
956 |
+
#: simple-membership/classes/class.swpm-settings.php:59
|
957 |
msgid "Enable More Tag Protection"
|
958 |
+
msgstr "Aktiviere den \"Mehr\"-Tag Schutz"
|
959 |
|
960 |
+
#: simple-membership/classes/class.swpm-settings.php:60
|
961 |
msgid ""
|
962 |
"Enables or disables \"more\" tag protection in the posts and pages. Anything "
|
963 |
"after the More tag is protected. Anything before the more tag is teaser "
|
964 |
"content."
|
965 |
msgstr ""
|
966 |
+
"Aktiviert oder deaktiviert den \"mehr\" Tag Schutz in Beiträgen und Seiten. "
|
967 |
+
"Der Inhalt nach dem \"mehr\" Tag ist geschützt. Inhalt vor diesem Tag ist "
|
968 |
+
"\"Teaser\" Inhalt."
|
969 |
|
970 |
+
#: simple-membership/classes/class.swpm-settings.php:61
|
971 |
msgid "Hide Adminbar"
|
972 |
msgstr "Admin-Bar ausblenden"
|
973 |
|
974 |
+
#: simple-membership/classes/class.swpm-settings.php:62
|
975 |
msgid ""
|
976 |
"WordPress shows an admin toolbar to the logged in users of the site. Check "
|
977 |
"this if you want to hide that admin toolbar in the frontend of your site."
|
978 |
msgstr ""
|
979 |
+
"Für eingeloggte User ist in WordPress die Admin Toolbar standardmäßig "
|
980 |
+
"sichtbar. Setzen Sie ein Häkchen um die Admin Toolbar auszublenden."
|
|
|
981 |
|
982 |
+
#: simple-membership/classes/class.swpm-settings.php:63
|
983 |
msgid "Show Adminbar to Admin"
|
984 |
msgstr "Adminbar dem Admin anzeigen"
|
985 |
|
986 |
+
#: simple-membership/classes/class.swpm-settings.php:64
|
987 |
msgid ""
|
988 |
"Use this option if you want to show the admin toolbar to admin users only. "
|
989 |
"The admin toolbar will be hidden for all other users."
|
990 |
msgstr ""
|
991 |
+
"Aktivieren Sie diese Option, wenn die Admin Toolbar nur für Admins sichtbar "
|
992 |
+
"sein soll. Die Admin Toolbar ist für alle anderen Anwender nicht sichtbar."
|
|
|
993 |
|
994 |
+
#: simple-membership/classes/class.swpm-settings.php:65
|
995 |
msgid "Disable Access to WP Dashboard"
|
996 |
msgstr "Deaktivieren Sie den Zugriff auf das WP Dashboard"
|
997 |
|
998 |
+
#: simple-membership/classes/class.swpm-settings.php:66
|
999 |
msgid ""
|
1000 |
"WordPress allows a sandard wp user to be able to go to the wp-admin URL and "
|
1001 |
"access his profile from the wp dashbaord. Using this option will prevent any "
|
1002 |
"non admin users from going to the wp dashboard."
|
1003 |
msgstr ""
|
1004 |
+
"WordPress ermöglicht es einem Standard-WP-Benutzer, in die WP-Admin URL zu "
|
1005 |
"gelangen und auf sein Profil aus dem WP-Dashboard zuzugreifen. Mit dieser "
|
1006 |
+
"Option wird verhindert, dass Benutzer, die nicht Admins sind, auf das WP-"
|
1007 |
+
"Dashboard zugreifen können."
|
1008 |
|
1009 |
+
#: simple-membership/classes/class.swpm-settings.php:68
|
1010 |
msgid "Default Account Status"
|
1011 |
msgstr "Standardkonto Status"
|
1012 |
|
1013 |
+
#: simple-membership/classes/class.swpm-settings.php:71
|
1014 |
msgid ""
|
1015 |
"Select the default account status for newly registered users. If you want to "
|
1016 |
"manually approve the members then you can set the status to \"Pending\"."
|
1017 |
msgstr ""
|
1018 |
+
"Wählen Sie eine Voreinstellung für den Mitglieder-Status neu registrierter "
|
1019 |
+
"Mitglieder. Wenn Sie die Registrierung neuer Mitglieder manuell bestätigen "
|
1020 |
+
"möchten, setzen Sie den Status auf \"ausstehend\"."
|
1021 |
|
1022 |
+
#: simple-membership/classes/class.swpm-settings.php:73
|
1023 |
msgid "Members Must be Logged in to Comment"
|
1024 |
+
msgstr ""
|
1025 |
+
"Mitglieder müssen eingeloggt sein, um Kommentare hinterlassen zu können"
|
1026 |
|
1027 |
+
#: simple-membership/classes/class.swpm-settings.php:74
|
1028 |
msgid ""
|
1029 |
"Enable this option if you only want the members of the site to be able to "
|
1030 |
"post a comment."
|
1031 |
msgstr ""
|
1032 |
+
"Aktivieren Sie diese Option, wenn Sie nur Mitgliedern die Möglichkeit geben "
|
1033 |
+
"wollen, Kommentare zu hinterlassen."
|
1034 |
|
1035 |
+
#: simple-membership/classes/class.swpm-settings.php:83
|
1036 |
msgid "Pages Settings"
|
1037 |
msgstr "Seiteneinstellungen"
|
1038 |
|
1039 |
+
#: simple-membership/classes/class.swpm-settings.php:84
|
1040 |
msgid "Login Page URL"
|
1041 |
+
msgstr "URL der Login Seite"
|
1042 |
|
1043 |
+
#: simple-membership/classes/class.swpm-settings.php:86
|
1044 |
msgid "Registration Page URL"
|
1045 |
msgstr "Registrierungsseiten-URL"
|
1046 |
|
1047 |
+
#: simple-membership/classes/class.swpm-settings.php:88
|
1048 |
msgid "Join Us Page URL"
|
1049 |
msgstr "Jetzt Anmelden-URL"
|
1050 |
|
1051 |
+
#: simple-membership/classes/class.swpm-settings.php:90
|
1052 |
msgid "Edit Profile Page URL"
|
1053 |
+
msgstr "Profilseite URL bearbeiten"
|
1054 |
|
1055 |
+
#: simple-membership/classes/class.swpm-settings.php:92
|
1056 |
msgid "Password Reset Page URL"
|
1057 |
msgstr "Passwort zurücksetzten-URL"
|
1058 |
|
1059 |
+
#: simple-membership/classes/class.swpm-settings.php:95
|
1060 |
msgid "Test & Debug Settings"
|
1061 |
msgstr "Test & Debug-Einstellungen"
|
1062 |
|
1063 |
+
#: simple-membership/classes/class.swpm-settings.php:97
|
1064 |
msgid "Check this option to enable debug logging."
|
1065 |
msgstr ""
|
1066 |
"Aktivieren Sie diese Option, um die Debug-Protokollierung zu aktivieren."
|
1067 |
|
1068 |
+
#: simple-membership/classes/class.swpm-settings.php:102
|
1069 |
msgid "Enable Sandbox Testing"
|
1070 |
msgstr "Sandbox-Test aktivieren"
|
1071 |
|
1072 |
+
#: simple-membership/classes/class.swpm-settings.php:103
|
1073 |
msgid "Enable this option if you want to do sandbox payment testing."
|
1074 |
msgstr ""
|
1075 |
+
"Aktivieren Sie die Testumgebung, um diese Option um die Bezahlmethode zu "
|
1076 |
+
"testen."
|
1077 |
|
1078 |
+
#: simple-membership/classes/class.swpm-settings.php:116
|
1079 |
+
msgid "Email Settings Overview"
|
1080 |
+
msgstr "E-Mail Einstellungen"
|
|
|
|
|
1081 |
|
1082 |
+
#: simple-membership/classes/class.swpm-settings.php:117
|
1083 |
msgid "Email Misc. Settings"
|
1084 |
msgstr "E-Mail Einstellungen"
|
1085 |
|
1086 |
+
#: simple-membership/classes/class.swpm-settings.php:119
|
1087 |
msgid "From Email Address"
|
1088 |
msgstr "Von E-Mail-Adresse"
|
1089 |
|
1090 |
+
#: simple-membership/classes/class.swpm-settings.php:123
|
1091 |
msgid "Email Settings (Prompt to Complete Registration )"
|
1092 |
msgstr "E-Mail-Einstellungen (Eingabeaufforderung zur Anmeldung)"
|
1093 |
|
1094 |
+
#: simple-membership/classes/class.swpm-settings.php:124
|
1095 |
+
#: simple-membership/classes/class.swpm-settings.php:137
|
1096 |
+
#: simple-membership/classes/class.swpm-settings.php:155
|
1097 |
+
#: simple-membership/classes/class.swpm-settings.php:160
|
1098 |
+
#: simple-membership/classes/class.swpm-settings.php:165
|
1099 |
msgid "Email Subject"
|
1100 |
msgstr "E-Mail Betreff"
|
1101 |
|
1102 |
+
#: simple-membership/classes/class.swpm-settings.php:126
|
1103 |
+
#: simple-membership/classes/class.swpm-settings.php:139
|
1104 |
+
#: simple-membership/classes/class.swpm-settings.php:156
|
1105 |
+
#: simple-membership/classes/class.swpm-settings.php:161
|
1106 |
+
#: simple-membership/classes/class.swpm-settings.php:166
|
1107 |
msgid "Email Body"
|
1108 |
+
msgstr "E-Mail Text"
|
1109 |
|
1110 |
+
#: simple-membership/classes/class.swpm-settings.php:130
|
1111 |
msgid ""
|
1112 |
"Enter the email address where you want the admin notification email to be "
|
1113 |
"sent to."
|
1114 |
msgstr ""
|
1115 |
+
"Geben Sie hier die Email Adresse ein, zu der die Benachrichtigung an den "
|
1116 |
+
"Admin gesendet werden soll."
|
1117 |
|
1118 |
+
#: simple-membership/classes/class.swpm-settings.php:131
|
1119 |
msgid ""
|
1120 |
" You can put multiple email addresses separated by comma (,) in the above "
|
1121 |
"field to send the notification to multiple email addresses."
|
1122 |
msgstr ""
|
1123 |
+
" Sie können mehrere Email Adressen eingeben, an die die Benachrichtigungen "
|
1124 |
+
"gesendet werden sollen. Die Email Adressen müssen durch Komma (,) getrennt "
|
1125 |
+
"werden."
|
1126 |
|
1127 |
+
#: simple-membership/classes/class.swpm-settings.php:133
|
1128 |
msgid "Enter the subject for the admin notification email."
|
1129 |
msgstr "Geben Sie den Betreff für die Admin-Benachrichtigungs-E-Mail ein."
|
1130 |
|
1131 |
+
#: simple-membership/classes/class.swpm-settings.php:134
|
1132 |
msgid ""
|
1133 |
"This email will be sent to the admin when a new user completes the "
|
1134 |
"membership registration. Only works if you have enabled the \"Send "
|
1135 |
"Notification to Admin\" option above."
|
1136 |
msgstr ""
|
1137 |
+
"Diese Email wird an den Admin gesendet, wenn ein neues Mitglied die "
|
1138 |
+
"Registrierung abgeschlossen hat. Der Email Versand erfolgt nur, wenn Sie die "
|
1139 |
+
"Option \"Den Admin benachrichtigen\" aktiviert haben."
|
1140 |
|
1141 |
+
#: simple-membership/classes/class.swpm-settings.php:136
|
1142 |
msgid "Email Settings (Registration Complete)"
|
1143 |
msgstr "E-Mail-Einstellungen (Anmeldung abgeschlossen)"
|
1144 |
|
1145 |
+
#: simple-membership/classes/class.swpm-settings.php:141
|
1146 |
msgid "Send Notification to Admin"
|
1147 |
msgstr "Benachrichtigung an Admin senden"
|
1148 |
|
1149 |
+
#: simple-membership/classes/class.swpm-settings.php:142
|
1150 |
msgid ""
|
1151 |
"Enable this option if you want the admin to receive a notification when a "
|
1152 |
"member registers."
|
1153 |
msgstr ""
|
1154 |
+
"Aktivieren Sie diese Option, wenn der Admin benachrichtigt werden soll, wenn "
|
1155 |
+
"sich ein neues Mitglied registriert hat."
|
1156 |
|
1157 |
+
#: simple-membership/classes/class.swpm-settings.php:143
|
1158 |
msgid "Admin Email Address"
|
1159 |
+
msgstr "Email Adresse des Admin"
|
1160 |
|
1161 |
+
#: simple-membership/classes/class.swpm-settings.php:145
|
1162 |
msgid "Admin Notification Email Subject"
|
1163 |
+
msgstr "Betreff-Zeile der Admin Benachrichtigung"
|
1164 |
|
1165 |
+
#: simple-membership/classes/class.swpm-settings.php:147
|
1166 |
msgid "Admin Notification Email Body"
|
1167 |
+
msgstr "E-Mail Text der Admin Benachrichtigung"
|
1168 |
|
1169 |
+
#: simple-membership/classes/class.swpm-settings.php:150
|
1170 |
msgid "Send Email to Member When Added via Admin Dashboard"
|
1171 |
msgstr ""
|
1172 |
+
"Mitglied mit E-Mail benachrichtigen wenn er vom Administrator hinzugefügt "
|
1173 |
+
"wird"
|
1174 |
|
1175 |
+
#: simple-membership/classes/class.swpm-settings.php:154
|
1176 |
msgid "Email Settings (Password Reset)"
|
1177 |
msgstr "E-Mail-Einstellungen (Passwort zurücksetzen)"
|
1178 |
|
1179 |
+
#: simple-membership/classes/class.swpm-settings.php:159
|
1180 |
msgid " Email Settings (Account Upgrade Notification)"
|
1181 |
msgstr " E-Mail-Einstellungen (Kontoaktualisierungsbenachrichtigung)"
|
1182 |
|
1183 |
+
#: simple-membership/classes/class.swpm-settings.php:164
|
1184 |
msgid " Email Settings (Bulk Account Activate Notification)"
|
1185 |
msgstr " E-Mail-Einstellungen (Account Benachrichtigung aktivieren)"
|
1186 |
|
1187 |
+
#: simple-membership/classes/class.swpm-settings.php:182
|
1188 |
msgid "Enable Expired Account Login"
|
1189 |
msgstr "Aktivieren Sie das \"abgelaufene Konto\" Login"
|
1190 |
|
1191 |
+
#: simple-membership/classes/class.swpm-settings.php:183
|
1192 |
msgid ""
|
1193 |
"When enabled, expired members will be able to log into the system but won't "
|
1194 |
"be able to view any protected content. This allows them to easily renew "
|
1195 |
"their account by making another payment."
|
1196 |
msgstr ""
|
1197 |
+
"Wenn aktiviert, können Mitglieder mit abgelaufener Mitgliedschaft sich "
|
1198 |
+
"einloggen, können aber nicht auf geschützten Inhalte zugreifen. Dies es "
|
1199 |
+
"ermöglicht es ihnen, Ihre Mitgliedschaft durch Bezahlung zu reaktivieren."
|
1200 |
|
1201 |
+
#: simple-membership/classes/class.swpm-settings.php:185
|
1202 |
msgid "Membership Renewal URL"
|
1203 |
+
msgstr "URL zur Erneuerung der Mitgliedschaft"
|
1204 |
|
1205 |
+
#: simple-membership/classes/class.swpm-settings.php:186
|
1206 |
msgid ""
|
1207 |
"You can create a renewal page for your site. Read <a href=\"https://simple-"
|
1208 |
"membership-plugin.com/creating-membership-renewal-button/\" target=\"_blank"
|
1209 |
"\">this documentation</a> to learn how to create a renewal page."
|
1210 |
msgstr ""
|
1211 |
+
"Sie können eine Seite für die Erneuerung der Mitgliedschaft für Ihre Website "
|
1212 |
+
"einrichten. Lesen Sie dazu <a href=\"https://simple-membership-plugin.com/"
|
1213 |
+
"creating-membership-renewal-button/\" target=\"_blank\">diese Dokumentation</"
|
1214 |
+
"a> für Informationen, wie Sie eine Seite für die Erneuerung der "
|
1215 |
+
"Mitgliedschaft einrichten."
|
1216 |
|
1217 |
+
#: simple-membership/classes/class.swpm-settings.php:188
|
1218 |
+
msgid "After Registration Redirect URL"
|
1219 |
+
msgstr "URL, zu der nach der Registrierung weitergeleitet wird"
|
1220 |
+
|
1221 |
+
#: simple-membership/classes/class.swpm-settings.php:189
|
1222 |
+
msgid ""
|
1223 |
+
"You can enter an URL here to redirect the members to this page after they "
|
1224 |
+
"submit the registration form. Read <a href=\"https://simple-membership-"
|
1225 |
+
"plugin.com/configure-registration-redirect-members/\" target=\"_blank\">this "
|
1226 |
+
"documentation</a> to learn how to setup after registration redirect."
|
1227 |
+
msgstr ""
|
1228 |
+
"Sie können hier eine URL eingeben, um die Mitglieder auf diese Seite "
|
1229 |
+
"weiterzuleiten, nachdem sie das Registrierungsformular abgeschickt haben. "
|
1230 |
+
"Lesen Sie dazu <a href=\"https://simple-membership-plugin.com/creating-"
|
1231 |
+
"membership-renewal-button/\" target=\"_blank\">diese Dokumentation</a> für "
|
1232 |
+
"Informationen, wie Sie die Weiterleitung nach der Registrierung einrichten."
|
1233 |
+
|
1234 |
+
#: simple-membership/classes/class.swpm-settings.php:191
|
1235 |
msgid "Allow Account Deletion"
|
1236 |
msgstr "Kontolöschung zulassen"
|
1237 |
|
1238 |
+
#: simple-membership/classes/class.swpm-settings.php:192
|
1239 |
msgid "Allow users to delete their accounts."
|
1240 |
msgstr "Benutzern erlauben, ihre Konten zu löschen."
|
1241 |
|
1242 |
+
#: simple-membership/classes/class.swpm-settings.php:194
|
1243 |
+
msgid "Force WP User Synchronization"
|
1244 |
+
msgstr "Synchronisation mit den WP Benutzereinträgen erzwingen"
|
1245 |
+
|
1246 |
+
#: simple-membership/classes/class.swpm-settings.php:195
|
1247 |
+
msgid ""
|
1248 |
+
"Enable this option if you want to force the member login to be synchronized "
|
1249 |
+
"with WP user account. This can be useful if you are using another plugin "
|
1250 |
+
"that uses WP user records. For example: bbPress plugin."
|
1251 |
+
msgstr ""
|
1252 |
+
"Aktivieren Sie diese Option, wenn eingeloggte Mitglieder mit den WP User "
|
1253 |
+
"Einträgen synchronisiert werden sollen. Dies kann hilfreich sein, wenn Sie "
|
1254 |
+
"ein anderes Plugin installiert haben, das WP User Einträge verwendet. Bspw. "
|
1255 |
+
"das bbPress Plugin."
|
1256 |
+
|
1257 |
+
#: simple-membership/classes/class.swpm-settings.php:197
|
1258 |
msgid "Use WordPress Timezone"
|
1259 |
+
msgstr "Die Wordpress Zeitzone benutzen"
|
1260 |
|
1261 |
+
#: simple-membership/classes/class.swpm-settings.php:198
|
1262 |
msgid ""
|
1263 |
"Use this option if you want to use the timezone value specified in your "
|
1264 |
"WordPress General Settings interface."
|
1266 |
"Verwenden Sie diese Option, wenn Sie den in Ihrer WordPress Einstellungen "
|
1267 |
"angegebenen Zeitzonenwert verwenden möchten."
|
1268 |
|
1269 |
+
#: simple-membership/classes/class.swpm-settings.php:200
|
1270 |
msgid "Auto Delete Pending Account"
|
1271 |
+
msgstr "Automatisches Löschen einer ausstehenden Mitgliedschaft"
|
1272 |
|
1273 |
+
#: simple-membership/classes/class.swpm-settings.php:203
|
1274 |
msgid "Select how long you want to keep \"pending\" account."
|
1275 |
msgstr ""
|
1276 |
"Wählen Sie aus, wie lange Sie ausstehende Benutzerkonten behalten möchten."
|
1277 |
|
1278 |
+
#: simple-membership/classes/class.swpm-settings.php:205
|
1279 |
msgid "Admin Dashboard Access Permission"
|
1280 |
msgstr "Admin-Dashboard Zugriffsberechtigung"
|
1281 |
|
1282 |
+
#: simple-membership/classes/class.swpm-settings.php:208
|
1283 |
msgid ""
|
1284 |
"SWPM admin dashboard is accessible to admin users only (just like any other "
|
1285 |
"plugin). You can allow users with other WP user role to access the SWPM "
|
1286 |
"admin dashboard by selecting a value here."
|
1287 |
msgstr ""
|
1288 |
+
"Auf das SWPM Dashboard können nur Admins zugreifen (wie bei jedem Plugin). "
|
1289 |
+
"Sie können anderen Benutzern mit anderen WP Rollen den Zugriff auf das SWPM "
|
1290 |
+
"Dashboard ermöglichen, wenn Sie hier den entsprechenden Wert wählen."
|
1291 |
+
|
1292 |
+
#: simple-membership/classes/class.swpm-settings.php:298
|
1293 |
+
#: simple-membership/classes/class.swpm-settings.php:344
|
1294 |
+
#: simple-membership/classes/class.swpm-settings.php:369
|
1295 |
+
msgid "Settings updated!"
|
1296 |
+
msgstr "Einstellungen aktualisiert!"
|
1297 |
|
1298 |
+
#: simple-membership/classes/class.swpm-settings.php:303
|
1299 |
msgid "General Plugin Settings."
|
1300 |
msgstr "Allgemeine Plugin-Einstellungen."
|
1301 |
|
1302 |
+
#: simple-membership/classes/class.swpm-settings.php:307
|
1303 |
msgid "Page Setup and URL Related settings."
|
1304 |
+
msgstr "Seiten- und URL-spezifische Einstellungen."
|
1305 |
+
|
1306 |
+
#: simple-membership/classes/class.swpm-settings.php:310
|
1307 |
+
msgid ""
|
1308 |
+
"The following pages are required for the plugin to function correctly. These "
|
1309 |
+
"pages were automatically created by the plugin at install time."
|
1310 |
+
msgstr ""
|
1311 |
+
"Die folgenden Seiten sind für ein korrektes Funktionieren des Plugin "
|
1312 |
+
"erforderlich. Diese Seiten werden bei der Installation des Plugin "
|
1313 |
+
"automatisch angelegt."
|
1314 |
|
1315 |
+
#: simple-membership/classes/class.swpm-settings.php:315
|
1316 |
msgid "Testing and Debug Related Settings."
|
1317 |
+
msgstr "Einstellungen zum Testen und Debuggen."
|
1318 |
|
1319 |
+
#: simple-membership/classes/class.swpm-settings.php:319
|
1320 |
msgid ""
|
1321 |
"This email will be sent to your users when they complete the registration "
|
1322 |
"and become a member."
|
1323 |
msgstr ""
|
1324 |
+
"Diese Email wird den Benutzern gesendet, wenn Sie Ihre Registrierung "
|
1325 |
+
"abgeschlossen haben und Mitglied geworden sind."
|
1326 |
|
1327 |
+
#: simple-membership/classes/class.swpm-settings.php:323
|
1328 |
msgid ""
|
1329 |
"This email will be sent to your users when they use the password reset "
|
1330 |
"functionality."
|
1331 |
msgstr ""
|
1332 |
+
"Diese Email wird den Mitgliedern gesendet, wenn sie das Passwort zurück "
|
1333 |
+
"setzen."
|
1334 |
|
1335 |
+
#: simple-membership/classes/class.swpm-settings.php:329
|
1336 |
+
msgid ""
|
1337 |
+
"This interface lets you custsomize the various emails that gets sent to your "
|
1338 |
+
"members for various actions. The default settings should be good to get your "
|
1339 |
+
"started."
|
1340 |
+
msgstr ""
|
1341 |
+
"Über diese Schnittstelle können Sie die verschiedenen E-Mails anpassen, die "
|
1342 |
+
"für verschiedene Aktionen an Ihre Mitglieder gesendet werden. Die "
|
1343 |
+
"Standardeinstellungen sollten ausreichen, um loszulegen."
|
1344 |
+
|
1345 |
+
#: simple-membership/classes/class.swpm-settings.php:333
|
1346 |
+
msgid "This documentation"
|
1347 |
+
msgstr "Plugin-Dokumentation"
|
1348 |
+
|
1349 |
+
#: simple-membership/classes/class.swpm-settings.php:334
|
1350 |
+
msgid ""
|
1351 |
+
" explains what email merge tags you can use in the email body field to "
|
1352 |
+
"customize it (if you want to)."
|
1353 |
+
msgstr ""
|
1354 |
+
" erklärt, welche E-Mail-Merge-Tags Sie im E-Mail-Text verwenden können, um "
|
1355 |
+
"sie anzupassen (wenn Sie möchten)."
|
1356 |
+
|
1357 |
+
#: simple-membership/classes/class.swpm-settings.php:347
|
1358 |
msgid "Settings in this section apply to all emails."
|
1359 |
msgstr "Die Einstellungen in diesem Abschnitt gelten für alle E-Mails."
|
1360 |
|
1361 |
+
#: simple-membership/classes/class.swpm-settings.php:351
|
1362 |
msgid ""
|
1363 |
"This email will be sent to your users after account upgrade (when an "
|
1364 |
"existing member pays for a new membership level)."
|
1365 |
msgstr ""
|
1366 |
+
"Diese Email wird den Mitgliedern gesendet, wenn sie den Zahlungsvorgang für "
|
1367 |
+
"einen höheren Level der Mitgliedschaft abgeschlossen haben."
|
1368 |
|
1369 |
+
#: simple-membership/classes/class.swpm-settings.php:355
|
1370 |
msgid ""
|
1371 |
"This email will be sent to your members when you use the bulk account "
|
1372 |
"activate and notify action."
|
1373 |
msgstr ""
|
1374 |
+
"Diese Email wird an die Mitglieder gesendet, wenn Sie die Aktivierung und "
|
1375 |
+
"Benachrichtigung gesammelt vornehmen."
|
1376 |
|
1377 |
+
#: simple-membership/classes/class.swpm-settings.php:356
|
1378 |
+
msgid ""
|
1379 |
+
" You cannot use email marge tags in this email. You can only use generic "
|
1380 |
+
"text."
|
1381 |
+
msgstr ""
|
1382 |
+
" Sie können nicht E-Mail-Merge-Tags in dieser e-Mail verwenden. Sie können "
|
1383 |
+
"nur generische Text verwenden."
|
1384 |
+
|
1385 |
+
#: simple-membership/classes/class.swpm-settings.php:361
|
1386 |
msgid ""
|
1387 |
"This email will be sent to prompt users to complete registration after the "
|
1388 |
"payment."
|
1390 |
"Diese E-Mail wird gesendet, um Benutzer zu veranlassen, die Registrierung "
|
1391 |
"nach der Zahlung zu vervollständigen."
|
1392 |
|
1393 |
+
#: simple-membership/classes/class.swpm-settings.php:372
|
1394 |
msgid "This page allows you to configure some advanced features of the plugin."
|
1395 |
msgstr ""
|
1396 |
+
"Auf dieser Seite können Sie einige erweiterte Einstellungen dieses Plugins "
|
1397 |
"konfigurieren."
|
1398 |
|
1399 |
+
#: simple-membership/classes/class.swpm-settings.php:483
|
1400 |
msgid "Simple WP Membership::Settings"
|
1401 |
msgstr "Simple WP Membership::Einstellungen"
|
1402 |
|
1423 |
msgid "Password Reset"
|
1424 |
msgstr "Passwort zurücksetzen"
|
1425 |
|
1426 |
+
#: simple-membership/classes/class.swpm-utils-misc.php:247
|
1427 |
msgid "Not a Member?"
|
1428 |
msgstr "Noch kein Mitglied?"
|
1429 |
|
1430 |
+
#: simple-membership/classes/class.swpm-utils-misc.php:258
|
1431 |
msgid "renew"
|
1432 |
msgstr "erneuern"
|
1433 |
|
1434 |
+
#: simple-membership/classes/class.swpm-utils-misc.php:258
|
1435 |
msgid " your account to gain access to this content."
|
1436 |
msgstr " Ihr Konto, um Zugang zu diesem Inhalt zu erhalten."
|
1437 |
|
1438 |
+
#: simple-membership/classes/class.swpm-utils-misc.php:316
|
1439 |
+
#: simple-membership/classes/class.swpm-utils-misc.php:322
|
1440 |
msgid "Error! This action ("
|
1441 |
msgstr "Fehler! Diese Aktion ("
|
1442 |
|
1443 |
+
#: simple-membership/classes/class.swpm-utils-misc.php:394
|
1444 |
+
msgid "(Please Select)"
|
1445 |
+
msgstr "(Bitte auswählen)"
|
1446 |
+
|
1447 |
#: simple-membership/classes/class.swpm-utils-template.php:38
|
1448 |
msgid "Error! Failed to find a template path for the specified template: "
|
1449 |
msgstr ""
|
1450 |
+
"Fehler! Ein Zugriffspfad auf dieses Template konnte nicht gefunden werden: "
|
1451 |
|
1452 |
#: simple-membership/classes/class.swpm-utils.php:100
|
1453 |
msgid "Never"
|
1454 |
msgstr "Niemals"
|
1455 |
|
1456 |
#: simple-membership/classes/class.swpm-utils.php:115
|
1457 |
+
#: simple-membership/views/admin_members_list.php:19
|
1458 |
msgid "Active"
|
1459 |
msgstr "Aktiv"
|
1460 |
|
1461 |
#: simple-membership/classes/class.swpm-utils.php:116
|
1462 |
+
#: simple-membership/views/admin_members_list.php:20
|
1463 |
msgid "Inactive"
|
1464 |
msgstr "Inaktiv"
|
1465 |
|
1466 |
#: simple-membership/classes/class.swpm-utils.php:117
|
1467 |
+
#: simple-membership/views/admin_members_list.php:21
|
1468 |
msgid "Pending"
|
1469 |
+
msgstr "ausstehend"
|
1470 |
|
1471 |
#: simple-membership/classes/class.swpm-utils.php:118
|
1472 |
+
#: simple-membership/views/admin_members_list.php:23
|
1473 |
msgid "Expired"
|
1474 |
msgstr "Abgelaufen"
|
1475 |
|
1505 |
|
1506 |
#: simple-membership/classes/admin-includes/class.swpm-payments-admin-menu.php:21
|
1507 |
msgid "Simple Membership::Payments"
|
1508 |
+
msgstr "Simple WP Membership::Zahlungsvorgänge"
|
1509 |
|
1510 |
#: simple-membership/classes/admin-includes/class.swpm-payments-admin-menu.php:25
|
1511 |
msgid "Transactions"
|
1535 |
|
1536 |
#: simple-membership/classes/admin-includes/class.swpm-payments-list-table.php:80
|
1537 |
msgid "Member Profile"
|
1538 |
+
msgstr "Mitgliedsprofil"
|
|
|
|
|
|
|
|
|
1539 |
|
1540 |
#: simple-membership/classes/admin-includes/class.swpm-payments-list-table.php:82
|
1541 |
msgid "Transaction ID"
|
1551 |
|
1552 |
#: simple-membership/classes/shortcode-related/class.swpm-shortcodes-handler.php:57
|
1553 |
msgid "Your membership profile will be updated to reflect the payment."
|
1554 |
+
msgstr "Ihr Mitglieds Profil wird gemäß Zahlungsbetrag aktualisiert."
|
1555 |
|
1556 |
#: simple-membership/classes/shortcode-related/class.swpm-shortcodes-handler.php:58
|
1557 |
msgid "Your profile username: "
|
1572 |
"processed. Please check back in a few minutes. An email will be sent to you "
|
1573 |
"with the details shortly."
|
1574 |
msgstr ""
|
1575 |
+
"Wenn Sie die Zahlung für die Mitgliedschaft gerade veranlasst haben, dann "
|
1576 |
+
"ist der Zahlungsvorgang möglicherweise noch nicht abgeschlossen. Bitte "
|
1577 |
+
"warten Sie noch eine kurze Zeit. Sie erhalten in Kürze eine Email zur "
|
1578 |
+
"Bestätigung."
|
1579 |
|
1580 |
#: simple-membership/classes/shortcode-related/class.swpm-shortcodes-handler.php:90
|
1581 |
msgid "Expiry: "
|
1583 |
|
1584 |
#: simple-membership/classes/shortcode-related/class.swpm-shortcodes-handler.php:92
|
1585 |
msgid "You are not logged-in as a member"
|
1586 |
+
msgstr "Sie sind nicht als Mitglied angemeldet."
|
1587 |
|
1588 |
#: simple-membership/views/add.php:15 simple-membership/views/admin_add.php:19
|
1589 |
+
#: simple-membership/views/admin_edit.php:44
|
1590 |
+
#: simple-membership/views/edit.php:22 simple-membership/views/login.php:17
|
1591 |
msgid "Password"
|
1592 |
msgstr "Passwort"
|
1593 |
|
1594 |
+
#: simple-membership/views/add.php:19 simple-membership/views/edit.php:26
|
1595 |
msgid "Repeat Password"
|
1596 |
msgstr "Passwort wiederholen"
|
1597 |
|
1609 |
#: simple-membership/views/admin_add_level.php:12
|
1610 |
#: simple-membership/views/admin_add_level.php:16
|
1611 |
#: simple-membership/views/admin_add_level.php:20
|
1612 |
+
#: simple-membership/views/admin_edit.php:19
|
1613 |
+
#: simple-membership/views/admin_edit.php:40
|
1614 |
#: simple-membership/views/admin_edit_level.php:16
|
1615 |
#: simple-membership/views/admin_edit_level.php:20
|
1616 |
#: simple-membership/views/admin_edit_level.php:24
|
1617 |
msgid "(required)"
|
1618 |
+
msgstr "(Pflichtfeld)"
|
1619 |
|
1620 |
#: simple-membership/views/admin_add.php:15
|
1621 |
+
#: simple-membership/views/admin_edit.php:40
|
1622 |
msgid "E-mail"
|
1623 |
msgstr "E-Mail Adresse"
|
1624 |
|
1625 |
#: simple-membership/views/admin_add.php:19
|
1626 |
msgid "(twice, required)"
|
1627 |
+
msgstr "(zweimal, erforderlich)"
|
1628 |
|
1629 |
#: simple-membership/views/admin_add.php:24
|
1630 |
+
#: simple-membership/views/admin_edit.php:48
|
1631 |
msgid "Strength indicator"
|
1632 |
msgstr "Passwortsicherheit"
|
1633 |
|
1634 |
#: simple-membership/views/admin_add.php:25
|
1635 |
+
#: simple-membership/views/admin_edit.php:49
|
1636 |
msgid ""
|
1637 |
"Hint: The password should be at least seven characters long. To make it "
|
1638 |
"stronger, use upper and lower case letters, numbers and symbols like ! \" ? "
|
1643 |
"Symbole wie! \" ? $ % ^ &)."
|
1644 |
|
1645 |
#: simple-membership/views/admin_add.php:29
|
1646 |
+
#: simple-membership/views/admin_edit.php:53
|
1647 |
#: simple-membership/views/loggedin.php:10
|
1648 |
msgid "Account Status"
|
1649 |
msgstr "Kontostatus"
|
1657 |
"Some of the simple membership plugin's addon settings and options will be "
|
1658 |
"displayed here (if you have them)"
|
1659 |
msgstr ""
|
1660 |
+
"Einstellungen einiger der Erweiterungen und Optionen des Simple Membership "
|
1661 |
+
"Plugins werden hier angezeigt (sofern sie installiert sind)"
|
1662 |
|
1663 |
#: simple-membership/views/admin_addon_settings.php:8
|
1664 |
msgid "Save Changes"
|
1665 |
msgstr "Änderungen speichern"
|
1666 |
|
1667 |
+
#: simple-membership/views/admin_add_level.php:6
|
1668 |
+
msgid "Add Membership Level"
|
1669 |
+
msgstr "Mitgliedschaftsstufe hinzufügen"
|
1670 |
+
|
1671 |
#: simple-membership/views/admin_add_level.php:7
|
1672 |
msgid "Create new membership level."
|
1673 |
msgstr "Neue Mitgliedschaftsstufe erstellen."
|
1689 |
|
1690 |
#: simple-membership/views/admin_add_level.php:23
|
1691 |
msgid "No Expiry (Access for this level will not expire until cancelled"
|
1692 |
+
msgstr "Kein Ablauf (Zugriff läuft nicht ab, bis er storniert wird"
|
1693 |
|
1694 |
#: simple-membership/views/admin_add_level.php:24
|
1695 |
#: simple-membership/views/admin_add_level.php:26
|
1700 |
#: simple-membership/views/admin_edit_level.php:34
|
1701 |
#: simple-membership/views/admin_edit_level.php:37
|
1702 |
msgid "Expire After"
|
1703 |
+
msgstr "Läuft aus nach"
|
1704 |
|
1705 |
#: simple-membership/views/admin_add_level.php:25
|
1706 |
#: simple-membership/views/admin_edit_level.php:29
|
1709 |
|
1710 |
#: simple-membership/views/admin_add_level.php:27
|
1711 |
msgid "Weeks (Access expires after given number of weeks"
|
1712 |
+
msgstr "Wochen (Zugang läuft nach vorgegebener Anzahl der Wochen ab)"
|
1713 |
|
1714 |
#: simple-membership/views/admin_add_level.php:29
|
1715 |
#: simple-membership/views/admin_edit_level.php:35
|
1733 |
|
1734 |
#: simple-membership/views/admin_add_level.php:39
|
1735 |
msgid "Add New Membership Level "
|
1736 |
+
msgstr "Neue Mitgliedschaftsstufe hinzufügen "
|
1737 |
|
1738 |
#: simple-membership/views/admin_add_ons_page.php:7
|
1739 |
msgid "Simple WP Membership::Add-ons"
|
1745 |
"\"General Protection\" from the drop-down box below and then select the "
|
1746 |
"categories that should be protected from non-logged in users."
|
1747 |
msgstr ""
|
1748 |
+
"Zuerst wählen Sie im Drop-Down Menue \"Genereller Schutz\" und wählen dann "
|
1749 |
+
"die Kategorien aus, die Sie vor nicht eingeloggten Benutzern schützen wollen."
|
|
|
1750 |
|
1751 |
#: simple-membership/views/admin_category_list.php:8
|
1752 |
msgid ""
|
1754 |
"then select the categories you want to grant access to (for that particular "
|
1755 |
"membership level)."
|
1756 |
msgstr ""
|
1757 |
+
"Dann wählen Sie einen Mitglieder-Level aus dem Drop-Down Menue und wählen "
|
1758 |
+
"die Kategorien, zu denen Sie Mitgliedern dieses Levels Zugriff gewähren "
|
1759 |
+
"wollen."
|
1760 |
|
1761 |
#: simple-membership/views/admin_category_list.php:17
|
1762 |
+
#: simple-membership/views/admin_post_list.php:27
|
1763 |
msgid "Membership Level:"
|
1764 |
msgstr "Mitgliedschaftsstufe:"
|
1765 |
|
1766 |
#: simple-membership/views/admin_category_list.php:23
|
1767 |
+
#: simple-membership/views/admin_post_list.php:33
|
1768 |
+
#: simple-membership/views/edit.php:73
|
1769 |
msgid "Update"
|
1770 |
msgstr "Aktualisieren"
|
1771 |
|
1772 |
+
#: simple-membership/views/admin_edit.php:11
|
1773 |
msgid "Edit Member"
|
1774 |
msgstr "Mitglied bearbeiten"
|
1775 |
|
1776 |
+
#: simple-membership/views/admin_edit.php:13
|
1777 |
msgid "Edit existing member details."
|
1778 |
+
msgstr "Bearbeiten Sie die vorhandenen Mitglieds-Details."
|
1779 |
|
1780 |
+
#: simple-membership/views/admin_edit.php:14
|
1781 |
msgid " You are currenty editing member with member ID: "
|
1782 |
msgstr " Sie bearbeiten gerade das Mitglied mit der Mitglieds-ID: "
|
1783 |
|
1784 |
+
#: simple-membership/views/admin_edit.php:44
|
1785 |
msgid "(twice, leave empty to retain old password)"
|
1786 |
+
msgstr "(doppelt, leer lassen, um das bestehende Passwort zu behalten)"
|
1787 |
|
1788 |
+
#: simple-membership/views/admin_edit.php:60
|
1789 |
msgid "Notify User"
|
1790 |
msgstr "Benutzer benachrichtigen"
|
1791 |
|
1792 |
+
#: simple-membership/views/admin_edit.php:67
|
1793 |
msgid "Subscriber ID/Reference"
|
1794 |
msgstr "Abonennten ID / Referenz"
|
1795 |
|
1796 |
+
#: simple-membership/views/admin_edit.php:71
|
1797 |
msgid "Last Accessed Date"
|
1798 |
+
msgstr "Datum des letzten Zugriffs"
|
1799 |
|
1800 |
+
#: simple-membership/views/admin_edit.php:74
|
1801 |
+
#: simple-membership/views/admin_edit.php:81
|
1802 |
msgid "This value gets updated when this member logs into your site."
|
1803 |
+
msgstr "Dieser Wert wird aktualisiert, wenn dieses Mitglied sich einloggt."
|
|
|
|
|
1804 |
|
1805 |
+
#: simple-membership/views/admin_edit.php:78
|
1806 |
msgid "Last Accessed From IP"
|
1807 |
msgstr "Letzter Zugriff von IP"
|
1808 |
|
|
|
|
|
|
|
|
|
1809 |
#: simple-membership/views/admin_edit.php:89
|
1810 |
+
msgid "Save Data"
|
1811 |
+
msgstr "Daten speichern"
|
1812 |
+
|
1813 |
+
#: simple-membership/views/admin_edit.php:94
|
1814 |
msgid "Delete User Profile"
|
1815 |
msgstr "Benutzerprofil löschen"
|
1816 |
|
1822 |
msgid ""
|
1823 |
"You can edit details of a selected membership level from this interface. "
|
1824 |
msgstr ""
|
1825 |
+
"Sie können die Details des ausgewählten Mitgliederlevels hier bearbeiten. "
|
|
|
1826 |
|
1827 |
#: simple-membership/views/admin_edit_level.php:10
|
1828 |
msgid "You are currently editing: "
|
1837 |
msgstr "Wochen (Zugang läuft nach vorgegebener Anzahl von Wochen)"
|
1838 |
|
1839 |
#: simple-membership/views/admin_edit_level.php:47
|
1840 |
+
msgid "Save Membership Level "
|
1841 |
+
msgstr "Mitgliedschaftsstufe speichern "
|
1842 |
|
1843 |
#: simple-membership/views/admin_membership_manage.php:18
|
1844 |
msgid "Example Content Protection Settings"
|
1845 |
+
msgstr "Beispiel Inhaltsschutz Einstellungen"
|
1846 |
+
|
1847 |
+
#: simple-membership/views/admin_members_list.php:18
|
1848 |
+
msgid "All"
|
1849 |
+
msgstr "Alle"
|
1850 |
+
|
1851 |
+
#: simple-membership/views/admin_members_list.php:22
|
1852 |
+
msgid "Incomplete"
|
1853 |
+
msgstr "unvollständig"
|
1854 |
|
1855 |
#: simple-membership/views/admin_member_form_common_part.php:23
|
1856 |
msgid "Gender"
|
1857 |
msgstr "Geschlecht"
|
1858 |
|
1859 |
#: simple-membership/views/admin_member_form_common_part.php:30
|
1860 |
+
#: simple-membership/views/edit.php:38
|
1861 |
msgid "Phone"
|
1862 |
msgstr "Telefonnummer"
|
1863 |
|
1864 |
#: simple-membership/views/admin_member_form_common_part.php:34
|
1865 |
+
#: simple-membership/views/edit.php:42
|
1866 |
msgid "Street"
|
1867 |
msgstr "Straße"
|
1868 |
|
1869 |
#: simple-membership/views/admin_member_form_common_part.php:38
|
1870 |
+
#: simple-membership/views/edit.php:46
|
1871 |
msgid "City"
|
1872 |
msgstr "Stadt"
|
1873 |
|
1874 |
#: simple-membership/views/admin_member_form_common_part.php:42
|
1875 |
+
#: simple-membership/views/edit.php:50
|
1876 |
msgid "State"
|
1877 |
msgstr "Bundesland"
|
1878 |
|
1879 |
#: simple-membership/views/admin_member_form_common_part.php:46
|
1880 |
+
#: simple-membership/views/edit.php:54
|
1881 |
msgid "Zipcode"
|
1882 |
msgstr "PLZ"
|
1883 |
|
1884 |
#: simple-membership/views/admin_member_form_common_part.php:50
|
1885 |
+
#: simple-membership/views/edit.php:58
|
1886 |
msgid "Country"
|
1887 |
msgstr "Land"
|
1888 |
|
1894 |
msgid "Member Since"
|
1895 |
msgstr "Mitglied seit"
|
1896 |
|
1897 |
+
#: simple-membership/views/admin_post_list.php:5
|
1898 |
+
msgid ""
|
1899 |
+
"First of all, globally protect posts and pages on your site by selecting "
|
1900 |
+
"\"General Protection\" from the drop-down box below and then select posts "
|
1901 |
+
"and pages that should be protected from non-logged in users."
|
1902 |
+
msgstr ""
|
1903 |
+
"Zuerst wählen Sie im Drop-Down Menue \"Genereller Schutz\" und wählen dann "
|
1904 |
+
"die Beiträge und Seiten aus, die Sie vor nicht eingeloggten Benutzern "
|
1905 |
+
"schützen wollen."
|
1906 |
+
|
1907 |
+
#: simple-membership/views/admin_post_list.php:8
|
1908 |
+
msgid ""
|
1909 |
+
"Next, select an existing membership level from the drop-down box below and "
|
1910 |
+
"then select posts and pages you want to grant access to (for that particular "
|
1911 |
+
"membership level)."
|
1912 |
+
msgstr ""
|
1913 |
+
"Dann wählen Sie einen Mitglieder-Level aus dem Drop-Down Menue und wählen "
|
1914 |
+
"die Beiträge und Seiten, zu denen Sie Mitgliedern dieses Levels Zugriff "
|
1915 |
+
"gewähren wollen."
|
1916 |
+
|
1917 |
+
#: simple-membership/views/admin_post_list.php:21
|
1918 |
+
msgid "Posts"
|
1919 |
+
msgstr "Beiträge"
|
1920 |
+
|
1921 |
+
#: simple-membership/views/admin_post_list.php:22
|
1922 |
+
msgid "Pages"
|
1923 |
+
msgstr "Seiten"
|
1924 |
+
|
1925 |
+
#: simple-membership/views/admin_post_list.php:23
|
1926 |
+
msgid "Custom Posts"
|
1927 |
+
msgstr "Benutzerdefinierte Beiträge"
|
1928 |
+
|
1929 |
#: simple-membership/views/admin_tools_settings.php:6
|
1930 |
msgid "Generate a Registration Completion link"
|
1931 |
+
msgstr "Einen \"Registrierung abgeschlossen\" Link generieren"
|
1932 |
|
1933 |
#: simple-membership/views/admin_tools_settings.php:9
|
1934 |
msgid ""
|
1936 |
"your customer if they have missed the email that was automatically sent out "
|
1937 |
"to them after the payment."
|
1938 |
msgstr ""
|
1939 |
+
"Sie können hier manuell einen \"Registrierung abgeschlossen\" Link "
|
1940 |
+
"generieren falls Ihr Kunde die automatische E-Mail verlegt hat."
|
|
|
1941 |
|
1942 |
#: simple-membership/views/admin_tools_settings.php:14
|
1943 |
msgid "Generate Registration Completion Link"
|
1944 |
+
msgstr "\"Registrierung Abgeschlossen\" Link generieren"
|
1945 |
|
1946 |
#: simple-membership/views/admin_tools_settings.php:15
|
1947 |
msgid "For a Particular Member ID"
|
1957 |
|
1958 |
#: simple-membership/views/admin_tools_settings.php:23
|
1959 |
msgid "Send Registration Reminder Email Too"
|
1960 |
+
msgstr "Registrierungserinnerung auch per E-Mail verschicken"
|
1961 |
|
1962 |
#: simple-membership/views/admin_tools_settings.php:29
|
1963 |
msgid "Submit"
|
1968 |
"Link(s) generated successfully. The following link(s) can be used to "
|
1969 |
"complete the registration."
|
1970 |
msgstr ""
|
1971 |
+
"Link(s) sind erfolgreich angelegt. Folgende(r) Link(s) kann/können genutzt "
|
1972 |
+
"werden, um die Registrierung zu Vervollständigen."
|
1973 |
|
1974 |
#: simple-membership/views/admin_tools_settings.php:40
|
1975 |
msgid "Registration completion links will appear below"
|
1976 |
+
msgstr ""
|
1977 |
+
"Der Link für die Vervollständigung der Registrierung wird unten angezeigt"
|
1978 |
|
1979 |
+
#: simple-membership/views/edit.php:23 simple-membership/views/edit.php:27
|
1980 |
msgid "Leave empty to keep the current password"
|
1981 |
+
msgstr "Lassen Sie das Feld leer, um das aktuelle Passwort beizubehalten"
|
1982 |
+
|
1983 |
+
#: simple-membership/views/edit.php:62
|
1984 |
+
msgid "Company Name"
|
1985 |
+
msgstr "Firmennname"
|
1986 |
|
1987 |
#: simple-membership/views/forgot_password.php:12
|
1988 |
msgid "Reset Password"
|
2000 |
msgid "Account Expiry"
|
2001 |
msgstr "Kontoablauf"
|
2002 |
|
2003 |
+
#: simple-membership/views/loggedin.php:26
|
2004 |
+
msgid "Edit Profile"
|
2005 |
+
msgstr "Profil bearbeiten"
|
2006 |
+
|
2007 |
+
#: simple-membership/views/loggedin.php:31
|
2008 |
msgid "Logout"
|
2009 |
msgstr "Ausloggen"
|
2010 |
|
2011 |
#: simple-membership/views/login.php:11
|
2012 |
msgid "Username or Email"
|
2013 |
+
msgstr "Mitgliedsname oder Email"
|
2014 |
|
2015 |
#: simple-membership/views/login.php:24
|
2016 |
msgid "Remember Me"
|
2027 |
|
2028 |
#: simple-membership/views/payments/admin_all_payment_transactions.php:12
|
2029 |
msgid "Search for a transaction by using email or name"
|
2030 |
+
msgstr "Suche nach einer Transaktion mit Email oder Name"
|
2031 |
|
2032 |
+
#: simple-membership/views/payments/admin_create_payment_buttons.php:16
|
2033 |
msgid ""
|
2034 |
"You can create new payment button for your memberships using this interface."
|
2035 |
msgstr ""
|
2036 |
+
"Sie können eine neue Schaltfläche für Zahlungen für Mitgliedschaften mit "
|
2037 |
+
"diesem Interface erzeugen."
|
2038 |
|
2039 |
+
#: simple-membership/views/payments/admin_create_payment_buttons.php:24
|
2040 |
msgid "Select Payment Button Type"
|
2041 |
+
msgstr "Wählen Sie den Schaltflächen Typ für Zahlungen"
|
2042 |
|
2043 |
+
#: simple-membership/views/payments/admin_create_payment_buttons.php:27
|
2044 |
msgid "PayPal Buy Now"
|
2045 |
msgstr "PayPal Jetzt kaufen"
|
2046 |
|
2047 |
+
#: simple-membership/views/payments/admin_create_payment_buttons.php:29
|
2048 |
msgid "PayPal Subscription"
|
2049 |
msgstr "PayPal Abonnement"
|
2050 |
|
2051 |
+
#: simple-membership/views/payments/admin_create_payment_buttons.php:31
|
2052 |
msgid "Stripe Buy Now"
|
2053 |
msgstr "Stripe Jetzt kaufen"
|
2054 |
|
2055 |
+
#: simple-membership/views/payments/admin_create_payment_buttons.php:33
|
2056 |
+
msgid "Stripe Subscription"
|
2057 |
+
msgstr "Stripe Mitgliedschaft"
|
2058 |
+
|
2059 |
+
#: simple-membership/views/payments/admin_create_payment_buttons.php:35
|
2060 |
msgid "Braintree Buy Now"
|
2061 |
msgstr "Braintree Jetzt kaufen"
|
2062 |
|
2063 |
+
#: simple-membership/views/payments/admin_create_payment_buttons.php:42
|
2064 |
msgid "Next"
|
2065 |
msgstr "Weiter"
|
2066 |
|
2067 |
+
#: simple-membership/views/payments/admin_edit_payment_buttons.php:14
|
2068 |
msgid "You can edit a payment button using this interface."
|
2069 |
+
msgstr "Sie können eine Schaltfläche für Zahlungen hier bearbeiten."
|
2070 |
|
2071 |
#: simple-membership/views/payments/admin_payment_buttons.php:6
|
2072 |
msgid ""
|
2073 |
"All the membership buttons that you created in the plugin are displayed here."
|
2074 |
msgstr ""
|
2075 |
+
"Alle Schaltflächen für Mitgliedschaften, die Sie angelegt haben, finden Sie "
|
2076 |
+
"hier."
|
2077 |
|
2078 |
#: simple-membership/views/payments/admin_payment_settings.php:21
|
2079 |
msgid "Error! The membership level ID ("
|
2080 |
msgstr "Fehler! Die Mitgliederstufen-ID ("
|
2081 |
|
2082 |
+
#: simple-membership/views/payments/admin_payment_settings.php:28
|
2083 |
+
msgid ""
|
2084 |
+
"You can create membership payment buttons from the payments menu of this "
|
2085 |
+
"plugin (useful if you want to offer paid membership on the site)."
|
2086 |
+
msgstr ""
|
2087 |
+
"Sie können Schaltflächen für die Zahlungen für Mitgliedschaften über das "
|
2088 |
+
"Zahlungsmenü dieses Plugins erstellen (nützlich, wenn Sie eine "
|
2089 |
+
"kostenpflichtige Mitgliedschaft auf der Website anbieten möchten)."
|
2090 |
+
|
2091 |
+
#: simple-membership/views/payments/admin_payment_settings.php:33
|
2092 |
msgid "PayPal Integration Settings"
|
2093 |
msgstr "PayPal Integration Einstellungen"
|
2094 |
|
2095 |
+
#: simple-membership/views/payments/admin_payment_settings.php:36
|
2096 |
msgid "Generate the \"Advanced Variables\" Code for your PayPal button"
|
2097 |
msgstr "Generieren Sie den \"Advanced Variables\" Code für Ihren PayPal-Button"
|
2098 |
|
2099 |
+
#: simple-membership/views/payments/admin_payment_settings.php:39
|
2100 |
msgid "Enter the Membership Level ID"
|
2101 |
msgstr "Geben Sie die Mitgliederstufen-ID ein"
|
2102 |
|
2103 |
+
#: simple-membership/views/payments/admin_payment_settings.php:41
|
2104 |
msgid "Generate Code"
|
2105 |
msgstr "Code generieren"
|
2106 |
|
2109 |
msgstr "Braintree \"Jetzt kaufen\" Button Konfiguration"
|
2110 |
|
2111 |
#: simple-membership/views/payments/payment-gateway/admin_braintree_buy_now_button.php:34
|
2112 |
+
#: simple-membership/views/payments/payment-gateway/admin_paypal_buy_now_button.php:213
|
2113 |
+
#: simple-membership/views/payments/payment-gateway/admin_paypal_subscription_button.php:301
|
2114 |
+
#: simple-membership/views/payments/payment-gateway/admin_stripe_buy_now_button.php:259
|
2115 |
+
#: simple-membership/views/payments/payment-gateway/admin_stripe_subscription_button.php:83
|
2116 |
msgid "Button ID"
|
2117 |
msgstr "Button ID"
|
2118 |
|
2119 |
#: simple-membership/views/payments/payment-gateway/admin_braintree_buy_now_button.php:42
|
2120 |
#: simple-membership/views/payments/payment-gateway/admin_paypal_buy_now_button.php:26
|
2121 |
+
#: simple-membership/views/payments/payment-gateway/admin_paypal_buy_now_button.php:221
|
2122 |
#: simple-membership/views/payments/payment-gateway/admin_paypal_subscription_button.php:27
|
2123 |
+
#: simple-membership/views/payments/payment-gateway/admin_paypal_subscription_button.php:309
|
2124 |
#: simple-membership/views/payments/payment-gateway/admin_stripe_buy_now_button.php:39
|
2125 |
+
#: simple-membership/views/payments/payment-gateway/admin_stripe_buy_now_button.php:266
|
2126 |
+
#: simple-membership/views/payments/payment-gateway/admin_stripe_subscription_button.php:91
|
2127 |
msgid "Button Title"
|
2128 |
msgstr "Button Titel"
|
2129 |
|
2130 |
#: simple-membership/views/payments/payment-gateway/admin_braintree_buy_now_button.php:60
|
2131 |
#: simple-membership/views/payments/payment-gateway/admin_paypal_buy_now_button.php:44
|
2132 |
+
#: simple-membership/views/payments/payment-gateway/admin_paypal_buy_now_button.php:239
|
2133 |
#: simple-membership/views/payments/payment-gateway/admin_stripe_buy_now_button.php:57
|
2134 |
+
#: simple-membership/views/payments/payment-gateway/admin_stripe_buy_now_button.php:282
|
2135 |
msgid "Payment Amount"
|
2136 |
msgstr "Zahlungsbetrag"
|
2137 |
|
2161 |
|
2162 |
#: simple-membership/views/payments/payment-gateway/admin_braintree_buy_now_button.php:113
|
2163 |
#: simple-membership/views/payments/payment-gateway/admin_stripe_buy_now_button.php:137
|
2164 |
+
#: simple-membership/views/payments/payment-gateway/admin_stripe_buy_now_button.php:361
|
2165 |
msgid "The following details are optional."
|
2166 |
msgstr "Die folgenden Angaben sind optional."
|
2167 |
|
2168 |
#: simple-membership/views/payments/payment-gateway/admin_braintree_buy_now_button.php:117
|
2169 |
+
#: simple-membership/views/payments/payment-gateway/admin_paypal_buy_now_button.php:92
|
2170 |
+
#: simple-membership/views/payments/payment-gateway/admin_paypal_buy_now_button.php:287
|
2171 |
+
#: simple-membership/views/payments/payment-gateway/admin_paypal_subscription_button.php:172
|
2172 |
+
#: simple-membership/views/payments/payment-gateway/admin_paypal_subscription_button.php:456
|
2173 |
+
#: simple-membership/views/payments/payment-gateway/admin_stripe_buy_now_button.php:149
|
2174 |
+
#: simple-membership/views/payments/payment-gateway/admin_stripe_buy_now_button.php:373
|
2175 |
+
#: simple-membership/views/payments/payment-gateway/admin_stripe_subscription_button.php:191
|
2176 |
msgid "Return URL"
|
2177 |
msgstr "Zu URL zurückkehren"
|
2178 |
|
2179 |
#: simple-membership/views/payments/payment-gateway/admin_braintree_buy_now_button.php:127
|
2180 |
+
#: simple-membership/views/payments/payment-gateway/admin_paypal_buy_now_button.php:126
|
2181 |
+
#: simple-membership/views/payments/payment-gateway/admin_paypal_buy_now_button.php:321
|
2182 |
+
#: simple-membership/views/payments/payment-gateway/admin_paypal_subscription_button.php:200
|
2183 |
+
#: simple-membership/views/payments/payment-gateway/admin_paypal_subscription_button.php:484
|
2184 |
+
#: simple-membership/views/payments/payment-gateway/admin_stripe_buy_now_button.php:159
|
2185 |
+
#: simple-membership/views/payments/payment-gateway/admin_stripe_buy_now_button.php:383
|
2186 |
+
#: simple-membership/views/payments/payment-gateway/admin_stripe_subscription_button.php:212
|
2187 |
msgid "Save Payment Data"
|
2188 |
msgstr "Zahlungsdaten speichern"
|
2189 |
|
2190 |
#: simple-membership/views/payments/payment-gateway/admin_paypal_buy_now_button.php:16
|
2191 |
+
#: simple-membership/views/payments/payment-gateway/admin_paypal_buy_now_button.php:204
|
2192 |
msgid "PayPal Buy Now Button Configuration"
|
2193 |
msgstr "PayPal \"Jetzt kaufen\" Button Configuration"
|
2194 |
|
2195 |
#: simple-membership/views/payments/payment-gateway/admin_paypal_buy_now_button.php:52
|
2196 |
+
#: simple-membership/views/payments/payment-gateway/admin_paypal_buy_now_button.php:247
|
2197 |
#: simple-membership/views/payments/payment-gateway/admin_paypal_subscription_button.php:45
|
2198 |
+
#: simple-membership/views/payments/payment-gateway/admin_paypal_subscription_button.php:327
|
2199 |
#: simple-membership/views/payments/payment-gateway/admin_stripe_buy_now_button.php:65
|
2200 |
+
#: simple-membership/views/payments/payment-gateway/admin_stripe_buy_now_button.php:289
|
2201 |
msgid "Payment Currency"
|
2202 |
+
msgstr "Währung der Zahlung"
|
2203 |
|
2204 |
+
#: simple-membership/views/payments/payment-gateway/admin_paypal_buy_now_button.php:100
|
2205 |
+
#: simple-membership/views/payments/payment-gateway/admin_paypal_buy_now_button.php:295
|
2206 |
+
#: simple-membership/views/payments/payment-gateway/admin_paypal_subscription_button.php:85
|
2207 |
+
#: simple-membership/views/payments/payment-gateway/admin_paypal_subscription_button.php:367
|
2208 |
msgid "PayPal Email"
|
2209 |
msgstr "PayPal E-Mail Adresse"
|
2210 |
|
2211 |
+
#: simple-membership/views/payments/payment-gateway/admin_paypal_buy_now_button.php:108
|
2212 |
+
#: simple-membership/views/payments/payment-gateway/admin_paypal_buy_now_button.php:303
|
2213 |
+
#: simple-membership/views/payments/payment-gateway/admin_paypal_subscription_button.php:180
|
2214 |
+
#: simple-membership/views/payments/payment-gateway/admin_paypal_subscription_button.php:464
|
2215 |
+
#: simple-membership/views/payments/payment-gateway/admin_stripe_subscription_button.php:199
|
2216 |
msgid "Button Image URL"
|
2217 |
msgstr "Button Bild-URL"
|
2218 |
|
2219 |
+
#: simple-membership/views/payments/payment-gateway/admin_paypal_buy_now_button.php:116
|
2220 |
+
#: simple-membership/views/payments/payment-gateway/admin_paypal_buy_now_button.php:311
|
2221 |
+
#: simple-membership/views/payments/payment-gateway/admin_paypal_subscription_button.php:188
|
2222 |
+
#: simple-membership/views/payments/payment-gateway/admin_paypal_subscription_button.php:472
|
2223 |
+
msgid "Custom Checkout Page Logo Image"
|
2224 |
+
msgstr "Benutzerdefinierte Checkout Seiten Logo"
|
2225 |
+
|
2226 |
#: simple-membership/views/payments/payment-gateway/admin_paypal_subscription_button.php:18
|
2227 |
+
#: simple-membership/views/payments/payment-gateway/admin_paypal_subscription_button.php:295
|
2228 |
msgid "PayPal Subscription Button Configuration"
|
2229 |
msgstr "PayPal \"Abonnieren\" Button Konfiguration"
|
2230 |
|
2231 |
+
#: simple-membership/views/payments/payment-gateway/admin_paypal_subscription_button.php:93
|
2232 |
+
#: simple-membership/views/payments/payment-gateway/admin_paypal_subscription_button.php:375
|
2233 |
msgid "Billing Amount Each Cycle"
|
2234 |
msgstr "Abrechnungsbetrag des Zyklusses"
|
2235 |
|
2236 |
+
#: simple-membership/views/payments/payment-gateway/admin_paypal_subscription_button.php:101
|
2237 |
+
#: simple-membership/views/payments/payment-gateway/admin_paypal_subscription_button.php:383
|
2238 |
msgid "Billing Cycle"
|
2239 |
msgstr "Abrechnungszyklus"
|
2240 |
|
2241 |
+
#: simple-membership/views/payments/payment-gateway/admin_paypal_subscription_button.php:114
|
2242 |
+
#: simple-membership/views/payments/payment-gateway/admin_paypal_subscription_button.php:396
|
2243 |
msgid "Billing Cycle Count"
|
2244 |
msgstr "Abrechnungszyklen"
|
2245 |
|
2246 |
+
#: simple-membership/views/payments/payment-gateway/admin_paypal_subscription_button.php:122
|
2247 |
+
#: simple-membership/views/payments/payment-gateway/admin_paypal_subscription_button.php:404
|
2248 |
msgid "Re-attempt on Failure"
|
2249 |
+
msgstr "Wiederholungsversuch bei aufgetretenem Fehler"
|
2250 |
|
2251 |
+
#: simple-membership/views/payments/payment-gateway/admin_paypal_subscription_button.php:135
|
2252 |
+
#: simple-membership/views/payments/payment-gateway/admin_paypal_subscription_button.php:419
|
2253 |
msgid ""
|
2254 |
"Trial Billing Details (Leave empty if you are not offering a trial period)"
|
2255 |
msgstr ""
|
2256 |
"Abrechnungsdetails für Probezeitraum (Leer lassen, wenn Sie keine Probezeit "
|
2257 |
"anbieten)"
|
2258 |
|
2259 |
+
#: simple-membership/views/payments/payment-gateway/admin_paypal_subscription_button.php:141
|
2260 |
+
#: simple-membership/views/payments/payment-gateway/admin_paypal_subscription_button.php:425
|
2261 |
msgid "Trial Billing Amount"
|
2262 |
msgstr "Rechnungsbetrag für Probezeitraum"
|
2263 |
|
2264 |
+
#: simple-membership/views/payments/payment-gateway/admin_paypal_subscription_button.php:149
|
2265 |
+
#: simple-membership/views/payments/payment-gateway/admin_paypal_subscription_button.php:433
|
2266 |
msgid "Trial Billing Period"
|
2267 |
msgstr "Abrechnungszeitraum für Probezeitraum"
|
2268 |
|
2269 |
+
#: simple-membership/views/payments/payment-gateway/admin_paypal_subscription_button.php:166
|
2270 |
+
#: simple-membership/views/payments/payment-gateway/admin_paypal_subscription_button.php:450
|
2271 |
+
#: simple-membership/views/payments/payment-gateway/admin_stripe_subscription_button.php:177
|
2272 |
msgid "Optional Details"
|
2273 |
msgstr "Optionale Details"
|
2274 |
|
2275 |
#: simple-membership/views/payments/payment-gateway/admin_stripe_buy_now_button.php:29
|
2276 |
+
#: simple-membership/views/payments/payment-gateway/admin_stripe_buy_now_button.php:250
|
2277 |
msgid "Stripe Buy Now Button Configuration"
|
2278 |
msgstr "Stripe \"Jetzt kaufen\" Button Konfiguration"
|
2279 |
|
2280 |
#: simple-membership/views/payments/payment-gateway/admin_stripe_buy_now_button.php:104
|
2281 |
+
#: simple-membership/views/payments/payment-gateway/admin_stripe_buy_now_button.php:328
|
2282 |
msgid "Stripe API keys. You can get this from your Stripe account."
|
2283 |
+
msgstr ""
|
2284 |
+
"Stripe API-Schlüssel. Sie können diese von Ihrem Stripe-Konto erhalten."
|
2285 |
|
2286 |
#: simple-membership/views/payments/payment-gateway/admin_stripe_buy_now_button.php:108
|
2287 |
+
#: simple-membership/views/payments/payment-gateway/admin_stripe_buy_now_button.php:332
|
2288 |
+
#: simple-membership/views/payments/payment-gateway/admin_stripe_subscription_button.php:139
|
2289 |
msgid "Test Secret Key"
|
2290 |
msgstr "Testen Sie den geheimen Schlüssel"
|
2291 |
|
2292 |
#: simple-membership/views/payments/payment-gateway/admin_stripe_buy_now_button.php:115
|
2293 |
+
#: simple-membership/views/payments/payment-gateway/admin_stripe_buy_now_button.php:339
|
2294 |
+
#: simple-membership/views/payments/payment-gateway/admin_stripe_subscription_button.php:131
|
2295 |
msgid "Test Publishable Key"
|
2296 |
+
msgstr "Testen Sie den Veröffentlichungs-Schlüssel"
|
2297 |
|
2298 |
#: simple-membership/views/payments/payment-gateway/admin_stripe_buy_now_button.php:122
|
2299 |
+
#: simple-membership/views/payments/payment-gateway/admin_stripe_buy_now_button.php:346
|
2300 |
+
#: simple-membership/views/payments/payment-gateway/admin_stripe_subscription_button.php:155
|
2301 |
msgid "Live Secret Key"
|
2302 |
msgstr "Geheimer Schlüssel"
|
2303 |
|
2304 |
#: simple-membership/views/payments/payment-gateway/admin_stripe_buy_now_button.php:129
|
2305 |
+
#: simple-membership/views/payments/payment-gateway/admin_stripe_buy_now_button.php:353
|
2306 |
+
#: simple-membership/views/payments/payment-gateway/admin_stripe_subscription_button.php:147
|
2307 |
msgid "Live Publishable Key"
|
2308 |
msgstr "Veröffentlichungs Schlüssel"
|
2309 |
|
2310 |
+
#: simple-membership/views/payments/payment-gateway/admin_stripe_buy_now_button.php:141
|
2311 |
+
#: simple-membership/views/payments/payment-gateway/admin_stripe_buy_now_button.php:365
|
2312 |
+
#: simple-membership/views/payments/payment-gateway/admin_stripe_subscription_button.php:183
|
2313 |
+
msgid "Collect Customer Address"
|
2314 |
+
msgstr "Adress-Daten des Kunden anfordern"
|
2315 |
+
|
2316 |
+
#: simple-membership/views/payments/payment-gateway/admin_stripe_subscription_button.php:75
|
2317 |
+
msgid "Stripe Subscription Button Configuration"
|
2318 |
+
msgstr "Konfiguration des Stripe Anmeldungs-Button"
|
2319 |
+
|
2320 |
+
#: simple-membership/views/payments/payment-gateway/admin_stripe_subscription_button.php:109
|
2321 |
+
msgid "Stripe Plan ID"
|
2322 |
+
msgstr "Stripe Plan ID"
|
2323 |
+
|
2324 |
+
#: simple-membership/views/payments/payment-gateway/admin_stripe_subscription_button.php:125
|
2325 |
+
msgid "Stripe API Settings"
|
2326 |
+
msgstr "Stripe API Einstellungen"
|
2327 |
+
|
2328 |
+
#: simple-membership/views/payments/payment-gateway/admin_stripe_subscription_button.php:163
|
2329 |
+
msgid "Webook Endpoint URL"
|
2330 |
+
msgstr "Webook Endpoint URL"
|
2331 |
+
|
2332 |
#: simple-membership/views/payments/payment-gateway/braintree_button_shortcode_view.php:20
|
2333 |
+
#: simple-membership/views/payments/payment-gateway/paypal_button_shortcode_view.php:91
|
2334 |
+
#: simple-membership/views/payments/payment-gateway/paypal_button_shortcode_view.php:93
|
2335 |
#: simple-membership/views/payments/payment-gateway/stripe_button_shortcode_view.php:20
|
2336 |
+
#: simple-membership/views/payments/payment-gateway/stripe_button_shortcode_view.php:149
|
2337 |
msgid "Buy Now"
|
2338 |
+
msgstr "Jetzt kaufen"
|
2339 |
|
2340 |
+
#: simple-membership/views/payments/payment-gateway/paypal_button_shortcode_view.php:226
|
2341 |
+
#: simple-membership/views/payments/payment-gateway/paypal_button_shortcode_view.php:228
|
2342 |
msgid "Subscribe Now"
|
2343 |
+
msgstr "Jetzt abonnieren"
|
2344 |
|
2345 |
+
#~ msgid "Edit Membership Level "
|
2346 |
+
#~ msgstr "Mitgliedschaft bearbeiten "
|
|
|
2347 |
|
2348 |
+
#~ msgid "Edit User "
|
2349 |
+
#~ msgstr "Benutzer bearbeiten "
|
2350 |
|
2351 |
+
#~ msgid "Type password Here"
|
2352 |
+
#~ msgstr "Passwort hier eingeben"
|
2353 |
|
2354 |
+
#~ msgid "Retype password Here"
|
2355 |
+
#~ msgstr "Passwort hier wiederholen"
|
2356 |
|
2357 |
+
#~ msgid "Registration is complete. You can now log into the site."
|
2358 |
+
#~ msgstr ""
|
2359 |
+
#~ "Die Registrierung ist abgeschlossen. Sie können sich jetzt anmelden."
|
2360 |
|
2361 |
+
#~ msgid " Field has invalid character"
|
2362 |
+
#~ msgstr " Ungültige Zeichen im Feld"
|
2363 |
|
2364 |
+
#~ msgid " Password does not match"
|
2365 |
+
#~ msgstr " Das Passwort stimmt nicht überein"
|
2366 |
|
2367 |
+
#~ msgid "Already taken."
|
2368 |
+
#~ msgstr "Wird schon verwendet."
|
2369 |
|
2370 |
+
#~ msgid "Street Address"
|
2371 |
+
#~ msgstr "Straße"
|
2372 |
|
2373 |
+
#~ msgid "Apt, Suite, Bldg. (optional)"
|
2374 |
+
#~ msgstr "Gebäude, Etage (optional)"
|
2375 |
|
2376 |
+
#~ msgid "State / Province / Region"
|
2377 |
+
#~ msgstr "Bundesland"
|
|
|
|
|
|
|
|
|
2378 |
|
2379 |
+
#~ msgid "Postal / Zip Code"
|
2380 |
+
#~ msgstr "Postleitzahl"
|
|
|
2381 |
|
2382 |
+
#~ msgid ""
|
2383 |
+
#~ "Check this box to delete the image. The image will be deleted when you "
|
2384 |
+
#~ "save the profile."
|
2385 |
+
#~ msgstr ""
|
2386 |
+
#~ "Aktivieren Sie dieses Kontrollkästchen, um das Bild zu löschen. Das Bild "
|
2387 |
+
#~ "wird erst gelöscht, wenn Sie das Profil speichern."
|
2388 |
+
|
2389 |
+
#~ msgid "You do not have permission to view this content."
|
2390 |
+
#~ msgstr "Sie sind nicht berechtigt, diesen Inhalt anzusehen."
|
2391 |
+
|
2392 |
+
#~ msgid "Your membership level does not have permission to view this content."
|
2393 |
+
#~ msgstr ""
|
2394 |
+
#~ "Ihre Mitgliedschaftsstufe hat keine Berechtigung, diesen Inhalt anzusehen."
|
2395 |
|
2396 |
+
#~ msgid "This content is for members only."
|
2397 |
+
#~ msgstr "Dieser Inhalt ist nur für Mitglieder."
|
languages/simple-membership.pot
CHANGED
@@ -1,8 +1,8 @@
|
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Simple Membership\n"
|
4 |
-
"POT-Creation-Date:
|
5 |
-
"PO-Revision-Date:
|
6 |
"Last-Translator: \n"
|
7 |
"Language-Team: \n"
|
8 |
"MIME-Version: 1.0\n"
|
@@ -13,614 +13,647 @@ msgstr ""
|
|
13 |
"X-Poedit-Basepath: .\n"
|
14 |
"X-Poedit-SearchPath-0: .\n"
|
15 |
|
16 |
-
#:
|
17 |
msgid "The admin of this site does not allow users to access the wp dashboard."
|
18 |
msgstr ""
|
19 |
|
20 |
-
#:
|
21 |
msgid "Go back to the home page by "
|
22 |
msgstr ""
|
23 |
|
24 |
-
#:
|
25 |
msgid "clicking here"
|
26 |
msgstr ""
|
27 |
|
28 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
29 |
msgid "You are not logged in."
|
30 |
msgstr ""
|
31 |
|
32 |
-
#:
|
33 |
msgid ""
|
34 |
"You have the sandbox payment mode enabled in plugin settings. Make sure to "
|
35 |
"turn off the sandbox mode when you want to do live transactions."
|
36 |
msgstr ""
|
37 |
|
38 |
-
#:
|
39 |
msgid "Simple WP Membership Protection"
|
40 |
msgstr ""
|
41 |
|
42 |
-
#:
|
43 |
msgid "Simple Membership Protection options"
|
44 |
msgstr ""
|
45 |
|
46 |
-
#:
|
47 |
msgid "Do you want to protect this content?"
|
48 |
msgstr ""
|
49 |
|
50 |
-
#:
|
51 |
msgid "Select the membership level that can access this content:"
|
52 |
msgstr ""
|
53 |
|
54 |
-
#:
|
55 |
-
#:
|
56 |
msgid "Validating, please wait"
|
57 |
msgstr ""
|
58 |
|
59 |
-
#:
|
60 |
msgid "Invalid email address"
|
61 |
msgstr ""
|
62 |
|
63 |
-
#:
|
64 |
msgid "This field is required"
|
65 |
msgstr ""
|
66 |
|
67 |
-
#:
|
68 |
-
#: simple-membership/classes/class.swpm-auth.php:260
|
69 |
msgid "Invalid Username"
|
70 |
msgstr ""
|
71 |
|
72 |
-
#:
|
73 |
msgid "Minimum "
|
74 |
msgstr ""
|
75 |
|
76 |
-
#:
|
77 |
msgid " characters required"
|
78 |
msgstr ""
|
79 |
|
80 |
-
#:
|
81 |
msgid "Apostrophe character is not allowed"
|
82 |
msgstr ""
|
83 |
|
84 |
-
#:
|
85 |
msgid "WP Membership"
|
86 |
msgstr ""
|
87 |
|
88 |
-
#:
|
89 |
-
#:
|
90 |
-
#: simple-membership/classes/class.swpm-members.php:579
|
91 |
msgid "Members"
|
92 |
msgstr ""
|
93 |
|
94 |
-
#:
|
95 |
-
#:
|
96 |
-
#:
|
97 |
-
#:
|
|
|
98 |
msgid "Membership Levels"
|
99 |
msgstr ""
|
100 |
|
101 |
-
#:
|
102 |
msgid "Settings"
|
103 |
msgstr ""
|
104 |
|
105 |
-
#:
|
106 |
msgid "Payments"
|
107 |
msgstr ""
|
108 |
|
109 |
-
#:
|
110 |
msgid "Add-ons"
|
111 |
msgstr ""
|
112 |
|
113 |
-
#:
|
114 |
-
#:
|
115 |
msgid "You need to login to view this content. "
|
116 |
msgstr ""
|
117 |
|
118 |
-
#:
|
119 |
-
#:
|
120 |
-
#:
|
121 |
msgid "Your account has expired. "
|
122 |
msgstr ""
|
123 |
|
124 |
-
#:
|
125 |
-
#:
|
126 |
msgid "This content can only be viewed by members who joined on or before "
|
127 |
msgstr ""
|
128 |
|
129 |
-
#:
|
130 |
-
#:
|
131 |
msgid "This content is not permitted for your membership level."
|
132 |
msgstr ""
|
133 |
|
134 |
-
#:
|
135 |
msgid "You need to login to view the rest of the content. "
|
136 |
msgstr ""
|
137 |
|
138 |
-
#:
|
139 |
msgid " The rest of the content is not permitted for your membership level."
|
140 |
msgstr ""
|
141 |
|
142 |
-
#:
|
143 |
msgid "Error! Nonce verification failed for user registration from admin end."
|
144 |
msgstr ""
|
145 |
|
146 |
-
#:
|
147 |
msgid "Member record added successfully."
|
148 |
msgstr ""
|
149 |
|
150 |
-
#:
|
151 |
-
#:
|
152 |
-
#:
|
153 |
-
#:
|
154 |
-
#:
|
155 |
msgid "Please correct the following:"
|
156 |
msgstr ""
|
157 |
|
158 |
-
#:
|
159 |
msgid "Error! Nonce verification failed for user edit from admin end."
|
160 |
msgstr ""
|
161 |
|
162 |
-
#:
|
163 |
msgid "Your current password"
|
164 |
msgstr ""
|
165 |
|
166 |
-
#:
|
167 |
msgid "Invalid Email Address"
|
168 |
msgstr ""
|
169 |
|
170 |
-
#:
|
171 |
-
#: simple-membership/classes/class.swpm-ajax.php:36
|
172 |
msgid "Aready taken"
|
173 |
msgstr ""
|
174 |
|
175 |
-
#:
|
176 |
msgid "Name contains invalid character"
|
177 |
msgstr ""
|
178 |
|
179 |
-
#:
|
180 |
msgid "Available"
|
181 |
msgstr ""
|
182 |
|
183 |
-
#:
|
184 |
msgid ""
|
185 |
"Warning! Simple Membership plugin cannot process this login request to "
|
186 |
"prevent you from getting logged out of WP Admin accidentally."
|
187 |
msgstr ""
|
188 |
|
189 |
-
#:
|
190 |
msgid ""
|
191 |
"You are logged into the site as an ADMIN user in this browser. First, logout "
|
192 |
"from WP Admin then you will be able to log in as a member."
|
193 |
msgstr ""
|
194 |
|
195 |
-
#:
|
196 |
msgid ""
|
197 |
"Alternatively, you can use a different browser (where you are not logged-in "
|
198 |
"as ADMIN) to test the membership login."
|
199 |
msgstr ""
|
200 |
|
201 |
-
#:
|
202 |
msgid ""
|
203 |
"Your normal visitors or members will never see this message. This message is "
|
204 |
"ONLY for ADMIN user."
|
205 |
msgstr ""
|
206 |
|
207 |
-
#:
|
208 |
msgid "Captcha validation failed on login form."
|
209 |
msgstr ""
|
210 |
|
211 |
-
#:
|
212 |
msgid "User Not Found."
|
213 |
msgstr ""
|
214 |
|
215 |
-
#:
|
216 |
msgid "Password Empty or Invalid."
|
217 |
msgstr ""
|
218 |
|
219 |
-
#:
|
220 |
msgid "Account is inactive."
|
221 |
msgstr ""
|
222 |
|
223 |
-
#:
|
224 |
-
#: simple-membership/classes/class.swpm-auth.php:146
|
225 |
msgid "Account has expired."
|
226 |
msgstr ""
|
227 |
|
228 |
-
#:
|
229 |
msgid "Account is pending."
|
230 |
msgstr ""
|
231 |
|
232 |
-
#:
|
233 |
msgid "You are logged in as:"
|
234 |
msgstr ""
|
235 |
|
236 |
-
#:
|
237 |
msgid "Logged Out Successfully."
|
238 |
msgstr ""
|
239 |
|
240 |
-
#:
|
241 |
msgid "Session Expired."
|
242 |
msgstr ""
|
243 |
|
244 |
-
#:
|
245 |
msgid "Please login again."
|
246 |
msgstr ""
|
247 |
|
248 |
-
#:
|
249 |
-
#:
|
250 |
-
#:
|
251 |
-
#:
|
252 |
-
#:
|
253 |
-
#:
|
254 |
-
#:
|
255 |
-
#:
|
256 |
-
#:
|
257 |
-
#:
|
258 |
-
#:
|
259 |
-
#:
|
260 |
-
#:
|
261 |
-
#:
|
262 |
-
#:
|
263 |
msgid "Membership Level"
|
264 |
msgstr ""
|
265 |
|
266 |
-
#:
|
267 |
msgid "Category ID"
|
268 |
msgstr ""
|
269 |
|
270 |
-
#:
|
271 |
msgid "Category Name"
|
272 |
msgstr ""
|
273 |
|
274 |
-
#:
|
275 |
msgid "Category Type (Taxonomy)"
|
276 |
msgstr ""
|
277 |
|
278 |
-
#:
|
279 |
msgid "Description"
|
280 |
msgstr ""
|
281 |
|
282 |
-
#:
|
283 |
msgid "Count"
|
284 |
msgstr ""
|
285 |
|
286 |
-
#:
|
287 |
msgid "Category protection updated!"
|
288 |
msgstr ""
|
289 |
|
290 |
-
#:
|
291 |
msgid "No category found."
|
292 |
msgstr ""
|
293 |
|
294 |
-
#:
|
295 |
msgid "Please login to comment."
|
296 |
msgstr ""
|
297 |
|
298 |
-
#:
|
299 |
msgid "Please Login to Comment."
|
300 |
msgstr ""
|
301 |
|
302 |
-
#:
|
303 |
msgid "Comments not allowed by a non-member."
|
304 |
msgstr ""
|
305 |
|
306 |
-
#:
|
307 |
msgid ""
|
308 |
"Wordpress account exists with given username. But given email doesn't match."
|
309 |
msgstr ""
|
310 |
|
311 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
312 |
msgid ""
|
313 |
"Wordpress account exists with given email. But given username doesn't match."
|
314 |
msgstr ""
|
315 |
|
316 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
317 |
msgid "Username is required"
|
318 |
msgstr ""
|
319 |
|
320 |
-
#:
|
321 |
msgid "Username contains invalid character"
|
322 |
msgstr ""
|
323 |
|
324 |
-
#:
|
325 |
msgid "Username already exists."
|
326 |
msgstr ""
|
327 |
|
328 |
-
#:
|
329 |
msgid "Password is required"
|
330 |
msgstr ""
|
331 |
|
332 |
-
#:
|
333 |
msgid "Password mismatch"
|
334 |
msgstr ""
|
335 |
|
336 |
-
#:
|
337 |
msgid "Email is required"
|
338 |
msgstr ""
|
339 |
|
340 |
-
#:
|
341 |
msgid "Email is invalid"
|
342 |
msgstr ""
|
343 |
|
344 |
-
#:
|
345 |
msgid "Email is already used."
|
346 |
msgstr ""
|
347 |
|
348 |
-
#:
|
349 |
msgid "Member since field is invalid"
|
350 |
msgstr ""
|
351 |
|
352 |
-
#:
|
353 |
msgid "Access starts field is invalid"
|
354 |
msgstr ""
|
355 |
|
356 |
-
#:
|
357 |
msgid "Gender field is invalid"
|
358 |
msgstr ""
|
359 |
|
360 |
-
#:
|
361 |
msgid "Account state field is invalid"
|
362 |
msgstr ""
|
363 |
|
364 |
-
#:
|
365 |
msgid "Invalid membership level"
|
366 |
msgstr ""
|
367 |
|
368 |
-
#:
|
369 |
msgid ""
|
370 |
"Error! Invalid Request. Could not find a match for the given security code "
|
371 |
"and the user ID."
|
372 |
msgstr ""
|
373 |
|
374 |
-
#:
|
375 |
-
#:
|
376 |
-
#: simple-membership/views/login.php:36
|
377 |
msgid "Join Us"
|
378 |
msgstr ""
|
379 |
|
380 |
-
#:
|
381 |
msgid ""
|
382 |
"Free membership is disabled on this site. Please make a payment from the "
|
383 |
msgstr ""
|
384 |
|
385 |
-
#:
|
|
|
|
|
|
|
|
|
386 |
msgid ""
|
387 |
"You will receive a unique link via email after the payment. You will be able "
|
388 |
"to use that link to complete the premium membership registration."
|
389 |
msgstr ""
|
390 |
|
391 |
-
#:
|
392 |
msgid "Security check: captcha validation failed."
|
393 |
msgstr ""
|
394 |
|
395 |
-
#:
|
396 |
msgid "Registration Successful. "
|
397 |
msgstr ""
|
398 |
|
399 |
-
#:
|
400 |
-
#:
|
401 |
-
#: simple-membership/classes/class.swpm-utils-misc.php:247
|
402 |
msgid "Please"
|
403 |
msgstr ""
|
404 |
|
405 |
-
#:
|
406 |
-
#:
|
407 |
-
#: simple-membership/views/login.php:30
|
408 |
msgid "Login"
|
409 |
msgstr ""
|
410 |
|
411 |
-
#:
|
412 |
msgid "Please correct the following"
|
413 |
msgstr ""
|
414 |
|
415 |
-
#:
|
416 |
msgid "Membership Level Couldn't be found."
|
417 |
msgstr ""
|
418 |
|
419 |
-
#:
|
420 |
msgid "Error! Nonce verification failed for front end profile edit."
|
421 |
msgstr ""
|
422 |
|
423 |
-
#:
|
424 |
msgid "Profile updated successfully."
|
425 |
msgstr ""
|
426 |
|
427 |
-
#:
|
428 |
msgid ""
|
429 |
"Profile updated successfully. You will need to re-login since you changed "
|
430 |
"your password."
|
431 |
msgstr ""
|
432 |
|
433 |
-
#:
|
434 |
msgid "Please correct the following."
|
435 |
msgstr ""
|
436 |
|
437 |
-
#:
|
438 |
msgid "Captcha validation failed."
|
439 |
msgstr ""
|
440 |
|
441 |
-
#:
|
442 |
msgid "Email address not valid."
|
443 |
msgstr ""
|
444 |
|
445 |
-
#:
|
446 |
msgid "No user found with that email address."
|
447 |
msgstr ""
|
448 |
|
449 |
-
#:
|
450 |
-
#:
|
451 |
msgid "Email Address: "
|
452 |
msgstr ""
|
453 |
|
454 |
-
#:
|
455 |
msgid "New password has been sent to your email address."
|
456 |
msgstr ""
|
457 |
|
458 |
-
#:
|
459 |
msgid "Sorry, Nonce verification failed."
|
460 |
msgstr ""
|
461 |
|
462 |
-
#:
|
463 |
msgid "Sorry, Password didn't match."
|
464 |
msgstr ""
|
465 |
|
466 |
-
#:
|
467 |
msgid "Date format is not valid."
|
468 |
msgstr ""
|
469 |
|
470 |
-
#:
|
471 |
msgid "Access duration must be > 0."
|
472 |
msgstr ""
|
473 |
|
474 |
-
#:
|
475 |
msgid "Member"
|
476 |
msgstr ""
|
477 |
|
478 |
-
#:
|
479 |
-
#:
|
480 |
msgid "ID"
|
481 |
msgstr ""
|
482 |
|
483 |
-
#:
|
484 |
-
#:
|
485 |
-
#: simple-membership/views/admin_edit.php:14
|
486 |
-
#: simple-membership/views/edit.php:13
|
487 |
msgid "Username"
|
488 |
msgstr ""
|
489 |
|
490 |
-
#:
|
491 |
-
#:
|
492 |
-
#:
|
493 |
-
#:
|
494 |
-
#: simple-membership/views/edit.php:29
|
495 |
msgid "First Name"
|
496 |
msgstr ""
|
497 |
|
498 |
-
#:
|
499 |
-
#:
|
500 |
-
#:
|
501 |
-
#:
|
502 |
-
#: simple-membership/views/edit.php:33
|
503 |
msgid "Last Name"
|
504 |
msgstr ""
|
505 |
|
506 |
-
#:
|
507 |
-
#: simple-membership/views/add.php:11 simple-membership/views/edit.php:17
|
508 |
msgid "Email"
|
509 |
msgstr ""
|
510 |
|
511 |
-
#:
|
512 |
-
#:
|
513 |
msgid "Access Starts"
|
514 |
msgstr ""
|
515 |
|
516 |
-
#:
|
517 |
msgid "Account State"
|
518 |
msgstr ""
|
519 |
|
520 |
-
#:
|
521 |
-
#:
|
522 |
-
#:
|
523 |
-
#:
|
524 |
msgid "Delete"
|
525 |
msgstr ""
|
526 |
|
527 |
-
#:
|
528 |
msgid "Set Status to Active"
|
529 |
msgstr ""
|
530 |
|
531 |
-
#:
|
532 |
msgid "Set Status to Active and Notify"
|
533 |
msgstr ""
|
534 |
|
535 |
-
#:
|
536 |
msgid "Set Status to Inactive"
|
537 |
msgstr ""
|
538 |
|
539 |
-
#:
|
540 |
msgid "Set Status to Pending"
|
541 |
msgstr ""
|
542 |
|
543 |
-
#:
|
544 |
msgid "Set Status to Expired"
|
545 |
msgstr ""
|
546 |
|
547 |
-
#:
|
548 |
msgid "incomplete"
|
549 |
msgstr ""
|
550 |
|
551 |
-
#:
|
552 |
msgid "No member found."
|
553 |
msgstr ""
|
554 |
|
555 |
-
#:
|
556 |
msgid "Error! Nonce verification failed for user delete from admin end."
|
557 |
msgstr ""
|
558 |
|
559 |
-
#:
|
560 |
-
#: simple-membership/classes/class.swpm-members.php:434
|
561 |
msgid "Error! Please select a membership level first."
|
562 |
msgstr ""
|
563 |
|
564 |
-
#:
|
565 |
msgid "Membership level change operation completed successfully."
|
566 |
msgstr ""
|
567 |
|
568 |
-
#:
|
569 |
msgid "Access starts date change operation successfully completed."
|
570 |
msgstr ""
|
571 |
|
572 |
-
#:
|
573 |
msgid "Bulk Update Membership Level of Members"
|
574 |
msgstr ""
|
575 |
|
576 |
-
#:
|
577 |
msgid ""
|
578 |
"You can manually change the membership level of any member by editing the "
|
579 |
"record from the members menu. "
|
580 |
msgstr ""
|
581 |
|
582 |
-
#:
|
583 |
msgid ""
|
584 |
"You can use the following option to bulk update the membership level of "
|
585 |
"users who belong to the level you select below."
|
586 |
msgstr ""
|
587 |
|
588 |
-
#:
|
589 |
-
#: simple-membership/classes/class.swpm-members.php:518
|
590 |
msgid "Membership Level: "
|
591 |
msgstr ""
|
592 |
|
593 |
-
#:
|
594 |
msgid "Select Current Level"
|
595 |
msgstr ""
|
596 |
|
597 |
-
#:
|
598 |
msgid ""
|
599 |
"Select the current membership level (the membership level of all members who "
|
600 |
"are in this level will be updated)."
|
601 |
msgstr ""
|
602 |
|
603 |
-
#:
|
604 |
msgid "Level to Change to: "
|
605 |
msgstr ""
|
606 |
|
607 |
-
#:
|
608 |
msgid "Select Target Level"
|
609 |
msgstr ""
|
610 |
|
611 |
-
#:
|
612 |
msgid "Select the new membership level."
|
613 |
msgstr ""
|
614 |
|
615 |
-
#:
|
616 |
msgid "Bulk Change Membership Level"
|
617 |
msgstr ""
|
618 |
|
619 |
-
#:
|
620 |
msgid "Bulk Update Access Starts Date of Members"
|
621 |
msgstr ""
|
622 |
|
623 |
-
#:
|
624 |
msgid ""
|
625 |
"The access starts date of a member is set to the day the user registers. "
|
626 |
"This date value is used to calculate how long the member can access your "
|
@@ -628,1264 +661,1422 @@ msgid ""
|
|
628 |
"level. "
|
629 |
msgstr ""
|
630 |
|
631 |
-
#:
|
632 |
msgid ""
|
633 |
"You can manually set a specific access starts date value of all members who "
|
634 |
"belong to a particular level using the following option."
|
635 |
msgstr ""
|
636 |
|
637 |
-
#:
|
638 |
msgid "Select Level"
|
639 |
msgstr ""
|
640 |
|
641 |
-
#:
|
642 |
msgid ""
|
643 |
"Select the Membership level (the access start date of all members who are in "
|
644 |
"this level will be updated)."
|
645 |
msgstr ""
|
646 |
|
647 |
-
#:
|
648 |
msgid "Specify the access starts date value."
|
649 |
msgstr ""
|
650 |
|
651 |
-
#:
|
652 |
msgid "Bulk Change Access Starts Date"
|
653 |
msgstr ""
|
654 |
|
655 |
-
#:
|
656 |
msgid "Simple WP Membership::Members"
|
657 |
msgstr ""
|
658 |
|
659 |
-
#:
|
660 |
-
#:
|
661 |
-
#:
|
662 |
msgid "Add New"
|
663 |
msgstr ""
|
664 |
|
665 |
-
#:
|
666 |
-
#: simple-membership/views/admin_add.php:6
|
667 |
msgid "Add Member"
|
668 |
msgstr ""
|
669 |
|
670 |
-
#:
|
671 |
msgid "Bulk Operation"
|
672 |
msgstr ""
|
673 |
|
674 |
-
#:
|
675 |
msgid ""
|
676 |
"Error! Nonce verification failed for membership level creation from admin "
|
677 |
"end."
|
678 |
msgstr ""
|
679 |
|
680 |
-
#:
|
681 |
msgid "Membership Level Creation Successful."
|
682 |
msgstr ""
|
683 |
|
684 |
-
#:
|
685 |
msgid ""
|
686 |
"Error! Nonce verification failed for membership level edit from admin end."
|
687 |
msgstr ""
|
688 |
|
689 |
-
#:
|
690 |
msgid "Membership Level Updated Successfully."
|
691 |
msgstr ""
|
692 |
|
693 |
-
#:
|
694 |
msgid "Role"
|
695 |
msgstr ""
|
696 |
|
697 |
-
#:
|
698 |
msgid "Access Valid For/Until"
|
699 |
msgstr ""
|
700 |
|
701 |
-
#:
|
702 |
msgid "No membership levels found."
|
703 |
msgstr ""
|
704 |
|
705 |
-
#:
|
706 |
msgid ""
|
707 |
"Error! Nonce verification failed for membership level delete from admin end."
|
708 |
msgstr ""
|
709 |
|
710 |
-
#:
|
711 |
-
#:
|
712 |
-
#:
|
713 |
msgid "Search"
|
714 |
msgstr ""
|
715 |
|
716 |
-
#:
|
717 |
msgid "Simple WP Membership::Membership Levels"
|
718 |
msgstr ""
|
719 |
|
720 |
-
#:
|
721 |
msgid "Add Level"
|
722 |
msgstr ""
|
723 |
|
724 |
-
#:
|
725 |
msgid "Manage Content Protection"
|
726 |
msgstr ""
|
727 |
|
728 |
-
#:
|
729 |
msgid "Category Protection"
|
730 |
msgstr ""
|
731 |
|
732 |
-
#:
|
733 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
734 |
msgid "General Settings"
|
735 |
msgstr ""
|
736 |
|
737 |
-
#:
|
738 |
msgid "Payment Settings"
|
739 |
msgstr ""
|
740 |
|
741 |
-
#:
|
742 |
msgid "Email Settings"
|
743 |
msgstr ""
|
744 |
|
745 |
-
#:
|
746 |
msgid "Tools"
|
747 |
msgstr ""
|
748 |
|
749 |
-
#:
|
750 |
-
#: simple-membership/classes/class.swpm-settings.php:189
|
751 |
msgid "Advanced Settings"
|
752 |
msgstr ""
|
753 |
|
754 |
-
#:
|
755 |
msgid "Addons Settings"
|
756 |
msgstr ""
|
757 |
|
758 |
-
#:
|
759 |
msgid "Plugin Documentation"
|
760 |
msgstr ""
|
761 |
|
762 |
-
#:
|
763 |
msgid "Enable Free Membership"
|
764 |
msgstr ""
|
765 |
|
766 |
-
#:
|
767 |
msgid ""
|
768 |
"Enable/disable registration for free membership level. When you enable this "
|
769 |
"option, make sure to specify a free membership level ID in the field below."
|
770 |
msgstr ""
|
771 |
|
772 |
-
#:
|
773 |
msgid "Free Membership Level ID"
|
774 |
msgstr ""
|
775 |
|
776 |
-
#:
|
777 |
msgid "Assign free membership level ID"
|
778 |
msgstr ""
|
779 |
|
780 |
-
#:
|
781 |
msgid "Enable More Tag Protection"
|
782 |
msgstr ""
|
783 |
|
784 |
-
#:
|
785 |
msgid ""
|
786 |
"Enables or disables \"more\" tag protection in the posts and pages. Anything "
|
787 |
"after the More tag is protected. Anything before the more tag is teaser "
|
788 |
"content."
|
789 |
msgstr ""
|
790 |
|
791 |
-
#:
|
792 |
msgid "Hide Adminbar"
|
793 |
msgstr ""
|
794 |
|
795 |
-
#:
|
796 |
msgid ""
|
797 |
"WordPress shows an admin toolbar to the logged in users of the site. Check "
|
798 |
"this if you want to hide that admin toolbar in the frontend of your site."
|
799 |
msgstr ""
|
800 |
|
801 |
-
#:
|
802 |
msgid "Show Adminbar to Admin"
|
803 |
msgstr ""
|
804 |
|
805 |
-
#:
|
806 |
msgid ""
|
807 |
"Use this option if you want to show the admin toolbar to admin users only. "
|
808 |
"The admin toolbar will be hidden for all other users."
|
809 |
msgstr ""
|
810 |
|
811 |
-
#:
|
812 |
msgid "Disable Access to WP Dashboard"
|
813 |
msgstr ""
|
814 |
|
815 |
-
#:
|
816 |
msgid ""
|
817 |
"WordPress allows a sandard wp user to be able to go to the wp-admin URL and "
|
818 |
"access his profile from the wp dashbaord. Using this option will prevent any "
|
819 |
"non admin users from going to the wp dashboard."
|
820 |
msgstr ""
|
821 |
|
822 |
-
#:
|
823 |
msgid "Default Account Status"
|
824 |
msgstr ""
|
825 |
|
826 |
-
#:
|
827 |
msgid ""
|
828 |
"Select the default account status for newly registered users. If you want to "
|
829 |
"manually approve the members then you can set the status to \"Pending\"."
|
830 |
msgstr ""
|
831 |
|
832 |
-
#:
|
833 |
msgid "Members Must be Logged in to Comment"
|
834 |
msgstr ""
|
835 |
|
836 |
-
#:
|
837 |
msgid ""
|
838 |
"Enable this option if you only want the members of the site to be able to "
|
839 |
"post a comment."
|
840 |
msgstr ""
|
841 |
|
842 |
-
#:
|
843 |
msgid "Pages Settings"
|
844 |
msgstr ""
|
845 |
|
846 |
-
#:
|
847 |
msgid "Login Page URL"
|
848 |
msgstr ""
|
849 |
|
850 |
-
#:
|
851 |
msgid "Registration Page URL"
|
852 |
msgstr ""
|
853 |
|
854 |
-
#:
|
855 |
msgid "Join Us Page URL"
|
856 |
msgstr ""
|
857 |
|
858 |
-
#:
|
859 |
msgid "Edit Profile Page URL"
|
860 |
msgstr ""
|
861 |
|
862 |
-
#:
|
863 |
msgid "Password Reset Page URL"
|
864 |
msgstr ""
|
865 |
|
866 |
-
#:
|
867 |
msgid "Test & Debug Settings"
|
868 |
msgstr ""
|
869 |
|
870 |
-
#:
|
871 |
msgid "Check this option to enable debug logging."
|
872 |
msgstr ""
|
873 |
|
874 |
-
#:
|
875 |
msgid "Enable Sandbox Testing"
|
876 |
msgstr ""
|
877 |
|
878 |
-
#:
|
879 |
msgid "Enable this option if you want to do sandbox payment testing."
|
880 |
msgstr ""
|
881 |
|
882 |
-
#:
|
883 |
-
|
884 |
-
#: simple-membership/classes/class.swpm-settings.php:301
|
885 |
-
msgid "Settings updated!"
|
886 |
msgstr ""
|
887 |
|
888 |
-
#:
|
889 |
msgid "Email Misc. Settings"
|
890 |
msgstr ""
|
891 |
|
892 |
-
#:
|
893 |
msgid "From Email Address"
|
894 |
msgstr ""
|
895 |
|
896 |
-
#:
|
897 |
msgid "Email Settings (Prompt to Complete Registration )"
|
898 |
msgstr ""
|
899 |
|
900 |
-
#:
|
901 |
-
#:
|
902 |
-
#:
|
903 |
-
#: simple-membership/classes/class.swpm-settings.php:164
|
904 |
-
#: simple-membership/classes/class.swpm-settings.php:169
|
905 |
msgid "Email Subject"
|
906 |
msgstr ""
|
907 |
|
908 |
-
#:
|
909 |
-
#:
|
910 |
-
#:
|
911 |
-
#: simple-membership/classes/class.swpm-settings.php:165
|
912 |
-
#: simple-membership/classes/class.swpm-settings.php:170
|
913 |
msgid "Email Body"
|
914 |
msgstr ""
|
915 |
|
916 |
-
#:
|
917 |
msgid ""
|
918 |
"Enter the email address where you want the admin notification email to be "
|
919 |
"sent to."
|
920 |
msgstr ""
|
921 |
|
922 |
-
#:
|
923 |
msgid ""
|
924 |
" You can put multiple email addresses separated by comma (,) in the above "
|
925 |
"field to send the notification to multiple email addresses."
|
926 |
msgstr ""
|
927 |
|
928 |
-
#:
|
929 |
msgid "Enter the subject for the admin notification email."
|
930 |
msgstr ""
|
931 |
|
932 |
-
#:
|
933 |
msgid ""
|
934 |
"This email will be sent to the admin when a new user completes the "
|
935 |
"membership registration. Only works if you have enabled the \"Send "
|
936 |
"Notification to Admin\" option above."
|
937 |
msgstr ""
|
938 |
|
939 |
-
#:
|
940 |
msgid "Email Settings (Registration Complete)"
|
941 |
msgstr ""
|
942 |
|
943 |
-
#:
|
944 |
msgid "Send Notification to Admin"
|
945 |
msgstr ""
|
946 |
|
947 |
-
#:
|
948 |
msgid ""
|
949 |
"Enable this option if you want the admin to receive a notification when a "
|
950 |
"member registers."
|
951 |
msgstr ""
|
952 |
|
953 |
-
#:
|
954 |
msgid "Admin Email Address"
|
955 |
msgstr ""
|
956 |
|
957 |
-
#:
|
958 |
msgid "Admin Notification Email Subject"
|
959 |
msgstr ""
|
960 |
|
961 |
-
#:
|
962 |
msgid "Admin Notification Email Body"
|
963 |
msgstr ""
|
964 |
|
965 |
-
#:
|
966 |
msgid "Send Email to Member When Added via Admin Dashboard"
|
967 |
msgstr ""
|
968 |
|
969 |
-
#:
|
970 |
msgid "Email Settings (Password Reset)"
|
971 |
msgstr ""
|
972 |
|
973 |
-
#:
|
974 |
msgid " Email Settings (Account Upgrade Notification)"
|
975 |
msgstr ""
|
976 |
|
977 |
-
#:
|
978 |
msgid " Email Settings (Bulk Account Activate Notification)"
|
979 |
msgstr ""
|
980 |
|
981 |
-
#:
|
982 |
msgid "Enable Expired Account Login"
|
983 |
msgstr ""
|
984 |
|
985 |
-
#:
|
986 |
msgid ""
|
987 |
"When enabled, expired members will be able to log into the system but won't "
|
988 |
"be able to view any protected content. This allows them to easily renew "
|
989 |
"their account by making another payment."
|
990 |
msgstr ""
|
991 |
|
992 |
-
#:
|
993 |
msgid "Membership Renewal URL"
|
994 |
msgstr ""
|
995 |
|
996 |
-
#:
|
997 |
msgid ""
|
998 |
"You can create a renewal page for your site. Read <a href=\"https://simple-"
|
999 |
"membership-plugin.com/creating-membership-renewal-button/\" target=\"_blank"
|
1000 |
"\">this documentation</a> to learn how to create a renewal page."
|
1001 |
msgstr ""
|
1002 |
|
1003 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1004 |
msgid "Allow Account Deletion"
|
1005 |
msgstr ""
|
1006 |
|
1007 |
-
#:
|
1008 |
msgid "Allow users to delete their accounts."
|
1009 |
msgstr ""
|
1010 |
|
1011 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1012 |
msgid "Use WordPress Timezone"
|
1013 |
msgstr ""
|
1014 |
|
1015 |
-
#:
|
1016 |
msgid ""
|
1017 |
"Use this option if you want to use the timezone value specified in your "
|
1018 |
"WordPress General Settings interface."
|
1019 |
msgstr ""
|
1020 |
|
1021 |
-
#:
|
1022 |
msgid "Auto Delete Pending Account"
|
1023 |
msgstr ""
|
1024 |
|
1025 |
-
#:
|
1026 |
msgid "Select how long you want to keep \"pending\" account."
|
1027 |
msgstr ""
|
1028 |
|
1029 |
-
#:
|
1030 |
msgid "Admin Dashboard Access Permission"
|
1031 |
msgstr ""
|
1032 |
|
1033 |
-
#:
|
1034 |
msgid ""
|
1035 |
"SWPM admin dashboard is accessible to admin users only (just like any other "
|
1036 |
"plugin). You can allow users with other WP user role to access the SWPM "
|
1037 |
"admin dashboard by selecting a value here."
|
1038 |
msgstr ""
|
1039 |
|
1040 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
1041 |
msgid "General Plugin Settings."
|
1042 |
msgstr ""
|
1043 |
|
1044 |
-
#:
|
1045 |
msgid "Page Setup and URL Related settings."
|
1046 |
msgstr ""
|
1047 |
|
1048 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
|
|
1049 |
msgid "Testing and Debug Related Settings."
|
1050 |
msgstr ""
|
1051 |
|
1052 |
-
#:
|
1053 |
msgid ""
|
1054 |
"This email will be sent to your users when they complete the registration "
|
1055 |
"and become a member."
|
1056 |
msgstr ""
|
1057 |
|
1058 |
-
#:
|
1059 |
msgid ""
|
1060 |
"This email will be sent to your users when they use the password reset "
|
1061 |
"functionality."
|
1062 |
msgstr ""
|
1063 |
|
1064 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1065 |
msgid "Settings in this section apply to all emails."
|
1066 |
msgstr ""
|
1067 |
|
1068 |
-
#:
|
1069 |
msgid ""
|
1070 |
"This email will be sent to your users after account upgrade (when an "
|
1071 |
"existing member pays for a new membership level)."
|
1072 |
msgstr ""
|
1073 |
|
1074 |
-
#:
|
1075 |
msgid ""
|
1076 |
"This email will be sent to your members when you use the bulk account "
|
1077 |
"activate and notify action."
|
1078 |
msgstr ""
|
1079 |
|
1080 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
|
|
1081 |
msgid ""
|
1082 |
"This email will be sent to prompt users to complete registration after the "
|
1083 |
"payment."
|
1084 |
msgstr ""
|
1085 |
|
1086 |
-
#:
|
1087 |
msgid "This page allows you to configure some advanced features of the plugin."
|
1088 |
msgstr ""
|
1089 |
|
1090 |
-
#:
|
1091 |
msgid "Simple WP Membership::Settings"
|
1092 |
msgstr ""
|
1093 |
|
1094 |
-
#:
|
1095 |
-
#:
|
1096 |
-
#:
|
1097 |
-
#:
|
1098 |
msgid "User is not logged in."
|
1099 |
msgstr ""
|
1100 |
|
1101 |
-
#:
|
1102 |
msgid "Registration"
|
1103 |
msgstr ""
|
1104 |
|
1105 |
-
#:
|
1106 |
msgid "Member Login"
|
1107 |
msgstr ""
|
1108 |
|
1109 |
-
#:
|
1110 |
msgid "Profile"
|
1111 |
msgstr ""
|
1112 |
|
1113 |
-
#:
|
1114 |
msgid "Password Reset"
|
1115 |
msgstr ""
|
1116 |
|
1117 |
-
#:
|
1118 |
msgid "Not a Member?"
|
1119 |
msgstr ""
|
1120 |
|
1121 |
-
#:
|
1122 |
msgid "renew"
|
1123 |
msgstr ""
|
1124 |
|
1125 |
-
#:
|
1126 |
msgid " your account to gain access to this content."
|
1127 |
msgstr ""
|
1128 |
|
1129 |
-
#:
|
1130 |
-
#: simple-membership/classes/class.swpm-utils-misc.php:295
|
1131 |
msgid "Error! This action ("
|
1132 |
msgstr ""
|
1133 |
|
1134 |
-
#:
|
|
|
|
|
|
|
|
|
1135 |
msgid "Error! Failed to find a template path for the specified template: "
|
1136 |
msgstr ""
|
1137 |
|
1138 |
-
#:
|
1139 |
msgid "Never"
|
1140 |
msgstr ""
|
1141 |
|
1142 |
-
#:
|
1143 |
msgid "Active"
|
1144 |
msgstr ""
|
1145 |
|
1146 |
-
#:
|
1147 |
msgid "Inactive"
|
1148 |
msgstr ""
|
1149 |
|
1150 |
-
#:
|
1151 |
msgid "Pending"
|
1152 |
msgstr ""
|
1153 |
|
1154 |
-
#:
|
1155 |
msgid "Expired"
|
1156 |
msgstr ""
|
1157 |
|
1158 |
-
#:
|
1159 |
msgid "Delete Account"
|
1160 |
msgstr ""
|
1161 |
|
1162 |
-
#:
|
1163 |
msgid "Payment Button ID"
|
1164 |
msgstr ""
|
1165 |
|
1166 |
-
#:
|
1167 |
msgid "Payment Button Title"
|
1168 |
msgstr ""
|
1169 |
|
1170 |
-
#:
|
1171 |
msgid "Membership Level ID"
|
1172 |
msgstr ""
|
1173 |
|
1174 |
-
#:
|
1175 |
msgid "Button Type"
|
1176 |
msgstr ""
|
1177 |
|
1178 |
-
#:
|
1179 |
msgid "Button Shortcode"
|
1180 |
msgstr ""
|
1181 |
|
1182 |
-
#:
|
1183 |
-
#:
|
1184 |
-
#:
|
1185 |
msgid "The selected entry was deleted!"
|
1186 |
msgstr ""
|
1187 |
|
1188 |
-
#:
|
1189 |
msgid "Simple Membership::Payments"
|
1190 |
msgstr ""
|
1191 |
|
1192 |
-
#:
|
1193 |
msgid "Transactions"
|
1194 |
msgstr ""
|
1195 |
|
1196 |
-
#:
|
1197 |
msgid "Manage Payment Buttons"
|
1198 |
msgstr ""
|
1199 |
|
1200 |
-
#:
|
1201 |
-
#:
|
1202 |
msgid "Create New Button"
|
1203 |
msgstr ""
|
1204 |
|
1205 |
-
#:
|
1206 |
msgid "View Profile"
|
1207 |
msgstr ""
|
1208 |
|
1209 |
-
#:
|
1210 |
msgid "Row ID"
|
1211 |
msgstr ""
|
1212 |
|
1213 |
-
#:
|
1214 |
-
#:
|
1215 |
msgid "Email Address"
|
1216 |
msgstr ""
|
1217 |
|
1218 |
-
#:
|
1219 |
msgid "Member Profile"
|
1220 |
msgstr ""
|
1221 |
|
1222 |
-
#:
|
1223 |
-
msgid "Date"
|
1224 |
-
msgstr ""
|
1225 |
-
|
1226 |
-
#: simple-membership/classes/admin-includes/class.swpm-payments-list-table.php:82
|
1227 |
msgid "Transaction ID"
|
1228 |
msgstr ""
|
1229 |
|
1230 |
-
#:
|
1231 |
msgid "Subscriber ID"
|
1232 |
msgstr ""
|
1233 |
|
1234 |
-
#:
|
1235 |
msgid "Amount"
|
1236 |
msgstr ""
|
1237 |
|
1238 |
-
#:
|
1239 |
msgid "Your membership profile will be updated to reflect the payment."
|
1240 |
msgstr ""
|
1241 |
|
1242 |
-
#:
|
1243 |
msgid "Your profile username: "
|
1244 |
msgstr ""
|
1245 |
|
1246 |
-
#:
|
1247 |
msgid "Click on the following link to complete the registration."
|
1248 |
msgstr ""
|
1249 |
|
1250 |
-
#:
|
1251 |
msgid "Click here to complete your paid registration"
|
1252 |
msgstr ""
|
1253 |
|
1254 |
-
#:
|
1255 |
msgid ""
|
1256 |
"If you have just made a membership payment then your payment is yet to be "
|
1257 |
"processed. Please check back in a few minutes. An email will be sent to you "
|
1258 |
"with the details shortly."
|
1259 |
msgstr ""
|
1260 |
|
1261 |
-
#:
|
1262 |
msgid "Expiry: "
|
1263 |
msgstr ""
|
1264 |
|
1265 |
-
#:
|
1266 |
msgid "You are not logged-in as a member"
|
1267 |
msgstr ""
|
1268 |
|
1269 |
-
#:
|
1270 |
-
#:
|
1271 |
-
#: simple-membership/views/edit.php:21 simple-membership/views/login.php:17
|
1272 |
msgid "Password"
|
1273 |
msgstr ""
|
1274 |
|
1275 |
-
#:
|
1276 |
msgid "Repeat Password"
|
1277 |
msgstr ""
|
1278 |
|
1279 |
-
#:
|
1280 |
msgid "Register"
|
1281 |
msgstr ""
|
1282 |
|
1283 |
-
#:
|
1284 |
msgid "Create a brand new user and add it to this site."
|
1285 |
msgstr ""
|
1286 |
|
1287 |
-
#:
|
1288 |
-
#:
|
1289 |
-
#:
|
1290 |
-
#:
|
1291 |
-
#:
|
1292 |
-
#: simple-membership/views/admin_edit.php:14
|
1293 |
-
#: simple-membership/views/admin_edit.php:35
|
1294 |
-
#: simple-membership/views/admin_edit_level.php:16
|
1295 |
-
#: simple-membership/views/admin_edit_level.php:20
|
1296 |
-
#: simple-membership/views/admin_edit_level.php:24
|
1297 |
msgid "(required)"
|
1298 |
msgstr ""
|
1299 |
|
1300 |
-
#:
|
1301 |
-
#: simple-membership/views/admin_edit.php:35
|
1302 |
msgid "E-mail"
|
1303 |
msgstr ""
|
1304 |
|
1305 |
-
#:
|
1306 |
msgid "(twice, required)"
|
1307 |
msgstr ""
|
1308 |
|
1309 |
-
#:
|
1310 |
-
#: simple-membership/views/admin_edit.php:43
|
1311 |
msgid "Strength indicator"
|
1312 |
msgstr ""
|
1313 |
|
1314 |
-
#:
|
1315 |
-
#: simple-membership/views/admin_edit.php:44
|
1316 |
msgid ""
|
1317 |
"Hint: The password should be at least seven characters long. To make it "
|
1318 |
"stronger, use upper and lower case letters, numbers and symbols like ! \" ? "
|
1319 |
"$ % ^ & )."
|
1320 |
msgstr ""
|
1321 |
|
1322 |
-
#:
|
1323 |
-
#: simple-membership/views/admin_edit.php:48
|
1324 |
-
#: simple-membership/views/loggedin.php:10
|
1325 |
msgid "Account Status"
|
1326 |
msgstr ""
|
1327 |
|
1328 |
-
#:
|
1329 |
msgid "Add New Member "
|
1330 |
msgstr ""
|
1331 |
|
1332 |
-
#:
|
1333 |
msgid ""
|
1334 |
"Some of the simple membership plugin's addon settings and options will be "
|
1335 |
"displayed here (if you have them)"
|
1336 |
msgstr ""
|
1337 |
|
1338 |
-
#:
|
1339 |
msgid "Save Changes"
|
1340 |
msgstr ""
|
1341 |
|
1342 |
-
#:
|
|
|
|
|
|
|
|
|
1343 |
msgid "Create new membership level."
|
1344 |
msgstr ""
|
1345 |
|
1346 |
-
#:
|
1347 |
-
#: simple-membership/views/admin_edit_level.php:16
|
1348 |
msgid "Membership Level Name"
|
1349 |
msgstr ""
|
1350 |
|
1351 |
-
#:
|
1352 |
-
#: simple-membership/views/admin_edit_level.php:20
|
1353 |
msgid "Default WordPress Role"
|
1354 |
msgstr ""
|
1355 |
|
1356 |
-
#:
|
1357 |
-
#: simple-membership/views/admin_edit_level.php:24
|
1358 |
msgid "Access Duration"
|
1359 |
msgstr ""
|
1360 |
|
1361 |
-
#:
|
1362 |
msgid "No Expiry (Access for this level will not expire until cancelled"
|
1363 |
msgstr ""
|
1364 |
|
1365 |
-
#:
|
1366 |
-
#:
|
1367 |
-
#:
|
1368 |
-
#:
|
1369 |
-
#: simple-membership/views/admin_edit_level.php:28
|
1370 |
-
#: simple-membership/views/admin_edit_level.php:31
|
1371 |
-
#: simple-membership/views/admin_edit_level.php:34
|
1372 |
-
#: simple-membership/views/admin_edit_level.php:37
|
1373 |
msgid "Expire After"
|
1374 |
msgstr ""
|
1375 |
|
1376 |
-
#:
|
1377 |
-
#: simple-membership/views/admin_edit_level.php:29
|
1378 |
msgid "Days (Access expires after given number of days)"
|
1379 |
msgstr ""
|
1380 |
|
1381 |
-
#:
|
1382 |
msgid "Weeks (Access expires after given number of weeks"
|
1383 |
msgstr ""
|
1384 |
|
1385 |
-
#:
|
1386 |
-
#: simple-membership/views/admin_edit_level.php:35
|
1387 |
msgid "Months (Access expires after given number of months)"
|
1388 |
msgstr ""
|
1389 |
|
1390 |
-
#:
|
1391 |
-
#: simple-membership/views/admin_edit_level.php:38
|
1392 |
msgid "Years (Access expires after given number of years)"
|
1393 |
msgstr ""
|
1394 |
|
1395 |
-
#:
|
1396 |
-
#: simple-membership/views/admin_edit_level.php:40
|
1397 |
msgid "Fixed Date Expiry"
|
1398 |
msgstr ""
|
1399 |
|
1400 |
-
#:
|
1401 |
-
#: simple-membership/views/admin_edit_level.php:41
|
1402 |
msgid "(Access expires on a fixed date)"
|
1403 |
msgstr ""
|
1404 |
|
1405 |
-
#:
|
1406 |
msgid "Add New Membership Level "
|
1407 |
msgstr ""
|
1408 |
|
1409 |
-
#:
|
1410 |
msgid "Simple WP Membership::Add-ons"
|
1411 |
msgstr ""
|
1412 |
|
1413 |
-
#:
|
1414 |
msgid ""
|
1415 |
"First of all, globally protect the category on your site by selecting "
|
1416 |
"\"General Protection\" from the drop-down box below and then select the "
|
1417 |
"categories that should be protected from non-logged in users."
|
1418 |
msgstr ""
|
1419 |
|
1420 |
-
#:
|
1421 |
msgid ""
|
1422 |
"Next, select an existing membership level from the drop-down box below and "
|
1423 |
"then select the categories you want to grant access to (for that particular "
|
1424 |
"membership level)."
|
1425 |
msgstr ""
|
1426 |
|
1427 |
-
#:
|
1428 |
msgid "Membership Level:"
|
1429 |
msgstr ""
|
1430 |
|
1431 |
-
#:
|
1432 |
-
#:
|
1433 |
msgid "Update"
|
1434 |
msgstr ""
|
1435 |
|
1436 |
-
#:
|
1437 |
msgid "Edit Member"
|
1438 |
msgstr ""
|
1439 |
|
1440 |
-
#:
|
1441 |
msgid "Edit existing member details."
|
1442 |
msgstr ""
|
1443 |
|
1444 |
-
#:
|
1445 |
msgid " You are currenty editing member with member ID: "
|
1446 |
msgstr ""
|
1447 |
|
1448 |
-
#:
|
1449 |
msgid "(twice, leave empty to retain old password)"
|
1450 |
msgstr ""
|
1451 |
|
1452 |
-
#:
|
1453 |
msgid "Notify User"
|
1454 |
msgstr ""
|
1455 |
|
1456 |
-
#:
|
1457 |
msgid "Subscriber ID/Reference"
|
1458 |
msgstr ""
|
1459 |
|
1460 |
-
#:
|
1461 |
msgid "Last Accessed Date"
|
1462 |
msgstr ""
|
1463 |
|
1464 |
-
#:
|
1465 |
-
#: simple-membership/views/admin_edit.php:76
|
1466 |
msgid "This value gets updated when this member logs into your site."
|
1467 |
msgstr ""
|
1468 |
|
1469 |
-
#:
|
1470 |
msgid "Last Accessed From IP"
|
1471 |
msgstr ""
|
1472 |
|
1473 |
-
#:
|
1474 |
-
msgid "
|
1475 |
msgstr ""
|
1476 |
|
1477 |
-
#:
|
1478 |
msgid "Delete User Profile"
|
1479 |
msgstr ""
|
1480 |
|
1481 |
-
#:
|
1482 |
msgid "Edit membership level"
|
1483 |
msgstr ""
|
1484 |
|
1485 |
-
#:
|
1486 |
msgid ""
|
1487 |
"You can edit details of a selected membership level from this interface. "
|
1488 |
msgstr ""
|
1489 |
|
1490 |
-
#:
|
1491 |
msgid "You are currently editing: "
|
1492 |
msgstr ""
|
1493 |
|
1494 |
-
#:
|
1495 |
msgid "No Expiry (Access for this level will not expire until cancelled)"
|
1496 |
msgstr ""
|
1497 |
|
1498 |
-
#:
|
1499 |
msgid "Weeks (Access expires after given number of weeks)"
|
1500 |
msgstr ""
|
1501 |
|
1502 |
-
#:
|
1503 |
-
msgid "
|
1504 |
msgstr ""
|
1505 |
|
1506 |
-
#:
|
1507 |
msgid "Example Content Protection Settings"
|
1508 |
msgstr ""
|
1509 |
|
1510 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1511 |
msgid "Gender"
|
1512 |
msgstr ""
|
1513 |
|
1514 |
-
#:
|
1515 |
-
#: simple-membership/views/edit.php:37
|
1516 |
msgid "Phone"
|
1517 |
msgstr ""
|
1518 |
|
1519 |
-
#:
|
1520 |
-
#: simple-membership/views/edit.php:41
|
1521 |
msgid "Street"
|
1522 |
msgstr ""
|
1523 |
|
1524 |
-
#:
|
1525 |
-
#: simple-membership/views/edit.php:45
|
1526 |
msgid "City"
|
1527 |
msgstr ""
|
1528 |
|
1529 |
-
#:
|
1530 |
-
#: simple-membership/views/edit.php:49
|
1531 |
msgid "State"
|
1532 |
msgstr ""
|
1533 |
|
1534 |
-
#:
|
1535 |
-
#: simple-membership/views/edit.php:53
|
1536 |
msgid "Zipcode"
|
1537 |
msgstr ""
|
1538 |
|
1539 |
-
#:
|
1540 |
-
#: simple-membership/views/edit.php:57
|
1541 |
msgid "Country"
|
1542 |
msgstr ""
|
1543 |
|
1544 |
-
#:
|
1545 |
msgid "Company"
|
1546 |
msgstr ""
|
1547 |
|
1548 |
-
#:
|
1549 |
msgid "Member Since"
|
1550 |
msgstr ""
|
1551 |
|
1552 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1553 |
msgid "Generate a Registration Completion link"
|
1554 |
msgstr ""
|
1555 |
|
1556 |
-
#:
|
1557 |
msgid ""
|
1558 |
"You can manually generate a registration completion link here and give it to "
|
1559 |
"your customer if they have missed the email that was automatically sent out "
|
1560 |
"to them after the payment."
|
1561 |
msgstr ""
|
1562 |
|
1563 |
-
#:
|
1564 |
msgid "Generate Registration Completion Link"
|
1565 |
msgstr ""
|
1566 |
|
1567 |
-
#:
|
1568 |
msgid "For a Particular Member ID"
|
1569 |
msgstr ""
|
1570 |
|
1571 |
-
#:
|
1572 |
msgid "OR"
|
1573 |
msgstr ""
|
1574 |
|
1575 |
-
#:
|
1576 |
msgid "For All Incomplete Registrations"
|
1577 |
msgstr ""
|
1578 |
|
1579 |
-
#:
|
1580 |
msgid "Send Registration Reminder Email Too"
|
1581 |
msgstr ""
|
1582 |
|
1583 |
-
#:
|
1584 |
msgid "Submit"
|
1585 |
msgstr ""
|
1586 |
|
1587 |
-
#:
|
1588 |
msgid ""
|
1589 |
"Link(s) generated successfully. The following link(s) can be used to "
|
1590 |
"complete the registration."
|
1591 |
msgstr ""
|
1592 |
|
1593 |
-
#:
|
1594 |
msgid "Registration completion links will appear below"
|
1595 |
msgstr ""
|
1596 |
|
1597 |
-
#:
|
|
|
|
|
|
|
|
|
1598 |
msgid "Leave empty to keep the current password"
|
1599 |
msgstr ""
|
1600 |
|
1601 |
-
#:
|
|
|
|
|
|
|
|
|
1602 |
msgid "Reset Password"
|
1603 |
msgstr ""
|
1604 |
|
1605 |
-
#:
|
1606 |
msgid "Logged in as"
|
1607 |
msgstr ""
|
1608 |
|
1609 |
-
#:
|
1610 |
msgid "Membership"
|
1611 |
msgstr ""
|
1612 |
|
1613 |
-
#:
|
1614 |
msgid "Account Expiry"
|
1615 |
msgstr ""
|
1616 |
|
1617 |
-
#:
|
|
|
|
|
|
|
|
|
1618 |
msgid "Logout"
|
1619 |
msgstr ""
|
1620 |
|
1621 |
-
#:
|
1622 |
msgid "Username or Email"
|
1623 |
msgstr ""
|
1624 |
|
1625 |
-
#:
|
1626 |
msgid "Remember Me"
|
1627 |
msgstr ""
|
1628 |
|
1629 |
-
#:
|
1630 |
msgid "Forgot Password"
|
1631 |
msgstr ""
|
1632 |
|
1633 |
-
#:
|
1634 |
msgid "All the payments/transactions of your members are recorded here."
|
1635 |
msgstr ""
|
1636 |
|
1637 |
-
#:
|
1638 |
msgid "Search for a transaction by using email or name"
|
1639 |
msgstr ""
|
1640 |
|
1641 |
-
#:
|
1642 |
msgid ""
|
1643 |
"You can create new payment button for your memberships using this interface."
|
1644 |
msgstr ""
|
1645 |
|
1646 |
-
#:
|
1647 |
msgid "Select Payment Button Type"
|
1648 |
msgstr ""
|
1649 |
|
1650 |
-
#:
|
1651 |
msgid "PayPal Buy Now"
|
1652 |
msgstr ""
|
1653 |
|
1654 |
-
#:
|
1655 |
msgid "PayPal Subscription"
|
1656 |
msgstr ""
|
1657 |
|
1658 |
-
#:
|
1659 |
msgid "Stripe Buy Now"
|
1660 |
msgstr ""
|
1661 |
|
1662 |
-
#:
|
|
|
|
|
|
|
|
|
1663 |
msgid "Braintree Buy Now"
|
1664 |
msgstr ""
|
1665 |
|
1666 |
-
#:
|
1667 |
msgid "Next"
|
1668 |
msgstr ""
|
1669 |
|
1670 |
-
#:
|
1671 |
msgid "You can edit a payment button using this interface."
|
1672 |
msgstr ""
|
1673 |
|
1674 |
-
#:
|
1675 |
msgid ""
|
1676 |
"All the membership buttons that you created in the plugin are displayed here."
|
1677 |
msgstr ""
|
1678 |
|
1679 |
-
#:
|
1680 |
msgid "Error! The membership level ID ("
|
1681 |
msgstr ""
|
1682 |
|
1683 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
|
|
1684 |
msgid "PayPal Integration Settings"
|
1685 |
msgstr ""
|
1686 |
|
1687 |
-
#:
|
1688 |
msgid "Generate the \"Advanced Variables\" Code for your PayPal button"
|
1689 |
msgstr ""
|
1690 |
|
1691 |
-
#:
|
1692 |
msgid "Enter the Membership Level ID"
|
1693 |
msgstr ""
|
1694 |
|
1695 |
-
#:
|
1696 |
msgid "Generate Code"
|
1697 |
msgstr ""
|
1698 |
|
1699 |
-
#:
|
1700 |
msgid "Braintree Buy Now Button Configuration"
|
1701 |
msgstr ""
|
1702 |
|
1703 |
-
#:
|
1704 |
-
#:
|
1705 |
-
#:
|
1706 |
-
#:
|
|
|
1707 |
msgid "Button ID"
|
1708 |
msgstr ""
|
1709 |
|
1710 |
-
#:
|
1711 |
-
#:
|
1712 |
-
#:
|
1713 |
-
#:
|
1714 |
-
#:
|
1715 |
-
#:
|
1716 |
-
#:
|
|
|
1717 |
msgid "Button Title"
|
1718 |
msgstr ""
|
1719 |
|
1720 |
-
#:
|
1721 |
-
#:
|
1722 |
-
#:
|
1723 |
-
#:
|
1724 |
-
#:
|
1725 |
msgid "Payment Amount"
|
1726 |
msgstr ""
|
1727 |
|
1728 |
-
#:
|
1729 |
msgid ""
|
1730 |
"Braintree API key and account details. You can get this from your Braintree "
|
1731 |
"account."
|
1732 |
msgstr ""
|
1733 |
|
1734 |
-
#:
|
1735 |
msgid "Merchant ID"
|
1736 |
msgstr ""
|
1737 |
|
1738 |
-
#:
|
1739 |
msgid "Public Key"
|
1740 |
msgstr ""
|
1741 |
|
1742 |
-
#:
|
1743 |
msgid "Private Key"
|
1744 |
msgstr ""
|
1745 |
|
1746 |
-
#:
|
1747 |
msgid "Merchant Account ID"
|
1748 |
msgstr ""
|
1749 |
|
1750 |
-
#:
|
1751 |
-
#:
|
1752 |
-
#:
|
1753 |
msgid "The following details are optional."
|
1754 |
msgstr ""
|
1755 |
|
1756 |
-
#:
|
1757 |
-
#:
|
1758 |
-
#:
|
1759 |
-
#:
|
1760 |
-
#:
|
1761 |
-
#:
|
1762 |
-
#:
|
|
|
1763 |
msgid "Return URL"
|
1764 |
msgstr ""
|
1765 |
|
1766 |
-
#:
|
1767 |
-
#:
|
1768 |
-
#:
|
1769 |
-
#:
|
1770 |
-
#:
|
1771 |
-
#:
|
1772 |
-
#:
|
|
|
1773 |
msgid "Save Payment Data"
|
1774 |
msgstr ""
|
1775 |
|
1776 |
-
#:
|
1777 |
-
#:
|
1778 |
msgid "PayPal Buy Now Button Configuration"
|
1779 |
msgstr ""
|
1780 |
|
1781 |
-
#:
|
1782 |
-
#:
|
1783 |
-
#:
|
1784 |
-
#:
|
1785 |
-
#:
|
1786 |
-
#:
|
1787 |
msgid "Payment Currency"
|
1788 |
msgstr ""
|
1789 |
|
1790 |
-
#:
|
1791 |
-
#:
|
1792 |
-
#:
|
1793 |
-
#:
|
1794 |
msgid "PayPal Email"
|
1795 |
msgstr ""
|
1796 |
|
1797 |
-
#:
|
1798 |
-
#:
|
1799 |
-
#:
|
1800 |
-
#:
|
|
|
1801 |
msgid "Button Image URL"
|
1802 |
msgstr ""
|
1803 |
|
1804 |
-
#:
|
1805 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1806 |
msgid "PayPal Subscription Button Configuration"
|
1807 |
msgstr ""
|
1808 |
|
1809 |
-
#:
|
1810 |
-
#:
|
1811 |
msgid "Billing Amount Each Cycle"
|
1812 |
msgstr ""
|
1813 |
|
1814 |
-
#:
|
1815 |
-
#:
|
1816 |
msgid "Billing Cycle"
|
1817 |
msgstr ""
|
1818 |
|
1819 |
-
#:
|
1820 |
-
#:
|
1821 |
msgid "Billing Cycle Count"
|
1822 |
msgstr ""
|
1823 |
|
1824 |
-
#:
|
1825 |
-
#:
|
1826 |
msgid "Re-attempt on Failure"
|
1827 |
msgstr ""
|
1828 |
|
1829 |
-
#:
|
1830 |
-
#:
|
1831 |
msgid ""
|
1832 |
"Trial Billing Details (Leave empty if you are not offering a trial period)"
|
1833 |
msgstr ""
|
1834 |
|
1835 |
-
#:
|
1836 |
-
#:
|
1837 |
msgid "Trial Billing Amount"
|
1838 |
msgstr ""
|
1839 |
|
1840 |
-
#:
|
1841 |
-
#:
|
1842 |
msgid "Trial Billing Period"
|
1843 |
msgstr ""
|
1844 |
|
1845 |
-
#:
|
1846 |
-
#:
|
|
|
1847 |
msgid "Optional Details"
|
1848 |
msgstr ""
|
1849 |
|
1850 |
-
#:
|
1851 |
-
#:
|
1852 |
msgid "Stripe Buy Now Button Configuration"
|
1853 |
msgstr ""
|
1854 |
|
1855 |
-
#:
|
1856 |
-
#:
|
1857 |
msgid "Stripe API keys. You can get this from your Stripe account."
|
1858 |
msgstr ""
|
1859 |
|
1860 |
-
#:
|
1861 |
-
#:
|
|
|
1862 |
msgid "Test Secret Key"
|
1863 |
msgstr ""
|
1864 |
|
1865 |
-
#:
|
1866 |
-
#:
|
|
|
1867 |
msgid "Test Publishable Key"
|
1868 |
msgstr ""
|
1869 |
|
1870 |
-
#:
|
1871 |
-
#:
|
|
|
1872 |
msgid "Live Secret Key"
|
1873 |
msgstr ""
|
1874 |
|
1875 |
-
#:
|
1876 |
-
#:
|
|
|
1877 |
msgid "Live Publishable Key"
|
1878 |
msgstr ""
|
1879 |
|
1880 |
-
#:
|
1881 |
-
#:
|
1882 |
-
#:
|
1883 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1884 |
msgid "Buy Now"
|
1885 |
msgstr ""
|
1886 |
|
1887 |
-
#:
|
1888 |
-
#:
|
1889 |
msgid "Subscribe Now"
|
1890 |
msgstr ""
|
1891 |
|
@@ -1925,6 +2116,9 @@ msgstr ""
|
|
1925 |
msgid "Check this box to delete the image. The image will be deleted when you save the profile."
|
1926 |
msgstr ""
|
1927 |
|
|
|
|
|
|
|
1928 |
#: === Partial protection addon strings ===
|
1929 |
msgid "You do not have permission to view this content."
|
1930 |
msgstr ""
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Simple Membership\n"
|
4 |
+
"POT-Creation-Date: 2018-02-17 13:47+1000\n"
|
5 |
+
"PO-Revision-Date: 2018-02-17 13:47+1000\n"
|
6 |
"Last-Translator: \n"
|
7 |
"Language-Team: \n"
|
8 |
"MIME-Version: 1.0\n"
|
13 |
"X-Poedit-Basepath: .\n"
|
14 |
"X-Poedit-SearchPath-0: .\n"
|
15 |
|
16 |
+
#: classes/class.simple-wp-membership.php:175
|
17 |
msgid "The admin of this site does not allow users to access the wp dashboard."
|
18 |
msgstr ""
|
19 |
|
20 |
+
#: classes/class.simple-wp-membership.php:176
|
21 |
msgid "Go back to the home page by "
|
22 |
msgstr ""
|
23 |
|
24 |
+
#: classes/class.simple-wp-membership.php:176
|
25 |
msgid "clicking here"
|
26 |
msgstr ""
|
27 |
|
28 |
+
#: classes/class.simple-wp-membership.php:237
|
29 |
+
msgid ""
|
30 |
+
"Error! This site has the force WP user login feature enabled in the "
|
31 |
+
"settings. We could not find a WP user record for the given username: "
|
32 |
+
msgstr ""
|
33 |
+
|
34 |
+
#: classes/class.simple-wp-membership.php:238
|
35 |
+
msgid ""
|
36 |
+
"This error is triggered when a member account doesn't have a corresponding "
|
37 |
+
"WP user account. So the plugin fails to log the user into the WP User system."
|
38 |
+
msgstr ""
|
39 |
+
|
40 |
+
#: classes/class.simple-wp-membership.php:239
|
41 |
+
msgid ""
|
42 |
+
"Contact the site admin and request them to check your username in the WP "
|
43 |
+
"Users menu to see what happened with the WP user entry of your account."
|
44 |
+
msgstr ""
|
45 |
+
|
46 |
+
#: classes/class.simple-wp-membership.php:240
|
47 |
+
msgid ""
|
48 |
+
"The site admin can disable the Force WP User Synchronization feature in the "
|
49 |
+
"settings to disable this feature and this error will go away."
|
50 |
+
msgstr ""
|
51 |
+
|
52 |
+
#: classes/class.simple-wp-membership.php:241
|
53 |
+
msgid "You can use the back button of your browser to go back to the site."
|
54 |
+
msgstr ""
|
55 |
+
|
56 |
+
#: classes/class.simple-wp-membership.php:334
|
57 |
msgid "You are not logged in."
|
58 |
msgstr ""
|
59 |
|
60 |
+
#: classes/class.simple-wp-membership.php:385
|
61 |
msgid ""
|
62 |
"You have the sandbox payment mode enabled in plugin settings. Make sure to "
|
63 |
"turn off the sandbox mode when you want to do live transactions."
|
64 |
msgstr ""
|
65 |
|
66 |
+
#: classes/class.simple-wp-membership.php:400
|
67 |
msgid "Simple WP Membership Protection"
|
68 |
msgstr ""
|
69 |
|
70 |
+
#: classes/class.simple-wp-membership.php:412
|
71 |
msgid "Simple Membership Protection options"
|
72 |
msgstr ""
|
73 |
|
74 |
+
#: classes/class.simple-wp-membership.php:430
|
75 |
msgid "Do you want to protect this content?"
|
76 |
msgstr ""
|
77 |
|
78 |
+
#: classes/class.simple-wp-membership.php:435
|
79 |
msgid "Select the membership level that can access this content:"
|
80 |
msgstr ""
|
81 |
|
82 |
+
#: classes/class.simple-wp-membership.php:573
|
83 |
+
#: classes/class.simple-wp-membership.php:577
|
84 |
msgid "Validating, please wait"
|
85 |
msgstr ""
|
86 |
|
87 |
+
#: classes/class.simple-wp-membership.php:580
|
88 |
msgid "Invalid email address"
|
89 |
msgstr ""
|
90 |
|
91 |
+
#: classes/class.simple-wp-membership.php:583
|
92 |
msgid "This field is required"
|
93 |
msgstr ""
|
94 |
|
95 |
+
#: classes/class.simple-wp-membership.php:586 classes/class.swpm-auth.php:259
|
|
|
96 |
msgid "Invalid Username"
|
97 |
msgstr ""
|
98 |
|
99 |
+
#: classes/class.simple-wp-membership.php:589
|
100 |
msgid "Minimum "
|
101 |
msgstr ""
|
102 |
|
103 |
+
#: classes/class.simple-wp-membership.php:590
|
104 |
msgid " characters required"
|
105 |
msgstr ""
|
106 |
|
107 |
+
#: classes/class.simple-wp-membership.php:593
|
108 |
msgid "Apostrophe character is not allowed"
|
109 |
msgstr ""
|
110 |
|
111 |
+
#: classes/class.simple-wp-membership.php:624
|
112 |
msgid "WP Membership"
|
113 |
msgstr ""
|
114 |
|
115 |
+
#: classes/class.simple-wp-membership.php:625
|
116 |
+
#: classes/class.swpm-members.php:11 classes/class.swpm-members.php:579
|
|
|
117 |
msgid "Members"
|
118 |
msgstr ""
|
119 |
|
120 |
+
#: classes/class.simple-wp-membership.php:626
|
121 |
+
#: classes/class.swpm-category-list.php:20
|
122 |
+
#: classes/class.swpm-membership-levels.php:12
|
123 |
+
#: classes/class.swpm-membership-levels.php:264
|
124 |
+
#: classes/class.swpm-post-list.php:21
|
125 |
msgid "Membership Levels"
|
126 |
msgstr ""
|
127 |
|
128 |
+
#: classes/class.simple-wp-membership.php:627
|
129 |
msgid "Settings"
|
130 |
msgstr ""
|
131 |
|
132 |
+
#: classes/class.simple-wp-membership.php:628
|
133 |
msgid "Payments"
|
134 |
msgstr ""
|
135 |
|
136 |
+
#: classes/class.simple-wp-membership.php:629
|
137 |
msgid "Add-ons"
|
138 |
msgstr ""
|
139 |
|
140 |
+
#: classes/class.swpm-access-control.php:47
|
141 |
+
#: classes/class.swpm-access-control.php:120
|
142 |
msgid "You need to login to view this content. "
|
143 |
msgstr ""
|
144 |
|
145 |
+
#: classes/class.swpm-access-control.php:56
|
146 |
+
#: classes/class.swpm-access-control.php:128
|
147 |
+
#: classes/class.swpm-access-control.php:212
|
148 |
msgid "Your account has expired. "
|
149 |
msgstr ""
|
150 |
|
151 |
+
#: classes/class.swpm-access-control.php:66
|
152 |
+
#: classes/class.swpm-access-control.php:138
|
153 |
msgid "This content can only be viewed by members who joined on or before "
|
154 |
msgstr ""
|
155 |
|
156 |
+
#: classes/class.swpm-access-control.php:79
|
157 |
+
#: classes/class.swpm-access-control.php:148
|
158 |
msgid "This content is not permitted for your membership level."
|
159 |
msgstr ""
|
160 |
|
161 |
+
#: classes/class.swpm-access-control.php:204
|
162 |
msgid "You need to login to view the rest of the content. "
|
163 |
msgstr ""
|
164 |
|
165 |
+
#: classes/class.swpm-access-control.php:217
|
166 |
msgid " The rest of the content is not permitted for your membership level."
|
167 |
msgstr ""
|
168 |
|
169 |
+
#: classes/class.swpm-admin-registration.php:25
|
170 |
msgid "Error! Nonce verification failed for user registration from admin end."
|
171 |
msgstr ""
|
172 |
|
173 |
+
#: classes/class.swpm-admin-registration.php:71
|
174 |
msgid "Member record added successfully."
|
175 |
msgstr ""
|
176 |
|
177 |
+
#: classes/class.swpm-admin-registration.php:76
|
178 |
+
#: classes/class.swpm-admin-registration.php:116
|
179 |
+
#: classes/class.swpm-admin-registration.php:142
|
180 |
+
#: classes/class.swpm-membership-level.php:69
|
181 |
+
#: classes/class.swpm-membership-level.php:97
|
182 |
msgid "Please correct the following:"
|
183 |
msgstr ""
|
184 |
|
185 |
+
#: classes/class.swpm-admin-registration.php:87
|
186 |
msgid "Error! Nonce verification failed for user edit from admin end."
|
187 |
msgstr ""
|
188 |
|
189 |
+
#: classes/class.swpm-admin-registration.php:131
|
190 |
msgid "Your current password"
|
191 |
msgstr ""
|
192 |
|
193 |
+
#: classes/class.swpm-ajax.php:14
|
194 |
msgid "Invalid Email Address"
|
195 |
msgstr ""
|
196 |
|
197 |
+
#: classes/class.swpm-ajax.php:21 classes/class.swpm-ajax.php:36
|
|
|
198 |
msgid "Aready taken"
|
199 |
msgstr ""
|
200 |
|
201 |
+
#: classes/class.swpm-ajax.php:30
|
202 |
msgid "Name contains invalid character"
|
203 |
msgstr ""
|
204 |
|
205 |
+
#: classes/class.swpm-ajax.php:37
|
206 |
msgid "Available"
|
207 |
msgstr ""
|
208 |
|
209 |
+
#: classes/class.swpm-auth.php:49
|
210 |
msgid ""
|
211 |
"Warning! Simple Membership plugin cannot process this login request to "
|
212 |
"prevent you from getting logged out of WP Admin accidentally."
|
213 |
msgstr ""
|
214 |
|
215 |
+
#: classes/class.swpm-auth.php:50
|
216 |
msgid ""
|
217 |
"You are logged into the site as an ADMIN user in this browser. First, logout "
|
218 |
"from WP Admin then you will be able to log in as a member."
|
219 |
msgstr ""
|
220 |
|
221 |
+
#: classes/class.swpm-auth.php:51
|
222 |
msgid ""
|
223 |
"Alternatively, you can use a different browser (where you are not logged-in "
|
224 |
"as ADMIN) to test the membership login."
|
225 |
msgstr ""
|
226 |
|
227 |
+
#: classes/class.swpm-auth.php:52
|
228 |
msgid ""
|
229 |
"Your normal visitors or members will never see this message. This message is "
|
230 |
"ONLY for ADMIN user."
|
231 |
msgstr ""
|
232 |
|
233 |
+
#: classes/class.swpm-auth.php:59
|
234 |
msgid "Captcha validation failed on login form."
|
235 |
msgstr ""
|
236 |
|
237 |
+
#: classes/class.swpm-auth.php:84
|
238 |
msgid "User Not Found."
|
239 |
msgstr ""
|
240 |
|
241 |
+
#: classes/class.swpm-auth.php:91
|
242 |
msgid "Password Empty or Invalid."
|
243 |
msgstr ""
|
244 |
|
245 |
+
#: classes/class.swpm-auth.php:124
|
246 |
msgid "Account is inactive."
|
247 |
msgstr ""
|
248 |
|
249 |
+
#: classes/class.swpm-auth.php:127 classes/class.swpm-auth.php:145
|
|
|
250 |
msgid "Account has expired."
|
251 |
msgstr ""
|
252 |
|
253 |
+
#: classes/class.swpm-auth.php:130
|
254 |
msgid "Account is pending."
|
255 |
msgstr ""
|
256 |
|
257 |
+
#: classes/class.swpm-auth.php:153
|
258 |
msgid "You are logged in as:"
|
259 |
msgstr ""
|
260 |
|
261 |
+
#: classes/class.swpm-auth.php:199
|
262 |
msgid "Logged Out Successfully."
|
263 |
msgstr ""
|
264 |
|
265 |
+
#: classes/class.swpm-auth.php:250
|
266 |
msgid "Session Expired."
|
267 |
msgstr ""
|
268 |
|
269 |
+
#: classes/class.swpm-auth.php:267
|
270 |
msgid "Please login again."
|
271 |
msgstr ""
|
272 |
|
273 |
+
#: classes/class.swpm-category-list.php:19 classes/class.swpm-members.php:24
|
274 |
+
#: classes/class.swpm-membership-levels.php:11
|
275 |
+
#: classes/class.swpm-membership-levels.php:21
|
276 |
+
#: classes/class.swpm-post-list.php:20
|
277 |
+
#: classes/admin-includes/class.swpm-payments-list-table.php:85
|
278 |
+
#: views/add.php:31 views/admin_member_form_common_part.php:2
|
279 |
+
#: views/edit.php:66
|
280 |
+
#: views/payments/payment-gateway/admin_braintree_buy_now_button.php:50
|
281 |
+
#: views/payments/payment-gateway/admin_paypal_buy_now_button.php:34
|
282 |
+
#: views/payments/payment-gateway/admin_paypal_buy_now_button.php:229
|
283 |
+
#: views/payments/payment-gateway/admin_paypal_subscription_button.php:35
|
284 |
+
#: views/payments/payment-gateway/admin_paypal_subscription_button.php:317
|
285 |
+
#: views/payments/payment-gateway/admin_stripe_buy_now_button.php:47
|
286 |
+
#: views/payments/payment-gateway/admin_stripe_buy_now_button.php:273
|
287 |
+
#: views/payments/payment-gateway/admin_stripe_subscription_button.php:99
|
288 |
msgid "Membership Level"
|
289 |
msgstr ""
|
290 |
|
291 |
+
#: classes/class.swpm-category-list.php:33
|
292 |
msgid "Category ID"
|
293 |
msgstr ""
|
294 |
|
295 |
+
#: classes/class.swpm-category-list.php:34
|
296 |
msgid "Category Name"
|
297 |
msgstr ""
|
298 |
|
299 |
+
#: classes/class.swpm-category-list.php:35
|
300 |
msgid "Category Type (Taxonomy)"
|
301 |
msgstr ""
|
302 |
|
303 |
+
#: classes/class.swpm-category-list.php:36
|
304 |
msgid "Description"
|
305 |
msgstr ""
|
306 |
|
307 |
+
#: classes/class.swpm-category-list.php:37
|
308 |
msgid "Count"
|
309 |
msgstr ""
|
310 |
|
311 |
+
#: classes/class.swpm-category-list.php:92
|
312 |
msgid "Category protection updated!"
|
313 |
msgstr ""
|
314 |
|
315 |
+
#: classes/class.swpm-category-list.php:130
|
316 |
msgid "No category found."
|
317 |
msgstr ""
|
318 |
|
319 |
+
#: classes/class.swpm-comment-form-related.php:15
|
320 |
msgid "Please login to comment."
|
321 |
msgstr ""
|
322 |
|
323 |
+
#: classes/class.swpm-comment-form-related.php:40
|
324 |
msgid "Please Login to Comment."
|
325 |
msgstr ""
|
326 |
|
327 |
+
#: classes/class.swpm-comment-form-related.php:79
|
328 |
msgid "Comments not allowed by a non-member."
|
329 |
msgstr ""
|
330 |
|
331 |
+
#: classes/class.swpm-form.php:29
|
332 |
msgid ""
|
333 |
"Wordpress account exists with given username. But given email doesn't match."
|
334 |
msgstr ""
|
335 |
|
336 |
+
#: classes/class.swpm-form.php:30
|
337 |
+
msgid ""
|
338 |
+
" Use a different username to complete the registration. If you want to use "
|
339 |
+
"that username then you must enter the correct email address associated with "
|
340 |
+
"the existing WP user to connect with that account."
|
341 |
+
msgstr ""
|
342 |
+
|
343 |
+
#: classes/class.swpm-form.php:36
|
344 |
msgid ""
|
345 |
"Wordpress account exists with given email. But given username doesn't match."
|
346 |
msgstr ""
|
347 |
|
348 |
+
#: classes/class.swpm-form.php:37
|
349 |
+
msgid ""
|
350 |
+
" Use a different email address to complete the registration. If you want to "
|
351 |
+
"use that email then you must enter the correct username associated with the "
|
352 |
+
"existing WP user to connect with that account."
|
353 |
+
msgstr ""
|
354 |
+
|
355 |
+
#: classes/class.swpm-form.php:47
|
356 |
msgid "Username is required"
|
357 |
msgstr ""
|
358 |
|
359 |
+
#: classes/class.swpm-form.php:51
|
360 |
msgid "Username contains invalid character"
|
361 |
msgstr ""
|
362 |
|
363 |
+
#: classes/class.swpm-form.php:59
|
364 |
msgid "Username already exists."
|
365 |
msgstr ""
|
366 |
|
367 |
+
#: classes/class.swpm-form.php:82
|
368 |
msgid "Password is required"
|
369 |
msgstr ""
|
370 |
|
371 |
+
#: classes/class.swpm-form.php:89
|
372 |
msgid "Password mismatch"
|
373 |
msgstr ""
|
374 |
|
375 |
+
#: classes/class.swpm-form.php:100
|
376 |
msgid "Email is required"
|
377 |
msgstr ""
|
378 |
|
379 |
+
#: classes/class.swpm-form.php:104
|
380 |
msgid "Email is invalid"
|
381 |
msgstr ""
|
382 |
|
383 |
+
#: classes/class.swpm-form.php:120
|
384 |
msgid "Email is already used."
|
385 |
msgstr ""
|
386 |
|
387 |
+
#: classes/class.swpm-form.php:178
|
388 |
msgid "Member since field is invalid"
|
389 |
msgstr ""
|
390 |
|
391 |
+
#: classes/class.swpm-form.php:189
|
392 |
msgid "Access starts field is invalid"
|
393 |
msgstr ""
|
394 |
|
395 |
+
#: classes/class.swpm-form.php:199
|
396 |
msgid "Gender field is invalid"
|
397 |
msgstr ""
|
398 |
|
399 |
+
#: classes/class.swpm-form.php:210
|
400 |
msgid "Account state field is invalid"
|
401 |
msgstr ""
|
402 |
|
403 |
+
#: classes/class.swpm-form.php:217
|
404 |
msgid "Invalid membership level"
|
405 |
msgstr ""
|
406 |
|
407 |
+
#: classes/class.swpm-front-registration.php:33
|
408 |
msgid ""
|
409 |
"Error! Invalid Request. Could not find a match for the given security code "
|
410 |
"and the user ID."
|
411 |
msgstr ""
|
412 |
|
413 |
+
#: classes/class.swpm-front-registration.php:45
|
414 |
+
#: classes/class.swpm-utils-misc.php:247 views/login.php:36
|
|
|
415 |
msgid "Join Us"
|
416 |
msgstr ""
|
417 |
|
418 |
+
#: classes/class.swpm-front-registration.php:47
|
419 |
msgid ""
|
420 |
"Free membership is disabled on this site. Please make a payment from the "
|
421 |
msgstr ""
|
422 |
|
423 |
+
#: classes/class.swpm-front-registration.php:49
|
424 |
+
msgid " page to pay for a premium membership."
|
425 |
+
msgstr ""
|
426 |
+
|
427 |
+
#: classes/class.swpm-front-registration.php:51
|
428 |
msgid ""
|
429 |
"You will receive a unique link via email after the payment. You will be able "
|
430 |
"to use that link to complete the premium membership registration."
|
431 |
msgstr ""
|
432 |
|
433 |
+
#: classes/class.swpm-front-registration.php:79
|
434 |
msgid "Security check: captcha validation failed."
|
435 |
msgstr ""
|
436 |
|
437 |
+
#: classes/class.swpm-front-registration.php:113
|
438 |
msgid "Registration Successful. "
|
439 |
msgstr ""
|
440 |
|
441 |
+
#: classes/class.swpm-front-registration.php:113
|
442 |
+
#: classes/class.swpm-utils-misc.php:246 classes/class.swpm-utils-misc.php:258
|
|
|
443 |
msgid "Please"
|
444 |
msgstr ""
|
445 |
|
446 |
+
#: classes/class.swpm-front-registration.php:113
|
447 |
+
#: classes/class.swpm-utils-misc.php:246 views/login.php:30
|
|
|
448 |
msgid "Login"
|
449 |
msgstr ""
|
450 |
|
451 |
+
#: classes/class.swpm-front-registration.php:126
|
452 |
msgid "Please correct the following"
|
453 |
msgstr ""
|
454 |
|
455 |
+
#: classes/class.swpm-front-registration.php:171
|
456 |
msgid "Membership Level Couldn't be found."
|
457 |
msgstr ""
|
458 |
|
459 |
+
#: classes/class.swpm-front-registration.php:222
|
460 |
msgid "Error! Nonce verification failed for front end profile edit."
|
461 |
msgstr ""
|
462 |
|
463 |
+
#: classes/class.swpm-front-registration.php:230
|
464 |
msgid "Profile updated successfully."
|
465 |
msgstr ""
|
466 |
|
467 |
+
#: classes/class.swpm-front-registration.php:239
|
468 |
msgid ""
|
469 |
"Profile updated successfully. You will need to re-login since you changed "
|
470 |
"your password."
|
471 |
msgstr ""
|
472 |
|
473 |
+
#: classes/class.swpm-front-registration.php:253
|
474 |
msgid "Please correct the following."
|
475 |
msgstr ""
|
476 |
|
477 |
+
#: classes/class.swpm-front-registration.php:265
|
478 |
msgid "Captcha validation failed."
|
479 |
msgstr ""
|
480 |
|
481 |
+
#: classes/class.swpm-front-registration.php:273
|
482 |
msgid "Email address not valid."
|
483 |
msgstr ""
|
484 |
|
485 |
+
#: classes/class.swpm-front-registration.php:284
|
486 |
msgid "No user found with that email address."
|
487 |
msgstr ""
|
488 |
|
489 |
+
#: classes/class.swpm-front-registration.php:285
|
490 |
+
#: classes/class.swpm-front-registration.php:314
|
491 |
msgid "Email Address: "
|
492 |
msgstr ""
|
493 |
|
494 |
+
#: classes/class.swpm-front-registration.php:313
|
495 |
msgid "New password has been sent to your email address."
|
496 |
msgstr ""
|
497 |
|
498 |
+
#: classes/class.swpm-init-time-tasks.php:117
|
499 |
msgid "Sorry, Nonce verification failed."
|
500 |
msgstr ""
|
501 |
|
502 |
+
#: classes/class.swpm-init-time-tasks.php:124
|
503 |
msgid "Sorry, Password didn't match."
|
504 |
msgstr ""
|
505 |
|
506 |
+
#: classes/class.swpm-level-form.php:47
|
507 |
msgid "Date format is not valid."
|
508 |
msgstr ""
|
509 |
|
510 |
+
#: classes/class.swpm-level-form.php:55
|
511 |
msgid "Access duration must be > 0."
|
512 |
msgstr ""
|
513 |
|
514 |
+
#: classes/class.swpm-members.php:10
|
515 |
msgid "Member"
|
516 |
msgstr ""
|
517 |
|
518 |
+
#: classes/class.swpm-members.php:19
|
519 |
+
#: classes/class.swpm-membership-levels.php:20
|
520 |
msgid "ID"
|
521 |
msgstr ""
|
522 |
|
523 |
+
#: classes/class.swpm-members.php:20 views/add.php:7 views/admin_add.php:11
|
524 |
+
#: views/admin_edit.php:19 views/edit.php:14
|
|
|
|
|
525 |
msgid "Username"
|
526 |
msgstr ""
|
527 |
|
528 |
+
#: classes/class.swpm-members.php:21
|
529 |
+
#: classes/admin-includes/class.swpm-payments-list-table.php:78
|
530 |
+
#: views/add.php:23 views/admin_member_form_common_part.php:15
|
531 |
+
#: views/edit.php:30
|
|
|
532 |
msgid "First Name"
|
533 |
msgstr ""
|
534 |
|
535 |
+
#: classes/class.swpm-members.php:22
|
536 |
+
#: classes/admin-includes/class.swpm-payments-list-table.php:79
|
537 |
+
#: views/add.php:27 views/admin_member_form_common_part.php:19
|
538 |
+
#: views/edit.php:34
|
|
|
539 |
msgid "Last Name"
|
540 |
msgstr ""
|
541 |
|
542 |
+
#: classes/class.swpm-members.php:23 views/add.php:11 views/edit.php:18
|
|
|
543 |
msgid "Email"
|
544 |
msgstr ""
|
545 |
|
546 |
+
#: classes/class.swpm-members.php:25
|
547 |
+
#: views/admin_member_form_common_part.php:11
|
548 |
msgid "Access Starts"
|
549 |
msgstr ""
|
550 |
|
551 |
+
#: classes/class.swpm-members.php:26
|
552 |
msgid "Account State"
|
553 |
msgstr ""
|
554 |
|
555 |
+
#: classes/class.swpm-members.php:44
|
556 |
+
#: classes/class.swpm-membership-levels.php:36
|
557 |
+
#: classes/admin-includes/class.swpm-payment-buttons-list-table.php:94
|
558 |
+
#: classes/admin-includes/class.swpm-payments-list-table.php:102
|
559 |
msgid "Delete"
|
560 |
msgstr ""
|
561 |
|
562 |
+
#: classes/class.swpm-members.php:45
|
563 |
msgid "Set Status to Active"
|
564 |
msgstr ""
|
565 |
|
566 |
+
#: classes/class.swpm-members.php:46
|
567 |
msgid "Set Status to Active and Notify"
|
568 |
msgstr ""
|
569 |
|
570 |
+
#: classes/class.swpm-members.php:47
|
571 |
msgid "Set Status to Inactive"
|
572 |
msgstr ""
|
573 |
|
574 |
+
#: classes/class.swpm-members.php:48
|
575 |
msgid "Set Status to Pending"
|
576 |
msgstr ""
|
577 |
|
578 |
+
#: classes/class.swpm-members.php:49
|
579 |
msgid "Set Status to Expired"
|
580 |
msgstr ""
|
581 |
|
582 |
+
#: classes/class.swpm-members.php:70
|
583 |
msgid "incomplete"
|
584 |
msgstr ""
|
585 |
|
586 |
+
#: classes/class.swpm-members.php:189
|
587 |
msgid "No member found."
|
588 |
msgstr ""
|
589 |
|
590 |
+
#: classes/class.swpm-members.php:335
|
591 |
msgid "Error! Nonce verification failed for user delete from admin end."
|
592 |
msgstr ""
|
593 |
|
594 |
+
#: classes/class.swpm-members.php:404 classes/class.swpm-members.php:434
|
|
|
595 |
msgid "Error! Please select a membership level first."
|
596 |
msgstr ""
|
597 |
|
598 |
+
#: classes/class.swpm-members.php:421
|
599 |
msgid "Membership level change operation completed successfully."
|
600 |
msgstr ""
|
601 |
|
602 |
+
#: classes/class.swpm-members.php:451
|
603 |
msgid "Access starts date change operation successfully completed."
|
604 |
msgstr ""
|
605 |
|
606 |
+
#: classes/class.swpm-members.php:460
|
607 |
msgid "Bulk Update Membership Level of Members"
|
608 |
msgstr ""
|
609 |
|
610 |
+
#: classes/class.swpm-members.php:463
|
611 |
msgid ""
|
612 |
"You can manually change the membership level of any member by editing the "
|
613 |
"record from the members menu. "
|
614 |
msgstr ""
|
615 |
|
616 |
+
#: classes/class.swpm-members.php:464
|
617 |
msgid ""
|
618 |
"You can use the following option to bulk update the membership level of "
|
619 |
"users who belong to the level you select below."
|
620 |
msgstr ""
|
621 |
|
622 |
+
#: classes/class.swpm-members.php:470 classes/class.swpm-members.php:518
|
|
|
623 |
msgid "Membership Level: "
|
624 |
msgstr ""
|
625 |
|
626 |
+
#: classes/class.swpm-members.php:474
|
627 |
msgid "Select Current Level"
|
628 |
msgstr ""
|
629 |
|
630 |
+
#: classes/class.swpm-members.php:477
|
631 |
msgid ""
|
632 |
"Select the current membership level (the membership level of all members who "
|
633 |
"are in this level will be updated)."
|
634 |
msgstr ""
|
635 |
|
636 |
+
#: classes/class.swpm-members.php:483
|
637 |
msgid "Level to Change to: "
|
638 |
msgstr ""
|
639 |
|
640 |
+
#: classes/class.swpm-members.php:487
|
641 |
msgid "Select Target Level"
|
642 |
msgstr ""
|
643 |
|
644 |
+
#: classes/class.swpm-members.php:490
|
645 |
msgid "Select the new membership level."
|
646 |
msgstr ""
|
647 |
|
648 |
+
#: classes/class.swpm-members.php:496
|
649 |
msgid "Bulk Change Membership Level"
|
650 |
msgstr ""
|
651 |
|
652 |
+
#: classes/class.swpm-members.php:506
|
653 |
msgid "Bulk Update Access Starts Date of Members"
|
654 |
msgstr ""
|
655 |
|
656 |
+
#: classes/class.swpm-members.php:510
|
657 |
msgid ""
|
658 |
"The access starts date of a member is set to the day the user registers. "
|
659 |
"This date value is used to calculate how long the member can access your "
|
661 |
"level. "
|
662 |
msgstr ""
|
663 |
|
664 |
+
#: classes/class.swpm-members.php:511
|
665 |
msgid ""
|
666 |
"You can manually set a specific access starts date value of all members who "
|
667 |
"belong to a particular level using the following option."
|
668 |
msgstr ""
|
669 |
|
670 |
+
#: classes/class.swpm-members.php:521
|
671 |
msgid "Select Level"
|
672 |
msgstr ""
|
673 |
|
674 |
+
#: classes/class.swpm-members.php:524
|
675 |
msgid ""
|
676 |
"Select the Membership level (the access start date of all members who are in "
|
677 |
"this level will be updated)."
|
678 |
msgstr ""
|
679 |
|
680 |
+
#: classes/class.swpm-members.php:533
|
681 |
msgid "Specify the access starts date value."
|
682 |
msgstr ""
|
683 |
|
684 |
+
#: classes/class.swpm-members.php:539
|
685 |
msgid "Bulk Change Access Starts Date"
|
686 |
msgstr ""
|
687 |
|
688 |
+
#: classes/class.swpm-members.php:574
|
689 |
msgid "Simple WP Membership::Members"
|
690 |
msgstr ""
|
691 |
|
692 |
+
#: classes/class.swpm-members.php:575
|
693 |
+
#: classes/class.swpm-membership-levels.php:225
|
694 |
+
#: views/admin_members_list.php:43
|
695 |
msgid "Add New"
|
696 |
msgstr ""
|
697 |
|
698 |
+
#: classes/class.swpm-members.php:580 views/admin_add.php:6
|
|
|
699 |
msgid "Add Member"
|
700 |
msgstr ""
|
701 |
|
702 |
+
#: classes/class.swpm-members.php:581
|
703 |
msgid "Bulk Operation"
|
704 |
msgstr ""
|
705 |
|
706 |
+
#: classes/class.swpm-membership-level.php:52
|
707 |
msgid ""
|
708 |
"Error! Nonce verification failed for membership level creation from admin "
|
709 |
"end."
|
710 |
msgstr ""
|
711 |
|
712 |
+
#: classes/class.swpm-membership-level.php:64
|
713 |
msgid "Membership Level Creation Successful."
|
714 |
msgstr ""
|
715 |
|
716 |
+
#: classes/class.swpm-membership-level.php:80
|
717 |
msgid ""
|
718 |
"Error! Nonce verification failed for membership level edit from admin end."
|
719 |
msgstr ""
|
720 |
|
721 |
+
#: classes/class.swpm-membership-level.php:92
|
722 |
msgid "Membership Level Updated Successfully."
|
723 |
msgstr ""
|
724 |
|
725 |
+
#: classes/class.swpm-membership-levels.php:22
|
726 |
msgid "Role"
|
727 |
msgstr ""
|
728 |
|
729 |
+
#: classes/class.swpm-membership-levels.php:23
|
730 |
msgid "Access Valid For/Until"
|
731 |
msgstr ""
|
732 |
|
733 |
+
#: classes/class.swpm-membership-levels.php:133
|
734 |
msgid "No membership levels found."
|
735 |
msgstr ""
|
736 |
|
737 |
+
#: classes/class.swpm-membership-levels.php:196
|
738 |
msgid ""
|
739 |
"Error! Nonce verification failed for membership level delete from admin end."
|
740 |
msgstr ""
|
741 |
|
742 |
+
#: classes/class.swpm-membership-levels.php:215
|
743 |
+
#: views/admin_members_list.php:30
|
744 |
+
#: views/payments/admin_all_payment_transactions.php:16
|
745 |
msgid "Search"
|
746 |
msgstr ""
|
747 |
|
748 |
+
#: classes/class.swpm-membership-levels.php:260
|
749 |
msgid "Simple WP Membership::Membership Levels"
|
750 |
msgstr ""
|
751 |
|
752 |
+
#: classes/class.swpm-membership-levels.php:265
|
753 |
msgid "Add Level"
|
754 |
msgstr ""
|
755 |
|
756 |
+
#: classes/class.swpm-membership-levels.php:266
|
757 |
msgid "Manage Content Protection"
|
758 |
msgstr ""
|
759 |
|
760 |
+
#: classes/class.swpm-membership-levels.php:267
|
761 |
msgid "Category Protection"
|
762 |
msgstr ""
|
763 |
|
764 |
+
#: classes/class.swpm-membership-levels.php:268
|
765 |
+
msgid "Post and Page Protection"
|
766 |
+
msgstr ""
|
767 |
+
|
768 |
+
#: classes/class.swpm-post-list.php:43 classes/class.swpm-post-list.php:52
|
769 |
+
#: classes/class.swpm-post-list.php:62
|
770 |
+
#: classes/admin-includes/class.swpm-payments-list-table.php:81
|
771 |
+
msgid "Date"
|
772 |
+
msgstr ""
|
773 |
+
|
774 |
+
#: classes/class.swpm-post-list.php:44 classes/class.swpm-post-list.php:53
|
775 |
+
#: classes/class.swpm-post-list.php:63
|
776 |
+
msgid "Title"
|
777 |
+
msgstr ""
|
778 |
+
|
779 |
+
#: classes/class.swpm-post-list.php:45 classes/class.swpm-post-list.php:54
|
780 |
+
#: classes/class.swpm-post-list.php:64
|
781 |
+
msgid "Author"
|
782 |
+
msgstr ""
|
783 |
+
|
784 |
+
#: classes/class.swpm-post-list.php:46 classes/class.swpm-post-list.php:56
|
785 |
+
#: classes/class.swpm-post-list.php:66
|
786 |
+
msgid "Status"
|
787 |
+
msgstr ""
|
788 |
+
|
789 |
+
#: classes/class.swpm-post-list.php:55
|
790 |
+
msgid "Categories"
|
791 |
+
msgstr ""
|
792 |
+
|
793 |
+
#: classes/class.swpm-post-list.php:65
|
794 |
+
msgid "Type"
|
795 |
+
msgstr ""
|
796 |
+
|
797 |
+
#: classes/class.swpm-post-list.php:125
|
798 |
+
msgid "Protection settings updated!"
|
799 |
+
msgstr ""
|
800 |
+
|
801 |
+
#: classes/class.swpm-post-list.php:230
|
802 |
+
msgid "No items found."
|
803 |
+
msgstr ""
|
804 |
+
|
805 |
+
#: classes/class.swpm-settings.php:26 classes/class.swpm-settings.php:54
|
806 |
msgid "General Settings"
|
807 |
msgstr ""
|
808 |
|
809 |
+
#: classes/class.swpm-settings.php:27
|
810 |
msgid "Payment Settings"
|
811 |
msgstr ""
|
812 |
|
813 |
+
#: classes/class.swpm-settings.php:28
|
814 |
msgid "Email Settings"
|
815 |
msgstr ""
|
816 |
|
817 |
+
#: classes/class.swpm-settings.php:29
|
818 |
msgid "Tools"
|
819 |
msgstr ""
|
820 |
|
821 |
+
#: classes/class.swpm-settings.php:30 classes/class.swpm-settings.php:180
|
|
|
822 |
msgid "Advanced Settings"
|
823 |
msgstr ""
|
824 |
|
825 |
+
#: classes/class.swpm-settings.php:31
|
826 |
msgid "Addons Settings"
|
827 |
msgstr ""
|
828 |
|
829 |
+
#: classes/class.swpm-settings.php:53
|
830 |
msgid "Plugin Documentation"
|
831 |
msgstr ""
|
832 |
|
833 |
+
#: classes/class.swpm-settings.php:55
|
834 |
msgid "Enable Free Membership"
|
835 |
msgstr ""
|
836 |
|
837 |
+
#: classes/class.swpm-settings.php:56
|
838 |
msgid ""
|
839 |
"Enable/disable registration for free membership level. When you enable this "
|
840 |
"option, make sure to specify a free membership level ID in the field below."
|
841 |
msgstr ""
|
842 |
|
843 |
+
#: classes/class.swpm-settings.php:57
|
844 |
msgid "Free Membership Level ID"
|
845 |
msgstr ""
|
846 |
|
847 |
+
#: classes/class.swpm-settings.php:58
|
848 |
msgid "Assign free membership level ID"
|
849 |
msgstr ""
|
850 |
|
851 |
+
#: classes/class.swpm-settings.php:59
|
852 |
msgid "Enable More Tag Protection"
|
853 |
msgstr ""
|
854 |
|
855 |
+
#: classes/class.swpm-settings.php:60
|
856 |
msgid ""
|
857 |
"Enables or disables \"more\" tag protection in the posts and pages. Anything "
|
858 |
"after the More tag is protected. Anything before the more tag is teaser "
|
859 |
"content."
|
860 |
msgstr ""
|
861 |
|
862 |
+
#: classes/class.swpm-settings.php:61
|
863 |
msgid "Hide Adminbar"
|
864 |
msgstr ""
|
865 |
|
866 |
+
#: classes/class.swpm-settings.php:62
|
867 |
msgid ""
|
868 |
"WordPress shows an admin toolbar to the logged in users of the site. Check "
|
869 |
"this if you want to hide that admin toolbar in the frontend of your site."
|
870 |
msgstr ""
|
871 |
|
872 |
+
#: classes/class.swpm-settings.php:63
|
873 |
msgid "Show Adminbar to Admin"
|
874 |
msgstr ""
|
875 |
|
876 |
+
#: classes/class.swpm-settings.php:64
|
877 |
msgid ""
|
878 |
"Use this option if you want to show the admin toolbar to admin users only. "
|
879 |
"The admin toolbar will be hidden for all other users."
|
880 |
msgstr ""
|
881 |
|
882 |
+
#: classes/class.swpm-settings.php:65
|
883 |
msgid "Disable Access to WP Dashboard"
|
884 |
msgstr ""
|
885 |
|
886 |
+
#: classes/class.swpm-settings.php:66
|
887 |
msgid ""
|
888 |
"WordPress allows a sandard wp user to be able to go to the wp-admin URL and "
|
889 |
"access his profile from the wp dashbaord. Using this option will prevent any "
|
890 |
"non admin users from going to the wp dashboard."
|
891 |
msgstr ""
|
892 |
|
893 |
+
#: classes/class.swpm-settings.php:68
|
894 |
msgid "Default Account Status"
|
895 |
msgstr ""
|
896 |
|
897 |
+
#: classes/class.swpm-settings.php:71
|
898 |
msgid ""
|
899 |
"Select the default account status for newly registered users. If you want to "
|
900 |
"manually approve the members then you can set the status to \"Pending\"."
|
901 |
msgstr ""
|
902 |
|
903 |
+
#: classes/class.swpm-settings.php:73
|
904 |
msgid "Members Must be Logged in to Comment"
|
905 |
msgstr ""
|
906 |
|
907 |
+
#: classes/class.swpm-settings.php:74
|
908 |
msgid ""
|
909 |
"Enable this option if you only want the members of the site to be able to "
|
910 |
"post a comment."
|
911 |
msgstr ""
|
912 |
|
913 |
+
#: classes/class.swpm-settings.php:83
|
914 |
msgid "Pages Settings"
|
915 |
msgstr ""
|
916 |
|
917 |
+
#: classes/class.swpm-settings.php:84
|
918 |
msgid "Login Page URL"
|
919 |
msgstr ""
|
920 |
|
921 |
+
#: classes/class.swpm-settings.php:86
|
922 |
msgid "Registration Page URL"
|
923 |
msgstr ""
|
924 |
|
925 |
+
#: classes/class.swpm-settings.php:88
|
926 |
msgid "Join Us Page URL"
|
927 |
msgstr ""
|
928 |
|
929 |
+
#: classes/class.swpm-settings.php:90
|
930 |
msgid "Edit Profile Page URL"
|
931 |
msgstr ""
|
932 |
|
933 |
+
#: classes/class.swpm-settings.php:92
|
934 |
msgid "Password Reset Page URL"
|
935 |
msgstr ""
|
936 |
|
937 |
+
#: classes/class.swpm-settings.php:95
|
938 |
msgid "Test & Debug Settings"
|
939 |
msgstr ""
|
940 |
|
941 |
+
#: classes/class.swpm-settings.php:97
|
942 |
msgid "Check this option to enable debug logging."
|
943 |
msgstr ""
|
944 |
|
945 |
+
#: classes/class.swpm-settings.php:102
|
946 |
msgid "Enable Sandbox Testing"
|
947 |
msgstr ""
|
948 |
|
949 |
+
#: classes/class.swpm-settings.php:103
|
950 |
msgid "Enable this option if you want to do sandbox payment testing."
|
951 |
msgstr ""
|
952 |
|
953 |
+
#: classes/class.swpm-settings.php:116
|
954 |
+
msgid "Email Settings Overview"
|
|
|
|
|
955 |
msgstr ""
|
956 |
|
957 |
+
#: classes/class.swpm-settings.php:117
|
958 |
msgid "Email Misc. Settings"
|
959 |
msgstr ""
|
960 |
|
961 |
+
#: classes/class.swpm-settings.php:119
|
962 |
msgid "From Email Address"
|
963 |
msgstr ""
|
964 |
|
965 |
+
#: classes/class.swpm-settings.php:123
|
966 |
msgid "Email Settings (Prompt to Complete Registration )"
|
967 |
msgstr ""
|
968 |
|
969 |
+
#: classes/class.swpm-settings.php:124 classes/class.swpm-settings.php:137
|
970 |
+
#: classes/class.swpm-settings.php:155 classes/class.swpm-settings.php:160
|
971 |
+
#: classes/class.swpm-settings.php:165
|
|
|
|
|
972 |
msgid "Email Subject"
|
973 |
msgstr ""
|
974 |
|
975 |
+
#: classes/class.swpm-settings.php:126 classes/class.swpm-settings.php:139
|
976 |
+
#: classes/class.swpm-settings.php:156 classes/class.swpm-settings.php:161
|
977 |
+
#: classes/class.swpm-settings.php:166
|
|
|
|
|
978 |
msgid "Email Body"
|
979 |
msgstr ""
|
980 |
|
981 |
+
#: classes/class.swpm-settings.php:130
|
982 |
msgid ""
|
983 |
"Enter the email address where you want the admin notification email to be "
|
984 |
"sent to."
|
985 |
msgstr ""
|
986 |
|
987 |
+
#: classes/class.swpm-settings.php:131
|
988 |
msgid ""
|
989 |
" You can put multiple email addresses separated by comma (,) in the above "
|
990 |
"field to send the notification to multiple email addresses."
|
991 |
msgstr ""
|
992 |
|
993 |
+
#: classes/class.swpm-settings.php:133
|
994 |
msgid "Enter the subject for the admin notification email."
|
995 |
msgstr ""
|
996 |
|
997 |
+
#: classes/class.swpm-settings.php:134
|
998 |
msgid ""
|
999 |
"This email will be sent to the admin when a new user completes the "
|
1000 |
"membership registration. Only works if you have enabled the \"Send "
|
1001 |
"Notification to Admin\" option above."
|
1002 |
msgstr ""
|
1003 |
|
1004 |
+
#: classes/class.swpm-settings.php:136
|
1005 |
msgid "Email Settings (Registration Complete)"
|
1006 |
msgstr ""
|
1007 |
|
1008 |
+
#: classes/class.swpm-settings.php:141
|
1009 |
msgid "Send Notification to Admin"
|
1010 |
msgstr ""
|
1011 |
|
1012 |
+
#: classes/class.swpm-settings.php:142
|
1013 |
msgid ""
|
1014 |
"Enable this option if you want the admin to receive a notification when a "
|
1015 |
"member registers."
|
1016 |
msgstr ""
|
1017 |
|
1018 |
+
#: classes/class.swpm-settings.php:143
|
1019 |
msgid "Admin Email Address"
|
1020 |
msgstr ""
|
1021 |
|
1022 |
+
#: classes/class.swpm-settings.php:145
|
1023 |
msgid "Admin Notification Email Subject"
|
1024 |
msgstr ""
|
1025 |
|
1026 |
+
#: classes/class.swpm-settings.php:147
|
1027 |
msgid "Admin Notification Email Body"
|
1028 |
msgstr ""
|
1029 |
|
1030 |
+
#: classes/class.swpm-settings.php:150
|
1031 |
msgid "Send Email to Member When Added via Admin Dashboard"
|
1032 |
msgstr ""
|
1033 |
|
1034 |
+
#: classes/class.swpm-settings.php:154
|
1035 |
msgid "Email Settings (Password Reset)"
|
1036 |
msgstr ""
|
1037 |
|
1038 |
+
#: classes/class.swpm-settings.php:159
|
1039 |
msgid " Email Settings (Account Upgrade Notification)"
|
1040 |
msgstr ""
|
1041 |
|
1042 |
+
#: classes/class.swpm-settings.php:164
|
1043 |
msgid " Email Settings (Bulk Account Activate Notification)"
|
1044 |
msgstr ""
|
1045 |
|
1046 |
+
#: classes/class.swpm-settings.php:182
|
1047 |
msgid "Enable Expired Account Login"
|
1048 |
msgstr ""
|
1049 |
|
1050 |
+
#: classes/class.swpm-settings.php:183
|
1051 |
msgid ""
|
1052 |
"When enabled, expired members will be able to log into the system but won't "
|
1053 |
"be able to view any protected content. This allows them to easily renew "
|
1054 |
"their account by making another payment."
|
1055 |
msgstr ""
|
1056 |
|
1057 |
+
#: classes/class.swpm-settings.php:185
|
1058 |
msgid "Membership Renewal URL"
|
1059 |
msgstr ""
|
1060 |
|
1061 |
+
#: classes/class.swpm-settings.php:186
|
1062 |
msgid ""
|
1063 |
"You can create a renewal page for your site. Read <a href=\"https://simple-"
|
1064 |
"membership-plugin.com/creating-membership-renewal-button/\" target=\"_blank"
|
1065 |
"\">this documentation</a> to learn how to create a renewal page."
|
1066 |
msgstr ""
|
1067 |
|
1068 |
+
#: classes/class.swpm-settings.php:188
|
1069 |
+
msgid "After Registration Redirect URL"
|
1070 |
+
msgstr ""
|
1071 |
+
|
1072 |
+
#: classes/class.swpm-settings.php:189
|
1073 |
+
msgid ""
|
1074 |
+
"You can enter an URL here to redirect the members to this page after they "
|
1075 |
+
"submit the registration form. Read <a href=\"https://simple-membership-"
|
1076 |
+
"plugin.com/configure-registration-redirect-members/\" target=\"_blank\">this "
|
1077 |
+
"documentation</a> to learn how to setup after registration redirect."
|
1078 |
+
msgstr ""
|
1079 |
+
|
1080 |
+
#: classes/class.swpm-settings.php:191
|
1081 |
msgid "Allow Account Deletion"
|
1082 |
msgstr ""
|
1083 |
|
1084 |
+
#: classes/class.swpm-settings.php:192
|
1085 |
msgid "Allow users to delete their accounts."
|
1086 |
msgstr ""
|
1087 |
|
1088 |
+
#: classes/class.swpm-settings.php:194
|
1089 |
+
msgid "Force WP User Synchronization"
|
1090 |
+
msgstr ""
|
1091 |
+
|
1092 |
+
#: classes/class.swpm-settings.php:195
|
1093 |
+
msgid ""
|
1094 |
+
"Enable this option if you want to force the member login to be synchronized "
|
1095 |
+
"with WP user account. This can be useful if you are using another plugin "
|
1096 |
+
"that uses WP user records. For example: bbPress plugin."
|
1097 |
+
msgstr ""
|
1098 |
+
|
1099 |
+
#: classes/class.swpm-settings.php:197
|
1100 |
msgid "Use WordPress Timezone"
|
1101 |
msgstr ""
|
1102 |
|
1103 |
+
#: classes/class.swpm-settings.php:198
|
1104 |
msgid ""
|
1105 |
"Use this option if you want to use the timezone value specified in your "
|
1106 |
"WordPress General Settings interface."
|
1107 |
msgstr ""
|
1108 |
|
1109 |
+
#: classes/class.swpm-settings.php:200
|
1110 |
msgid "Auto Delete Pending Account"
|
1111 |
msgstr ""
|
1112 |
|
1113 |
+
#: classes/class.swpm-settings.php:203
|
1114 |
msgid "Select how long you want to keep \"pending\" account."
|
1115 |
msgstr ""
|
1116 |
|
1117 |
+
#: classes/class.swpm-settings.php:205
|
1118 |
msgid "Admin Dashboard Access Permission"
|
1119 |
msgstr ""
|
1120 |
|
1121 |
+
#: classes/class.swpm-settings.php:208
|
1122 |
msgid ""
|
1123 |
"SWPM admin dashboard is accessible to admin users only (just like any other "
|
1124 |
"plugin). You can allow users with other WP user role to access the SWPM "
|
1125 |
"admin dashboard by selecting a value here."
|
1126 |
msgstr ""
|
1127 |
|
1128 |
+
#: classes/class.swpm-settings.php:298 classes/class.swpm-settings.php:344
|
1129 |
+
#: classes/class.swpm-settings.php:369
|
1130 |
+
msgid "Settings updated!"
|
1131 |
+
msgstr ""
|
1132 |
+
|
1133 |
+
#: classes/class.swpm-settings.php:303
|
1134 |
msgid "General Plugin Settings."
|
1135 |
msgstr ""
|
1136 |
|
1137 |
+
#: classes/class.swpm-settings.php:307
|
1138 |
msgid "Page Setup and URL Related settings."
|
1139 |
msgstr ""
|
1140 |
|
1141 |
+
#: classes/class.swpm-settings.php:310
|
1142 |
+
msgid ""
|
1143 |
+
"The following pages are required for the plugin to function correctly. These "
|
1144 |
+
"pages were automatically created by the plugin at install time."
|
1145 |
+
msgstr ""
|
1146 |
+
|
1147 |
+
#: classes/class.swpm-settings.php:315
|
1148 |
msgid "Testing and Debug Related Settings."
|
1149 |
msgstr ""
|
1150 |
|
1151 |
+
#: classes/class.swpm-settings.php:319
|
1152 |
msgid ""
|
1153 |
"This email will be sent to your users when they complete the registration "
|
1154 |
"and become a member."
|
1155 |
msgstr ""
|
1156 |
|
1157 |
+
#: classes/class.swpm-settings.php:323
|
1158 |
msgid ""
|
1159 |
"This email will be sent to your users when they use the password reset "
|
1160 |
"functionality."
|
1161 |
msgstr ""
|
1162 |
|
1163 |
+
#: classes/class.swpm-settings.php:329
|
1164 |
+
msgid ""
|
1165 |
+
"This interface lets you custsomize the various emails that gets sent to your "
|
1166 |
+
"members for various actions. The default settings should be good to get your "
|
1167 |
+
"started."
|
1168 |
+
msgstr ""
|
1169 |
+
|
1170 |
+
#: classes/class.swpm-settings.php:333
|
1171 |
+
msgid "This documentation"
|
1172 |
+
msgstr ""
|
1173 |
+
|
1174 |
+
#: classes/class.swpm-settings.php:334
|
1175 |
+
msgid ""
|
1176 |
+
" explains what email merge tags you can use in the email body field to "
|
1177 |
+
"customize it (if you want to)."
|
1178 |
+
msgstr ""
|
1179 |
+
|
1180 |
+
#: classes/class.swpm-settings.php:347
|
1181 |
msgid "Settings in this section apply to all emails."
|
1182 |
msgstr ""
|
1183 |
|
1184 |
+
#: classes/class.swpm-settings.php:351
|
1185 |
msgid ""
|
1186 |
"This email will be sent to your users after account upgrade (when an "
|
1187 |
"existing member pays for a new membership level)."
|
1188 |
msgstr ""
|
1189 |
|
1190 |
+
#: classes/class.swpm-settings.php:355
|
1191 |
msgid ""
|
1192 |
"This email will be sent to your members when you use the bulk account "
|
1193 |
"activate and notify action."
|
1194 |
msgstr ""
|
1195 |
|
1196 |
+
#: classes/class.swpm-settings.php:356
|
1197 |
+
msgid ""
|
1198 |
+
" You cannot use email marge tags in this email. You can only use generic "
|
1199 |
+
"text."
|
1200 |
+
msgstr ""
|
1201 |
+
|
1202 |
+
#: classes/class.swpm-settings.php:361
|
1203 |
msgid ""
|
1204 |
"This email will be sent to prompt users to complete registration after the "
|
1205 |
"payment."
|
1206 |
msgstr ""
|
1207 |
|
1208 |
+
#: classes/class.swpm-settings.php:372
|
1209 |
msgid "This page allows you to configure some advanced features of the plugin."
|
1210 |
msgstr ""
|
1211 |
|
1212 |
+
#: classes/class.swpm-settings.php:483
|
1213 |
msgid "Simple WP Membership::Settings"
|
1214 |
msgstr ""
|
1215 |
|
1216 |
+
#: classes/class.swpm-utils-member.php:21
|
1217 |
+
#: classes/class.swpm-utils-member.php:29
|
1218 |
+
#: classes/class.swpm-utils-member.php:37
|
1219 |
+
#: classes/class.swpm-utils-member.php:47
|
1220 |
msgid "User is not logged in."
|
1221 |
msgstr ""
|
1222 |
|
1223 |
+
#: classes/class.swpm-utils-misc.php:50
|
1224 |
msgid "Registration"
|
1225 |
msgstr ""
|
1226 |
|
1227 |
+
#: classes/class.swpm-utils-misc.php:73
|
1228 |
msgid "Member Login"
|
1229 |
msgstr ""
|
1230 |
|
1231 |
+
#: classes/class.swpm-utils-misc.php:96
|
1232 |
msgid "Profile"
|
1233 |
msgstr ""
|
1234 |
|
1235 |
+
#: classes/class.swpm-utils-misc.php:119
|
1236 |
msgid "Password Reset"
|
1237 |
msgstr ""
|
1238 |
|
1239 |
+
#: classes/class.swpm-utils-misc.php:247
|
1240 |
msgid "Not a Member?"
|
1241 |
msgstr ""
|
1242 |
|
1243 |
+
#: classes/class.swpm-utils-misc.php:258
|
1244 |
msgid "renew"
|
1245 |
msgstr ""
|
1246 |
|
1247 |
+
#: classes/class.swpm-utils-misc.php:258
|
1248 |
msgid " your account to gain access to this content."
|
1249 |
msgstr ""
|
1250 |
|
1251 |
+
#: classes/class.swpm-utils-misc.php:316 classes/class.swpm-utils-misc.php:322
|
|
|
1252 |
msgid "Error! This action ("
|
1253 |
msgstr ""
|
1254 |
|
1255 |
+
#: classes/class.swpm-utils-misc.php:394
|
1256 |
+
msgid "(Please Select)"
|
1257 |
+
msgstr ""
|
1258 |
+
|
1259 |
+
#: classes/class.swpm-utils-template.php:38
|
1260 |
msgid "Error! Failed to find a template path for the specified template: "
|
1261 |
msgstr ""
|
1262 |
|
1263 |
+
#: classes/class.swpm-utils.php:100
|
1264 |
msgid "Never"
|
1265 |
msgstr ""
|
1266 |
|
1267 |
+
#: classes/class.swpm-utils.php:115 views/admin_members_list.php:19
|
1268 |
msgid "Active"
|
1269 |
msgstr ""
|
1270 |
|
1271 |
+
#: classes/class.swpm-utils.php:116 views/admin_members_list.php:20
|
1272 |
msgid "Inactive"
|
1273 |
msgstr ""
|
1274 |
|
1275 |
+
#: classes/class.swpm-utils.php:117 views/admin_members_list.php:21
|
1276 |
msgid "Pending"
|
1277 |
msgstr ""
|
1278 |
|
1279 |
+
#: classes/class.swpm-utils.php:118 views/admin_members_list.php:23
|
1280 |
msgid "Expired"
|
1281 |
msgstr ""
|
1282 |
|
1283 |
+
#: classes/class.swpm-utils.php:459
|
1284 |
msgid "Delete Account"
|
1285 |
msgstr ""
|
1286 |
|
1287 |
+
#: classes/admin-includes/class.swpm-payment-buttons-list-table.php:75
|
1288 |
msgid "Payment Button ID"
|
1289 |
msgstr ""
|
1290 |
|
1291 |
+
#: classes/admin-includes/class.swpm-payment-buttons-list-table.php:76
|
1292 |
msgid "Payment Button Title"
|
1293 |
msgstr ""
|
1294 |
|
1295 |
+
#: classes/admin-includes/class.swpm-payment-buttons-list-table.php:77
|
1296 |
msgid "Membership Level ID"
|
1297 |
msgstr ""
|
1298 |
|
1299 |
+
#: classes/admin-includes/class.swpm-payment-buttons-list-table.php:78
|
1300 |
msgid "Button Type"
|
1301 |
msgstr ""
|
1302 |
|
1303 |
+
#: classes/admin-includes/class.swpm-payment-buttons-list-table.php:79
|
1304 |
msgid "Button Shortcode"
|
1305 |
msgstr ""
|
1306 |
|
1307 |
+
#: classes/admin-includes/class.swpm-payment-buttons-list-table.php:127
|
1308 |
+
#: views/admin_members_list.php:9
|
1309 |
+
#: views/payments/admin_all_payment_transactions.php:32
|
1310 |
msgid "The selected entry was deleted!"
|
1311 |
msgstr ""
|
1312 |
|
1313 |
+
#: classes/admin-includes/class.swpm-payments-admin-menu.php:21
|
1314 |
msgid "Simple Membership::Payments"
|
1315 |
msgstr ""
|
1316 |
|
1317 |
+
#: classes/admin-includes/class.swpm-payments-admin-menu.php:25
|
1318 |
msgid "Transactions"
|
1319 |
msgstr ""
|
1320 |
|
1321 |
+
#: classes/admin-includes/class.swpm-payments-admin-menu.php:26
|
1322 |
msgid "Manage Payment Buttons"
|
1323 |
msgstr ""
|
1324 |
|
1325 |
+
#: classes/admin-includes/class.swpm-payments-admin-menu.php:27
|
1326 |
+
#: views/payments/admin_payment_buttons.php:27
|
1327 |
msgid "Create New Button"
|
1328 |
msgstr ""
|
1329 |
|
1330 |
+
#: classes/admin-includes/class.swpm-payments-list-table.php:57
|
1331 |
msgid "View Profile"
|
1332 |
msgstr ""
|
1333 |
|
1334 |
+
#: classes/admin-includes/class.swpm-payments-list-table.php:76
|
1335 |
msgid "Row ID"
|
1336 |
msgstr ""
|
1337 |
|
1338 |
+
#: classes/admin-includes/class.swpm-payments-list-table.php:77
|
1339 |
+
#: views/forgot_password.php:5
|
1340 |
msgid "Email Address"
|
1341 |
msgstr ""
|
1342 |
|
1343 |
+
#: classes/admin-includes/class.swpm-payments-list-table.php:80
|
1344 |
msgid "Member Profile"
|
1345 |
msgstr ""
|
1346 |
|
1347 |
+
#: classes/admin-includes/class.swpm-payments-list-table.php:82
|
|
|
|
|
|
|
|
|
1348 |
msgid "Transaction ID"
|
1349 |
msgstr ""
|
1350 |
|
1351 |
+
#: classes/admin-includes/class.swpm-payments-list-table.php:83
|
1352 |
msgid "Subscriber ID"
|
1353 |
msgstr ""
|
1354 |
|
1355 |
+
#: classes/admin-includes/class.swpm-payments-list-table.php:84
|
1356 |
msgid "Amount"
|
1357 |
msgstr ""
|
1358 |
|
1359 |
+
#: classes/shortcode-related/class.swpm-shortcodes-handler.php:57
|
1360 |
msgid "Your membership profile will be updated to reflect the payment."
|
1361 |
msgstr ""
|
1362 |
|
1363 |
+
#: classes/shortcode-related/class.swpm-shortcodes-handler.php:58
|
1364 |
msgid "Your profile username: "
|
1365 |
msgstr ""
|
1366 |
|
1367 |
+
#: classes/shortcode-related/class.swpm-shortcodes-handler.php:70
|
1368 |
msgid "Click on the following link to complete the registration."
|
1369 |
msgstr ""
|
1370 |
|
1371 |
+
#: classes/shortcode-related/class.swpm-shortcodes-handler.php:71
|
1372 |
msgid "Click here to complete your paid registration"
|
1373 |
msgstr ""
|
1374 |
|
1375 |
+
#: classes/shortcode-related/class.swpm-shortcodes-handler.php:76
|
1376 |
msgid ""
|
1377 |
"If you have just made a membership payment then your payment is yet to be "
|
1378 |
"processed. Please check back in a few minutes. An email will be sent to you "
|
1379 |
"with the details shortly."
|
1380 |
msgstr ""
|
1381 |
|
1382 |
+
#: classes/shortcode-related/class.swpm-shortcodes-handler.php:90
|
1383 |
msgid "Expiry: "
|
1384 |
msgstr ""
|
1385 |
|
1386 |
+
#: classes/shortcode-related/class.swpm-shortcodes-handler.php:92
|
1387 |
msgid "You are not logged-in as a member"
|
1388 |
msgstr ""
|
1389 |
|
1390 |
+
#: views/add.php:15 views/admin_add.php:19 views/admin_edit.php:44
|
1391 |
+
#: views/edit.php:22 views/login.php:17
|
|
|
1392 |
msgid "Password"
|
1393 |
msgstr ""
|
1394 |
|
1395 |
+
#: views/add.php:19 views/edit.php:26
|
1396 |
msgid "Repeat Password"
|
1397 |
msgstr ""
|
1398 |
|
1399 |
+
#: views/add.php:53
|
1400 |
msgid "Register"
|
1401 |
msgstr ""
|
1402 |
|
1403 |
+
#: views/admin_add.php:7
|
1404 |
msgid "Create a brand new user and add it to this site."
|
1405 |
msgstr ""
|
1406 |
|
1407 |
+
#: views/admin_add.php:11 views/admin_add.php:15 views/admin_add_level.php:12
|
1408 |
+
#: views/admin_add_level.php:16 views/admin_add_level.php:20
|
1409 |
+
#: views/admin_edit.php:19 views/admin_edit.php:40
|
1410 |
+
#: views/admin_edit_level.php:16 views/admin_edit_level.php:20
|
1411 |
+
#: views/admin_edit_level.php:24
|
|
|
|
|
|
|
|
|
|
|
1412 |
msgid "(required)"
|
1413 |
msgstr ""
|
1414 |
|
1415 |
+
#: views/admin_add.php:15 views/admin_edit.php:40
|
|
|
1416 |
msgid "E-mail"
|
1417 |
msgstr ""
|
1418 |
|
1419 |
+
#: views/admin_add.php:19
|
1420 |
msgid "(twice, required)"
|
1421 |
msgstr ""
|
1422 |
|
1423 |
+
#: views/admin_add.php:24 views/admin_edit.php:48
|
|
|
1424 |
msgid "Strength indicator"
|
1425 |
msgstr ""
|
1426 |
|
1427 |
+
#: views/admin_add.php:25 views/admin_edit.php:49
|
|
|
1428 |
msgid ""
|
1429 |
"Hint: The password should be at least seven characters long. To make it "
|
1430 |
"stronger, use upper and lower case letters, numbers and symbols like ! \" ? "
|
1431 |
"$ % ^ & )."
|
1432 |
msgstr ""
|
1433 |
|
1434 |
+
#: views/admin_add.php:29 views/admin_edit.php:53 views/loggedin.php:10
|
|
|
|
|
1435 |
msgid "Account Status"
|
1436 |
msgstr ""
|
1437 |
|
1438 |
+
#: views/admin_add.php:39
|
1439 |
msgid "Add New Member "
|
1440 |
msgstr ""
|
1441 |
|
1442 |
+
#: views/admin_addon_settings.php:3
|
1443 |
msgid ""
|
1444 |
"Some of the simple membership plugin's addon settings and options will be "
|
1445 |
"displayed here (if you have them)"
|
1446 |
msgstr ""
|
1447 |
|
1448 |
+
#: views/admin_addon_settings.php:8
|
1449 |
msgid "Save Changes"
|
1450 |
msgstr ""
|
1451 |
|
1452 |
+
#: views/admin_add_level.php:6
|
1453 |
+
msgid "Add Membership Level"
|
1454 |
+
msgstr ""
|
1455 |
+
|
1456 |
+
#: views/admin_add_level.php:7
|
1457 |
msgid "Create new membership level."
|
1458 |
msgstr ""
|
1459 |
|
1460 |
+
#: views/admin_add_level.php:12 views/admin_edit_level.php:16
|
|
|
1461 |
msgid "Membership Level Name"
|
1462 |
msgstr ""
|
1463 |
|
1464 |
+
#: views/admin_add_level.php:16 views/admin_edit_level.php:20
|
|
|
1465 |
msgid "Default WordPress Role"
|
1466 |
msgstr ""
|
1467 |
|
1468 |
+
#: views/admin_add_level.php:20 views/admin_edit_level.php:24
|
|
|
1469 |
msgid "Access Duration"
|
1470 |
msgstr ""
|
1471 |
|
1472 |
+
#: views/admin_add_level.php:23
|
1473 |
msgid "No Expiry (Access for this level will not expire until cancelled"
|
1474 |
msgstr ""
|
1475 |
|
1476 |
+
#: views/admin_add_level.php:24 views/admin_add_level.php:26
|
1477 |
+
#: views/admin_add_level.php:28 views/admin_add_level.php:30
|
1478 |
+
#: views/admin_edit_level.php:28 views/admin_edit_level.php:31
|
1479 |
+
#: views/admin_edit_level.php:34 views/admin_edit_level.php:37
|
|
|
|
|
|
|
|
|
1480 |
msgid "Expire After"
|
1481 |
msgstr ""
|
1482 |
|
1483 |
+
#: views/admin_add_level.php:25 views/admin_edit_level.php:29
|
|
|
1484 |
msgid "Days (Access expires after given number of days)"
|
1485 |
msgstr ""
|
1486 |
|
1487 |
+
#: views/admin_add_level.php:27
|
1488 |
msgid "Weeks (Access expires after given number of weeks"
|
1489 |
msgstr ""
|
1490 |
|
1491 |
+
#: views/admin_add_level.php:29 views/admin_edit_level.php:35
|
|
|
1492 |
msgid "Months (Access expires after given number of months)"
|
1493 |
msgstr ""
|
1494 |
|
1495 |
+
#: views/admin_add_level.php:31 views/admin_edit_level.php:38
|
|
|
1496 |
msgid "Years (Access expires after given number of years)"
|
1497 |
msgstr ""
|
1498 |
|
1499 |
+
#: views/admin_add_level.php:32 views/admin_edit_level.php:40
|
|
|
1500 |
msgid "Fixed Date Expiry"
|
1501 |
msgstr ""
|
1502 |
|
1503 |
+
#: views/admin_add_level.php:33 views/admin_edit_level.php:41
|
|
|
1504 |
msgid "(Access expires on a fixed date)"
|
1505 |
msgstr ""
|
1506 |
|
1507 |
+
#: views/admin_add_level.php:39
|
1508 |
msgid "Add New Membership Level "
|
1509 |
msgstr ""
|
1510 |
|
1511 |
+
#: views/admin_add_ons_page.php:7
|
1512 |
msgid "Simple WP Membership::Add-ons"
|
1513 |
msgstr ""
|
1514 |
|
1515 |
+
#: views/admin_category_list.php:5
|
1516 |
msgid ""
|
1517 |
"First of all, globally protect the category on your site by selecting "
|
1518 |
"\"General Protection\" from the drop-down box below and then select the "
|
1519 |
"categories that should be protected from non-logged in users."
|
1520 |
msgstr ""
|
1521 |
|
1522 |
+
#: views/admin_category_list.php:8
|
1523 |
msgid ""
|
1524 |
"Next, select an existing membership level from the drop-down box below and "
|
1525 |
"then select the categories you want to grant access to (for that particular "
|
1526 |
"membership level)."
|
1527 |
msgstr ""
|
1528 |
|
1529 |
+
#: views/admin_category_list.php:17 views/admin_post_list.php:27
|
1530 |
msgid "Membership Level:"
|
1531 |
msgstr ""
|
1532 |
|
1533 |
+
#: views/admin_category_list.php:23 views/admin_post_list.php:33
|
1534 |
+
#: views/edit.php:73
|
1535 |
msgid "Update"
|
1536 |
msgstr ""
|
1537 |
|
1538 |
+
#: views/admin_edit.php:11
|
1539 |
msgid "Edit Member"
|
1540 |
msgstr ""
|
1541 |
|
1542 |
+
#: views/admin_edit.php:13
|
1543 |
msgid "Edit existing member details."
|
1544 |
msgstr ""
|
1545 |
|
1546 |
+
#: views/admin_edit.php:14
|
1547 |
msgid " You are currenty editing member with member ID: "
|
1548 |
msgstr ""
|
1549 |
|
1550 |
+
#: views/admin_edit.php:44
|
1551 |
msgid "(twice, leave empty to retain old password)"
|
1552 |
msgstr ""
|
1553 |
|
1554 |
+
#: views/admin_edit.php:60
|
1555 |
msgid "Notify User"
|
1556 |
msgstr ""
|
1557 |
|
1558 |
+
#: views/admin_edit.php:67
|
1559 |
msgid "Subscriber ID/Reference"
|
1560 |
msgstr ""
|
1561 |
|
1562 |
+
#: views/admin_edit.php:71
|
1563 |
msgid "Last Accessed Date"
|
1564 |
msgstr ""
|
1565 |
|
1566 |
+
#: views/admin_edit.php:74 views/admin_edit.php:81
|
|
|
1567 |
msgid "This value gets updated when this member logs into your site."
|
1568 |
msgstr ""
|
1569 |
|
1570 |
+
#: views/admin_edit.php:78
|
1571 |
msgid "Last Accessed From IP"
|
1572 |
msgstr ""
|
1573 |
|
1574 |
+
#: views/admin_edit.php:89
|
1575 |
+
msgid "Save Data"
|
1576 |
msgstr ""
|
1577 |
|
1578 |
+
#: views/admin_edit.php:94
|
1579 |
msgid "Delete User Profile"
|
1580 |
msgstr ""
|
1581 |
|
1582 |
+
#: views/admin_edit_level.php:6
|
1583 |
msgid "Edit membership level"
|
1584 |
msgstr ""
|
1585 |
|
1586 |
+
#: views/admin_edit_level.php:9
|
1587 |
msgid ""
|
1588 |
"You can edit details of a selected membership level from this interface. "
|
1589 |
msgstr ""
|
1590 |
|
1591 |
+
#: views/admin_edit_level.php:10
|
1592 |
msgid "You are currently editing: "
|
1593 |
msgstr ""
|
1594 |
|
1595 |
+
#: views/admin_edit_level.php:27
|
1596 |
msgid "No Expiry (Access for this level will not expire until cancelled)"
|
1597 |
msgstr ""
|
1598 |
|
1599 |
+
#: views/admin_edit_level.php:32
|
1600 |
msgid "Weeks (Access expires after given number of weeks)"
|
1601 |
msgstr ""
|
1602 |
|
1603 |
+
#: views/admin_edit_level.php:47
|
1604 |
+
msgid "Save Membership Level "
|
1605 |
msgstr ""
|
1606 |
|
1607 |
+
#: views/admin_membership_manage.php:18
|
1608 |
msgid "Example Content Protection Settings"
|
1609 |
msgstr ""
|
1610 |
|
1611 |
+
#: views/admin_members_list.php:18
|
1612 |
+
msgid "All"
|
1613 |
+
msgstr ""
|
1614 |
+
|
1615 |
+
#: views/admin_members_list.php:22
|
1616 |
+
msgid "Incomplete"
|
1617 |
+
msgstr ""
|
1618 |
+
|
1619 |
+
#: views/admin_member_form_common_part.php:23
|
1620 |
msgid "Gender"
|
1621 |
msgstr ""
|
1622 |
|
1623 |
+
#: views/admin_member_form_common_part.php:30 views/edit.php:38
|
|
|
1624 |
msgid "Phone"
|
1625 |
msgstr ""
|
1626 |
|
1627 |
+
#: views/admin_member_form_common_part.php:34 views/edit.php:42
|
|
|
1628 |
msgid "Street"
|
1629 |
msgstr ""
|
1630 |
|
1631 |
+
#: views/admin_member_form_common_part.php:38 views/edit.php:46
|
|
|
1632 |
msgid "City"
|
1633 |
msgstr ""
|
1634 |
|
1635 |
+
#: views/admin_member_form_common_part.php:42 views/edit.php:50
|
|
|
1636 |
msgid "State"
|
1637 |
msgstr ""
|
1638 |
|
1639 |
+
#: views/admin_member_form_common_part.php:46 views/edit.php:54
|
|
|
1640 |
msgid "Zipcode"
|
1641 |
msgstr ""
|
1642 |
|
1643 |
+
#: views/admin_member_form_common_part.php:50 views/edit.php:58
|
|
|
1644 |
msgid "Country"
|
1645 |
msgstr ""
|
1646 |
|
1647 |
+
#: views/admin_member_form_common_part.php:54
|
1648 |
msgid "Company"
|
1649 |
msgstr ""
|
1650 |
|
1651 |
+
#: views/admin_member_form_common_part.php:58
|
1652 |
msgid "Member Since"
|
1653 |
msgstr ""
|
1654 |
|
1655 |
+
#: views/admin_post_list.php:5
|
1656 |
+
msgid ""
|
1657 |
+
"First of all, globally protect posts and pages on your site by selecting "
|
1658 |
+
"\"General Protection\" from the drop-down box below and then select posts "
|
1659 |
+
"and pages that should be protected from non-logged in users."
|
1660 |
+
msgstr ""
|
1661 |
+
|
1662 |
+
#: views/admin_post_list.php:8
|
1663 |
+
msgid ""
|
1664 |
+
"Next, select an existing membership level from the drop-down box below and "
|
1665 |
+
"then select posts and pages you want to grant access to (for that particular "
|
1666 |
+
"membership level)."
|
1667 |
+
msgstr ""
|
1668 |
+
|
1669 |
+
#: views/admin_post_list.php:21
|
1670 |
+
msgid "Posts"
|
1671 |
+
msgstr ""
|
1672 |
+
|
1673 |
+
#: views/admin_post_list.php:22
|
1674 |
+
msgid "Pages"
|
1675 |
+
msgstr ""
|
1676 |
+
|
1677 |
+
#: views/admin_post_list.php:23
|
1678 |
+
msgid "Custom Posts"
|
1679 |
+
msgstr ""
|
1680 |
+
|
1681 |
+
#: views/admin_tools_settings.php:6
|
1682 |
msgid "Generate a Registration Completion link"
|
1683 |
msgstr ""
|
1684 |
|
1685 |
+
#: views/admin_tools_settings.php:9
|
1686 |
msgid ""
|
1687 |
"You can manually generate a registration completion link here and give it to "
|
1688 |
"your customer if they have missed the email that was automatically sent out "
|
1689 |
"to them after the payment."
|
1690 |
msgstr ""
|
1691 |
|
1692 |
+
#: views/admin_tools_settings.php:14
|
1693 |
msgid "Generate Registration Completion Link"
|
1694 |
msgstr ""
|
1695 |
|
1696 |
+
#: views/admin_tools_settings.php:15
|
1697 |
msgid "For a Particular Member ID"
|
1698 |
msgstr ""
|
1699 |
|
1700 |
+
#: views/admin_tools_settings.php:17
|
1701 |
msgid "OR"
|
1702 |
msgstr ""
|
1703 |
|
1704 |
+
#: views/admin_tools_settings.php:18
|
1705 |
msgid "For All Incomplete Registrations"
|
1706 |
msgstr ""
|
1707 |
|
1708 |
+
#: views/admin_tools_settings.php:23
|
1709 |
msgid "Send Registration Reminder Email Too"
|
1710 |
msgstr ""
|
1711 |
|
1712 |
+
#: views/admin_tools_settings.php:29
|
1713 |
msgid "Submit"
|
1714 |
msgstr ""
|
1715 |
|
1716 |
+
#: views/admin_tools_settings.php:38
|
1717 |
msgid ""
|
1718 |
"Link(s) generated successfully. The following link(s) can be used to "
|
1719 |
"complete the registration."
|
1720 |
msgstr ""
|
1721 |
|
1722 |
+
#: views/admin_tools_settings.php:40
|
1723 |
msgid "Registration completion links will appear below"
|
1724 |
msgstr ""
|
1725 |
|
1726 |
+
#: views/admin_tools_settings.php:50
|
1727 |
+
msgid "A prompt to complete registration email was also sent."
|
1728 |
+
msgstr ""
|
1729 |
+
|
1730 |
+
#: views/edit.php:23 views/edit.php:27
|
1731 |
msgid "Leave empty to keep the current password"
|
1732 |
msgstr ""
|
1733 |
|
1734 |
+
#: views/edit.php:62
|
1735 |
+
msgid "Company Name"
|
1736 |
+
msgstr ""
|
1737 |
+
|
1738 |
+
#: views/forgot_password.php:12
|
1739 |
msgid "Reset Password"
|
1740 |
msgstr ""
|
1741 |
|
1742 |
+
#: views/loggedin.php:6
|
1743 |
msgid "Logged in as"
|
1744 |
msgstr ""
|
1745 |
|
1746 |
+
#: views/loggedin.php:14
|
1747 |
msgid "Membership"
|
1748 |
msgstr ""
|
1749 |
|
1750 |
+
#: views/loggedin.php:18
|
1751 |
msgid "Account Expiry"
|
1752 |
msgstr ""
|
1753 |
|
1754 |
+
#: views/loggedin.php:26
|
1755 |
+
msgid "Edit Profile"
|
1756 |
+
msgstr ""
|
1757 |
+
|
1758 |
+
#: views/loggedin.php:31
|
1759 |
msgid "Logout"
|
1760 |
msgstr ""
|
1761 |
|
1762 |
+
#: views/login.php:11
|
1763 |
msgid "Username or Email"
|
1764 |
msgstr ""
|
1765 |
|
1766 |
+
#: views/login.php:24
|
1767 |
msgid "Remember Me"
|
1768 |
msgstr ""
|
1769 |
|
1770 |
+
#: views/login.php:33
|
1771 |
msgid "Forgot Password"
|
1772 |
msgstr ""
|
1773 |
|
1774 |
+
#: views/payments/admin_all_payment_transactions.php:6
|
1775 |
msgid "All the payments/transactions of your members are recorded here."
|
1776 |
msgstr ""
|
1777 |
|
1778 |
+
#: views/payments/admin_all_payment_transactions.php:12
|
1779 |
msgid "Search for a transaction by using email or name"
|
1780 |
msgstr ""
|
1781 |
|
1782 |
+
#: views/payments/admin_create_payment_buttons.php:16
|
1783 |
msgid ""
|
1784 |
"You can create new payment button for your memberships using this interface."
|
1785 |
msgstr ""
|
1786 |
|
1787 |
+
#: views/payments/admin_create_payment_buttons.php:24
|
1788 |
msgid "Select Payment Button Type"
|
1789 |
msgstr ""
|
1790 |
|
1791 |
+
#: views/payments/admin_create_payment_buttons.php:27
|
1792 |
msgid "PayPal Buy Now"
|
1793 |
msgstr ""
|
1794 |
|
1795 |
+
#: views/payments/admin_create_payment_buttons.php:29
|
1796 |
msgid "PayPal Subscription"
|
1797 |
msgstr ""
|
1798 |
|
1799 |
+
#: views/payments/admin_create_payment_buttons.php:31
|
1800 |
msgid "Stripe Buy Now"
|
1801 |
msgstr ""
|
1802 |
|
1803 |
+
#: views/payments/admin_create_payment_buttons.php:33
|
1804 |
+
msgid "Stripe Subscription"
|
1805 |
+
msgstr ""
|
1806 |
+
|
1807 |
+
#: views/payments/admin_create_payment_buttons.php:35
|
1808 |
msgid "Braintree Buy Now"
|
1809 |
msgstr ""
|
1810 |
|
1811 |
+
#: views/payments/admin_create_payment_buttons.php:42
|
1812 |
msgid "Next"
|
1813 |
msgstr ""
|
1814 |
|
1815 |
+
#: views/payments/admin_edit_payment_buttons.php:14
|
1816 |
msgid "You can edit a payment button using this interface."
|
1817 |
msgstr ""
|
1818 |
|
1819 |
+
#: views/payments/admin_payment_buttons.php:6
|
1820 |
msgid ""
|
1821 |
"All the membership buttons that you created in the plugin are displayed here."
|
1822 |
msgstr ""
|
1823 |
|
1824 |
+
#: views/payments/admin_payment_settings.php:21
|
1825 |
msgid "Error! The membership level ID ("
|
1826 |
msgstr ""
|
1827 |
|
1828 |
+
#: views/payments/admin_payment_settings.php:28
|
1829 |
+
msgid ""
|
1830 |
+
"You can create membership payment buttons from the payments menu of this "
|
1831 |
+
"plugin (useful if you want to offer paid membership on the site)."
|
1832 |
+
msgstr ""
|
1833 |
+
|
1834 |
+
#: views/payments/admin_payment_settings.php:33
|
1835 |
msgid "PayPal Integration Settings"
|
1836 |
msgstr ""
|
1837 |
|
1838 |
+
#: views/payments/admin_payment_settings.php:36
|
1839 |
msgid "Generate the \"Advanced Variables\" Code for your PayPal button"
|
1840 |
msgstr ""
|
1841 |
|
1842 |
+
#: views/payments/admin_payment_settings.php:39
|
1843 |
msgid "Enter the Membership Level ID"
|
1844 |
msgstr ""
|
1845 |
|
1846 |
+
#: views/payments/admin_payment_settings.php:41
|
1847 |
msgid "Generate Code"
|
1848 |
msgstr ""
|
1849 |
|
1850 |
+
#: views/payments/payment-gateway/admin_braintree_buy_now_button.php:22
|
1851 |
msgid "Braintree Buy Now Button Configuration"
|
1852 |
msgstr ""
|
1853 |
|
1854 |
+
#: views/payments/payment-gateway/admin_braintree_buy_now_button.php:34
|
1855 |
+
#: views/payments/payment-gateway/admin_paypal_buy_now_button.php:213
|
1856 |
+
#: views/payments/payment-gateway/admin_paypal_subscription_button.php:301
|
1857 |
+
#: views/payments/payment-gateway/admin_stripe_buy_now_button.php:259
|
1858 |
+
#: views/payments/payment-gateway/admin_stripe_subscription_button.php:83
|
1859 |
msgid "Button ID"
|
1860 |
msgstr ""
|
1861 |
|
1862 |
+
#: views/payments/payment-gateway/admin_braintree_buy_now_button.php:42
|
1863 |
+
#: views/payments/payment-gateway/admin_paypal_buy_now_button.php:26
|
1864 |
+
#: views/payments/payment-gateway/admin_paypal_buy_now_button.php:221
|
1865 |
+
#: views/payments/payment-gateway/admin_paypal_subscription_button.php:27
|
1866 |
+
#: views/payments/payment-gateway/admin_paypal_subscription_button.php:309
|
1867 |
+
#: views/payments/payment-gateway/admin_stripe_buy_now_button.php:39
|
1868 |
+
#: views/payments/payment-gateway/admin_stripe_buy_now_button.php:266
|
1869 |
+
#: views/payments/payment-gateway/admin_stripe_subscription_button.php:91
|
1870 |
msgid "Button Title"
|
1871 |
msgstr ""
|
1872 |
|
1873 |
+
#: views/payments/payment-gateway/admin_braintree_buy_now_button.php:60
|
1874 |
+
#: views/payments/payment-gateway/admin_paypal_buy_now_button.php:44
|
1875 |
+
#: views/payments/payment-gateway/admin_paypal_buy_now_button.php:239
|
1876 |
+
#: views/payments/payment-gateway/admin_stripe_buy_now_button.php:57
|
1877 |
+
#: views/payments/payment-gateway/admin_stripe_buy_now_button.php:282
|
1878 |
msgid "Payment Amount"
|
1879 |
msgstr ""
|
1880 |
|
1881 |
+
#: views/payments/payment-gateway/admin_braintree_buy_now_button.php:68
|
1882 |
msgid ""
|
1883 |
"Braintree API key and account details. You can get this from your Braintree "
|
1884 |
"account."
|
1885 |
msgstr ""
|
1886 |
|
1887 |
+
#: views/payments/payment-gateway/admin_braintree_buy_now_button.php:72
|
1888 |
msgid "Merchant ID"
|
1889 |
msgstr ""
|
1890 |
|
1891 |
+
#: views/payments/payment-gateway/admin_braintree_buy_now_button.php:80
|
1892 |
msgid "Public Key"
|
1893 |
msgstr ""
|
1894 |
|
1895 |
+
#: views/payments/payment-gateway/admin_braintree_buy_now_button.php:87
|
1896 |
msgid "Private Key"
|
1897 |
msgstr ""
|
1898 |
|
1899 |
+
#: views/payments/payment-gateway/admin_braintree_buy_now_button.php:95
|
1900 |
msgid "Merchant Account ID"
|
1901 |
msgstr ""
|
1902 |
|
1903 |
+
#: views/payments/payment-gateway/admin_braintree_buy_now_button.php:113
|
1904 |
+
#: views/payments/payment-gateway/admin_stripe_buy_now_button.php:137
|
1905 |
+
#: views/payments/payment-gateway/admin_stripe_buy_now_button.php:361
|
1906 |
msgid "The following details are optional."
|
1907 |
msgstr ""
|
1908 |
|
1909 |
+
#: views/payments/payment-gateway/admin_braintree_buy_now_button.php:117
|
1910 |
+
#: views/payments/payment-gateway/admin_paypal_buy_now_button.php:92
|
1911 |
+
#: views/payments/payment-gateway/admin_paypal_buy_now_button.php:287
|
1912 |
+
#: views/payments/payment-gateway/admin_paypal_subscription_button.php:172
|
1913 |
+
#: views/payments/payment-gateway/admin_paypal_subscription_button.php:456
|
1914 |
+
#: views/payments/payment-gateway/admin_stripe_buy_now_button.php:149
|
1915 |
+
#: views/payments/payment-gateway/admin_stripe_buy_now_button.php:373
|
1916 |
+
#: views/payments/payment-gateway/admin_stripe_subscription_button.php:191
|
1917 |
msgid "Return URL"
|
1918 |
msgstr ""
|
1919 |
|
1920 |
+
#: views/payments/payment-gateway/admin_braintree_buy_now_button.php:127
|
1921 |
+
#: views/payments/payment-gateway/admin_paypal_buy_now_button.php:126
|
1922 |
+
#: views/payments/payment-gateway/admin_paypal_buy_now_button.php:321
|
1923 |
+
#: views/payments/payment-gateway/admin_paypal_subscription_button.php:200
|
1924 |
+
#: views/payments/payment-gateway/admin_paypal_subscription_button.php:484
|
1925 |
+
#: views/payments/payment-gateway/admin_stripe_buy_now_button.php:159
|
1926 |
+
#: views/payments/payment-gateway/admin_stripe_buy_now_button.php:383
|
1927 |
+
#: views/payments/payment-gateway/admin_stripe_subscription_button.php:212
|
1928 |
msgid "Save Payment Data"
|
1929 |
msgstr ""
|
1930 |
|
1931 |
+
#: views/payments/payment-gateway/admin_paypal_buy_now_button.php:16
|
1932 |
+
#: views/payments/payment-gateway/admin_paypal_buy_now_button.php:204
|
1933 |
msgid "PayPal Buy Now Button Configuration"
|
1934 |
msgstr ""
|
1935 |
|
1936 |
+
#: views/payments/payment-gateway/admin_paypal_buy_now_button.php:52
|
1937 |
+
#: views/payments/payment-gateway/admin_paypal_buy_now_button.php:247
|
1938 |
+
#: views/payments/payment-gateway/admin_paypal_subscription_button.php:45
|
1939 |
+
#: views/payments/payment-gateway/admin_paypal_subscription_button.php:327
|
1940 |
+
#: views/payments/payment-gateway/admin_stripe_buy_now_button.php:65
|
1941 |
+
#: views/payments/payment-gateway/admin_stripe_buy_now_button.php:289
|
1942 |
msgid "Payment Currency"
|
1943 |
msgstr ""
|
1944 |
|
1945 |
+
#: views/payments/payment-gateway/admin_paypal_buy_now_button.php:100
|
1946 |
+
#: views/payments/payment-gateway/admin_paypal_buy_now_button.php:295
|
1947 |
+
#: views/payments/payment-gateway/admin_paypal_subscription_button.php:85
|
1948 |
+
#: views/payments/payment-gateway/admin_paypal_subscription_button.php:367
|
1949 |
msgid "PayPal Email"
|
1950 |
msgstr ""
|
1951 |
|
1952 |
+
#: views/payments/payment-gateway/admin_paypal_buy_now_button.php:108
|
1953 |
+
#: views/payments/payment-gateway/admin_paypal_buy_now_button.php:303
|
1954 |
+
#: views/payments/payment-gateway/admin_paypal_subscription_button.php:180
|
1955 |
+
#: views/payments/payment-gateway/admin_paypal_subscription_button.php:464
|
1956 |
+
#: views/payments/payment-gateway/admin_stripe_subscription_button.php:199
|
1957 |
msgid "Button Image URL"
|
1958 |
msgstr ""
|
1959 |
|
1960 |
+
#: views/payments/payment-gateway/admin_paypal_buy_now_button.php:116
|
1961 |
+
#: views/payments/payment-gateway/admin_paypal_buy_now_button.php:311
|
1962 |
+
#: views/payments/payment-gateway/admin_paypal_subscription_button.php:188
|
1963 |
+
#: views/payments/payment-gateway/admin_paypal_subscription_button.php:472
|
1964 |
+
msgid "Custom Checkout Page Logo Image"
|
1965 |
+
msgstr ""
|
1966 |
+
|
1967 |
+
#: views/payments/payment-gateway/admin_paypal_subscription_button.php:18
|
1968 |
+
#: views/payments/payment-gateway/admin_paypal_subscription_button.php:295
|
1969 |
msgid "PayPal Subscription Button Configuration"
|
1970 |
msgstr ""
|
1971 |
|
1972 |
+
#: views/payments/payment-gateway/admin_paypal_subscription_button.php:93
|
1973 |
+
#: views/payments/payment-gateway/admin_paypal_subscription_button.php:375
|
1974 |
msgid "Billing Amount Each Cycle"
|
1975 |
msgstr ""
|
1976 |
|
1977 |
+
#: views/payments/payment-gateway/admin_paypal_subscription_button.php:101
|
1978 |
+
#: views/payments/payment-gateway/admin_paypal_subscription_button.php:383
|
1979 |
msgid "Billing Cycle"
|
1980 |
msgstr ""
|
1981 |
|
1982 |
+
#: views/payments/payment-gateway/admin_paypal_subscription_button.php:114
|
1983 |
+
#: views/payments/payment-gateway/admin_paypal_subscription_button.php:396
|
1984 |
msgid "Billing Cycle Count"
|
1985 |
msgstr ""
|
1986 |
|
1987 |
+
#: views/payments/payment-gateway/admin_paypal_subscription_button.php:122
|
1988 |
+
#: views/payments/payment-gateway/admin_paypal_subscription_button.php:404
|
1989 |
msgid "Re-attempt on Failure"
|
1990 |
msgstr ""
|
1991 |
|
1992 |
+
#: views/payments/payment-gateway/admin_paypal_subscription_button.php:135
|
1993 |
+
#: views/payments/payment-gateway/admin_paypal_subscription_button.php:419
|
1994 |
msgid ""
|
1995 |
"Trial Billing Details (Leave empty if you are not offering a trial period)"
|
1996 |
msgstr ""
|
1997 |
|
1998 |
+
#: views/payments/payment-gateway/admin_paypal_subscription_button.php:141
|
1999 |
+
#: views/payments/payment-gateway/admin_paypal_subscription_button.php:425
|
2000 |
msgid "Trial Billing Amount"
|
2001 |
msgstr ""
|
2002 |
|
2003 |
+
#: views/payments/payment-gateway/admin_paypal_subscription_button.php:149
|
2004 |
+
#: views/payments/payment-gateway/admin_paypal_subscription_button.php:433
|
2005 |
msgid "Trial Billing Period"
|
2006 |
msgstr ""
|
2007 |
|
2008 |
+
#: views/payments/payment-gateway/admin_paypal_subscription_button.php:166
|
2009 |
+
#: views/payments/payment-gateway/admin_paypal_subscription_button.php:450
|
2010 |
+
#: views/payments/payment-gateway/admin_stripe_subscription_button.php:177
|
2011 |
msgid "Optional Details"
|
2012 |
msgstr ""
|
2013 |
|
2014 |
+
#: views/payments/payment-gateway/admin_stripe_buy_now_button.php:29
|
2015 |
+
#: views/payments/payment-gateway/admin_stripe_buy_now_button.php:250
|
2016 |
msgid "Stripe Buy Now Button Configuration"
|
2017 |
msgstr ""
|
2018 |
|
2019 |
+
#: views/payments/payment-gateway/admin_stripe_buy_now_button.php:104
|
2020 |
+
#: views/payments/payment-gateway/admin_stripe_buy_now_button.php:328
|
2021 |
msgid "Stripe API keys. You can get this from your Stripe account."
|
2022 |
msgstr ""
|
2023 |
|
2024 |
+
#: views/payments/payment-gateway/admin_stripe_buy_now_button.php:108
|
2025 |
+
#: views/payments/payment-gateway/admin_stripe_buy_now_button.php:332
|
2026 |
+
#: views/payments/payment-gateway/admin_stripe_subscription_button.php:139
|
2027 |
msgid "Test Secret Key"
|
2028 |
msgstr ""
|
2029 |
|
2030 |
+
#: views/payments/payment-gateway/admin_stripe_buy_now_button.php:115
|
2031 |
+
#: views/payments/payment-gateway/admin_stripe_buy_now_button.php:339
|
2032 |
+
#: views/payments/payment-gateway/admin_stripe_subscription_button.php:131
|
2033 |
msgid "Test Publishable Key"
|
2034 |
msgstr ""
|
2035 |
|
2036 |
+
#: views/payments/payment-gateway/admin_stripe_buy_now_button.php:122
|
2037 |
+
#: views/payments/payment-gateway/admin_stripe_buy_now_button.php:346
|
2038 |
+
#: views/payments/payment-gateway/admin_stripe_subscription_button.php:155
|
2039 |
msgid "Live Secret Key"
|
2040 |
msgstr ""
|
2041 |
|
2042 |
+
#: views/payments/payment-gateway/admin_stripe_buy_now_button.php:129
|
2043 |
+
#: views/payments/payment-gateway/admin_stripe_buy_now_button.php:353
|
2044 |
+
#: views/payments/payment-gateway/admin_stripe_subscription_button.php:147
|
2045 |
msgid "Live Publishable Key"
|
2046 |
msgstr ""
|
2047 |
|
2048 |
+
#: views/payments/payment-gateway/admin_stripe_buy_now_button.php:141
|
2049 |
+
#: views/payments/payment-gateway/admin_stripe_buy_now_button.php:365
|
2050 |
+
#: views/payments/payment-gateway/admin_stripe_subscription_button.php:183
|
2051 |
+
msgid "Collect Customer Address"
|
2052 |
+
msgstr ""
|
2053 |
+
|
2054 |
+
#: views/payments/payment-gateway/admin_stripe_subscription_button.php:75
|
2055 |
+
msgid "Stripe Subscription Button Configuration"
|
2056 |
+
msgstr ""
|
2057 |
+
|
2058 |
+
#: views/payments/payment-gateway/admin_stripe_subscription_button.php:109
|
2059 |
+
msgid "Stripe Plan ID"
|
2060 |
+
msgstr ""
|
2061 |
+
|
2062 |
+
#: views/payments/payment-gateway/admin_stripe_subscription_button.php:125
|
2063 |
+
msgid "Stripe API Settings"
|
2064 |
+
msgstr ""
|
2065 |
+
|
2066 |
+
#: views/payments/payment-gateway/admin_stripe_subscription_button.php:163
|
2067 |
+
msgid "Webook Endpoint URL"
|
2068 |
+
msgstr ""
|
2069 |
+
|
2070 |
+
#: views/payments/payment-gateway/braintree_button_shortcode_view.php:20
|
2071 |
+
#: views/payments/payment-gateway/paypal_button_shortcode_view.php:91
|
2072 |
+
#: views/payments/payment-gateway/paypal_button_shortcode_view.php:93
|
2073 |
+
#: views/payments/payment-gateway/stripe_button_shortcode_view.php:20
|
2074 |
+
#: views/payments/payment-gateway/stripe_button_shortcode_view.php:149
|
2075 |
msgid "Buy Now"
|
2076 |
msgstr ""
|
2077 |
|
2078 |
+
#: views/payments/payment-gateway/paypal_button_shortcode_view.php:226
|
2079 |
+
#: views/payments/payment-gateway/paypal_button_shortcode_view.php:228
|
2080 |
msgid "Subscribe Now"
|
2081 |
msgstr ""
|
2082 |
|
2116 |
msgid "Check this box to delete the image. The image will be deleted when you save the profile."
|
2117 |
msgstr ""
|
2118 |
|
2119 |
+
msgid "You will need to re-login since you changed your password."
|
2120 |
+
msgstr ""
|
2121 |
+
|
2122 |
#: === Partial protection addon strings ===
|
2123 |
msgid "You do not have permission to view this content."
|
2124 |
msgstr ""
|
readme.txt
CHANGED
@@ -4,7 +4,7 @@ Donate link: https://simple-membership-plugin.com/
|
|
4 |
Tags: member, members, members only, membership, memberships, register, WordPress membership plugin, content, content protection, paypal, restrict, restrict access, Restrict content, admin, access control, subscription, teaser, protection, profile, login, login page, bbpress, stripe, braintree
|
5 |
Requires at least: 4.0
|
6 |
Tested up to: 4.9
|
7 |
-
Stable tag: 3.
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
@@ -78,6 +78,9 @@ You can create a free forum user account and ask your questions.
|
|
78 |
* Front-end member registration page.
|
79 |
* Front-end member profiles.
|
80 |
* Front-end member login page.
|
|
|
|
|
|
|
81 |
|
82 |
= Language Translations =
|
83 |
|
@@ -138,6 +141,31 @@ https://simple-membership-plugin.com/
|
|
138 |
|
139 |
== Changelog ==
|
140 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
141 |
= 3.5.8 =
|
142 |
- Changed the "Edit Member" button text to "Save Data" in the admin member edit interface.
|
143 |
- Added a new function to logout the user from the swpm system if the corresponding wp user session is logged out.
|
4 |
Tags: member, members, members only, membership, memberships, register, WordPress membership plugin, content, content protection, paypal, restrict, restrict access, Restrict content, admin, access control, subscription, teaser, protection, profile, login, login page, bbpress, stripe, braintree
|
5 |
Requires at least: 4.0
|
6 |
Tested up to: 4.9
|
7 |
+
Stable tag: 3.6.2
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
78 |
* Front-end member registration page.
|
79 |
* Front-end member profiles.
|
80 |
* Front-end member login page.
|
81 |
+
* Option to configure after login redirection for members.
|
82 |
+
* Option to configure after registration redirect for members.
|
83 |
+
* Option force the members to use strong password.
|
84 |
|
85 |
= Language Translations =
|
86 |
|
141 |
|
142 |
== Changelog ==
|
143 |
|
144 |
+
= 3.6.2 =
|
145 |
+
- Added a new feature to enforce strong password on the password field. When this option is enabled in the advanced settings, the members will be required to use a strong password.
|
146 |
+
|
147 |
+
= 3.6.1 =
|
148 |
+
- Langauge POT file regenerated.
|
149 |
+
- Added a new filter so the registration complete email body can be overriden and the email can be disabled using a small tweak.
|
150 |
+
- The member gets logged out of the wp user session when the password is changed from profile edit page.
|
151 |
+
- Force logout is called when bad login hash is detected.
|
152 |
+
- Fixed a bug in the tools menu (prompt to complete registration email sending).
|
153 |
+
|
154 |
+
= 3.6.0 =
|
155 |
+
- Added a new feature to allow configuration of an after registration redirect. The advanced settings tab has the new option.
|
156 |
+
- Added extra help text in the email settings menu.
|
157 |
+
- The subscription cancellation code will now use the subscriber ID.
|
158 |
+
- Changed the "Edit Membership Level" button label to say "Save Membership Level"
|
159 |
+
- Updated the local copy of the German language file. Thanks to Herbert Heupke.
|
160 |
+
- Created a new free addon to handle bulk member import from a CSV file.
|
161 |
+
- Added a new filter to allow overriding of the after registration redirection URL.
|
162 |
+
|
163 |
+
= 3.5.9 =
|
164 |
+
- Japanese Yen currency fix for Stripe subscription.
|
165 |
+
- Added a new email merge tag for membership level name {membership_level_name}
|
166 |
+
- There is a new option called "Force WP User Synchronization" in the advanced settings menu of the plugin.
|
167 |
+
- Fixed an warning that can appear sometime when updating the advanced settings interface.
|
168 |
+
|
169 |
= 3.5.8 =
|
170 |
- Changed the "Edit Member" button text to "Save Data" in the admin member edit interface.
|
171 |
- Added a new function to logout the user from the swpm system if the corresponding wp user session is logged out.
|
simple-wp-membership.php
CHANGED
@@ -1,12 +1,13 @@
|
|
1 |
<?php
|
2 |
/*
|
3 |
Plugin Name: Simple WordPress Membership
|
4 |
-
Version: 3.
|
5 |
-
Text Domain: simple-membership
|
6 |
Plugin URI: https://simple-membership-plugin.com/
|
7 |
Author: smp7, wp.insider
|
8 |
Author URI: https://simple-membership-plugin.com/
|
9 |
Description: A flexible, well-supported, and easy-to-use WordPress membership plugin for offering free and premium content from your WordPress site.
|
|
|
|
|
10 |
*/
|
11 |
|
12 |
//Direct access to this file is not permitted
|
@@ -18,7 +19,7 @@ include_once('classes/class.simple-wp-membership.php');
|
|
18 |
include_once('classes/class.swpm-cronjob.php');
|
19 |
include_once('swpm-compat.php');
|
20 |
|
21 |
-
define('SIMPLE_WP_MEMBERSHIP_VER', '3.
|
22 |
define('SIMPLE_WP_MEMBERSHIP_DB_VER', '1.2');
|
23 |
define('SIMPLE_WP_MEMBERSHIP_SITE_HOME_URL', home_url());
|
24 |
define('SIMPLE_WP_MEMBERSHIP_PATH', dirname(__FILE__) . '/');
|
1 |
<?php
|
2 |
/*
|
3 |
Plugin Name: Simple WordPress Membership
|
4 |
+
Version: 3.6.2
|
|
|
5 |
Plugin URI: https://simple-membership-plugin.com/
|
6 |
Author: smp7, wp.insider
|
7 |
Author URI: https://simple-membership-plugin.com/
|
8 |
Description: A flexible, well-supported, and easy-to-use WordPress membership plugin for offering free and premium content from your WordPress site.
|
9 |
+
Text Domain: simple-membership
|
10 |
+
Domain Path: /languages/
|
11 |
*/
|
12 |
|
13 |
//Direct access to this file is not permitted
|
19 |
include_once('classes/class.swpm-cronjob.php');
|
20 |
include_once('swpm-compat.php');
|
21 |
|
22 |
+
define('SIMPLE_WP_MEMBERSHIP_VER', '3.6.2');
|
23 |
define('SIMPLE_WP_MEMBERSHIP_DB_VER', '1.2');
|
24 |
define('SIMPLE_WP_MEMBERSHIP_SITE_HOME_URL', home_url());
|
25 |
define('SIMPLE_WP_MEMBERSHIP_PATH', dirname(__FILE__) . '/');
|
views/add.php
CHANGED
@@ -1,4 +1,12 @@
|
|
1 |
-
<?php SimpleWpMembership::enqueue_validation_scripts(array('ajaxEmailCall' => array('extraData'=>'&action=swpm_validate_email&member_id='.filter_input(INPUT_GET, 'member_id'))));
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2 |
<div class="swpm-registration-widget-form">
|
3 |
<form id="swpm-registration-form" class="swpm-validate-form" name="swpm-registration-form" method="post" action="">
|
4 |
<input type ="hidden" name="level_identifier" value="<?php echo $level_identifier ?>" />
|
@@ -13,7 +21,7 @@
|
|
13 |
</tr>
|
14 |
<tr class="swpm-registration-password-row">
|
15 |
<td><label for="password"><?php echo SwpmUtils::_('Password') ?></label></td>
|
16 |
-
<td><input type="password" autocomplete="off" id="password" value="" size="50" name="password" /></td>
|
17 |
</tr>
|
18 |
<tr class="swpm-registration-password-retype-row">
|
19 |
<td><label for="password_re"><?php echo SwpmUtils::_('Repeat Password') ?></label></td>
|
1 |
+
<?php SimpleWpMembership::enqueue_validation_scripts(array('ajaxEmailCall' => array('extraData' => '&action=swpm_validate_email&member_id=' . filter_input(INPUT_GET, 'member_id'))));
|
2 |
+
$settings=SwpmSettings::get_instance();
|
3 |
+
$force_strong_pass=$settings->get_value('force-strong-passwords');
|
4 |
+
if (!empty($force_strong_pass)) {
|
5 |
+
$pass_class="validate[required,custom[strongPass],minSize[8]]";
|
6 |
+
} else {
|
7 |
+
$pass_class="";
|
8 |
+
}
|
9 |
+
?>
|
10 |
<div class="swpm-registration-widget-form">
|
11 |
<form id="swpm-registration-form" class="swpm-validate-form" name="swpm-registration-form" method="post" action="">
|
12 |
<input type ="hidden" name="level_identifier" value="<?php echo $level_identifier ?>" />
|
21 |
</tr>
|
22 |
<tr class="swpm-registration-password-row">
|
23 |
<td><label for="password"><?php echo SwpmUtils::_('Password') ?></label></td>
|
24 |
+
<td><input type="password" autocomplete="off" id="password" class="<?php echo $pass_class;?>" value="" size="50" name="password" /></td>
|
25 |
</tr>
|
26 |
<tr class="swpm-registration-password-retype-row">
|
27 |
<td><label for="password_re"><?php echo SwpmUtils::_('Repeat Password') ?></label></td>
|
views/admin_add_ons_page.php
CHANGED
@@ -147,52 +147,60 @@ echo '<link type="text/css" rel="stylesheet" href="' . SIMPLE_WP_MEMBERSHIP_URL
|
|
147 |
array_push($addons_data, $addon_17);
|
148 |
|
149 |
$addon_18 = array(
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
150 |
'name' => 'Display Member Payments',
|
151 |
'thumbnail' => SIMPLE_WP_MEMBERSHIP_URL . '/images/addons/swpm-member-payments-addon.png',
|
152 |
'description' => 'This addon allows you to display the member payments on a page using a shortcode.',
|
153 |
'page_url' => 'https://simple-membership-plugin.com/simple-membership-member-payments-listing-addon/',
|
154 |
);
|
155 |
-
array_push($addons_data, $
|
156 |
|
157 |
-
$
|
158 |
'name' => 'AWeber Integration',
|
159 |
'thumbnail' => SIMPLE_WP_MEMBERSHIP_URL . '/images/addons/swpm-aweber-integration-addon.png',
|
160 |
'description' => 'You can automatically signup your members to a specific list in your AWeber account when they register.',
|
161 |
'page_url' => 'https://simple-membership-plugin.com/simple-membership-aweber-integration-addon/',
|
162 |
);
|
163 |
-
array_push($addons_data, $
|
164 |
|
165 |
-
$
|
166 |
'name' => 'WP User Import',
|
167 |
'thumbnail' => SIMPLE_WP_MEMBERSHIP_URL . '/images/addons/wp-user-import.png',
|
168 |
'description' => 'Addon for importing existing Wordpress users to Simple Membership plugin',
|
169 |
'page_url' => 'https://simple-membership-plugin.com/import-existing-wordpress-users-simple-membership-plugin/',
|
170 |
);
|
171 |
-
array_push($addons_data, $
|
172 |
|
173 |
-
$
|
174 |
'name' => 'ConvertKit Integration',
|
175 |
'thumbnail' => SIMPLE_WP_MEMBERSHIP_URL . '/images/addons/swpm-convertkit-integration-addon.png',
|
176 |
'description' => 'Allows you to automatically signup your members to a sequence in your ConvertKit account',
|
177 |
'page_url' => 'https://simple-membership-plugin.com/simple-membership-convertkit-integration-addon/',
|
178 |
);
|
179 |
-
array_push($addons_data, $
|
180 |
|
181 |
-
$
|
182 |
'name' => 'WooCommerce Payments',
|
183 |
'thumbnail' => SIMPLE_WP_MEMBERSHIP_URL . '/images/addons/swpm-woocommerce-addon.png',
|
184 |
'description' => 'This addon can be used to accept membership payment via the WooCommerce plugin',
|
185 |
'page_url' => 'https://simple-membership-plugin.com/woocommerce-simple-membership-plugin-integration/',
|
186 |
);
|
187 |
-
array_push($addons_data, $
|
188 |
|
189 |
-
$
|
190 |
'name' => 'Miscellaneous Shortcodes',
|
191 |
'thumbnail' => SIMPLE_WP_MEMBERSHIP_URL . '/images/addons/swpm-misc-shortcodes-addon.png',
|
192 |
'description' => 'This addon has a collection of miscellaneous shortcodes',
|
193 |
'page_url' => 'https://simple-membership-plugin.com/simple-membership-miscellaneous-shortcodes-addon/',
|
194 |
);
|
195 |
-
array_push($addons_data, $
|
196 |
|
197 |
/*** Show the addons list ***/
|
198 |
foreach ($addons_data as $addon) {
|
147 |
array_push($addons_data, $addon_17);
|
148 |
|
149 |
$addon_18 = array(
|
150 |
+
'name' => 'Bulk Member Importer',
|
151 |
+
'thumbnail' => SIMPLE_WP_MEMBERSHIP_URL . '/images/addons/swpm-bulk-member-importer-from-csv-addon.png',
|
152 |
+
'description' => 'Allows you to bulk import all your members info from a CSV file.',
|
153 |
+
'page_url' => 'https://simple-membership-plugin.com/simple-membership-bulk-import-member-data-csv-file/',
|
154 |
+
);
|
155 |
+
array_push($addons_data, $addon_18);
|
156 |
+
|
157 |
+
$addon_19 = array(
|
158 |
'name' => 'Display Member Payments',
|
159 |
'thumbnail' => SIMPLE_WP_MEMBERSHIP_URL . '/images/addons/swpm-member-payments-addon.png',
|
160 |
'description' => 'This addon allows you to display the member payments on a page using a shortcode.',
|
161 |
'page_url' => 'https://simple-membership-plugin.com/simple-membership-member-payments-listing-addon/',
|
162 |
);
|
163 |
+
array_push($addons_data, $addon_19);
|
164 |
|
165 |
+
$addon_20 = array(
|
166 |
'name' => 'AWeber Integration',
|
167 |
'thumbnail' => SIMPLE_WP_MEMBERSHIP_URL . '/images/addons/swpm-aweber-integration-addon.png',
|
168 |
'description' => 'You can automatically signup your members to a specific list in your AWeber account when they register.',
|
169 |
'page_url' => 'https://simple-membership-plugin.com/simple-membership-aweber-integration-addon/',
|
170 |
);
|
171 |
+
array_push($addons_data, $addon_20);
|
172 |
|
173 |
+
$addon_21 = array(
|
174 |
'name' => 'WP User Import',
|
175 |
'thumbnail' => SIMPLE_WP_MEMBERSHIP_URL . '/images/addons/wp-user-import.png',
|
176 |
'description' => 'Addon for importing existing Wordpress users to Simple Membership plugin',
|
177 |
'page_url' => 'https://simple-membership-plugin.com/import-existing-wordpress-users-simple-membership-plugin/',
|
178 |
);
|
179 |
+
array_push($addons_data, $addon_21);
|
180 |
|
181 |
+
$addon_22 = array(
|
182 |
'name' => 'ConvertKit Integration',
|
183 |
'thumbnail' => SIMPLE_WP_MEMBERSHIP_URL . '/images/addons/swpm-convertkit-integration-addon.png',
|
184 |
'description' => 'Allows you to automatically signup your members to a sequence in your ConvertKit account',
|
185 |
'page_url' => 'https://simple-membership-plugin.com/simple-membership-convertkit-integration-addon/',
|
186 |
);
|
187 |
+
array_push($addons_data, $addon_22);
|
188 |
|
189 |
+
$addon_23 = array(
|
190 |
'name' => 'WooCommerce Payments',
|
191 |
'thumbnail' => SIMPLE_WP_MEMBERSHIP_URL . '/images/addons/swpm-woocommerce-addon.png',
|
192 |
'description' => 'This addon can be used to accept membership payment via the WooCommerce plugin',
|
193 |
'page_url' => 'https://simple-membership-plugin.com/woocommerce-simple-membership-plugin-integration/',
|
194 |
);
|
195 |
+
array_push($addons_data, $addon_23);
|
196 |
|
197 |
+
$addon_24 = array(
|
198 |
'name' => 'Miscellaneous Shortcodes',
|
199 |
'thumbnail' => SIMPLE_WP_MEMBERSHIP_URL . '/images/addons/swpm-misc-shortcodes-addon.png',
|
200 |
'description' => 'This addon has a collection of miscellaneous shortcodes',
|
201 |
'page_url' => 'https://simple-membership-plugin.com/simple-membership-miscellaneous-shortcodes-addon/',
|
202 |
);
|
203 |
+
array_push($addons_data, $addon_24);
|
204 |
|
205 |
/*** Show the addons list ***/
|
206 |
foreach ($addons_data as $addon) {
|
views/admin_edit_level.php
CHANGED
@@ -44,7 +44,7 @@
|
|
44 |
<?php echo apply_filters('swpm_admin_edit_membership_level_ui', '', $id);?>
|
45 |
</tbody>
|
46 |
</table>
|
47 |
-
<?php submit_button(SwpmUtils::_('
|
48 |
</form>
|
49 |
</div>
|
50 |
<script>
|
44 |
<?php echo apply_filters('swpm_admin_edit_membership_level_ui', '', $id);?>
|
45 |
</tbody>
|
46 |
</table>
|
47 |
+
<?php submit_button(SwpmUtils::_('Save Membership Level '), 'primary', 'editswpmlevel', true, array( 'id' => 'editswpmlevelsub' ) ); ?>
|
48 |
</form>
|
49 |
</div>
|
50 |
<script>
|
views/admin_tools_settings.php
CHANGED
@@ -44,6 +44,12 @@
|
|
44 |
<?php foreach ($links as $key => $link) { ?>
|
45 |
<input type="text" size="120" readonly="readonly" name="link[<?php echo $key ?>]" value="<?php echo $link; ?>"/><br/>
|
46 |
<?php } ?>
|
|
|
|
|
|
|
|
|
|
|
|
|
47 |
</td>
|
48 |
</tr>
|
49 |
|
44 |
<?php foreach ($links as $key => $link) { ?>
|
45 |
<input type="text" size="120" readonly="readonly" name="link[<?php echo $key ?>]" value="<?php echo $link; ?>"/><br/>
|
46 |
<?php } ?>
|
47 |
+
|
48 |
+
<?php
|
49 |
+
if (isset($_REQUEST['swpm_reminder_email'])) {
|
50 |
+
echo '<div class="swpm-green-box">' . SwpmUtils::_('A prompt to complete registration email was also sent.') . '</div>';
|
51 |
+
}
|
52 |
+
?>
|
53 |
</td>
|
54 |
</tr>
|
55 |
|
views/edit.php
CHANGED
@@ -3,6 +3,14 @@ $auth = SwpmAuth::get_instance();
|
|
3 |
$user_data = (array) $auth->userData;
|
4 |
$user_data['membership_level_alias'] = $auth->get('alias');
|
5 |
extract($user_data, EXTR_SKIP);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
6 |
//The admin ajax causes an issue with the JS validation if done on form submission. The edit profile doesn't need JS validation on email. There is PHP validation which will catch any email error.
|
7 |
//SimpleWpMembership::enqueue_validation_scripts(array('ajaxEmailCall' => array('extraData'=>'&action=swpm_validate_email&member_id='.SwpmAuth::get_instance()->get('member_id'))));
|
8 |
?>
|
@@ -16,11 +24,11 @@ extract($user_data, EXTR_SKIP);
|
|
16 |
</tr>
|
17 |
<tr class="swpm-profile-email-row">
|
18 |
<td><label for="email"><?php echo SwpmUtils::_('Email'); ?></label></td>
|
19 |
-
<td><input type="text" id="email" name="email" size="50" autocomplete="off" class="
|
20 |
</tr>
|
21 |
<tr class="swpm-profile-password-row">
|
22 |
<td><label for="password"><?php echo SwpmUtils::_('Password'); ?></label></td>
|
23 |
-
<td><input type="password" id="password" value="" size="50" name="password" autocomplete="off" placeholder="<?php echo SwpmUtils::_('Leave empty to keep the current password'); ?>" /></td>
|
24 |
</tr>
|
25 |
<tr class="swpm-profile-password-retype-row">
|
26 |
<td><label for="password_re"><?php echo SwpmUtils::_('Repeat Password'); ?></label></td>
|
3 |
$user_data = (array) $auth->userData;
|
4 |
$user_data['membership_level_alias'] = $auth->get('alias');
|
5 |
extract($user_data, EXTR_SKIP);
|
6 |
+
$settings=SwpmSettings::get_instance();
|
7 |
+
$force_strong_pass=$settings->get_value('force-strong-passwords');
|
8 |
+
if (!empty($force_strong_pass)) {
|
9 |
+
$pass_class="validate[custom[strongPass],minSize[8]]";
|
10 |
+
} else {
|
11 |
+
$pass_class="";
|
12 |
+
}
|
13 |
+
SimpleWpMembership::enqueue_validation_scripts();
|
14 |
//The admin ajax causes an issue with the JS validation if done on form submission. The edit profile doesn't need JS validation on email. There is PHP validation which will catch any email error.
|
15 |
//SimpleWpMembership::enqueue_validation_scripts(array('ajaxEmailCall' => array('extraData'=>'&action=swpm_validate_email&member_id='.SwpmAuth::get_instance()->get('member_id'))));
|
16 |
?>
|
24 |
</tr>
|
25 |
<tr class="swpm-profile-email-row">
|
26 |
<td><label for="email"><?php echo SwpmUtils::_('Email'); ?></label></td>
|
27 |
+
<td><input type="text" id="email" name="email" size="50" autocomplete="off" class="" value="<?php echo $email; ?>" /></td>
|
28 |
</tr>
|
29 |
<tr class="swpm-profile-password-row">
|
30 |
<td><label for="password"><?php echo SwpmUtils::_('Password'); ?></label></td>
|
31 |
+
<td><input type="password" id="password" value="" size="50" name="password" class="<?php echo $pass_class;?>" autocomplete="off" placeholder="<?php echo SwpmUtils::_('Leave empty to keep the current password'); ?>" /></td>
|
32 |
</tr>
|
33 |
<tr class="swpm-profile-password-retype-row">
|
34 |
<td><label for="password_re"><?php echo SwpmUtils::_('Repeat Password'); ?></label></td>
|
views/payments/admin_payment_settings.php
CHANGED
@@ -22,6 +22,12 @@
|
|
22 |
echo '</strong></p></div>';
|
23 |
}
|
24 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
25 |
?>
|
26 |
<div class="postbox">
|
27 |
<h3 class="hndle"><label for="title"><?php echo SwpmUtils::_('PayPal Integration Settings') ?></label></h3>
|
22 |
echo '</strong></p></div>';
|
23 |
}
|
24 |
}
|
25 |
+
|
26 |
+
echo '<div class="swpm-grey-box">';
|
27 |
+
echo '<p>';
|
28 |
+
SwpmUtils::e('You can create membership payment buttons from the payments menu of this plugin (useful if you want to offer paid membership on the site).');
|
29 |
+
echo '</p>';
|
30 |
+
echo '</div>';
|
31 |
?>
|
32 |
<div class="postbox">
|
33 |
<h3 class="hndle"><label for="title"><?php echo SwpmUtils::_('PayPal Integration Settings') ?></label></h3>
|
views/payments/payment-gateway/stripe_button_shortcode_view.php
CHANGED
@@ -221,13 +221,19 @@ function swpm_render_stripe_subscription_button_sc_output($button_code, $args) {
|
|
221 |
|
222 |
//let's set some vars
|
223 |
$price_in_cents = $plan_data['amount'];
|
224 |
-
$
|
225 |
-
$
|
|
|
|
|
|
|
|
|
|
|
|
|
226 |
$interval_count = $plan_data['interval_count'];
|
227 |
$interval = $plan_data['interval'];
|
228 |
$trial = $plan_data['trial_period_days'];
|
229 |
$plan_name = $plan_data['name'];
|
230 |
-
$description = $payment_amount . ' ' .
|
231 |
if ($interval_count == 1) {
|
232 |
$description .= ' / ' . $interval;
|
233 |
} else {
|
221 |
|
222 |
//let's set some vars
|
223 |
$price_in_cents = $plan_data['amount'];
|
224 |
+
$payment_currency = strtoupper($plan_data['currency']);
|
225 |
+
$zeroCents = unserialize(SIMPLE_WP_MEMBERSHIP_STRIPE_ZERO_CENTS);
|
226 |
+
if (in_array($payment_currency, $zeroCents)) {
|
227 |
+
//this is zero-cents currency, amount shouldn't be devided by 100
|
228 |
+
$payment_amount = $price_in_cents;
|
229 |
+
} else {
|
230 |
+
$payment_amount = $price_in_cents / 100;
|
231 |
+
}
|
232 |
$interval_count = $plan_data['interval_count'];
|
233 |
$interval = $plan_data['interval'];
|
234 |
$trial = $plan_data['trial_period_days'];
|
235 |
$plan_name = $plan_data['name'];
|
236 |
+
$description = $payment_amount . ' ' . $payment_currency;
|
237 |
if ($interval_count == 1) {
|
238 |
$description .= ' / ' . $interval;
|
239 |
} else {
|