Version Description
- Added a new filter (swpm_mini_login_output). It can be used to override the [swpm_mini_login] shortcode's output.
- The "Edit" link in the members menu has been renamed to "Edit/View" to make it more user-friendly.
- Updated the German language file.
- The members listing in the members menu can now be sorted by the "Access Starts" column.
- Fixed an issue with Stripe SCA buttons whereby duplicate "incomplete" entries were being created. This started happening recently from a new change that Stripe made.
Download this release
Release Info
Developer | mra13 |
Plugin | Simple Membership |
Version | 3.9.5 |
Comparing to | |
See all releases |
Code changes from version 3.9.4 to 3.9.5
- classes/class.swpm-ajax.php +5 -5
- classes/class.swpm-init-time-tasks.php +3 -1
- classes/class.swpm-members.php +6 -5
- classes/class.swpm-utils-misc.php +15 -0
- classes/class.swpm-wp-loaded-tasks.php +5 -2
- classes/shortcode-related/class.swpm-shortcodes-handler.php +14 -11
- ipn/swpm-stripe-sca-buy-now-ipn.php +152 -3
- ipn/swpm-stripe-subscription-ipn.php +20 -20
- languages/simple-membership-ar_SA.po +1 -1
- languages/simple-membership-bs_BA.po +1 -1
- languages/simple-membership-ca_ES.po +1 -1
- languages/simple-membership-cs_CZ.po +1 -1
- languages/simple-membership-da_DK.po +1 -1
- languages/simple-membership-de_DE.mo +0 -0
- languages/simple-membership-de_DE.po +596 -575
- languages/simple-membership-es_MX.po +1 -1
- languages/simple-membership-et_EE.po +1 -1
- languages/simple-membership.pot +1 -1
- readme.txt +8 -1
- simple-wp-membership.php +2 -2
- views/payments/payment-gateway/stripe_sca_button_shortcode_view.php +40 -64
classes/class.swpm-ajax.php
CHANGED
@@ -4,7 +4,7 @@
|
|
4 |
*/
|
5 |
|
6 |
class SwpmAjax {
|
7 |
-
|
8 |
public static function validate_email_ajax() {
|
9 |
global $wpdb;
|
10 |
$field_value = filter_input(INPUT_GET, 'fieldValue');
|
@@ -22,12 +22,12 @@ class SwpmAjax {
|
|
22 |
$query = $wpdb->prepare("SELECT member_id FROM $table WHERE email = %s AND user_name != ''", $field_value);
|
23 |
$db_id = $wpdb->get_var($query) ;
|
24 |
$exists = ($db_id > 0) && $db_id != $member_id;
|
25 |
-
echo '[ "' . $field_id . (($exists) ? '",false, "χ '.SwpmUtils::_('
|
26 |
exit;
|
27 |
}
|
28 |
|
29 |
public static function validate_user_name_ajax() {
|
30 |
-
global $wpdb;
|
31 |
$field_value = filter_input(INPUT_GET, 'fieldValue');
|
32 |
$field_id = filter_input(INPUT_GET, 'fieldId');
|
33 |
if (!check_ajax_referer( 'swpm-rego-form-ajax-nonce', 'nonce', false )) {
|
@@ -41,9 +41,9 @@ class SwpmAjax {
|
|
41 |
$table = $wpdb->prefix . "swpm_members_tbl";
|
42 |
$query = $wpdb->prepare("SELECT COUNT(*) FROM $table WHERE user_name = %s", $field_value);
|
43 |
$exists = $wpdb->get_var($query) > 0;
|
44 |
-
echo '[ "' . $field_id . (($exists) ? '",false,"χ '. SwpmUtils::_('
|
45 |
'",true,"√ '.SwpmUtils::_('Available'). '"]');
|
46 |
exit;
|
47 |
}
|
48 |
-
|
49 |
}
|
4 |
*/
|
5 |
|
6 |
class SwpmAjax {
|
7 |
+
|
8 |
public static function validate_email_ajax() {
|
9 |
global $wpdb;
|
10 |
$field_value = filter_input(INPUT_GET, 'fieldValue');
|
22 |
$query = $wpdb->prepare("SELECT member_id FROM $table WHERE email = %s AND user_name != ''", $field_value);
|
23 |
$db_id = $wpdb->get_var($query) ;
|
24 |
$exists = ($db_id > 0) && $db_id != $member_id;
|
25 |
+
echo '[ "' . $field_id . (($exists) ? '",false, "χ '.SwpmUtils::_('Already taken').'"]' : '",true, "√ '.SwpmUtils::_('Available'). '"]');
|
26 |
exit;
|
27 |
}
|
28 |
|
29 |
public static function validate_user_name_ajax() {
|
30 |
+
global $wpdb;
|
31 |
$field_value = filter_input(INPUT_GET, 'fieldValue');
|
32 |
$field_id = filter_input(INPUT_GET, 'fieldId');
|
33 |
if (!check_ajax_referer( 'swpm-rego-form-ajax-nonce', 'nonce', false )) {
|
41 |
$table = $wpdb->prefix . "swpm_members_tbl";
|
42 |
$query = $wpdb->prepare("SELECT COUNT(*) FROM $table WHERE user_name = %s", $field_value);
|
43 |
$exists = $wpdb->get_var($query) > 0;
|
44 |
+
echo '[ "' . $field_id . (($exists) ? '",false,"χ '. SwpmUtils::_('Already taken'). '"]' :
|
45 |
'",true,"√ '.SwpmUtils::_('Available'). '"]');
|
46 |
exit;
|
47 |
}
|
48 |
+
|
49 |
}
|
classes/class.swpm-init-time-tasks.php
CHANGED
@@ -17,7 +17,9 @@ class SwpmInitTimeTasks {
|
|
17 |
if ( ! isset( $_COOKIE['swpm_session'] ) ) { // give a unique ID to current session.
|
18 |
$uid = md5( microtime() );
|
19 |
$_COOKIE['swpm_session'] = $uid; // fake it for current session/
|
20 |
-
|
|
|
|
|
21 |
}
|
22 |
|
23 |
//Crete the custom post types
|
17 |
if ( ! isset( $_COOKIE['swpm_session'] ) ) { // give a unique ID to current session.
|
18 |
$uid = md5( microtime() );
|
19 |
$_COOKIE['swpm_session'] = $uid; // fake it for current session/
|
20 |
+
if ( ! headers_sent() ) {
|
21 |
+
setcookie( 'swpm_session', $uid, 0, '/' );
|
22 |
+
}
|
23 |
}
|
24 |
|
25 |
//Crete the custom post types
|
classes/class.swpm-members.php
CHANGED
@@ -38,6 +38,7 @@ class SwpmMembers extends WP_List_Table {
|
|
38 |
'last_name' => array( 'last_name', false ),
|
39 |
'email' => array( 'email', false ),
|
40 |
'alias' => array( 'alias', false ),
|
|
|
41 |
'account_state' => array( 'account_state', false ),
|
42 |
'last_accessed' => array( 'last_accessed', false ),
|
43 |
);
|
@@ -67,7 +68,7 @@ class SwpmMembers extends WP_List_Table {
|
|
67 |
function column_member_id( $item ) {
|
68 |
$delete_swpmuser_nonce = wp_create_nonce( 'delete_swpmuser_admin_end' );
|
69 |
$actions = array(
|
70 |
-
'edit' => sprintf( '<a href="admin.php?page=simple_wp_membership&member_action=edit&member_id=%s">Edit</a>', $item['member_id'] ),
|
71 |
'delete' => sprintf( '<a href="admin.php?page=simple_wp_membership&member_action=delete&member_id=%s&delete_swpmuser_nonce=%s" onclick="return confirm(\'Are you sure you want to delete this entry?\')">Delete</a>', $item['member_id'], $delete_swpmuser_nonce ),
|
72 |
);
|
73 |
return $item['member_id'] . $this->row_actions( $actions );
|
@@ -407,8 +408,8 @@ class SwpmMembers extends WP_List_Table {
|
|
407 |
// let's check if Stripe subscription needs to be cancelled
|
408 |
global $wpdb;
|
409 |
$q = $wpdb->prepare(
|
410 |
-
'SELECT *
|
411 |
-
FROM `' . $wpdb->prefix . 'swpm_payments_tbl`
|
412 |
WHERE email = %s
|
413 |
AND (gateway = "stripe" OR gateway = "stripe-sca-subs")
|
414 |
AND subscr_id != ""',
|
@@ -584,7 +585,7 @@ class SwpmMembers extends WP_List_Table {
|
|
584 |
</p>
|
585 |
<form method="post" action="">
|
586 |
<input type="hidden" name="swpm_bulk_change_level_nonce" value="<?php echo wp_create_nonce( 'swpm_bulk_change_level_nonce_action' ); ?>" />
|
587 |
-
|
588 |
<table width="100%" border="0" cellspacing="0" cellpadding="6">
|
589 |
<tr valign="top">
|
590 |
<td width="25%" align="left">
|
@@ -633,7 +634,7 @@ class SwpmMembers extends WP_List_Table {
|
|
633 |
</p>
|
634 |
<form method="post" action="">
|
635 |
<input type="hidden" name="swpm_bulk_start_date_nonce" value="<?php echo wp_create_nonce( 'swpm_bulk_start_date_nonce_action' ); ?>" />
|
636 |
-
|
637 |
<table width="100%" border="0" cellspacing="0" cellpadding="6">
|
638 |
<tr valign="top">
|
639 |
<td width="25%" align="left">
|
38 |
'last_name' => array( 'last_name', false ),
|
39 |
'email' => array( 'email', false ),
|
40 |
'alias' => array( 'alias', false ),
|
41 |
+
'subscription_starts' => array( 'subscription_starts', false ),
|
42 |
'account_state' => array( 'account_state', false ),
|
43 |
'last_accessed' => array( 'last_accessed', false ),
|
44 |
);
|
68 |
function column_member_id( $item ) {
|
69 |
$delete_swpmuser_nonce = wp_create_nonce( 'delete_swpmuser_admin_end' );
|
70 |
$actions = array(
|
71 |
+
'edit' => sprintf( '<a href="admin.php?page=simple_wp_membership&member_action=edit&member_id=%s">Edit/View</a>', $item['member_id'] ),
|
72 |
'delete' => sprintf( '<a href="admin.php?page=simple_wp_membership&member_action=delete&member_id=%s&delete_swpmuser_nonce=%s" onclick="return confirm(\'Are you sure you want to delete this entry?\')">Delete</a>', $item['member_id'], $delete_swpmuser_nonce ),
|
73 |
);
|
74 |
return $item['member_id'] . $this->row_actions( $actions );
|
408 |
// let's check if Stripe subscription needs to be cancelled
|
409 |
global $wpdb;
|
410 |
$q = $wpdb->prepare(
|
411 |
+
'SELECT *
|
412 |
+
FROM `' . $wpdb->prefix . 'swpm_payments_tbl`
|
413 |
WHERE email = %s
|
414 |
AND (gateway = "stripe" OR gateway = "stripe-sca-subs")
|
415 |
AND subscr_id != ""',
|
585 |
</p>
|
586 |
<form method="post" action="">
|
587 |
<input type="hidden" name="swpm_bulk_change_level_nonce" value="<?php echo wp_create_nonce( 'swpm_bulk_change_level_nonce_action' ); ?>" />
|
588 |
+
|
589 |
<table width="100%" border="0" cellspacing="0" cellpadding="6">
|
590 |
<tr valign="top">
|
591 |
<td width="25%" align="left">
|
634 |
</p>
|
635 |
<form method="post" action="">
|
636 |
<input type="hidden" name="swpm_bulk_start_date_nonce" value="<?php echo wp_create_nonce( 'swpm_bulk_start_date_nonce_action' ); ?>" />
|
637 |
+
|
638 |
<table width="100%" border="0" cellspacing="0" cellpadding="6">
|
639 |
<tr valign="top">
|
640 |
<td width="25%" align="left">
|
classes/class.swpm-utils-misc.php
CHANGED
@@ -2,6 +2,8 @@
|
|
2 |
|
3 |
class SwpmMiscUtils {
|
4 |
|
|
|
|
|
5 |
public static function create_mandatory_wp_pages() {
|
6 |
$settings = SwpmSettings::get_instance();
|
7 |
|
@@ -732,4 +734,17 @@ class SwpmMiscUtils {
|
|
732 |
wp_mail( $email, $subject, $email_body, $headers );
|
733 |
}
|
734 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
735 |
}
|
2 |
|
3 |
class SwpmMiscUtils {
|
4 |
|
5 |
+
public static $stripe_sca_frontend_scripts_printed = false;
|
6 |
+
|
7 |
public static function create_mandatory_wp_pages() {
|
8 |
$settings = SwpmSettings::get_instance();
|
9 |
|
734 |
wp_mail( $email, $subject, $email_body, $headers );
|
735 |
}
|
736 |
|
737 |
+
/**
|
738 |
+
* Outputs Stripe SCA frontend scripts and styles once
|
739 |
+
*/
|
740 |
+
public static function output_stripe_sca_frontend_scripts_once() {
|
741 |
+
$out = '';
|
742 |
+
if ( ! self::$stripe_sca_frontend_scripts_printed ) {
|
743 |
+
$out .= '<script src="https://js.stripe.com/v3/"></script>';
|
744 |
+
$out .= "<link rel='stylesheet' href='https://checkout.stripe.com/v3/checkout/button.css' type='text/css' media='all' />";
|
745 |
+
self::$stripe_sca_frontend_scripts_printed = true;
|
746 |
+
}
|
747 |
+
return $out;
|
748 |
+
}
|
749 |
+
|
750 |
}
|
classes/class.swpm-wp-loaded-tasks.php
CHANGED
@@ -76,7 +76,7 @@ class SwpmWpLoadedTasks {
|
|
76 |
$swpm_process_stripe_sca_subscription = filter_input( INPUT_GET, 'swpm_process_stripe_sca_subscription' );
|
77 |
$hook = filter_input( INPUT_GET, 'hook', FILTER_SANITIZE_NUMBER_INT );
|
78 |
if ( $swpm_process_stripe_sca_subscription == '1' ) {
|
79 |
-
|
80 |
if ( $hook ) {
|
81 |
include SIMPLE_WP_MEMBERSHIP_PATH . 'ipn/swpm-stripe-subscription-ipn.php';
|
82 |
} else {
|
@@ -92,11 +92,14 @@ class SwpmWpLoadedTasks {
|
|
92 |
exit;
|
93 |
}
|
94 |
|
95 |
-
//Listen and handle smart paypal checkout IPN
|
96 |
if ( wp_doing_ajax() ) {
|
|
|
97 |
include SIMPLE_WP_MEMBERSHIP_PATH . 'ipn/swpm-smart-checkout-ipn.php';
|
98 |
add_action( 'wp_ajax_swpm_process_pp_smart_checkout', 'swpm_pp_smart_checkout_ajax_hanlder' );
|
99 |
add_action( 'wp_ajax_nopriv_swpm_process_pp_smart_checkout', 'swpm_pp_smart_checkout_ajax_hanlder' );
|
|
|
|
|
|
|
100 |
}
|
101 |
}
|
102 |
|
76 |
$swpm_process_stripe_sca_subscription = filter_input( INPUT_GET, 'swpm_process_stripe_sca_subscription' );
|
77 |
$hook = filter_input( INPUT_GET, 'hook', FILTER_SANITIZE_NUMBER_INT );
|
78 |
if ( $swpm_process_stripe_sca_subscription == '1' ) {
|
79 |
+
//$hook == 1 means it is a background post via webshooks. Otherwise it is direct post to the script after payment (at the time of payment).
|
80 |
if ( $hook ) {
|
81 |
include SIMPLE_WP_MEMBERSHIP_PATH . 'ipn/swpm-stripe-subscription-ipn.php';
|
82 |
} else {
|
92 |
exit;
|
93 |
}
|
94 |
|
|
|
95 |
if ( wp_doing_ajax() ) {
|
96 |
+
//Listen and handle smart paypal checkout IPN
|
97 |
include SIMPLE_WP_MEMBERSHIP_PATH . 'ipn/swpm-smart-checkout-ipn.php';
|
98 |
add_action( 'wp_ajax_swpm_process_pp_smart_checkout', 'swpm_pp_smart_checkout_ajax_hanlder' );
|
99 |
add_action( 'wp_ajax_nopriv_swpm_process_pp_smart_checkout', 'swpm_pp_smart_checkout_ajax_hanlder' );
|
100 |
+
|
101 |
+
//Listed and handle Stripe SCA checkout session create requests
|
102 |
+
require_once SIMPLE_WP_MEMBERSHIP_PATH . 'ipn/swpm-stripe-sca-buy-now-ipn.php';
|
103 |
}
|
104 |
}
|
105 |
|
classes/shortcode-related/class.swpm-shortcodes-handler.php
CHANGED
@@ -8,9 +8,9 @@ class SwpmShortcodesHandler {
|
|
8 |
add_shortcode('swpm_thank_you_page_registration', array(&$this, 'swpm_ty_page_rego_sc'));
|
9 |
|
10 |
add_shortcode('swpm_show_expiry_date', array(&$this, 'swpm_show_expiry_date_sc'));
|
11 |
-
|
12 |
add_shortcode('swpm_mini_login', array(&$this, 'swpm_show_mini_login_sc'));
|
13 |
-
|
14 |
add_shortcode('swpm_paypal_subscription_cancel_link', array(&$this, 'swpm_pp_cancel_subs_link_sc'));
|
15 |
}
|
16 |
|
@@ -36,7 +36,7 @@ class SwpmShortcodesHandler {
|
|
36 |
$error_msg .= '</p>';
|
37 |
return $error_msg;
|
38 |
}
|
39 |
-
|
40 |
include_once(SIMPLE_WP_MEMBERSHIP_PATH . 'views/payments/payment-gateway/paypal_button_shortcode_view.php');
|
41 |
include_once(SIMPLE_WP_MEMBERSHIP_PATH . 'views/payments/payment-gateway/stripe_button_shortcode_view.php');
|
42 |
include_once(SIMPLE_WP_MEMBERSHIP_PATH . 'views/payments/payment-gateway/stripe_sca_button_shortcode_view.php');
|
@@ -102,14 +102,14 @@ class SwpmShortcodesHandler {
|
|
102 |
}
|
103 |
|
104 |
public function swpm_show_mini_login_sc($args) {
|
105 |
-
|
106 |
$login_page_url = SwpmSettings::get_instance()->get_value('login-page-url');
|
107 |
$join_page_url = SwpmSettings::get_instance()->get_value('join-us-page-url');
|
108 |
$profile_page_url = SwpmSettings::get_instance()->get_value('profile-page-url');
|
109 |
$logout_url = SIMPLE_WP_MEMBERSHIP_SITE_HOME_URL . '?swpm-logout=true';
|
110 |
-
|
111 |
$output = '<div class="swpm_mini_login_wrapper">';
|
112 |
-
|
113 |
//Check if the user is logged in or not
|
114 |
$auth = SwpmAuth::get_instance();
|
115 |
if ($auth->is_logged_in()) {
|
@@ -125,11 +125,14 @@ class SwpmShortcodesHandler {
|
|
125 |
$output .= '<span class="swpm_mini_login_no_membership"> | '.SwpmUtils::_('Not a member? ').'</span>';
|
126 |
$output .= '<span class="swpm_mini_login_join_now"><a href="'.$join_page_url.'">'.SwpmUtils::_('Join Now').'</a></span>';
|
127 |
}
|
128 |
-
|
129 |
$output .= '</div>';
|
|
|
|
|
|
|
130 |
return $output;
|
131 |
}
|
132 |
-
|
133 |
public function swpm_pp_cancel_subs_link_sc($args){
|
134 |
extract(shortcode_atts(array(
|
135 |
'merchant_id' => '',
|
@@ -142,7 +145,7 @@ class SwpmShortcodesHandler {
|
|
142 |
|
143 |
$output = '';
|
144 |
$settings = SwpmSettings::get_instance();
|
145 |
-
|
146 |
//Check if the member is logged-in
|
147 |
if (SwpmMemberUtils::is_member_logged_in()) {
|
148 |
$user_id = SwpmMemberUtils::get_logged_in_members_id();
|
@@ -150,7 +153,7 @@ class SwpmShortcodesHandler {
|
|
150 |
|
151 |
if (!empty($user_id)) {
|
152 |
//The user is logged-in
|
153 |
-
|
154 |
//Set the default anchor text (if one is provided via teh shortcode).
|
155 |
if(empty($anchor_text)){
|
156 |
$anchor_text = SwpmUtils::_('Unsubscribe from PayPal');
|
@@ -170,7 +173,7 @@ class SwpmShortcodesHandler {
|
|
170 |
$output .= '</a>';
|
171 |
}
|
172 |
$output .= '</div>';
|
173 |
-
|
174 |
} else {
|
175 |
//The user is NOT logged-in
|
176 |
$output .= '<p>' . SwpmUtils::_('You are not logged-in as a member') . '</p>';
|
8 |
add_shortcode('swpm_thank_you_page_registration', array(&$this, 'swpm_ty_page_rego_sc'));
|
9 |
|
10 |
add_shortcode('swpm_show_expiry_date', array(&$this, 'swpm_show_expiry_date_sc'));
|
11 |
+
|
12 |
add_shortcode('swpm_mini_login', array(&$this, 'swpm_show_mini_login_sc'));
|
13 |
+
|
14 |
add_shortcode('swpm_paypal_subscription_cancel_link', array(&$this, 'swpm_pp_cancel_subs_link_sc'));
|
15 |
}
|
16 |
|
36 |
$error_msg .= '</p>';
|
37 |
return $error_msg;
|
38 |
}
|
39 |
+
|
40 |
include_once(SIMPLE_WP_MEMBERSHIP_PATH . 'views/payments/payment-gateway/paypal_button_shortcode_view.php');
|
41 |
include_once(SIMPLE_WP_MEMBERSHIP_PATH . 'views/payments/payment-gateway/stripe_button_shortcode_view.php');
|
42 |
include_once(SIMPLE_WP_MEMBERSHIP_PATH . 'views/payments/payment-gateway/stripe_sca_button_shortcode_view.php');
|
102 |
}
|
103 |
|
104 |
public function swpm_show_mini_login_sc($args) {
|
105 |
+
|
106 |
$login_page_url = SwpmSettings::get_instance()->get_value('login-page-url');
|
107 |
$join_page_url = SwpmSettings::get_instance()->get_value('join-us-page-url');
|
108 |
$profile_page_url = SwpmSettings::get_instance()->get_value('profile-page-url');
|
109 |
$logout_url = SIMPLE_WP_MEMBERSHIP_SITE_HOME_URL . '?swpm-logout=true';
|
110 |
+
|
111 |
$output = '<div class="swpm_mini_login_wrapper">';
|
112 |
+
|
113 |
//Check if the user is logged in or not
|
114 |
$auth = SwpmAuth::get_instance();
|
115 |
if ($auth->is_logged_in()) {
|
125 |
$output .= '<span class="swpm_mini_login_no_membership"> | '.SwpmUtils::_('Not a member? ').'</span>';
|
126 |
$output .= '<span class="swpm_mini_login_join_now"><a href="'.$join_page_url.'">'.SwpmUtils::_('Join Now').'</a></span>';
|
127 |
}
|
128 |
+
|
129 |
$output .= '</div>';
|
130 |
+
|
131 |
+
$output = apply_filters ('swpm_mini_login_output', $output);
|
132 |
+
|
133 |
return $output;
|
134 |
}
|
135 |
+
|
136 |
public function swpm_pp_cancel_subs_link_sc($args){
|
137 |
extract(shortcode_atts(array(
|
138 |
'merchant_id' => '',
|
145 |
|
146 |
$output = '';
|
147 |
$settings = SwpmSettings::get_instance();
|
148 |
+
|
149 |
//Check if the member is logged-in
|
150 |
if (SwpmMemberUtils::is_member_logged_in()) {
|
151 |
$user_id = SwpmMemberUtils::get_logged_in_members_id();
|
153 |
|
154 |
if (!empty($user_id)) {
|
155 |
//The user is logged-in
|
156 |
+
|
157 |
//Set the default anchor text (if one is provided via teh shortcode).
|
158 |
if(empty($anchor_text)){
|
159 |
$anchor_text = SwpmUtils::_('Unsubscribe from PayPal');
|
173 |
$output .= '</a>';
|
174 |
}
|
175 |
$output .= '</div>';
|
176 |
+
|
177 |
} else {
|
178 |
//The user is NOT logged-in
|
179 |
$output .= '<p>' . SwpmUtils::_('You are not logged-in as a member') . '</p>';
|
ipn/swpm-stripe-sca-buy-now-ipn.php
CHANGED
@@ -1,11 +1,19 @@
|
|
1 |
<?php
|
2 |
|
3 |
-
require SIMPLE_WP_MEMBERSHIP_PATH . 'ipn/swpm_handle_subsc_ipn.php';
|
4 |
-
|
5 |
class SwpmStripeSCABuyNowIpnHandler {
|
6 |
|
7 |
public function __construct() {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
8 |
|
|
|
9 |
$this->handle_stripe_ipn();
|
10 |
}
|
11 |
|
@@ -49,7 +57,7 @@ class SwpmStripeSCABuyNowIpnHandler {
|
|
49 |
|
50 |
// Include the Stripe library.
|
51 |
SwpmMiscUtils::load_stripe_lib();
|
52 |
-
|
53 |
try {
|
54 |
\Stripe\Stripe::setApiKey( $secret_key );
|
55 |
|
@@ -220,6 +228,147 @@ class SwpmStripeSCABuyNowIpnHandler {
|
|
220 |
SwpmMiscUtils::redirect_to_url( $return_url );
|
221 |
|
222 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
223 |
}
|
224 |
|
225 |
new SwpmStripeSCABuyNowIpnHandler();
|
1 |
<?php
|
2 |
|
|
|
|
|
3 |
class SwpmStripeSCABuyNowIpnHandler {
|
4 |
|
5 |
public function __construct() {
|
6 |
+
//check if this is session create request
|
7 |
+
if ( wp_doing_ajax() ) {
|
8 |
+
$action = filter_input( INPUT_POST, 'action', FILTER_SANITIZE_STRING );
|
9 |
+
if ( 'swpm_stripe_sca_create_checkout_session' === $action ) {
|
10 |
+
add_action( 'wp_ajax_swpm_stripe_sca_create_checkout_session', array( $this, 'handle_session_create' ) );
|
11 |
+
add_action( 'wp_ajax_nopriv_swpm_stripe_sca_create_checkout_session', array( $this, 'handle_session_create' ) );
|
12 |
+
}
|
13 |
+
return;
|
14 |
+
}
|
15 |
|
16 |
+
require_once SIMPLE_WP_MEMBERSHIP_PATH . 'ipn/swpm_handle_subsc_ipn.php';
|
17 |
$this->handle_stripe_ipn();
|
18 |
}
|
19 |
|
57 |
|
58 |
// Include the Stripe library.
|
59 |
SwpmMiscUtils::load_stripe_lib();
|
60 |
+
|
61 |
try {
|
62 |
\Stripe\Stripe::setApiKey( $secret_key );
|
63 |
|
228 |
SwpmMiscUtils::redirect_to_url( $return_url );
|
229 |
|
230 |
}
|
231 |
+
|
232 |
+
public function handle_session_create() {
|
233 |
+
$button_id = filter_input( INPUT_POST, 'swpm_button_id', FILTER_SANITIZE_NUMBER_INT );
|
234 |
+
if ( empty( $button_id ) ) {
|
235 |
+
wp_send_json( array( 'error' => 'No button ID provided' ) );
|
236 |
+
}
|
237 |
+
|
238 |
+
$settings = SwpmSettings::get_instance();
|
239 |
+
$button_cpt = get_post( $button_id ); //Retrieve the CPT for this button
|
240 |
+
$item_name = htmlspecialchars( $button_cpt->post_title );
|
241 |
+
|
242 |
+
$plan_id = get_post_meta( $button_id, 'stripe_plan_id', true );
|
243 |
+
|
244 |
+
if ( empty( $plan_id ) ) {
|
245 |
+
//Payment amount and currency
|
246 |
+
$payment_amount = get_post_meta( $button_id, 'payment_amount', true );
|
247 |
+
if ( ! is_numeric( $payment_amount ) ) {
|
248 |
+
wp_send_json( array( 'error' => 'Error! The payment amount value of the button must be a numeric number. Example: 49.50' ) );
|
249 |
+
}
|
250 |
+
|
251 |
+
$payment_currency = get_post_meta( $button_id, 'payment_currency', true );
|
252 |
+
$payment_amount = round( $payment_amount, 2 ); //round the amount to 2 decimal place.
|
253 |
+
$zero_cents = unserialize( SIMPLE_WP_MEMBERSHIP_STRIPE_ZERO_CENTS );
|
254 |
+
if ( in_array( $payment_currency, $zero_cents ) ) {
|
255 |
+
//this is zero-cents currency, amount shouldn't be multiplied by 100
|
256 |
+
$price_in_cents = $payment_amount;
|
257 |
+
} else {
|
258 |
+
$price_in_cents = $payment_amount * 100; //The amount (in cents). This value is passed to Stripe API.
|
259 |
+
}
|
260 |
+
$payment_amount_formatted = SwpmMiscUtils::format_money( $payment_amount, $payment_currency );
|
261 |
+
}
|
262 |
+
|
263 |
+
//$button_image_url = get_post_meta($button_id, 'button_image_url', true);//Stripe doesn't currenty support button image for their standard checkout.
|
264 |
+
//User's IP address
|
265 |
+
$user_ip = SwpmUtils::get_user_ip_address();
|
266 |
+
$_SESSION['swpm_payment_button_interaction'] = $user_ip;
|
267 |
+
|
268 |
+
//Custom field data
|
269 |
+
$custom_field_value = 'subsc_ref=' . $membership_level_id;
|
270 |
+
$custom_field_value .= '&user_ip=' . $user_ip;
|
271 |
+
if ( SwpmMemberUtils::is_member_logged_in() ) {
|
272 |
+
$custom_field_value .= '&swpm_id=' . SwpmMemberUtils::get_logged_in_members_id();
|
273 |
+
}
|
274 |
+
$custom_field_value = apply_filters( 'swpm_custom_field_value_filter', $custom_field_value );
|
275 |
+
|
276 |
+
//Sandbox settings
|
277 |
+
$sandbox_enabled = $settings->get_value( 'enable-sandbox-testing' );
|
278 |
+
|
279 |
+
//API keys
|
280 |
+
$stripe_test_secret_key = get_post_meta( $button_id, 'stripe_test_secret_key', true );
|
281 |
+
$stripe_test_publishable_key = get_post_meta( $button_id, 'stripe_test_publishable_key', true );
|
282 |
+
$stripe_live_secret_key = get_post_meta( $button_id, 'stripe_live_secret_key', true );
|
283 |
+
$stripe_live_publishable_key = get_post_meta( $button_id, 'stripe_live_publishable_key', true );
|
284 |
+
if ( $sandbox_enabled ) {
|
285 |
+
$publishable_key = $stripe_test_publishable_key; //Use sandbox API key
|
286 |
+
$secret_key = $stripe_test_secret_key;
|
287 |
+
} else {
|
288 |
+
$publishable_key = $stripe_live_publishable_key; //Use live API key
|
289 |
+
$secret_key = $stripe_live_secret_key;
|
290 |
+
}
|
291 |
+
|
292 |
+
//Billing address
|
293 |
+
$billing_address = isset( $args['billing_address'] ) ? '1' : '';
|
294 |
+
//By default don't show the billing address in the checkout form.
|
295 |
+
//if billing_address parameter is not present in the shortcode, let's check button option
|
296 |
+
if ( $billing_address === '' ) {
|
297 |
+
$collect_address = get_post_meta( $button_id, 'stripe_collect_address', true );
|
298 |
+
if ( $collect_address === '1' ) {
|
299 |
+
//Collect Address enabled in button settings
|
300 |
+
$billing_address = 1;
|
301 |
+
}
|
302 |
+
}
|
303 |
+
|
304 |
+
$ref_id = 'swpm_' . $uniqid . '|' . $button_id;
|
305 |
+
|
306 |
+
//Return, cancel, notifiy URLs
|
307 |
+
if ( empty( $plan_id ) ) {
|
308 |
+
$notify_url = sprintf( SIMPLE_WP_MEMBERSHIP_SITE_HOME_URL . '/?swpm_process_stripe_sca_buy_now=1&ref_id=%s', $ref_id );
|
309 |
+
} else {
|
310 |
+
$notify_url = sprintf( SIMPLE_WP_MEMBERSHIP_SITE_HOME_URL . '/?swpm_process_stripe_sca_subscription=1&ref_id=%s', $ref_id );
|
311 |
+
}
|
312 |
+
|
313 |
+
$current_url_posted = filter_input( INPUT_POST, 'swpm_page_url', FILTER_SANITIZE_URL );
|
314 |
+
|
315 |
+
$current_url = ! empty( $current_url_posted ) ? $current_url_posted : SIMPLE_WP_MEMBERSHIP_SITE_HOME_URL;
|
316 |
+
|
317 |
+
SwpmMiscUtils::load_stripe_lib();
|
318 |
+
|
319 |
+
try {
|
320 |
+
\Stripe\Stripe::setApiKey( $secret_key );
|
321 |
+
|
322 |
+
if ( empty( $plan_id ) ) {
|
323 |
+
//this is one-off payment
|
324 |
+
$opts = array(
|
325 |
+
'payment_method_types' => array( 'card' ),
|
326 |
+
'client_reference_id' => $ref_id,
|
327 |
+
'billing_address_collection' => $billing_address ? 'required' : 'auto',
|
328 |
+
'line_items' => array(
|
329 |
+
array(
|
330 |
+
'name' => $item_name,
|
331 |
+
'description' => $payment_amount_formatted,
|
332 |
+
'amount' => $price_in_cents,
|
333 |
+
'currency' => $payment_currency,
|
334 |
+
'quantity' => 1,
|
335 |
+
),
|
336 |
+
),
|
337 |
+
'success_url' => $notify_url,
|
338 |
+
'cancel_url' => $current_url,
|
339 |
+
);
|
340 |
+
} else {
|
341 |
+
//this is subscription payment
|
342 |
+
$opts = array(
|
343 |
+
'payment_method_types' => array( 'card' ),
|
344 |
+
'client_reference_id' => $ref_id,
|
345 |
+
'billing_address_collection' => $billing_address ? 'required' : 'auto',
|
346 |
+
'subscription_data' => array(
|
347 |
+
'items' => array( array( 'plan' => $plan_id ) ),
|
348 |
+
),
|
349 |
+
'success_url' => $notify_url,
|
350 |
+
'cancel_url' => $current_url,
|
351 |
+
);
|
352 |
+
|
353 |
+
$trial_period = get_post_meta( $button_id, 'stripe_trial_period', true );
|
354 |
+
$trial_period = absint( $trial_period );
|
355 |
+
if ( $trial_period ) {
|
356 |
+
$opts['subscription_data']['trial_period_days'] = $trial_period;
|
357 |
+
}
|
358 |
+
}
|
359 |
+
|
360 |
+
if ( ! empty( $item_logo ) ) {
|
361 |
+
$opts['line_items'][0]['images'] = array( $item_logo );
|
362 |
+
}
|
363 |
+
|
364 |
+
$session = \Stripe\Checkout\Session::create( $opts );
|
365 |
+
} catch ( Exception $e ) {
|
366 |
+
$err = $e->getMessage();
|
367 |
+
wp_send_json( array( 'error' => 'Error occurred: ' . $err ) );
|
368 |
+
}
|
369 |
+
wp_send_json( array( 'session_id' => $session->id ) );
|
370 |
+
}
|
371 |
+
|
372 |
}
|
373 |
|
374 |
new SwpmStripeSCABuyNowIpnHandler();
|
ipn/swpm-stripe-subscription-ipn.php
CHANGED
@@ -10,16 +10,16 @@ class SwpmStripeSubscriptionIpnHandler {
|
|
10 |
}
|
11 |
|
12 |
public function handle_stripe_ipn() {
|
13 |
-
|
14 |
-
|
15 |
-
|
16 |
-
|
17 |
-
|
18 |
-
|
19 |
-
|
20 |
-
if ( isset( $_GET['hook'] ) ) {
|
21 |
// This is Webhook notification from Stripe
|
22 |
-
|
23 |
// TODO: add Webhook Signing Secret verification
|
24 |
// To do this, we need to get customer ID, retreive its details from Stripe, get button_id from metadata
|
25 |
// and see if the button has Signing Secret option set. If it is - we need to check signatures
|
@@ -35,11 +35,11 @@ class SwpmStripeSubscriptionIpnHandler {
|
|
35 |
$event_json = json_decode( $input );
|
36 |
|
37 |
$type = $event_json->type;
|
38 |
-
|
39 |
-
|
40 |
if ( 'customer.subscription.deleted' === $type || 'charge.refunded' === $type ) {
|
41 |
// Subscription expired or refunded event
|
42 |
-
|
43 |
|
44 |
// Let's form minimal ipn_data array for swpm_handle_subsc_cancel_stand_alone
|
45 |
$customer = $event_json->data->object->customer;
|
@@ -50,10 +50,10 @@ class SwpmStripeSubscriptionIpnHandler {
|
|
50 |
|
51 |
swpm_handle_subsc_cancel_stand_alone( $ipn_data );
|
52 |
}
|
53 |
-
|
54 |
-
if ( $type == 'customer.subscription.updated') {
|
55 |
// Subscription updated
|
56 |
-
|
57 |
|
58 |
// Let's form minimal ipn_data array for swpm_handle_subsc_cancel_stand_alone
|
59 |
$customer = $event_json->data->object->customer;
|
@@ -63,15 +63,15 @@ class SwpmStripeSubscriptionIpnHandler {
|
|
63 |
$ipn_data['parent_txn_id'] = $customer;
|
64 |
|
65 |
swpm_update_member_subscription_start_date_if_applicable( $ipn_data );
|
66 |
-
}
|
67 |
-
|
68 |
-
|
69 |
http_response_code( 200 ); // Tells Stripe we received this notification
|
70 |
return;
|
71 |
}
|
72 |
|
73 |
-
|
74 |
-
|
75 |
SwpmLog::log_simple_debug( 'Stripe subscription IPN received. Processing request...', true );
|
76 |
// SwpmLog::log_simple_debug(print_r($_REQUEST, true), true);//Useful for debugging purpose
|
77 |
// Include the Stripe library.
|
10 |
}
|
11 |
|
12 |
public function handle_stripe_ipn() {
|
13 |
+
|
14 |
+
/*
|
15 |
+
* [Imp] This comment explains how this script handles both the first time HTTP Post after payment and the webhooks.
|
16 |
+
* If the "hook" query arg is set then that means it is a webhook notification. It will be used for certain actions like (update, cancel, refund, etc). Others will be ignored.
|
17 |
+
* The first time payment in browser is handled via HTTP POST (when the "hook" query arg is not set).
|
18 |
+
*/
|
19 |
+
|
20 |
+
if ( isset( $_GET['hook'] ) ) {
|
21 |
// This is Webhook notification from Stripe
|
22 |
+
|
23 |
// TODO: add Webhook Signing Secret verification
|
24 |
// To do this, we need to get customer ID, retreive its details from Stripe, get button_id from metadata
|
25 |
// and see if the button has Signing Secret option set. If it is - we need to check signatures
|
35 |
$event_json = json_decode( $input );
|
36 |
|
37 |
$type = $event_json->type;
|
38 |
+
SwpmLog::log_simple_debug( sprintf( 'Stripe subscription webhook received: %s. Checking if we need to handle this webhook.', $type ), true );
|
39 |
+
|
40 |
if ( 'customer.subscription.deleted' === $type || 'charge.refunded' === $type ) {
|
41 |
// Subscription expired or refunded event
|
42 |
+
//SwpmLog::log_simple_debug( sprintf( 'Stripe Subscription Webhook %s received. Processing request...', $type ), true );
|
43 |
|
44 |
// Let's form minimal ipn_data array for swpm_handle_subsc_cancel_stand_alone
|
45 |
$customer = $event_json->data->object->customer;
|
50 |
|
51 |
swpm_handle_subsc_cancel_stand_alone( $ipn_data );
|
52 |
}
|
53 |
+
|
54 |
+
if ( $type == 'customer.subscription.updated' ) {
|
55 |
// Subscription updated
|
56 |
+
//SwpmLog::log_simple_debug( sprintf( 'Stripe Subscription Webhook %s received. Processing request...', $type ), true );
|
57 |
|
58 |
// Let's form minimal ipn_data array for swpm_handle_subsc_cancel_stand_alone
|
59 |
$customer = $event_json->data->object->customer;
|
63 |
$ipn_data['parent_txn_id'] = $customer;
|
64 |
|
65 |
swpm_update_member_subscription_start_date_if_applicable( $ipn_data );
|
66 |
+
}
|
67 |
+
|
68 |
+
//End of the webhook notification execution.
|
69 |
http_response_code( 200 ); // Tells Stripe we received this notification
|
70 |
return;
|
71 |
}
|
72 |
|
73 |
+
//The following will get executed only for DIRECT post (not webhooks). So it is executed at the time of payment in the browser (via HTTP POST). When the "hook" query arg is not set.
|
74 |
+
|
75 |
SwpmLog::log_simple_debug( 'Stripe subscription IPN received. Processing request...', true );
|
76 |
// SwpmLog::log_simple_debug(print_r($_REQUEST, true), true);//Useful for debugging purpose
|
77 |
// Include the Stripe library.
|
languages/simple-membership-ar_SA.po
CHANGED
@@ -50,7 +50,7 @@ msgstr "الرجاء تصحيح ما يلي:"
|
|
50 |
|
51 |
#: simple-membership/classes/class.bAjax.php:17
|
52 |
#: simple-membership/classes/class.bAjax.php:28
|
53 |
-
msgid "
|
54 |
msgstr "حٌجز بالفعل"
|
55 |
|
56 |
#: simple-membership/classes/class.bAjax.php:29
|
50 |
|
51 |
#: simple-membership/classes/class.bAjax.php:17
|
52 |
#: simple-membership/classes/class.bAjax.php:28
|
53 |
+
msgid "Already taken"
|
54 |
msgstr "حٌجز بالفعل"
|
55 |
|
56 |
#: simple-membership/classes/class.bAjax.php:29
|
languages/simple-membership-bs_BA.po
CHANGED
@@ -116,7 +116,7 @@ msgid "Invalid Email Address"
|
|
116 |
msgstr "Nepravilna Email Adresa"
|
117 |
|
118 |
#: classes/class.swpm-ajax.php:21 classes/class.swpm-ajax.php:36
|
119 |
-
msgid "
|
120 |
msgstr "Zauzeto"
|
121 |
|
122 |
#: classes/class.swpm-ajax.php:30
|
116 |
msgstr "Nepravilna Email Adresa"
|
117 |
|
118 |
#: classes/class.swpm-ajax.php:21 classes/class.swpm-ajax.php:36
|
119 |
+
msgid "Already taken"
|
120 |
msgstr "Zauzeto"
|
121 |
|
122 |
#: classes/class.swpm-ajax.php:30
|
languages/simple-membership-ca_ES.po
CHANGED
@@ -119,7 +119,7 @@ msgid "Invalid Email Address"
|
|
119 |
msgstr "Adreça de correu incorrecta"
|
120 |
|
121 |
#: classes/class.swpm-ajax.php:21 classes/class.swpm-ajax.php:32
|
122 |
-
msgid "
|
123 |
msgstr "Ja està agafat"
|
124 |
|
125 |
#: classes/class.swpm-ajax.php:33
|
119 |
msgstr "Adreça de correu incorrecta"
|
120 |
|
121 |
#: classes/class.swpm-ajax.php:21 classes/class.swpm-ajax.php:32
|
122 |
+
msgid "Already taken"
|
123 |
msgstr "Ja està agafat"
|
124 |
|
125 |
#: classes/class.swpm-ajax.php:33
|
languages/simple-membership-cs_CZ.po
CHANGED
@@ -139,7 +139,7 @@ msgid "Invalid Email Address"
|
|
139 |
msgstr ""
|
140 |
|
141 |
#: classes/class.swpm-ajax.php:21 classes/class.swpm-ajax.php:36
|
142 |
-
msgid "
|
143 |
msgstr ""
|
144 |
|
145 |
#: classes/class.swpm-ajax.php:30
|
139 |
msgstr ""
|
140 |
|
141 |
#: classes/class.swpm-ajax.php:21 classes/class.swpm-ajax.php:36
|
142 |
+
msgid "Already taken"
|
143 |
msgstr ""
|
144 |
|
145 |
#: classes/class.swpm-ajax.php:30
|
languages/simple-membership-da_DK.po
CHANGED
@@ -49,7 +49,7 @@ msgstr "Korriger venligst følgende:"
|
|
49 |
|
50 |
#: simple-membership/classes/class.bAjax.php:17
|
51 |
#: simple-membership/classes/class.bAjax.php:28
|
52 |
-
msgid "
|
53 |
msgstr "Anvendes allerede af en anden."
|
54 |
|
55 |
#: simple-membership/classes/class.bAjax.php:29
|
49 |
|
50 |
#: simple-membership/classes/class.bAjax.php:17
|
51 |
#: simple-membership/classes/class.bAjax.php:28
|
52 |
+
msgid "Already taken"
|
53 |
msgstr "Anvendes allerede af en anden."
|
54 |
|
55 |
#: simple-membership/classes/class.bAjax.php:29
|
languages/simple-membership-de_DE.mo
CHANGED
Binary file
|
languages/simple-membership-de_DE.po
CHANGED
@@ -1,30 +1,29 @@
|
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Simple Membership\n"
|
4 |
-
"
|
5 |
-
"
|
6 |
-
"
|
7 |
-
"Last-Translator: Geo_Writer <information@geoplan-systems.de>\n"
|
8 |
-
"Language-Team: Deutsch\n"
|
9 |
-
"Language: de_DE\n"
|
10 |
"MIME-Version: 1.0\n"
|
11 |
"Content-Type: text/plain; charset=UTF-8\n"
|
12 |
"Content-Transfer-Encoding: 8bit\n"
|
13 |
-
"X-Generator: Poedit 2.2.
|
14 |
"X-Poedit-KeywordsList: __;_e;e\n"
|
15 |
-
"X-Poedit-Basepath:
|
|
|
16 |
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
17 |
-
"
|
18 |
-
"X-Poedit-SearchPath-0:
|
19 |
-
"X-Poedit-SearchPath-1: simple-membership\n"
|
20 |
|
21 |
#: classes/class.simple-wp-membership.php:180
|
22 |
msgid "The admin of this site does not allow users to access the wp dashboard."
|
23 |
-
msgstr "
|
|
|
|
|
24 |
|
25 |
#: classes/class.simple-wp-membership.php:181
|
26 |
msgid "Go back to the home page by "
|
27 |
-
msgstr "
|
28 |
|
29 |
#: classes/class.simple-wp-membership.php:181
|
30 |
msgid "clicking here"
|
@@ -35,41 +34,41 @@ msgid ""
|
|
35 |
"Error! This site has the force WP user login feature enabled in the "
|
36 |
"settings. We could not find a WP user record for the given username: "
|
37 |
msgstr ""
|
38 |
-
"Fehler!
|
39 |
-
"
|
40 |
-
"
|
41 |
|
42 |
#: classes/class.simple-wp-membership.php:243
|
43 |
msgid ""
|
44 |
"This error is triggered when a member account doesn't have a corresponding "
|
45 |
"WP user account. So the plugin fails to log the user into the WP User system."
|
46 |
msgstr ""
|
47 |
-
"Dieser Fehler
|
48 |
-
"
|
49 |
-
"
|
50 |
|
51 |
#: classes/class.simple-wp-membership.php:244
|
52 |
msgid ""
|
53 |
"Contact the site admin and request them to check your username in the WP "
|
54 |
"Users menu to see what happened with the WP user entry of your account."
|
55 |
msgstr ""
|
56 |
-
"
|
57 |
-
"Benutzernamen zu
|
58 |
-
"
|
59 |
|
60 |
#: classes/class.simple-wp-membership.php:245
|
61 |
msgid ""
|
62 |
"The site admin can disable the Force WP User Synchronization feature in the "
|
63 |
"settings to disable this feature and this error will go away."
|
64 |
msgstr ""
|
65 |
-
"Der
|
66 |
-
"deaktivieren
|
67 |
|
68 |
#: classes/class.simple-wp-membership.php:246
|
69 |
msgid "You can use the back button of your browser to go back to the site."
|
70 |
msgstr ""
|
71 |
-
"Sie können
|
72 |
-
"
|
73 |
|
74 |
#: classes/class.simple-wp-membership.php:407
|
75 |
msgid "You are not logged in."
|
@@ -80,21 +79,21 @@ msgid ""
|
|
80 |
"You have the sandbox payment mode enabled in plugin settings. Make sure to "
|
81 |
"turn off the sandbox mode when you want to do live transactions."
|
82 |
msgstr ""
|
83 |
-
"Sie haben in den Einstellungen
|
84 |
-
"
|
85 |
-
"
|
86 |
|
87 |
#: classes/class.simple-wp-membership.php:473
|
88 |
msgid "Simple WP Membership Protection"
|
89 |
-
msgstr "Simple WP
|
90 |
|
91 |
#: classes/class.simple-wp-membership.php:485
|
92 |
msgid "Simple Membership Protection options"
|
93 |
-
msgstr "
|
94 |
|
95 |
#: classes/class.simple-wp-membership.php:503
|
96 |
msgid "Do you want to protect this content?"
|
97 |
-
msgstr "Möchten Sie
|
98 |
|
99 |
#: classes/class.simple-wp-membership.php:504
|
100 |
msgid "No, Do not protect this content."
|
@@ -107,24 +106,23 @@ msgstr "Ja, diesen Inhalt schützen."
|
|
107 |
#: classes/class.simple-wp-membership.php:508
|
108 |
msgid "Select the membership level that can access this content:"
|
109 |
msgstr ""
|
110 |
-
"Wählen Sie die Mitgliedschaftsstufe
|
111 |
-
"kann:"
|
112 |
|
113 |
#: classes/class.simple-wp-membership.php:646
|
114 |
#: classes/class.simple-wp-membership.php:650
|
115 |
msgid "Validating, please wait"
|
116 |
-
msgstr "
|
117 |
|
118 |
#: classes/class.simple-wp-membership.php:653
|
119 |
msgid "Invalid email address"
|
120 |
-
msgstr "Ungültige E-Mail
|
121 |
|
122 |
#: classes/class.simple-wp-membership.php:656
|
123 |
msgid "This field is required"
|
124 |
-
msgstr "Dieses Feld ist
|
125 |
|
126 |
msgid "Password must contain at least:"
|
127 |
-
msgstr "Das
|
128 |
|
129 |
msgid "- a digit"
|
130 |
msgstr "- eine Ziffer"
|
@@ -141,7 +139,7 @@ msgstr "Ungültiger Benutzername"
|
|
141 |
|
142 |
#: classes/class.simple-wp-membership.php:659
|
143 |
msgid "Usernames can only contain: letters, numbers and .-_*@"
|
144 |
-
msgstr "
|
145 |
|
146 |
#: classes/class.simple-wp-membership.php:662
|
147 |
msgid "Minimum "
|
@@ -149,15 +147,15 @@ msgstr "Minimum "
|
|
149 |
|
150 |
#: classes/class.simple-wp-membership.php:663
|
151 |
msgid " characters required"
|
152 |
-
msgstr " Zeichen
|
153 |
|
154 |
#: classes/class.simple-wp-membership.php:666
|
155 |
msgid "Apostrophe character is not allowed"
|
156 |
-
msgstr "
|
157 |
|
158 |
#: classes/class.simple-wp-membership.php:697
|
159 |
msgid "WP Membership"
|
160 |
-
msgstr "WP
|
161 |
|
162 |
#: classes/class.simple-wp-membership.php:698 classes/class.swpm-members.php:11
|
163 |
#: classes/class.swpm-members.php:581
|
@@ -187,45 +185,41 @@ msgstr "Add-ons"
|
|
187 |
#: classes/class.swpm-access-control.php:47
|
188 |
#: classes/class.swpm-access-control.php:120
|
189 |
msgid "You need to login to view this content. "
|
190 |
-
msgstr "Sie müssen sich anmelden, um diesen Inhalt
|
191 |
|
192 |
#: classes/class.swpm-access-control.php:56
|
193 |
#: classes/class.swpm-access-control.php:128
|
194 |
#: classes/class.swpm-access-control.php:212
|
195 |
msgid "Your account has expired. "
|
196 |
-
msgstr "
|
197 |
|
198 |
#: classes/class.swpm-access-control.php:66
|
199 |
#: classes/class.swpm-access-control.php:138
|
200 |
msgid "This content can only be viewed by members who joined on or before "
|
201 |
-
msgstr ""
|
202 |
-
"Dieser Inhalt kann nur von Mitgliedern angesehen werden, die sich "
|
203 |
-
"registriert haben an oder vor "
|
204 |
|
205 |
#: classes/class.swpm-access-control.php:79
|
206 |
#: classes/class.swpm-access-control.php:148
|
207 |
msgid "This content is not permitted for your membership level."
|
208 |
-
msgstr "Dieser Inhalt ist für Ihre Mitgliedschaftsstufe nicht
|
209 |
|
210 |
#: classes/class.swpm-access-control.php:204
|
211 |
msgid "You need to login to view the rest of the content. "
|
212 |
-
msgstr ""
|
213 |
-
"Sie müssen sich anmelden um den restlichen Inhalt angezeigt zu bekommen. "
|
214 |
|
215 |
#: classes/class.swpm-access-control.php:217
|
216 |
msgid " The rest of the content is not permitted for your membership level."
|
217 |
-
msgstr ""
|
218 |
-
" Der Rest des Inhalts ist für Ihre Mitgliedschaftsstufe nicht freigeschaltet."
|
219 |
|
220 |
#: classes/class.swpm-admin-registration.php:25
|
221 |
msgid "Error! Nonce verification failed for user registration from admin end."
|
222 |
msgstr ""
|
223 |
-
"Fehler!
|
224 |
-
"fehlgeschlagen."
|
225 |
|
226 |
#: classes/class.swpm-admin-registration.php:71
|
227 |
msgid "Member record added successfully."
|
228 |
-
msgstr "
|
229 |
|
230 |
#: classes/class.swpm-admin-registration.php:76
|
231 |
#: classes/class.swpm-admin-registration.php:124
|
@@ -233,13 +227,13 @@ msgstr "Der Eintrag für das Mitglied wurde erfolgreich hinzugefügt."
|
|
233 |
#: classes/class.swpm-membership-level.php:73
|
234 |
#: classes/class.swpm-membership-level.php:105
|
235 |
msgid "Please correct the following:"
|
236 |
-
msgstr "Bitte korrigieren Sie
|
237 |
|
238 |
#: classes/class.swpm-admin-registration.php:87
|
239 |
msgid "Error! Nonce verification failed for user edit from admin end."
|
240 |
msgstr ""
|
241 |
-
"Fehler!
|
242 |
-
"Admin fehlgeschlagen."
|
243 |
|
244 |
#: classes/class.swpm-admin-registration.php:139
|
245 |
msgid "Your current password"
|
@@ -250,8 +244,8 @@ msgid "Invalid Email Address"
|
|
250 |
msgstr "Ungültige E-Mail Adresse"
|
251 |
|
252 |
#: classes/class.swpm-ajax.php:21 classes/class.swpm-ajax.php:36
|
253 |
-
msgid "
|
254 |
-
msgstr "
|
255 |
|
256 |
#: classes/class.swpm-ajax.php:30
|
257 |
msgid "Name contains invalid character"
|
@@ -266,45 +260,47 @@ msgid ""
|
|
266 |
"Warning! Simple Membership plugin cannot process this login request to "
|
267 |
"prevent you from getting logged out of WP Admin accidentally."
|
268 |
msgstr ""
|
269 |
-
"
|
270 |
-
"verhindern, dass Sie versehentlich
|
|
|
271 |
|
272 |
#: classes/class.swpm-auth.php:58
|
273 |
msgid "Click here"
|
274 |
-
msgstr "
|
275 |
|
276 |
#: classes/class.swpm-auth.php:58
|
277 |
msgid " to see the profile you are currently logged into in this browser."
|
278 |
msgstr ""
|
279 |
-
" um das Profil zu sehen,
|
280 |
|
281 |
#: classes/class.swpm-auth.php:59
|
282 |
msgid ""
|
283 |
"You are logged into the site as an ADMIN user in this browser. First, logout "
|
284 |
"from WP Admin then you will be able to log in as a normal member."
|
285 |
msgstr ""
|
286 |
-
"
|
287 |
-
"
|
|
|
288 |
|
289 |
#: classes/class.swpm-auth.php:60
|
290 |
msgid ""
|
291 |
"Alternatively, you can use a different browser (where you are not logged-in "
|
292 |
"as ADMIN) to test the membership login."
|
293 |
msgstr ""
|
294 |
-
"Alternativ können Sie einen anderen Browser verwenden (in
|
295 |
-
"als Admin
|
296 |
|
297 |
#: classes/class.swpm-auth.php:61
|
298 |
msgid ""
|
299 |
"Your normal visitors or members will never see this message. This message is "
|
300 |
"ONLY for ADMIN user."
|
301 |
msgstr ""
|
302 |
-
"Ihre Besucher
|
303 |
-
"Diese Meldung ist
|
304 |
|
305 |
#: classes/class.swpm-auth.php:68
|
306 |
msgid "Captcha validation failed on login form."
|
307 |
-
msgstr "Captcha-Validierung fehlgeschlagen."
|
308 |
|
309 |
#: classes/class.swpm-auth.php:93
|
310 |
msgid "User Not Found."
|
@@ -316,15 +312,15 @@ msgstr "Passwort leer oder ungültig."
|
|
316 |
|
317 |
#: classes/class.swpm-auth.php:133
|
318 |
msgid "Account is inactive."
|
319 |
-
msgstr "
|
320 |
|
321 |
#: classes/class.swpm-auth.php:136 classes/class.swpm-auth.php:162
|
322 |
msgid "Account has expired."
|
323 |
-
msgstr "
|
324 |
|
325 |
#: classes/class.swpm-auth.php:139
|
326 |
msgid "Account is pending."
|
327 |
-
msgstr "
|
328 |
|
329 |
#: classes/class.swpm-auth.php:146
|
330 |
#, php-format
|
@@ -332,31 +328,31 @@ msgid ""
|
|
332 |
"You need to activate your account. If you didn't receive an email then %s to "
|
333 |
"resend the activation email."
|
334 |
msgstr ""
|
335 |
-
"Sie müssen Ihr Konto aktivieren.
|
336 |
-
"%s um die Aktivierungs-
|
337 |
|
338 |
#: classes/class.swpm-auth.php:146
|
339 |
#: classes/class.swpm-front-registration.php:376
|
340 |
#: classes/class.swpm-front-registration.php:426
|
341 |
#: classes/class.swpm-utils-misc.php:169
|
342 |
msgid "click here"
|
343 |
-
msgstr "hier
|
344 |
|
345 |
#: classes/class.swpm-auth.php:170
|
346 |
msgid "You are logged in as:"
|
347 |
-
msgstr "Sie sind
|
348 |
|
349 |
#: classes/class.swpm-auth.php:234
|
350 |
msgid "Logged Out Successfully."
|
351 |
-
msgstr "
|
352 |
|
353 |
#: classes/class.swpm-auth.php:287
|
354 |
msgid "Session Expired."
|
355 |
-
msgstr "Sitzung ist abgelaufen."
|
356 |
|
357 |
#: classes/class.swpm-auth.php:304
|
358 |
msgid "Please login again."
|
359 |
-
msgstr "Bitte
|
360 |
|
361 |
#: classes/class.swpm-category-list.php:19 classes/class.swpm-members.php:24
|
362 |
#: classes/class.swpm-membership-levels.php:11
|
@@ -378,15 +374,16 @@ msgstr "Mitgliedschaftsstufe"
|
|
378 |
|
379 |
#: classes/class.swpm-category-list.php:33
|
380 |
msgid "Category ID"
|
381 |
-
msgstr "Kategorie
|
382 |
|
383 |
#: classes/class.swpm-category-list.php:34
|
384 |
msgid "Category Name"
|
385 |
-
msgstr "
|
386 |
|
387 |
#: classes/class.swpm-category-list.php:35
|
|
|
388 |
msgid "Category Type (Taxonomy)"
|
389 |
-
msgstr "
|
390 |
|
391 |
#: classes/class.swpm-category-list.php:36
|
392 |
msgid "Description"
|
@@ -398,32 +395,30 @@ msgstr "Anzahl"
|
|
398 |
|
399 |
#: classes/class.swpm-category-list.php:92
|
400 |
msgid "Category protection updated!"
|
401 |
-
msgstr "Kategorie
|
402 |
|
403 |
#: classes/class.swpm-category-list.php:130
|
404 |
msgid "No category found."
|
405 |
-
msgstr "Kategorie
|
406 |
|
407 |
#: classes/class.swpm-comment-form-related.php:15
|
408 |
msgid "Please login to comment."
|
409 |
-
msgstr ""
|
410 |
-
"Bitte loggen Sie sich ein, damit Sie einen Kommentar hinterlassen können."
|
411 |
|
412 |
#: classes/class.swpm-comment-form-related.php:40
|
413 |
msgid "Please Login to Comment."
|
414 |
-
msgstr ""
|
415 |
-
"Bitte loggen Sie sich ein, damit Sie einen Kommentar hinterlassen können."
|
416 |
|
417 |
#: classes/class.swpm-comment-form-related.php:79
|
418 |
msgid "Comments not allowed by a non-member."
|
419 |
-
msgstr "Nicht-
|
420 |
|
421 |
#: classes/class.swpm-form.php:30
|
422 |
msgid ""
|
423 |
"Wordpress account exists with given username. But given email doesn't match."
|
424 |
msgstr ""
|
425 |
-
"
|
426 |
-
"Mail Adresse
|
427 |
|
428 |
#: classes/class.swpm-form.php:31
|
429 |
msgid ""
|
@@ -432,16 +427,16 @@ msgid ""
|
|
432 |
"the existing WP user to connect with that account."
|
433 |
msgstr ""
|
434 |
" Verwenden Sie einen anderen Benutzernamen, um die Registrierung "
|
435 |
-
"abzuschließen. Wenn Sie diesen Benutzernamen verwenden möchten,
|
436 |
-
"die
|
437 |
-
"
|
438 |
|
439 |
#: classes/class.swpm-form.php:37
|
440 |
msgid ""
|
441 |
"Wordpress account exists with given email. But given username doesn't match."
|
442 |
msgstr ""
|
443 |
-
"
|
444 |
-
"Benutzername
|
445 |
|
446 |
#: classes/class.swpm-form.php:38
|
447 |
msgid ""
|
@@ -449,22 +444,22 @@ msgid ""
|
|
449 |
"use that email then you must enter the correct username associated with the "
|
450 |
"existing WP user to connect with that account."
|
451 |
msgstr ""
|
452 |
-
" Verwenden Sie eine andere E-Mail Adresse um
|
453 |
-
"abzuschließen. Wenn Sie diese E-Mail
|
454 |
-
"
|
455 |
-
"sich mit diesem
|
456 |
|
457 |
#: classes/class.swpm-form.php:48
|
458 |
msgid "Username is required"
|
459 |
-
msgstr "
|
460 |
|
461 |
#: classes/class.swpm-form.php:52
|
462 |
msgid "Username contains invalid character"
|
463 |
-
msgstr "Der Benutzername enthält
|
464 |
|
465 |
#: classes/class.swpm-form.php:60
|
466 |
msgid "Username already exists."
|
467 |
-
msgstr "
|
468 |
|
469 |
#: classes/class.swpm-form.php:83
|
470 |
msgid "Password is required"
|
@@ -472,35 +467,36 @@ msgstr "Passwort erforderlich"
|
|
472 |
|
473 |
#: classes/class.swpm-form.php:90
|
474 |
msgid "Password mismatch"
|
475 |
-
msgstr "
|
476 |
|
477 |
#: classes/class.swpm-form.php:101
|
478 |
msgid "Email is required"
|
479 |
-
msgstr "E-Mail Adresse
|
480 |
|
481 |
#: classes/class.swpm-form.php:105
|
482 |
msgid "Email is invalid"
|
483 |
msgstr "E-Mail Adresse ist ungültig"
|
484 |
|
485 |
#: classes/class.swpm-form.php:121
|
|
|
486 |
msgid "Email is already used."
|
487 |
-
msgstr "
|
488 |
|
489 |
#: classes/class.swpm-form.php:179
|
490 |
msgid "Member since field is invalid"
|
491 |
-
msgstr "\"Mitglied seit\" Feld ist
|
492 |
|
493 |
#: classes/class.swpm-form.php:190
|
494 |
msgid "Access starts field is invalid"
|
495 |
-
msgstr "
|
496 |
|
497 |
#: classes/class.swpm-form.php:200
|
498 |
msgid "Gender field is invalid"
|
499 |
-
msgstr "
|
500 |
|
501 |
#: classes/class.swpm-form.php:211
|
502 |
msgid "Account state field is invalid"
|
503 |
-
msgstr "
|
504 |
|
505 |
#: classes/class.swpm-form.php:218
|
506 |
msgid "Invalid membership level"
|
@@ -511,20 +507,20 @@ msgid ""
|
|
511 |
"Error! Invalid Request. Could not find a match for the given security code "
|
512 |
"and the user ID."
|
513 |
msgstr ""
|
514 |
-
"Fehler! Ungültige Anfrage.
|
515 |
-
"Sicherheitscode und die Benutzer-ID
|
516 |
|
517 |
#: classes/class.swpm-front-registration.php:45
|
518 |
#: classes/class.swpm-utils-misc.php:274 views/login.php:36
|
519 |
msgid "Join Us"
|
520 |
-
msgstr "
|
521 |
|
522 |
#: classes/class.swpm-front-registration.php:47
|
523 |
msgid ""
|
524 |
"Free membership is disabled on this site. Please make a payment from the "
|
525 |
msgstr ""
|
526 |
-
"Die
|
527 |
-
"
|
528 |
|
529 |
#: classes/class.swpm-front-registration.php:49
|
530 |
msgid " page to pay for a premium membership."
|
@@ -535,17 +531,17 @@ msgid ""
|
|
535 |
"You will receive a unique link via email after the payment. You will be able "
|
536 |
"to use that link to complete the premium membership registration."
|
537 |
msgstr ""
|
538 |
-
"Sie
|
539 |
-
"
|
540 |
-
"
|
541 |
|
542 |
#: classes/class.swpm-front-registration.php:79
|
543 |
msgid "Security check: captcha validation failed."
|
544 |
-
msgstr "
|
545 |
|
546 |
#: classes/class.swpm-front-registration.php:89
|
547 |
msgid "You must accept the terms and conditions."
|
548 |
-
msgstr "Sie müssen die
|
549 |
|
550 |
#: classes/class.swpm-front-registration.php:100
|
551 |
msgid "You must agree to the privacy policy."
|
@@ -556,9 +552,8 @@ msgid ""
|
|
556 |
"You need to confirm your email address. Please check your email and follow "
|
557 |
"instructions to complete your registration."
|
558 |
msgstr ""
|
559 |
-
"
|
560 |
-
"
|
561 |
-
"zugesandten Email, um die Anmeldung abzuschließen.</strong></p>"
|
562 |
|
563 |
#: classes/class.swpm-front-registration.php:145
|
564 |
msgid "Registration Successful. "
|
@@ -572,11 +567,11 @@ msgstr "Bitte"
|
|
572 |
#: classes/class.swpm-front-registration.php:145
|
573 |
#: classes/class.swpm-utils-misc.php:273 views/login.php:30
|
574 |
msgid "Login"
|
575 |
-
msgstr "
|
576 |
|
577 |
#: classes/class.swpm-front-registration.php:159
|
578 |
msgid "Please correct the following"
|
579 |
-
msgstr "Bitte korrigieren Sie
|
580 |
|
581 |
#: classes/class.swpm-front-registration.php:207
|
582 |
msgid "Membership Level Couldn't be found."
|
@@ -585,7 +580,8 @@ msgstr "Mitgliedschaftsstufe konnte nicht gefunden werden."
|
|
585 |
#: classes/class.swpm-front-registration.php:258
|
586 |
msgid "Error! Nonce verification failed for front end profile edit."
|
587 |
msgstr ""
|
588 |
-
"Fehler!
|
|
|
589 |
|
590 |
#: classes/class.swpm-front-registration.php:266
|
591 |
msgid "Profile updated successfully."
|
@@ -601,11 +597,11 @@ msgstr ""
|
|
601 |
|
602 |
#: classes/class.swpm-front-registration.php:289
|
603 |
msgid "Please correct the following."
|
604 |
-
msgstr "Bitte korrigieren Sie
|
605 |
|
606 |
#: classes/class.swpm-front-registration.php:301
|
607 |
msgid "Captcha validation failed."
|
608 |
-
msgstr "Captcha-Validierung fehlgeschlagen."
|
609 |
|
610 |
#: classes/class.swpm-front-registration.php:309
|
611 |
msgid "Email address not valid."
|
@@ -613,7 +609,7 @@ msgstr "Ungültige E-Mail Adresse."
|
|
613 |
|
614 |
#: classes/class.swpm-front-registration.php:320
|
615 |
msgid "No user found with that email address."
|
616 |
-
msgstr "Kein Benutzer mit dieser E-Mail
|
617 |
|
618 |
#: classes/class.swpm-front-registration.php:321
|
619 |
#: classes/class.swpm-front-registration.php:350
|
@@ -622,61 +618,61 @@ msgstr "E-Mail Adresse: "
|
|
622 |
|
623 |
#: classes/class.swpm-front-registration.php:349
|
624 |
msgid "New password has been sent to your email address."
|
625 |
-
msgstr "
|
626 |
|
627 |
#: classes/class.swpm-front-registration.php:371
|
628 |
msgid "Can't find member account."
|
629 |
-
msgstr "
|
630 |
|
631 |
#: classes/class.swpm-front-registration.php:376
|
632 |
#: classes/class.swpm-front-registration.php:426
|
633 |
msgid "Account already active. "
|
634 |
-
msgstr "
|
635 |
|
636 |
#: classes/class.swpm-front-registration.php:376
|
637 |
#: classes/class.swpm-front-registration.php:426
|
638 |
msgid " to login."
|
639 |
-
msgstr " um
|
640 |
|
641 |
#: classes/class.swpm-front-registration.php:383
|
642 |
msgid ""
|
643 |
"Activation code mismatch. Cannot activate this account. Please contact the "
|
644 |
"site admin."
|
645 |
msgstr ""
|
646 |
-
"
|
647 |
-
"Bitte
|
648 |
|
649 |
#: classes/class.swpm-front-registration.php:397
|
650 |
msgid "Success! Your account has been activated successfully."
|
651 |
-
msgstr "Erfolg! Ihr Konto
|
652 |
|
653 |
#: classes/class.swpm-front-registration.php:421
|
654 |
msgid "Cannot find member account."
|
655 |
-
msgstr "
|
656 |
|
657 |
#: classes/class.swpm-front-registration.php:443
|
658 |
msgid ""
|
659 |
"Activation email has been sent. Please check your email and activate your "
|
660 |
"account."
|
661 |
msgstr ""
|
662 |
-
"Aktivierungs-
|
663 |
-
"Sie
|
664 |
|
665 |
#: classes/class.swpm-init-time-tasks.php:118
|
666 |
msgid "Sorry, Nonce verification failed."
|
667 |
-
msgstr "Entschuldigung,
|
668 |
|
669 |
#: classes/class.swpm-init-time-tasks.php:125
|
670 |
msgid "Sorry, Password didn't match."
|
671 |
-
msgstr "Passwort stimmt
|
672 |
|
673 |
#: classes/class.swpm-level-form.php:50
|
674 |
msgid "Date format is not valid."
|
675 |
-
msgstr "Datumsformat ist
|
676 |
|
677 |
#: classes/class.swpm-level-form.php:58
|
678 |
msgid "Access duration must be > 0."
|
679 |
-
msgstr "Zugriffsdauer muss >0 sein."
|
680 |
|
681 |
#: classes/class.swpm-members.php:10
|
682 |
msgid "Member"
|
@@ -710,11 +706,11 @@ msgstr "Nachname"
|
|
710 |
#: classes/class.swpm-members.php:23 views/add.php:20 views/edit.php:27
|
711 |
#: includes/swpm_mda_show_profile.php:35
|
712 |
msgid "Email"
|
713 |
-
msgstr "E-Mail"
|
714 |
|
715 |
#: classes/class.swpm-members.php:25 views/admin_member_form_common_part.php:11
|
716 |
msgid "Access Starts"
|
717 |
-
msgstr "
|
718 |
|
719 |
#: classes/class.swpm-members.php:26 includes/swpm_mda_show_profile.php:31
|
720 |
msgid "Account State"
|
@@ -722,7 +718,7 @@ msgstr "Kontostatus"
|
|
722 |
|
723 |
#: classes/class.swpm-members.php:27
|
724 |
msgid "Last Login Date"
|
725 |
-
msgstr "
|
726 |
|
727 |
#: classes/class.swpm-members.php:46
|
728 |
#: classes/class.swpm-membership-levels.php:36
|
@@ -733,23 +729,23 @@ msgstr "Löschen"
|
|
733 |
|
734 |
#: classes/class.swpm-members.php:47
|
735 |
msgid "Set Status to Active"
|
736 |
-
msgstr "
|
737 |
|
738 |
#: classes/class.swpm-members.php:48
|
739 |
msgid "Set Status to Active and Notify"
|
740 |
-
msgstr "
|
741 |
|
742 |
#: classes/class.swpm-members.php:49
|
743 |
msgid "Set Status to Inactive"
|
744 |
-
msgstr "
|
745 |
|
746 |
#: classes/class.swpm-members.php:50
|
747 |
msgid "Set Status to Pending"
|
748 |
-
msgstr "
|
749 |
|
750 |
#: classes/class.swpm-members.php:51
|
751 |
msgid "Set Status to Expired"
|
752 |
-
msgstr "
|
753 |
|
754 |
#: classes/class.swpm-members.php:72
|
755 |
msgid "incomplete"
|
@@ -762,8 +758,8 @@ msgstr "Kein Mitglied gefunden."
|
|
762 |
#: classes/class.swpm-members.php:337
|
763 |
msgid "Error! Nonce verification failed for user delete from admin end."
|
764 |
msgstr ""
|
765 |
-
"Fehler!
|
766 |
-
"fehlgeschlagen."
|
767 |
|
768 |
#: classes/class.swpm-members.php:406 classes/class.swpm-members.php:436
|
769 |
msgid "Error! Please select a membership level first."
|
@@ -771,32 +767,31 @@ msgstr "Fehler! Bitte wählen Sie zuerst eine Mitgliedsstufe aus."
|
|
771 |
|
772 |
#: classes/class.swpm-members.php:423
|
773 |
msgid "Membership level change operation completed successfully."
|
774 |
-
msgstr "Änderung der
|
775 |
|
776 |
#: classes/class.swpm-members.php:453
|
777 |
msgid "Access starts date change operation successfully completed."
|
778 |
-
msgstr "
|
779 |
|
780 |
#: classes/class.swpm-members.php:462
|
781 |
msgid "Bulk Update Membership Level of Members"
|
782 |
-
msgstr "
|
783 |
|
784 |
#: classes/class.swpm-members.php:465
|
785 |
msgid ""
|
786 |
"You can manually change the membership level of any member by editing the "
|
787 |
"record from the members menu. "
|
788 |
msgstr ""
|
789 |
-
"Sie können die
|
790 |
-
"
|
791 |
|
792 |
#: classes/class.swpm-members.php:466
|
793 |
msgid ""
|
794 |
"You can use the following option to bulk update the membership level of "
|
795 |
"users who belong to the level you select below."
|
796 |
msgstr ""
|
797 |
-
"Sie können die folgende Option verwenden, um die Mitgliedschaftsstufe
|
798 |
-
"
|
799 |
-
"auswählen."
|
800 |
|
801 |
#: classes/class.swpm-members.php:472 classes/class.swpm-members.php:520
|
802 |
msgid "Membership Level: "
|
@@ -804,35 +799,35 @@ msgstr "Mitgliedschaftsstufe: "
|
|
804 |
|
805 |
#: classes/class.swpm-members.php:476
|
806 |
msgid "Select Current Level"
|
807 |
-
msgstr "
|
808 |
|
809 |
#: classes/class.swpm-members.php:479
|
810 |
msgid ""
|
811 |
"Select the current membership level (the membership level of all members who "
|
812 |
"are in this level will be updated)."
|
813 |
msgstr ""
|
814 |
-
"Wählen Sie die aktuelle
|
815 |
-
"
|
816 |
|
817 |
#: classes/class.swpm-members.php:485
|
818 |
msgid "Level to Change to: "
|
819 |
-
msgstr "
|
820 |
|
821 |
#: classes/class.swpm-members.php:489
|
822 |
msgid "Select Target Level"
|
823 |
-
msgstr "Ziel
|
824 |
|
825 |
#: classes/class.swpm-members.php:492
|
826 |
msgid "Select the new membership level."
|
827 |
-
msgstr "Wählen Sie die neue
|
828 |
|
829 |
#: classes/class.swpm-members.php:498
|
830 |
msgid "Bulk Change Membership Level"
|
831 |
-
msgstr "
|
832 |
|
833 |
#: classes/class.swpm-members.php:508
|
834 |
msgid "Bulk Update Access Starts Date of Members"
|
835 |
-
msgstr "
|
836 |
|
837 |
#: classes/class.swpm-members.php:512
|
838 |
msgid ""
|
@@ -841,18 +836,19 @@ msgid ""
|
|
841 |
"content that are protected with a duration type protection in the membership "
|
842 |
"level. "
|
843 |
msgstr ""
|
844 |
-
"
|
845 |
-
"registriert
|
846 |
-
"lange das Mitglied auf Ihre Inhalte zugreifen kann
|
|
|
847 |
|
848 |
#: classes/class.swpm-members.php:513
|
849 |
msgid ""
|
850 |
"You can manually set a specific access starts date value of all members who "
|
851 |
"belong to a particular level using the following option."
|
852 |
msgstr ""
|
853 |
-
"
|
854 |
-
"
|
855 |
-
"
|
856 |
|
857 |
#: classes/class.swpm-members.php:523
|
858 |
msgid "Select Level"
|
@@ -863,16 +859,16 @@ msgid ""
|
|
863 |
"Select the Membership level (the access start date of all members who are in "
|
864 |
"this level will be updated)."
|
865 |
msgstr ""
|
866 |
-
"Wählen Sie die Mitgliedschaftsstufe
|
867 |
-
"Mitglieder, die sich
|
868 |
|
869 |
#: classes/class.swpm-members.php:535
|
870 |
msgid "Specify the access starts date value."
|
871 |
-
msgstr "Geben Sie
|
872 |
|
873 |
#: classes/class.swpm-members.php:541
|
874 |
msgid "Bulk Change Access Starts Date"
|
875 |
-
msgstr "
|
876 |
|
877 |
#: classes/class.swpm-members.php:576
|
878 |
msgid "Simple WP Membership::Members"
|
@@ -885,34 +881,34 @@ msgstr "Neu hinzufügen"
|
|
885 |
|
886 |
#: classes/class.swpm-members.php:582 views/admin_add.php:6
|
887 |
msgid "Add Member"
|
888 |
-
msgstr "
|
889 |
|
890 |
#: classes/class.swpm-members.php:583
|
891 |
msgid "Bulk Operation"
|
892 |
-
msgstr "
|
893 |
|
894 |
#: classes/class.swpm-membership-level.php:52
|
895 |
msgid ""
|
896 |
"Error! Nonce verification failed for membership level creation from admin "
|
897 |
"end."
|
898 |
msgstr ""
|
899 |
-
"Fehler!
|
900 |
-
"
|
901 |
|
902 |
#: classes/class.swpm-membership-level.php:68
|
903 |
msgid "Membership Level Creation Successful."
|
904 |
-
msgstr "
|
905 |
|
906 |
#: classes/class.swpm-membership-level.php:84
|
907 |
msgid ""
|
908 |
"Error! Nonce verification failed for membership level edit from admin end."
|
909 |
msgstr ""
|
910 |
-
"Fehler!
|
911 |
-
"Admin fehlgeschlagen
|
912 |
|
913 |
#: classes/class.swpm-membership-level.php:100
|
914 |
msgid "Membership Level Updated Successfully."
|
915 |
-
msgstr "
|
916 |
|
917 |
#: classes/class.swpm-membership-levels.php:22
|
918 |
msgid "Role"
|
@@ -920,7 +916,7 @@ msgstr "Rolle"
|
|
920 |
|
921 |
#: classes/class.swpm-membership-levels.php:23
|
922 |
msgid "Access Valid For/Until"
|
923 |
-
msgstr "Zugang
|
924 |
|
925 |
#: classes/class.swpm-membership-levels.php:133
|
926 |
msgid "No membership levels found."
|
@@ -930,14 +926,14 @@ msgstr "Keine Mitgliedschaftsstufen gefunden."
|
|
930 |
msgid ""
|
931 |
"Error! Nonce verification failed for membership level delete from admin end."
|
932 |
msgstr ""
|
933 |
-
"Fehler!
|
934 |
-
"Admin fehlgeschlagen."
|
935 |
|
936 |
#: classes/class.swpm-membership-levels.php:216 views/admin_members_list.php:31
|
937 |
#: views/payments/admin_all_payment_transactions.php:16 views/template-1.php:53
|
938 |
#: views/template-2.php:54
|
939 |
msgid "Search"
|
940 |
-
msgstr "
|
941 |
|
942 |
#: classes/class.swpm-membership-levels.php:261
|
943 |
msgid "Simple WP Membership::Membership Levels"
|
@@ -945,19 +941,19 @@ msgstr "Simple WP Membership::Mitgliedschaftsstufen"
|
|
945 |
|
946 |
#: classes/class.swpm-membership-levels.php:266
|
947 |
msgid "Add Level"
|
948 |
-
msgstr "
|
949 |
|
950 |
#: classes/class.swpm-membership-levels.php:267
|
951 |
msgid "Manage Content Protection"
|
952 |
-
msgstr "Schutz
|
953 |
|
954 |
#: classes/class.swpm-membership-levels.php:268
|
955 |
msgid "Category Protection"
|
956 |
-
msgstr "
|
957 |
|
958 |
#: classes/class.swpm-membership-levels.php:269
|
959 |
msgid "Post and Page Protection"
|
960 |
-
msgstr "
|
961 |
|
962 |
#: classes/class.swpm-post-list.php:43 classes/class.swpm-post-list.php:52
|
963 |
#: classes/class.swpm-post-list.php:62
|
@@ -990,23 +986,23 @@ msgstr "Typ"
|
|
990 |
|
991 |
#: classes/class.swpm-post-list.php:125
|
992 |
msgid "Protection settings updated!"
|
993 |
-
msgstr "
|
994 |
|
995 |
#: classes/class.swpm-post-list.php:230
|
996 |
msgid "No items found."
|
997 |
-
msgstr "Keine
|
998 |
|
999 |
#: classes/class.swpm-protection.php:22
|
1000 |
msgid ""
|
1001 |
"The category or parent category of this post is protected. You can change "
|
1002 |
"the category protection settings from the "
|
1003 |
msgstr ""
|
1004 |
-
"Die Kategorie oder
|
1005 |
-
"
|
1006 |
|
1007 |
#: classes/class.swpm-protection.php:23
|
1008 |
msgid "category protection menu"
|
1009 |
-
msgstr "
|
1010 |
|
1011 |
#: classes/class.swpm-settings.php:26 classes/class.swpm-settings.php:54
|
1012 |
msgid "General Settings"
|
@@ -1014,11 +1010,11 @@ msgstr "Allgemeine Einstellungen"
|
|
1014 |
|
1015 |
#: classes/class.swpm-settings.php:27
|
1016 |
msgid "Payment Settings"
|
1017 |
-
msgstr "
|
1018 |
|
1019 |
#: classes/class.swpm-settings.php:28
|
1020 |
msgid "Email Settings"
|
1021 |
-
msgstr "E-Mail
|
1022 |
|
1023 |
#: classes/class.swpm-settings.php:29
|
1024 |
msgid "Tools"
|
@@ -1030,7 +1026,7 @@ msgstr "Erweiterte Einstellungen"
|
|
1030 |
|
1031 |
#: classes/class.swpm-settings.php:31
|
1032 |
msgid "Addons Settings"
|
1033 |
-
msgstr "Einstellungen
|
1034 |
|
1035 |
#: classes/class.swpm-settings.php:53
|
1036 |
msgid "Plugin Documentation"
|
@@ -1038,28 +1034,29 @@ msgstr "Plugin-Dokumentation"
|
|
1038 |
|
1039 |
#: classes/class.swpm-settings.php:55
|
1040 |
msgid "Enable Free Membership"
|
1041 |
-
msgstr "Kostenlose Mitgliedschaft
|
1042 |
|
1043 |
#: classes/class.swpm-settings.php:56
|
1044 |
msgid ""
|
1045 |
"Enable/disable registration for free membership level. When you enable this "
|
1046 |
"option, make sure to specify a free membership level ID in the field below."
|
1047 |
msgstr ""
|
1048 |
-
"
|
1049 |
-
"
|
1050 |
-
"dass Sie eine ID für
|
|
|
1051 |
|
1052 |
#: classes/class.swpm-settings.php:57
|
1053 |
msgid "Free Membership Level ID"
|
1054 |
-
msgstr "Kostenlose
|
1055 |
|
1056 |
#: classes/class.swpm-settings.php:58
|
1057 |
msgid "Assign free membership level ID"
|
1058 |
-
msgstr "
|
1059 |
|
1060 |
#: classes/class.swpm-settings.php:59
|
1061 |
msgid "Enable More Tag Protection"
|
1062 |
-
msgstr "
|
1063 |
|
1064 |
#: classes/class.swpm-settings.php:60
|
1065 |
msgid ""
|
@@ -1067,37 +1064,39 @@ msgid ""
|
|
1067 |
"after the More tag is protected. Anything before the more tag is teaser "
|
1068 |
"content."
|
1069 |
msgstr ""
|
1070 |
-
"Aktiviert oder deaktiviert
|
1071 |
-
"
|
1072 |
-
"
|
1073 |
|
1074 |
#: classes/class.swpm-settings.php:61
|
1075 |
msgid "Hide Adminbar"
|
1076 |
-
msgstr "
|
1077 |
|
1078 |
#: classes/class.swpm-settings.php:62
|
1079 |
msgid ""
|
1080 |
"WordPress shows an admin toolbar to the logged in users of the site. Check "
|
1081 |
"this if you want to hide that admin toolbar in the frontend of your site."
|
1082 |
msgstr ""
|
1083 |
-
"
|
1084 |
-
"
|
|
|
1085 |
|
1086 |
#: classes/class.swpm-settings.php:63
|
1087 |
msgid "Show Adminbar to Admin"
|
1088 |
-
msgstr "Adminbar
|
1089 |
|
1090 |
#: classes/class.swpm-settings.php:64
|
1091 |
msgid ""
|
1092 |
"Use this option if you want to show the admin toolbar to admin users only. "
|
1093 |
"The admin toolbar will be hidden for all other users."
|
1094 |
msgstr ""
|
1095 |
-
"
|
1096 |
-
"
|
|
|
1097 |
|
1098 |
#: classes/class.swpm-settings.php:65
|
1099 |
msgid "Disable Access to WP Dashboard"
|
1100 |
-
msgstr "
|
1101 |
|
1102 |
#: classes/class.swpm-settings.php:66
|
1103 |
msgid ""
|
@@ -1105,23 +1104,22 @@ msgid ""
|
|
1105 |
"access his profile from the wp dashbaord. Using this option will prevent any "
|
1106 |
"non admin users from going to the wp dashboard."
|
1107 |
msgstr ""
|
1108 |
-
"WordPress ermöglicht es einem Standard-WP-Benutzer,
|
1109 |
-
"
|
1110 |
-
"
|
1111 |
-
"Dashboard zugreifen können."
|
1112 |
|
1113 |
#: classes/class.swpm-settings.php:68 classes/class.swpm-settings.php:242
|
1114 |
msgid "Default Account Status"
|
1115 |
-
msgstr "
|
1116 |
|
1117 |
#: classes/class.swpm-settings.php:71
|
1118 |
msgid ""
|
1119 |
"Select the default account status for newly registered users. If you want to "
|
1120 |
"manually approve the members then you can set the status to \"Pending\"."
|
1121 |
msgstr ""
|
1122 |
-
"Wählen Sie
|
1123 |
-
"Mitglieder
|
1124 |
-
"
|
1125 |
|
1126 |
#: classes/class.swpm-settings.php:73
|
1127 |
msgid "Members Must be Logged in to Comment"
|
@@ -1133,32 +1131,32 @@ msgid ""
|
|
1133 |
"Enable this option if you only want the members of the site to be able to "
|
1134 |
"post a comment."
|
1135 |
msgstr ""
|
1136 |
-
"Aktivieren Sie diese Option, wenn Sie nur
|
1137 |
-
"
|
1138 |
|
1139 |
#: classes/class.swpm-settings.php:83
|
1140 |
msgid "Pages Settings"
|
1141 |
-
msgstr "
|
1142 |
|
1143 |
#: classes/class.swpm-settings.php:84
|
1144 |
msgid "Login Page URL"
|
1145 |
-
msgstr "URL der
|
1146 |
|
1147 |
#: classes/class.swpm-settings.php:86
|
1148 |
msgid "Registration Page URL"
|
1149 |
-
msgstr "
|
1150 |
|
1151 |
#: classes/class.swpm-settings.php:88
|
1152 |
msgid "Join Us Page URL"
|
1153 |
-
msgstr "
|
1154 |
|
1155 |
#: classes/class.swpm-settings.php:90
|
1156 |
msgid "Edit Profile Page URL"
|
1157 |
-
msgstr "Profilseite
|
1158 |
|
1159 |
#: classes/class.swpm-settings.php:92
|
1160 |
msgid "Password Reset Page URL"
|
1161 |
-
msgstr "Passwort
|
1162 |
|
1163 |
#: classes/class.swpm-settings.php:95
|
1164 |
msgid "Test & Debug Settings"
|
@@ -1174,13 +1172,13 @@ msgid ""
|
|
1174 |
" This can be useful when troubleshooting an issue. Turn it off and reset the "
|
1175 |
"log files after the troubleshooting is complete."
|
1176 |
msgstr ""
|
1177 |
-
" Dies kann
|
1178 |
-
"aus und setzen Sie die
|
1179 |
-
"abgeschlossen
|
1180 |
|
1181 |
#: classes/class.swpm-settings.php:100
|
1182 |
msgid "View general debug log file by clicking "
|
1183 |
-
msgstr "Allgemeine Debug
|
1184 |
|
1185 |
#: classes/class.swpm-settings.php:100 classes/class.swpm-settings.php:101
|
1186 |
#: classes/class.swpm-settings.php:102
|
@@ -1197,7 +1195,7 @@ msgstr "Zurücksetzen der Debug Log Dateien "
|
|
1197 |
|
1198 |
#: classes/class.swpm-settings.php:103
|
1199 |
msgid "Enable Debug"
|
1200 |
-
msgstr "
|
1201 |
|
1202 |
#: classes/class.swpm-settings.php:105
|
1203 |
msgid "Enable Sandbox Testing"
|
@@ -1206,53 +1204,52 @@ msgstr "Sandbox-Test aktivieren"
|
|
1206 |
#: classes/class.swpm-settings.php:106
|
1207 |
msgid "Enable this option if you want to do sandbox payment testing."
|
1208 |
msgstr ""
|
1209 |
-
"Aktivieren Sie
|
1210 |
-
"
|
1211 |
|
1212 |
#: classes/class.swpm-settings.php:119
|
1213 |
msgid "Email Settings Overview"
|
1214 |
-
msgstr "E-Mail
|
1215 |
|
1216 |
#: classes/class.swpm-settings.php:120
|
1217 |
msgid "Email Misc. Settings"
|
1218 |
-
msgstr "E-Mail Einstellungen"
|
1219 |
|
1220 |
#: classes/class.swpm-settings.php:122
|
1221 |
msgid "From Email Address"
|
1222 |
-
msgstr "Von E-Mail
|
1223 |
|
1224 |
#: classes/class.swpm-settings.php:126
|
1225 |
msgid "Email Settings (Prompt to Complete Registration )"
|
1226 |
-
msgstr "E-Mail-Einstellungen (
|
1227 |
|
1228 |
#: classes/class.swpm-settings.php:127 classes/class.swpm-settings.php:140
|
1229 |
#: classes/class.swpm-settings.php:158 classes/class.swpm-settings.php:163
|
1230 |
#: classes/class.swpm-settings.php:168 classes/class.swpm-settings.php:173
|
1231 |
msgid "Email Subject"
|
1232 |
-
msgstr "E-Mail
|
1233 |
|
1234 |
#: classes/class.swpm-settings.php:129 classes/class.swpm-settings.php:142
|
1235 |
#: classes/class.swpm-settings.php:159 classes/class.swpm-settings.php:164
|
1236 |
#: classes/class.swpm-settings.php:169 classes/class.swpm-settings.php:174
|
1237 |
msgid "Email Body"
|
1238 |
-
msgstr "E-Mail
|
1239 |
|
1240 |
#: classes/class.swpm-settings.php:133
|
1241 |
msgid ""
|
1242 |
"Enter the email address where you want the admin notification email to be "
|
1243 |
"sent to."
|
1244 |
msgstr ""
|
1245 |
-
"Geben Sie
|
1246 |
-
"
|
1247 |
|
1248 |
#: classes/class.swpm-settings.php:134
|
1249 |
msgid ""
|
1250 |
" You can put multiple email addresses separated by comma (,) in the above "
|
1251 |
"field to send the notification to multiple email addresses."
|
1252 |
msgstr ""
|
1253 |
-
" Sie können mehrere
|
1254 |
-
"
|
1255 |
-
"werden."
|
1256 |
|
1257 |
#: classes/class.swpm-settings.php:136
|
1258 |
msgid "Enter the subject for the admin notification email."
|
@@ -1264,13 +1261,13 @@ msgid ""
|
|
1264 |
"membership registration. Only works if you have enabled the \"Send "
|
1265 |
"Notification to Admin\" option above."
|
1266 |
msgstr ""
|
1267 |
-
"Diese
|
1268 |
-
"Registrierung
|
1269 |
-
"Option \"
|
1270 |
|
1271 |
#: classes/class.swpm-settings.php:139
|
1272 |
msgid "Email Settings (Registration Complete)"
|
1273 |
-
msgstr "E-Mail-Einstellungen (
|
1274 |
|
1275 |
#: classes/class.swpm-settings.php:144
|
1276 |
msgid "Send Notification to Admin"
|
@@ -1281,26 +1278,25 @@ msgid ""
|
|
1281 |
"Enable this option if you want the admin to receive a notification when a "
|
1282 |
"member registers."
|
1283 |
msgstr ""
|
1284 |
-
"Aktivieren Sie diese Option, wenn
|
1285 |
-
"sich ein
|
1286 |
|
1287 |
#: classes/class.swpm-settings.php:146
|
1288 |
msgid "Admin Email Address"
|
1289 |
-
msgstr "
|
1290 |
|
1291 |
#: classes/class.swpm-settings.php:148
|
1292 |
msgid "Admin Notification Email Subject"
|
1293 |
-
msgstr "Betreff
|
1294 |
|
1295 |
#: classes/class.swpm-settings.php:150
|
1296 |
msgid "Admin Notification Email Body"
|
1297 |
-
msgstr "
|
1298 |
|
1299 |
#: classes/class.swpm-settings.php:153
|
1300 |
msgid "Send Email to Member When Added via Admin Dashboard"
|
1301 |
msgstr ""
|
1302 |
-
"
|
1303 |
-
"wird"
|
1304 |
|
1305 |
#: classes/class.swpm-settings.php:157
|
1306 |
msgid "Email Settings (Password Reset)"
|
@@ -1308,19 +1304,19 @@ msgstr "E-Mail-Einstellungen (Passwort zurücksetzen)"
|
|
1308 |
|
1309 |
#: classes/class.swpm-settings.php:162
|
1310 |
msgid " Email Settings (Account Upgrade Notification)"
|
1311 |
-
msgstr " E-Mail-Einstellungen (
|
1312 |
|
1313 |
#: classes/class.swpm-settings.php:167
|
1314 |
msgid " Email Settings (Bulk Account Activate Notification)"
|
1315 |
-
msgstr " E-Mail-Einstellungen (Account Benachrichtigung
|
1316 |
|
1317 |
#: classes/class.swpm-settings.php:172
|
1318 |
msgid " Email Settings (Email Activation)"
|
1319 |
-
msgstr " E-Mail-Einstellungen (
|
1320 |
|
1321 |
#: classes/class.swpm-settings.php:189
|
1322 |
msgid "Enable Expired Account Login"
|
1323 |
-
msgstr "
|
1324 |
|
1325 |
#: classes/class.swpm-settings.php:190
|
1326 |
msgid ""
|
@@ -1328,13 +1324,14 @@ msgid ""
|
|
1328 |
"be able to view any protected content. This allows them to easily renew "
|
1329 |
"their account by making another payment."
|
1330 |
msgstr ""
|
1331 |
-
"Wenn aktiviert, können
|
1332 |
-
"einloggen,
|
1333 |
-
"ermöglicht es ihnen,
|
|
|
1334 |
|
1335 |
#: classes/class.swpm-settings.php:192
|
1336 |
msgid "Membership Renewal URL"
|
1337 |
-
msgstr "URL zur
|
1338 |
|
1339 |
#: classes/class.swpm-settings.php:193
|
1340 |
msgid ""
|
@@ -1342,11 +1339,10 @@ msgid ""
|
|
1342 |
"membership-plugin.com/creating-membership-renewal-button/\" target=\"_blank"
|
1343 |
"\">this documentation</a> to learn how to create a renewal page."
|
1344 |
msgstr ""
|
1345 |
-
"Sie können eine
|
1346 |
-
"
|
1347 |
-
"
|
1348 |
-
"
|
1349 |
-
"Mitgliedschaft einrichten."
|
1350 |
|
1351 |
#: classes/class.swpm-settings.php:195
|
1352 |
msgid "After Registration Redirect URL"
|
@@ -1360,15 +1356,15 @@ msgid ""
|
|
1360 |
"\"_blank\">this documentation</a> to learn how to setup after registration "
|
1361 |
"redirect."
|
1362 |
msgstr ""
|
1363 |
-
"Sie können hier eine URL eingeben, um die Mitglieder
|
1364 |
-
"
|
1365 |
-
"
|
1366 |
-
"
|
1367 |
-
"
|
1368 |
|
1369 |
#: classes/class.swpm-settings.php:198
|
1370 |
msgid "Enable Auto Login After Registration"
|
1371 |
-
msgstr "
|
1372 |
|
1373 |
#: classes/class.swpm-settings.php:199
|
1374 |
msgid ""
|
@@ -1379,29 +1375,29 @@ msgid ""
|
|
1379 |
"configure-auto-login-after-registration-members/\" target=\"_blank\">this "
|
1380 |
"documentation</a> to learn more."
|
1381 |
msgstr ""
|
1382 |
-
"
|
1383 |
-
"
|
1384 |
-
"
|
1385 |
-
"
|
1386 |
-
"
|
|
|
|
|
1387 |
|
1388 |
#: classes/class.swpm-settings.php:201
|
1389 |
msgid "After Logout Redirect URL"
|
1390 |
-
msgstr ""
|
1391 |
-
"URL, zu der nach dem Logout\n"
|
1392 |
-
" weitergeleitet wird"
|
1393 |
|
1394 |
#: classes/class.swpm-settings.php:202
|
1395 |
msgid ""
|
1396 |
"You can enter an URL here to redirect the members to this page after they "
|
1397 |
"click the logout link to logout from your site."
|
1398 |
msgstr ""
|
1399 |
-
"Sie können hier eine URL angeben, auf die Mitglieder
|
1400 |
"nachdem Sie den Logout Link zum Ausloggen angeklickt haben."
|
1401 |
|
1402 |
#: classes/class.swpm-settings.php:204
|
1403 |
msgid "Logout Member on Browser Close"
|
1404 |
-
msgstr "Mitglied
|
1405 |
|
1406 |
#: classes/class.swpm-settings.php:205
|
1407 |
msgid ""
|
@@ -1409,7 +1405,7 @@ msgid ""
|
|
1409 |
"when he closes the browser."
|
1410 |
msgstr ""
|
1411 |
"Aktivieren Sie diese Option, wenn Sie möchten, dass das Mitglied aus dem "
|
1412 |
-
"Konto
|
1413 |
|
1414 |
#: classes/class.swpm-settings.php:207
|
1415 |
msgid "Allow Account Deletion"
|
@@ -1417,44 +1413,44 @@ msgstr "Kontolöschung zulassen"
|
|
1417 |
|
1418 |
#: classes/class.swpm-settings.php:208
|
1419 |
msgid "Allow users to delete their accounts."
|
1420 |
-
msgstr "Benutzern
|
1421 |
|
1422 |
#: classes/class.swpm-settings.php:210
|
1423 |
msgid "Force Strong Password for Members"
|
1424 |
-
msgstr "
|
1425 |
|
1426 |
#: classes/class.swpm-settings.php:211
|
1427 |
msgid ""
|
1428 |
"Enable this if you want the users to be forced to use a strong password for "
|
1429 |
"their accounts."
|
1430 |
msgstr ""
|
1431 |
-
"Aktivieren Sie diese Option, wenn
|
1432 |
-
"
|
1433 |
|
1434 |
#: classes/class.swpm-settings.php:213
|
1435 |
msgid "Use WordPress Timezone"
|
1436 |
-
msgstr "
|
1437 |
|
1438 |
#: classes/class.swpm-settings.php:214
|
1439 |
msgid ""
|
1440 |
"Use this option if you want to use the timezone value specified in your "
|
1441 |
"WordPress General Settings interface."
|
1442 |
msgstr ""
|
1443 |
-
"Verwenden Sie diese Option, wenn Sie den in
|
1444 |
-
"angegebenen Zeitzonenwert verwenden möchten."
|
1445 |
|
1446 |
#: classes/class.swpm-settings.php:216
|
1447 |
msgid "Auto Delete Pending Account"
|
1448 |
-
msgstr "Automatisches Löschen
|
1449 |
|
1450 |
#: classes/class.swpm-settings.php:219
|
1451 |
msgid "Select how long you want to keep \"pending\" account."
|
1452 |
msgstr ""
|
1453 |
-
"Wählen Sie aus, wie lange Sie ausstehende
|
1454 |
|
1455 |
#: classes/class.swpm-settings.php:221
|
1456 |
msgid "Admin Dashboard Access Permission"
|
1457 |
-
msgstr "Admin
|
1458 |
|
1459 |
#: classes/class.swpm-settings.php:224
|
1460 |
msgid ""
|
@@ -1462,13 +1458,14 @@ msgid ""
|
|
1462 |
"plugin). You can allow users with other WP user role to access the SWPM "
|
1463 |
"admin dashboard by selecting a value here."
|
1464 |
msgstr ""
|
1465 |
-
"
|
1466 |
-
"Sie können
|
1467 |
-
"Dashboard
|
|
|
1468 |
|
1469 |
#: classes/class.swpm-settings.php:226
|
1470 |
msgid "Force WP User Synchronization"
|
1471 |
-
msgstr "
|
1472 |
|
1473 |
#: classes/class.swpm-settings.php:227
|
1474 |
msgid ""
|
@@ -1476,39 +1473,39 @@ msgid ""
|
|
1476 |
"with WP user account. This can be useful if you are using another plugin "
|
1477 |
"that uses WP user records. For example: bbPress plugin."
|
1478 |
msgstr ""
|
1479 |
-
"Aktivieren Sie diese Option, wenn
|
1480 |
-
"
|
1481 |
-
"ein anderes Plugin
|
1482 |
-
"
|
1483 |
|
1484 |
#: classes/class.swpm-settings.php:230
|
1485 |
msgid "Create Member Accounts for New WP Users"
|
1486 |
-
msgstr "
|
1487 |
|
1488 |
#: classes/class.swpm-settings.php:232
|
1489 |
msgid "Enable Auto Create Member Accounts"
|
1490 |
-
msgstr "
|
1491 |
|
1492 |
#: classes/class.swpm-settings.php:233
|
1493 |
msgid ""
|
1494 |
"Enable this option to automatically create member accounts for any new WP "
|
1495 |
"user that is created by another plugin."
|
1496 |
msgstr ""
|
1497 |
-
"Aktivieren Sie diese Option um
|
1498 |
-
"
|
1499 |
-
"worden ist."
|
1500 |
|
1501 |
#: classes/class.swpm-settings.php:236
|
1502 |
msgid "Default Membership Level"
|
1503 |
-
msgstr "
|
1504 |
|
1505 |
#: classes/class.swpm-settings.php:239
|
1506 |
msgid ""
|
1507 |
"When automatically creating a member account using this feature, the "
|
1508 |
"membership level of the user will be set to the one you specify here."
|
1509 |
msgstr ""
|
1510 |
-
"
|
1511 |
-
"wird die
|
|
|
1512 |
|
1513 |
#: classes/class.swpm-settings.php:245
|
1514 |
msgid ""
|
@@ -1516,8 +1513,9 @@ msgid ""
|
|
1516 |
"membership account status of the user will be set to the one you specify "
|
1517 |
"here."
|
1518 |
msgstr ""
|
1519 |
-
"
|
1520 |
-
"wird der
|
|
|
1521 |
|
1522 |
#: classes/class.swpm-settings.php:247
|
1523 |
msgid "Payment Notification Forward URL"
|
@@ -1530,14 +1528,14 @@ msgid ""
|
|
1530 |
"forward the payment notification to an external script for further "
|
1531 |
"processing."
|
1532 |
msgstr ""
|
1533 |
-
"Sie können hier eine URL
|
1534 |
-
"
|
1535 |
-
"
|
1536 |
-
"Skript
|
1537 |
|
1538 |
#: classes/class.swpm-settings.php:251 views/add.php:65
|
1539 |
msgid "Terms and Conditions"
|
1540 |
-
msgstr "Allgemeine
|
1541 |
|
1542 |
#: classes/class.swpm-settings.php:253
|
1543 |
msgid "Enable Terms and Conditions"
|
@@ -1558,7 +1556,10 @@ msgid ""
|
|
1558 |
"Enter the URL of your terms and conditions page. You can create a WordPress "
|
1559 |
"page and specify your terms in there then specify the URL of that page in "
|
1560 |
"the above field."
|
1561 |
-
msgstr "
|
|
|
|
|
|
|
1562 |
|
1563 |
#: classes/class.swpm-settings.php:257
|
1564 |
msgid "Enable Privacy Policy"
|
@@ -1567,8 +1568,8 @@ msgstr "Datenschutzerklärung aktivieren"
|
|
1567 |
#: classes/class.swpm-settings.php:258
|
1568 |
msgid "Users must accept it before they can complete the registration."
|
1569 |
msgstr ""
|
1570 |
-
"
|
1571 |
-
"
|
1572 |
|
1573 |
#: classes/class.swpm-settings.php:259
|
1574 |
msgid "Privacy Policy Page URL"
|
@@ -1576,7 +1577,7 @@ msgstr "URL der Datenschutzerklärung"
|
|
1576 |
|
1577 |
#: classes/class.swpm-settings.php:260
|
1578 |
msgid "Enter the URL of your privacy policy page."
|
1579 |
-
msgstr "Geben Sie die URL
|
1580 |
|
1581 |
#: classes/class.swpm-settings.php:350 classes/class.swpm-settings.php:396
|
1582 |
#: classes/class.swpm-settings.php:425
|
@@ -1589,36 +1590,35 @@ msgstr "Allgemeine Plugin-Einstellungen."
|
|
1589 |
|
1590 |
#: classes/class.swpm-settings.php:359
|
1591 |
msgid "Page Setup and URL Related settings."
|
1592 |
-
msgstr "
|
1593 |
|
1594 |
#: classes/class.swpm-settings.php:362
|
1595 |
msgid ""
|
1596 |
"The following pages are required for the plugin to function correctly. These "
|
1597 |
"pages were automatically created by the plugin at install time."
|
1598 |
msgstr ""
|
1599 |
-
"Die folgenden Seiten
|
1600 |
-
"
|
1601 |
-
"automatisch angelegt."
|
1602 |
|
1603 |
#: classes/class.swpm-settings.php:367
|
1604 |
msgid "Testing and Debug Related Settings."
|
1605 |
-
msgstr "
|
1606 |
|
1607 |
#: classes/class.swpm-settings.php:371
|
1608 |
msgid ""
|
1609 |
"This email will be sent to your users when they complete the registration "
|
1610 |
"and become a member."
|
1611 |
msgstr ""
|
1612 |
-
"Diese
|
1613 |
-
"
|
1614 |
|
1615 |
#: classes/class.swpm-settings.php:375
|
1616 |
msgid ""
|
1617 |
"This email will be sent to your users when they use the password reset "
|
1618 |
"functionality."
|
1619 |
msgstr ""
|
1620 |
-
"Diese
|
1621 |
-
"
|
1622 |
|
1623 |
#: classes/class.swpm-settings.php:381
|
1624 |
msgid ""
|
@@ -1626,21 +1626,21 @@ msgid ""
|
|
1626 |
"members for various actions. The default settings should be good to get your "
|
1627 |
"started."
|
1628 |
msgstr ""
|
1629 |
-
"
|
1630 |
-
"für verschiedene Aktionen
|
1631 |
-
"Standardeinstellungen sollten
|
1632 |
|
1633 |
#: classes/class.swpm-settings.php:385 views/admin_tools_settings.php:82
|
1634 |
msgid "This documentation"
|
1635 |
-
msgstr "
|
1636 |
|
1637 |
#: classes/class.swpm-settings.php:386
|
1638 |
msgid ""
|
1639 |
" explains what email merge tags you can use in the email body field to "
|
1640 |
"customize it (if you want to)."
|
1641 |
msgstr ""
|
1642 |
-
" erklärt, welche E-Mail-Merge-Tags Sie im E-Mail-Text verwenden
|
1643 |
-
"
|
1644 |
|
1645 |
#: classes/class.swpm-settings.php:399
|
1646 |
msgid "Settings in this section apply to all emails."
|
@@ -1651,24 +1651,25 @@ msgid ""
|
|
1651 |
"This email will be sent to your users after account upgrade (when an "
|
1652 |
"existing member pays for a new membership level)."
|
1653 |
msgstr ""
|
1654 |
-
"Diese
|
1655 |
-
"
|
|
|
1656 |
|
1657 |
#: classes/class.swpm-settings.php:407
|
1658 |
msgid ""
|
1659 |
"This email will be sent to your members when you use the bulk account "
|
1660 |
"activate and notify action."
|
1661 |
msgstr ""
|
1662 |
-
"Diese
|
1663 |
-
"
|
1664 |
|
1665 |
#: classes/class.swpm-settings.php:408
|
1666 |
msgid ""
|
1667 |
" You cannot use email merge tags in this email. You can only use generic "
|
1668 |
"text."
|
1669 |
msgstr ""
|
1670 |
-
" Sie können
|
1671 |
-
"nur
|
1672 |
|
1673 |
#: classes/class.swpm-settings.php:413
|
1674 |
msgid ""
|
@@ -1683,13 +1684,13 @@ msgid ""
|
|
1683 |
"This email will be sent to prompt users to complete registration after the "
|
1684 |
"payment."
|
1685 |
msgstr ""
|
1686 |
-
"Diese E-Mail wird gesendet, um
|
1687 |
-
"nach der Zahlung
|
1688 |
|
1689 |
#: classes/class.swpm-settings.php:428
|
1690 |
msgid "This page allows you to configure some advanced features of the plugin."
|
1691 |
msgstr ""
|
1692 |
-
"
|
1693 |
"konfigurieren."
|
1694 |
|
1695 |
#: classes/class.swpm-settings.php:432
|
@@ -1699,20 +1700,19 @@ msgid ""
|
|
1699 |
"you are using another plugin that creates WP user records and you want them "
|
1700 |
"to be recognized in the membership plugin."
|
1701 |
msgstr ""
|
1702 |
-
"
|
1703 |
-
"
|
1704 |
-
"Dies kann
|
1705 |
-
"
|
1706 |
-
"
|
1707 |
|
1708 |
#: classes/class.swpm-settings.php:436
|
1709 |
msgid ""
|
1710 |
"This section allows you to configure terms and conditions and privacy policy "
|
1711 |
"that users must accept at registration time."
|
1712 |
msgstr ""
|
1713 |
-
"In diesem
|
1714 |
-
"
|
1715 |
-
"bei der Registrierung akzeptieren müssen."
|
1716 |
|
1717 |
#: classes/class.swpm-settings.php:565
|
1718 |
msgid "Simple WP Membership::Settings"
|
@@ -1723,7 +1723,7 @@ msgstr "Simple WP Membership::Einstellungen"
|
|
1723 |
#: classes/class.swpm-utils-member.php:52
|
1724 |
#: classes/class.swpm-utils-member.php:62
|
1725 |
msgid "User is not logged in."
|
1726 |
-
msgstr "Benutzer ist nicht
|
1727 |
|
1728 |
#: classes/class.swpm-utils-member.php:80
|
1729 |
msgid "No Expiry"
|
@@ -1735,7 +1735,7 @@ msgstr "Registrierung"
|
|
1735 |
|
1736 |
#: classes/class.swpm-utils-misc.php:73
|
1737 |
msgid "Member Login"
|
1738 |
-
msgstr "
|
1739 |
|
1740 |
#: classes/class.swpm-utils-misc.php:96
|
1741 |
#: classes/shortcode-related/class.swpm-shortcodes-handler.php:117
|
@@ -1751,8 +1751,8 @@ msgstr "Passwort zurücksetzen"
|
|
1751 |
msgid ""
|
1752 |
"You will be automatically redirected in a few seconds. If not, please %s."
|
1753 |
msgstr ""
|
1754 |
-
"Sie werden
|
1755 |
-
"
|
1756 |
|
1757 |
#: classes/class.swpm-utils-misc.php:172
|
1758 |
msgid "Action Status"
|
@@ -1760,7 +1760,7 @@ msgstr "Aktionsstatus"
|
|
1760 |
|
1761 |
#: classes/class.swpm-utils-misc.php:274
|
1762 |
msgid "Not a Member?"
|
1763 |
-
msgstr "
|
1764 |
|
1765 |
#: classes/class.swpm-utils-misc.php:285
|
1766 |
msgid "renew"
|
@@ -1768,7 +1768,7 @@ msgstr "erneuern"
|
|
1768 |
|
1769 |
#: classes/class.swpm-utils-misc.php:285
|
1770 |
msgid " your account to gain access to this content."
|
1771 |
-
msgstr "
|
1772 |
|
1773 |
#: classes/class.swpm-utils-misc.php:343 classes/class.swpm-utils-misc.php:349
|
1774 |
msgid "Error! This action ("
|
@@ -1776,12 +1776,13 @@ msgstr "Fehler! Diese Aktion ("
|
|
1776 |
|
1777 |
#: classes/class.swpm-utils-misc.php:421
|
1778 |
msgid "(Please Select)"
|
1779 |
-
msgstr "(Bitte
|
1780 |
|
1781 |
#: classes/class.swpm-utils-template.php:38
|
1782 |
msgid "Error! Failed to find a template path for the specified template: "
|
1783 |
msgstr ""
|
1784 |
-
"Fehler
|
|
|
1785 |
|
1786 |
#: classes/class.swpm-utils.php:101
|
1787 |
msgid "Never"
|
@@ -1797,7 +1798,7 @@ msgstr "Inaktiv"
|
|
1797 |
|
1798 |
#: classes/class.swpm-utils.php:118 views/admin_members_list.php:21
|
1799 |
msgid "Activation Required"
|
1800 |
-
msgstr "Aktivierung
|
1801 |
|
1802 |
#: classes/class.swpm-utils.php:119 views/admin_members_list.php:22
|
1803 |
msgid "Pending"
|
@@ -1813,15 +1814,15 @@ msgstr "Konto löschen"
|
|
1813 |
|
1814 |
#: classes/admin-includes/class.swpm-payment-buttons-list-table.php:75
|
1815 |
msgid "Payment Button ID"
|
1816 |
-
msgstr "Zahlungs-Button
|
1817 |
|
1818 |
#: classes/admin-includes/class.swpm-payment-buttons-list-table.php:76
|
1819 |
msgid "Payment Button Title"
|
1820 |
-
msgstr "Zahlungs
|
1821 |
|
1822 |
#: classes/admin-includes/class.swpm-payment-buttons-list-table.php:77
|
1823 |
msgid "Membership Level ID"
|
1824 |
-
msgstr "
|
1825 |
|
1826 |
#: classes/admin-includes/class.swpm-payment-buttons-list-table.php:78
|
1827 |
msgid "Button Type"
|
@@ -1839,7 +1840,7 @@ msgstr "Der ausgewählte Eintrag wurde gelöscht!"
|
|
1839 |
|
1840 |
#: classes/admin-includes/class.swpm-payments-admin-menu.php:21
|
1841 |
msgid "Simple Membership::Payments"
|
1842 |
-
msgstr "Simple
|
1843 |
|
1844 |
#: classes/admin-includes/class.swpm-payments-admin-menu.php:25
|
1845 |
msgid "Transactions"
|
@@ -1847,12 +1848,12 @@ msgstr "Transaktionen"
|
|
1847 |
|
1848 |
#: classes/admin-includes/class.swpm-payments-admin-menu.php:26
|
1849 |
msgid "Manage Payment Buttons"
|
1850 |
-
msgstr "
|
1851 |
|
1852 |
#: classes/admin-includes/class.swpm-payments-admin-menu.php:27
|
1853 |
#: views/payments/admin_payment_buttons.php:27
|
1854 |
msgid "Create New Button"
|
1855 |
-
msgstr "Neue
|
1856 |
|
1857 |
#: classes/admin-includes/class.swpm-payments-list-table.php:57
|
1858 |
#: views/template-1.php:95 views/template-2.php:97
|
@@ -1878,19 +1879,19 @@ msgstr "Transaktions-ID"
|
|
1878 |
|
1879 |
#: classes/admin-includes/class.swpm-payments-list-table.php:83
|
1880 |
msgid "Subscriber ID"
|
1881 |
-
msgstr "
|
1882 |
|
1883 |
#: classes/admin-includes/class.swpm-payments-list-table.php:84
|
1884 |
msgid "Amount"
|
1885 |
-
msgstr "
|
1886 |
|
1887 |
#: classes/shortcode-related/class.swpm-shortcodes-handler.php:60
|
1888 |
msgid "Your membership profile will be updated to reflect the payment."
|
1889 |
-
msgstr "Ihr
|
1890 |
|
1891 |
#: classes/shortcode-related/class.swpm-shortcodes-handler.php:61
|
1892 |
msgid "Your profile username: "
|
1893 |
-
msgstr "Ihr Benutzername: "
|
1894 |
|
1895 |
#: classes/shortcode-related/class.swpm-shortcodes-handler.php:73
|
1896 |
msgid "Click on the following link to complete the registration."
|
@@ -1899,7 +1900,7 @@ msgstr ""
|
|
1899 |
|
1900 |
#: classes/shortcode-related/class.swpm-shortcodes-handler.php:74
|
1901 |
msgid "Click here to complete your paid registration"
|
1902 |
-
msgstr "Klicken Sie hier, um Ihre
|
1903 |
|
1904 |
#: classes/shortcode-related/class.swpm-shortcodes-handler.php:79
|
1905 |
msgid ""
|
@@ -1907,10 +1908,9 @@ msgid ""
|
|
1907 |
"processed. Please check back in a few minutes. An email will be sent to you "
|
1908 |
"with the details shortly."
|
1909 |
msgstr ""
|
1910 |
-
"Wenn Sie
|
1911 |
-
"
|
1912 |
-
"
|
1913 |
-
"Bestätigung."
|
1914 |
|
1915 |
#: classes/shortcode-related/class.swpm-shortcodes-handler.php:93
|
1916 |
msgid "Expiry: "
|
@@ -1918,34 +1918,34 @@ msgstr "Ablauf: "
|
|
1918 |
|
1919 |
#: classes/shortcode-related/class.swpm-shortcodes-handler.php:95
|
1920 |
msgid "You are not logged-in as a member"
|
1921 |
-
msgstr "Sie sind nicht als Mitglied
|
1922 |
|
1923 |
#: classes/shortcode-related/class.swpm-shortcodes-handler.php:115
|
1924 |
msgid "Logged in as: "
|
1925 |
-
msgstr "
|
1926 |
|
1927 |
#: classes/shortcode-related/class.swpm-shortcodes-handler.php:118
|
1928 |
#: views/loggedin.php:31
|
1929 |
msgid "Logout"
|
1930 |
-
msgstr "
|
1931 |
|
1932 |
#: classes/shortcode-related/class.swpm-shortcodes-handler.php:121
|
1933 |
msgid "Login Here"
|
1934 |
-
msgstr "Hier
|
1935 |
|
1936 |
#: classes/shortcode-related/class.swpm-shortcodes-handler.php:122
|
1937 |
msgid "Not a member? "
|
1938 |
-
msgstr "
|
1939 |
|
1940 |
#: classes/shortcode-related/class.swpm-shortcodes-handler.php:123
|
1941 |
msgid "Join Now"
|
1942 |
-
msgstr "
|
1943 |
|
1944 |
#: ipn/swpm-smart-checkout-ipn.php:260 ipn/swpm-smart-checkout-ipn.php:285
|
1945 |
#, php-format
|
1946 |
msgid "Error occured during payment verification. Error code: %d. Message: %s"
|
1947 |
msgstr ""
|
1948 |
-
"
|
1949 |
"Nachricht: %s"
|
1950 |
|
1951 |
#: ipn/swpm-smart-checkout-ipn.php:298
|
@@ -1953,8 +1953,8 @@ msgstr ""
|
|
1953 |
msgid ""
|
1954 |
"Payment check failed: invalid amount received. Expected %s %s, got %s %s."
|
1955 |
msgstr ""
|
1956 |
-
"
|
1957 |
-
"%s %s."
|
1958 |
|
1959 |
#: ipn/swpm-smart-checkout-ipn.php:315
|
1960 |
msgid "Empty payment data received."
|
@@ -1963,28 +1963,28 @@ msgstr "Leere Zahlungsdaten erhalten."
|
|
1963 |
#: ipn/swpm-smart-checkout-ipn.php:355
|
1964 |
msgid "IPN product validation failed. Check debug log for more details."
|
1965 |
msgstr ""
|
1966 |
-
"IPN
|
1967 |
-
"Details."
|
1968 |
|
1969 |
#: views/account_delete_warning.php:7
|
1970 |
msgid ""
|
1971 |
"You are about to delete an account. This will delete user data associated "
|
1972 |
"with this account. "
|
1973 |
msgstr ""
|
1974 |
-
"Sie sind dabei, ein
|
1975 |
-
"
|
1976 |
|
1977 |
#: views/account_delete_warning.php:8
|
1978 |
msgid "It will also delete associated WordPress user account."
|
1979 |
-
msgstr "
|
1980 |
|
1981 |
#: views/account_delete_warning.php:9
|
1982 |
msgid ""
|
1983 |
"(NOTE: for safety, we do not allow deletion of any associated WordPress "
|
1984 |
"account with administrator role)."
|
1985 |
msgstr ""
|
1986 |
-
"(
|
1987 |
-
"
|
1988 |
|
1989 |
#: views/account_delete_warning.php:10
|
1990 |
msgid "Continue?"
|
@@ -2013,7 +2013,7 @@ msgstr "Ich akzeptiere die "
|
|
2013 |
|
2014 |
#: views/add.php:77
|
2015 |
msgid "I agree to the "
|
2016 |
-
msgstr "Ich
|
2017 |
|
2018 |
#: views/add.php:77
|
2019 |
msgid "Privacy Policy"
|
@@ -2026,7 +2026,8 @@ msgstr "Registrieren"
|
|
2026 |
#: views/admin_add.php:7
|
2027 |
msgid "Create a brand new user and add it to this site."
|
2028 |
msgstr ""
|
2029 |
-
"Erstellen Sie einen
|
|
|
2030 |
|
2031 |
#: views/admin_add.php:11 views/admin_add.php:15 views/admin_add_level.php:12
|
2032 |
#: views/admin_add_level.php:16 views/admin_add_level.php:20
|
@@ -2034,7 +2035,7 @@ msgstr ""
|
|
2034 |
#: views/admin_edit_level.php:16 views/admin_edit_level.php:20
|
2035 |
#: views/admin_edit_level.php:24
|
2036 |
msgid "(required)"
|
2037 |
-
msgstr "(
|
2038 |
|
2039 |
#: views/admin_add.php:15 views/admin_edit.php:40
|
2040 |
msgid "E-mail"
|
@@ -2055,12 +2056,12 @@ msgid ""
|
|
2055 |
"$ % ^ & )."
|
2056 |
msgstr ""
|
2057 |
"Hinweis: Das Passwort sollte mindestens sieben Zeichen lang sein. Um es "
|
2058 |
-
"
|
2059 |
-
"Symbole wie! \" ? $ % ^ &)."
|
2060 |
|
2061 |
#: views/admin_add.php:29 views/admin_edit.php:53 views/loggedin.php:10
|
2062 |
msgid "Account Status"
|
2063 |
-
msgstr "
|
2064 |
|
2065 |
#: views/admin_add.php:39
|
2066 |
msgid "Add New Member "
|
@@ -2071,8 +2072,8 @@ msgid ""
|
|
2071 |
"Some of the simple membership plugin's addon settings and options will be "
|
2072 |
"displayed here (if you have them)"
|
2073 |
msgstr ""
|
2074 |
-
"
|
2075 |
-
"
|
2076 |
|
2077 |
#: views/admin_addon_settings.php:8
|
2078 |
msgid "Save Changes"
|
@@ -2084,15 +2085,15 @@ msgstr "Mitgliedschaftsstufe hinzufügen"
|
|
2084 |
|
2085 |
#: views/admin_add_level.php:7
|
2086 |
msgid "Create new membership level."
|
2087 |
-
msgstr "
|
2088 |
|
2089 |
#: views/admin_add_level.php:12 views/admin_edit_level.php:16
|
2090 |
msgid "Membership Level Name"
|
2091 |
-
msgstr "Name
|
2092 |
|
2093 |
#: views/admin_add_level.php:16 views/admin_edit_level.php:20
|
2094 |
msgid "Default WordPress Role"
|
2095 |
-
msgstr "Standard
|
2096 |
|
2097 |
#: views/admin_add_level.php:20 views/admin_edit_level.php:24
|
2098 |
msgid "Access Duration"
|
@@ -2100,7 +2101,7 @@ msgstr "Zugriffsdauer"
|
|
2100 |
|
2101 |
#: views/admin_add_level.php:23
|
2102 |
msgid "No Expiry (Access for this level will not expire until cancelled"
|
2103 |
-
msgstr "Kein Ablauf (Zugriff läuft nicht ab
|
2104 |
|
2105 |
#: views/admin_add_level.php:24 views/admin_add_level.php:26
|
2106 |
#: views/admin_add_level.php:28 views/admin_add_level.php:30
|
@@ -2111,19 +2112,19 @@ msgstr "Läuft aus nach"
|
|
2111 |
|
2112 |
#: views/admin_add_level.php:25 views/admin_edit_level.php:29
|
2113 |
msgid "Days (Access expires after given number of days)"
|
2114 |
-
msgstr "Tage (Zugang
|
2115 |
|
2116 |
#: views/admin_add_level.php:27
|
2117 |
msgid "Weeks (Access expires after given number of weeks"
|
2118 |
-
msgstr "Wochen (Zugang
|
2119 |
|
2120 |
#: views/admin_add_level.php:29 views/admin_edit_level.php:35
|
2121 |
msgid "Months (Access expires after given number of months)"
|
2122 |
-
msgstr "Monate (Zugang
|
2123 |
|
2124 |
#: views/admin_add_level.php:31 views/admin_edit_level.php:38
|
2125 |
msgid "Years (Access expires after given number of years)"
|
2126 |
-
msgstr "Jahre (Zugang
|
2127 |
|
2128 |
#: views/admin_add_level.php:32 views/admin_edit_level.php:40
|
2129 |
msgid "Fixed Date Expiry"
|
@@ -2131,7 +2132,7 @@ msgstr "Festes Ablaufdatum"
|
|
2131 |
|
2132 |
#: views/admin_add_level.php:33 views/admin_edit_level.php:41
|
2133 |
msgid "(Access expires on a fixed date)"
|
2134 |
-
msgstr "(
|
2135 |
|
2136 |
#: views/admin_add_level.php:38 views/admin_edit_level.php:46
|
2137 |
msgid "Email Activation"
|
@@ -2143,9 +2144,10 @@ msgid ""
|
|
2143 |
"click on an activation link that is sent to their email address to activate "
|
2144 |
"the account. Useful for free membership. "
|
2145 |
msgstr ""
|
2146 |
-
"Aktivierung neuer Benutzer
|
2147 |
-
"
|
2148 |
-
"
|
|
|
2149 |
|
2150 |
#: views/admin_add_level.php:44 views/admin_edit_level.php:52
|
2151 |
msgid "View Documentation"
|
@@ -2153,15 +2155,16 @@ msgstr "Dokumentation ansehen"
|
|
2153 |
|
2154 |
#: views/admin_add_level.php:45 views/admin_edit_level.php:53
|
2155 |
msgid "Note:"
|
2156 |
-
msgstr "
|
2157 |
|
2158 |
#: views/admin_add_level.php:45 views/admin_edit_level.php:53
|
|
|
2159 |
msgid ""
|
2160 |
"If enabled, decryptable member password is temporarily stored in the "
|
2161 |
"database until the account is activated."
|
2162 |
msgstr ""
|
2163 |
-
"Wenn aktiviert wird das
|
2164 |
-
"Datenbank gespeichert, bis
|
2165 |
|
2166 |
#: views/admin_add_level.php:52
|
2167 |
msgid "Add New Membership Level "
|
@@ -2177,8 +2180,9 @@ msgid ""
|
|
2177 |
"\"General Protection\" from the drop-down box below and then select the "
|
2178 |
"categories that should be protected from non-logged in users."
|
2179 |
msgstr ""
|
2180 |
-
"
|
2181 |
-
"
|
|
|
2182 |
|
2183 |
#: views/admin_category_list.php:8
|
2184 |
msgid ""
|
@@ -2186,13 +2190,13 @@ msgid ""
|
|
2186 |
"then select the categories you want to grant access to (for that particular "
|
2187 |
"membership level)."
|
2188 |
msgstr ""
|
2189 |
-
"
|
2190 |
-
"die Kategorien,
|
2191 |
-
"
|
2192 |
|
2193 |
#: views/admin_category_list.php:11 views/admin_post_list.php:11
|
2194 |
msgid "Read the "
|
2195 |
-
msgstr "Lesen Sie "
|
2196 |
|
2197 |
#: views/admin_category_list.php:11
|
2198 |
msgid "category protection documentation"
|
@@ -2204,12 +2208,12 @@ msgstr "Mitgliedschaftsstufe:"
|
|
2204 |
|
2205 |
#: views/admin_category_list.php:19 views/admin_post_list.php:29
|
2206 |
msgid "General Protection"
|
2207 |
-
msgstr "
|
2208 |
|
2209 |
#: views/admin_category_list.php:23 views/admin_post_list.php:33
|
2210 |
#: views/edit.php:83
|
2211 |
msgid "Update"
|
2212 |
-
msgstr "
|
2213 |
|
2214 |
#: views/admin_edit.php:11
|
2215 |
msgid "Edit Member"
|
@@ -2217,23 +2221,23 @@ msgstr "Mitglied bearbeiten"
|
|
2217 |
|
2218 |
#: views/admin_edit.php:13
|
2219 |
msgid "Edit existing member details."
|
2220 |
-
msgstr "
|
2221 |
|
2222 |
#: views/admin_edit.php:14
|
2223 |
msgid " You are currenty editing member with member ID: "
|
2224 |
-
msgstr " Sie
|
2225 |
|
2226 |
#: views/admin_edit.php:44
|
2227 |
msgid "(twice, leave empty to retain old password)"
|
2228 |
-
msgstr "(
|
2229 |
|
2230 |
#: views/admin_edit.php:59
|
2231 |
msgid ""
|
2232 |
"This is the member's account status. If you want to manually activate an "
|
2233 |
"expired member's account then read"
|
2234 |
msgstr ""
|
2235 |
-
"Dies ist der
|
2236 |
-
"
|
2237 |
|
2238 |
#: views/admin_edit.php:60
|
2239 |
msgid "this documentation"
|
@@ -2252,12 +2256,13 @@ msgid ""
|
|
2252 |
"You can use this option to send a quick notification email to this member "
|
2253 |
"(the email will be sent when you hit the save button below)."
|
2254 |
msgstr ""
|
2255 |
-
"Sie können
|
2256 |
-
"E-Mail wird gesendet, wenn Sie den
|
|
|
2257 |
|
2258 |
#: views/admin_edit.php:75
|
2259 |
msgid "Subscriber ID/Reference"
|
2260 |
-
msgstr "
|
2261 |
|
2262 |
#: views/admin_edit.php:79
|
2263 |
msgid "Last Accessed Date"
|
@@ -2265,11 +2270,13 @@ msgstr "Datum des letzten Zugriffs"
|
|
2265 |
|
2266 |
#: views/admin_edit.php:82 views/admin_edit.php:89
|
2267 |
msgid "This value gets updated when this member logs into your site."
|
2268 |
-
msgstr "
|
|
|
|
|
2269 |
|
2270 |
#: views/admin_edit.php:86
|
2271 |
msgid "Last Accessed From IP"
|
2272 |
-
msgstr "
|
2273 |
|
2274 |
#: views/admin_edit.php:97
|
2275 |
msgid "Save Data"
|
@@ -2281,35 +2288,39 @@ msgstr "Benutzerprofil löschen"
|
|
2281 |
|
2282 |
#: views/admin_edit_level.php:6
|
2283 |
msgid "Edit membership level"
|
2284 |
-
msgstr "
|
2285 |
|
2286 |
#: views/admin_edit_level.php:9
|
2287 |
msgid ""
|
2288 |
"You can edit details of a selected membership level from this interface. "
|
2289 |
msgstr ""
|
2290 |
-
"
|
|
|
2291 |
|
2292 |
#: views/admin_edit_level.php:10
|
2293 |
msgid "You are currently editing: "
|
2294 |
-
msgstr "Sie
|
2295 |
|
2296 |
#: views/admin_edit_level.php:27
|
2297 |
msgid "No Expiry (Access for this level will not expire until cancelled)"
|
2298 |
-
msgstr "
|
|
|
2299 |
|
2300 |
#: views/admin_edit_level.php:32
|
2301 |
msgid "Weeks (Access expires after given number of weeks)"
|
2302 |
-
msgstr "Wochen (Zugang
|
2303 |
|
2304 |
#: views/admin_edit_level.php:51
|
|
|
2305 |
msgid ""
|
2306 |
"Enable new user activation via email. When enabled, members will need to "
|
2307 |
"click on an activation link that is sent to their email address to activate "
|
2308 |
"the account. Useful for free membership."
|
2309 |
msgstr ""
|
2310 |
-
"Aktivierung neuer Benutzer
|
2311 |
-
"
|
2312 |
-
"
|
|
|
2313 |
|
2314 |
#: views/admin_edit_level.php:60
|
2315 |
msgid "Save Membership Level "
|
@@ -2335,7 +2346,7 @@ msgstr "Geschlecht"
|
|
2335 |
#: views/admin_member_form_common_part.php:30 views/edit.php:47
|
2336 |
#: includes/swpm_mda_show_profile.php:34
|
2337 |
msgid "Phone"
|
2338 |
-
msgstr "
|
2339 |
|
2340 |
#: views/admin_member_form_common_part.php:34 views/edit.php:51
|
2341 |
msgid "Street"
|
@@ -2351,7 +2362,7 @@ msgstr "Bundesland"
|
|
2351 |
|
2352 |
#: views/admin_member_form_common_part.php:46 views/edit.php:63
|
2353 |
msgid "Zipcode"
|
2354 |
-
msgstr "
|
2355 |
|
2356 |
#: views/admin_member_form_common_part.php:50 views/edit.php:67
|
2357 |
#: includes/swpm_mda_show_profile.php:33
|
@@ -2361,7 +2372,7 @@ msgstr "Land"
|
|
2361 |
#: views/admin_member_form_common_part.php:54
|
2362 |
#: includes/swpm_mda_show_profile.php:38
|
2363 |
msgid "Company"
|
2364 |
-
msgstr "
|
2365 |
|
2366 |
#: views/admin_member_form_common_part.php:58
|
2367 |
#: includes/swpm_mda_show_profile.php:36
|
@@ -2374,9 +2385,10 @@ msgid ""
|
|
2374 |
"\"General Protection\" from the drop-down box below and then select posts "
|
2375 |
"and pages that should be protected from non-logged in users."
|
2376 |
msgstr ""
|
2377 |
-
"
|
2378 |
-
"
|
2379 |
-
"
|
|
|
2380 |
|
2381 |
#: views/admin_post_list.php:8
|
2382 |
msgid ""
|
@@ -2384,15 +2396,13 @@ msgid ""
|
|
2384 |
"then select posts and pages you want to grant access to (for that particular "
|
2385 |
"membership level)."
|
2386 |
msgstr ""
|
2387 |
-
"
|
2388 |
-
"die Beiträge und Seiten,
|
2389 |
-
"gewähren
|
2390 |
|
2391 |
#: views/admin_post_list.php:11
|
2392 |
msgid "bulk protect posts and pages documentation"
|
2393 |
-
msgstr ""
|
2394 |
-
"die Dokumentation, wie Beiträge und Seiten in einer Massenanwendung "
|
2395 |
-
"geschützt werden"
|
2396 |
|
2397 |
#: views/admin_post_list.php:11
|
2398 |
msgid " to learn how to use it."
|
@@ -2408,15 +2418,15 @@ msgstr "Seiten"
|
|
2408 |
|
2409 |
#: views/admin_post_list.php:23
|
2410 |
msgid "Custom Posts"
|
2411 |
-
msgstr "Benutzerdefinierte
|
2412 |
|
2413 |
#: views/admin_tools_settings.php:14
|
2414 |
msgid "The required pages have been re-created."
|
2415 |
-
msgstr "Die
|
2416 |
|
2417 |
#: views/admin_tools_settings.php:21
|
2418 |
msgid "Generate a Registration Completion link"
|
2419 |
-
msgstr "
|
2420 |
|
2421 |
#: views/admin_tools_settings.php:24
|
2422 |
msgid ""
|
@@ -2424,12 +2434,13 @@ msgid ""
|
|
2424 |
"your customer if they have missed the email that was automatically sent out "
|
2425 |
"to them after the payment."
|
2426 |
msgstr ""
|
2427 |
-
"Sie können hier manuell einen
|
2428 |
-
"
|
|
|
2429 |
|
2430 |
#: views/admin_tools_settings.php:29
|
2431 |
msgid "Generate Registration Completion Link"
|
2432 |
-
msgstr "
|
2433 |
|
2434 |
#: views/admin_tools_settings.php:30
|
2435 |
msgid "For a Particular Member ID"
|
@@ -2441,7 +2452,7 @@ msgstr "ODER"
|
|
2441 |
|
2442 |
#: views/admin_tools_settings.php:33
|
2443 |
msgid "For All Incomplete Registrations"
|
2444 |
-
msgstr "Für alle unvollständigen
|
2445 |
|
2446 |
#: views/admin_tools_settings.php:38
|
2447 |
msgid "Send Registration Reminder Email Too"
|
@@ -2449,51 +2460,50 @@ msgstr "Registrierungserinnerung auch per E-Mail verschicken"
|
|
2449 |
|
2450 |
#: views/admin_tools_settings.php:44
|
2451 |
msgid "Submit"
|
2452 |
-
msgstr "
|
2453 |
|
2454 |
#: views/admin_tools_settings.php:53
|
2455 |
msgid ""
|
2456 |
"Link(s) generated successfully. The following link(s) can be used to "
|
2457 |
"complete the registration."
|
2458 |
msgstr ""
|
2459 |
-
"Link(s)
|
2460 |
-
"werden, um die Registrierung
|
2461 |
|
2462 |
#: views/admin_tools_settings.php:55
|
2463 |
msgid "Registration completion links will appear below"
|
2464 |
-
msgstr ""
|
2465 |
-
"Der Link für die Vervollständigung der Registrierung wird unten angezeigt"
|
2466 |
|
2467 |
#: views/admin_tools_settings.php:65
|
2468 |
msgid "A prompt to complete registration email was also sent."
|
2469 |
msgstr ""
|
2470 |
-
"Eine Aufforderung
|
2471 |
"gesendet."
|
2472 |
|
2473 |
#: views/admin_tools_settings.php:78 views/admin_tools_settings.php:88
|
2474 |
msgid "Re-create the Required Pages"
|
2475 |
-
msgstr "
|
2476 |
|
2477 |
#: views/admin_tools_settings.php:81
|
2478 |
msgid ""
|
2479 |
"If you have accidentally deleted the required pages that this plugin creates "
|
2480 |
"at install time, you can use this option to re-create them."
|
2481 |
msgstr ""
|
2482 |
-
"
|
2483 |
-
"
|
2484 |
-
"
|
2485 |
|
2486 |
#: views/admin_tools_settings.php:82
|
2487 |
msgid " has full explanation."
|
2488 |
-
msgstr " vollständige Erklärung
|
2489 |
|
2490 |
#: views/edit.php:32 views/edit.php:36
|
2491 |
msgid "Leave empty to keep the current password"
|
2492 |
-
msgstr "
|
2493 |
|
2494 |
#: views/edit.php:71
|
2495 |
msgid "Company Name"
|
2496 |
-
msgstr "
|
2497 |
|
2498 |
#: views/forgot_password.php:12
|
2499 |
msgid "Reset Password"
|
@@ -2501,7 +2511,7 @@ msgstr "Passwort zurücksetzen"
|
|
2501 |
|
2502 |
#: views/loggedin.php:6
|
2503 |
msgid "Logged in as"
|
2504 |
-
msgstr "
|
2505 |
|
2506 |
#: views/loggedin.php:14
|
2507 |
msgid "Membership"
|
@@ -2512,40 +2522,41 @@ msgid "Account Expiry"
|
|
2512 |
msgstr "Kontoablauf"
|
2513 |
|
2514 |
#: views/loggedin.php:26
|
|
|
2515 |
msgid "Edit Profile"
|
2516 |
msgstr "Profil bearbeiten"
|
2517 |
|
2518 |
#: views/login.php:11
|
2519 |
msgid "Username or Email"
|
2520 |
-
msgstr "
|
2521 |
|
2522 |
#: views/login.php:24
|
|
|
2523 |
msgid "Remember Me"
|
2524 |
-
msgstr "
|
2525 |
|
2526 |
#: views/login.php:33
|
2527 |
msgid "Forgot Password?"
|
2528 |
-
msgstr "Passwort vergessen?"
|
2529 |
|
2530 |
#: views/payments/admin_all_payment_transactions.php:6
|
2531 |
msgid "All the payments/transactions of your members are recorded here."
|
2532 |
-
msgstr ""
|
2533 |
-
"Alle Zahlungen / Transaktionen Ihrer Mitglieder werden hier aufgezeichnet."
|
2534 |
|
2535 |
#: views/payments/admin_all_payment_transactions.php:12
|
2536 |
msgid "Search for a transaction by using email or name"
|
2537 |
-
msgstr "Suche nach einer Transaktion mit
|
2538 |
|
2539 |
#: views/payments/admin_create_payment_buttons.php:15
|
2540 |
msgid ""
|
2541 |
"You can create new payment button for your memberships using this interface."
|
2542 |
msgstr ""
|
2543 |
-
"
|
2544 |
-
"
|
2545 |
|
2546 |
#: views/payments/admin_create_payment_buttons.php:23
|
2547 |
msgid "Select Payment Button Type"
|
2548 |
-
msgstr "
|
2549 |
|
2550 |
#: views/payments/admin_create_payment_buttons.php:26
|
2551 |
msgid "PayPal Buy Now"
|
@@ -2553,7 +2564,7 @@ msgstr "PayPal Jetzt kaufen"
|
|
2553 |
|
2554 |
#: views/payments/admin_create_payment_buttons.php:28
|
2555 |
msgid "PayPal Subscription"
|
2556 |
-
msgstr "PayPal
|
2557 |
|
2558 |
#: views/payments/admin_create_payment_buttons.php:30
|
2559 |
msgid "PayPal Smart Checkout"
|
@@ -2565,7 +2576,7 @@ msgstr "Stripe Jetzt kaufen"
|
|
2565 |
|
2566 |
#: views/payments/admin_create_payment_buttons.php:34
|
2567 |
msgid "Stripe Subscription"
|
2568 |
-
msgstr "Stripe
|
2569 |
|
2570 |
#: views/payments/admin_create_payment_buttons.php:36
|
2571 |
msgid "Braintree Buy Now"
|
@@ -2573,43 +2584,43 @@ msgstr "Braintree Jetzt kaufen"
|
|
2573 |
|
2574 |
#: views/payments/admin_create_payment_buttons.php:43
|
2575 |
msgid "Next"
|
2576 |
-
msgstr "
|
2577 |
|
2578 |
#: views/payments/admin_edit_payment_buttons.php:15
|
2579 |
msgid "You can edit a payment button using this interface."
|
2580 |
-
msgstr "
|
2581 |
|
2582 |
#: views/payments/admin_payment_buttons.php:6
|
2583 |
msgid ""
|
2584 |
"All the membership buttons that you created in the plugin are displayed here."
|
2585 |
msgstr ""
|
2586 |
-
"Alle
|
2587 |
-
"
|
2588 |
|
2589 |
#: views/payments/admin_payment_settings.php:21
|
2590 |
msgid "Error! The membership level ID ("
|
2591 |
-
msgstr "Fehler! Die
|
2592 |
|
2593 |
#: views/payments/admin_payment_settings.php:28
|
2594 |
msgid ""
|
2595 |
"You can create membership payment buttons from the payments menu of this "
|
2596 |
"plugin (useful if you want to offer paid membership on the site)."
|
2597 |
msgstr ""
|
2598 |
-
"Sie können
|
2599 |
-
"
|
2600 |
-
"
|
2601 |
|
2602 |
#: views/payments/admin_payment_settings.php:33
|
2603 |
msgid "PayPal Integration Settings"
|
2604 |
-
msgstr "PayPal
|
2605 |
|
2606 |
#: views/payments/admin_payment_settings.php:36
|
2607 |
msgid "Generate the \"Advanced Variables\" Code for your PayPal button"
|
2608 |
-
msgstr "Generieren Sie den \"Advanced Variables\"
|
2609 |
|
2610 |
#: views/payments/admin_payment_settings.php:39
|
2611 |
msgid "Enter the Membership Level ID"
|
2612 |
-
msgstr "
|
2613 |
|
2614 |
#: views/payments/admin_payment_settings.php:41
|
2615 |
msgid "Generate Code"
|
@@ -2617,7 +2628,7 @@ msgstr "Code generieren"
|
|
2617 |
|
2618 |
#: views/payments/payment-gateway/admin_braintree_buy_now_button.php:22
|
2619 |
msgid "Braintree Buy Now Button Configuration"
|
2620 |
-
msgstr "Braintree \"Jetzt kaufen\" Button
|
2621 |
|
2622 |
#: views/payments/payment-gateway/admin_braintree_buy_now_button.php:34
|
2623 |
#: views/payments/payment-gateway/admin_paypal_buy_now_button.php:213
|
@@ -2654,12 +2665,12 @@ msgid ""
|
|
2654 |
"Braintree API key and account details. You can get this from your Braintree "
|
2655 |
"account."
|
2656 |
msgstr ""
|
2657 |
-
"Braintree API
|
2658 |
-
"
|
2659 |
|
2660 |
#: views/payments/payment-gateway/admin_braintree_buy_now_button.php:72
|
2661 |
msgid "Merchant ID"
|
2662 |
-
msgstr "Händler
|
2663 |
|
2664 |
#: views/payments/payment-gateway/admin_braintree_buy_now_button.php:80
|
2665 |
msgid "Public Key"
|
@@ -2671,7 +2682,7 @@ msgstr "Privater Schlüssel"
|
|
2671 |
|
2672 |
#: views/payments/payment-gateway/admin_braintree_buy_now_button.php:95
|
2673 |
msgid "Merchant Account ID"
|
2674 |
-
msgstr "
|
2675 |
|
2676 |
#: views/payments/payment-gateway/admin_braintree_buy_now_button.php:113
|
2677 |
#: views/payments/payment-gateway/admin_stripe_buy_now_button.php:137
|
@@ -2689,7 +2700,7 @@ msgstr "Die folgenden Angaben sind optional."
|
|
2689 |
#: views/payments/payment-gateway/admin_stripe_buy_now_button.php:373
|
2690 |
#: views/payments/payment-gateway/admin_stripe_subscription_button.php:191
|
2691 |
msgid "Return URL"
|
2692 |
-
msgstr "
|
2693 |
|
2694 |
#: views/payments/payment-gateway/admin_braintree_buy_now_button.php:127
|
2695 |
#: views/payments/payment-gateway/admin_paypal_buy_now_button.php:126
|
@@ -2706,7 +2717,7 @@ msgstr "Zahlungsdaten speichern"
|
|
2706 |
#: views/payments/payment-gateway/admin_paypal_buy_now_button.php:16
|
2707 |
#: views/payments/payment-gateway/admin_paypal_buy_now_button.php:204
|
2708 |
msgid "PayPal Buy Now Button Configuration"
|
2709 |
-
msgstr "PayPal
|
2710 |
|
2711 |
#: views/payments/payment-gateway/admin_paypal_buy_now_button.php:52
|
2712 |
#: views/payments/payment-gateway/admin_paypal_buy_now_button.php:247
|
@@ -2716,12 +2727,13 @@ msgstr "PayPal \"Jetzt kaufen\" Button Configuration"
|
|
2716 |
#: views/payments/payment-gateway/admin_stripe_buy_now_button.php:65
|
2717 |
#: views/payments/payment-gateway/admin_stripe_buy_now_button.php:289
|
2718 |
msgid "Payment Currency"
|
2719 |
-
msgstr "
|
2720 |
|
2721 |
#: views/payments/payment-gateway/admin_paypal_buy_now_button.php:100
|
2722 |
#: views/payments/payment-gateway/admin_paypal_buy_now_button.php:295
|
2723 |
#: views/payments/payment-gateway/admin_paypal_subscription_button.php:85
|
2724 |
#: views/payments/payment-gateway/admin_paypal_subscription_button.php:367
|
|
|
2725 |
msgid "PayPal Email"
|
2726 |
msgstr "PayPal E-Mail Adresse"
|
2727 |
|
@@ -2731,12 +2743,13 @@ msgstr "PayPal E-Mail Adresse"
|
|
2731 |
#: views/payments/payment-gateway/admin_paypal_subscription_button.php:464
|
2732 |
#: views/payments/payment-gateway/admin_stripe_subscription_button.php:199
|
2733 |
msgid "Button Image URL"
|
2734 |
-
msgstr "Button Bild
|
2735 |
|
2736 |
#: views/payments/payment-gateway/admin_paypal_buy_now_button.php:116
|
2737 |
#: views/payments/payment-gateway/admin_paypal_buy_now_button.php:311
|
2738 |
#: views/payments/payment-gateway/admin_paypal_subscription_button.php:188
|
2739 |
#: views/payments/payment-gateway/admin_paypal_subscription_button.php:472
|
|
|
2740 |
msgid "Custom Checkout Page Logo Image"
|
2741 |
msgstr "Benutzerdefinierte Checkout Seiten Logo"
|
2742 |
|
@@ -2749,12 +2762,12 @@ msgid ""
|
|
2749 |
"PayPal Smart Checkout API Credentials (you can get this from your PayPal "
|
2750 |
"account)"
|
2751 |
msgstr ""
|
2752 |
-
"PayPal Smart Checkout API
|
2753 |
-
"Konto erhalten)"
|
2754 |
|
2755 |
#: views/payments/payment-gateway/admin_paypal_smart_checkout_button.php:111
|
2756 |
msgid "Live Client ID"
|
2757 |
-
msgstr "
|
2758 |
|
2759 |
#: views/payments/payment-gateway/admin_paypal_smart_checkout_button.php:119
|
2760 |
msgid "Live Secret"
|
@@ -2762,15 +2775,16 @@ msgstr "Live Secret"
|
|
2762 |
|
2763 |
#: views/payments/payment-gateway/admin_paypal_smart_checkout_button.php:127
|
2764 |
msgid "Sandbox Client ID"
|
2765 |
-
msgstr "Sandbox
|
2766 |
|
2767 |
#: views/payments/payment-gateway/admin_paypal_smart_checkout_button.php:135
|
|
|
2768 |
msgid "Sandbox Secret"
|
2769 |
-
msgstr "Sandbox
|
2770 |
|
2771 |
#: views/payments/payment-gateway/admin_paypal_smart_checkout_button.php:143
|
2772 |
msgid "Button Appearance Settings"
|
2773 |
-
msgstr "
|
2774 |
|
2775 |
#: views/payments/payment-gateway/admin_paypal_smart_checkout_button.php:147
|
2776 |
msgid "Size"
|
@@ -2778,7 +2792,7 @@ msgstr "Größe"
|
|
2778 |
|
2779 |
#: views/payments/payment-gateway/admin_paypal_smart_checkout_button.php:150
|
2780 |
msgid "Medium"
|
2781 |
-
msgstr "
|
2782 |
|
2783 |
#: views/payments/payment-gateway/admin_paypal_smart_checkout_button.php:151
|
2784 |
msgid "Large"
|
@@ -2786,11 +2800,11 @@ msgstr "Groß"
|
|
2786 |
|
2787 |
#: views/payments/payment-gateway/admin_paypal_smart_checkout_button.php:152
|
2788 |
msgid "Repsonsive"
|
2789 |
-
msgstr "
|
2790 |
|
2791 |
#: views/payments/payment-gateway/admin_paypal_smart_checkout_button.php:154
|
2792 |
msgid "Select button size."
|
2793 |
-
msgstr "
|
2794 |
|
2795 |
#: views/payments/payment-gateway/admin_paypal_smart_checkout_button.php:158
|
2796 |
msgid "Color"
|
@@ -2814,7 +2828,7 @@ msgstr "Schwarz"
|
|
2814 |
|
2815 |
#: views/payments/payment-gateway/admin_paypal_smart_checkout_button.php:166
|
2816 |
msgid "Select button color."
|
2817 |
-
msgstr "
|
2818 |
|
2819 |
#: views/payments/payment-gateway/admin_paypal_smart_checkout_button.php:170
|
2820 |
msgid "Shape"
|
@@ -2826,11 +2840,11 @@ msgstr "Rechteckig"
|
|
2826 |
|
2827 |
#: views/payments/payment-gateway/admin_paypal_smart_checkout_button.php:173
|
2828 |
msgid "Pill"
|
2829 |
-
msgstr "
|
2830 |
|
2831 |
#: views/payments/payment-gateway/admin_paypal_smart_checkout_button.php:174
|
2832 |
msgid "Select button shape."
|
2833 |
-
msgstr "
|
2834 |
|
2835 |
#: views/payments/payment-gateway/admin_paypal_smart_checkout_button.php:178
|
2836 |
msgid "Layout"
|
@@ -2846,7 +2860,7 @@ msgstr "Horizontal"
|
|
2846 |
|
2847 |
#: views/payments/payment-gateway/admin_paypal_smart_checkout_button.php:182
|
2848 |
msgid "Select button layout."
|
2849 |
-
msgstr "
|
2850 |
|
2851 |
#: views/payments/payment-gateway/admin_paypal_smart_checkout_button.php:187
|
2852 |
msgid "Additional Settings"
|
@@ -2858,19 +2872,20 @@ msgstr "Zahlungsmethoden"
|
|
2858 |
|
2859 |
#: views/payments/payment-gateway/admin_paypal_smart_checkout_button.php:193
|
2860 |
msgid "PayPal Credit"
|
2861 |
-
msgstr "PayPal
|
2862 |
|
2863 |
#: views/payments/payment-gateway/admin_paypal_smart_checkout_button.php:194
|
2864 |
msgid "ELV"
|
2865 |
msgstr "ELV"
|
2866 |
|
2867 |
#: views/payments/payment-gateway/admin_paypal_smart_checkout_button.php:195
|
|
|
2868 |
msgid ""
|
2869 |
"Select payment methods that could be used by customers. Note that payment "
|
2870 |
"with cards is always enabled."
|
2871 |
msgstr ""
|
2872 |
-
"Wählen Sie Zahlungsmethoden, die von Kunden
|
2873 |
-
"Zahlung
|
2874 |
|
2875 |
#: views/payments/payment-gateway/admin_paypal_smart_checkout_button.php:200
|
2876 |
msgid "The following details are optional"
|
@@ -2879,12 +2894,12 @@ msgstr "Die folgenden Angaben sind optional"
|
|
2879 |
#: views/payments/payment-gateway/admin_paypal_subscription_button.php:18
|
2880 |
#: views/payments/payment-gateway/admin_paypal_subscription_button.php:295
|
2881 |
msgid "PayPal Subscription Button Configuration"
|
2882 |
-
msgstr "
|
2883 |
|
2884 |
#: views/payments/payment-gateway/admin_paypal_subscription_button.php:93
|
2885 |
#: views/payments/payment-gateway/admin_paypal_subscription_button.php:375
|
2886 |
msgid "Billing Amount Each Cycle"
|
2887 |
-
msgstr "
|
2888 |
|
2889 |
#: views/payments/payment-gateway/admin_paypal_subscription_button.php:101
|
2890 |
#: views/payments/payment-gateway/admin_paypal_subscription_button.php:383
|
@@ -2894,7 +2909,7 @@ msgstr "Abrechnungszyklus"
|
|
2894 |
#: views/payments/payment-gateway/admin_paypal_subscription_button.php:114
|
2895 |
#: views/payments/payment-gateway/admin_paypal_subscription_button.php:396
|
2896 |
msgid "Billing Cycle Count"
|
2897 |
-
msgstr "Abrechnungszyklen"
|
2898 |
|
2899 |
#: views/payments/payment-gateway/admin_paypal_subscription_button.php:122
|
2900 |
#: views/payments/payment-gateway/admin_paypal_subscription_button.php:404
|
@@ -2906,7 +2921,7 @@ msgstr "Wiederholungsversuch bei aufgetretenem Fehler"
|
|
2906 |
msgid ""
|
2907 |
"Trial Billing Details (Leave empty if you are not offering a trial period)"
|
2908 |
msgstr ""
|
2909 |
-
"
|
2910 |
"anbieten)"
|
2911 |
|
2912 |
#: views/payments/payment-gateway/admin_paypal_subscription_button.php:141
|
@@ -2923,52 +2938,52 @@ msgstr "Abrechnungszeitraum für Probezeitraum"
|
|
2923 |
#: views/payments/payment-gateway/admin_paypal_subscription_button.php:450
|
2924 |
#: views/payments/payment-gateway/admin_stripe_subscription_button.php:177
|
2925 |
msgid "Optional Details"
|
2926 |
-
msgstr "Optionale
|
2927 |
|
2928 |
#: views/payments/payment-gateway/admin_stripe_buy_now_button.php:29
|
2929 |
#: views/payments/payment-gateway/admin_stripe_buy_now_button.php:250
|
2930 |
msgid "Stripe Buy Now Button Configuration"
|
2931 |
-
msgstr "Stripe
|
2932 |
|
2933 |
#: views/payments/payment-gateway/admin_stripe_buy_now_button.php:104
|
2934 |
#: views/payments/payment-gateway/admin_stripe_buy_now_button.php:328
|
2935 |
msgid "Stripe API keys. You can get this from your Stripe account."
|
2936 |
msgstr ""
|
2937 |
-
"Stripe
|
2938 |
|
2939 |
#: views/payments/payment-gateway/admin_stripe_buy_now_button.php:108
|
2940 |
#: views/payments/payment-gateway/admin_stripe_buy_now_button.php:332
|
2941 |
#: views/payments/payment-gateway/admin_stripe_subscription_button.php:131
|
2942 |
msgid "Test Publishable Key"
|
2943 |
-
msgstr "
|
2944 |
|
2945 |
#: views/payments/payment-gateway/admin_stripe_buy_now_button.php:115
|
2946 |
#: views/payments/payment-gateway/admin_stripe_buy_now_button.php:339
|
2947 |
#: views/payments/payment-gateway/admin_stripe_subscription_button.php:139
|
2948 |
msgid "Test Secret Key"
|
2949 |
-
msgstr "
|
2950 |
|
2951 |
#: views/payments/payment-gateway/admin_stripe_buy_now_button.php:122
|
2952 |
#: views/payments/payment-gateway/admin_stripe_buy_now_button.php:346
|
2953 |
#: views/payments/payment-gateway/admin_stripe_subscription_button.php:147
|
2954 |
msgid "Live Publishable Key"
|
2955 |
-
msgstr "
|
2956 |
|
2957 |
#: views/payments/payment-gateway/admin_stripe_buy_now_button.php:129
|
2958 |
#: views/payments/payment-gateway/admin_stripe_buy_now_button.php:353
|
2959 |
#: views/payments/payment-gateway/admin_stripe_subscription_button.php:155
|
2960 |
msgid "Live Secret Key"
|
2961 |
-
msgstr "Geheimer Schlüssel"
|
2962 |
|
2963 |
#: views/payments/payment-gateway/admin_stripe_buy_now_button.php:141
|
2964 |
#: views/payments/payment-gateway/admin_stripe_buy_now_button.php:365
|
2965 |
#: views/payments/payment-gateway/admin_stripe_subscription_button.php:183
|
2966 |
msgid "Collect Customer Address"
|
2967 |
-
msgstr "
|
2968 |
|
2969 |
#: views/payments/payment-gateway/admin_stripe_subscription_button.php:75
|
2970 |
msgid "Stripe Subscription Button Configuration"
|
2971 |
-
msgstr "Konfiguration
|
2972 |
|
2973 |
#: views/payments/payment-gateway/admin_stripe_subscription_button.php:109
|
2974 |
msgid "Stripe Plan ID"
|
@@ -2976,11 +2991,11 @@ msgstr "Stripe Plan ID"
|
|
2976 |
|
2977 |
#: views/payments/payment-gateway/admin_stripe_subscription_button.php:125
|
2978 |
msgid "Stripe API Settings"
|
2979 |
-
msgstr "Stripe
|
2980 |
|
2981 |
#: views/payments/payment-gateway/admin_stripe_subscription_button.php:163
|
2982 |
msgid "Webook Endpoint URL"
|
2983 |
-
msgstr "Webook
|
2984 |
|
2985 |
#: views/payments/payment-gateway/braintree_button_shortcode_view.php:20
|
2986 |
#: views/payments/payment-gateway/paypal_button_shortcode_view.php:91
|
@@ -2997,50 +3012,53 @@ msgid "Subscribe Now"
|
|
2997 |
msgstr "Jetzt abonnieren"
|
2998 |
|
2999 |
#: views/payments/payment-gateway/paypal_smart_checkout_button_shortcode_view.php:137
|
|
|
3000 |
msgid "Error occured during PayPal Smart Checkout process."
|
3001 |
msgstr "Fehler aufgetreten während des PayPal Smart Checkout Prozesses."
|
3002 |
|
3003 |
#: views/payments/payment-gateway/paypal_smart_checkout_button_shortcode_view.php:165
|
3004 |
msgid "HTTP error occured during payment process:"
|
3005 |
-
msgstr "HTTP
|
3006 |
|
3007 |
#: Translation strings from addons === Form builder addon
|
3008 |
msgid "Type password here"
|
3009 |
-
msgstr "
|
3010 |
|
3011 |
msgid "Retype password here"
|
3012 |
-
msgstr "Passwort hier
|
3013 |
|
3014 |
msgid "Registration is complete. You can now log into the site."
|
3015 |
-
msgstr "
|
|
|
|
|
3016 |
|
3017 |
msgid " Field has invalid character"
|
3018 |
-
msgstr "
|
3019 |
|
3020 |
msgid " Password does not match"
|
3021 |
-
msgstr "
|
3022 |
|
3023 |
msgid "Already taken."
|
3024 |
-
msgstr "
|
3025 |
|
3026 |
msgid "Street Address"
|
3027 |
-
msgstr "
|
3028 |
|
3029 |
msgid "Apt, Suite, Bldg. (optional)"
|
3030 |
-
msgstr "Gebäude (optional)"
|
3031 |
|
3032 |
msgid "State / Province / Region"
|
3033 |
-
msgstr "
|
3034 |
|
3035 |
msgid "Postal / Zip Code"
|
3036 |
-
msgstr "
|
3037 |
|
3038 |
msgid ""
|
3039 |
"Check this box to delete the image. The image will be deleted when you save "
|
3040 |
"the profile."
|
3041 |
msgstr ""
|
3042 |
-
"
|
3043 |
-
"wird gelöscht, wenn Sie das Profil
|
3044 |
|
3045 |
msgid "You will need to re-login since you changed your password."
|
3046 |
msgstr "Sie müssen sich neu anmelden, da Sie Ihr Passwort geändert haben."
|
@@ -3048,44 +3066,46 @@ msgstr "Sie müssen sich neu anmelden, da Sie Ihr Passwort geändert haben."
|
|
3048 |
msgid ""
|
3049 |
"Please enter any two digits with <strong>no</strong> spaces (Example: 12)"
|
3050 |
msgstr ""
|
3051 |
-
"Bitte geben Sie zwei Ziffern <strong>ohne</strong>Leerzeichen ein
|
3052 |
|
3053 |
msgid "Verification"
|
3054 |
msgstr "Verifizierung"
|
3055 |
|
|
|
3056 |
msgid "Please enter any two digits with no spaces (Example: 12)*"
|
3057 |
-
msgstr "Bitte geben Sie zwei Ziffern ohne Leerzeichen ein
|
3058 |
|
3059 |
msgid "Username can only contain: letters, numbers and .-*@"
|
3060 |
-
msgstr "
|
3061 |
|
3062 |
msgid "Allowed characters are: letters, numbers and .-_*@"
|
3063 |
-
msgstr "
|
3064 |
|
3065 |
#: === Partial protection addon strings
|
3066 |
msgid "You do not have permission to view this content."
|
3067 |
-
msgstr "
|
3068 |
|
3069 |
msgid "Your membership level does not have permission to view this content."
|
3070 |
-
msgstr "Ihre
|
3071 |
|
3072 |
msgid "This content is for members only."
|
3073 |
-
msgstr "
|
3074 |
|
|
|
3075 |
msgid "Please check at least one."
|
3076 |
-
msgstr "Bitte
|
3077 |
|
3078 |
#: === Member Directory Listing addon strings swpm-member-directory-admin.php:9
|
3079 |
msgid "Member Directory"
|
3080 |
-
msgstr "Mitglieder
|
3081 |
|
3082 |
#: includes/swpm_mda_show_profile.php:26
|
3083 |
msgid "Member ID"
|
3084 |
-
msgstr "Mitglieds
|
3085 |
|
3086 |
#: includes/swpm_mda_show_profile.php:30
|
3087 |
msgid "Level"
|
3088 |
-
msgstr "
|
3089 |
|
3090 |
#: includes/swpm_mda_show_profile.php:32
|
3091 |
msgid "Address"
|
@@ -3099,8 +3119,9 @@ msgstr "Suche..."
|
|
3099 |
msgid "Clear Search"
|
3100 |
msgstr "Suche löschen"
|
3101 |
|
|
|
3102 |
msgid "You must be logged in to upgrade a membership."
|
3103 |
-
msgstr "Sie müssen
|
3104 |
|
3105 |
msgid "Membership level has been updated."
|
3106 |
msgstr "Die Mitgliedschaftsstufe wurde aktualisiert."
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Simple Membership\n"
|
4 |
+
"POT-Creation-Date: 2019-05-26 13:48+0600\n"
|
5 |
+
"PO-Revision-Date: 2020-01-07 07:58+0100\n"
|
6 |
+
"Language-Team: \n"
|
|
|
|
|
|
|
7 |
"MIME-Version: 1.0\n"
|
8 |
"Content-Type: text/plain; charset=UTF-8\n"
|
9 |
"Content-Transfer-Encoding: 8bit\n"
|
10 |
+
"X-Generator: Poedit 2.2.4\n"
|
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 |
#: classes/class.simple-wp-membership.php:180
|
19 |
msgid "The admin of this site does not allow users to access the wp dashboard."
|
20 |
+
msgstr ""
|
21 |
+
"Der Administrator dieser Seite erlaubt es Benutzern nicht, auf das WP-"
|
22 |
+
"Dashboard zuzugreifen."
|
23 |
|
24 |
#: classes/class.simple-wp-membership.php:181
|
25 |
msgid "Go back to the home page by "
|
26 |
+
msgstr "Gehen Sie zurück zur Homepage von "
|
27 |
|
28 |
#: classes/class.simple-wp-membership.php:181
|
29 |
msgid "clicking here"
|
34 |
"Error! This site has the force WP user login feature enabled in the "
|
35 |
"settings. We could not find a WP user record for the given username: "
|
36 |
msgstr ""
|
37 |
+
"Fehler! Auf dieser Seite ist die Funktion force WP user login in den "
|
38 |
+
"Einstellungen aktiviert. Wir konnten keinen WP-Benutzereintrag für den "
|
39 |
+
"angegebenen Benutzernamen finden: "
|
40 |
|
41 |
#: classes/class.simple-wp-membership.php:243
|
42 |
msgid ""
|
43 |
"This error is triggered when a member account doesn't have a corresponding "
|
44 |
"WP user account. So the plugin fails to log the user into the WP User system."
|
45 |
msgstr ""
|
46 |
+
"Dieser Fehler wird ausgelöst, wenn ein Mitgliedskonto kein entsprechendes WP-"
|
47 |
+
"Benutzerkonto hat. Das Plugin meldet den Benutzer also nicht im WP-"
|
48 |
+
"Benutzersystem an."
|
49 |
|
50 |
#: classes/class.simple-wp-membership.php:244
|
51 |
msgid ""
|
52 |
"Contact the site admin and request them to check your username in the WP "
|
53 |
"Users menu to see what happened with the WP user entry of your account."
|
54 |
msgstr ""
|
55 |
+
"Wenden Sie sich an den Administrator der Website und bitten Sie ihn, Ihren "
|
56 |
+
"Benutzernamen im Menü WP-Benutzer zu überprüfen, um zu sehen, was mit dem WP-"
|
57 |
+
"Benutzereintrag Ihres Kontos passiert ist."
|
58 |
|
59 |
#: classes/class.simple-wp-membership.php:245
|
60 |
msgid ""
|
61 |
"The site admin can disable the Force WP User Synchronization feature in the "
|
62 |
"settings to disable this feature and this error will go away."
|
63 |
msgstr ""
|
64 |
+
"Der Administrator kann die Funktion force WP User Synchronization in den "
|
65 |
+
"Einstellungen deaktivieren. Somit wird dieser Fehler behoben."
|
66 |
|
67 |
#: classes/class.simple-wp-membership.php:246
|
68 |
msgid "You can use the back button of your browser to go back to the site."
|
69 |
msgstr ""
|
70 |
+
"Sie können den Zurück-Button Ihres Browsers verwenden, um zur Seite "
|
71 |
+
"zurückzukehren."
|
72 |
|
73 |
#: classes/class.simple-wp-membership.php:407
|
74 |
msgid "You are not logged in."
|
79 |
"You have the sandbox payment mode enabled in plugin settings. Make sure to "
|
80 |
"turn off the sandbox mode when you want to do live transactions."
|
81 |
msgstr ""
|
82 |
+
"Sie haben den Sandkasten-Zahlungsmodus in den Plugin-Einstellungen "
|
83 |
+
"aktiviert. Stellen Sie sicher, dass Sie den Sandkastenmodus deaktivieren, "
|
84 |
+
"wenn Sie Live-Transaktionen durchführen möchten."
|
85 |
|
86 |
#: classes/class.simple-wp-membership.php:473
|
87 |
msgid "Simple WP Membership Protection"
|
88 |
+
msgstr "Simple WP-Membership Schutz"
|
89 |
|
90 |
#: classes/class.simple-wp-membership.php:485
|
91 |
msgid "Simple Membership Protection options"
|
92 |
+
msgstr "Simple Membership Schutz-Optionen"
|
93 |
|
94 |
#: classes/class.simple-wp-membership.php:503
|
95 |
msgid "Do you want to protect this content?"
|
96 |
+
msgstr "Möchten Sie diese Inhalte schützen?"
|
97 |
|
98 |
#: classes/class.simple-wp-membership.php:504
|
99 |
msgid "No, Do not protect this content."
|
106 |
#: classes/class.simple-wp-membership.php:508
|
107 |
msgid "Select the membership level that can access this content:"
|
108 |
msgstr ""
|
109 |
+
"Wählen Sie die Mitgliedschaftsstufe, die auf diese Inhalte zugreifen kann:"
|
|
|
110 |
|
111 |
#: classes/class.simple-wp-membership.php:646
|
112 |
#: classes/class.simple-wp-membership.php:650
|
113 |
msgid "Validating, please wait"
|
114 |
+
msgstr "Validierung, bitte warten Sie"
|
115 |
|
116 |
#: classes/class.simple-wp-membership.php:653
|
117 |
msgid "Invalid email address"
|
118 |
+
msgstr "Ungültige E-Mail Adresse"
|
119 |
|
120 |
#: classes/class.simple-wp-membership.php:656
|
121 |
msgid "This field is required"
|
122 |
+
msgstr "Dieses Feld ist ein Pflichtfeld"
|
123 |
|
124 |
msgid "Password must contain at least:"
|
125 |
+
msgstr "Das Passwort muss mindestens Folgendes enthalten:"
|
126 |
|
127 |
msgid "- a digit"
|
128 |
msgstr "- eine Ziffer"
|
139 |
|
140 |
#: classes/class.simple-wp-membership.php:659
|
141 |
msgid "Usernames can only contain: letters, numbers and .-_*@"
|
142 |
+
msgstr "Benutzernamen dürfen nur enthalten: Buchstaben, Zahlen und .-_*@"
|
143 |
|
144 |
#: classes/class.simple-wp-membership.php:662
|
145 |
msgid "Minimum "
|
147 |
|
148 |
#: classes/class.simple-wp-membership.php:663
|
149 |
msgid " characters required"
|
150 |
+
msgstr " benötigte Zeichen"
|
151 |
|
152 |
#: classes/class.simple-wp-membership.php:666
|
153 |
msgid "Apostrophe character is not allowed"
|
154 |
+
msgstr "Apostrophzeichen sind nicht erlaubt"
|
155 |
|
156 |
#: classes/class.simple-wp-membership.php:697
|
157 |
msgid "WP Membership"
|
158 |
+
msgstr "WP-Mitgliedschaft"
|
159 |
|
160 |
#: classes/class.simple-wp-membership.php:698 classes/class.swpm-members.php:11
|
161 |
#: classes/class.swpm-members.php:581
|
185 |
#: classes/class.swpm-access-control.php:47
|
186 |
#: classes/class.swpm-access-control.php:120
|
187 |
msgid "You need to login to view this content. "
|
188 |
+
msgstr "Sie müssen sich anmelden, um diesen Inhalt zu sehen. "
|
189 |
|
190 |
#: classes/class.swpm-access-control.php:56
|
191 |
#: classes/class.swpm-access-control.php:128
|
192 |
#: classes/class.swpm-access-control.php:212
|
193 |
msgid "Your account has expired. "
|
194 |
+
msgstr "Ihr Konto ist abgelaufen. "
|
195 |
|
196 |
#: classes/class.swpm-access-control.php:66
|
197 |
#: classes/class.swpm-access-control.php:138
|
198 |
msgid "This content can only be viewed by members who joined on or before "
|
199 |
+
msgstr "Dieser Inhalt kann nur von Mitgliedern eingesehen werden, die vor "
|
|
|
|
|
200 |
|
201 |
#: classes/class.swpm-access-control.php:79
|
202 |
#: classes/class.swpm-access-control.php:148
|
203 |
msgid "This content is not permitted for your membership level."
|
204 |
+
msgstr "Dieser Inhalt ist für Ihre Mitgliedschaftsstufe nicht freigegeben."
|
205 |
|
206 |
#: classes/class.swpm-access-control.php:204
|
207 |
msgid "You need to login to view the rest of the content. "
|
208 |
+
msgstr "Sie müssen sich anmelden, um den Rest des Inhalts zu sehen. "
|
|
|
209 |
|
210 |
#: classes/class.swpm-access-control.php:217
|
211 |
msgid " The rest of the content is not permitted for your membership level."
|
212 |
+
msgstr " Der Rest des Inhalts ist für Ihre Mitgliedschaftsstufe nicht erlaubt."
|
|
|
213 |
|
214 |
#: classes/class.swpm-admin-registration.php:25
|
215 |
msgid "Error! Nonce verification failed for user registration from admin end."
|
216 |
msgstr ""
|
217 |
+
"Fehler! Die einmalige Verifizierung ist bei der Benutzerregistrierung von "
|
218 |
+
"der Admin-Seite fehlgeschlagen."
|
219 |
|
220 |
#: classes/class.swpm-admin-registration.php:71
|
221 |
msgid "Member record added successfully."
|
222 |
+
msgstr "Mitglieder-Datensatz erfolgreich hinzugefügt."
|
223 |
|
224 |
#: classes/class.swpm-admin-registration.php:76
|
225 |
#: classes/class.swpm-admin-registration.php:124
|
227 |
#: classes/class.swpm-membership-level.php:73
|
228 |
#: classes/class.swpm-membership-level.php:105
|
229 |
msgid "Please correct the following:"
|
230 |
+
msgstr "Bitte korrigieren Sie die folgenden Punkte:"
|
231 |
|
232 |
#: classes/class.swpm-admin-registration.php:87
|
233 |
msgid "Error! Nonce verification failed for user edit from admin end."
|
234 |
msgstr ""
|
235 |
+
"Fehler! Die einmalige Verifizierung ist bei der Benutzerbearbeitung von der "
|
236 |
+
"Admin-Seite fehlgeschlagen."
|
237 |
|
238 |
#: classes/class.swpm-admin-registration.php:139
|
239 |
msgid "Your current password"
|
244 |
msgstr "Ungültige E-Mail Adresse"
|
245 |
|
246 |
#: classes/class.swpm-ajax.php:21 classes/class.swpm-ajax.php:36
|
247 |
+
msgid "Already taken"
|
248 |
+
msgstr "Bereits vergeben"
|
249 |
|
250 |
#: classes/class.swpm-ajax.php:30
|
251 |
msgid "Name contains invalid character"
|
260 |
"Warning! Simple Membership plugin cannot process this login request to "
|
261 |
"prevent you from getting logged out of WP Admin accidentally."
|
262 |
msgstr ""
|
263 |
+
"Achtung! Simple Membership Plugin kann diese Anmeldeanfrage nicht "
|
264 |
+
"bearbeiten, um zu verhindern, dass Sie versehentlich aus dem WP Admin "
|
265 |
+
"abgemeldet werden."
|
266 |
|
267 |
#: classes/class.swpm-auth.php:58
|
268 |
msgid "Click here"
|
269 |
+
msgstr "Klicken Sie hier"
|
270 |
|
271 |
#: classes/class.swpm-auth.php:58
|
272 |
msgid " to see the profile you are currently logged into in this browser."
|
273 |
msgstr ""
|
274 |
+
" um das Profil zu sehen, in dem Sie gerade in diesem Browser angemeldet sind."
|
275 |
|
276 |
#: classes/class.swpm-auth.php:59
|
277 |
msgid ""
|
278 |
"You are logged into the site as an ADMIN user in this browser. First, logout "
|
279 |
"from WP Admin then you will be able to log in as a normal member."
|
280 |
msgstr ""
|
281 |
+
"In diesem Browser sind Sie als Admin Benutzer auf der Website angemeldet. "
|
282 |
+
"Bitte zuerst als WP Admin abmelden, dann können Sie sich als normales "
|
283 |
+
"Mitglied anmelden."
|
284 |
|
285 |
#: classes/class.swpm-auth.php:60
|
286 |
msgid ""
|
287 |
"Alternatively, you can use a different browser (where you are not logged-in "
|
288 |
"as ADMIN) to test the membership login."
|
289 |
msgstr ""
|
290 |
+
"Alternativ können Sie auch einen anderen Browser verwenden (in dem Sie nicht "
|
291 |
+
"als Admin angemeldet sind), um die Anmeldung zur Mitgliedschaft zu testen."
|
292 |
|
293 |
#: classes/class.swpm-auth.php:61
|
294 |
msgid ""
|
295 |
"Your normal visitors or members will never see this message. This message is "
|
296 |
"ONLY for ADMIN user."
|
297 |
msgstr ""
|
298 |
+
"Ihre normalen Besucher oder Mitglieder werden diese Nachricht nie sehen. "
|
299 |
+
"Diese Meldung ist NUR für Admin-Benutzer bestimmt."
|
300 |
|
301 |
#: classes/class.swpm-auth.php:68
|
302 |
msgid "Captcha validation failed on login form."
|
303 |
+
msgstr "Die Captcha-Validierung ist beim Anmeldeformular fehlgeschlagen."
|
304 |
|
305 |
#: classes/class.swpm-auth.php:93
|
306 |
msgid "User Not Found."
|
312 |
|
313 |
#: classes/class.swpm-auth.php:133
|
314 |
msgid "Account is inactive."
|
315 |
+
msgstr "Das Konto ist inaktiv."
|
316 |
|
317 |
#: classes/class.swpm-auth.php:136 classes/class.swpm-auth.php:162
|
318 |
msgid "Account has expired."
|
319 |
+
msgstr "Das Konto ist abgelaufen."
|
320 |
|
321 |
#: classes/class.swpm-auth.php:139
|
322 |
msgid "Account is pending."
|
323 |
+
msgstr "Das Konto wurde noch nicht aktiviert."
|
324 |
|
325 |
#: classes/class.swpm-auth.php:146
|
326 |
#, php-format
|
328 |
"You need to activate your account. If you didn't receive an email then %s to "
|
329 |
"resend the activation email."
|
330 |
msgstr ""
|
331 |
+
"Sie müssen Ihr Konto aktivieren. Wenn Sie keine E-Mail erhalten haben, dann "
|
332 |
+
"%s, um die Aktivierungs-E-Mail erneut zu senden."
|
333 |
|
334 |
#: classes/class.swpm-auth.php:146
|
335 |
#: classes/class.swpm-front-registration.php:376
|
336 |
#: classes/class.swpm-front-registration.php:426
|
337 |
#: classes/class.swpm-utils-misc.php:169
|
338 |
msgid "click here"
|
339 |
+
msgstr "klicken Sie hier"
|
340 |
|
341 |
#: classes/class.swpm-auth.php:170
|
342 |
msgid "You are logged in as:"
|
343 |
+
msgstr "Sie sind angemeldet als:"
|
344 |
|
345 |
#: classes/class.swpm-auth.php:234
|
346 |
msgid "Logged Out Successfully."
|
347 |
+
msgstr "Erfolgreich abgemeldet."
|
348 |
|
349 |
#: classes/class.swpm-auth.php:287
|
350 |
msgid "Session Expired."
|
351 |
+
msgstr "Die Sitzung ist abgelaufen."
|
352 |
|
353 |
#: classes/class.swpm-auth.php:304
|
354 |
msgid "Please login again."
|
355 |
+
msgstr "Bitte melden Sie sich erneut an."
|
356 |
|
357 |
#: classes/class.swpm-category-list.php:19 classes/class.swpm-members.php:24
|
358 |
#: classes/class.swpm-membership-levels.php:11
|
374 |
|
375 |
#: classes/class.swpm-category-list.php:33
|
376 |
msgid "Category ID"
|
377 |
+
msgstr "Kategorie-ID"
|
378 |
|
379 |
#: classes/class.swpm-category-list.php:34
|
380 |
msgid "Category Name"
|
381 |
+
msgstr "Kategoriename"
|
382 |
|
383 |
#: classes/class.swpm-category-list.php:35
|
384 |
+
#, fuzzy
|
385 |
msgid "Category Type (Taxonomy)"
|
386 |
+
msgstr "Kategorieart (Taxonomie)"
|
387 |
|
388 |
#: classes/class.swpm-category-list.php:36
|
389 |
msgid "Description"
|
395 |
|
396 |
#: classes/class.swpm-category-list.php:92
|
397 |
msgid "Category protection updated!"
|
398 |
+
msgstr "Kategorie-Schutz aktualisiert!"
|
399 |
|
400 |
#: classes/class.swpm-category-list.php:130
|
401 |
msgid "No category found."
|
402 |
+
msgstr "Keine Kategorie gefunden."
|
403 |
|
404 |
#: classes/class.swpm-comment-form-related.php:15
|
405 |
msgid "Please login to comment."
|
406 |
+
msgstr "Bitte melden Sie sich an, um einen Kommentar zu hinterlassen."
|
|
|
407 |
|
408 |
#: classes/class.swpm-comment-form-related.php:40
|
409 |
msgid "Please Login to Comment."
|
410 |
+
msgstr "Bitte melden Sie sich an, um einen Kommentar zu hinterlassen."
|
|
|
411 |
|
412 |
#: classes/class.swpm-comment-form-related.php:79
|
413 |
msgid "Comments not allowed by a non-member."
|
414 |
+
msgstr "Kommentare von einem Nicht-Mitglied sind nicht erlaubt."
|
415 |
|
416 |
#: classes/class.swpm-form.php:30
|
417 |
msgid ""
|
418 |
"Wordpress account exists with given username. But given email doesn't match."
|
419 |
msgstr ""
|
420 |
+
"Das Wordpress-Konto existiert mit dem angegebenen Benutzernamen, aber die "
|
421 |
+
"angegebene E-Mail Adresse stimmt nicht überein."
|
422 |
|
423 |
#: classes/class.swpm-form.php:31
|
424 |
msgid ""
|
427 |
"the existing WP user to connect with that account."
|
428 |
msgstr ""
|
429 |
" Verwenden Sie einen anderen Benutzernamen, um die Registrierung "
|
430 |
+
"abzuschließen. Wenn Sie diesen Benutzernamen verwenden möchten, müssen Sie "
|
431 |
+
"die richtige E-Mail Adresse eingeben, die dem bestehenden WP-Benutzer "
|
432 |
+
"zugeordnet ist, um sich mit diesem Konto zu verbinden."
|
433 |
|
434 |
#: classes/class.swpm-form.php:37
|
435 |
msgid ""
|
436 |
"Wordpress account exists with given email. But given username doesn't match."
|
437 |
msgstr ""
|
438 |
+
"Das Wordpress-Konto existiert mit der angegebenen E-Mail, aber der "
|
439 |
+
"angegebene Benutzername stimmt nicht überein."
|
440 |
|
441 |
#: classes/class.swpm-form.php:38
|
442 |
msgid ""
|
444 |
"use that email then you must enter the correct username associated with the "
|
445 |
"existing WP user to connect with that account."
|
446 |
msgstr ""
|
447 |
+
" Verwenden Sie eine andere E-Mail Adresse, um die Registrierung "
|
448 |
+
"abzuschließen. Wenn Sie diese E-Mail verwenden möchten, müssen Sie den "
|
449 |
+
"richtigen Benutzernamen eingeben, der dem bestehenden WP-Benutzer zugeordnet "
|
450 |
+
"ist, um sich mit diesem Konto zu verbinden."
|
451 |
|
452 |
#: classes/class.swpm-form.php:48
|
453 |
msgid "Username is required"
|
454 |
+
msgstr "Benutzername erforderlich"
|
455 |
|
456 |
#: classes/class.swpm-form.php:52
|
457 |
msgid "Username contains invalid character"
|
458 |
+
msgstr "Der Benutzername enthält ein ungültiges Zeichen"
|
459 |
|
460 |
#: classes/class.swpm-form.php:60
|
461 |
msgid "Username already exists."
|
462 |
+
msgstr "Der Benutzername wird bereits verwendet."
|
463 |
|
464 |
#: classes/class.swpm-form.php:83
|
465 |
msgid "Password is required"
|
467 |
|
468 |
#: classes/class.swpm-form.php:90
|
469 |
msgid "Password mismatch"
|
470 |
+
msgstr "Passwörter stimmen nicht überein"
|
471 |
|
472 |
#: classes/class.swpm-form.php:101
|
473 |
msgid "Email is required"
|
474 |
+
msgstr "E-Mail Adresse erforderlich"
|
475 |
|
476 |
#: classes/class.swpm-form.php:105
|
477 |
msgid "Email is invalid"
|
478 |
msgstr "E-Mail Adresse ist ungültig"
|
479 |
|
480 |
#: classes/class.swpm-form.php:121
|
481 |
+
#, fuzzy
|
482 |
msgid "Email is already used."
|
483 |
+
msgstr "E-Mail Adresse wird bereits verwendet."
|
484 |
|
485 |
#: classes/class.swpm-form.php:179
|
486 |
msgid "Member since field is invalid"
|
487 |
+
msgstr "\"Mitglied seit\" Feld ist ungültig"
|
488 |
|
489 |
#: classes/class.swpm-form.php:190
|
490 |
msgid "Access starts field is invalid"
|
491 |
+
msgstr "Das Feld Zugriffsstart ist ungültig"
|
492 |
|
493 |
#: classes/class.swpm-form.php:200
|
494 |
msgid "Gender field is invalid"
|
495 |
+
msgstr "\"Geschlechterfeld\" ist ungültig"
|
496 |
|
497 |
#: classes/class.swpm-form.php:211
|
498 |
msgid "Account state field is invalid"
|
499 |
+
msgstr "Das Feld Kontostatus ist ungültig"
|
500 |
|
501 |
#: classes/class.swpm-form.php:218
|
502 |
msgid "Invalid membership level"
|
507 |
"Error! Invalid Request. Could not find a match for the given security code "
|
508 |
"and the user ID."
|
509 |
msgstr ""
|
510 |
+
"Fehler! Ungültige Anfrage. Es konnte keine Übereinstimmung für den "
|
511 |
+
"angegebenen Sicherheitscode und die Benutzer-ID gefunden werden."
|
512 |
|
513 |
#: classes/class.swpm-front-registration.php:45
|
514 |
#: classes/class.swpm-utils-misc.php:274 views/login.php:36
|
515 |
msgid "Join Us"
|
516 |
+
msgstr "Werden Sie Mitglied bei uns"
|
517 |
|
518 |
#: classes/class.swpm-front-registration.php:47
|
519 |
msgid ""
|
520 |
"Free membership is disabled on this site. Please make a payment from the "
|
521 |
msgstr ""
|
522 |
+
"Die kostenlose Mitgliedschaft ist auf dieser Seite deaktiviert. Bitte "
|
523 |
+
"leisten Sie eine Zahlung von der "
|
524 |
|
525 |
#: classes/class.swpm-front-registration.php:49
|
526 |
msgid " page to pay for a premium membership."
|
531 |
"You will receive a unique link via email after the payment. You will be able "
|
532 |
"to use that link to complete the premium membership registration."
|
533 |
msgstr ""
|
534 |
+
"Sie erhalten nach der Zahlung einen eindeutigen Link per E-Mail. Sie können "
|
535 |
+
"diesen Link verwenden, um die Registrierung für die Premium-Mitgliedschaft "
|
536 |
+
"abzuschließen."
|
537 |
|
538 |
#: classes/class.swpm-front-registration.php:79
|
539 |
msgid "Security check: captcha validation failed."
|
540 |
+
msgstr "Sicherheitsüberprüfung: Die Captcha-Validierung ist fehlgeschlagen."
|
541 |
|
542 |
#: classes/class.swpm-front-registration.php:89
|
543 |
msgid "You must accept the terms and conditions."
|
544 |
+
msgstr "Sie müssen die Allgemeinen Geschäftsbedingungen akzeptieren."
|
545 |
|
546 |
#: classes/class.swpm-front-registration.php:100
|
547 |
msgid "You must agree to the privacy policy."
|
552 |
"You need to confirm your email address. Please check your email and follow "
|
553 |
"instructions to complete your registration."
|
554 |
msgstr ""
|
555 |
+
"Sie müssen Ihre E-Mail Adresse bestätigen. Bitte überprüfen Sie Ihre E-Mail "
|
556 |
+
"und folgen Sie den Anweisungen, um Ihre Registrierung abzuschließen."
|
|
|
557 |
|
558 |
#: classes/class.swpm-front-registration.php:145
|
559 |
msgid "Registration Successful. "
|
567 |
#: classes/class.swpm-front-registration.php:145
|
568 |
#: classes/class.swpm-utils-misc.php:273 views/login.php:30
|
569 |
msgid "Login"
|
570 |
+
msgstr "Anmelden"
|
571 |
|
572 |
#: classes/class.swpm-front-registration.php:159
|
573 |
msgid "Please correct the following"
|
574 |
+
msgstr "Bitte korrigieren Sie Folgendes"
|
575 |
|
576 |
#: classes/class.swpm-front-registration.php:207
|
577 |
msgid "Membership Level Couldn't be found."
|
580 |
#: classes/class.swpm-front-registration.php:258
|
581 |
msgid "Error! Nonce verification failed for front end profile edit."
|
582 |
msgstr ""
|
583 |
+
"Fehler! Die einmalige Überprüfung ist bei der Bearbeitung des Frontend-"
|
584 |
+
"Profils fehlgeschlagen."
|
585 |
|
586 |
#: classes/class.swpm-front-registration.php:266
|
587 |
msgid "Profile updated successfully."
|
597 |
|
598 |
#: classes/class.swpm-front-registration.php:289
|
599 |
msgid "Please correct the following."
|
600 |
+
msgstr "Bitte korrigieren Sie die folgenden Punkte."
|
601 |
|
602 |
#: classes/class.swpm-front-registration.php:301
|
603 |
msgid "Captcha validation failed."
|
604 |
+
msgstr "Die Captcha-Validierung ist fehlgeschlagen."
|
605 |
|
606 |
#: classes/class.swpm-front-registration.php:309
|
607 |
msgid "Email address not valid."
|
609 |
|
610 |
#: classes/class.swpm-front-registration.php:320
|
611 |
msgid "No user found with that email address."
|
612 |
+
msgstr "Kein Benutzer mit dieser E-Mail Adresse gefunden."
|
613 |
|
614 |
#: classes/class.swpm-front-registration.php:321
|
615 |
#: classes/class.swpm-front-registration.php:350
|
618 |
|
619 |
#: classes/class.swpm-front-registration.php:349
|
620 |
msgid "New password has been sent to your email address."
|
621 |
+
msgstr "Ein neues Passwort wurde an Ihre E-Mail Adresse gesendet."
|
622 |
|
623 |
#: classes/class.swpm-front-registration.php:371
|
624 |
msgid "Can't find member account."
|
625 |
+
msgstr "Das Mitgliedskonto konnte nicht gefunden werden."
|
626 |
|
627 |
#: classes/class.swpm-front-registration.php:376
|
628 |
#: classes/class.swpm-front-registration.php:426
|
629 |
msgid "Account already active. "
|
630 |
+
msgstr "Konto bereits aktiv. "
|
631 |
|
632 |
#: classes/class.swpm-front-registration.php:376
|
633 |
#: classes/class.swpm-front-registration.php:426
|
634 |
msgid " to login."
|
635 |
+
msgstr " um sich anzumelden."
|
636 |
|
637 |
#: classes/class.swpm-front-registration.php:383
|
638 |
msgid ""
|
639 |
"Activation code mismatch. Cannot activate this account. Please contact the "
|
640 |
"site admin."
|
641 |
msgstr ""
|
642 |
+
"Der Aktivierungscode stimmt nicht überein. Dieses Konto kann nicht aktiviert "
|
643 |
+
"werden. Bitte wenden Sie sich an den Administrator der Website."
|
644 |
|
645 |
#: classes/class.swpm-front-registration.php:397
|
646 |
msgid "Success! Your account has been activated successfully."
|
647 |
+
msgstr "Erfolg! Ihr Konto wurde erfolgreich aktiviert."
|
648 |
|
649 |
#: classes/class.swpm-front-registration.php:421
|
650 |
msgid "Cannot find member account."
|
651 |
+
msgstr "Das Mitgliedskonto kann nicht gefunden werden."
|
652 |
|
653 |
#: classes/class.swpm-front-registration.php:443
|
654 |
msgid ""
|
655 |
"Activation email has been sent. Please check your email and activate your "
|
656 |
"account."
|
657 |
msgstr ""
|
658 |
+
"Die Aktivierungs-E-Mail wurde gesendet. Bitte überprüfen Sie Ihre E-Mail und "
|
659 |
+
"aktivieren Sie Ihr Konto."
|
660 |
|
661 |
#: classes/class.swpm-init-time-tasks.php:118
|
662 |
msgid "Sorry, Nonce verification failed."
|
663 |
+
msgstr "Entschuldigung, die einmalige Überprüfung ist fehlgeschlagen."
|
664 |
|
665 |
#: classes/class.swpm-init-time-tasks.php:125
|
666 |
msgid "Sorry, Password didn't match."
|
667 |
+
msgstr "Entschuldigung, das Passwort stimmt nicht überein."
|
668 |
|
669 |
#: classes/class.swpm-level-form.php:50
|
670 |
msgid "Date format is not valid."
|
671 |
+
msgstr "Das Datumsformat ist ungültig."
|
672 |
|
673 |
#: classes/class.swpm-level-form.php:58
|
674 |
msgid "Access duration must be > 0."
|
675 |
+
msgstr "Die Zugriffsdauer muss > 0 sein."
|
676 |
|
677 |
#: classes/class.swpm-members.php:10
|
678 |
msgid "Member"
|
706 |
#: classes/class.swpm-members.php:23 views/add.php:20 views/edit.php:27
|
707 |
#: includes/swpm_mda_show_profile.php:35
|
708 |
msgid "Email"
|
709 |
+
msgstr "E-Mail Adresse"
|
710 |
|
711 |
#: classes/class.swpm-members.php:25 views/admin_member_form_common_part.php:11
|
712 |
msgid "Access Starts"
|
713 |
+
msgstr "Zugriff beginnt"
|
714 |
|
715 |
#: classes/class.swpm-members.php:26 includes/swpm_mda_show_profile.php:31
|
716 |
msgid "Account State"
|
718 |
|
719 |
#: classes/class.swpm-members.php:27
|
720 |
msgid "Last Login Date"
|
721 |
+
msgstr "Letztes Login-Datum"
|
722 |
|
723 |
#: classes/class.swpm-members.php:46
|
724 |
#: classes/class.swpm-membership-levels.php:36
|
729 |
|
730 |
#: classes/class.swpm-members.php:47
|
731 |
msgid "Set Status to Active"
|
732 |
+
msgstr "Status auf \"Aktiv\" setzen"
|
733 |
|
734 |
#: classes/class.swpm-members.php:48
|
735 |
msgid "Set Status to Active and Notify"
|
736 |
+
msgstr "Status auf \"Aktiv\" setzen und benachrichtigen"
|
737 |
|
738 |
#: classes/class.swpm-members.php:49
|
739 |
msgid "Set Status to Inactive"
|
740 |
+
msgstr "Status auf \"Inaktiv\" setzen"
|
741 |
|
742 |
#: classes/class.swpm-members.php:50
|
743 |
msgid "Set Status to Pending"
|
744 |
+
msgstr "Status auf \"Ausstehend\" setzen"
|
745 |
|
746 |
#: classes/class.swpm-members.php:51
|
747 |
msgid "Set Status to Expired"
|
748 |
+
msgstr "Status auf \"Abgelaufen\" setzen"
|
749 |
|
750 |
#: classes/class.swpm-members.php:72
|
751 |
msgid "incomplete"
|
758 |
#: classes/class.swpm-members.php:337
|
759 |
msgid "Error! Nonce verification failed for user delete from admin end."
|
760 |
msgstr ""
|
761 |
+
"Fehler! Die einmalige Überprüfung für das Löschen von Benutzern aus dem "
|
762 |
+
"Admin-Bereich ist fehlgeschlagen."
|
763 |
|
764 |
#: classes/class.swpm-members.php:406 classes/class.swpm-members.php:436
|
765 |
msgid "Error! Please select a membership level first."
|
767 |
|
768 |
#: classes/class.swpm-members.php:423
|
769 |
msgid "Membership level change operation completed successfully."
|
770 |
+
msgstr "Die Änderung der Mitgliedsstufe wurde erfolgreich abgeschlossen."
|
771 |
|
772 |
#: classes/class.swpm-members.php:453
|
773 |
msgid "Access starts date change operation successfully completed."
|
774 |
+
msgstr "Änderung von Zugriffstartdatum erfolgreich abgeschlossen."
|
775 |
|
776 |
#: classes/class.swpm-members.php:462
|
777 |
msgid "Bulk Update Membership Level of Members"
|
778 |
+
msgstr "Massenänderung Mitgliedsstufe für Mitglieder"
|
779 |
|
780 |
#: classes/class.swpm-members.php:465
|
781 |
msgid ""
|
782 |
"You can manually change the membership level of any member by editing the "
|
783 |
"record from the members menu. "
|
784 |
msgstr ""
|
785 |
+
"Sie können die Mitgliedsstufe eines jeden Mitglieds manuell ändern, indem "
|
786 |
+
"Sie den Datensatz im Mitgliedermenü bearbeiten. "
|
787 |
|
788 |
#: classes/class.swpm-members.php:466
|
789 |
msgid ""
|
790 |
"You can use the following option to bulk update the membership level of "
|
791 |
"users who belong to the level you select below."
|
792 |
msgstr ""
|
793 |
+
"Sie können die folgende Option verwenden, um die Mitgliedschaftsstufe von "
|
794 |
+
"Benutzern, die zu der unten ausgewählten Stufe gehören, zu aktualisieren."
|
|
|
795 |
|
796 |
#: classes/class.swpm-members.php:472 classes/class.swpm-members.php:520
|
797 |
msgid "Membership Level: "
|
799 |
|
800 |
#: classes/class.swpm-members.php:476
|
801 |
msgid "Select Current Level"
|
802 |
+
msgstr "Aktuelle Stufe auswählen"
|
803 |
|
804 |
#: classes/class.swpm-members.php:479
|
805 |
msgid ""
|
806 |
"Select the current membership level (the membership level of all members who "
|
807 |
"are in this level will be updated)."
|
808 |
msgstr ""
|
809 |
+
"Wählen Sie die aktuelle Mitgliedsstufe aus (die Mitgliedsstufe aller "
|
810 |
+
"Mitglieder, die sich in dieser Stufe befinden, wird aktualisiert)."
|
811 |
|
812 |
#: classes/class.swpm-members.php:485
|
813 |
msgid "Level to Change to: "
|
814 |
+
msgstr "Stufe ändern in: "
|
815 |
|
816 |
#: classes/class.swpm-members.php:489
|
817 |
msgid "Select Target Level"
|
818 |
+
msgstr "Ziel-Stufe auswählen"
|
819 |
|
820 |
#: classes/class.swpm-members.php:492
|
821 |
msgid "Select the new membership level."
|
822 |
+
msgstr "Wählen Sie die neue Mitgliedsstufe aus."
|
823 |
|
824 |
#: classes/class.swpm-members.php:498
|
825 |
msgid "Bulk Change Membership Level"
|
826 |
+
msgstr "Massenänderung Mitgliedsstufe"
|
827 |
|
828 |
#: classes/class.swpm-members.php:508
|
829 |
msgid "Bulk Update Access Starts Date of Members"
|
830 |
+
msgstr "Massenänderung des Zugriffstartdatums"
|
831 |
|
832 |
#: classes/class.swpm-members.php:512
|
833 |
msgid ""
|
836 |
"content that are protected with a duration type protection in the membership "
|
837 |
"level. "
|
838 |
msgstr ""
|
839 |
+
"Das Startdatum des Zugriffs eines Mitglieds wird auf den Tag festgelegt, an "
|
840 |
+
"dem sich der Benutzer registriert. Dieser Datumswert wird verwendet, um zu "
|
841 |
+
"berechnen, wie lange das Mitglied auf Ihre Inhalte zugreifen kann, die mit "
|
842 |
+
"einem Laufzeitschutz in der Mitgliedsstufe geschützt sind. "
|
843 |
|
844 |
#: classes/class.swpm-members.php:513
|
845 |
msgid ""
|
846 |
"You can manually set a specific access starts date value of all members who "
|
847 |
"belong to a particular level using the following option."
|
848 |
msgstr ""
|
849 |
+
"Mit der folgenden Option können Sie manuell einen bestimmten Startdatumswert "
|
850 |
+
"für den Zugriff für alle Mitglieder festlegen, die zu einer bestimmten Stufe "
|
851 |
+
"gehören."
|
852 |
|
853 |
#: classes/class.swpm-members.php:523
|
854 |
msgid "Select Level"
|
859 |
"Select the Membership level (the access start date of all members who are in "
|
860 |
"this level will be updated)."
|
861 |
msgstr ""
|
862 |
+
"Wählen Sie die Mitgliedschaftsstufe (das Startdatum für den Zugriff aller "
|
863 |
+
"Mitglieder, die sich in dieser Stufe befinden, wird aktualisiert)."
|
864 |
|
865 |
#: classes/class.swpm-members.php:535
|
866 |
msgid "Specify the access starts date value."
|
867 |
+
msgstr "Geben Sie den Wert für das Startdatum des Zugriffs an."
|
868 |
|
869 |
#: classes/class.swpm-members.php:541
|
870 |
msgid "Bulk Change Access Starts Date"
|
871 |
+
msgstr "Massenänderung des Zugriffstartdatums"
|
872 |
|
873 |
#: classes/class.swpm-members.php:576
|
874 |
msgid "Simple WP Membership::Members"
|
881 |
|
882 |
#: classes/class.swpm-members.php:582 views/admin_add.php:6
|
883 |
msgid "Add Member"
|
884 |
+
msgstr "Mitglied hinzufügen"
|
885 |
|
886 |
#: classes/class.swpm-members.php:583
|
887 |
msgid "Bulk Operation"
|
888 |
+
msgstr "Massenoperation"
|
889 |
|
890 |
#: classes/class.swpm-membership-level.php:52
|
891 |
msgid ""
|
892 |
"Error! Nonce verification failed for membership level creation from admin "
|
893 |
"end."
|
894 |
msgstr ""
|
895 |
+
"Fehler! Die einmalige Verifizierung für die Erstellung der Mitgliedsstufe "
|
896 |
+
"vom Admin-End ist fehlgeschlagen."
|
897 |
|
898 |
#: classes/class.swpm-membership-level.php:68
|
899 |
msgid "Membership Level Creation Successful."
|
900 |
+
msgstr "Mitgliedschaftsstufe erfolgreich erstellt."
|
901 |
|
902 |
#: classes/class.swpm-membership-level.php:84
|
903 |
msgid ""
|
904 |
"Error! Nonce verification failed for membership level edit from admin end."
|
905 |
msgstr ""
|
906 |
+
"Fehler! Die einmalige Verifizierung für die Bearbeitung der Mitgliedsstufe "
|
907 |
+
"vom Admin-End ist fehlgeschlagen."
|
908 |
|
909 |
#: classes/class.swpm-membership-level.php:100
|
910 |
msgid "Membership Level Updated Successfully."
|
911 |
+
msgstr "Die Mitgliedsstufe wurde erfolgreich aktualisiert."
|
912 |
|
913 |
#: classes/class.swpm-membership-levels.php:22
|
914 |
msgid "Role"
|
916 |
|
917 |
#: classes/class.swpm-membership-levels.php:23
|
918 |
msgid "Access Valid For/Until"
|
919 |
+
msgstr "Zugang Gültig für/bis"
|
920 |
|
921 |
#: classes/class.swpm-membership-levels.php:133
|
922 |
msgid "No membership levels found."
|
926 |
msgid ""
|
927 |
"Error! Nonce verification failed for membership level delete from admin end."
|
928 |
msgstr ""
|
929 |
+
"Fehler! Einmalige Überprüfung für das Löschen der Mitgliedschaftsstufe durch "
|
930 |
+
"den Admin fehlgeschlagen."
|
931 |
|
932 |
#: classes/class.swpm-membership-levels.php:216 views/admin_members_list.php:31
|
933 |
#: views/payments/admin_all_payment_transactions.php:16 views/template-1.php:53
|
934 |
#: views/template-2.php:54
|
935 |
msgid "Search"
|
936 |
+
msgstr "Suche"
|
937 |
|
938 |
#: classes/class.swpm-membership-levels.php:261
|
939 |
msgid "Simple WP Membership::Membership Levels"
|
941 |
|
942 |
#: classes/class.swpm-membership-levels.php:266
|
943 |
msgid "Add Level"
|
944 |
+
msgstr "Mitgliedschaftsstufe hinzufügen"
|
945 |
|
946 |
#: classes/class.swpm-membership-levels.php:267
|
947 |
msgid "Manage Content Protection"
|
948 |
+
msgstr "Content-Schutz verwalten"
|
949 |
|
950 |
#: classes/class.swpm-membership-levels.php:268
|
951 |
msgid "Category Protection"
|
952 |
+
msgstr "Kategorieschutz"
|
953 |
|
954 |
#: classes/class.swpm-membership-levels.php:269
|
955 |
msgid "Post and Page Protection"
|
956 |
+
msgstr "Beitrag- und Seitenschutz"
|
957 |
|
958 |
#: classes/class.swpm-post-list.php:43 classes/class.swpm-post-list.php:52
|
959 |
#: classes/class.swpm-post-list.php:62
|
986 |
|
987 |
#: classes/class.swpm-post-list.php:125
|
988 |
msgid "Protection settings updated!"
|
989 |
+
msgstr "Schutzeinstellungen aktualisiert!"
|
990 |
|
991 |
#: classes/class.swpm-post-list.php:230
|
992 |
msgid "No items found."
|
993 |
+
msgstr "Keine Objekte gefunden."
|
994 |
|
995 |
#: classes/class.swpm-protection.php:22
|
996 |
msgid ""
|
997 |
"The category or parent category of this post is protected. You can change "
|
998 |
"the category protection settings from the "
|
999 |
msgstr ""
|
1000 |
+
"Die Kategorie oder übergeordnete Kategorie dieses Beitrags ist geschützt. "
|
1001 |
+
"Sie können die Kategorie-Schutzeinstellungen im "
|
1002 |
|
1003 |
#: classes/class.swpm-protection.php:23
|
1004 |
msgid "category protection menu"
|
1005 |
+
msgstr "Kategorie-Schutz-Menü ändern"
|
1006 |
|
1007 |
#: classes/class.swpm-settings.php:26 classes/class.swpm-settings.php:54
|
1008 |
msgid "General Settings"
|
1010 |
|
1011 |
#: classes/class.swpm-settings.php:27
|
1012 |
msgid "Payment Settings"
|
1013 |
+
msgstr "Zahlungseinstellungen"
|
1014 |
|
1015 |
#: classes/class.swpm-settings.php:28
|
1016 |
msgid "Email Settings"
|
1017 |
+
msgstr "E-Mail-Einstellungen"
|
1018 |
|
1019 |
#: classes/class.swpm-settings.php:29
|
1020 |
msgid "Tools"
|
1026 |
|
1027 |
#: classes/class.swpm-settings.php:31
|
1028 |
msgid "Addons Settings"
|
1029 |
+
msgstr "Addon Einstellungen"
|
1030 |
|
1031 |
#: classes/class.swpm-settings.php:53
|
1032 |
msgid "Plugin Documentation"
|
1034 |
|
1035 |
#: classes/class.swpm-settings.php:55
|
1036 |
msgid "Enable Free Membership"
|
1037 |
+
msgstr "Kostenlose Mitgliedschaft anbieten"
|
1038 |
|
1039 |
#: classes/class.swpm-settings.php:56
|
1040 |
msgid ""
|
1041 |
"Enable/disable registration for free membership level. When you enable this "
|
1042 |
"option, make sure to specify a free membership level ID in the field below."
|
1043 |
msgstr ""
|
1044 |
+
"Aktivieren/Deaktivieren der Registrierung für die kostenlose "
|
1045 |
+
"Mitgliedsschaftsstufe. Wenn Sie diese Option aktivieren, stellen Sie sicher, "
|
1046 |
+
"dass Sie im Feld darunter eine ID für die kostenlose Mitgliedschaftsstufe "
|
1047 |
+
"angeben."
|
1048 |
|
1049 |
#: classes/class.swpm-settings.php:57
|
1050 |
msgid "Free Membership Level ID"
|
1051 |
+
msgstr "Kostenlose Mitgliedschaftsstufe ID"
|
1052 |
|
1053 |
#: classes/class.swpm-settings.php:58
|
1054 |
msgid "Assign free membership level ID"
|
1055 |
+
msgstr "Kostenlose Mitgliedschaftsstufe ID zuweisen"
|
1056 |
|
1057 |
#: classes/class.swpm-settings.php:59
|
1058 |
msgid "Enable More Tag Protection"
|
1059 |
+
msgstr "Mehr Tag-Schutz aktivieren"
|
1060 |
|
1061 |
#: classes/class.swpm-settings.php:60
|
1062 |
msgid ""
|
1064 |
"after the More tag is protected. Anything before the more tag is teaser "
|
1065 |
"content."
|
1066 |
msgstr ""
|
1067 |
+
"Aktiviert oder deaktiviert \"mehr\" Tag-Schutz in den Beiträgen und Seiten. "
|
1068 |
+
"Alles nach dem \"Mehr\"-Tag ist geschützt. Alles vor dem Mehr-Tag ist Teaser-"
|
1069 |
+
"Inhalt."
|
1070 |
|
1071 |
#: classes/class.swpm-settings.php:61
|
1072 |
msgid "Hide Adminbar"
|
1073 |
+
msgstr "Adminbar ausblenden"
|
1074 |
|
1075 |
#: classes/class.swpm-settings.php:62
|
1076 |
msgid ""
|
1077 |
"WordPress shows an admin toolbar to the logged in users of the site. Check "
|
1078 |
"this if you want to hide that admin toolbar in the frontend of your site."
|
1079 |
msgstr ""
|
1080 |
+
"WordPress zeigt den eingeloggten Benutzern der Seite eine Admin-Toolbar. "
|
1081 |
+
"Aktivieren Sie diese Option, wenn Sie diese Admin-Toolbar im Frontend Ihrer "
|
1082 |
+
"Seite ausblenden möchten."
|
1083 |
|
1084 |
#: classes/class.swpm-settings.php:63
|
1085 |
msgid "Show Adminbar to Admin"
|
1086 |
+
msgstr "Adminbar den Admin-Benutzern anzeigen"
|
1087 |
|
1088 |
#: classes/class.swpm-settings.php:64
|
1089 |
msgid ""
|
1090 |
"Use this option if you want to show the admin toolbar to admin users only. "
|
1091 |
"The admin toolbar will be hidden for all other users."
|
1092 |
msgstr ""
|
1093 |
+
"Verwenden Sie diese Option, wenn Sie die Admin-Toolbar nur für Admin-"
|
1094 |
+
"Benutzer anzeigen möchten. Die Admin-Toolbar wird für alle anderen Benutzer "
|
1095 |
+
"ausgeblendet."
|
1096 |
|
1097 |
#: classes/class.swpm-settings.php:65
|
1098 |
msgid "Disable Access to WP Dashboard"
|
1099 |
+
msgstr "Zugang zum WP-Dashboard deaktivieren"
|
1100 |
|
1101 |
#: classes/class.swpm-settings.php:66
|
1102 |
msgid ""
|
1104 |
"access his profile from the wp dashbaord. Using this option will prevent any "
|
1105 |
"non admin users from going to the wp dashboard."
|
1106 |
msgstr ""
|
1107 |
+
"WordPress ermöglicht es einem Standard-WP-Benutzer, über die WP-Admin-URL "
|
1108 |
+
"auf sein Profil über das WP-Dashbaord zuzugreifen. Mit dieser Option wird "
|
1109 |
+
"verhindert, dass Nicht-Admin-Benutzer auf das WP-Dashboard gehen können."
|
|
|
1110 |
|
1111 |
#: classes/class.swpm-settings.php:68 classes/class.swpm-settings.php:242
|
1112 |
msgid "Default Account Status"
|
1113 |
+
msgstr "Standardmäßiger Kontostatus"
|
1114 |
|
1115 |
#: classes/class.swpm-settings.php:71
|
1116 |
msgid ""
|
1117 |
"Select the default account status for newly registered users. If you want to "
|
1118 |
"manually approve the members then you can set the status to \"Pending\"."
|
1119 |
msgstr ""
|
1120 |
+
"Wählen Sie den Standardkontostatus für neu registrierte Benutzer. Wenn Sie "
|
1121 |
+
"die Mitglieder manuell genehmigen möchten, können Sie den Status auf "
|
1122 |
+
"\"Ausstehend\" setzen."
|
1123 |
|
1124 |
#: classes/class.swpm-settings.php:73
|
1125 |
msgid "Members Must be Logged in to Comment"
|
1131 |
"Enable this option if you only want the members of the site to be able to "
|
1132 |
"post a comment."
|
1133 |
msgstr ""
|
1134 |
+
"Aktivieren Sie diese Option, wenn Sie wollen, dass nur die Mitglieder der "
|
1135 |
+
"Seite einen Kommentar abgeben können."
|
1136 |
|
1137 |
#: classes/class.swpm-settings.php:83
|
1138 |
msgid "Pages Settings"
|
1139 |
+
msgstr "Seiten Einstellungen"
|
1140 |
|
1141 |
#: classes/class.swpm-settings.php:84
|
1142 |
msgid "Login Page URL"
|
1143 |
+
msgstr "URL der Anmeldeseite"
|
1144 |
|
1145 |
#: classes/class.swpm-settings.php:86
|
1146 |
msgid "Registration Page URL"
|
1147 |
+
msgstr "URL der Registrierungsseite"
|
1148 |
|
1149 |
#: classes/class.swpm-settings.php:88
|
1150 |
msgid "Join Us Page URL"
|
1151 |
+
msgstr "URL der Join-Us Seite"
|
1152 |
|
1153 |
#: classes/class.swpm-settings.php:90
|
1154 |
msgid "Edit Profile Page URL"
|
1155 |
+
msgstr "URL der Profilseite bearbeiten"
|
1156 |
|
1157 |
#: classes/class.swpm-settings.php:92
|
1158 |
msgid "Password Reset Page URL"
|
1159 |
+
msgstr "URL der \"Passwort zurücksetzen\" Seite"
|
1160 |
|
1161 |
#: classes/class.swpm-settings.php:95
|
1162 |
msgid "Test & Debug Settings"
|
1172 |
" This can be useful when troubleshooting an issue. Turn it off and reset the "
|
1173 |
"log files after the troubleshooting is complete."
|
1174 |
msgstr ""
|
1175 |
+
" Dies kann bei der Fehlersuche und -behebung nützlich sein. Schalten Sie es "
|
1176 |
+
"aus und setzen Sie die Protokolldateien zurück, nachdem die Fehlerbehebung "
|
1177 |
+
"abgeschlossen ist."
|
1178 |
|
1179 |
#: classes/class.swpm-settings.php:100
|
1180 |
msgid "View general debug log file by clicking "
|
1181 |
+
msgstr "Allgemeine Debug-Protokolldatei anzeigen durch Klicken auf "
|
1182 |
|
1183 |
#: classes/class.swpm-settings.php:100 classes/class.swpm-settings.php:101
|
1184 |
#: classes/class.swpm-settings.php:102
|
1195 |
|
1196 |
#: classes/class.swpm-settings.php:103
|
1197 |
msgid "Enable Debug"
|
1198 |
+
msgstr "Debugging aktivieren"
|
1199 |
|
1200 |
#: classes/class.swpm-settings.php:105
|
1201 |
msgid "Enable Sandbox Testing"
|
1204 |
#: classes/class.swpm-settings.php:106
|
1205 |
msgid "Enable this option if you want to do sandbox payment testing."
|
1206 |
msgstr ""
|
1207 |
+
"Aktivieren Sie diese Option, wenn Sie Sandbox-Zahlungstests durchführen "
|
1208 |
+
"möchten."
|
1209 |
|
1210 |
#: classes/class.swpm-settings.php:119
|
1211 |
msgid "Email Settings Overview"
|
1212 |
+
msgstr "Übersicht E-Mail-Einstellungen"
|
1213 |
|
1214 |
#: classes/class.swpm-settings.php:120
|
1215 |
msgid "Email Misc. Settings"
|
1216 |
+
msgstr "Sonstige E-Mail Einstellungen"
|
1217 |
|
1218 |
#: classes/class.swpm-settings.php:122
|
1219 |
msgid "From Email Address"
|
1220 |
+
msgstr "Von E-Mail Adresse"
|
1221 |
|
1222 |
#: classes/class.swpm-settings.php:126
|
1223 |
msgid "Email Settings (Prompt to Complete Registration )"
|
1224 |
+
msgstr "E-Mail-Einstellungen (Aufforderung zum Abschließen der Registrierung)"
|
1225 |
|
1226 |
#: classes/class.swpm-settings.php:127 classes/class.swpm-settings.php:140
|
1227 |
#: classes/class.swpm-settings.php:158 classes/class.swpm-settings.php:163
|
1228 |
#: classes/class.swpm-settings.php:168 classes/class.swpm-settings.php:173
|
1229 |
msgid "Email Subject"
|
1230 |
+
msgstr "E-Mail-Betreff"
|
1231 |
|
1232 |
#: classes/class.swpm-settings.php:129 classes/class.swpm-settings.php:142
|
1233 |
#: classes/class.swpm-settings.php:159 classes/class.swpm-settings.php:164
|
1234 |
#: classes/class.swpm-settings.php:169 classes/class.swpm-settings.php:174
|
1235 |
msgid "Email Body"
|
1236 |
+
msgstr "E-Mail-Text"
|
1237 |
|
1238 |
#: classes/class.swpm-settings.php:133
|
1239 |
msgid ""
|
1240 |
"Enter the email address where you want the admin notification email to be "
|
1241 |
"sent to."
|
1242 |
msgstr ""
|
1243 |
+
"Geben Sie die E-Mail Adresse ein, an die die Admin-Benachrichtigungs-E-Mail "
|
1244 |
+
"gesendet werden soll."
|
1245 |
|
1246 |
#: classes/class.swpm-settings.php:134
|
1247 |
msgid ""
|
1248 |
" You can put multiple email addresses separated by comma (,) in the above "
|
1249 |
"field to send the notification to multiple email addresses."
|
1250 |
msgstr ""
|
1251 |
+
" Sie können mehrere durch Komma (,) getrennte E-Mail Adressen in das obige "
|
1252 |
+
"Feld eingeben, um die Benachrichtigung an mehrere E-Mail Adressen zu senden."
|
|
|
1253 |
|
1254 |
#: classes/class.swpm-settings.php:136
|
1255 |
msgid "Enter the subject for the admin notification email."
|
1261 |
"membership registration. Only works if you have enabled the \"Send "
|
1262 |
"Notification to Admin\" option above."
|
1263 |
msgstr ""
|
1264 |
+
"Diese E-Mail wird an den Admin geschickt, wenn ein neuer Benutzer die "
|
1265 |
+
"Registrierung der Mitgliedschaft abschließt. Funktioniert nur, wenn Sie oben "
|
1266 |
+
"die Option \"Benachrichtigung an den Admin senden\" aktiviert haben."
|
1267 |
|
1268 |
#: classes/class.swpm-settings.php:139
|
1269 |
msgid "Email Settings (Registration Complete)"
|
1270 |
+
msgstr "E-Mail-Einstellungen (Registrierung abgeschlossen)"
|
1271 |
|
1272 |
#: classes/class.swpm-settings.php:144
|
1273 |
msgid "Send Notification to Admin"
|
1278 |
"Enable this option if you want the admin to receive a notification when a "
|
1279 |
"member registers."
|
1280 |
msgstr ""
|
1281 |
+
"Aktivieren Sie diese Option, wenn Sie möchten, dass der Admin eine "
|
1282 |
+
"Benachrichtigung erhält, wenn sich ein Mitglied registriert."
|
1283 |
|
1284 |
#: classes/class.swpm-settings.php:146
|
1285 |
msgid "Admin Email Address"
|
1286 |
+
msgstr "Admin-E-Mail Adresse"
|
1287 |
|
1288 |
#: classes/class.swpm-settings.php:148
|
1289 |
msgid "Admin Notification Email Subject"
|
1290 |
+
msgstr "Admin-Benachrichtigungs-E-Mail-Betreff"
|
1291 |
|
1292 |
#: classes/class.swpm-settings.php:150
|
1293 |
msgid "Admin Notification Email Body"
|
1294 |
+
msgstr "Text der Admin-Benachrichtigungs-E-Mail"
|
1295 |
|
1296 |
#: classes/class.swpm-settings.php:153
|
1297 |
msgid "Send Email to Member When Added via Admin Dashboard"
|
1298 |
msgstr ""
|
1299 |
+
"E-Mail an Mitglied senden, wenn er über das Admin Dashboard hinzugefügt wurde"
|
|
|
1300 |
|
1301 |
#: classes/class.swpm-settings.php:157
|
1302 |
msgid "Email Settings (Password Reset)"
|
1304 |
|
1305 |
#: classes/class.swpm-settings.php:162
|
1306 |
msgid " Email Settings (Account Upgrade Notification)"
|
1307 |
+
msgstr " E-Mail-Einstellungen (Konto-Upgrade-Benachrichtigung)"
|
1308 |
|
1309 |
#: classes/class.swpm-settings.php:167
|
1310 |
msgid " Email Settings (Bulk Account Activate Notification)"
|
1311 |
+
msgstr " E-Mail-Einstellungen (Massenaktivierung Account Benachrichtigung)"
|
1312 |
|
1313 |
#: classes/class.swpm-settings.php:172
|
1314 |
msgid " Email Settings (Email Activation)"
|
1315 |
+
msgstr " E-Mail-Einstellungen (E-Mail-Aktivierung)"
|
1316 |
|
1317 |
#: classes/class.swpm-settings.php:189
|
1318 |
msgid "Enable Expired Account Login"
|
1319 |
+
msgstr "Anmeldung für abgelaufene Konten aktivieren"
|
1320 |
|
1321 |
#: classes/class.swpm-settings.php:190
|
1322 |
msgid ""
|
1324 |
"be able to view any protected content. This allows them to easily renew "
|
1325 |
"their account by making another payment."
|
1326 |
msgstr ""
|
1327 |
+
"Wenn diese Funktion aktiviert ist, können sich abgelaufene Mitglieder zwar "
|
1328 |
+
"in das System einloggen, aber keine geschützten Inhalte mehr sehen. Dies "
|
1329 |
+
"ermöglicht es ihnen, ihr Konto einfach durch eine weitere Zahlung zu "
|
1330 |
+
"erneuern."
|
1331 |
|
1332 |
#: classes/class.swpm-settings.php:192
|
1333 |
msgid "Membership Renewal URL"
|
1334 |
+
msgstr "URL zur Mitgliedschaftserneuerung"
|
1335 |
|
1336 |
#: classes/class.swpm-settings.php:193
|
1337 |
msgid ""
|
1339 |
"membership-plugin.com/creating-membership-renewal-button/\" target=\"_blank"
|
1340 |
"\">this documentation</a> to learn how to create a renewal page."
|
1341 |
msgstr ""
|
1342 |
+
"Sie können eine Erneuerungsseite für Ihre Website erstellen. Lesen Sie <a "
|
1343 |
+
"href=\"https://simple-membership-plugin.com/creating-membership-renewal-"
|
1344 |
+
"button/\" target=\"_blank\">diese Dokumentation</a> um zu erfahren, wie Sie "
|
1345 |
+
"eine Erneuerungsseite erstellen können."
|
|
|
1346 |
|
1347 |
#: classes/class.swpm-settings.php:195
|
1348 |
msgid "After Registration Redirect URL"
|
1356 |
"\"_blank\">this documentation</a> to learn how to setup after registration "
|
1357 |
"redirect."
|
1358 |
msgstr ""
|
1359 |
+
"Sie können hier eine URL eingeben, um die Mitglieder nach dem Absenden des "
|
1360 |
+
"Anmeldeformulars auf diese Seite umzuleiten. Lesen Sie <a href=\"https://"
|
1361 |
+
"simple-membership-plugin.com/configure-after-registration-redirect-for-"
|
1362 |
+
"members/\" target=\"_blank\">diese Dokumentation</a> um zu sehen, wie Sie "
|
1363 |
+
"nach der Registrierung auf diese Seite weitergeleitet werden."
|
1364 |
|
1365 |
#: classes/class.swpm-settings.php:198
|
1366 |
msgid "Enable Auto Login After Registration"
|
1367 |
+
msgstr "Automatische Anmeldung nach der Registrierung aktivieren"
|
1368 |
|
1369 |
#: classes/class.swpm-settings.php:199
|
1370 |
msgid ""
|
1375 |
"configure-auto-login-after-registration-members/\" target=\"_blank\">this "
|
1376 |
"documentation</a> to learn more."
|
1377 |
msgstr ""
|
1378 |
+
"Benutzen Sie diese Option, wenn Sie möchten, dass die Mitglieder automatisch "
|
1379 |
+
"eingeloggt sind, wenn sie die Registrierung abgeschlossen haben. Diese "
|
1380 |
+
"Option überschreibt die Weiterleitung nach der Registrierung und löst "
|
1381 |
+
"stattdessen die Weiterleitung nach dem Login aus. Lesen Sie <a href="
|
1382 |
+
"\"https://simple-membership-plugin.com/configure-auto-login-after-"
|
1383 |
+
"registration-members/\" target=\"_blank\">diese Dokumentation</a> um mehr zu "
|
1384 |
+
"erfahren."
|
1385 |
|
1386 |
#: classes/class.swpm-settings.php:201
|
1387 |
msgid "After Logout Redirect URL"
|
1388 |
+
msgstr "URL, zu der nach dem Logout weitergeleitet wird"
|
|
|
|
|
1389 |
|
1390 |
#: classes/class.swpm-settings.php:202
|
1391 |
msgid ""
|
1392 |
"You can enter an URL here to redirect the members to this page after they "
|
1393 |
"click the logout link to logout from your site."
|
1394 |
msgstr ""
|
1395 |
+
"Sie können hier eine URL angeben, auf die Mitglieder weitergeleitet werden, "
|
1396 |
"nachdem Sie den Logout Link zum Ausloggen angeklickt haben."
|
1397 |
|
1398 |
#: classes/class.swpm-settings.php:204
|
1399 |
msgid "Logout Member on Browser Close"
|
1400 |
+
msgstr "Mitglied beim Schließen des Browsers abmelden"
|
1401 |
|
1402 |
#: classes/class.swpm-settings.php:205
|
1403 |
msgid ""
|
1405 |
"when he closes the browser."
|
1406 |
msgstr ""
|
1407 |
"Aktivieren Sie diese Option, wenn Sie möchten, dass das Mitglied aus dem "
|
1408 |
+
"Konto abgemeldet wird, wenn es den Browser schließt."
|
1409 |
|
1410 |
#: classes/class.swpm-settings.php:207
|
1411 |
msgid "Allow Account Deletion"
|
1413 |
|
1414 |
#: classes/class.swpm-settings.php:208
|
1415 |
msgid "Allow users to delete their accounts."
|
1416 |
+
msgstr "Erlauben Sie Benutzern, ihre Konten zu löschen."
|
1417 |
|
1418 |
#: classes/class.swpm-settings.php:210
|
1419 |
msgid "Force Strong Password for Members"
|
1420 |
+
msgstr "Sicheres Passwort für Mitglieder erzwingen"
|
1421 |
|
1422 |
#: classes/class.swpm-settings.php:211
|
1423 |
msgid ""
|
1424 |
"Enable this if you want the users to be forced to use a strong password for "
|
1425 |
"their accounts."
|
1426 |
msgstr ""
|
1427 |
+
"Aktivieren Sie diese Option, wenn Sie möchten, dass die Benutzer gezwungen "
|
1428 |
+
"werden, ein sicheres Passwort für ihre Konten zu verwenden."
|
1429 |
|
1430 |
#: classes/class.swpm-settings.php:213
|
1431 |
msgid "Use WordPress Timezone"
|
1432 |
+
msgstr "WordPress Zeitzone verwenden"
|
1433 |
|
1434 |
#: classes/class.swpm-settings.php:214
|
1435 |
msgid ""
|
1436 |
"Use this option if you want to use the timezone value specified in your "
|
1437 |
"WordPress General Settings interface."
|
1438 |
msgstr ""
|
1439 |
+
"Verwenden Sie diese Option, wenn Sie den in den Allgemeinen Einstellungen "
|
1440 |
+
"von WordPress angegebenen Zeitzonenwert verwenden möchten."
|
1441 |
|
1442 |
#: classes/class.swpm-settings.php:216
|
1443 |
msgid "Auto Delete Pending Account"
|
1444 |
+
msgstr "Automatisches Löschen eines ausstehenden Kontos"
|
1445 |
|
1446 |
#: classes/class.swpm-settings.php:219
|
1447 |
msgid "Select how long you want to keep \"pending\" account."
|
1448 |
msgstr ""
|
1449 |
+
"Wählen Sie aus, wie lange Sie das \" ausstehende\" Konto behalten wollen."
|
1450 |
|
1451 |
#: classes/class.swpm-settings.php:221
|
1452 |
msgid "Admin Dashboard Access Permission"
|
1453 |
+
msgstr "Admin Dashboard Zugriffsberechtigung"
|
1454 |
|
1455 |
#: classes/class.swpm-settings.php:224
|
1456 |
msgid ""
|
1458 |
"plugin). You can allow users with other WP user role to access the SWPM "
|
1459 |
"admin dashboard by selecting a value here."
|
1460 |
msgstr ""
|
1461 |
+
"Das SWPM-Admin-Dashboard ist nur für Admin-Benutzer zugänglich (wie jedes "
|
1462 |
+
"andere Plugin auch). Sie können Benutzern mit anderen WP-Benutzerrollen den "
|
1463 |
+
"Zugriff auf das SWPM-Admin-Dashboard erlauben, indem Sie hier einen Wert "
|
1464 |
+
"auswählen."
|
1465 |
|
1466 |
#: classes/class.swpm-settings.php:226
|
1467 |
msgid "Force WP User Synchronization"
|
1468 |
+
msgstr "WP-Benutzersynchronisation erzwingen"
|
1469 |
|
1470 |
#: classes/class.swpm-settings.php:227
|
1471 |
msgid ""
|
1473 |
"with WP user account. This can be useful if you are using another plugin "
|
1474 |
"that uses WP user records. For example: bbPress plugin."
|
1475 |
msgstr ""
|
1476 |
+
"Aktivieren Sie diese Option, wenn Sie erzwingen möchten, dass die Anmeldung "
|
1477 |
+
"des Mitglieds mit dem WP-Benutzerkonto synchronisiert wird. Dies kann "
|
1478 |
+
"nützlich sein, wenn Sie ein anderes Plugin verwenden, das WP-"
|
1479 |
+
"Benutzereinträge verwendet. Zum Beispiel: bbPress-Plugin."
|
1480 |
|
1481 |
#: classes/class.swpm-settings.php:230
|
1482 |
msgid "Create Member Accounts for New WP Users"
|
1483 |
+
msgstr "Mitgliedskonten für neue WP-Benutzer anlegen"
|
1484 |
|
1485 |
#: classes/class.swpm-settings.php:232
|
1486 |
msgid "Enable Auto Create Member Accounts"
|
1487 |
+
msgstr "Automatisches Erstellen von Mitgliedskonten aktivieren"
|
1488 |
|
1489 |
#: classes/class.swpm-settings.php:233
|
1490 |
msgid ""
|
1491 |
"Enable this option to automatically create member accounts for any new WP "
|
1492 |
"user that is created by another plugin."
|
1493 |
msgstr ""
|
1494 |
+
"Aktivieren Sie diese Option, um automatisch Mitgliedskonten für jeden neuen "
|
1495 |
+
"WP-Benutzer zu erstellen, der von einem anderen Plugin erstellt wird."
|
|
|
1496 |
|
1497 |
#: classes/class.swpm-settings.php:236
|
1498 |
msgid "Default Membership Level"
|
1499 |
+
msgstr "Standard-Mitgliedschaftsstufe"
|
1500 |
|
1501 |
#: classes/class.swpm-settings.php:239
|
1502 |
msgid ""
|
1503 |
"When automatically creating a member account using this feature, the "
|
1504 |
"membership level of the user will be set to the one you specify here."
|
1505 |
msgstr ""
|
1506 |
+
"Bei der automatischen Erstellung eines Mitgliedskontos mit dieser Funktion "
|
1507 |
+
"wird die Mitgliedschaftsstufe des Benutzers auf die von Ihnen hier "
|
1508 |
+
"angegebene eingestellt."
|
1509 |
|
1510 |
#: classes/class.swpm-settings.php:245
|
1511 |
msgid ""
|
1513 |
"membership account status of the user will be set to the one you specify "
|
1514 |
"here."
|
1515 |
msgstr ""
|
1516 |
+
"Bei der automatischen Erstellung eines Mitgliedskontos mit dieser Funktion "
|
1517 |
+
"wird der Status des Mitgliedskontos des Benutzers auf den von Ihnen hier "
|
1518 |
+
"angegebenen Status gesetzt."
|
1519 |
|
1520 |
#: classes/class.swpm-settings.php:247
|
1521 |
msgid "Payment Notification Forward URL"
|
1528 |
"forward the payment notification to an external script for further "
|
1529 |
"processing."
|
1530 |
msgstr ""
|
1531 |
+
"Sie können hier eine URL eingeben, um die Zahlungsbenachrichtigung "
|
1532 |
+
"weiterzuleiten, nachdem die Zahlung der Mitgliedschaft durch dieses Plugin "
|
1533 |
+
"verarbeitet wurde. Nützlich, wenn Sie die Zahlungsbenachrichtigung an ein "
|
1534 |
+
"externes Skript zur weiteren Verarbeitung weiterleiten möchten."
|
1535 |
|
1536 |
#: classes/class.swpm-settings.php:251 views/add.php:65
|
1537 |
msgid "Terms and Conditions"
|
1538 |
+
msgstr "Allgemeine Geschäftsbedingungen aktivieren"
|
1539 |
|
1540 |
#: classes/class.swpm-settings.php:253
|
1541 |
msgid "Enable Terms and Conditions"
|
1556 |
"Enter the URL of your terms and conditions page. You can create a WordPress "
|
1557 |
"page and specify your terms in there then specify the URL of that page in "
|
1558 |
"the above field."
|
1559 |
+
msgstr ""
|
1560 |
+
"Geben Sie die URL Ihrer AGB-Seite ein. Sie können eine WordPress-Seite "
|
1561 |
+
"erstellen und dort Ihre Bedingungen angeben, dann geben Sie die URL dieser "
|
1562 |
+
"Seite im obigen Feld an."
|
1563 |
|
1564 |
#: classes/class.swpm-settings.php:257
|
1565 |
msgid "Enable Privacy Policy"
|
1568 |
#: classes/class.swpm-settings.php:258
|
1569 |
msgid "Users must accept it before they can complete the registration."
|
1570 |
msgstr ""
|
1571 |
+
"Die Benutzer müssen diese akzeptieren, bevor sie die Registrierung "
|
1572 |
+
"abschließen können."
|
1573 |
|
1574 |
#: classes/class.swpm-settings.php:259
|
1575 |
msgid "Privacy Policy Page URL"
|
1577 |
|
1578 |
#: classes/class.swpm-settings.php:260
|
1579 |
msgid "Enter the URL of your privacy policy page."
|
1580 |
+
msgstr "Geben Sie die URL Ihrer Datenschutzerklärung ein."
|
1581 |
|
1582 |
#: classes/class.swpm-settings.php:350 classes/class.swpm-settings.php:396
|
1583 |
#: classes/class.swpm-settings.php:425
|
1590 |
|
1591 |
#: classes/class.swpm-settings.php:359
|
1592 |
msgid "Page Setup and URL Related settings."
|
1593 |
+
msgstr "Seiteneinrichtung und URL-bezogene Einstellungen."
|
1594 |
|
1595 |
#: classes/class.swpm-settings.php:362
|
1596 |
msgid ""
|
1597 |
"The following pages are required for the plugin to function correctly. These "
|
1598 |
"pages were automatically created by the plugin at install time."
|
1599 |
msgstr ""
|
1600 |
+
"Die folgenden Seiten werden für die korrekte Funktion des Plugins benötigt. "
|
1601 |
+
"Diese Seiten wurden vom Plugin bei der Installation automatisch erstellt."
|
|
|
1602 |
|
1603 |
#: classes/class.swpm-settings.php:367
|
1604 |
msgid "Testing and Debug Related Settings."
|
1605 |
+
msgstr "Testen und Debuggen verwandter Einstellungen."
|
1606 |
|
1607 |
#: classes/class.swpm-settings.php:371
|
1608 |
msgid ""
|
1609 |
"This email will be sent to your users when they complete the registration "
|
1610 |
"and become a member."
|
1611 |
msgstr ""
|
1612 |
+
"Diese E-Mail wird an Ihre Benutzer gesendet, wenn diese die Registrierung "
|
1613 |
+
"abschließen und Mitglied werden."
|
1614 |
|
1615 |
#: classes/class.swpm-settings.php:375
|
1616 |
msgid ""
|
1617 |
"This email will be sent to your users when they use the password reset "
|
1618 |
"functionality."
|
1619 |
msgstr ""
|
1620 |
+
"Diese E-Mail wird an Ihre Benutzer gesendet, wenn diese die Funktion zum "
|
1621 |
+
"Zurücksetzen des Passworts verwenden."
|
1622 |
|
1623 |
#: classes/class.swpm-settings.php:381
|
1624 |
msgid ""
|
1626 |
"members for various actions. The default settings should be good to get your "
|
1627 |
"started."
|
1628 |
msgstr ""
|
1629 |
+
"Mit dieser Schnittstelle können Sie die verschiedenen E-Mails, die an Ihre "
|
1630 |
+
"Mitglieder gesendet werden, für verschiedene Aktionen anpassen. Die "
|
1631 |
+
"Standardeinstellungen sollten für den Anfang gut sein."
|
1632 |
|
1633 |
#: classes/class.swpm-settings.php:385 views/admin_tools_settings.php:82
|
1634 |
msgid "This documentation"
|
1635 |
+
msgstr "Diese Dokumentation"
|
1636 |
|
1637 |
#: classes/class.swpm-settings.php:386
|
1638 |
msgid ""
|
1639 |
" explains what email merge tags you can use in the email body field to "
|
1640 |
"customize it (if you want to)."
|
1641 |
msgstr ""
|
1642 |
+
" erklärt, welche E-Mail-Merge-Tags Sie im Feld für den E-Mail-Text verwenden "
|
1643 |
+
"können, um ihn anzupassen (falls Sie dies wünschen)."
|
1644 |
|
1645 |
#: classes/class.swpm-settings.php:399
|
1646 |
msgid "Settings in this section apply to all emails."
|
1651 |
"This email will be sent to your users after account upgrade (when an "
|
1652 |
"existing member pays for a new membership level)."
|
1653 |
msgstr ""
|
1654 |
+
"Diese E-Mail wird an Ihre Benutzer nach der Aktualisierung Ihres Kontos "
|
1655 |
+
"gesendet (wenn ein bestehendes Mitglied für eine neue Mitgliedsstufe "
|
1656 |
+
"bezahlt)."
|
1657 |
|
1658 |
#: classes/class.swpm-settings.php:407
|
1659 |
msgid ""
|
1660 |
"This email will be sent to your members when you use the bulk account "
|
1661 |
"activate and notify action."
|
1662 |
msgstr ""
|
1663 |
+
"Diese E-Mail wird an Ihre Mitglieder gesendet, wenn Sie die "
|
1664 |
+
"Massenkontoaktivierung und Benachrichtigungsaktion verwenden."
|
1665 |
|
1666 |
#: classes/class.swpm-settings.php:408
|
1667 |
msgid ""
|
1668 |
" You cannot use email merge tags in this email. You can only use generic "
|
1669 |
"text."
|
1670 |
msgstr ""
|
1671 |
+
" Sie können keine E-Mail-Merge-Tags in dieser E-Mail verwenden. Sie können "
|
1672 |
+
"nur generischen Text verwenden."
|
1673 |
|
1674 |
#: classes/class.swpm-settings.php:413
|
1675 |
msgid ""
|
1684 |
"This email will be sent to prompt users to complete registration after the "
|
1685 |
"payment."
|
1686 |
msgstr ""
|
1687 |
+
"Diese E-Mail wird an die Benutzer gesendet, um sie aufzufordern, die "
|
1688 |
+
"Registrierung nach der Zahlung abzuschließen."
|
1689 |
|
1690 |
#: classes/class.swpm-settings.php:428
|
1691 |
msgid "This page allows you to configure some advanced features of the plugin."
|
1692 |
msgstr ""
|
1693 |
+
"Diese Seite erlaubt es Ihnen, einige erweiterte Funktionen des Plugins zu "
|
1694 |
"konfigurieren."
|
1695 |
|
1696 |
#: classes/class.swpm-settings.php:432
|
1700 |
"you are using another plugin that creates WP user records and you want them "
|
1701 |
"to be recognized in the membership plugin."
|
1702 |
msgstr ""
|
1703 |
+
"In diesem Abschnitt können Sie die automatische Erstellung von "
|
1704 |
+
"Mitgliedskonten konfigurieren, wenn neue WP-Benutzereinträge von einem "
|
1705 |
+
"anderen Plugin erstellt werden. Dies kann nützlich sein, wenn Sie ein "
|
1706 |
+
"anderes Plugin verwenden, das WP-Benutzereinträge erstellt und Sie möchten, "
|
1707 |
+
"dass diese im Mitgliedschafts-Plugin erkannt werden."
|
1708 |
|
1709 |
#: classes/class.swpm-settings.php:436
|
1710 |
msgid ""
|
1711 |
"This section allows you to configure terms and conditions and privacy policy "
|
1712 |
"that users must accept at registration time."
|
1713 |
msgstr ""
|
1714 |
+
"In diesem Abschnitt können Sie die Datenschutzerklärung konfigurieren, die "
|
1715 |
+
"Benutzer bei der Registrierung akzeptieren müssen."
|
|
|
1716 |
|
1717 |
#: classes/class.swpm-settings.php:565
|
1718 |
msgid "Simple WP Membership::Settings"
|
1723 |
#: classes/class.swpm-utils-member.php:52
|
1724 |
#: classes/class.swpm-utils-member.php:62
|
1725 |
msgid "User is not logged in."
|
1726 |
+
msgstr "Der Benutzer ist nicht eingeloggt."
|
1727 |
|
1728 |
#: classes/class.swpm-utils-member.php:80
|
1729 |
msgid "No Expiry"
|
1735 |
|
1736 |
#: classes/class.swpm-utils-misc.php:73
|
1737 |
msgid "Member Login"
|
1738 |
+
msgstr "Mitglieder Anmeldung"
|
1739 |
|
1740 |
#: classes/class.swpm-utils-misc.php:96
|
1741 |
#: classes/shortcode-related/class.swpm-shortcodes-handler.php:117
|
1751 |
msgid ""
|
1752 |
"You will be automatically redirected in a few seconds. If not, please %s."
|
1753 |
msgstr ""
|
1754 |
+
"Sie werden in wenigen Sekunden automatisch weitergeleitet. Wenn nicht, bitte "
|
1755 |
+
"%s."
|
1756 |
|
1757 |
#: classes/class.swpm-utils-misc.php:172
|
1758 |
msgid "Action Status"
|
1760 |
|
1761 |
#: classes/class.swpm-utils-misc.php:274
|
1762 |
msgid "Not a Member?"
|
1763 |
+
msgstr "Kein Mitglied?"
|
1764 |
|
1765 |
#: classes/class.swpm-utils-misc.php:285
|
1766 |
msgid "renew"
|
1768 |
|
1769 |
#: classes/class.swpm-utils-misc.php:285
|
1770 |
msgid " your account to gain access to this content."
|
1771 |
+
msgstr " ihr Konto, um Zugang zu diesem Inhalt zu erhalten."
|
1772 |
|
1773 |
#: classes/class.swpm-utils-misc.php:343 classes/class.swpm-utils-misc.php:349
|
1774 |
msgid "Error! This action ("
|
1776 |
|
1777 |
#: classes/class.swpm-utils-misc.php:421
|
1778 |
msgid "(Please Select)"
|
1779 |
+
msgstr "(Bitte wählen Sie)"
|
1780 |
|
1781 |
#: classes/class.swpm-utils-template.php:38
|
1782 |
msgid "Error! Failed to find a template path for the specified template: "
|
1783 |
msgstr ""
|
1784 |
+
"Fehler . Es konnte kein Vorlagenpfad für die angegebene Vorlage gefunden "
|
1785 |
+
"werden: "
|
1786 |
|
1787 |
#: classes/class.swpm-utils.php:101
|
1788 |
msgid "Never"
|
1798 |
|
1799 |
#: classes/class.swpm-utils.php:118 views/admin_members_list.php:21
|
1800 |
msgid "Activation Required"
|
1801 |
+
msgstr "Aktivierung erforderlich"
|
1802 |
|
1803 |
#: classes/class.swpm-utils.php:119 views/admin_members_list.php:22
|
1804 |
msgid "Pending"
|
1814 |
|
1815 |
#: classes/admin-includes/class.swpm-payment-buttons-list-table.php:75
|
1816 |
msgid "Payment Button ID"
|
1817 |
+
msgstr "Zahlungs-Button ID"
|
1818 |
|
1819 |
#: classes/admin-includes/class.swpm-payment-buttons-list-table.php:76
|
1820 |
msgid "Payment Button Title"
|
1821 |
+
msgstr "Zahlungs-Button Titel"
|
1822 |
|
1823 |
#: classes/admin-includes/class.swpm-payment-buttons-list-table.php:77
|
1824 |
msgid "Membership Level ID"
|
1825 |
+
msgstr "Mitgliedschaftsstufe ID"
|
1826 |
|
1827 |
#: classes/admin-includes/class.swpm-payment-buttons-list-table.php:78
|
1828 |
msgid "Button Type"
|
1840 |
|
1841 |
#: classes/admin-includes/class.swpm-payments-admin-menu.php:21
|
1842 |
msgid "Simple Membership::Payments"
|
1843 |
+
msgstr "Simple Membership::Zahlungen"
|
1844 |
|
1845 |
#: classes/admin-includes/class.swpm-payments-admin-menu.php:25
|
1846 |
msgid "Transactions"
|
1848 |
|
1849 |
#: classes/admin-includes/class.swpm-payments-admin-menu.php:26
|
1850 |
msgid "Manage Payment Buttons"
|
1851 |
+
msgstr "Zahlungs-Buttons verwalten"
|
1852 |
|
1853 |
#: classes/admin-includes/class.swpm-payments-admin-menu.php:27
|
1854 |
#: views/payments/admin_payment_buttons.php:27
|
1855 |
msgid "Create New Button"
|
1856 |
+
msgstr "Neue Button erstellen"
|
1857 |
|
1858 |
#: classes/admin-includes/class.swpm-payments-list-table.php:57
|
1859 |
#: views/template-1.php:95 views/template-2.php:97
|
1879 |
|
1880 |
#: classes/admin-includes/class.swpm-payments-list-table.php:83
|
1881 |
msgid "Subscriber ID"
|
1882 |
+
msgstr "Teilnehmer-ID"
|
1883 |
|
1884 |
#: classes/admin-includes/class.swpm-payments-list-table.php:84
|
1885 |
msgid "Amount"
|
1886 |
+
msgstr "Betrag"
|
1887 |
|
1888 |
#: classes/shortcode-related/class.swpm-shortcodes-handler.php:60
|
1889 |
msgid "Your membership profile will be updated to reflect the payment."
|
1890 |
+
msgstr "Ihr Mitgliedsprofil wird entsprechend der Zahlung aktualisiert."
|
1891 |
|
1892 |
#: classes/shortcode-related/class.swpm-shortcodes-handler.php:61
|
1893 |
msgid "Your profile username: "
|
1894 |
+
msgstr "Ihr Profil-Benutzername: "
|
1895 |
|
1896 |
#: classes/shortcode-related/class.swpm-shortcodes-handler.php:73
|
1897 |
msgid "Click on the following link to complete the registration."
|
1900 |
|
1901 |
#: classes/shortcode-related/class.swpm-shortcodes-handler.php:74
|
1902 |
msgid "Click here to complete your paid registration"
|
1903 |
+
msgstr "Klicken Sie hier, um Ihre kostenpflichtige Registrierung abzuschließen"
|
1904 |
|
1905 |
#: classes/shortcode-related/class.swpm-shortcodes-handler.php:79
|
1906 |
msgid ""
|
1908 |
"processed. Please check back in a few minutes. An email will be sent to you "
|
1909 |
"with the details shortly."
|
1910 |
msgstr ""
|
1911 |
+
"Wenn Sie gerade eine Mitgliedszahlung getätigt haben, dann ist Ihre Zahlung "
|
1912 |
+
"noch nicht verarbeitet worden. Bitte überprüfen Sie dies in wenigen Minuten. "
|
1913 |
+
"Sie erhalten in Kürze eine E-Mail mit den Details."
|
|
|
1914 |
|
1915 |
#: classes/shortcode-related/class.swpm-shortcodes-handler.php:93
|
1916 |
msgid "Expiry: "
|
1918 |
|
1919 |
#: classes/shortcode-related/class.swpm-shortcodes-handler.php:95
|
1920 |
msgid "You are not logged-in as a member"
|
1921 |
+
msgstr "Sie sind nicht als Mitglied eingeloggt"
|
1922 |
|
1923 |
#: classes/shortcode-related/class.swpm-shortcodes-handler.php:115
|
1924 |
msgid "Logged in as: "
|
1925 |
+
msgstr "Angemeldet als: "
|
1926 |
|
1927 |
#: classes/shortcode-related/class.swpm-shortcodes-handler.php:118
|
1928 |
#: views/loggedin.php:31
|
1929 |
msgid "Logout"
|
1930 |
+
msgstr "Abmelden"
|
1931 |
|
1932 |
#: classes/shortcode-related/class.swpm-shortcodes-handler.php:121
|
1933 |
msgid "Login Here"
|
1934 |
+
msgstr "Hier anmelden"
|
1935 |
|
1936 |
#: classes/shortcode-related/class.swpm-shortcodes-handler.php:122
|
1937 |
msgid "Not a member? "
|
1938 |
+
msgstr "Kein Mitglied? "
|
1939 |
|
1940 |
#: classes/shortcode-related/class.swpm-shortcodes-handler.php:123
|
1941 |
msgid "Join Now"
|
1942 |
+
msgstr "Jetzt Mitglied werden"
|
1943 |
|
1944 |
#: ipn/swpm-smart-checkout-ipn.php:260 ipn/swpm-smart-checkout-ipn.php:285
|
1945 |
#, php-format
|
1946 |
msgid "Error occured during payment verification. Error code: %d. Message: %s"
|
1947 |
msgstr ""
|
1948 |
+
"Bei der Überprüfung der Zahlung ist ein Fehler aufgetreten. Fehlercode: %d. "
|
1949 |
"Nachricht: %s"
|
1950 |
|
1951 |
#: ipn/swpm-smart-checkout-ipn.php:298
|
1953 |
msgid ""
|
1954 |
"Payment check failed: invalid amount received. Expected %s %s, got %s %s."
|
1955 |
msgstr ""
|
1956 |
+
"Zahlungsscheck fehlgeschlagen: ungültiger Betrag eingegangen. %s %s "
|
1957 |
+
"erwartet, %s %s erhalten."
|
1958 |
|
1959 |
#: ipn/swpm-smart-checkout-ipn.php:315
|
1960 |
msgid "Empty payment data received."
|
1963 |
#: ipn/swpm-smart-checkout-ipn.php:355
|
1964 |
msgid "IPN product validation failed. Check debug log for more details."
|
1965 |
msgstr ""
|
1966 |
+
"IPN Produktvalidierung fehlgeschlagen. Prüfen Sie das Debug-Protokoll für "
|
1967 |
+
"weitere Details."
|
1968 |
|
1969 |
#: views/account_delete_warning.php:7
|
1970 |
msgid ""
|
1971 |
"You are about to delete an account. This will delete user data associated "
|
1972 |
"with this account. "
|
1973 |
msgstr ""
|
1974 |
+
"Sie sind dabei, ein Konto zu löschen. Dadurch werden die mit diesem Konto "
|
1975 |
+
"verbundenen Benutzerdaten gelöscht. "
|
1976 |
|
1977 |
#: views/account_delete_warning.php:8
|
1978 |
msgid "It will also delete associated WordPress user account."
|
1979 |
+
msgstr "Außerdem wird das zugehörige WordPress-Benutzerkonto gelöscht."
|
1980 |
|
1981 |
#: views/account_delete_warning.php:9
|
1982 |
msgid ""
|
1983 |
"(NOTE: for safety, we do not allow deletion of any associated WordPress "
|
1984 |
"account with administrator role)."
|
1985 |
msgstr ""
|
1986 |
+
"(HINWEIS: Aus Sicherheitsgründen erlauben wir keine Löschung eines "
|
1987 |
+
"zugehörigen WordPress-Kontos mit Administratorrolle)."
|
1988 |
|
1989 |
#: views/account_delete_warning.php:10
|
1990 |
msgid "Continue?"
|
2013 |
|
2014 |
#: views/add.php:77
|
2015 |
msgid "I agree to the "
|
2016 |
+
msgstr "Ich bin einverstanden mit der "
|
2017 |
|
2018 |
#: views/add.php:77
|
2019 |
msgid "Privacy Policy"
|
2026 |
#: views/admin_add.php:7
|
2027 |
msgid "Create a brand new user and add it to this site."
|
2028 |
msgstr ""
|
2029 |
+
"Erstellen Sie einen brandneuen Benutzer und fügen Sie ihn zu dieser Website "
|
2030 |
+
"hinzu."
|
2031 |
|
2032 |
#: views/admin_add.php:11 views/admin_add.php:15 views/admin_add_level.php:12
|
2033 |
#: views/admin_add_level.php:16 views/admin_add_level.php:20
|
2035 |
#: views/admin_edit_level.php:16 views/admin_edit_level.php:20
|
2036 |
#: views/admin_edit_level.php:24
|
2037 |
msgid "(required)"
|
2038 |
+
msgstr "(erforderlich)"
|
2039 |
|
2040 |
#: views/admin_add.php:15 views/admin_edit.php:40
|
2041 |
msgid "E-mail"
|
2056 |
"$ % ^ & )."
|
2057 |
msgstr ""
|
2058 |
"Hinweis: Das Passwort sollte mindestens sieben Zeichen lang sein. Um es "
|
2059 |
+
"sicherer zu machen, verwenden Sie Groß- und Kleinbuchstaben, Zahlen und "
|
2060 |
+
"Symbole wie ! \" ? $ % ^ & )."
|
2061 |
|
2062 |
#: views/admin_add.php:29 views/admin_edit.php:53 views/loggedin.php:10
|
2063 |
msgid "Account Status"
|
2064 |
+
msgstr "Konto-Status"
|
2065 |
|
2066 |
#: views/admin_add.php:39
|
2067 |
msgid "Add New Member "
|
2072 |
"Some of the simple membership plugin's addon settings and options will be "
|
2073 |
"displayed here (if you have them)"
|
2074 |
msgstr ""
|
2075 |
+
"Einige der Einstellungen und Optionen des einfachen Mitgliedschafts-Plugins "
|
2076 |
+
"werden hier angezeigt (falls Sie diese haben)"
|
2077 |
|
2078 |
#: views/admin_addon_settings.php:8
|
2079 |
msgid "Save Changes"
|
2085 |
|
2086 |
#: views/admin_add_level.php:7
|
2087 |
msgid "Create new membership level."
|
2088 |
+
msgstr "Erstellen Sie eine neue Mitgliedschaftsstufe."
|
2089 |
|
2090 |
#: views/admin_add_level.php:12 views/admin_edit_level.php:16
|
2091 |
msgid "Membership Level Name"
|
2092 |
+
msgstr "Mitgliedschaftsstufe Name"
|
2093 |
|
2094 |
#: views/admin_add_level.php:16 views/admin_edit_level.php:20
|
2095 |
msgid "Default WordPress Role"
|
2096 |
+
msgstr "Standard WordPress Rolle"
|
2097 |
|
2098 |
#: views/admin_add_level.php:20 views/admin_edit_level.php:24
|
2099 |
msgid "Access Duration"
|
2101 |
|
2102 |
#: views/admin_add_level.php:23
|
2103 |
msgid "No Expiry (Access for this level will not expire until cancelled"
|
2104 |
+
msgstr "Kein Ablauf (Zugriff läuft nicht ab bis er storniert wird)"
|
2105 |
|
2106 |
#: views/admin_add_level.php:24 views/admin_add_level.php:26
|
2107 |
#: views/admin_add_level.php:28 views/admin_add_level.php:30
|
2112 |
|
2113 |
#: views/admin_add_level.php:25 views/admin_edit_level.php:29
|
2114 |
msgid "Days (Access expires after given number of days)"
|
2115 |
+
msgstr "Tage (Zugang verfällt nach einer bestimmten Anzahl von Tagen)"
|
2116 |
|
2117 |
#: views/admin_add_level.php:27
|
2118 |
msgid "Weeks (Access expires after given number of weeks"
|
2119 |
+
msgstr "Wochen (Zugang verfällt nach einer bestimmten Anzahl von Wochen)"
|
2120 |
|
2121 |
#: views/admin_add_level.php:29 views/admin_edit_level.php:35
|
2122 |
msgid "Months (Access expires after given number of months)"
|
2123 |
+
msgstr "Monate (Zugang verfällt nach einer bestimmten Anzahl von Monaten)"
|
2124 |
|
2125 |
#: views/admin_add_level.php:31 views/admin_edit_level.php:38
|
2126 |
msgid "Years (Access expires after given number of years)"
|
2127 |
+
msgstr "Jahre (Zugang verfällt nach einer bestimmten Anzahl von Jahren)"
|
2128 |
|
2129 |
#: views/admin_add_level.php:32 views/admin_edit_level.php:40
|
2130 |
msgid "Fixed Date Expiry"
|
2132 |
|
2133 |
#: views/admin_add_level.php:33 views/admin_edit_level.php:41
|
2134 |
msgid "(Access expires on a fixed date)"
|
2135 |
+
msgstr "(Zugang verfällt zu einem festen Termin)"
|
2136 |
|
2137 |
#: views/admin_add_level.php:38 views/admin_edit_level.php:46
|
2138 |
msgid "Email Activation"
|
2144 |
"click on an activation link that is sent to their email address to activate "
|
2145 |
"the account. Useful for free membership. "
|
2146 |
msgstr ""
|
2147 |
+
"Aktivierung neuer Benutzer via E-Mail zulassen. Falls zugelassen, müssen die "
|
2148 |
+
"Mitglieder auf einen Aktivierungslink klicken, der an ihre E-Mail Adresse "
|
2149 |
+
"gesendet wird, um ihr Konto zu aktivieren. Nützlich für kostenlose "
|
2150 |
+
"Mitgliedschaft. "
|
2151 |
|
2152 |
#: views/admin_add_level.php:44 views/admin_edit_level.php:52
|
2153 |
msgid "View Documentation"
|
2155 |
|
2156 |
#: views/admin_add_level.php:45 views/admin_edit_level.php:53
|
2157 |
msgid "Note:"
|
2158 |
+
msgstr "Anmerkung:"
|
2159 |
|
2160 |
#: views/admin_add_level.php:45 views/admin_edit_level.php:53
|
2161 |
+
#, fuzzy
|
2162 |
msgid ""
|
2163 |
"If enabled, decryptable member password is temporarily stored in the "
|
2164 |
"database until the account is activated."
|
2165 |
msgstr ""
|
2166 |
+
"Wenn aktiviert, wird das entschlüsselbare Mitgliedspasswort vorübergehend in "
|
2167 |
+
"der Datenbank gespeichert, bis das Konto aktiviert wird."
|
2168 |
|
2169 |
#: views/admin_add_level.php:52
|
2170 |
msgid "Add New Membership Level "
|
2180 |
"\"General Protection\" from the drop-down box below and then select the "
|
2181 |
"categories that should be protected from non-logged in users."
|
2182 |
msgstr ""
|
2183 |
+
"Schützen Sie zunächst die Kategorie auf Ihrer Website global, indem Sie in "
|
2184 |
+
"der Dropdown-Box unten \"Allgemeiner Schutz\" wählen und dann die Kategorien "
|
2185 |
+
"auswählen, die vor nicht eingeloggten Benutzern geschützt werden sollen."
|
2186 |
|
2187 |
#: views/admin_category_list.php:8
|
2188 |
msgid ""
|
2190 |
"then select the categories you want to grant access to (for that particular "
|
2191 |
"membership level)."
|
2192 |
msgstr ""
|
2193 |
+
"Wählen Sie als nächstes eine bestehende Mitgliedsstufe aus dem Drop-Down-"
|
2194 |
+
"Feld unten aus und wählen Sie dann die Kategorien aus, auf die Sie Zugriff "
|
2195 |
+
"gewähren möchten (für diese bestimmte Mitgliedsstufe)."
|
2196 |
|
2197 |
#: views/admin_category_list.php:11 views/admin_post_list.php:11
|
2198 |
msgid "Read the "
|
2199 |
+
msgstr "Lesen Sie die "
|
2200 |
|
2201 |
#: views/admin_category_list.php:11
|
2202 |
msgid "category protection documentation"
|
2208 |
|
2209 |
#: views/admin_category_list.php:19 views/admin_post_list.php:29
|
2210 |
msgid "General Protection"
|
2211 |
+
msgstr "Allgemeiner Schutz"
|
2212 |
|
2213 |
#: views/admin_category_list.php:23 views/admin_post_list.php:33
|
2214 |
#: views/edit.php:83
|
2215 |
msgid "Update"
|
2216 |
+
msgstr "Aktualisierung"
|
2217 |
|
2218 |
#: views/admin_edit.php:11
|
2219 |
msgid "Edit Member"
|
2221 |
|
2222 |
#: views/admin_edit.php:13
|
2223 |
msgid "Edit existing member details."
|
2224 |
+
msgstr "Vorhandene Mitgliederdaten bearbeiten."
|
2225 |
|
2226 |
#: views/admin_edit.php:14
|
2227 |
msgid " You are currenty editing member with member ID: "
|
2228 |
+
msgstr " Sie sind aktuelles Bearbeitungsmitglied mit Mitglieds-ID: "
|
2229 |
|
2230 |
#: views/admin_edit.php:44
|
2231 |
msgid "(twice, leave empty to retain old password)"
|
2232 |
+
msgstr "(zweimal, leer lassen, um das alte Passwort zu behalten)"
|
2233 |
|
2234 |
#: views/admin_edit.php:59
|
2235 |
msgid ""
|
2236 |
"This is the member's account status. If you want to manually activate an "
|
2237 |
"expired member's account then read"
|
2238 |
msgstr ""
|
2239 |
+
"Dies ist der Kontostatus des Mitglieds. Wenn Sie ein abgelaufenes "
|
2240 |
+
"Mitgliedskonto manuell aktivieren möchten, lesen Sie"
|
2241 |
|
2242 |
#: views/admin_edit.php:60
|
2243 |
msgid "this documentation"
|
2256 |
"You can use this option to send a quick notification email to this member "
|
2257 |
"(the email will be sent when you hit the save button below)."
|
2258 |
msgstr ""
|
2259 |
+
"Sie können diese Option verwenden, um eine schnelle Benachrichtigungs-E-Mail "
|
2260 |
+
"an dieses Mitglied zu senden (die E-Mail wird gesendet, wenn Sie den "
|
2261 |
+
"Speichern-Button unten anklicken)."
|
2262 |
|
2263 |
#: views/admin_edit.php:75
|
2264 |
msgid "Subscriber ID/Reference"
|
2265 |
+
msgstr "Teilnehmer-ID/Referenz"
|
2266 |
|
2267 |
#: views/admin_edit.php:79
|
2268 |
msgid "Last Accessed Date"
|
2270 |
|
2271 |
#: views/admin_edit.php:82 views/admin_edit.php:89
|
2272 |
msgid "This value gets updated when this member logs into your site."
|
2273 |
+
msgstr ""
|
2274 |
+
"Dieser Wert wird aktualisiert, wenn sich dieses Mitglied auf Ihrer Seite "
|
2275 |
+
"einloggt."
|
2276 |
|
2277 |
#: views/admin_edit.php:86
|
2278 |
msgid "Last Accessed From IP"
|
2279 |
+
msgstr "Zuletzt zugegriffen von IP"
|
2280 |
|
2281 |
#: views/admin_edit.php:97
|
2282 |
msgid "Save Data"
|
2288 |
|
2289 |
#: views/admin_edit_level.php:6
|
2290 |
msgid "Edit membership level"
|
2291 |
+
msgstr "Mitgliedsstufe bearbeiten"
|
2292 |
|
2293 |
#: views/admin_edit_level.php:9
|
2294 |
msgid ""
|
2295 |
"You can edit details of a selected membership level from this interface. "
|
2296 |
msgstr ""
|
2297 |
+
"Von dieser Oberfläche aus können Sie die Details einer ausgewählten "
|
2298 |
+
"Mitgliedsstufe bearbeiten. "
|
2299 |
|
2300 |
#: views/admin_edit_level.php:10
|
2301 |
msgid "You are currently editing: "
|
2302 |
+
msgstr "Sie befinden sich in der Bearbeitung: "
|
2303 |
|
2304 |
#: views/admin_edit_level.php:27
|
2305 |
msgid "No Expiry (Access for this level will not expire until cancelled)"
|
2306 |
+
msgstr ""
|
2307 |
+
"Kein Ablaufen (Der Zugang für diese Stufe läuft erst nach der Kündigung ab)"
|
2308 |
|
2309 |
#: views/admin_edit_level.php:32
|
2310 |
msgid "Weeks (Access expires after given number of weeks)"
|
2311 |
+
msgstr "Wochen (Zugang verfällt nach einer bestimmten Anzahl von Wochen)"
|
2312 |
|
2313 |
#: views/admin_edit_level.php:51
|
2314 |
+
#, fuzzy
|
2315 |
msgid ""
|
2316 |
"Enable new user activation via email. When enabled, members will need to "
|
2317 |
"click on an activation link that is sent to their email address to activate "
|
2318 |
"the account. Useful for free membership."
|
2319 |
msgstr ""
|
2320 |
+
"Aktivierung neuer Benutzer via Email zulassen. Falls zugelassen, müssen die "
|
2321 |
+
"Mitglieder auf einen Aktivierungslink klicken, der an Ihre E-Mail Adresse "
|
2322 |
+
"gesendet wird, um ihr Konto zu aktivieren. Nützlich für kostenlose "
|
2323 |
+
"Mitgliedschaft."
|
2324 |
|
2325 |
#: views/admin_edit_level.php:60
|
2326 |
msgid "Save Membership Level "
|
2346 |
#: views/admin_member_form_common_part.php:30 views/edit.php:47
|
2347 |
#: includes/swpm_mda_show_profile.php:34
|
2348 |
msgid "Phone"
|
2349 |
+
msgstr "Telefon"
|
2350 |
|
2351 |
#: views/admin_member_form_common_part.php:34 views/edit.php:51
|
2352 |
msgid "Street"
|
2362 |
|
2363 |
#: views/admin_member_form_common_part.php:46 views/edit.php:63
|
2364 |
msgid "Zipcode"
|
2365 |
+
msgstr "Postleitzahl"
|
2366 |
|
2367 |
#: views/admin_member_form_common_part.php:50 views/edit.php:67
|
2368 |
#: includes/swpm_mda_show_profile.php:33
|
2372 |
#: views/admin_member_form_common_part.php:54
|
2373 |
#: includes/swpm_mda_show_profile.php:38
|
2374 |
msgid "Company"
|
2375 |
+
msgstr "Unternehmen"
|
2376 |
|
2377 |
#: views/admin_member_form_common_part.php:58
|
2378 |
#: includes/swpm_mda_show_profile.php:36
|
2385 |
"\"General Protection\" from the drop-down box below and then select posts "
|
2386 |
"and pages that should be protected from non-logged in users."
|
2387 |
msgstr ""
|
2388 |
+
"Schützen Sie zunächst die Beiträge und Seiten auf Ihrer Website global, "
|
2389 |
+
"indem Sie \"Allgemeiner Schutz\" aus der Dropdown-Box unten auswählen und "
|
2390 |
+
"dann Beiträge und Seiten auswählen, die vor nicht angemeldeten Benutzern "
|
2391 |
+
"geschützt werden sollen."
|
2392 |
|
2393 |
#: views/admin_post_list.php:8
|
2394 |
msgid ""
|
2396 |
"then select posts and pages you want to grant access to (for that particular "
|
2397 |
"membership level)."
|
2398 |
msgstr ""
|
2399 |
+
"Als nächstes wählen Sie eine bestehende Mitgliedsstufe aus der Dropdown-"
|
2400 |
+
"Liste unten aus und wählen dann die Beiträge und Seiten aus, auf die Sie "
|
2401 |
+
"Zugriff gewähren möchten (für diese bestimmte Mitgliedsstufe)."
|
2402 |
|
2403 |
#: views/admin_post_list.php:11
|
2404 |
msgid "bulk protect posts and pages documentation"
|
2405 |
+
msgstr "Massenschutz für Beiträge und Seiten Dokumentation"
|
|
|
|
|
2406 |
|
2407 |
#: views/admin_post_list.php:11
|
2408 |
msgid " to learn how to use it."
|
2418 |
|
2419 |
#: views/admin_post_list.php:23
|
2420 |
msgid "Custom Posts"
|
2421 |
+
msgstr "Benutzerdefinierte Posts"
|
2422 |
|
2423 |
#: views/admin_tools_settings.php:14
|
2424 |
msgid "The required pages have been re-created."
|
2425 |
+
msgstr "Die benötigten Seiten sind neu erstellt worden."
|
2426 |
|
2427 |
#: views/admin_tools_settings.php:21
|
2428 |
msgid "Generate a Registration Completion link"
|
2429 |
+
msgstr "Erstellen Sie einen Link zum Registrierungsabschluss"
|
2430 |
|
2431 |
#: views/admin_tools_settings.php:24
|
2432 |
msgid ""
|
2434 |
"your customer if they have missed the email that was automatically sent out "
|
2435 |
"to them after the payment."
|
2436 |
msgstr ""
|
2437 |
+
"Sie können hier manuell einen Registrierungsabschlusslink generieren und "
|
2438 |
+
"Ihrem Kunden geben, wenn er die E-Mail verpasst hat, die nach der Zahlung "
|
2439 |
+
"automatisch an ihn verschickt wurde."
|
2440 |
|
2441 |
#: views/admin_tools_settings.php:29
|
2442 |
msgid "Generate Registration Completion Link"
|
2443 |
+
msgstr "Registrierungsabschluss-Link generieren"
|
2444 |
|
2445 |
#: views/admin_tools_settings.php:30
|
2446 |
msgid "For a Particular Member ID"
|
2452 |
|
2453 |
#: views/admin_tools_settings.php:33
|
2454 |
msgid "For All Incomplete Registrations"
|
2455 |
+
msgstr "Für alle unvollständigen Registrierungen"
|
2456 |
|
2457 |
#: views/admin_tools_settings.php:38
|
2458 |
msgid "Send Registration Reminder Email Too"
|
2460 |
|
2461 |
#: views/admin_tools_settings.php:44
|
2462 |
msgid "Submit"
|
2463 |
+
msgstr "Abschicken"
|
2464 |
|
2465 |
#: views/admin_tools_settings.php:53
|
2466 |
msgid ""
|
2467 |
"Link(s) generated successfully. The following link(s) can be used to "
|
2468 |
"complete the registration."
|
2469 |
msgstr ""
|
2470 |
+
"Link(s) erfolgreich generiert. Der/die folgenden Link(s) kann/können "
|
2471 |
+
"verwendet werden, um die Registrierung abzuschließen."
|
2472 |
|
2473 |
#: views/admin_tools_settings.php:55
|
2474 |
msgid "Registration completion links will appear below"
|
2475 |
+
msgstr "Die Links zum Abschluss der Registrierung erscheinen unten"
|
|
|
2476 |
|
2477 |
#: views/admin_tools_settings.php:65
|
2478 |
msgid "A prompt to complete registration email was also sent."
|
2479 |
msgstr ""
|
2480 |
+
"Eine Aufforderung zur Vervollständigung der Registrierung wurde ebenfalls "
|
2481 |
"gesendet."
|
2482 |
|
2483 |
#: views/admin_tools_settings.php:78 views/admin_tools_settings.php:88
|
2484 |
msgid "Re-create the Required Pages"
|
2485 |
+
msgstr "Benötigte Seiten wiederherstellen"
|
2486 |
|
2487 |
#: views/admin_tools_settings.php:81
|
2488 |
msgid ""
|
2489 |
"If you have accidentally deleted the required pages that this plugin creates "
|
2490 |
"at install time, you can use this option to re-create them."
|
2491 |
msgstr ""
|
2492 |
+
"Wenn Sie die benötigten Seiten, die dieses Plug-in bei der Installation "
|
2493 |
+
"erstellt, versehentlich gelöscht haben, können Sie diese Option verwenden, "
|
2494 |
+
"um sie neu zu erstellen."
|
2495 |
|
2496 |
#: views/admin_tools_settings.php:82
|
2497 |
msgid " has full explanation."
|
2498 |
+
msgstr " hat eine vollständige Erklärung."
|
2499 |
|
2500 |
#: views/edit.php:32 views/edit.php:36
|
2501 |
msgid "Leave empty to keep the current password"
|
2502 |
+
msgstr "Leer lassen, um das aktuelle Passwort zu behalten"
|
2503 |
|
2504 |
#: views/edit.php:71
|
2505 |
msgid "Company Name"
|
2506 |
+
msgstr "Name des Unternehmens"
|
2507 |
|
2508 |
#: views/forgot_password.php:12
|
2509 |
msgid "Reset Password"
|
2511 |
|
2512 |
#: views/loggedin.php:6
|
2513 |
msgid "Logged in as"
|
2514 |
+
msgstr "Angemeldet als"
|
2515 |
|
2516 |
#: views/loggedin.php:14
|
2517 |
msgid "Membership"
|
2522 |
msgstr "Kontoablauf"
|
2523 |
|
2524 |
#: views/loggedin.php:26
|
2525 |
+
#, fuzzy
|
2526 |
msgid "Edit Profile"
|
2527 |
msgstr "Profil bearbeiten"
|
2528 |
|
2529 |
#: views/login.php:11
|
2530 |
msgid "Username or Email"
|
2531 |
+
msgstr "Benutzername oder E-Mail"
|
2532 |
|
2533 |
#: views/login.php:24
|
2534 |
+
#, fuzzy
|
2535 |
msgid "Remember Me"
|
2536 |
+
msgstr "Remember Me"
|
2537 |
|
2538 |
#: views/login.php:33
|
2539 |
msgid "Forgot Password?"
|
2540 |
+
msgstr "Haben Sie Ihr Passwort vergessen?"
|
2541 |
|
2542 |
#: views/payments/admin_all_payment_transactions.php:6
|
2543 |
msgid "All the payments/transactions of your members are recorded here."
|
2544 |
+
msgstr "Hier werden alle Zahlungen/Transaktionen Ihrer Mitglieder erfasst."
|
|
|
2545 |
|
2546 |
#: views/payments/admin_all_payment_transactions.php:12
|
2547 |
msgid "Search for a transaction by using email or name"
|
2548 |
+
msgstr "Suche nach einer Transaktion mit Hilfe von E-Mail oder Name"
|
2549 |
|
2550 |
#: views/payments/admin_create_payment_buttons.php:15
|
2551 |
msgid ""
|
2552 |
"You can create new payment button for your memberships using this interface."
|
2553 |
msgstr ""
|
2554 |
+
"Über diese Schnittstelle können Sie neue Zahlungsbuttons für Ihre "
|
2555 |
+
"Mitgliedschaften erstellen."
|
2556 |
|
2557 |
#: views/payments/admin_create_payment_buttons.php:23
|
2558 |
msgid "Select Payment Button Type"
|
2559 |
+
msgstr "Zahlungsbutton-Typ auswählen"
|
2560 |
|
2561 |
#: views/payments/admin_create_payment_buttons.php:26
|
2562 |
msgid "PayPal Buy Now"
|
2564 |
|
2565 |
#: views/payments/admin_create_payment_buttons.php:28
|
2566 |
msgid "PayPal Subscription"
|
2567 |
+
msgstr "PayPal-Abonnement"
|
2568 |
|
2569 |
#: views/payments/admin_create_payment_buttons.php:30
|
2570 |
msgid "PayPal Smart Checkout"
|
2576 |
|
2577 |
#: views/payments/admin_create_payment_buttons.php:34
|
2578 |
msgid "Stripe Subscription"
|
2579 |
+
msgstr "Stripe-Abonnement"
|
2580 |
|
2581 |
#: views/payments/admin_create_payment_buttons.php:36
|
2582 |
msgid "Braintree Buy Now"
|
2584 |
|
2585 |
#: views/payments/admin_create_payment_buttons.php:43
|
2586 |
msgid "Next"
|
2587 |
+
msgstr "Nächste"
|
2588 |
|
2589 |
#: views/payments/admin_edit_payment_buttons.php:15
|
2590 |
msgid "You can edit a payment button using this interface."
|
2591 |
+
msgstr "Über diese Schnittstelle können Sie einen Zahlungsbutton bearbeiten."
|
2592 |
|
2593 |
#: views/payments/admin_payment_buttons.php:6
|
2594 |
msgid ""
|
2595 |
"All the membership buttons that you created in the plugin are displayed here."
|
2596 |
msgstr ""
|
2597 |
+
"Alle Mitgliedschaftsbuttons, die Sie im Plugin erstellt haben, werden hier "
|
2598 |
+
"angezeigt."
|
2599 |
|
2600 |
#: views/payments/admin_payment_settings.php:21
|
2601 |
msgid "Error! The membership level ID ("
|
2602 |
+
msgstr "Fehler! Die Mitgliedschaftsstufen-ID ("
|
2603 |
|
2604 |
#: views/payments/admin_payment_settings.php:28
|
2605 |
msgid ""
|
2606 |
"You can create membership payment buttons from the payments menu of this "
|
2607 |
"plugin (useful if you want to offer paid membership on the site)."
|
2608 |
msgstr ""
|
2609 |
+
"Sie können Mitgliedschaftszahlungsbuttons aus dem Zahlungsmenü dieses "
|
2610 |
+
"Plugins erstellen (nützlich, wenn Sie eine bezahlte Mitgliedschaft auf der "
|
2611 |
+
"Website anbieten möchten)."
|
2612 |
|
2613 |
#: views/payments/admin_payment_settings.php:33
|
2614 |
msgid "PayPal Integration Settings"
|
2615 |
+
msgstr "Einstellungen zur PayPal-Integration"
|
2616 |
|
2617 |
#: views/payments/admin_payment_settings.php:36
|
2618 |
msgid "Generate the \"Advanced Variables\" Code for your PayPal button"
|
2619 |
+
msgstr "Generieren Sie den \"Advanced Variables\"-Code für Ihren PayPal-Button"
|
2620 |
|
2621 |
#: views/payments/admin_payment_settings.php:39
|
2622 |
msgid "Enter the Membership Level ID"
|
2623 |
+
msgstr "Eingabe der Mitgliedschaftsstufen-ID"
|
2624 |
|
2625 |
#: views/payments/admin_payment_settings.php:41
|
2626 |
msgid "Generate Code"
|
2628 |
|
2629 |
#: views/payments/payment-gateway/admin_braintree_buy_now_button.php:22
|
2630 |
msgid "Braintree Buy Now Button Configuration"
|
2631 |
+
msgstr "Braintree \"Jetzt kaufen\" Button-Konfiguration"
|
2632 |
|
2633 |
#: views/payments/payment-gateway/admin_braintree_buy_now_button.php:34
|
2634 |
#: views/payments/payment-gateway/admin_paypal_buy_now_button.php:213
|
2665 |
"Braintree API key and account details. You can get this from your Braintree "
|
2666 |
"account."
|
2667 |
msgstr ""
|
2668 |
+
"Braintree API-Schlüssel und Kontodaten. Sie können diese von Ihrem Braintree-"
|
2669 |
+
"Account erhalten."
|
2670 |
|
2671 |
#: views/payments/payment-gateway/admin_braintree_buy_now_button.php:72
|
2672 |
msgid "Merchant ID"
|
2673 |
+
msgstr "Händler-ID"
|
2674 |
|
2675 |
#: views/payments/payment-gateway/admin_braintree_buy_now_button.php:80
|
2676 |
msgid "Public Key"
|
2682 |
|
2683 |
#: views/payments/payment-gateway/admin_braintree_buy_now_button.php:95
|
2684 |
msgid "Merchant Account ID"
|
2685 |
+
msgstr "Händlerkonto-ID"
|
2686 |
|
2687 |
#: views/payments/payment-gateway/admin_braintree_buy_now_button.php:113
|
2688 |
#: views/payments/payment-gateway/admin_stripe_buy_now_button.php:137
|
2700 |
#: views/payments/payment-gateway/admin_stripe_buy_now_button.php:373
|
2701 |
#: views/payments/payment-gateway/admin_stripe_subscription_button.php:191
|
2702 |
msgid "Return URL"
|
2703 |
+
msgstr "Rückgabe-URL"
|
2704 |
|
2705 |
#: views/payments/payment-gateway/admin_braintree_buy_now_button.php:127
|
2706 |
#: views/payments/payment-gateway/admin_paypal_buy_now_button.php:126
|
2717 |
#: views/payments/payment-gateway/admin_paypal_buy_now_button.php:16
|
2718 |
#: views/payments/payment-gateway/admin_paypal_buy_now_button.php:204
|
2719 |
msgid "PayPal Buy Now Button Configuration"
|
2720 |
+
msgstr "PayPal Jetzt kaufen Button-Konfiguration"
|
2721 |
|
2722 |
#: views/payments/payment-gateway/admin_paypal_buy_now_button.php:52
|
2723 |
#: views/payments/payment-gateway/admin_paypal_buy_now_button.php:247
|
2727 |
#: views/payments/payment-gateway/admin_stripe_buy_now_button.php:65
|
2728 |
#: views/payments/payment-gateway/admin_stripe_buy_now_button.php:289
|
2729 |
msgid "Payment Currency"
|
2730 |
+
msgstr "Zahlungswährung"
|
2731 |
|
2732 |
#: views/payments/payment-gateway/admin_paypal_buy_now_button.php:100
|
2733 |
#: views/payments/payment-gateway/admin_paypal_buy_now_button.php:295
|
2734 |
#: views/payments/payment-gateway/admin_paypal_subscription_button.php:85
|
2735 |
#: views/payments/payment-gateway/admin_paypal_subscription_button.php:367
|
2736 |
+
#, fuzzy
|
2737 |
msgid "PayPal Email"
|
2738 |
msgstr "PayPal E-Mail Adresse"
|
2739 |
|
2743 |
#: views/payments/payment-gateway/admin_paypal_subscription_button.php:464
|
2744 |
#: views/payments/payment-gateway/admin_stripe_subscription_button.php:199
|
2745 |
msgid "Button Image URL"
|
2746 |
+
msgstr "Button Bild URL"
|
2747 |
|
2748 |
#: views/payments/payment-gateway/admin_paypal_buy_now_button.php:116
|
2749 |
#: views/payments/payment-gateway/admin_paypal_buy_now_button.php:311
|
2750 |
#: views/payments/payment-gateway/admin_paypal_subscription_button.php:188
|
2751 |
#: views/payments/payment-gateway/admin_paypal_subscription_button.php:472
|
2752 |
+
#, fuzzy
|
2753 |
msgid "Custom Checkout Page Logo Image"
|
2754 |
msgstr "Benutzerdefinierte Checkout Seiten Logo"
|
2755 |
|
2762 |
"PayPal Smart Checkout API Credentials (you can get this from your PayPal "
|
2763 |
"account)"
|
2764 |
msgstr ""
|
2765 |
+
"PayPal Smart Checkout API-Berechtigungsnachweise (Sie können diese von Ihrem "
|
2766 |
+
"PayPal-Konto erhalten)"
|
2767 |
|
2768 |
#: views/payments/payment-gateway/admin_paypal_smart_checkout_button.php:111
|
2769 |
msgid "Live Client ID"
|
2770 |
+
msgstr "Live-Client-ID"
|
2771 |
|
2772 |
#: views/payments/payment-gateway/admin_paypal_smart_checkout_button.php:119
|
2773 |
msgid "Live Secret"
|
2775 |
|
2776 |
#: views/payments/payment-gateway/admin_paypal_smart_checkout_button.php:127
|
2777 |
msgid "Sandbox Client ID"
|
2778 |
+
msgstr "Sandbox-Kunden-ID"
|
2779 |
|
2780 |
#: views/payments/payment-gateway/admin_paypal_smart_checkout_button.php:135
|
2781 |
+
#, fuzzy
|
2782 |
msgid "Sandbox Secret"
|
2783 |
+
msgstr "Sandbox Geheimnis"
|
2784 |
|
2785 |
#: views/payments/payment-gateway/admin_paypal_smart_checkout_button.php:143
|
2786 |
msgid "Button Appearance Settings"
|
2787 |
+
msgstr "Einstellungen für das Aussehen des Buttons"
|
2788 |
|
2789 |
#: views/payments/payment-gateway/admin_paypal_smart_checkout_button.php:147
|
2790 |
msgid "Size"
|
2792 |
|
2793 |
#: views/payments/payment-gateway/admin_paypal_smart_checkout_button.php:150
|
2794 |
msgid "Medium"
|
2795 |
+
msgstr "Mittel"
|
2796 |
|
2797 |
#: views/payments/payment-gateway/admin_paypal_smart_checkout_button.php:151
|
2798 |
msgid "Large"
|
2800 |
|
2801 |
#: views/payments/payment-gateway/admin_paypal_smart_checkout_button.php:152
|
2802 |
msgid "Repsonsive"
|
2803 |
+
msgstr "Repsonsiv"
|
2804 |
|
2805 |
#: views/payments/payment-gateway/admin_paypal_smart_checkout_button.php:154
|
2806 |
msgid "Select button size."
|
2807 |
+
msgstr "Buttongröße auswählen."
|
2808 |
|
2809 |
#: views/payments/payment-gateway/admin_paypal_smart_checkout_button.php:158
|
2810 |
msgid "Color"
|
2828 |
|
2829 |
#: views/payments/payment-gateway/admin_paypal_smart_checkout_button.php:166
|
2830 |
msgid "Select button color."
|
2831 |
+
msgstr "Farbe des Buttons auswählen."
|
2832 |
|
2833 |
#: views/payments/payment-gateway/admin_paypal_smart_checkout_button.php:170
|
2834 |
msgid "Shape"
|
2840 |
|
2841 |
#: views/payments/payment-gateway/admin_paypal_smart_checkout_button.php:173
|
2842 |
msgid "Pill"
|
2843 |
+
msgstr "Pille"
|
2844 |
|
2845 |
#: views/payments/payment-gateway/admin_paypal_smart_checkout_button.php:174
|
2846 |
msgid "Select button shape."
|
2847 |
+
msgstr "Form des Buttons wählen."
|
2848 |
|
2849 |
#: views/payments/payment-gateway/admin_paypal_smart_checkout_button.php:178
|
2850 |
msgid "Layout"
|
2860 |
|
2861 |
#: views/payments/payment-gateway/admin_paypal_smart_checkout_button.php:182
|
2862 |
msgid "Select button layout."
|
2863 |
+
msgstr "Button-Layout wählen."
|
2864 |
|
2865 |
#: views/payments/payment-gateway/admin_paypal_smart_checkout_button.php:187
|
2866 |
msgid "Additional Settings"
|
2872 |
|
2873 |
#: views/payments/payment-gateway/admin_paypal_smart_checkout_button.php:193
|
2874 |
msgid "PayPal Credit"
|
2875 |
+
msgstr "PayPal-Guthaben"
|
2876 |
|
2877 |
#: views/payments/payment-gateway/admin_paypal_smart_checkout_button.php:194
|
2878 |
msgid "ELV"
|
2879 |
msgstr "ELV"
|
2880 |
|
2881 |
#: views/payments/payment-gateway/admin_paypal_smart_checkout_button.php:195
|
2882 |
+
#, fuzzy
|
2883 |
msgid ""
|
2884 |
"Select payment methods that could be used by customers. Note that payment "
|
2885 |
"with cards is always enabled."
|
2886 |
msgstr ""
|
2887 |
+
"Wählen Sie die Zahlungsmethoden aus, die von den Kunden verwendet werden "
|
2888 |
+
"könnten. Beachten Sie, dass die Zahlung mit Karte immer aktiviert ist."
|
2889 |
|
2890 |
#: views/payments/payment-gateway/admin_paypal_smart_checkout_button.php:200
|
2891 |
msgid "The following details are optional"
|
2894 |
#: views/payments/payment-gateway/admin_paypal_subscription_button.php:18
|
2895 |
#: views/payments/payment-gateway/admin_paypal_subscription_button.php:295
|
2896 |
msgid "PayPal Subscription Button Configuration"
|
2897 |
+
msgstr "Konfiguration des PayPal-Abo Buttons"
|
2898 |
|
2899 |
#: views/payments/payment-gateway/admin_paypal_subscription_button.php:93
|
2900 |
#: views/payments/payment-gateway/admin_paypal_subscription_button.php:375
|
2901 |
msgid "Billing Amount Each Cycle"
|
2902 |
+
msgstr "Rechnungsbetrag pro Zyklus"
|
2903 |
|
2904 |
#: views/payments/payment-gateway/admin_paypal_subscription_button.php:101
|
2905 |
#: views/payments/payment-gateway/admin_paypal_subscription_button.php:383
|
2909 |
#: views/payments/payment-gateway/admin_paypal_subscription_button.php:114
|
2910 |
#: views/payments/payment-gateway/admin_paypal_subscription_button.php:396
|
2911 |
msgid "Billing Cycle Count"
|
2912 |
+
msgstr "Abrechnungszyklen Zähler"
|
2913 |
|
2914 |
#: views/payments/payment-gateway/admin_paypal_subscription_button.php:122
|
2915 |
#: views/payments/payment-gateway/admin_paypal_subscription_button.php:404
|
2921 |
msgid ""
|
2922 |
"Trial Billing Details (Leave empty if you are not offering a trial period)"
|
2923 |
msgstr ""
|
2924 |
+
"Details zur Testabrechnung (leer lassen, wenn Sie keinen Testzeitraum "
|
2925 |
"anbieten)"
|
2926 |
|
2927 |
#: views/payments/payment-gateway/admin_paypal_subscription_button.php:141
|
2938 |
#: views/payments/payment-gateway/admin_paypal_subscription_button.php:450
|
2939 |
#: views/payments/payment-gateway/admin_stripe_subscription_button.php:177
|
2940 |
msgid "Optional Details"
|
2941 |
+
msgstr "Optionale Angaben"
|
2942 |
|
2943 |
#: views/payments/payment-gateway/admin_stripe_buy_now_button.php:29
|
2944 |
#: views/payments/payment-gateway/admin_stripe_buy_now_button.php:250
|
2945 |
msgid "Stripe Buy Now Button Configuration"
|
2946 |
+
msgstr "Stripe Buy Now Button Konfiguration"
|
2947 |
|
2948 |
#: views/payments/payment-gateway/admin_stripe_buy_now_button.php:104
|
2949 |
#: views/payments/payment-gateway/admin_stripe_buy_now_button.php:328
|
2950 |
msgid "Stripe API keys. You can get this from your Stripe account."
|
2951 |
msgstr ""
|
2952 |
+
"Stripe-API-Schlüssel. Sie können diesen von Ihrem Stripe-Konto erhalten."
|
2953 |
|
2954 |
#: views/payments/payment-gateway/admin_stripe_buy_now_button.php:108
|
2955 |
#: views/payments/payment-gateway/admin_stripe_buy_now_button.php:332
|
2956 |
#: views/payments/payment-gateway/admin_stripe_subscription_button.php:131
|
2957 |
msgid "Test Publishable Key"
|
2958 |
+
msgstr "Veröffentlichungs-Schlüssel testen"
|
2959 |
|
2960 |
#: views/payments/payment-gateway/admin_stripe_buy_now_button.php:115
|
2961 |
#: views/payments/payment-gateway/admin_stripe_buy_now_button.php:339
|
2962 |
#: views/payments/payment-gateway/admin_stripe_subscription_button.php:139
|
2963 |
msgid "Test Secret Key"
|
2964 |
+
msgstr "Geheimen Schlüssel testen"
|
2965 |
|
2966 |
#: views/payments/payment-gateway/admin_stripe_buy_now_button.php:122
|
2967 |
#: views/payments/payment-gateway/admin_stripe_buy_now_button.php:346
|
2968 |
#: views/payments/payment-gateway/admin_stripe_subscription_button.php:147
|
2969 |
msgid "Live Publishable Key"
|
2970 |
+
msgstr "Live Veröffentlichungsschlüssel"
|
2971 |
|
2972 |
#: views/payments/payment-gateway/admin_stripe_buy_now_button.php:129
|
2973 |
#: views/payments/payment-gateway/admin_stripe_buy_now_button.php:353
|
2974 |
#: views/payments/payment-gateway/admin_stripe_subscription_button.php:155
|
2975 |
msgid "Live Secret Key"
|
2976 |
+
msgstr "Geheimer Live-Schlüssel"
|
2977 |
|
2978 |
#: views/payments/payment-gateway/admin_stripe_buy_now_button.php:141
|
2979 |
#: views/payments/payment-gateway/admin_stripe_buy_now_button.php:365
|
2980 |
#: views/payments/payment-gateway/admin_stripe_subscription_button.php:183
|
2981 |
msgid "Collect Customer Address"
|
2982 |
+
msgstr "Kundenadresse erfassen"
|
2983 |
|
2984 |
#: views/payments/payment-gateway/admin_stripe_subscription_button.php:75
|
2985 |
msgid "Stripe Subscription Button Configuration"
|
2986 |
+
msgstr "Konfiguration der Streifenabonnementschaltfläche"
|
2987 |
|
2988 |
#: views/payments/payment-gateway/admin_stripe_subscription_button.php:109
|
2989 |
msgid "Stripe Plan ID"
|
2991 |
|
2992 |
#: views/payments/payment-gateway/admin_stripe_subscription_button.php:125
|
2993 |
msgid "Stripe API Settings"
|
2994 |
+
msgstr "Stripe-API-Einstellungen"
|
2995 |
|
2996 |
#: views/payments/payment-gateway/admin_stripe_subscription_button.php:163
|
2997 |
msgid "Webook Endpoint URL"
|
2998 |
+
msgstr "Webook Endpunkt-URL"
|
2999 |
|
3000 |
#: views/payments/payment-gateway/braintree_button_shortcode_view.php:20
|
3001 |
#: views/payments/payment-gateway/paypal_button_shortcode_view.php:91
|
3012 |
msgstr "Jetzt abonnieren"
|
3013 |
|
3014 |
#: views/payments/payment-gateway/paypal_smart_checkout_button_shortcode_view.php:137
|
3015 |
+
#, fuzzy
|
3016 |
msgid "Error occured during PayPal Smart Checkout process."
|
3017 |
msgstr "Fehler aufgetreten während des PayPal Smart Checkout Prozesses."
|
3018 |
|
3019 |
#: views/payments/payment-gateway/paypal_smart_checkout_button_shortcode_view.php:165
|
3020 |
msgid "HTTP error occured during payment process:"
|
3021 |
+
msgstr "HTTP-Fehler ist während des Zahlungsvorgangs aufgetreten:"
|
3022 |
|
3023 |
#: Translation strings from addons === Form builder addon
|
3024 |
msgid "Type password here"
|
3025 |
+
msgstr "Passwort hier eingeben"
|
3026 |
|
3027 |
msgid "Retype password here"
|
3028 |
+
msgstr "Passwort hier erneut eingeben"
|
3029 |
|
3030 |
msgid "Registration is complete. You can now log into the site."
|
3031 |
+
msgstr ""
|
3032 |
+
"Die Registrierung ist abgeschlossen. Sie können sich nun auf der Seite "
|
3033 |
+
"einloggen."
|
3034 |
|
3035 |
msgid " Field has invalid character"
|
3036 |
+
msgstr " Feld hat ungültiges Zeichen"
|
3037 |
|
3038 |
msgid " Password does not match"
|
3039 |
+
msgstr " Die Passwörter stimmen nicht überein"
|
3040 |
|
3041 |
msgid "Already taken."
|
3042 |
+
msgstr "Bereits vergeben."
|
3043 |
|
3044 |
msgid "Street Address"
|
3045 |
+
msgstr "Straße und Hausnummer"
|
3046 |
|
3047 |
msgid "Apt, Suite, Bldg. (optional)"
|
3048 |
+
msgstr "OG, Wohnung, Gebäude (optional)"
|
3049 |
|
3050 |
msgid "State / Province / Region"
|
3051 |
+
msgstr "Bundesland / Provinz / Region"
|
3052 |
|
3053 |
msgid "Postal / Zip Code"
|
3054 |
+
msgstr "Postleitzahl"
|
3055 |
|
3056 |
msgid ""
|
3057 |
"Check this box to delete the image. The image will be deleted when you save "
|
3058 |
"the profile."
|
3059 |
msgstr ""
|
3060 |
+
"Aktivieren Sie dieses Kontrollkästchen, um das Bild zu löschen. Das Bild "
|
3061 |
+
"wird gelöscht, wenn Sie das Profil speichern."
|
3062 |
|
3063 |
msgid "You will need to re-login since you changed your password."
|
3064 |
msgstr "Sie müssen sich neu anmelden, da Sie Ihr Passwort geändert haben."
|
3066 |
msgid ""
|
3067 |
"Please enter any two digits with <strong>no</strong> spaces (Example: 12)"
|
3068 |
msgstr ""
|
3069 |
+
"Bitte geben Sie zwei beliebige Ziffern <strong>ohne</strong> Leerzeichen ein"
|
3070 |
|
3071 |
msgid "Verification"
|
3072 |
msgstr "Verifizierung"
|
3073 |
|
3074 |
+
#, fuzzy
|
3075 |
msgid "Please enter any two digits with no spaces (Example: 12)*"
|
3076 |
+
msgstr "Bitte geben Sie zwei beliebige Ziffern ohne Leerzeichen ein*"
|
3077 |
|
3078 |
msgid "Username can only contain: letters, numbers and .-*@"
|
3079 |
+
msgstr "Benutzername kann nur Folgendes enthalten: Buchstaben, Zahlen und .-*@"
|
3080 |
|
3081 |
msgid "Allowed characters are: letters, numbers and .-_*@"
|
3082 |
+
msgstr "Erlaubte Zeichen sind: Buchstaben, Zahlen und .-_*@"
|
3083 |
|
3084 |
#: === Partial protection addon strings
|
3085 |
msgid "You do not have permission to view this content."
|
3086 |
+
msgstr "Sie haben keine Erlaubnis, diesen Inhalt zu sehen."
|
3087 |
|
3088 |
msgid "Your membership level does not have permission to view this content."
|
3089 |
+
msgstr "Ihre Mitgliedsstufe hat nicht die Erlaubnis, diese Inhalte zu sehen."
|
3090 |
|
3091 |
msgid "This content is for members only."
|
3092 |
+
msgstr "Dieser Inhalt ist nur für Mitglieder."
|
3093 |
|
3094 |
+
#, fuzzy
|
3095 |
msgid "Please check at least one."
|
3096 |
+
msgstr "Bitte wählen Sie mindestens eine Option aus."
|
3097 |
|
3098 |
#: === Member Directory Listing addon strings swpm-member-directory-admin.php:9
|
3099 |
msgid "Member Directory"
|
3100 |
+
msgstr "Mitglieder-Verzeichnis"
|
3101 |
|
3102 |
#: includes/swpm_mda_show_profile.php:26
|
3103 |
msgid "Member ID"
|
3104 |
+
msgstr "Mitglieds-ID"
|
3105 |
|
3106 |
#: includes/swpm_mda_show_profile.php:30
|
3107 |
msgid "Level"
|
3108 |
+
msgstr "Ebene"
|
3109 |
|
3110 |
#: includes/swpm_mda_show_profile.php:32
|
3111 |
msgid "Address"
|
3119 |
msgid "Clear Search"
|
3120 |
msgstr "Suche löschen"
|
3121 |
|
3122 |
+
# === Misc Shortcodes Addon ===
|
3123 |
msgid "You must be logged in to upgrade a membership."
|
3124 |
+
msgstr "Sie müssen eingeloggt sein, um eine Mitgliedschaft zu aktualisieren."
|
3125 |
|
3126 |
msgid "Membership level has been updated."
|
3127 |
msgstr "Die Mitgliedschaftsstufe wurde aktualisiert."
|
languages/simple-membership-es_MX.po
CHANGED
@@ -137,7 +137,7 @@ msgid "Invalid Email Address"
|
|
137 |
msgstr "dirección de email invalida"
|
138 |
|
139 |
#: classes/class.swpm-ajax.php:21 classes/class.swpm-ajax.php:36
|
140 |
-
msgid "
|
141 |
msgstr "ya apartadas"
|
142 |
|
143 |
#: classes/class.swpm-ajax.php:30
|
137 |
msgstr "dirección de email invalida"
|
138 |
|
139 |
#: classes/class.swpm-ajax.php:21 classes/class.swpm-ajax.php:36
|
140 |
+
msgid "Already taken"
|
141 |
msgstr "ya apartadas"
|
142 |
|
143 |
#: classes/class.swpm-ajax.php:30
|
languages/simple-membership-et_EE.po
CHANGED
@@ -115,7 +115,7 @@ msgid "Invalid Email Address"
|
|
115 |
msgstr "Vigane e-posti aadress"
|
116 |
|
117 |
#: classes/class.swpm-ajax.php:21 classes/class.swpm-ajax.php:36
|
118 |
-
msgid "
|
119 |
msgstr "Juba võetud"
|
120 |
|
121 |
#: classes/class.swpm-ajax.php:30
|
115 |
msgstr "Vigane e-posti aadress"
|
116 |
|
117 |
#: classes/class.swpm-ajax.php:21 classes/class.swpm-ajax.php:36
|
118 |
+
msgid "Already taken"
|
119 |
msgstr "Juba võetud"
|
120 |
|
121 |
#: classes/class.swpm-ajax.php:30
|
languages/simple-membership.pot
CHANGED
@@ -220,7 +220,7 @@ msgid "Invalid Email Address"
|
|
220 |
msgstr ""
|
221 |
|
222 |
#: classes/class.swpm-ajax.php:21 classes/class.swpm-ajax.php:36
|
223 |
-
msgid "
|
224 |
msgstr ""
|
225 |
|
226 |
#: classes/class.swpm-ajax.php:30
|
220 |
msgstr ""
|
221 |
|
222 |
#: classes/class.swpm-ajax.php:21 classes/class.swpm-ajax.php:36
|
223 |
+
msgid "Already taken"
|
224 |
msgstr ""
|
225 |
|
226 |
#: classes/class.swpm-ajax.php:30
|
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: 5.3
|
7 |
-
Stable tag: 3.9.
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
@@ -158,6 +158,13 @@ https://simple-membership-plugin.com/
|
|
158 |
|
159 |
== Changelog ==
|
160 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
161 |
= 3.9.4 =
|
162 |
- Commented out call to date_default_timezone_set() function for WP5.3.
|
163 |
- Updated some comments in the SwpmAjax class.
|
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: 5.3
|
7 |
+
Stable tag: 3.9.5
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
158 |
|
159 |
== Changelog ==
|
160 |
|
161 |
+
= 3.9.5 =
|
162 |
+
- Added a new filter (swpm_mini_login_output). It can be used to override the [swpm_mini_login] shortcode's output.
|
163 |
+
- The "Edit" link in the members menu has been renamed to "Edit/View" to make it more user-friendly.
|
164 |
+
- Updated the German language file.
|
165 |
+
- The members listing in the members menu can now be sorted by the "Access Starts" column.
|
166 |
+
- Fixed an issue with Stripe SCA buttons whereby duplicate "incomplete" entries were being created. This started happening recently from a new change that Stripe made.
|
167 |
+
|
168 |
= 3.9.4 =
|
169 |
- Commented out call to date_default_timezone_set() function for WP5.3.
|
170 |
- Updated some comments in the SwpmAjax class.
|
simple-wp-membership.php
CHANGED
@@ -1,7 +1,7 @@
|
|
1 |
<?php
|
2 |
/*
|
3 |
Plugin Name: Simple WordPress Membership
|
4 |
-
Version: 3.9.
|
5 |
Plugin URI: https://simple-membership-plugin.com/
|
6 |
Author: smp7, wp.insider
|
7 |
Author URI: https://simple-membership-plugin.com/
|
@@ -19,7 +19,7 @@ include_once('classes/class.simple-wp-membership.php');
|
|
19 |
include_once('classes/class.swpm-cronjob.php');
|
20 |
include_once('swpm-compat.php');
|
21 |
|
22 |
-
define('SIMPLE_WP_MEMBERSHIP_VER', '3.9.
|
23 |
define('SIMPLE_WP_MEMBERSHIP_DB_VER', '1.3');
|
24 |
define('SIMPLE_WP_MEMBERSHIP_SITE_HOME_URL', home_url());
|
25 |
define('SIMPLE_WP_MEMBERSHIP_PATH', dirname(__FILE__) . '/');
|
1 |
<?php
|
2 |
/*
|
3 |
Plugin Name: Simple WordPress Membership
|
4 |
+
Version: 3.9.5
|
5 |
Plugin URI: https://simple-membership-plugin.com/
|
6 |
Author: smp7, wp.insider
|
7 |
Author URI: https://simple-membership-plugin.com/
|
19 |
include_once('classes/class.swpm-cronjob.php');
|
20 |
include_once('swpm-compat.php');
|
21 |
|
22 |
+
define('SIMPLE_WP_MEMBERSHIP_VER', '3.9.5');
|
23 |
define('SIMPLE_WP_MEMBERSHIP_DB_VER', '1.3');
|
24 |
define('SIMPLE_WP_MEMBERSHIP_SITE_HOME_URL', home_url());
|
25 |
define('SIMPLE_WP_MEMBERSHIP_PATH', dirname(__FILE__) . '/');
|
views/payments/payment-gateway/stripe_sca_button_shortcode_view.php
CHANGED
@@ -52,14 +52,6 @@ function swpm_render_stripe_sca_buy_now_button_sc_output( $button_code, $args )
|
|
52 |
$user_ip = SwpmUtils::get_user_ip_address();
|
53 |
$_SESSION['swpm_payment_button_interaction'] = $user_ip;
|
54 |
|
55 |
-
//Custom field data
|
56 |
-
$custom_field_value = 'subsc_ref=' . $membership_level_id;
|
57 |
-
$custom_field_value .= '&user_ip=' . $user_ip;
|
58 |
-
if ( SwpmMemberUtils::is_member_logged_in() ) {
|
59 |
-
$custom_field_value .= '&swpm_id=' . SwpmMemberUtils::get_logged_in_members_id();
|
60 |
-
}
|
61 |
-
$custom_field_value = apply_filters( 'swpm_custom_field_value_filter', $custom_field_value );
|
62 |
-
|
63 |
//Sandbox settings
|
64 |
$sandbox_enabled = $settings->get_value( 'enable-sandbox-testing' );
|
65 |
|
@@ -76,18 +68,6 @@ function swpm_render_stripe_sca_buy_now_button_sc_output( $button_code, $args )
|
|
76 |
$secret_key = $stripe_live_secret_key;
|
77 |
}
|
78 |
|
79 |
-
//Billing address
|
80 |
-
$billing_address = isset( $args['billing_address'] ) ? '1' : '';
|
81 |
-
//By default don't show the billing address in the checkout form.
|
82 |
-
//if billing_address parameter is not present in the shortcode, let's check button option
|
83 |
-
if ( $billing_address === '' ) {
|
84 |
-
$collect_address = get_post_meta( $button_id, 'stripe_collect_address', true );
|
85 |
-
if ( $collect_address === '1' ) {
|
86 |
-
//Collect Address enabled in button settings
|
87 |
-
$billing_address = 1;
|
88 |
-
}
|
89 |
-
}
|
90 |
-
|
91 |
$uniqid = md5( uniqid() );
|
92 |
$ref_id = 'swpm_' . $uniqid . '|' . $button_id;
|
93 |
|
@@ -96,54 +76,36 @@ function swpm_render_stripe_sca_buy_now_button_sc_output( $button_code, $args )
|
|
96 |
|
97 |
$current_url = ( isset( $_SERVER['HTTPS'] ) ? 'https' : 'http' ) . "://$_SERVER[HTTP_HOST]$_SERVER[REQUEST_URI]";
|
98 |
|
99 |
-
SwpmMiscUtils::load_stripe_lib();
|
100 |
-
|
101 |
-
try {
|
102 |
-
\Stripe\Stripe::setApiKey( $secret_key );
|
103 |
-
|
104 |
-
$opts = array(
|
105 |
-
'payment_method_types' => array( 'card' ),
|
106 |
-
'client_reference_id' => $ref_id,
|
107 |
-
'billing_address_collection' => $billing_address ? 'required' : 'auto',
|
108 |
-
'line_items' => array(
|
109 |
-
array(
|
110 |
-
'name' => $item_name,
|
111 |
-
'description' => $payment_amount_formatted,
|
112 |
-
'amount' => $price_in_cents,
|
113 |
-
'currency' => $payment_currency,
|
114 |
-
'quantity' => 1,
|
115 |
-
),
|
116 |
-
),
|
117 |
-
'success_url' => $notify_url,
|
118 |
-
'cancel_url' => $current_url,
|
119 |
-
);
|
120 |
-
|
121 |
-
if ( ! empty( $item_logo ) ) {
|
122 |
-
$opts['line_items'][0]['images'] = array( $item_logo );
|
123 |
-
}
|
124 |
-
|
125 |
-
$session = \Stripe\Checkout\Session::create( $opts );
|
126 |
-
} catch ( Exception $e ) {
|
127 |
-
$err = $e->getMessage();
|
128 |
-
return '<p class="swpm-red-box">' . $err . '</p>';
|
129 |
-
}
|
130 |
-
|
131 |
/* === Stripe Buy Now Button Form === */
|
132 |
$output = '';
|
133 |
$output .= '<div class="swpm-button-wrapper swpm-stripe-buy-now-wrapper">';
|
134 |
$output .= "<form id='swpm-stripe-payment-form-" . $uniqid . "' action='" . $notify_url . "' METHOD='POST'> ";
|
135 |
$output .= "<div style='display: none !important'>";
|
136 |
-
$output .=
|
137 |
-
$output .= "<link rel='stylesheet' href='https://checkout.stripe.com/v3/checkout/button.css' type='text/css' media='all' />";
|
138 |
ob_start();
|
139 |
?>
|
140 |
<script>
|
141 |
var stripe = Stripe('<?php echo esc_js( $publishable_key ); ?>');
|
142 |
jQuery('#swpm-stripe-payment-form-<?php echo esc_js( $uniqid ); ?>').on('submit',function(e) {
|
143 |
e.preventDefault();
|
144 |
-
|
145 |
-
|
146 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
147 |
});
|
148 |
});
|
149 |
</script>
|
@@ -254,7 +216,7 @@ function swpm_render_stripe_sca_subscription_button_sc_output( $button_code, $ar
|
|
254 |
$plan_id = get_post_meta( $button_id, 'stripe_plan_id', true );
|
255 |
|
256 |
SwpmMiscUtils::load_stripe_lib();
|
257 |
-
|
258 |
try {
|
259 |
\Stripe\Stripe::setApiKey( $secret_key );
|
260 |
|
@@ -275,7 +237,7 @@ function swpm_render_stripe_sca_subscription_button_sc_output( $button_code, $ar
|
|
275 |
$opts['subscription_data']['trial_period_days'] = $trial_period;
|
276 |
}
|
277 |
|
278 |
-
$session = \Stripe\Checkout\Session::create( $opts );
|
279 |
} catch ( Exception $e ) {
|
280 |
$err = $e->getMessage();
|
281 |
return '<p class="swpm-red-box">' . $err . '</p>';
|
@@ -286,17 +248,31 @@ function swpm_render_stripe_sca_subscription_button_sc_output( $button_code, $ar
|
|
286 |
$output .= '<div class="swpm-button-wrapper swpm-stripe-buy-now-wrapper">';
|
287 |
$output .= "<form id='swpm-stripe-payment-form-" . $uniqid . "' action='" . $notify_url . "' METHOD='POST'> ";
|
288 |
$output .= "<div style='display: none !important'>";
|
289 |
-
$output .=
|
290 |
-
$output .= "<link rel='stylesheet' href='https://checkout.stripe.com/v3/checkout/button.css' type='text/css' media='all' />";
|
291 |
ob_start();
|
292 |
?>
|
293 |
<script>
|
294 |
var stripe = Stripe('<?php echo esc_js( $publishable_key ); ?>');
|
295 |
jQuery('#swpm-stripe-payment-form-<?php echo esc_js( $uniqid ); ?>').on('submit',function(e) {
|
296 |
e.preventDefault();
|
297 |
-
|
298 |
-
|
299 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
300 |
});
|
301 |
});
|
302 |
</script>
|
52 |
$user_ip = SwpmUtils::get_user_ip_address();
|
53 |
$_SESSION['swpm_payment_button_interaction'] = $user_ip;
|
54 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
55 |
//Sandbox settings
|
56 |
$sandbox_enabled = $settings->get_value( 'enable-sandbox-testing' );
|
57 |
|
68 |
$secret_key = $stripe_live_secret_key;
|
69 |
}
|
70 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
71 |
$uniqid = md5( uniqid() );
|
72 |
$ref_id = 'swpm_' . $uniqid . '|' . $button_id;
|
73 |
|
76 |
|
77 |
$current_url = ( isset( $_SERVER['HTTPS'] ) ? 'https' : 'http' ) . "://$_SERVER[HTTP_HOST]$_SERVER[REQUEST_URI]";
|
78 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
79 |
/* === Stripe Buy Now Button Form === */
|
80 |
$output = '';
|
81 |
$output .= '<div class="swpm-button-wrapper swpm-stripe-buy-now-wrapper">';
|
82 |
$output .= "<form id='swpm-stripe-payment-form-" . $uniqid . "' action='" . $notify_url . "' METHOD='POST'> ";
|
83 |
$output .= "<div style='display: none !important'>";
|
84 |
+
$output .= SwpmMiscUtils::output_stripe_sca_frontend_scripts_once();
|
|
|
85 |
ob_start();
|
86 |
?>
|
87 |
<script>
|
88 |
var stripe = Stripe('<?php echo esc_js( $publishable_key ); ?>');
|
89 |
jQuery('#swpm-stripe-payment-form-<?php echo esc_js( $uniqid ); ?>').on('submit',function(e) {
|
90 |
e.preventDefault();
|
91 |
+
var btn = jQuery(this).find('button').attr('disabled', true);
|
92 |
+
jQuery.post('<?php echo esc_js( admin_url( 'admin-ajax.php' ) ); ?>', {
|
93 |
+
'action': 'swpm_stripe_sca_create_checkout_session',
|
94 |
+
'swpm_button_id': <?php echo esc_js( $button_id ); ?>,
|
95 |
+
'swpm_page_url': '<?php echo esc_js( $current_url ); ?>'
|
96 |
+
}).done(function (response) {
|
97 |
+
if (!response.error) {
|
98 |
+
stripe.redirectToCheckout({sessionId: response.session_id}).then(function (result) {
|
99 |
+
});
|
100 |
+
} else {
|
101 |
+
alert(response.error);
|
102 |
+
btn.attr('disabled', false);
|
103 |
+
return false;
|
104 |
+
}
|
105 |
+
}).fail(function(e) {
|
106 |
+
alert("HTTP error occurred during AJAX request. Error code: "+e.status);
|
107 |
+
btn.attr('disabled', false);
|
108 |
+
return false;
|
109 |
});
|
110 |
});
|
111 |
</script>
|
216 |
$plan_id = get_post_meta( $button_id, 'stripe_plan_id', true );
|
217 |
|
218 |
SwpmMiscUtils::load_stripe_lib();
|
219 |
+
|
220 |
try {
|
221 |
\Stripe\Stripe::setApiKey( $secret_key );
|
222 |
|
237 |
$opts['subscription_data']['trial_period_days'] = $trial_period;
|
238 |
}
|
239 |
|
240 |
+
// $session = \Stripe\Checkout\Session::create( $opts );
|
241 |
} catch ( Exception $e ) {
|
242 |
$err = $e->getMessage();
|
243 |
return '<p class="swpm-red-box">' . $err . '</p>';
|
248 |
$output .= '<div class="swpm-button-wrapper swpm-stripe-buy-now-wrapper">';
|
249 |
$output .= "<form id='swpm-stripe-payment-form-" . $uniqid . "' action='" . $notify_url . "' METHOD='POST'> ";
|
250 |
$output .= "<div style='display: none !important'>";
|
251 |
+
$output .= SwpmMiscUtils::output_stripe_sca_frontend_scripts_once();
|
|
|
252 |
ob_start();
|
253 |
?>
|
254 |
<script>
|
255 |
var stripe = Stripe('<?php echo esc_js( $publishable_key ); ?>');
|
256 |
jQuery('#swpm-stripe-payment-form-<?php echo esc_js( $uniqid ); ?>').on('submit',function(e) {
|
257 |
e.preventDefault();
|
258 |
+
var btn = jQuery(this).find('button').attr('disabled', true);
|
259 |
+
jQuery.post('<?php echo esc_js( admin_url( 'admin-ajax.php' ) ); ?>', {
|
260 |
+
'action': 'swpm_stripe_sca_create_checkout_session',
|
261 |
+
'swpm_button_id': <?php echo esc_js( $button_id ); ?>,
|
262 |
+
'swpm_page_url': '<?php echo esc_js( $current_url ); ?>'
|
263 |
+
}).done(function (response) {
|
264 |
+
if (!response.error) {
|
265 |
+
stripe.redirectToCheckout({sessionId: response.session_id}).then(function (result) {
|
266 |
+
});
|
267 |
+
} else {
|
268 |
+
alert(response.error);
|
269 |
+
btn.attr('disabled', false);
|
270 |
+
return false;
|
271 |
+
}
|
272 |
+
}).fail(function(e) {
|
273 |
+
alert("HTTP error occurred during AJAX request. Error code: "+e.status);
|
274 |
+
btn.attr('disabled', false);
|
275 |
+
return false;
|
276 |
});
|
277 |
});
|
278 |
</script>
|