Version Description
- Added membership level and account status filter in the member search function (Members menu of admin dashboard).
- Updated the Polish language translation.
- Added a filter hook in the get_current_page_url() function.
Download this release
Release Info
Developer | mra13 |
Plugin | Simple Membership |
Version | 3.8.2 |
Comparing to | |
See all releases |
Code changes from version 3.8.0 to 3.8.2
- classes/class.swpm-front-registration.php +1 -1
- classes/class.swpm-members.php +71 -66
- classes/class.swpm-registration.php +3 -1
- classes/class.swpm-utils-misc.php +37 -2
- ipn/swpm-braintree-buy-now-ipn.php +57 -58
- languages/simple-membership-fi.mo +0 -0
- languages/simple-membership-fi.po +76 -46
- languages/simple-membership-pl_PL.mo +0 -0
- languages/simple-membership-pl_PL.po +2808 -457
- languages/simple-membership.pot +902 -400
- readme.txt +14 -1
- simple-wp-membership.php +2 -2
- views/admin_add_level.php +1 -0
- views/admin_edit_level.php +1 -0
- views/admin_members_list.php +40 -13
- views/payments/payment-gateway/braintree_button_shortcode_view.php +42 -11
classes/class.swpm-front-registration.php
CHANGED
@@ -373,7 +373,7 @@ class SwpmFrontRegistration extends SwpmRegistration {
|
|
373 |
}
|
374 |
if ($member->account_state !== 'activation_required') {
|
375 |
//account already active
|
376 |
-
echo SwpmUtils::_('Account already active. <a href="' . $login_page_url . '">
|
377 |
wp_die();
|
378 |
}
|
379 |
$code = FILTER_INPUT(INPUT_GET, 'swpm_token', FILTER_SANITIZE_STRING);
|
373 |
}
|
374 |
if ($member->account_state !== 'activation_required') {
|
375 |
//account already active
|
376 |
+
echo SwpmUtils::_('Account already active. ') . '<a href="' . $login_page_url . '">' . SwpmUtils::_('click here') . '</a>' . SwpmUtils::_(' to login.');
|
377 |
wp_die();
|
378 |
}
|
379 |
$code = FILTER_INPUT(INPUT_GET, 'swpm_token', FILTER_SANITIZE_STRING);
|
classes/class.swpm-members.php
CHANGED
@@ -96,13 +96,13 @@ class SwpmMembers extends WP_List_Table {
|
|
96 |
}
|
97 |
|
98 |
$status = filter_input(INPUT_GET, 'status');
|
99 |
-
$
|
100 |
|
101 |
//Add the search parameter to the query
|
102 |
if (!empty($s)) {
|
103 |
$s = sanitize_text_field($s);
|
104 |
$s = trim($s); //Trim the input
|
105 |
-
$
|
106 |
. " OR first_name LIKE '%" . strip_tags($s) . "%' "
|
107 |
. " OR last_name LIKE '%" . strip_tags($s) . "%' "
|
108 |
. " OR email LIKE '%" . strip_tags($s) . "%' "
|
@@ -113,22 +113,28 @@ class SwpmMembers extends WP_List_Table {
|
|
113 |
}
|
114 |
|
115 |
//Add account status filtering to the query
|
116 |
-
$filter2 = '';
|
117 |
if (!empty($status)) {
|
118 |
if ($status == 'incomplete') {
|
119 |
-
$
|
120 |
} else {
|
121 |
-
$
|
122 |
}
|
123 |
}
|
124 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
125 |
//Build the WHERE clause of the query string
|
126 |
-
if (!empty($
|
127 |
-
$
|
128 |
-
|
129 |
-
|
130 |
-
|
131 |
-
$query .= "WHERE " . $
|
132 |
}
|
133 |
|
134 |
//Build the orderby and order query parameters
|
@@ -139,7 +145,7 @@ class SwpmMembers extends WP_List_Table {
|
|
139 |
$sortable_columns = $this->get_sortable_columns();
|
140 |
$orderby = SwpmUtils::sanitize_value_by_array($orderby, $sortable_columns);
|
141 |
$order = SwpmUtils::sanitize_value_by_array($order, array('DESC' => '1', 'ASC' => '1'));
|
142 |
-
$query.=' ORDER BY ' . $orderby . ' ' . $order;
|
143 |
|
144 |
//Execute the query
|
145 |
$totalitems = $wpdb->query($query); //return the total number of affected rows
|
@@ -152,7 +158,7 @@ class SwpmMembers extends WP_List_Table {
|
|
152 |
$totalpages = ceil($totalitems / $perpage);
|
153 |
if (!empty($paged) && !empty($perpage)) {
|
154 |
$offset = ($paged - 1) * $perpage;
|
155 |
-
$query.=' LIMIT ' . (int) $offset . ',' . (int) $perpage;
|
156 |
}
|
157 |
$this->set_pagination_args(array(
|
158 |
"total_items" => $totalitems,
|
@@ -319,8 +325,8 @@ class SwpmMembers extends WP_List_Table {
|
|
319 |
$to_email_list = implode(',', $emails);
|
320 |
$headers = 'From: ' . $from_address . "\r\n";
|
321 |
$headers .= 'bcc: ' . $to_email_list . "\r\n";
|
322 |
-
$subject=apply_filters('swpm_email_bulk_set_status_subject'
|
323 |
-
$body=apply_filters('swpm_email_bulk_set_status_body'
|
324 |
wp_mail(array()/* $email_list */, $subject, $body, $headers);
|
325 |
SwpmLog::log_simple_debug("Bulk activation email notification sent. Activation email sent to the following email: " . $to_email_list, true);
|
326 |
}
|
@@ -396,7 +402,7 @@ class SwpmMembers extends WP_List_Table {
|
|
396 |
|
397 |
function bulk_operation_menu() {
|
398 |
echo '<div id="poststuff"><div id="post-body">';
|
399 |
-
|
400 |
if (isset($_REQUEST['swpm_bulk_change_level_process'])) {
|
401 |
$errorMsg = "";
|
402 |
$from_level_id = sanitize_text_field($_REQUEST["swpm_bulk_change_level_from"]);
|
@@ -426,8 +432,8 @@ class SwpmMembers extends WP_List_Table {
|
|
426 |
echo $message;
|
427 |
echo '</strong></p></div>';
|
428 |
}
|
429 |
-
|
430 |
-
if(isset($_REQUEST['swpm_bulk_user_start_date_change_process'])){
|
431 |
$errorMsg = "";
|
432 |
$level_id = sanitize_text_field($_REQUEST["swpm_bulk_user_start_date_change_level"]);
|
433 |
$new_date = sanitize_text_field($_REQUEST['swpm_bulk_user_start_date_change_date']);
|
@@ -459,52 +465,52 @@ class SwpmMembers extends WP_List_Table {
|
|
459 |
?>
|
460 |
|
461 |
<div class="postbox">
|
462 |
-
|
463 |
-
|
464 |
-
|
465 |
-
|
466 |
-
|
467 |
-
|
468 |
-
|
469 |
-
|
470 |
-
|
471 |
-
|
472 |
-
|
473 |
-
|
474 |
-
|
475 |
-
|
476 |
-
|
477 |
-
|
478 |
-
|
479 |
-
|
480 |
-
|
481 |
-
|
482 |
-
|
483 |
-
|
484 |
-
|
485 |
-
|
486 |
-
|
487 |
-
|
488 |
-
|
489 |
-
|
490 |
-
|
491 |
-
|
492 |
-
|
493 |
-
|
494 |
-
|
495 |
-
|
496 |
-
|
497 |
-
|
498 |
-
|
499 |
-
|
500 |
-
|
501 |
-
|
502 |
-
|
503 |
-
|
504 |
-
|
505 |
</div></div>
|
506 |
|
507 |
-
|
508 |
<h3 class="hndle"><label for="title"><?php SwpmUtils::e('Bulk Update Access Starts Date of Members'); ?></label></h3>
|
509 |
<div class="inside">
|
510 |
|
@@ -547,11 +553,11 @@ class SwpmMembers extends WP_List_Table {
|
|
547 |
</form>
|
548 |
</div></div>
|
549 |
|
550 |
-
|
551 |
-
jQuery(document).ready(function($){
|
552 |
$('#swpm_bulk_user_start_date_change_date').datepicker({dateFormat: 'yy-mm-dd', changeMonth: true, changeYear: true, yearRange: "-100:+100"});
|
553 |
});
|
554 |
-
|
555 |
<?php
|
556 |
echo '</div></div>'; //<!-- end of #poststuff #post-body -->
|
557 |
}
|
@@ -640,5 +646,4 @@ class SwpmMembers extends WP_List_Table {
|
|
640 |
}
|
641 |
|
642 |
}
|
643 |
-
|
644 |
|
96 |
}
|
97 |
|
98 |
$status = filter_input(INPUT_GET, 'status');
|
99 |
+
$filters = array();
|
100 |
|
101 |
//Add the search parameter to the query
|
102 |
if (!empty($s)) {
|
103 |
$s = sanitize_text_field($s);
|
104 |
$s = trim($s); //Trim the input
|
105 |
+
$filters[] = "( user_name LIKE '%" . strip_tags($s) . "%' "
|
106 |
. " OR first_name LIKE '%" . strip_tags($s) . "%' "
|
107 |
. " OR last_name LIKE '%" . strip_tags($s) . "%' "
|
108 |
. " OR email LIKE '%" . strip_tags($s) . "%' "
|
113 |
}
|
114 |
|
115 |
//Add account status filtering to the query
|
|
|
116 |
if (!empty($status)) {
|
117 |
if ($status == 'incomplete') {
|
118 |
+
$filters[] = "user_name = ''";
|
119 |
} else {
|
120 |
+
$filters[] = "account_state = '" . $status . "'";
|
121 |
}
|
122 |
}
|
123 |
|
124 |
+
//Add membership level filtering
|
125 |
+
$membership_level = filter_input(INPUT_GET, 'membership_level', FILTER_SANITIZE_NUMBER_INT);
|
126 |
+
|
127 |
+
if (!empty($membership_level)) {
|
128 |
+
$filters[] = sprintf("membership_level = '%d'", $membership_level);
|
129 |
+
}
|
130 |
+
|
131 |
//Build the WHERE clause of the query string
|
132 |
+
if (!empty($filters)) {
|
133 |
+
$filter_str = '';
|
134 |
+
foreach ($filters as $ind => $filter) {
|
135 |
+
$filter_str .= $ind === 0 ? $filter : " AND " . $filter;
|
136 |
+
}
|
137 |
+
$query .= "WHERE " . $filter_str;
|
138 |
}
|
139 |
|
140 |
//Build the orderby and order query parameters
|
145 |
$sortable_columns = $this->get_sortable_columns();
|
146 |
$orderby = SwpmUtils::sanitize_value_by_array($orderby, $sortable_columns);
|
147 |
$order = SwpmUtils::sanitize_value_by_array($order, array('DESC' => '1', 'ASC' => '1'));
|
148 |
+
$query .= ' ORDER BY ' . $orderby . ' ' . $order;
|
149 |
|
150 |
//Execute the query
|
151 |
$totalitems = $wpdb->query($query); //return the total number of affected rows
|
158 |
$totalpages = ceil($totalitems / $perpage);
|
159 |
if (!empty($paged) && !empty($perpage)) {
|
160 |
$offset = ($paged - 1) * $perpage;
|
161 |
+
$query .= ' LIMIT ' . (int) $offset . ',' . (int) $perpage;
|
162 |
}
|
163 |
$this->set_pagination_args(array(
|
164 |
"total_items" => $totalitems,
|
325 |
$to_email_list = implode(',', $emails);
|
326 |
$headers = 'From: ' . $from_address . "\r\n";
|
327 |
$headers .= 'bcc: ' . $to_email_list . "\r\n";
|
328 |
+
$subject = apply_filters('swpm_email_bulk_set_status_subject', $subject);
|
329 |
+
$body = apply_filters('swpm_email_bulk_set_status_body', $body);
|
330 |
wp_mail(array()/* $email_list */, $subject, $body, $headers);
|
331 |
SwpmLog::log_simple_debug("Bulk activation email notification sent. Activation email sent to the following email: " . $to_email_list, true);
|
332 |
}
|
402 |
|
403 |
function bulk_operation_menu() {
|
404 |
echo '<div id="poststuff"><div id="post-body">';
|
405 |
+
|
406 |
if (isset($_REQUEST['swpm_bulk_change_level_process'])) {
|
407 |
$errorMsg = "";
|
408 |
$from_level_id = sanitize_text_field($_REQUEST["swpm_bulk_change_level_from"]);
|
432 |
echo $message;
|
433 |
echo '</strong></p></div>';
|
434 |
}
|
435 |
+
|
436 |
+
if (isset($_REQUEST['swpm_bulk_user_start_date_change_process'])) {
|
437 |
$errorMsg = "";
|
438 |
$level_id = sanitize_text_field($_REQUEST["swpm_bulk_user_start_date_change_level"]);
|
439 |
$new_date = sanitize_text_field($_REQUEST['swpm_bulk_user_start_date_change_date']);
|
465 |
?>
|
466 |
|
467 |
<div class="postbox">
|
468 |
+
<h3 class="hndle"><label for="title"><?php SwpmUtils::e('Bulk Update Membership Level of Members'); ?></label></h3>
|
469 |
+
<div class="inside">
|
470 |
+
<p>
|
471 |
+
<?php SwpmUtils::e('You can manually change the membership level of any member by editing the record from the members menu. '); ?>
|
472 |
+
<?php SwpmUtils::e('You can use the following option to bulk update the membership level of users who belong to the level you select below.'); ?>
|
473 |
+
</p>
|
474 |
+
<form method="post" action="">
|
475 |
+
<table width="100%" border="0" cellspacing="0" cellpadding="6">
|
476 |
+
<tr valign="top">
|
477 |
+
<td width="25%" align="left">
|
478 |
+
<strong><?php SwpmUtils::e('Membership Level: '); ?></strong>
|
479 |
+
</td>
|
480 |
+
<td align="left">
|
481 |
+
<select name="swpm_bulk_change_level_from">
|
482 |
+
<option value="please_select"><?php SwpmUtils::e('Select Current Level'); ?></option>
|
483 |
+
<?php echo SwpmUtils::membership_level_dropdown(); ?>
|
484 |
+
</select>
|
485 |
+
<p class="description"><?php SwpmUtils::e('Select the current membership level (the membership level of all members who are in this level will be updated).'); ?></p>
|
486 |
+
</td>
|
487 |
+
</tr>
|
488 |
+
|
489 |
+
<tr valign="top">
|
490 |
+
<td width="25%" align="left">
|
491 |
+
<strong><?php SwpmUtils::e('Level to Change to: '); ?></strong>
|
492 |
+
</td>
|
493 |
+
<td align="left">
|
494 |
+
<select name="swpm_bulk_change_level_to">
|
495 |
+
<option value="please_select"><?php SwpmUtils::e('Select Target Level'); ?></option>
|
496 |
+
<?php echo SwpmUtils::membership_level_dropdown(); ?>
|
497 |
+
</select>
|
498 |
+
<p class="description"><?php SwpmUtils::e('Select the new membership level.'); ?></p>
|
499 |
+
</td>
|
500 |
+
</tr>
|
501 |
+
|
502 |
+
<tr valign="top">
|
503 |
+
<td width="25%" align="left">
|
504 |
+
<input type="submit" class="button" name="swpm_bulk_change_level_process" value="<?php SwpmUtils::e('Bulk Change Membership Level'); ?>" />
|
505 |
+
</td>
|
506 |
+
<td align="left"></td>
|
507 |
+
</tr>
|
508 |
+
|
509 |
+
</table>
|
510 |
+
</form>
|
511 |
</div></div>
|
512 |
|
513 |
+
<div class="postbox">
|
514 |
<h3 class="hndle"><label for="title"><?php SwpmUtils::e('Bulk Update Access Starts Date of Members'); ?></label></h3>
|
515 |
<div class="inside">
|
516 |
|
553 |
</form>
|
554 |
</div></div>
|
555 |
|
556 |
+
<script>
|
557 |
+
jQuery(document).ready(function ($) {
|
558 |
$('#swpm_bulk_user_start_date_change_date').datepicker({dateFormat: 'yy-mm-dd', changeMonth: true, changeYear: true, yearRange: "-100:+100"});
|
559 |
});
|
560 |
+
</script>
|
561 |
<?php
|
562 |
echo '</div></div>'; //<!-- end of #poststuff #post-body -->
|
563 |
}
|
646 |
}
|
647 |
|
648 |
}
|
|
|
649 |
|
classes/class.swpm-registration.php
CHANGED
@@ -28,7 +28,9 @@ abstract class SwpmRegistration {
|
|
28 |
$member_id = $swpm_user->member_id;
|
29 |
$act_code = md5(uniqid() . $member_id);
|
30 |
$enc_pass = SwpmUtils::crypt($member_info['plain_password']);
|
31 |
-
|
|
|
|
|
32 |
$body = $settings->get_value('email-activation-mail-body');
|
33 |
$subject = $settings->get_value('email-activation-mail-subject');
|
34 |
$activation_link = add_query_arg(array(
|
28 |
$member_id = $swpm_user->member_id;
|
29 |
$act_code = md5(uniqid() . $member_id);
|
30 |
$enc_pass = SwpmUtils::crypt($member_info['plain_password']);
|
31 |
+
$user_data = array('timestamp' => time(), 'act_code' => $act_code, 'plain_password' => $enc_pass);
|
32 |
+
$user_data = apply_filters('swpm_email_activation_data', $user_data);
|
33 |
+
update_option('swpm_email_activation_data_usr_' . $member_id, $user_data, false);
|
34 |
$body = $settings->get_value('email-activation-mail-body');
|
35 |
$subject = $settings->get_value('email-activation-mail-subject');
|
36 |
$activation_link = add_query_arg(array(
|
classes/class.swpm-utils-misc.php
CHANGED
@@ -167,7 +167,7 @@ class SwpmMiscUtils {
|
|
167 |
$redirect_html = sprintf('<meta http-equiv="refresh" content="%d; url=\'%s\'" />', $timeout, $redirect_url);
|
168 |
$redir_msg = SwpmUtils::_('You will be automatically redirected in a few seconds. If not, please %s.');
|
169 |
$redir_msg = sprintf($redir_msg, '<a href="' . $redirect_url . '">' . SwpmUtils::_('click here') . '</a>');
|
170 |
-
|
171 |
$msg = $msg . '<br/><br/>' . $redir_msg . $redirect_html;
|
172 |
$title = SwpmUtils::_('Action Status');
|
173 |
wp_die($msg, $title);
|
@@ -177,7 +177,9 @@ class SwpmMiscUtils {
|
|
177 |
$pageURL = 'http';
|
178 |
|
179 |
if (isset($_SERVER['SCRIPT_URI']) && !empty($_SERVER['SCRIPT_URI'])) {
|
180 |
-
|
|
|
|
|
181 |
}
|
182 |
|
183 |
if (isset($_SERVER["HTTPS"]) && ($_SERVER["HTTPS"] == "on")) {
|
@@ -189,6 +191,39 @@ class SwpmMiscUtils {
|
|
189 |
} else {
|
190 |
$pageURL .= ltrim($_SERVER["SERVER_NAME"], ".*") . $_SERVER["REQUEST_URI"];
|
191 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
192 |
return $pageURL;
|
193 |
}
|
194 |
|
167 |
$redirect_html = sprintf('<meta http-equiv="refresh" content="%d; url=\'%s\'" />', $timeout, $redirect_url);
|
168 |
$redir_msg = SwpmUtils::_('You will be automatically redirected in a few seconds. If not, please %s.');
|
169 |
$redir_msg = sprintf($redir_msg, '<a href="' . $redirect_url . '">' . SwpmUtils::_('click here') . '</a>');
|
170 |
+
|
171 |
$msg = $msg . '<br/><br/>' . $redir_msg . $redirect_html;
|
172 |
$title = SwpmUtils::_('Action Status');
|
173 |
wp_die($msg, $title);
|
177 |
$pageURL = 'http';
|
178 |
|
179 |
if (isset($_SERVER['SCRIPT_URI']) && !empty($_SERVER['SCRIPT_URI'])) {
|
180 |
+
$pageURL = $_SERVER['SCRIPT_URI'];
|
181 |
+
$pageURL = apply_filters('swpm_get_current_page_url_filter', $pageURL);
|
182 |
+
return $pageURL;
|
183 |
}
|
184 |
|
185 |
if (isset($_SERVER["HTTPS"]) && ($_SERVER["HTTPS"] == "on")) {
|
191 |
} else {
|
192 |
$pageURL .= ltrim($_SERVER["SERVER_NAME"], ".*") . $_SERVER["REQUEST_URI"];
|
193 |
}
|
194 |
+
|
195 |
+
$pageURL = apply_filters('swpm_get_current_page_url_filter', $pageURL);
|
196 |
+
|
197 |
+
return $pageURL;
|
198 |
+
}
|
199 |
+
|
200 |
+
/*
|
201 |
+
* This is an alternative to the get_current_page_url() function. It needs to be tested on many different server conditions before it can be utilized
|
202 |
+
*/
|
203 |
+
public static function get_current_page_url_alt() {
|
204 |
+
$url_parts = array();
|
205 |
+
$url_parts['proto'] = 'http';
|
206 |
+
|
207 |
+
if (isset($_SERVER['SCRIPT_URI']) && !empty($_SERVER['SCRIPT_URI'])) {
|
208 |
+
return $_SERVER['SCRIPT_URI'];
|
209 |
+
}
|
210 |
+
|
211 |
+
if (isset($_SERVER["HTTPS"]) && ($_SERVER["HTTPS"] == "on")) {
|
212 |
+
$url_parts['proto'] = 'https';
|
213 |
+
}
|
214 |
+
|
215 |
+
$url_parts['port'] = '';
|
216 |
+
if (isset($_SERVER["SERVER_PORT"]) && ($_SERVER["SERVER_PORT"] != "80") && ($_SERVER["SERVER_PORT"] != "443")) {
|
217 |
+
$url_parts['port'] = $_SERVER["SERVER_PORT"];
|
218 |
+
}
|
219 |
+
|
220 |
+
$url_parts['domain'] = ltrim($_SERVER["SERVER_NAME"], ".*");
|
221 |
+
$url_parts['uri'] = $_SERVER["REQUEST_URI"];
|
222 |
+
|
223 |
+
$url_parts = apply_filters('swpm_get_current_page_url_alt_filter', $url_parts);
|
224 |
+
|
225 |
+
$pageURL = sprintf('%s://%s%s%s', $url_parts['proto'], $url_parts['domain'], !empty($url_parts['port']) ? ':' . $url_parts['port'] : '', $url_parts['uri']);
|
226 |
+
|
227 |
return $pageURL;
|
228 |
}
|
229 |
|
ipn/swpm-braintree-buy-now-ipn.php
CHANGED
@@ -8,99 +8,97 @@ class SwpmBraintreeBuyNowIpnHandler {
|
|
8 |
|
9 |
$this->handle_braintree_ipn();
|
10 |
}
|
11 |
-
|
12 |
-
public function handle_braintree_ipn(){
|
13 |
SwpmLog::log_simple_debug("Braintree Buy Now IPN received. Processing request...", true);
|
14 |
//SwpmLog::log_simple_debug(print_r($_REQUEST, true), true);//Useful for debugging purpose
|
15 |
-
|
16 |
//Include the Braintree library.
|
17 |
require_once(SIMPLE_WP_MEMBERSHIP_PATH . 'lib/braintree/lib/autoload.php');
|
18 |
-
|
19 |
//Read and sanitize the request parameters.
|
20 |
-
$button_id =
|
21 |
-
$
|
22 |
-
$
|
23 |
-
|
24 |
-
|
25 |
//Retrieve the CPT for this button
|
26 |
-
$button_cpt = get_post($button_id);
|
27 |
-
if(!$button_cpt){
|
28 |
//Fatal error. Could not find this payment button post object.
|
29 |
-
SwpmLog::log_simple_debug("Fatal Error! Failed to retrieve the payment button post object for the given button ID: ". $button_id, false);
|
30 |
-
wp_die("Fatal Error! Payment button (ID: "
|
31 |
}
|
32 |
-
|
33 |
$membership_level_id = get_post_meta($button_id, 'membership_level_id', true);
|
34 |
-
|
35 |
//Validate and verify some of the main values.
|
36 |
$true_payment_amount = get_post_meta($button_id, 'payment_amount', true);
|
37 |
-
if(
|
38 |
//Fatal error. Payment amount may have been tampered with.
|
39 |
-
$error_msg = 'Fatal Error! Received payment amount ('
|
40 |
SwpmLog::log_simple_debug($error_msg, false);
|
41 |
wp_die($error_msg);
|
42 |
}
|
43 |
-
|
44 |
//Validation passed. Go ahead with the charge.
|
45 |
-
|
46 |
//Sandbox and other settings
|
47 |
$settings = SwpmSettings::get_instance();
|
48 |
$sandbox_enabled = $settings->get_value('enable-sandbox-testing');
|
49 |
-
if($sandbox_enabled){
|
50 |
SwpmLog::log_simple_debug("Sandbox payment mode is enabled. Using sandbox enviroment.", true);
|
51 |
-
$braintree_env="sandbox"; //Use sandbox environment
|
52 |
} else {
|
53 |
-
$braintree_env="production"; //Use production environment
|
54 |
}
|
55 |
|
56 |
//Set Braintree library environment and keys
|
57 |
try {
|
58 |
-
|
59 |
-
|
60 |
-
|
61 |
-
|
62 |
|
63 |
-
|
64 |
|
65 |
|
66 |
-
|
67 |
|
68 |
-
|
69 |
-
|
70 |
-
|
71 |
-
|
72 |
-
|
73 |
-
|
74 |
-
|
75 |
-
|
76 |
-
|
|
|
|
|
77 |
} catch (Exception $e) {
|
78 |
-
|
79 |
-
|
80 |
}
|
81 |
|
82 |
if (!$result->success) {
|
83 |
-
SwpmLog::log_simple_debug("Braintree transaction error occurred: "
|
84 |
-
wp_die("Braintree transaction error occurred: "
|
85 |
-
}
|
86 |
-
else {
|
87 |
|
88 |
//Everything went ahead smoothly with the charge.
|
89 |
SwpmLog::log_simple_debug("Braintree Buy Now charge successful.", true);
|
90 |
|
91 |
//Grab the transaction ID.
|
92 |
-
$txn_id = $result->transaction->id
|
93 |
|
94 |
-
$custom =
|
95 |
$custom_var = SwpmTransactions::parse_custom_var($custom);
|
96 |
-
$swpm_id = isset($custom_var['swpm_id'])? $custom_var['swpm_id']: '';
|
97 |
-
|
98 |
//Create the $ipn_data array.
|
99 |
$ipn_data = array();
|
100 |
$ipn_data['mc_gross'] = $payment_amount;
|
101 |
-
$ipn_data['first_name'] =
|
102 |
-
$ipn_data['last_name'] =
|
103 |
-
$ipn_data['payer_email'] =
|
104 |
$ipn_data['membership_level'] = $membership_level_id;
|
105 |
$ipn_data['txn_id'] = $txn_id;
|
106 |
$ipn_data['subscr_id'] = $txn_id;
|
@@ -109,7 +107,7 @@ class SwpmBraintreeBuyNowIpnHandler {
|
|
109 |
$ipn_data['custom'] = $custom;
|
110 |
$ipn_data['gateway'] = 'braintree';
|
111 |
$ipn_data['status'] = 'completed';
|
112 |
-
|
113 |
$ipn_data['address_street'] = '';
|
114 |
$ipn_data['address_city'] = '';
|
115 |
$ipn_data['address_state'] = '';
|
@@ -117,27 +115,28 @@ class SwpmBraintreeBuyNowIpnHandler {
|
|
117 |
$ipn_data['country'] = '';
|
118 |
|
119 |
//Handle the membership signup related tasks.
|
120 |
-
swpm_handle_subsc_signup_stand_alone($ipn_data
|
121 |
-
|
122 |
//Save the transaction record
|
123 |
SwpmTransactions::save_txn_record($ipn_data);
|
124 |
SwpmLog::log_simple_debug('Transaction data saved.', true);
|
125 |
-
|
126 |
//Trigger the stripe IPN processed action hook (so other plugins can can listen for this event).
|
127 |
do_action('swpm_braintree_ipn_processed', $ipn_data);
|
128 |
-
|
129 |
do_action('swpm_payment_ipn_processed', $ipn_data);
|
130 |
-
|
131 |
//Redirect the user to the return URL (or to the homepage if a return URL is not specified for this payment button).
|
132 |
$return_url = get_post_meta($button_id, 'return_url', true);
|
133 |
if (empty($return_url)) {
|
134 |
$return_url = SIMPLE_WP_MEMBERSHIP_SITE_HOME_URL;
|
135 |
}
|
136 |
-
SwpmLog::log_simple_debug("Redirecting customer to: "
|
137 |
SwpmLog::log_simple_debug("End of Braintree Buy Now IPN processing.", true, true);
|
138 |
SwpmMiscUtils::redirect_to_url($return_url);
|
139 |
}
|
140 |
}
|
|
|
141 |
}
|
142 |
|
143 |
-
$swpm_braintree_buy_ipn = new SwpmBraintreeBuyNowIpnHandler();
|
8 |
|
9 |
$this->handle_braintree_ipn();
|
10 |
}
|
11 |
+
|
12 |
+
public function handle_braintree_ipn() {
|
13 |
SwpmLog::log_simple_debug("Braintree Buy Now IPN received. Processing request...", true);
|
14 |
//SwpmLog::log_simple_debug(print_r($_REQUEST, true), true);//Useful for debugging purpose
|
|
|
15 |
//Include the Braintree library.
|
16 |
require_once(SIMPLE_WP_MEMBERSHIP_PATH . 'lib/braintree/lib/autoload.php');
|
17 |
+
|
18 |
//Read and sanitize the request parameters.
|
19 |
+
$button_id = filter_input(INPUT_POST, 'item_number', FILTER_SANITIZE_NUMBER_INT);
|
20 |
+
$button_title = filter_input(INPUT_POST, 'item_name', FILTER_SANITIZE_STRING);
|
21 |
+
$payment_amount = filter_input(INPUT_POST, 'item_price', FILTER_SANITIZE_STRING);
|
22 |
+
|
|
|
23 |
//Retrieve the CPT for this button
|
24 |
+
$button_cpt = get_post($button_id);
|
25 |
+
if (!$button_cpt) {
|
26 |
//Fatal error. Could not find this payment button post object.
|
27 |
+
SwpmLog::log_simple_debug("Fatal Error! Failed to retrieve the payment button post object for the given button ID: " . $button_id, false);
|
28 |
+
wp_die("Fatal Error! Payment button (ID: " . $button_id . ") does not exist. This request will fail.");
|
29 |
}
|
30 |
+
|
31 |
$membership_level_id = get_post_meta($button_id, 'membership_level_id', true);
|
32 |
+
|
33 |
//Validate and verify some of the main values.
|
34 |
$true_payment_amount = get_post_meta($button_id, 'payment_amount', true);
|
35 |
+
if ($payment_amount != $true_payment_amount) {
|
36 |
//Fatal error. Payment amount may have been tampered with.
|
37 |
+
$error_msg = 'Fatal Error! Received payment amount (' . $payment_amount . ') does not match with the original amount (' . $true_payment_amount . ')';
|
38 |
SwpmLog::log_simple_debug($error_msg, false);
|
39 |
wp_die($error_msg);
|
40 |
}
|
41 |
+
|
42 |
//Validation passed. Go ahead with the charge.
|
|
|
43 |
//Sandbox and other settings
|
44 |
$settings = SwpmSettings::get_instance();
|
45 |
$sandbox_enabled = $settings->get_value('enable-sandbox-testing');
|
46 |
+
if ($sandbox_enabled) {
|
47 |
SwpmLog::log_simple_debug("Sandbox payment mode is enabled. Using sandbox enviroment.", true);
|
48 |
+
$braintree_env = "sandbox"; //Use sandbox environment
|
49 |
} else {
|
50 |
+
$braintree_env = "production"; //Use production environment
|
51 |
}
|
52 |
|
53 |
//Set Braintree library environment and keys
|
54 |
try {
|
55 |
+
Braintree_Configuration::environment($braintree_env);
|
56 |
+
Braintree_Configuration::merchantId(get_post_meta($button_id, 'braintree_merchant_acc_id', true));
|
57 |
+
Braintree_Configuration::publicKey(get_post_meta($button_id, 'braintree_public_key', true));
|
58 |
+
Braintree_Configuration::privateKey(get_post_meta($button_id, 'braintree_private_key', true));
|
59 |
|
60 |
+
$braintree_merc_acc_name = get_post_meta($button_id, 'braintree_merchant_acc_name', true);
|
61 |
|
62 |
|
63 |
+
// Create the charge on Braintree's servers - this will charge the user's card
|
64 |
|
65 |
+
$nonce = filter_input(INPUT_POST, 'payment_method_nonce', FILTER_SANITIZE_STRING);
|
66 |
+
|
67 |
+
$result = Braintree_Transaction::sale([
|
68 |
+
'amount' => $payment_amount,
|
69 |
+
'paymentMethodNonce' => $nonce,
|
70 |
+
'channel' => 'TipsandTricks_SP',
|
71 |
+
'options' => [
|
72 |
+
'submitForSettlement' => True
|
73 |
+
],
|
74 |
+
'merchantAccountId' => $braintree_merc_acc_name,
|
75 |
+
]);
|
76 |
} catch (Exception $e) {
|
77 |
+
SwpmLog::log_simple_debug("Braintree library error occurred: " . get_class($e) . ", button ID: " . $button_id, false);
|
78 |
+
wp_die('Braintree library error occurred: ' . get_class($e));
|
79 |
}
|
80 |
|
81 |
if (!$result->success) {
|
82 |
+
SwpmLog::log_simple_debug("Braintree transaction error occurred: " . $result->transaction->status . ", button ID: " . $button_id, false);
|
83 |
+
wp_die("Braintree transaction error occurred: " . $result->transaction->status);
|
84 |
+
} else {
|
|
|
85 |
|
86 |
//Everything went ahead smoothly with the charge.
|
87 |
SwpmLog::log_simple_debug("Braintree Buy Now charge successful.", true);
|
88 |
|
89 |
//Grab the transaction ID.
|
90 |
+
$txn_id = $result->transaction->id; //$charge->balance_transaction;
|
91 |
|
92 |
+
$custom = filter_input(INPUT_POST, 'custom', FILTER_SANITIZE_STRING);
|
93 |
$custom_var = SwpmTransactions::parse_custom_var($custom);
|
94 |
+
$swpm_id = isset($custom_var['swpm_id']) ? $custom_var['swpm_id'] : '';
|
95 |
+
|
96 |
//Create the $ipn_data array.
|
97 |
$ipn_data = array();
|
98 |
$ipn_data['mc_gross'] = $payment_amount;
|
99 |
+
$ipn_data['first_name'] = filter_input(INPUT_POST, 'first_name', FILTER_SANITIZE_STRING);
|
100 |
+
$ipn_data['last_name'] = filter_input(INPUT_POST, 'last_name', FILTER_SANITIZE_STRING);
|
101 |
+
$ipn_data['payer_email'] = filter_input(INPUT_POST, 'member_email', FILTER_SANITIZE_EMAIL);
|
102 |
$ipn_data['membership_level'] = $membership_level_id;
|
103 |
$ipn_data['txn_id'] = $txn_id;
|
104 |
$ipn_data['subscr_id'] = $txn_id;
|
107 |
$ipn_data['custom'] = $custom;
|
108 |
$ipn_data['gateway'] = 'braintree';
|
109 |
$ipn_data['status'] = 'completed';
|
110 |
+
|
111 |
$ipn_data['address_street'] = '';
|
112 |
$ipn_data['address_city'] = '';
|
113 |
$ipn_data['address_state'] = '';
|
115 |
$ipn_data['country'] = '';
|
116 |
|
117 |
//Handle the membership signup related tasks.
|
118 |
+
swpm_handle_subsc_signup_stand_alone($ipn_data, $membership_level_id, $txn_id, $swpm_id);
|
119 |
+
|
120 |
//Save the transaction record
|
121 |
SwpmTransactions::save_txn_record($ipn_data);
|
122 |
SwpmLog::log_simple_debug('Transaction data saved.', true);
|
123 |
+
|
124 |
//Trigger the stripe IPN processed action hook (so other plugins can can listen for this event).
|
125 |
do_action('swpm_braintree_ipn_processed', $ipn_data);
|
126 |
+
|
127 |
do_action('swpm_payment_ipn_processed', $ipn_data);
|
128 |
+
|
129 |
//Redirect the user to the return URL (or to the homepage if a return URL is not specified for this payment button).
|
130 |
$return_url = get_post_meta($button_id, 'return_url', true);
|
131 |
if (empty($return_url)) {
|
132 |
$return_url = SIMPLE_WP_MEMBERSHIP_SITE_HOME_URL;
|
133 |
}
|
134 |
+
SwpmLog::log_simple_debug("Redirecting customer to: " . $return_url, true);
|
135 |
SwpmLog::log_simple_debug("End of Braintree Buy Now IPN processing.", true, true);
|
136 |
SwpmMiscUtils::redirect_to_url($return_url);
|
137 |
}
|
138 |
}
|
139 |
+
|
140 |
}
|
141 |
|
142 |
+
$swpm_braintree_buy_ipn = new SwpmBraintreeBuyNowIpnHandler();
|
languages/simple-membership-fi.mo
CHANGED
Binary file
|
languages/simple-membership-fi.po
CHANGED
@@ -22,7 +22,7 @@ msgstr "Ylläpitäjä ei salli hallintapaneelinäkymää."
|
|
22 |
|
23 |
#: classes/class.simple-wp-membership.php:173
|
24 |
msgid "Go back to the home page by "
|
25 |
-
msgstr "Mene takaisin kotisivulle"
|
26 |
|
27 |
#: classes/class.simple-wp-membership.php:173
|
28 |
msgid "clicking here"
|
@@ -87,13 +87,13 @@ msgstr "Lisäosat"
|
|
87 |
#: classes/class.swpm-access-control.php:47
|
88 |
#: classes/class.swpm-access-control.php:120
|
89 |
msgid "You need to login to view this content. "
|
90 |
-
msgstr "Kirjaudu nähdäksesi tämän sisällön."
|
91 |
|
92 |
#: classes/class.swpm-access-control.php:56
|
93 |
#: classes/class.swpm-access-control.php:128
|
94 |
#: classes/class.swpm-access-control.php:212
|
95 |
msgid "Your account has expired. "
|
96 |
-
msgstr "Tilisi on vanhentunut."
|
97 |
|
98 |
#: classes/class.swpm-access-control.php:66
|
99 |
#: classes/class.swpm-access-control.php:138
|
@@ -109,7 +109,7 @@ msgstr "Tätä sisältöä ei näytetä jäsenyystasollasi."
|
|
109 |
|
110 |
#: classes/class.swpm-access-control.php:204
|
111 |
msgid "You need to login to view the rest of the content. "
|
112 |
-
msgstr "Kirjaudu nähdäksesi loput sisällöstä."
|
113 |
|
114 |
#: classes/class.swpm-access-control.php:217
|
115 |
msgid " The rest of the content is not permitted for your membership level."
|
@@ -139,7 +139,7 @@ msgstr ""
|
|
139 |
"Virhe! Kertakäyttöavaimen varmennus epäonnistui käyttäjän muokkaamisen "
|
140 |
"yhteydessä."
|
141 |
|
142 |
-
#: classes/class.swpm-admin-registration.php:
|
143 |
msgid "Your current password"
|
144 |
msgstr "Nykyinen salasanasi"
|
145 |
|
@@ -159,7 +159,7 @@ msgstr "Nimessä on kelpaamaton merkki"
|
|
159 |
msgid "Available"
|
160 |
msgstr "Käytettävissä"
|
161 |
|
162 |
-
#: classes/class.swpm-auth.php:
|
163 |
msgid ""
|
164 |
"Warning! Simple Membership plugin cannot process this login request to "
|
165 |
"prevent you from getting logged out of WP Admin accidentally."
|
@@ -167,7 +167,7 @@ msgstr ""
|
|
167 |
"Varoitus! Simple Membership lisäosa ei voi käsitellä kirjautumispyyntöä "
|
168 |
"estääkseen tahattoman uloskirjautumisen WP ylläpidosta. "
|
169 |
|
170 |
-
#: classes/class.swpm-auth.php:
|
171 |
msgid ""
|
172 |
"You are logged into the site as an ADMIN user in this browser. First, logout "
|
173 |
"from WP Admin then you will be able to log in as a member."
|
@@ -175,7 +175,7 @@ msgstr ""
|
|
175 |
"Olet kirjautunut sivustolle tässä selaimessa ylläpitäjänä. Kirjaudu ensin "
|
176 |
"ulos WP ylläpidosta, jonka jälkeen voit kirjautua jäsenenä."
|
177 |
|
178 |
-
#: classes/class.swpm-auth.php:
|
179 |
msgid ""
|
180 |
"Alternatively, you can use a different browser (where you are not logged-in "
|
181 |
"as ADMIN) to test the membership login."
|
@@ -183,7 +183,7 @@ msgstr ""
|
|
183 |
"Vaihtoehtoisesti voit kirjautua toisella selaimella (jossa et ole "
|
184 |
"kirjautuneen ylläpitäjänä) testataksesi jäsenenä kirjautumista."
|
185 |
|
186 |
-
#: classes/class.swpm-auth.php:
|
187 |
msgid ""
|
188 |
"Your normal visitors or members will never see this message. This message is "
|
189 |
"ONLY for ADMIN user."
|
@@ -191,19 +191,19 @@ msgstr ""
|
|
191 |
"Tavalliset vierailijat tai jäsenet eivät näe tätä viestiä. Tämä viesti "
|
192 |
"näytetään ainoastaan ylläpitäjille."
|
193 |
|
194 |
-
#: classes/class.swpm-auth.php:
|
195 |
msgid "Captcha validation failed on login form."
|
196 |
-
msgstr "
|
197 |
|
198 |
-
#: classes/class.swpm-auth.php:
|
199 |
msgid "User Not Found."
|
200 |
msgstr "Käyttäjää ei löydy."
|
201 |
|
202 |
-
#: classes/class.swpm-auth.php:
|
203 |
msgid "Password Empty or Invalid."
|
204 |
msgstr "Salasana tyhjä tai virheellinen."
|
205 |
|
206 |
-
#: classes/class.swpm-auth.php:
|
207 |
msgid "Account is inactive."
|
208 |
msgstr "Tili ei ole käytössä."
|
209 |
|
@@ -213,9 +213,9 @@ msgstr "Tili on vanhentunut."
|
|
213 |
|
214 |
#: classes/class.swpm-auth.php:131
|
215 |
msgid "Account is pending."
|
216 |
-
msgstr "Tili
|
217 |
|
218 |
-
#: classes/class.swpm-auth.php:
|
219 |
msgid "You are logged in as:"
|
220 |
msgstr "Olet kirjautunut käyttäjänä:"
|
221 |
|
@@ -295,34 +295,52 @@ msgid ""
|
|
295 |
"Wordpress account exists with given username. But given email doesn't match."
|
296 |
msgstr "Käyttäjätunnukselle löytyy tili, mutta annettu sähköposti ei täsmää."
|
297 |
|
298 |
-
#: classes/class.swpm-form.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
299 |
msgid ""
|
300 |
"Wordpress account exists with given email. But given username doesn't match."
|
301 |
msgstr "Sähköpostille löytyy tili, mutta annettu käyttäjätunnus ei täsmää."
|
302 |
|
303 |
-
#: classes/class.swpm-form.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
304 |
msgid "Username is required"
|
305 |
msgstr "Käyttäjätunnus tarvitaan"
|
306 |
|
307 |
-
#: classes/class.swpm-form.php:
|
308 |
msgid "Username contains invalid character"
|
309 |
msgstr "Käyttäjätunnuksessa on virheellisiä merkkejä."
|
310 |
|
311 |
-
#: classes/class.swpm-form.php:
|
312 |
msgid "Username already exists."
|
313 |
msgstr "Käyttäjätunnus on jo käytössä."
|
314 |
|
315 |
-
#: classes/class.swpm-form.php:
|
316 |
msgid "Password is required"
|
317 |
msgstr "Salasana on pakollinen"
|
318 |
|
319 |
-
#: classes/class.swpm-form.php:
|
320 |
msgid "Password mismatch"
|
321 |
msgstr "Salasanat eivät täsmää"
|
322 |
|
323 |
#: classes/class.swpm-form.php:96
|
324 |
msgid "Email is required"
|
325 |
-
msgstr "Sähköposti
|
326 |
|
327 |
#: classes/class.swpm-form.php:100
|
328 |
msgid "Email is invalid"
|
@@ -363,7 +381,11 @@ msgstr ""
|
|
363 |
#: classes/class.swpm-front-registration.php:45
|
364 |
#: classes/class.swpm-utils-misc.php:219 views/login.php:36
|
365 |
msgid "Join Us"
|
366 |
-
msgstr "
|
|
|
|
|
|
|
|
|
367 |
|
368 |
#: classes/class.swpm-front-registration.php:47
|
369 |
msgid ""
|
@@ -386,26 +408,26 @@ msgstr "Turvatarkistus: captcha varmistus epäonnistui."
|
|
386 |
|
387 |
#: classes/class.swpm-front-registration.php:100
|
388 |
msgid "Registration Successful. "
|
389 |
-
msgstr "Rekisteröinti onnistui."
|
390 |
|
391 |
-
#: classes/class.swpm-front-registration.php:
|
392 |
-
#: classes/class.swpm-utils-misc.php:
|
393 |
msgid "Please"
|
394 |
-
msgstr "
|
395 |
|
396 |
-
#: classes/class.swpm-front-registration.php:
|
397 |
-
#: classes/class.swpm-utils-misc.php:
|
398 |
msgid "Login"
|
399 |
-
msgstr "Kirjaudu"
|
400 |
|
401 |
#: classes/class.swpm-front-registration.php:113
|
402 |
#: classes/class.swpm-front-registration.php:236
|
403 |
msgid "Please correct the following"
|
404 |
-
msgstr "Korjaathan seuraavat"
|
405 |
|
406 |
#: classes/class.swpm-front-registration.php:158
|
407 |
msgid "Membership Level Couldn't be found."
|
408 |
-
msgstr "
|
409 |
|
410 |
#: classes/class.swpm-front-registration.php:209
|
411 |
msgid "Error! Nonce verification failed for front end profile edit."
|
@@ -436,7 +458,7 @@ msgstr "Kyseiselle sähköpostille ei löydy käyttäjää."
|
|
436 |
#: classes/class.swpm-front-registration.php:258
|
437 |
#: classes/class.swpm-front-registration.php:284
|
438 |
msgid "Email Address: "
|
439 |
-
msgstr "Sähköpostiosoite:"
|
440 |
|
441 |
#: classes/class.swpm-front-registration.php:283
|
442 |
msgid "New password has been sent to your email address."
|
@@ -1132,17 +1154,17 @@ msgstr "Profiili"
|
|
1132 |
msgid "Password Reset"
|
1133 |
msgstr "Salasanan resetointi"
|
1134 |
|
1135 |
-
#: classes/class.swpm-utils-misc.php:
|
1136 |
msgid "Not a Member?"
|
1137 |
-
msgstr "
|
1138 |
|
1139 |
-
#: classes/class.swpm-utils-misc.php:
|
1140 |
msgid "renew"
|
1141 |
msgstr "uusi"
|
1142 |
|
1143 |
#: classes/class.swpm-utils-misc.php:230
|
1144 |
msgid " your account to gain access to this content."
|
1145 |
-
msgstr "tilisi päästäksesi tähän sisältöön."
|
1146 |
|
1147 |
#: classes/class.swpm-utils-misc.php:272 classes/class.swpm-utils-misc.php:278
|
1148 |
msgid "Error! This action ("
|
@@ -1156,23 +1178,23 @@ msgstr "Virhe! Valitulle sapluunalle ei löydy polkua (path):"
|
|
1156 |
msgid "Never"
|
1157 |
msgstr "Ei koskaan"
|
1158 |
|
1159 |
-
#: classes/class.swpm-utils.php:115
|
1160 |
msgid "Active"
|
1161 |
msgstr "Aktiivinen"
|
1162 |
|
1163 |
-
#: classes/class.swpm-utils.php:116
|
1164 |
msgid "Inactive"
|
1165 |
msgstr "Inaktiivinen"
|
1166 |
|
1167 |
-
#: classes/class.swpm-utils.php:117
|
1168 |
msgid "Pending"
|
1169 |
msgstr "Vireillä"
|
1170 |
|
1171 |
-
#: classes/class.swpm-utils.php:118
|
1172 |
msgid "Expired"
|
1173 |
msgstr "Vanhentunut"
|
1174 |
|
1175 |
-
#: classes/class.swpm-utils.php:
|
1176 |
msgid "Delete Account"
|
1177 |
msgstr "Poista tili"
|
1178 |
|
@@ -1601,10 +1623,14 @@ msgstr ""
|
|
1601 |
msgid "Registration completion links will appear below"
|
1602 |
msgstr "Rekisteröinnin vahvistuslinkit ilmestyvät alle."
|
1603 |
|
1604 |
-
#: views/forgot_password.php:
|
1605 |
msgid "Reset Password"
|
1606 |
msgstr "Resetoi salasana"
|
1607 |
|
|
|
|
|
|
|
|
|
1608 |
#: views/loggedin.php:6
|
1609 |
msgid "Logged in as"
|
1610 |
msgstr "Kirjautunut käyttäjänä"
|
@@ -1617,9 +1643,13 @@ msgstr "Jäsenyys"
|
|
1617 |
msgid "Account Expiry"
|
1618 |
msgstr "Tilin vanheneminen"
|
1619 |
|
1620 |
-
#: views/loggedin.php:
|
1621 |
msgid "Logout"
|
1622 |
-
msgstr "
|
|
|
|
|
|
|
|
|
1623 |
|
1624 |
#: views/login.php:11
|
1625 |
msgid "Username or Email"
|
22 |
|
23 |
#: classes/class.simple-wp-membership.php:173
|
24 |
msgid "Go back to the home page by "
|
25 |
+
msgstr "Mene takaisin kotisivulle "
|
26 |
|
27 |
#: classes/class.simple-wp-membership.php:173
|
28 |
msgid "clicking here"
|
87 |
#: classes/class.swpm-access-control.php:47
|
88 |
#: classes/class.swpm-access-control.php:120
|
89 |
msgid "You need to login to view this content. "
|
90 |
+
msgstr "Kirjaudu sisään nähdäksesi tämän sisällön. "
|
91 |
|
92 |
#: classes/class.swpm-access-control.php:56
|
93 |
#: classes/class.swpm-access-control.php:128
|
94 |
#: classes/class.swpm-access-control.php:212
|
95 |
msgid "Your account has expired. "
|
96 |
+
msgstr "Tilisi on vanhentunut. "
|
97 |
|
98 |
#: classes/class.swpm-access-control.php:66
|
99 |
#: classes/class.swpm-access-control.php:138
|
109 |
|
110 |
#: classes/class.swpm-access-control.php:204
|
111 |
msgid "You need to login to view the rest of the content. "
|
112 |
+
msgstr "Kirjaudu sisään nähdäksesi loput sisällöstä. "
|
113 |
|
114 |
#: classes/class.swpm-access-control.php:217
|
115 |
msgid " The rest of the content is not permitted for your membership level."
|
139 |
"Virhe! Kertakäyttöavaimen varmennus epäonnistui käyttäjän muokkaamisen "
|
140 |
"yhteydessä."
|
141 |
|
142 |
+
#: classes/class.swpm-admin-registration.php:131
|
143 |
msgid "Your current password"
|
144 |
msgstr "Nykyinen salasanasi"
|
145 |
|
159 |
msgid "Available"
|
160 |
msgstr "Käytettävissä"
|
161 |
|
162 |
+
#: classes/class.swpm-auth.php:49
|
163 |
msgid ""
|
164 |
"Warning! Simple Membership plugin cannot process this login request to "
|
165 |
"prevent you from getting logged out of WP Admin accidentally."
|
167 |
"Varoitus! Simple Membership lisäosa ei voi käsitellä kirjautumispyyntöä "
|
168 |
"estääkseen tahattoman uloskirjautumisen WP ylläpidosta. "
|
169 |
|
170 |
+
#: classes/class.swpm-auth.php:50
|
171 |
msgid ""
|
172 |
"You are logged into the site as an ADMIN user in this browser. First, logout "
|
173 |
"from WP Admin then you will be able to log in as a member."
|
175 |
"Olet kirjautunut sivustolle tässä selaimessa ylläpitäjänä. Kirjaudu ensin "
|
176 |
"ulos WP ylläpidosta, jonka jälkeen voit kirjautua jäsenenä."
|
177 |
|
178 |
+
#: classes/class.swpm-auth.php:51
|
179 |
msgid ""
|
180 |
"Alternatively, you can use a different browser (where you are not logged-in "
|
181 |
"as ADMIN) to test the membership login."
|
183 |
"Vaihtoehtoisesti voit kirjautua toisella selaimella (jossa et ole "
|
184 |
"kirjautuneen ylläpitäjänä) testataksesi jäsenenä kirjautumista."
|
185 |
|
186 |
+
#: classes/class.swpm-auth.php:52
|
187 |
msgid ""
|
188 |
"Your normal visitors or members will never see this message. This message is "
|
189 |
"ONLY for ADMIN user."
|
191 |
"Tavalliset vierailijat tai jäsenet eivät näe tätä viestiä. Tämä viesti "
|
192 |
"näytetään ainoastaan ylläpitäjille."
|
193 |
|
194 |
+
#: classes/class.swpm-auth.php:59
|
195 |
msgid "Captcha validation failed on login form."
|
196 |
+
msgstr "CAPTCHA varmennus epäonnistui kirjautumislomakkeella."
|
197 |
|
198 |
+
#: classes/class.swpm-auth.php:84
|
199 |
msgid "User Not Found."
|
200 |
msgstr "Käyttäjää ei löydy."
|
201 |
|
202 |
+
#: classes/class.swpm-auth.php:91
|
203 |
msgid "Password Empty or Invalid."
|
204 |
msgstr "Salasana tyhjä tai virheellinen."
|
205 |
|
206 |
+
#: classes/class.swpm-auth.php:124
|
207 |
msgid "Account is inactive."
|
208 |
msgstr "Tili ei ole käytössä."
|
209 |
|
213 |
|
214 |
#: classes/class.swpm-auth.php:131
|
215 |
msgid "Account is pending."
|
216 |
+
msgstr "Tili odottaa aktivointia."
|
217 |
|
218 |
+
#: classes/class.swpm-auth.php:153
|
219 |
msgid "You are logged in as:"
|
220 |
msgstr "Olet kirjautunut käyttäjänä:"
|
221 |
|
295 |
"Wordpress account exists with given username. But given email doesn't match."
|
296 |
msgstr "Käyttäjätunnukselle löytyy tili, mutta annettu sähköposti ei täsmää."
|
297 |
|
298 |
+
#: classes/class.swpm-form.php:30
|
299 |
+
msgid ""
|
300 |
+
" Use a different username to complete the registration. If you want to use "
|
301 |
+
"that username then you must enter the correct email address associated with "
|
302 |
+
"the existing WP user to connect with that account."
|
303 |
+
msgstr ""
|
304 |
+
" Käytä eri käyttätunnusta rekisteröinnin tekemiseen. Jos haluat käyttää samaa "
|
305 |
+
"käyttäjätunnusta, sinun pitää antaa siihen liitetty oikea sähköpostiosoite. "
|
306 |
+
|
307 |
+
#: classes/class.swpm-form.php:36
|
308 |
msgid ""
|
309 |
"Wordpress account exists with given email. But given username doesn't match."
|
310 |
msgstr "Sähköpostille löytyy tili, mutta annettu käyttäjätunnus ei täsmää."
|
311 |
|
312 |
+
#: classes/class.swpm-form.php:37
|
313 |
+
msgid ""
|
314 |
+
" Use a different email address to complete the registration. If you want to "
|
315 |
+
"use that email then you must enter the correct username associated with the "
|
316 |
+
"existing WP user to connect with that account."
|
317 |
+
msgstr ""
|
318 |
+
" Käytä eri sähköpostiosoitetta rekisteröinnin tekemiseen. Jos haluat käyttää samaa "
|
319 |
+
"sähköpostiosoitetta, sinun pitää antaa siihen liitetty oikea käyttäjätunnus. "
|
320 |
+
|
321 |
+
#: classes/class.swpm-form.php:47
|
322 |
msgid "Username is required"
|
323 |
msgstr "Käyttäjätunnus tarvitaan"
|
324 |
|
325 |
+
#: classes/class.swpm-form.php:51
|
326 |
msgid "Username contains invalid character"
|
327 |
msgstr "Käyttäjätunnuksessa on virheellisiä merkkejä."
|
328 |
|
329 |
+
#: classes/class.swpm-form.php:59
|
330 |
msgid "Username already exists."
|
331 |
msgstr "Käyttäjätunnus on jo käytössä."
|
332 |
|
333 |
+
#: classes/class.swpm-form.php:82
|
334 |
msgid "Password is required"
|
335 |
msgstr "Salasana on pakollinen"
|
336 |
|
337 |
+
#: classes/class.swpm-form.php:89
|
338 |
msgid "Password mismatch"
|
339 |
msgstr "Salasanat eivät täsmää"
|
340 |
|
341 |
#: classes/class.swpm-form.php:96
|
342 |
msgid "Email is required"
|
343 |
+
msgstr "Sähköposti on pakollinen"
|
344 |
|
345 |
#: classes/class.swpm-form.php:100
|
346 |
msgid "Email is invalid"
|
381 |
#: classes/class.swpm-front-registration.php:45
|
382 |
#: classes/class.swpm-utils-misc.php:219 views/login.php:36
|
383 |
msgid "Join Us"
|
384 |
+
msgstr "Luo tunnukset täällä"
|
385 |
+
|
386 |
+
#: classes/class.swpm-utils-misc.php:394
|
387 |
+
msgid "(Please Select)"
|
388 |
+
msgstr "(Valitse)"
|
389 |
|
390 |
#: classes/class.swpm-front-registration.php:47
|
391 |
msgid ""
|
408 |
|
409 |
#: classes/class.swpm-front-registration.php:100
|
410 |
msgid "Registration Successful. "
|
411 |
+
msgstr "Rekisteröinti onnistui. "
|
412 |
|
413 |
+
#: classes/class.swpm-front-registration.php:113
|
414 |
+
#: classes/class.swpm-utils-misc.php:246 classes/class.swpm-utils-misc.php:258
|
415 |
msgid "Please"
|
416 |
+
msgstr ""
|
417 |
|
418 |
+
#: classes/class.swpm-front-registration.php:113
|
419 |
+
#: classes/class.swpm-utils-misc.php:246 views/login.php:30
|
420 |
msgid "Login"
|
421 |
+
msgstr "Kirjaudu sisään tästä"
|
422 |
|
423 |
#: classes/class.swpm-front-registration.php:113
|
424 |
#: classes/class.swpm-front-registration.php:236
|
425 |
msgid "Please correct the following"
|
426 |
+
msgstr "Korjaathan seuraavat kohdat:"
|
427 |
|
428 |
#: classes/class.swpm-front-registration.php:158
|
429 |
msgid "Membership Level Couldn't be found."
|
430 |
+
msgstr "Jäsenyystasoa ei löydy."
|
431 |
|
432 |
#: classes/class.swpm-front-registration.php:209
|
433 |
msgid "Error! Nonce verification failed for front end profile edit."
|
458 |
#: classes/class.swpm-front-registration.php:258
|
459 |
#: classes/class.swpm-front-registration.php:284
|
460 |
msgid "Email Address: "
|
461 |
+
msgstr "Sähköpostiosoite: "
|
462 |
|
463 |
#: classes/class.swpm-front-registration.php:283
|
464 |
msgid "New password has been sent to your email address."
|
1154 |
msgid "Password Reset"
|
1155 |
msgstr "Salasanan resetointi"
|
1156 |
|
1157 |
+
#: classes/class.swpm-utils-misc.php:247
|
1158 |
msgid "Not a Member?"
|
1159 |
+
msgstr "Eikö sinulla ole tunnuksia?"
|
1160 |
|
1161 |
+
#: classes/class.swpm-utils-misc.php:258
|
1162 |
msgid "renew"
|
1163 |
msgstr "uusi"
|
1164 |
|
1165 |
#: classes/class.swpm-utils-misc.php:230
|
1166 |
msgid " your account to gain access to this content."
|
1167 |
+
msgstr " tilisi päästäksesi tähän sisältöön."
|
1168 |
|
1169 |
#: classes/class.swpm-utils-misc.php:272 classes/class.swpm-utils-misc.php:278
|
1170 |
msgid "Error! This action ("
|
1178 |
msgid "Never"
|
1179 |
msgstr "Ei koskaan"
|
1180 |
|
1181 |
+
#: classes/class.swpm-utils.php:115 views/admin_members_list.php:19
|
1182 |
msgid "Active"
|
1183 |
msgstr "Aktiivinen"
|
1184 |
|
1185 |
+
#: classes/class.swpm-utils.php:116 views/admin_members_list.php:20
|
1186 |
msgid "Inactive"
|
1187 |
msgstr "Inaktiivinen"
|
1188 |
|
1189 |
+
#: classes/class.swpm-utils.php:117 views/admin_members_list.php:21
|
1190 |
msgid "Pending"
|
1191 |
msgstr "Vireillä"
|
1192 |
|
1193 |
+
#: classes/class.swpm-utils.php:118 views/admin_members_list.php:23
|
1194 |
msgid "Expired"
|
1195 |
msgstr "Vanhentunut"
|
1196 |
|
1197 |
+
#: classes/class.swpm-utils.php:459
|
1198 |
msgid "Delete Account"
|
1199 |
msgstr "Poista tili"
|
1200 |
|
1623 |
msgid "Registration completion links will appear below"
|
1624 |
msgstr "Rekisteröinnin vahvistuslinkit ilmestyvät alle."
|
1625 |
|
1626 |
+
#: views/forgot_password.php:12
|
1627 |
msgid "Reset Password"
|
1628 |
msgstr "Resetoi salasana"
|
1629 |
|
1630 |
+
#: views/edit.php:62
|
1631 |
+
msgid "Company Name"
|
1632 |
+
msgstr "Yrityksen nimi"
|
1633 |
+
|
1634 |
#: views/loggedin.php:6
|
1635 |
msgid "Logged in as"
|
1636 |
msgstr "Kirjautunut käyttäjänä"
|
1643 |
msgid "Account Expiry"
|
1644 |
msgstr "Tilin vanheneminen"
|
1645 |
|
1646 |
+
#: views/loggedin.php:31
|
1647 |
msgid "Logout"
|
1648 |
+
msgstr "Kirjaudu ulos"
|
1649 |
+
|
1650 |
+
#: views/loggedin.php:26
|
1651 |
+
msgid "Edit Profile"
|
1652 |
+
msgstr "Muokkaa profiilia"
|
1653 |
|
1654 |
#: views/login.php:11
|
1655 |
msgid "Username or Email"
|
languages/simple-membership-pl_PL.mo
CHANGED
Binary file
|
languages/simple-membership-pl_PL.po
CHANGED
@@ -1,708 +1,3059 @@
|
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
-
"Project-Id-Version:
|
4 |
-
"POT-Creation-Date:
|
5 |
-
"PO-Revision-Date:
|
6 |
-
"Last-Translator: Przemysław Maj <maytki@o2.pl>\n"
|
7 |
"Language-Team: \n"
|
8 |
"MIME-Version: 1.0\n"
|
9 |
"Content-Type: text/plain; charset=UTF-8\n"
|
10 |
"Content-Transfer-Encoding: 8bit\n"
|
11 |
-
"X-Generator: Poedit
|
12 |
-
"X-Poedit-KeywordsList: __;_e\n"
|
13 |
"X-Poedit-Basepath: .\n"
|
14 |
-
"
|
15 |
-
"
|
16 |
-
"
|
|
|
17 |
"X-Poedit-SearchPath-0: .\n"
|
18 |
|
19 |
-
#: classes/class.
|
20 |
-
msgid "
|
21 |
-
msgstr "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
22 |
|
23 |
-
#: classes/class.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
24 |
msgid "You need to login to view this content. "
|
25 |
-
msgstr "Musisz się zalogować aby zobaczyć
|
26 |
|
27 |
-
#: classes/class.
|
28 |
-
#: classes/class.
|
29 |
-
|
30 |
-
|
|
|
31 |
|
32 |
-
#: classes/class.
|
33 |
-
#: classes/class.
|
34 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
35 |
msgid "Please correct the following:"
|
36 |
msgstr "Popraw następujące:"
|
37 |
|
38 |
-
#: classes/class.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
39 |
msgid "Aready taken"
|
40 |
msgstr "Zajęte"
|
41 |
|
42 |
-
#: classes/class.
|
|
|
|
|
|
|
|
|
43 |
msgid "Available"
|
44 |
msgstr "Dostępny"
|
45 |
|
46 |
-
#: classes/class.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
47 |
msgid "User Not Found."
|
48 |
-
msgstr "Nie znaleziono użytkownika"
|
49 |
|
50 |
-
#: classes/class.
|
51 |
msgid "Password Empty or Invalid."
|
52 |
-
msgstr "
|
53 |
|
54 |
-
#: classes/class.
|
55 |
msgid "Account is inactive."
|
56 |
msgstr "Konto jest nieaktywne."
|
57 |
|
58 |
-
#: classes/class.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
59 |
msgid "You are logged in as:"
|
60 |
msgstr "Jesteś zalogowany jako:"
|
61 |
|
62 |
-
#: classes/class.
|
63 |
msgid "Logged Out Successfully."
|
64 |
-
msgstr "Wylogowano poprawnie"
|
65 |
|
66 |
-
#: classes/class.
|
67 |
msgid "Session Expired."
|
68 |
-
msgstr "Sesja wygasła"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
69 |
|
70 |
-
#: classes/class.
|
71 |
-
msgid "
|
72 |
-
msgstr "
|
73 |
|
74 |
-
#: classes/class.
|
75 |
-
msgid "
|
76 |
-
msgstr "
|
77 |
|
78 |
-
#: classes/class.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
79 |
msgid ""
|
80 |
-
"Wordpress account exists with given
|
81 |
-
msgstr "
|
|
|
|
|
82 |
|
83 |
-
#: classes/class.
|
84 |
msgid ""
|
85 |
-
"
|
|
|
|
|
86 |
msgstr ""
|
87 |
-
"
|
|
|
|
|
88 |
|
89 |
-
#: classes/class.
|
90 |
-
msgid "
|
91 |
-
msgstr "
|
92 |
|
93 |
-
#: classes/class.
|
94 |
-
msgid "
|
95 |
-
msgstr "
|
96 |
|
97 |
-
#: classes/class.
|
|
|
|
|
|
|
|
|
98 |
msgid "Password is required"
|
99 |
msgstr "Wymagane hasło"
|
100 |
|
101 |
-
#: classes/class.
|
102 |
msgid "Password mismatch"
|
103 |
-
msgstr "Podano różne hasła
|
104 |
|
105 |
-
#: classes/class.
|
106 |
msgid "Email is required"
|
107 |
msgstr "Wymagany email"
|
108 |
|
109 |
-
#: classes/class.
|
110 |
msgid "Email is invalid"
|
111 |
msgstr "Błędny email"
|
112 |
|
113 |
-
#: classes/class.
|
114 |
msgid "Email is already used."
|
115 |
-
msgstr "Taki adres email jest już użyty"
|
116 |
|
117 |
-
#: classes/class.
|
118 |
msgid "Member since field is invalid"
|
119 |
msgstr "Pole \"użytkownik\" jest nieprawidłowe"
|
120 |
|
121 |
-
#: classes/class.
|
122 |
-
msgid "
|
123 |
-
msgstr "Pole
|
124 |
|
125 |
-
#: classes/class.
|
126 |
msgid "Gender field is invalid"
|
127 |
msgstr "Pole \"płeć\" jest nieprawidłowa"
|
128 |
|
129 |
-
#: classes/class.
|
130 |
msgid "Account state field is invalid"
|
131 |
msgstr "Pole \"Account State\" jest nieprawidłowe"
|
132 |
|
133 |
-
#: classes/class.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
134 |
msgid "Please"
|
135 |
msgstr "Proszę"
|
136 |
|
137 |
-
#: classes/class.
|
138 |
-
#: views/login.php:
|
139 |
msgid "Login"
|
140 |
msgstr "Login"
|
141 |
|
142 |
-
#: classes/class.
|
143 |
-
#: classes/class.bFrontRegistration.php:158
|
144 |
msgid "Please correct the following"
|
145 |
msgstr "Proszę poprawić następujące"
|
146 |
|
147 |
-
#: classes/class.
|
148 |
msgid "Membership Level Couldn't be found."
|
149 |
-
msgstr "Pozim
|
|
|
|
|
|
|
|
|
150 |
|
151 |
-
#: classes/class.
|
152 |
-
msgid "
|
153 |
-
msgstr "
|
154 |
|
155 |
-
#: classes/class.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
156 |
msgid "New password has been sent to your email address."
|
157 |
-
msgstr "Nowe hasło zostało wysłane na podany adres email"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
158 |
|
159 |
-
#: classes/class.
|
160 |
-
msgid "
|
161 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
162 |
|
163 |
-
#: classes/class.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
164 |
msgid "Member"
|
165 |
msgstr "Członek"
|
166 |
|
167 |
-
#: classes/class.
|
168 |
-
|
169 |
-
msgstr "Członkowie"
|
170 |
-
|
171 |
-
#: classes/class.bMembers.php:16 classes/class.bMembershipLevels.php:16
|
172 |
msgid "ID"
|
173 |
msgstr "ID"
|
174 |
|
175 |
-
#: classes/class.
|
176 |
-
#: views/
|
177 |
-
|
178 |
-
|
|
|
179 |
|
180 |
-
#: classes/class.
|
181 |
-
#:
|
|
|
|
|
182 |
msgid "First Name"
|
183 |
msgstr "Imię"
|
184 |
|
185 |
-
#: classes/class.
|
186 |
-
#:
|
|
|
|
|
187 |
msgid "Last Name"
|
188 |
msgstr "Nazwisko"
|
189 |
|
190 |
-
#: classes/class.
|
|
|
191 |
msgid "Email"
|
192 |
-
msgstr "
|
193 |
-
|
194 |
-
#: classes/class.bMembers.php:21 classes/class.bMembershipLevels.php:8
|
195 |
-
#: classes/class.bMembershipLevels.php:17 views/add.php:64
|
196 |
-
#: views/admin_member_form_common_part.php:55 views/edit.php:52
|
197 |
-
msgid "Membership Level"
|
198 |
-
msgstr "Poziom dostępu"
|
199 |
|
200 |
-
#: classes/class.
|
201 |
-
msgid "
|
202 |
-
msgstr "
|
203 |
|
204 |
-
#: classes/class.
|
205 |
msgid "Account State"
|
206 |
msgstr "Account State"
|
207 |
|
208 |
-
#: classes/class.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
209 |
msgid "Delete"
|
210 |
msgstr "Skasuj"
|
211 |
|
212 |
-
#: classes/class.
|
213 |
-
msgid "
|
214 |
-
msgstr "
|
215 |
|
216 |
-
#: classes/class.
|
217 |
-
msgid "
|
218 |
-
msgstr "
|
219 |
|
220 |
-
#: classes/class.
|
221 |
-
msgid "
|
222 |
-
msgstr "
|
223 |
|
224 |
-
#: classes/class.
|
225 |
-
|
226 |
-
|
227 |
-
msgstr "Poziom członkowstwa"
|
228 |
|
229 |
-
#: classes/class.
|
230 |
-
msgid "
|
231 |
-
msgstr "
|
232 |
|
233 |
-
#: classes/class.
|
234 |
-
msgid "
|
235 |
-
msgstr "
|
236 |
|
237 |
-
#: classes/class.
|
238 |
-
msgid "
|
239 |
-
msgstr "
|
240 |
|
241 |
-
#: classes/class.
|
242 |
-
msgid "
|
243 |
-
msgstr "
|
|
|
|
|
244 |
|
245 |
-
#: classes/class.
|
246 |
-
msgid "
|
247 |
-
msgstr "
|
248 |
|
249 |
-
#: classes/class.
|
250 |
-
msgid "
|
251 |
-
msgstr "
|
252 |
|
253 |
-
#: classes/class.
|
254 |
-
msgid "
|
255 |
-
msgstr "
|
|
|
256 |
|
257 |
-
#: classes/class.
|
258 |
-
msgid "
|
259 |
-
msgstr "
|
260 |
|
261 |
-
#: classes/class.
|
262 |
-
msgid "
|
263 |
-
|
|
|
|
|
|
|
|
|
264 |
|
265 |
-
#: classes/class.
|
266 |
msgid ""
|
267 |
-
"
|
268 |
-
"
|
269 |
msgstr ""
|
270 |
-
"
|
271 |
-
"użytkowników
|
272 |
-
"swojej stronie"
|
273 |
|
274 |
-
#: classes/class.
|
275 |
-
msgid "
|
276 |
-
msgstr "
|
277 |
|
278 |
-
#: classes/class.
|
279 |
-
msgid "
|
280 |
-
msgstr "
|
281 |
|
282 |
-
#: classes/class.
|
283 |
-
msgid "
|
284 |
-
|
|
|
|
|
|
|
|
|
285 |
|
286 |
-
#: classes/class.
|
287 |
-
msgid "
|
288 |
-
msgstr "
|
289 |
|
290 |
-
#: classes/class.
|
291 |
-
msgid "
|
292 |
-
msgstr "
|
293 |
|
294 |
-
#: classes/class.
|
295 |
-
msgid "
|
296 |
-
msgstr "
|
297 |
|
298 |
-
#: classes/class.
|
299 |
-
msgid "
|
300 |
-
msgstr "
|
301 |
|
302 |
-
#: classes/class.
|
303 |
-
msgid "
|
304 |
-
msgstr "
|
305 |
|
306 |
-
#: classes/class.
|
307 |
-
msgid "
|
308 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
309 |
|
310 |
-
#: classes/class.
|
311 |
-
msgid "
|
312 |
-
|
|
|
|
|
|
|
|
|
|
|
313 |
|
314 |
-
#: classes/class.
|
315 |
-
msgid "
|
316 |
-
msgstr "
|
317 |
|
318 |
-
#: classes/class.
|
319 |
-
msgid "
|
320 |
-
|
|
|
|
|
|
|
|
|
321 |
|
322 |
-
#: classes/class.
|
323 |
-
|
324 |
-
|
325 |
-
msgstr "Temat email"
|
326 |
|
327 |
-
#: classes/class.
|
328 |
-
|
329 |
-
|
330 |
-
msgstr "Treść email"
|
331 |
|
332 |
-
#: classes/class.
|
333 |
-
msgid "
|
334 |
-
msgstr "
|
335 |
|
336 |
-
#: classes/class.
|
337 |
-
|
338 |
-
|
|
|
339 |
|
340 |
-
#: classes/class.
|
341 |
-
msgid "
|
342 |
-
msgstr "
|
343 |
|
344 |
-
#: classes/class.
|
345 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
|
|
346 |
msgstr ""
|
|
|
|
|
347 |
|
348 |
-
#: classes/class.
|
349 |
-
msgid "
|
350 |
-
msgstr "
|
351 |
|
352 |
-
#: classes/class.
|
353 |
-
msgid "
|
354 |
-
|
|
|
|
|
|
|
355 |
|
356 |
-
#: classes/class.
|
357 |
-
msgid "
|
358 |
-
msgstr "
|
359 |
|
360 |
-
#: classes/class.
|
361 |
-
msgid "
|
362 |
-
msgstr "
|
363 |
|
364 |
-
#: classes/class.
|
365 |
-
msgid "
|
366 |
-
msgstr "
|
367 |
|
368 |
-
#: classes/class.
|
369 |
-
msgid "
|
370 |
-
msgstr "
|
371 |
|
372 |
-
#: classes/class.
|
373 |
-
msgid "
|
374 |
-
|
|
|
|
|
|
|
375 |
|
376 |
-
#: classes/class.
|
377 |
-
|
378 |
-
|
|
|
|
|
379 |
|
380 |
-
#: classes/class.
|
381 |
-
msgid "
|
382 |
-
msgstr "
|
383 |
|
384 |
-
#: classes/class.
|
385 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
386 |
msgstr "Twój profil"
|
387 |
|
388 |
-
#: classes/class.
|
389 |
-
msgid "Password Reset"
|
390 |
-
msgstr "Reset hasła"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
391 |
|
392 |
-
#:
|
393 |
-
msgid "
|
394 |
-
msgstr "
|
395 |
|
396 |
-
#:
|
397 |
-
msgid "
|
398 |
-
|
|
|
|
|
|
|
|
|
399 |
|
400 |
-
#:
|
401 |
-
msgid "
|
402 |
-
msgstr "
|
403 |
|
404 |
-
#:
|
405 |
-
msgid "
|
406 |
-
msgstr "
|
407 |
|
408 |
-
#:
|
409 |
-
msgid "
|
410 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
411 |
|
412 |
-
#:
|
413 |
-
msgid "
|
414 |
-
msgstr "
|
415 |
|
416 |
-
#:
|
417 |
-
msgid "
|
418 |
-
msgstr "
|
419 |
|
420 |
-
#:
|
421 |
-
msgid "
|
422 |
-
msgstr "
|
423 |
|
424 |
-
#:
|
425 |
-
msgid "
|
426 |
-
msgstr "
|
427 |
|
428 |
-
#: views/
|
429 |
-
#: views/edit.php:
|
430 |
-
msgid "
|
431 |
-
msgstr "
|
432 |
|
433 |
-
#: views/
|
434 |
-
msgid "
|
435 |
-
msgstr "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
436 |
|
437 |
-
#: views/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
438 |
msgid "Gender"
|
439 |
msgstr "Płeć"
|
440 |
|
441 |
-
#: views/
|
442 |
-
#:
|
443 |
msgid "Phone"
|
444 |
msgstr "Nr telefonu"
|
445 |
|
446 |
-
#: views/
|
447 |
-
#: views/edit.php:32
|
448 |
msgid "Street"
|
449 |
msgstr "Ulica"
|
450 |
|
451 |
-
#: views/
|
452 |
-
#: views/edit.php:36
|
453 |
msgid "City"
|
454 |
msgstr "Miasto"
|
455 |
|
456 |
-
#: views/
|
457 |
-
#: views/edit.php:40
|
458 |
msgid "State"
|
459 |
msgstr "Województwo"
|
460 |
|
461 |
-
#: views/
|
462 |
-
#: views/edit.php:44
|
463 |
msgid "Zipcode"
|
464 |
msgstr "Kod pocztowy"
|
465 |
|
466 |
-
#: views/
|
467 |
-
#:
|
468 |
msgid "Country"
|
469 |
msgstr "Kraj"
|
470 |
|
471 |
-
#: views/
|
|
|
472 |
msgid "Company"
|
473 |
msgstr "Firma"
|
474 |
|
475 |
-
#: views/
|
476 |
-
|
477 |
-
|
|
|
478 |
|
479 |
-
#: views/
|
480 |
-
msgid "
|
481 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
482 |
|
483 |
-
#: views/
|
484 |
-
msgid "
|
485 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
486 |
|
487 |
-
#: views/
|
488 |
-
msgid "
|
489 |
-
msgstr "
|
490 |
|
491 |
-
#: views/
|
492 |
-
|
493 |
-
|
494 |
-
#: views/admin_edit_level.php:10 views/admin_edit_level.php:14
|
495 |
-
#: views/admin_edit_level.php:18
|
496 |
-
msgid "(required)"
|
497 |
-
msgstr "(wymagane)"
|
498 |
|
499 |
-
#: views/
|
500 |
-
msgid "
|
501 |
-
msgstr "
|
502 |
|
503 |
-
#: views/
|
504 |
-
msgid "
|
505 |
-
msgstr "
|
506 |
|
507 |
-
#: views/
|
508 |
-
msgid "
|
509 |
-
msgstr "
|
510 |
|
511 |
-
#: views/
|
512 |
-
msgid "
|
513 |
-
msgstr "
|
514 |
|
515 |
-
#: views/
|
516 |
-
msgid "
|
517 |
-
msgstr "
|
518 |
|
519 |
-
#: views/
|
520 |
-
msgid "
|
521 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
522 |
|
523 |
-
#: views/
|
524 |
-
msgid "
|
525 |
-
msgstr "
|
526 |
|
527 |
-
#: views/
|
528 |
-
msgid "
|
529 |
-
msgstr "
|
530 |
|
531 |
-
#: views/
|
532 |
-
msgid "
|
533 |
-
msgstr "
|
534 |
|
535 |
-
#: views/
|
536 |
-
msgid "
|
537 |
-
msgstr "
|
538 |
|
539 |
-
#: views/
|
540 |
-
msgid "
|
541 |
-
msgstr "
|
542 |
|
543 |
-
#: views/
|
544 |
-
msgid "
|
545 |
-
msgstr "
|
546 |
|
547 |
-
#: views/
|
548 |
-
msgid "
|
549 |
-
|
|
|
|
|
|
|
|
|
550 |
|
551 |
-
#: views/
|
552 |
-
msgid "
|
553 |
-
msgstr "
|
554 |
|
555 |
-
#: views/
|
556 |
-
msgid "
|
557 |
-
msgstr "
|
558 |
|
559 |
-
#: views/
|
560 |
-
msgid "
|
561 |
-
msgstr "
|
562 |
|
563 |
-
#: views/
|
564 |
-
|
565 |
-
|
566 |
-
|
|
|
|
|
|
|
567 |
|
568 |
-
#: views/
|
569 |
-
msgid "
|
570 |
-
msgstr "
|
571 |
|
572 |
-
#: views/
|
573 |
-
msgid "
|
574 |
-
msgstr "
|
575 |
|
576 |
-
#: views/
|
577 |
-
msgid "
|
578 |
-
msgstr "
|
579 |
|
580 |
-
#: views/
|
581 |
-
msgid "
|
582 |
-
msgstr "
|
583 |
|
584 |
-
#: views/
|
585 |
-
msgid "
|
586 |
-
msgstr "
|
587 |
|
588 |
-
#: views/
|
589 |
-
msgid "
|
590 |
-
msgstr "
|
591 |
|
592 |
-
#: views/
|
593 |
-
msgid "
|
594 |
-
msgstr "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
595 |
|
596 |
-
#: views/
|
597 |
msgid ""
|
598 |
-
"
|
599 |
-
"stronger, use upper and lower case letters, numbers and symbols like ! \" ? "
|
600 |
-
"$ % ^ & )."
|
601 |
msgstr ""
|
602 |
-
"
|
603 |
-
"
|
604 |
-
"& )"
|
605 |
|
606 |
-
#: views/
|
607 |
-
|
608 |
-
|
609 |
-
msgstr "Status konta"
|
610 |
|
611 |
-
#: views/
|
612 |
-
msgid "
|
613 |
-
msgstr "
|
614 |
|
615 |
-
#: views/
|
616 |
-
|
617 |
-
|
618 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
619 |
|
620 |
-
#: views/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
621 |
msgid "PayPal Integration Settings"
|
622 |
msgstr "PayPal Ustawienia integracyjne"
|
623 |
|
624 |
-
#: views/admin_payment_settings.php:36
|
625 |
msgid "Generate the \"Advanced Variables\" Code for your PayPal button"
|
626 |
msgstr "Genrowany \"Advanced Variables\" kod dla twojego przycisku PayPal"
|
627 |
|
628 |
-
#: views/admin_payment_settings.php:39
|
629 |
msgid "Enter the Membership Level ID"
|
630 |
-
msgstr "Wpisz ID poziomu
|
631 |
|
632 |
-
#: views/admin_payment_settings.php:41
|
633 |
msgid "Generate Code"
|
634 |
msgstr "Wygeneruj kod"
|
635 |
|
636 |
-
#: views/
|
637 |
-
msgid "
|
638 |
-
msgstr "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
639 |
|
640 |
-
#: views/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
641 |
msgid ""
|
642 |
-
"
|
643 |
-
"
|
644 |
-
"to them after the payment."
|
645 |
msgstr ""
|
646 |
-
"
|
647 |
-
"
|
648 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
649 |
|
650 |
-
|
651 |
-
|
652 |
-
|
|
|
|
|
|
|
653 |
|
654 |
-
|
655 |
-
|
656 |
-
msgstr "lub"
|
657 |
|
658 |
-
|
659 |
-
|
660 |
-
msgstr "
|
|
|
|
|
661 |
|
662 |
-
|
663 |
-
|
664 |
-
msgstr "Link zakończenia rejestracji pojawi się poniżej :"
|
665 |
|
666 |
-
|
667 |
-
|
668 |
-
msgstr "Wyślij przypomnienie o rejestracji na email"
|
669 |
|
670 |
-
|
671 |
-
|
672 |
-
msgstr "Wyślij"
|
673 |
|
674 |
-
#:
|
675 |
-
msgid "
|
676 |
-
msgstr "
|
677 |
|
678 |
-
|
679 |
-
|
680 |
-
|
681 |
|
682 |
-
|
683 |
-
|
684 |
-
msgstr "Reset hasła"
|
685 |
|
686 |
-
#:
|
687 |
-
msgid "
|
688 |
-
msgstr "
|
689 |
|
690 |
-
#:
|
691 |
-
msgid "
|
692 |
-
msgstr "
|
693 |
|
694 |
-
#:
|
695 |
-
msgid "
|
696 |
-
msgstr "
|
697 |
|
698 |
-
#:
|
699 |
-
msgid "
|
700 |
-
msgstr "
|
701 |
|
702 |
-
#: views/
|
703 |
-
msgid "
|
704 |
-
msgstr "
|
705 |
|
706 |
-
#: views/
|
707 |
-
msgid "
|
708 |
-
msgstr "
|
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: 2019-05-29 00:39+0200\n"
|
|
|
6 |
"Language-Team: \n"
|
7 |
"MIME-Version: 1.0\n"
|
8 |
"Content-Type: text/plain; charset=UTF-8\n"
|
9 |
"Content-Transfer-Encoding: 8bit\n"
|
10 |
+
"X-Generator: Poedit 2.2.3\n"
|
11 |
+
"X-Poedit-KeywordsList: __;_e;e\n"
|
12 |
"X-Poedit-Basepath: .\n"
|
13 |
+
"Last-Translator: Marcin J. Gajewski <ceramicznawyspa@gmail.com>\n"
|
14 |
+
"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 "
|
15 |
+
"|| n%100>14) ? 1 : 2);\n"
|
16 |
+
"Language: pl_PL\n"
|
17 |
"X-Poedit-SearchPath-0: .\n"
|
18 |
|
19 |
+
#: classes/class.simple-wp-membership.php:180
|
20 |
+
msgid "The admin of this site does not allow users to access the wp dashboard."
|
21 |
+
msgstr ""
|
22 |
+
"Administrator tej strony nie zezwala użytkownikom na dostęp do panelu "
|
23 |
+
"administracyjnego wp dashboard."
|
24 |
+
|
25 |
+
#: classes/class.simple-wp-membership.php:181
|
26 |
+
msgid "Go back to the home page by "
|
27 |
+
msgstr "Wróć do strony głównej przez "
|
28 |
+
|
29 |
+
#: classes/class.simple-wp-membership.php:181
|
30 |
+
msgid "clicking here"
|
31 |
+
msgstr "kliknij tutaj"
|
32 |
+
|
33 |
+
#: classes/class.simple-wp-membership.php:242
|
34 |
+
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 |
+
"Błąd! Ta strona ma włączoną w ustawieniach funkcję wymuszenia logowania "
|
39 |
+
"użytkownika WP. Nie mogliśmy znaleźć rekordu użytkownika WP dla podanej "
|
40 |
+
"nazwy użytkownika: "
|
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 |
+
"Błąd ten jest wyzwalany, gdy konto członkowskie nie posiada odpowiedniego "
|
48 |
+
"konta użytkownika WP. Wtyczka nie pozwala na zalogowanie użytkownika do "
|
49 |
+
"systemu użytkownika WP."
|
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 |
+
"Skontaktuj się z administratorem strony i poproś, aby sprawdzili Twoją nazwę "
|
57 |
+
"użytkownika w menu Użytkownicy WP i zobaczyli, co się stało z wpisem "
|
58 |
+
"użytkownika WP na Twoim koncie."
|
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 |
+
"Administrator strony może wyłączyć funkcję wymuszenia synchronizacji z WP w "
|
66 |
+
"ustawieniach, wyłączenie tej funkcji spowoduje, że ten błąd zniknie."
|
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 |
+
"Możesz użyć przycisku Wstecz swojej przeglądarki, aby wrócić na stronę."
|
72 |
+
|
73 |
+
#: classes/class.simple-wp-membership.php:407
|
74 |
+
msgid "You are not logged in."
|
75 |
+
msgstr "Nie jesteś zalogowany."
|
76 |
+
|
77 |
+
#: classes/class.simple-wp-membership.php:458
|
78 |
+
msgid ""
|
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 |
+
"W ustawieniach wtyczki włączono tryb płatności w Sandbox. Upewnij się, że "
|
83 |
+
"wyłączasz tryb Sandbox, gdy chcesz robić transakcje na żywo."
|
84 |
+
|
85 |
+
#: classes/class.simple-wp-membership.php:473
|
86 |
+
msgid "Simple WP Membership Protection"
|
87 |
+
msgstr "Simple WP Membership Protection"
|
88 |
+
|
89 |
+
#: classes/class.simple-wp-membership.php:485
|
90 |
+
msgid "Simple Membership Protection options"
|
91 |
+
msgstr "Simple Membership Protection options"
|
92 |
+
|
93 |
+
#: classes/class.simple-wp-membership.php:503
|
94 |
+
msgid "Do you want to protect this content?"
|
95 |
+
msgstr "Czy chcesz chronić tę zawartość?"
|
96 |
+
|
97 |
+
#: classes/class.simple-wp-membership.php:504
|
98 |
+
msgid "No, Do not protect this content."
|
99 |
+
msgstr "Nie, nie chroń tej treści."
|
100 |
|
101 |
+
#: classes/class.simple-wp-membership.php:505
|
102 |
+
msgid "Yes, Protect this content."
|
103 |
+
msgstr "Tak, chroń tę treść."
|
104 |
+
|
105 |
+
#: classes/class.simple-wp-membership.php:508
|
106 |
+
msgid "Select the membership level that can access this content:"
|
107 |
+
msgstr "Wybierz poziom dostępu do tej zawartości:"
|
108 |
+
|
109 |
+
#: classes/class.simple-wp-membership.php:646
|
110 |
+
#: classes/class.simple-wp-membership.php:650
|
111 |
+
msgid "Validating, please wait"
|
112 |
+
msgstr "Walidacja, proszę zaczekać"
|
113 |
+
|
114 |
+
#: classes/class.simple-wp-membership.php:653
|
115 |
+
msgid "Invalid email address"
|
116 |
+
msgstr "Nieprawidłowy adres email"
|
117 |
+
|
118 |
+
#: classes/class.simple-wp-membership.php:656
|
119 |
+
msgid "This field is required"
|
120 |
+
msgstr "To pole jest wymagane"
|
121 |
+
|
122 |
+
#: classes/class.simple-wp-membership.php:659 classes/class.swpm-auth.php:296
|
123 |
+
msgid "Invalid Username"
|
124 |
+
msgstr "Nieprawidłowa Nazwa Użytkownika"
|
125 |
+
|
126 |
+
#: classes/class.simple-wp-membership.php:659
|
127 |
+
msgid "Usernames can only contain: letters, numbers and .-_*@"
|
128 |
+
msgstr "Nazwy użytkowników mogą zawierać tylko: litery, cyfry i .-_*@"
|
129 |
+
|
130 |
+
#: classes/class.simple-wp-membership.php:662
|
131 |
+
msgid "Minimum "
|
132 |
+
msgstr "Minimum "
|
133 |
+
|
134 |
+
#: classes/class.simple-wp-membership.php:663
|
135 |
+
msgid " characters required"
|
136 |
+
msgstr " znaki są wymagane"
|
137 |
+
|
138 |
+
#: classes/class.simple-wp-membership.php:666
|
139 |
+
msgid "Apostrophe character is not allowed"
|
140 |
+
msgstr "Znak apostrofu nie jest dozwolony"
|
141 |
+
|
142 |
+
#: classes/class.simple-wp-membership.php:697
|
143 |
+
msgid "WP Membership"
|
144 |
+
msgstr "WP Membership"
|
145 |
+
|
146 |
+
#: classes/class.simple-wp-membership.php:698 classes/class.swpm-members.php:11
|
147 |
+
#: classes/class.swpm-members.php:581
|
148 |
+
msgid "Members"
|
149 |
+
msgstr "Członkowie"
|
150 |
+
|
151 |
+
#: classes/class.simple-wp-membership.php:699
|
152 |
+
#: classes/class.swpm-category-list.php:20
|
153 |
+
#: classes/class.swpm-membership-levels.php:12
|
154 |
+
#: classes/class.swpm-membership-levels.php:265
|
155 |
+
#: classes/class.swpm-post-list.php:21
|
156 |
+
msgid "Membership Levels"
|
157 |
+
msgstr "Poziomy członkostwa"
|
158 |
+
|
159 |
+
#: classes/class.simple-wp-membership.php:700
|
160 |
+
msgid "Settings"
|
161 |
+
msgstr "Ustawienia"
|
162 |
+
|
163 |
+
#: classes/class.simple-wp-membership.php:701
|
164 |
+
msgid "Payments"
|
165 |
+
msgstr "Płatności"
|
166 |
+
|
167 |
+
#: classes/class.simple-wp-membership.php:702
|
168 |
+
msgid "Add-ons"
|
169 |
+
msgstr "Dodatki"
|
170 |
+
|
171 |
+
#: classes/class.swpm-access-control.php:47
|
172 |
+
#: classes/class.swpm-access-control.php:120
|
173 |
msgid "You need to login to view this content. "
|
174 |
+
msgstr "Musisz się zalogować aby zobaczyć zawartość. "
|
175 |
|
176 |
+
#: classes/class.swpm-access-control.php:56
|
177 |
+
#: classes/class.swpm-access-control.php:128
|
178 |
+
#: classes/class.swpm-access-control.php:212
|
179 |
+
msgid "Your account has expired. "
|
180 |
+
msgstr "Twoje konto wygasło. "
|
181 |
|
182 |
+
#: classes/class.swpm-access-control.php:66
|
183 |
+
#: classes/class.swpm-access-control.php:138
|
184 |
+
msgid "This content can only be viewed by members who joined on or before "
|
185 |
+
msgstr ""
|
186 |
+
"Ta zawartość może być oglądana tylko przez członków, którzy dołączyli "
|
187 |
+
"wcześniej "
|
188 |
+
|
189 |
+
#: classes/class.swpm-access-control.php:79
|
190 |
+
#: classes/class.swpm-access-control.php:148
|
191 |
+
msgid "This content is not permitted for your membership level."
|
192 |
+
msgstr "Ta zawartość nie jest dozwolona dla Twojego poziomu członkostwa."
|
193 |
+
|
194 |
+
#: classes/class.swpm-access-control.php:204
|
195 |
+
msgid "You need to login to view the rest of the content. "
|
196 |
+
msgstr "Musisz się zalogować, aby zobaczyć resztę zawartości. "
|
197 |
+
|
198 |
+
#: classes/class.swpm-access-control.php:217
|
199 |
+
msgid " The rest of the content is not permitted for your membership level."
|
200 |
+
msgstr " Reszta treści nie jest dozwolona dla Twojego poziomu członkostwa."
|
201 |
+
|
202 |
+
#: classes/class.swpm-admin-registration.php:25
|
203 |
+
msgid "Error! Nonce verification failed for user registration from admin end."
|
204 |
+
msgstr ""
|
205 |
+
"Błąd! Weryfikacja bezskuteczna nie powiodła się w przypadku rejestracji "
|
206 |
+
"użytkownika przez administratora."
|
207 |
+
|
208 |
+
#: classes/class.swpm-admin-registration.php:71
|
209 |
+
msgid "Member record added successfully."
|
210 |
+
msgstr "Rekord członka dodany z powodzeniem."
|
211 |
+
|
212 |
+
#: classes/class.swpm-admin-registration.php:76
|
213 |
+
#: classes/class.swpm-admin-registration.php:124
|
214 |
+
#: classes/class.swpm-admin-registration.php:151
|
215 |
+
#: classes/class.swpm-membership-level.php:73
|
216 |
+
#: classes/class.swpm-membership-level.php:105
|
217 |
msgid "Please correct the following:"
|
218 |
msgstr "Popraw następujące:"
|
219 |
|
220 |
+
#: classes/class.swpm-admin-registration.php:87
|
221 |
+
msgid "Error! Nonce verification failed for user edit from admin end."
|
222 |
+
msgstr ""
|
223 |
+
"Błąd! Chwilowo weryfikacja nie powiodła się z trybu edycji użytkownika z "
|
224 |
+
"panelu administracyjnego."
|
225 |
+
|
226 |
+
#: classes/class.swpm-admin-registration.php:139
|
227 |
+
msgid "Your current password"
|
228 |
+
msgstr "Twoje aktualne hasło"
|
229 |
+
|
230 |
+
#: classes/class.swpm-ajax.php:14
|
231 |
+
msgid "Invalid Email Address"
|
232 |
+
msgstr "Nieprawidłowy adres e-mail"
|
233 |
+
|
234 |
+
#: classes/class.swpm-ajax.php:21 classes/class.swpm-ajax.php:36
|
235 |
msgid "Aready taken"
|
236 |
msgstr "Zajęte"
|
237 |
|
238 |
+
#: classes/class.swpm-ajax.php:30
|
239 |
+
msgid "Name contains invalid character"
|
240 |
+
msgstr "Nazwa zawiera nieprawidłowy znak"
|
241 |
+
|
242 |
+
#: classes/class.swpm-ajax.php:37
|
243 |
msgid "Available"
|
244 |
msgstr "Dostępny"
|
245 |
|
246 |
+
#: classes/class.swpm-auth.php:57
|
247 |
+
msgid ""
|
248 |
+
"Warning! Simple Membership plugin cannot process this login request to "
|
249 |
+
"prevent you from getting logged out of WP Admin accidentally."
|
250 |
+
msgstr ""
|
251 |
+
"Ostrzeżenie! Wtyczka Simple Membership nie może przetworzyć tego żądania "
|
252 |
+
"logowania, by zapobiec przypadkowemu wylogowaniu się z WP Admin."
|
253 |
+
|
254 |
+
#: classes/class.swpm-auth.php:58
|
255 |
+
msgid "Click here"
|
256 |
+
msgstr "Kliknij tutaj"
|
257 |
+
|
258 |
+
#: classes/class.swpm-auth.php:58
|
259 |
+
msgid " to see the profile you are currently logged into in this browser."
|
260 |
+
msgstr ""
|
261 |
+
" aby zobaczyć profil, do którego jesteś aktualnie zalogowany w tej "
|
262 |
+
"przeglądarce."
|
263 |
+
|
264 |
+
#: classes/class.swpm-auth.php:59
|
265 |
+
msgid ""
|
266 |
+
"You are logged into the site as an ADMIN user in this browser. First, logout "
|
267 |
+
"from WP Admin then you will be able to log in as a normal member."
|
268 |
+
msgstr ""
|
269 |
+
"Jesteś zalogowany na stronie jako użytkownik ADMIN w tej przeglądarce. "
|
270 |
+
"Najpierw wyloguj się od administratora WP, a następnie będziesz mógł "
|
271 |
+
"zalogować się jako zwykły użytkownik."
|
272 |
+
|
273 |
+
#: classes/class.swpm-auth.php:60
|
274 |
+
msgid ""
|
275 |
+
"Alternatively, you can use a different browser (where you are not logged-in "
|
276 |
+
"as ADMIN) to test the membership login."
|
277 |
+
msgstr ""
|
278 |
+
"Alternatywnie, możesz użyć innej przeglądarki (w której nie jesteś "
|
279 |
+
"zalogowany jako ADMIN), aby przetestować logowanie się."
|
280 |
+
|
281 |
+
#: classes/class.swpm-auth.php:61
|
282 |
+
msgid ""
|
283 |
+
"Your normal visitors or members will never see this message. This message is "
|
284 |
+
"ONLY for ADMIN user."
|
285 |
+
msgstr ""
|
286 |
+
"Twoi zwykli goście lub członkowie nigdy nie zobaczą tej wiadomości. Ten "
|
287 |
+
"komunikat jest WYŁĄCZNIE dla użytkownika ADMIN."
|
288 |
+
|
289 |
+
#: classes/class.swpm-auth.php:68
|
290 |
+
msgid "Captcha validation failed on login form."
|
291 |
+
msgstr "Walidacja Captcha nie powiodła się na formularzu logowania."
|
292 |
+
|
293 |
+
#: classes/class.swpm-auth.php:93
|
294 |
msgid "User Not Found."
|
295 |
+
msgstr "Nie znaleziono użytkownika."
|
296 |
|
297 |
+
#: classes/class.swpm-auth.php:100
|
298 |
msgid "Password Empty or Invalid."
|
299 |
+
msgstr "Brak hasła lub hasło błędne."
|
300 |
|
301 |
+
#: classes/class.swpm-auth.php:133
|
302 |
msgid "Account is inactive."
|
303 |
msgstr "Konto jest nieaktywne."
|
304 |
|
305 |
+
#: classes/class.swpm-auth.php:136 classes/class.swpm-auth.php:162
|
306 |
+
msgid "Account has expired."
|
307 |
+
msgstr "Konto wygasło."
|
308 |
+
|
309 |
+
#: classes/class.swpm-auth.php:139
|
310 |
+
msgid "Account is pending."
|
311 |
+
msgstr "Konto jest oczekujące."
|
312 |
+
|
313 |
+
#: classes/class.swpm-auth.php:146
|
314 |
+
#, php-format
|
315 |
+
msgid ""
|
316 |
+
"You need to activate your account. If you didn't receive an email then %s to "
|
317 |
+
"resend the activation email."
|
318 |
+
msgstr ""
|
319 |
+
"Musisz aktywować swoje konto. Jeśli nie otrzymałeś emaila, wówczas %s "
|
320 |
+
"ponownie wysyła email aktywacyjny."
|
321 |
+
|
322 |
+
#: classes/class.swpm-auth.php:146
|
323 |
+
#: classes/class.swpm-front-registration.php:376
|
324 |
+
#: classes/class.swpm-front-registration.php:426
|
325 |
+
#: classes/class.swpm-utils-misc.php:169
|
326 |
+
msgid "click here"
|
327 |
+
msgstr "kliknij tu"
|
328 |
+
|
329 |
+
#: classes/class.swpm-auth.php:170
|
330 |
msgid "You are logged in as:"
|
331 |
msgstr "Jesteś zalogowany jako:"
|
332 |
|
333 |
+
#: classes/class.swpm-auth.php:234
|
334 |
msgid "Logged Out Successfully."
|
335 |
+
msgstr "Wylogowano poprawnie."
|
336 |
|
337 |
+
#: classes/class.swpm-auth.php:287
|
338 |
msgid "Session Expired."
|
339 |
+
msgstr "Sesja wygasła."
|
340 |
+
|
341 |
+
#: classes/class.swpm-auth.php:304
|
342 |
+
msgid "Please login again."
|
343 |
+
msgstr "Proszę się ponownie zalogować."
|
344 |
+
|
345 |
+
#: classes/class.swpm-category-list.php:19 classes/class.swpm-members.php:24
|
346 |
+
#: classes/class.swpm-membership-levels.php:11
|
347 |
+
#: classes/class.swpm-membership-levels.php:21
|
348 |
+
#: classes/class.swpm-post-list.php:20
|
349 |
+
#: classes/admin-includes/class.swpm-payments-list-table.php:85
|
350 |
+
#: views/add.php:40 views/admin_member_form_common_part.php:2 views/edit.php:75
|
351 |
+
#: views/payments/payment-gateway/admin_braintree_buy_now_button.php:50
|
352 |
+
#: views/payments/payment-gateway/admin_paypal_buy_now_button.php:34
|
353 |
+
#: views/payments/payment-gateway/admin_paypal_buy_now_button.php:229
|
354 |
+
#: views/payments/payment-gateway/admin_paypal_smart_checkout_button.php:49
|
355 |
+
#: views/payments/payment-gateway/admin_paypal_subscription_button.php:35
|
356 |
+
#: views/payments/payment-gateway/admin_paypal_subscription_button.php:317
|
357 |
+
#: views/payments/payment-gateway/admin_stripe_buy_now_button.php:47
|
358 |
+
#: views/payments/payment-gateway/admin_stripe_buy_now_button.php:273
|
359 |
+
#: views/payments/payment-gateway/admin_stripe_subscription_button.php:99
|
360 |
+
msgid "Membership Level"
|
361 |
+
msgstr "Poziom dostępu"
|
362 |
+
|
363 |
+
#: classes/class.swpm-category-list.php:33
|
364 |
+
msgid "Category ID"
|
365 |
+
msgstr "ID kategorii"
|
366 |
+
|
367 |
+
#: classes/class.swpm-category-list.php:34
|
368 |
+
msgid "Category Name"
|
369 |
+
msgstr "Nazwa kategorii"
|
370 |
+
|
371 |
+
#: classes/class.swpm-category-list.php:35
|
372 |
+
msgid "Category Type (Taxonomy)"
|
373 |
+
msgstr "Typ Kategorii (Taksonomia)"
|
374 |
+
|
375 |
+
#: classes/class.swpm-category-list.php:36
|
376 |
+
msgid "Description"
|
377 |
+
msgstr "Opis"
|
378 |
+
|
379 |
+
#: classes/class.swpm-category-list.php:37
|
380 |
+
msgid "Count"
|
381 |
+
msgstr "Licznik"
|
382 |
|
383 |
+
#: classes/class.swpm-category-list.php:92
|
384 |
+
msgid "Category protection updated!"
|
385 |
+
msgstr "Aktualizacja ochrony kategorii uaktualniona!"
|
386 |
|
387 |
+
#: classes/class.swpm-category-list.php:130
|
388 |
+
msgid "No category found."
|
389 |
+
msgstr "Nie znaleziono żadnej kategorii."
|
390 |
|
391 |
+
#: classes/class.swpm-comment-form-related.php:15
|
392 |
+
msgid "Please login to comment."
|
393 |
+
msgstr "Proszę się zalogować, aby skomentować."
|
394 |
+
|
395 |
+
#: classes/class.swpm-comment-form-related.php:40
|
396 |
+
msgid "Please Login to Comment."
|
397 |
+
msgstr "Proszę się zalogować, aby skomentować."
|
398 |
+
|
399 |
+
#: classes/class.swpm-comment-form-related.php:79
|
400 |
+
msgid "Comments not allowed by a non-member."
|
401 |
+
msgstr "Komentarze niedozwolone przez osoby niebędące członkami."
|
402 |
+
|
403 |
+
#: classes/class.swpm-form.php:30
|
404 |
+
msgid ""
|
405 |
+
"Wordpress account exists with given username. But given email doesn't match."
|
406 |
+
msgstr ""
|
407 |
+
"Konto Wordpress istnieje z podaną nazwą użytkownika. Ale podany e-mail nie "
|
408 |
+
"pasuje."
|
409 |
+
|
410 |
+
#: classes/class.swpm-form.php:31
|
411 |
+
msgid ""
|
412 |
+
" Use a different username to complete the registration. If you want to use "
|
413 |
+
"that username then you must enter the correct email address associated with "
|
414 |
+
"the existing WP user to connect with that account."
|
415 |
+
msgstr ""
|
416 |
+
" Użyj innej nazwy użytkownika, aby zakończyć rejestrację. Jeśli chcesz użyć "
|
417 |
+
"tej nazwy użytkownika, musisz podać poprawny adres e-mail powiązany z "
|
418 |
+
"istniejącym użytkownikiem WP, aby połączyć się z tym kontem."
|
419 |
+
|
420 |
+
#: classes/class.swpm-form.php:37
|
421 |
msgid ""
|
422 |
+
"Wordpress account exists with given email. But given username doesn't match."
|
423 |
+
msgstr ""
|
424 |
+
"Konto Wordpress istnieje z podanym adresem e-mail. Ale podana nazwa "
|
425 |
+
"użytkownika nie pasuje."
|
426 |
|
427 |
+
#: classes/class.swpm-form.php:38
|
428 |
msgid ""
|
429 |
+
" Use a different email address to complete the registration. If you want to "
|
430 |
+
"use that email then you must enter the correct username associated with the "
|
431 |
+
"existing WP user to connect with that account."
|
432 |
msgstr ""
|
433 |
+
" Użyj innego adresu e-mail, aby dokończyć rejestrację. Jeśli chcesz użyć "
|
434 |
+
"tego e-maila, musisz wpisać poprawną nazwę użytkownika powiązaną z "
|
435 |
+
"istniejącym użytkownikiem WP, aby połączyć się z tym kontem."
|
436 |
|
437 |
+
#: classes/class.swpm-form.php:48
|
438 |
+
msgid "Username is required"
|
439 |
+
msgstr "To pole jest wymagane. Podaj nazwę użytkownika"
|
440 |
|
441 |
+
#: classes/class.swpm-form.php:52
|
442 |
+
msgid "Username contains invalid character"
|
443 |
+
msgstr "Nazwa użytkownika zawiera nieprawidłowy znak"
|
444 |
|
445 |
+
#: classes/class.swpm-form.php:60
|
446 |
+
msgid "Username already exists."
|
447 |
+
msgstr "Taka nazwa użytkownika już istnieje."
|
448 |
+
|
449 |
+
#: classes/class.swpm-form.php:83
|
450 |
msgid "Password is required"
|
451 |
msgstr "Wymagane hasło"
|
452 |
|
453 |
+
#: classes/class.swpm-form.php:90
|
454 |
msgid "Password mismatch"
|
455 |
+
msgstr "Podano różne hasła"
|
456 |
|
457 |
+
#: classes/class.swpm-form.php:101
|
458 |
msgid "Email is required"
|
459 |
msgstr "Wymagany email"
|
460 |
|
461 |
+
#: classes/class.swpm-form.php:105
|
462 |
msgid "Email is invalid"
|
463 |
msgstr "Błędny email"
|
464 |
|
465 |
+
#: classes/class.swpm-form.php:121
|
466 |
msgid "Email is already used."
|
467 |
+
msgstr "Taki adres email jest już użyty."
|
468 |
|
469 |
+
#: classes/class.swpm-form.php:179
|
470 |
msgid "Member since field is invalid"
|
471 |
msgstr "Pole \"użytkownik\" jest nieprawidłowe"
|
472 |
|
473 |
+
#: classes/class.swpm-form.php:190
|
474 |
+
msgid "Access starts field is invalid"
|
475 |
+
msgstr "Pole 'początek subskrypcji' - błędne"
|
476 |
|
477 |
+
#: classes/class.swpm-form.php:200
|
478 |
msgid "Gender field is invalid"
|
479 |
msgstr "Pole \"płeć\" jest nieprawidłowa"
|
480 |
|
481 |
+
#: classes/class.swpm-form.php:211
|
482 |
msgid "Account state field is invalid"
|
483 |
msgstr "Pole \"Account State\" jest nieprawidłowe"
|
484 |
|
485 |
+
#: classes/class.swpm-form.php:218
|
486 |
+
msgid "Invalid membership level"
|
487 |
+
msgstr "Błędny poziom członkostwa"
|
488 |
+
|
489 |
+
#: classes/class.swpm-front-registration.php:33
|
490 |
+
msgid ""
|
491 |
+
"Error! Invalid Request. Could not find a match for the given security code "
|
492 |
+
"and the user ID."
|
493 |
+
msgstr ""
|
494 |
+
"Błąd! Nieprawidłowe żądanie. Nie udało się znaleźć zgodności z podanym kodem "
|
495 |
+
"bezpieczeństwa i identyfikatorem użytkownika."
|
496 |
+
|
497 |
+
#: classes/class.swpm-front-registration.php:45
|
498 |
+
#: classes/class.swpm-utils-misc.php:274 views/login.php:36
|
499 |
+
msgid "Join Us"
|
500 |
+
msgstr "Przyłącz się"
|
501 |
+
|
502 |
+
#: classes/class.swpm-front-registration.php:47
|
503 |
+
msgid ""
|
504 |
+
"Free membership is disabled on this site. Please make a payment from the "
|
505 |
+
msgstr ""
|
506 |
+
"Darmowe członkostwo jest wyłączone na tej stronie. Prosimy o dokonanie "
|
507 |
+
"płatności "
|
508 |
+
|
509 |
+
#: classes/class.swpm-front-registration.php:49
|
510 |
+
msgid " page to pay for a premium membership."
|
511 |
+
msgstr " Strona płatności za członkostwo premium."
|
512 |
+
|
513 |
+
#: classes/class.swpm-front-registration.php:51
|
514 |
+
msgid ""
|
515 |
+
"You will receive a unique link via email after the payment. You will be able "
|
516 |
+
"to use that link to complete the premium membership registration."
|
517 |
+
msgstr ""
|
518 |
+
"Otrzymasz unikalny link poprzez e-mail po dokonaniu płatności. Będziesz mógł "
|
519 |
+
"skorzystać z tego linku, aby dokończyć rejestrację członkostwa premium."
|
520 |
+
|
521 |
+
#: classes/class.swpm-front-registration.php:79
|
522 |
+
msgid "Security check: captcha validation failed."
|
523 |
+
msgstr "Kontrola bezpieczeństwa: walidacja Captcha nie powiodła się."
|
524 |
+
|
525 |
+
#: classes/class.swpm-front-registration.php:89
|
526 |
+
msgid "You must accept the terms and conditions."
|
527 |
+
msgstr "Musisz zaakceptować warunki i zasady."
|
528 |
+
|
529 |
+
#: classes/class.swpm-front-registration.php:100
|
530 |
+
msgid "You must agree to the privacy policy."
|
531 |
+
msgstr "Musisz wyrazić zgodę na politykę prywatności."
|
532 |
+
|
533 |
+
#: classes/class.swpm-front-registration.php:140
|
534 |
+
msgid ""
|
535 |
+
"You need to confirm your email address. Please check your email and follow "
|
536 |
+
"instructions to complete your registration."
|
537 |
+
msgstr ""
|
538 |
+
"Musisz potwierdzić swój adres e-mail. Sprawdź swój adres e-mail i postępuj "
|
539 |
+
"zgodnie z instrukcjami, aby dokończyć rejestrację."
|
540 |
+
|
541 |
+
#: classes/class.swpm-front-registration.php:145
|
542 |
+
msgid "Registration Successful. "
|
543 |
+
msgstr "Instalacja zakończona powodzeniem. "
|
544 |
+
|
545 |
+
#: classes/class.swpm-front-registration.php:145
|
546 |
+
#: classes/class.swpm-utils-misc.php:273 classes/class.swpm-utils-misc.php:285
|
547 |
msgid "Please"
|
548 |
msgstr "Proszę"
|
549 |
|
550 |
+
#: classes/class.swpm-front-registration.php:145
|
551 |
+
#: classes/class.swpm-utils-misc.php:273 views/login.php:30
|
552 |
msgid "Login"
|
553 |
msgstr "Login"
|
554 |
|
555 |
+
#: classes/class.swpm-front-registration.php:159
|
|
|
556 |
msgid "Please correct the following"
|
557 |
msgstr "Proszę poprawić następujące"
|
558 |
|
559 |
+
#: classes/class.swpm-front-registration.php:207
|
560 |
msgid "Membership Level Couldn't be found."
|
561 |
+
msgstr "Pozim członkostwa nie znaleziony."
|
562 |
+
|
563 |
+
#: classes/class.swpm-front-registration.php:258
|
564 |
+
msgid "Error! Nonce verification failed for front end profile edit."
|
565 |
+
msgstr "Błąd! Chwilowo weryfikacja nie powiodła się."
|
566 |
|
567 |
+
#: classes/class.swpm-front-registration.php:266
|
568 |
+
msgid "Profile updated successfully."
|
569 |
+
msgstr "Aktualizacja pomyślna."
|
570 |
|
571 |
+
#: classes/class.swpm-front-registration.php:275
|
572 |
+
msgid ""
|
573 |
+
"Profile updated successfully. You will need to re-login since you changed "
|
574 |
+
"your password."
|
575 |
+
msgstr ""
|
576 |
+
"Profil został pomyślnie zaktualizowany. Musisz się ponownie zalogować, "
|
577 |
+
"ponieważ zmieniłeś hasło."
|
578 |
+
|
579 |
+
#: classes/class.swpm-front-registration.php:289
|
580 |
+
msgid "Please correct the following."
|
581 |
+
msgstr "Proszę poprawić następujące."
|
582 |
+
|
583 |
+
#: classes/class.swpm-front-registration.php:301
|
584 |
+
msgid "Captcha validation failed."
|
585 |
+
msgstr "Zatwierdzenie Captcha nie powiodła się."
|
586 |
+
|
587 |
+
#: classes/class.swpm-front-registration.php:309
|
588 |
+
msgid "Email address not valid."
|
589 |
+
msgstr "Błędny adres e-mail."
|
590 |
+
|
591 |
+
#: classes/class.swpm-front-registration.php:320
|
592 |
+
msgid "No user found with that email address."
|
593 |
+
msgstr "Nie znaleziono żadnego użytkownika z tym adresem e-mail."
|
594 |
+
|
595 |
+
#: classes/class.swpm-front-registration.php:321
|
596 |
+
#: classes/class.swpm-front-registration.php:350
|
597 |
+
msgid "Email Address: "
|
598 |
+
msgstr "Adres e-mail: "
|
599 |
+
|
600 |
+
#: classes/class.swpm-front-registration.php:349
|
601 |
msgid "New password has been sent to your email address."
|
602 |
+
msgstr "Nowe hasło zostało wysłane na podany adres email."
|
603 |
+
|
604 |
+
#: classes/class.swpm-front-registration.php:371
|
605 |
+
msgid "Can't find member account."
|
606 |
+
msgstr "Nie mogę znaleźć konta członka."
|
607 |
+
|
608 |
+
#: classes/class.swpm-front-registration.php:376
|
609 |
+
#: classes/class.swpm-front-registration.php:426
|
610 |
+
msgid "Account already active. "
|
611 |
+
msgstr "Konto już aktywne. "
|
612 |
+
|
613 |
+
#: classes/class.swpm-front-registration.php:376
|
614 |
+
#: classes/class.swpm-front-registration.php:426
|
615 |
+
msgid " to login."
|
616 |
+
msgstr " aby się zalogować."
|
617 |
+
|
618 |
+
#: classes/class.swpm-front-registration.php:383
|
619 |
+
msgid ""
|
620 |
+
"Activation code mismatch. Cannot activate this account. Please contact the "
|
621 |
+
"site admin."
|
622 |
+
msgstr ""
|
623 |
+
"Niedopasowanie kodu aktywacji. Nie można aktywować tego konta. Prosimy o "
|
624 |
+
"kontakt z administratorem strony."
|
625 |
+
|
626 |
+
#: classes/class.swpm-front-registration.php:397
|
627 |
+
msgid "Success! Your account has been activated successfully."
|
628 |
+
msgstr "Sukces! Twoje konto zostało pomyślnie aktywowane."
|
629 |
+
|
630 |
+
#: classes/class.swpm-front-registration.php:421
|
631 |
+
msgid "Cannot find member account."
|
632 |
+
msgstr "Nie można znaleźć konta użytkownika."
|
633 |
|
634 |
+
#: classes/class.swpm-front-registration.php:443
|
635 |
+
msgid ""
|
636 |
+
"Activation email has been sent. Please check your email and activate your "
|
637 |
+
"account."
|
638 |
+
msgstr ""
|
639 |
+
"E-mail aktywacyjny został wysłany. Proszę sprawdzić swoją skrzynkę e-mail i "
|
640 |
+
"aktywować konto."
|
641 |
+
|
642 |
+
#: classes/class.swpm-init-time-tasks.php:118
|
643 |
+
msgid "Sorry, Nonce verification failed."
|
644 |
+
msgstr "Przykro nam, ale chwilowo weryfikacja się nie powiodła."
|
645 |
+
|
646 |
+
#: classes/class.swpm-init-time-tasks.php:125
|
647 |
+
msgid "Sorry, Password didn't match."
|
648 |
+
msgstr "Podane hasła się różnią."
|
649 |
|
650 |
+
#: classes/class.swpm-level-form.php:50
|
651 |
+
msgid "Date format is not valid."
|
652 |
+
msgstr "Niewłaściwy format daty."
|
653 |
+
|
654 |
+
#: classes/class.swpm-level-form.php:58
|
655 |
+
msgid "Access duration must be > 0."
|
656 |
+
msgstr "Czas trwania subskrypcji musi być większy od 0."
|
657 |
+
|
658 |
+
#: classes/class.swpm-members.php:10
|
659 |
msgid "Member"
|
660 |
msgstr "Członek"
|
661 |
|
662 |
+
#: classes/class.swpm-members.php:19
|
663 |
+
#: classes/class.swpm-membership-levels.php:20
|
|
|
|
|
|
|
664 |
msgid "ID"
|
665 |
msgstr "ID"
|
666 |
|
667 |
+
#: classes/class.swpm-members.php:20 views/add.php:16 views/admin_add.php:11
|
668 |
+
#: views/admin_edit.php:19 views/edit.php:23
|
669 |
+
#: includes/swpm_mda_show_profile.php:27
|
670 |
+
msgid "Username"
|
671 |
+
msgstr "Użytkownik"
|
672 |
|
673 |
+
#: classes/class.swpm-members.php:21
|
674 |
+
#: classes/admin-includes/class.swpm-payments-list-table.php:78
|
675 |
+
#: views/add.php:32 views/admin_member_form_common_part.php:15
|
676 |
+
#: views/edit.php:39 includes/swpm_mda_show_profile.php:28
|
677 |
msgid "First Name"
|
678 |
msgstr "Imię"
|
679 |
|
680 |
+
#: classes/class.swpm-members.php:22
|
681 |
+
#: classes/admin-includes/class.swpm-payments-list-table.php:79
|
682 |
+
#: views/add.php:36 views/admin_member_form_common_part.php:19
|
683 |
+
#: views/edit.php:43 includes/swpm_mda_show_profile.php:29
|
684 |
msgid "Last Name"
|
685 |
msgstr "Nazwisko"
|
686 |
|
687 |
+
#: classes/class.swpm-members.php:23 views/add.php:20 views/edit.php:27
|
688 |
+
#: includes/swpm_mda_show_profile.php:35
|
689 |
msgid "Email"
|
690 |
+
msgstr "Email"
|
|
|
|
|
|
|
|
|
|
|
|
|
691 |
|
692 |
+
#: classes/class.swpm-members.php:25 views/admin_member_form_common_part.php:11
|
693 |
+
msgid "Access Starts"
|
694 |
+
msgstr "Dostęp rozpoczyna się"
|
695 |
|
696 |
+
#: classes/class.swpm-members.php:26 includes/swpm_mda_show_profile.php:31
|
697 |
msgid "Account State"
|
698 |
msgstr "Account State"
|
699 |
|
700 |
+
#: classes/class.swpm-members.php:27
|
701 |
+
msgid "Last Login Date"
|
702 |
+
msgstr "Data ostatniego logowania"
|
703 |
+
|
704 |
+
#: classes/class.swpm-members.php:46
|
705 |
+
#: classes/class.swpm-membership-levels.php:36
|
706 |
+
#: classes/admin-includes/class.swpm-payment-buttons-list-table.php:94
|
707 |
+
#: classes/admin-includes/class.swpm-payments-list-table.php:102
|
708 |
msgid "Delete"
|
709 |
msgstr "Skasuj"
|
710 |
|
711 |
+
#: classes/class.swpm-members.php:47
|
712 |
+
msgid "Set Status to Active"
|
713 |
+
msgstr "Ustaw status na Aktywny"
|
714 |
|
715 |
+
#: classes/class.swpm-members.php:48
|
716 |
+
msgid "Set Status to Active and Notify"
|
717 |
+
msgstr "Ustaw status na Aktywny i Powiadom"
|
718 |
|
719 |
+
#: classes/class.swpm-members.php:49
|
720 |
+
msgid "Set Status to Inactive"
|
721 |
+
msgstr "Ustaw status na Nieaktywny"
|
722 |
|
723 |
+
#: classes/class.swpm-members.php:50
|
724 |
+
msgid "Set Status to Pending"
|
725 |
+
msgstr "Ustaw status na oczekujący"
|
|
|
726 |
|
727 |
+
#: classes/class.swpm-members.php:51
|
728 |
+
msgid "Set Status to Expired"
|
729 |
+
msgstr "Ustaw status na wygasły"
|
730 |
|
731 |
+
#: classes/class.swpm-members.php:72
|
732 |
+
msgid "incomplete"
|
733 |
+
msgstr "niekompletny"
|
734 |
|
735 |
+
#: classes/class.swpm-members.php:191
|
736 |
+
msgid "No member found."
|
737 |
+
msgstr "Nie znaleziono użytkownika."
|
738 |
|
739 |
+
#: classes/class.swpm-members.php:337
|
740 |
+
msgid "Error! Nonce verification failed for user delete from admin end."
|
741 |
+
msgstr ""
|
742 |
+
"Błąd! Weryfikacja chwilowo nie powiodła się w przypadku usuwania użytkownika "
|
743 |
+
"z końcówki administracyjnej."
|
744 |
|
745 |
+
#: classes/class.swpm-members.php:406 classes/class.swpm-members.php:436
|
746 |
+
msgid "Error! Please select a membership level first."
|
747 |
+
msgstr "Błąd!. Najpierw wybierz poziom dostępu."
|
748 |
|
749 |
+
#: classes/class.swpm-members.php:423
|
750 |
+
msgid "Membership level change operation completed successfully."
|
751 |
+
msgstr "Dodano nowy poziom członkostwa."
|
752 |
|
753 |
+
#: classes/class.swpm-members.php:453
|
754 |
+
msgid "Access starts date change operation successfully completed."
|
755 |
+
msgstr ""
|
756 |
+
"Dostęp rozpoczyna operację zmiany daty, która została pomyślnie zakończona."
|
757 |
|
758 |
+
#: classes/class.swpm-members.php:462
|
759 |
+
msgid "Bulk Update Membership Level of Members"
|
760 |
+
msgstr "Masowa aktualizacja poziomu członkostwa użytkowników"
|
761 |
|
762 |
+
#: classes/class.swpm-members.php:465
|
763 |
+
msgid ""
|
764 |
+
"You can manually change the membership level of any member by editing the "
|
765 |
+
"record from the members menu. "
|
766 |
+
msgstr ""
|
767 |
+
"Możesz ręcznie zmienić poziom członkostwa każdego członka, edytując rekord z "
|
768 |
+
"menu członków. "
|
769 |
|
770 |
+
#: classes/class.swpm-members.php:466
|
771 |
msgid ""
|
772 |
+
"You can use the following option to bulk update the membership level of "
|
773 |
+
"users who belong to the level you select below."
|
774 |
msgstr ""
|
775 |
+
"Możesz użyć tej opcji, aby masowo aktualizować poziom członkostwa "
|
776 |
+
"użytkowników, którzy należą do poziomu, który wybierzesz poniżej."
|
|
|
777 |
|
778 |
+
#: classes/class.swpm-members.php:472 classes/class.swpm-members.php:520
|
779 |
+
msgid "Membership Level: "
|
780 |
+
msgstr "Poziom członkostwa: "
|
781 |
|
782 |
+
#: classes/class.swpm-members.php:476
|
783 |
+
msgid "Select Current Level"
|
784 |
+
msgstr "Wybierz bieżący poziom"
|
785 |
|
786 |
+
#: classes/class.swpm-members.php:479
|
787 |
+
msgid ""
|
788 |
+
"Select the current membership level (the membership level of all members who "
|
789 |
+
"are in this level will be updated)."
|
790 |
+
msgstr ""
|
791 |
+
"Wybierz aktualny poziom członkostwa (poziom członkostwa wszystkich członków, "
|
792 |
+
"którzy znajdują się na tym poziomie, zostanie zaktualizowany)."
|
793 |
|
794 |
+
#: classes/class.swpm-members.php:485
|
795 |
+
msgid "Level to Change to: "
|
796 |
+
msgstr "Poziom do zmiany na: "
|
797 |
|
798 |
+
#: classes/class.swpm-members.php:489
|
799 |
+
msgid "Select Target Level"
|
800 |
+
msgstr "Wybierz poziom docelowy"
|
801 |
|
802 |
+
#: classes/class.swpm-members.php:492
|
803 |
+
msgid "Select the new membership level."
|
804 |
+
msgstr "Wybierz nowy poziom członkostwa."
|
805 |
|
806 |
+
#: classes/class.swpm-members.php:498
|
807 |
+
msgid "Bulk Change Membership Level"
|
808 |
+
msgstr "Masowa zmiana poziomu członkostwa"
|
809 |
|
810 |
+
#: classes/class.swpm-members.php:508
|
811 |
+
msgid "Bulk Update Access Starts Date of Members"
|
812 |
+
msgstr "Masowa aktualizacja daty rozpoczęcia członkostwa"
|
813 |
|
814 |
+
#: classes/class.swpm-members.php:512
|
815 |
+
msgid ""
|
816 |
+
"The access starts date of a member is set to the day the user registers. "
|
817 |
+
"This date value is used to calculate how long the member can access your "
|
818 |
+
"content that are protected with a duration type protection in the membership "
|
819 |
+
"level. "
|
820 |
+
msgstr ""
|
821 |
+
"Data rozpoczęcia dostępu członka jest ustawiana na dzień, w którym "
|
822 |
+
"użytkownik się zarejestruje. Ta wartość daty jest używana do obliczenia, jak "
|
823 |
+
"długo członek może uzyskiwać dostęp do treści, które są chronione przez czas "
|
824 |
+
"trwania ochrony typu w tym poziomie członkostwa. "
|
825 |
|
826 |
+
#: classes/class.swpm-members.php:513
|
827 |
+
msgid ""
|
828 |
+
"You can manually set a specific access starts date value of all members who "
|
829 |
+
"belong to a particular level using the following option."
|
830 |
+
msgstr ""
|
831 |
+
"Możesz ręcznie ustawić konkretną wartość daty rozpoczęcia dostępu dla "
|
832 |
+
"wszystkich członków, którzy należą do danego poziomu, korzystając z "
|
833 |
+
"następującej opcji."
|
834 |
|
835 |
+
#: classes/class.swpm-members.php:523
|
836 |
+
msgid "Select Level"
|
837 |
+
msgstr "Wybierz poziom"
|
838 |
|
839 |
+
#: classes/class.swpm-members.php:526
|
840 |
+
msgid ""
|
841 |
+
"Select the Membership level (the access start date of all members who are in "
|
842 |
+
"this level will be updated)."
|
843 |
+
msgstr ""
|
844 |
+
"Wybierz poziom członkostwa (data rozpoczęcia dostępu wszystkich członków, "
|
845 |
+
"którzy znajdują się na tym poziomie, zostanie zaktualizowana)."
|
846 |
|
847 |
+
#: classes/class.swpm-members.php:535
|
848 |
+
msgid "Specify the access starts date value."
|
849 |
+
msgstr "Określ wartość daty rozpoczęcia dostępu."
|
|
|
850 |
|
851 |
+
#: classes/class.swpm-members.php:541
|
852 |
+
msgid "Bulk Change Access Starts Date"
|
853 |
+
msgstr "Masowa zmiana daty rozpoczęcie dostępu"
|
|
|
854 |
|
855 |
+
#: classes/class.swpm-members.php:576
|
856 |
+
msgid "Simple WP Membership::Members"
|
857 |
+
msgstr "Simple WP Membership::Użytkownicy"
|
858 |
|
859 |
+
#: classes/class.swpm-members.php:577
|
860 |
+
#: classes/class.swpm-membership-levels.php:226 views/admin_members_list.php:44
|
861 |
+
msgid "Add New"
|
862 |
+
msgstr "Dodaj nowy"
|
863 |
|
864 |
+
#: classes/class.swpm-members.php:582 views/admin_add.php:6
|
865 |
+
msgid "Add Member"
|
866 |
+
msgstr "Dodaj użytkownika"
|
867 |
|
868 |
+
#: classes/class.swpm-members.php:583
|
869 |
+
msgid "Bulk Operation"
|
870 |
+
msgstr "Operacja masowa"
|
871 |
+
|
872 |
+
#: classes/class.swpm-membership-level.php:52
|
873 |
+
msgid ""
|
874 |
+
"Error! Nonce verification failed for membership level creation from admin "
|
875 |
+
"end."
|
876 |
msgstr ""
|
877 |
+
"Błąd! Weryfikacja chwilowo nie powiodła się dla tworzenia poziomu "
|
878 |
+
"członkostwa z końcówki administracyjnej."
|
879 |
|
880 |
+
#: classes/class.swpm-membership-level.php:68
|
881 |
+
msgid "Membership Level Creation Successful."
|
882 |
+
msgstr "Pomyślnie utworzono poziom członkostwa."
|
883 |
|
884 |
+
#: classes/class.swpm-membership-level.php:84
|
885 |
+
msgid ""
|
886 |
+
"Error! Nonce verification failed for membership level edit from admin end."
|
887 |
+
msgstr ""
|
888 |
+
"Błąd! Weryfikacja chwilowo nie powiodła się dla edycji poziomu członkostwa z "
|
889 |
+
"końcówki administracyjnej."
|
890 |
|
891 |
+
#: classes/class.swpm-membership-level.php:100
|
892 |
+
msgid "Membership Level Updated Successfully."
|
893 |
+
msgstr "Poziom członkostwa zaktualizowany pomyślnie."
|
894 |
|
895 |
+
#: classes/class.swpm-membership-levels.php:22
|
896 |
+
msgid "Role"
|
897 |
+
msgstr "Uprawnienia"
|
898 |
|
899 |
+
#: classes/class.swpm-membership-levels.php:23
|
900 |
+
msgid "Access Valid For/Until"
|
901 |
+
msgstr "Subskrypcja ważna do"
|
902 |
|
903 |
+
#: classes/class.swpm-membership-levels.php:133
|
904 |
+
msgid "No membership levels found."
|
905 |
+
msgstr "Nie znaleziono żadnych poziomów członkostwa."
|
906 |
|
907 |
+
#: classes/class.swpm-membership-levels.php:197
|
908 |
+
msgid ""
|
909 |
+
"Error! Nonce verification failed for membership level delete from admin end."
|
910 |
+
msgstr ""
|
911 |
+
"Błąd! Weryfikacja chwilowo nie powiodła się dla usuwania poziomu członkostwa "
|
912 |
+
"z końcówki administracyjnej."
|
913 |
|
914 |
+
#: classes/class.swpm-membership-levels.php:216 views/admin_members_list.php:31
|
915 |
+
#: views/payments/admin_all_payment_transactions.php:16 views/template-1.php:53
|
916 |
+
#: views/template-2.php:54
|
917 |
+
msgid "Search"
|
918 |
+
msgstr "Szukaj"
|
919 |
|
920 |
+
#: classes/class.swpm-membership-levels.php:261
|
921 |
+
msgid "Simple WP Membership::Membership Levels"
|
922 |
+
msgstr "Simple WP Membership::Poziom członkowstwa"
|
923 |
|
924 |
+
#: classes/class.swpm-membership-levels.php:266
|
925 |
+
msgid "Add Level"
|
926 |
+
msgstr "Dodaj nowy poziom dostępu"
|
927 |
+
|
928 |
+
#: classes/class.swpm-membership-levels.php:267
|
929 |
+
msgid "Manage Content Protection"
|
930 |
+
msgstr "Zarządzanie ustawieniami ochrony zawartości"
|
931 |
+
|
932 |
+
#: classes/class.swpm-membership-levels.php:268
|
933 |
+
msgid "Category Protection"
|
934 |
+
msgstr "Ochrona kategorii"
|
935 |
+
|
936 |
+
#: classes/class.swpm-membership-levels.php:269
|
937 |
+
msgid "Post and Page Protection"
|
938 |
+
msgstr "Ochrona wpisu i strony internetowej"
|
939 |
+
|
940 |
+
#: classes/class.swpm-post-list.php:43 classes/class.swpm-post-list.php:52
|
941 |
+
#: classes/class.swpm-post-list.php:62
|
942 |
+
#: classes/admin-includes/class.swpm-payments-list-table.php:81
|
943 |
+
msgid "Date"
|
944 |
+
msgstr "Data"
|
945 |
+
|
946 |
+
#: classes/class.swpm-post-list.php:44 classes/class.swpm-post-list.php:53
|
947 |
+
#: classes/class.swpm-post-list.php:63
|
948 |
+
msgid "Title"
|
949 |
+
msgstr "Tytuł"
|
950 |
+
|
951 |
+
#: classes/class.swpm-post-list.php:45 classes/class.swpm-post-list.php:54
|
952 |
+
#: classes/class.swpm-post-list.php:64
|
953 |
+
msgid "Author"
|
954 |
+
msgstr "Autor"
|
955 |
+
|
956 |
+
#: classes/class.swpm-post-list.php:46 classes/class.swpm-post-list.php:56
|
957 |
+
#: classes/class.swpm-post-list.php:66
|
958 |
+
msgid "Status"
|
959 |
+
msgstr "Status"
|
960 |
+
|
961 |
+
#: classes/class.swpm-post-list.php:55
|
962 |
+
msgid "Categories"
|
963 |
+
msgstr "Kategorie"
|
964 |
+
|
965 |
+
#: classes/class.swpm-post-list.php:65
|
966 |
+
msgid "Type"
|
967 |
+
msgstr "Typ"
|
968 |
+
|
969 |
+
#: classes/class.swpm-post-list.php:125
|
970 |
+
msgid "Protection settings updated!"
|
971 |
+
msgstr "Aktualizacja ustawień ochrony dokonana!"
|
972 |
+
|
973 |
+
#: classes/class.swpm-post-list.php:230
|
974 |
+
msgid "No items found."
|
975 |
+
msgstr "Nie znaleziono wyników."
|
976 |
+
|
977 |
+
#: classes/class.swpm-protection.php:22
|
978 |
+
msgid ""
|
979 |
+
"The category or parent category of this post is protected. You can change "
|
980 |
+
"the category protection settings from the "
|
981 |
+
msgstr ""
|
982 |
+
"Kategoria lub kategoria rodzicielska tego postu jest chroniona. Ustawienia "
|
983 |
+
"ochrony kategorii można zmienić w "
|
984 |
+
|
985 |
+
#: classes/class.swpm-protection.php:23
|
986 |
+
msgid "category protection menu"
|
987 |
+
msgstr "menu ochrony kategorii"
|
988 |
+
|
989 |
+
#: classes/class.swpm-settings.php:26 classes/class.swpm-settings.php:54
|
990 |
+
msgid "General Settings"
|
991 |
+
msgstr "Główne ustawienia"
|
992 |
+
|
993 |
+
#: classes/class.swpm-settings.php:27
|
994 |
+
msgid "Payment Settings"
|
995 |
+
msgstr "Ustawienia płatności"
|
996 |
+
|
997 |
+
#: classes/class.swpm-settings.php:28
|
998 |
+
msgid "Email Settings"
|
999 |
+
msgstr "Ustawienia e-mail"
|
1000 |
+
|
1001 |
+
#: classes/class.swpm-settings.php:29
|
1002 |
+
msgid "Tools"
|
1003 |
+
msgstr "Narzędzia"
|
1004 |
+
|
1005 |
+
#: classes/class.swpm-settings.php:30 classes/class.swpm-settings.php:187
|
1006 |
+
msgid "Advanced Settings"
|
1007 |
+
msgstr "Ustawienia zaawansowane"
|
1008 |
+
|
1009 |
+
#: classes/class.swpm-settings.php:31
|
1010 |
+
msgid "Addons Settings"
|
1011 |
+
msgstr "Ustawienia dodatków"
|
1012 |
+
|
1013 |
+
#: classes/class.swpm-settings.php:53
|
1014 |
+
msgid "Plugin Documentation"
|
1015 |
+
msgstr "Plugin Documentation"
|
1016 |
+
|
1017 |
+
#: classes/class.swpm-settings.php:55
|
1018 |
+
msgid "Enable Free Membership"
|
1019 |
+
msgstr "Pozwól na darmowe członkostwo"
|
1020 |
+
|
1021 |
+
#: classes/class.swpm-settings.php:56
|
1022 |
+
msgid ""
|
1023 |
+
"Enable/disable registration for free membership level. When you enable this "
|
1024 |
+
"option, make sure to specify a free membership level ID in the field below."
|
1025 |
+
msgstr ""
|
1026 |
+
"Włączenie/wyłączenie rejestracji dla bezpłatnego poziomu członkostwa. Po "
|
1027 |
+
"włączeniu tej opcji, upewnij się, że w polu poniżej podano identyfikator "
|
1028 |
+
"bezpłatnego poziomu członkostwa."
|
1029 |
+
|
1030 |
+
#: classes/class.swpm-settings.php:57
|
1031 |
+
msgid "Free Membership Level ID"
|
1032 |
+
msgstr "Level ID darmowego członkowstwa"
|
1033 |
+
|
1034 |
+
#: classes/class.swpm-settings.php:58
|
1035 |
+
msgid "Assign free membership level ID"
|
1036 |
+
msgstr "Przyciel Level ID do darmowego członkowstwa"
|
1037 |
+
|
1038 |
+
#: classes/class.swpm-settings.php:59
|
1039 |
+
msgid "Enable More Tag Protection"
|
1040 |
+
msgstr "Włącz ochrony znaczników \"więcej\""
|
1041 |
+
|
1042 |
+
#: classes/class.swpm-settings.php:60
|
1043 |
+
msgid ""
|
1044 |
+
"Enables or disables \"more\" tag protection in the posts and pages. Anything "
|
1045 |
+
"after the More tag is protected. Anything before the more tag is teaser "
|
1046 |
+
"content."
|
1047 |
+
msgstr ""
|
1048 |
+
"Włącza lub wyłącza ochronę znaczników \"więcej\" w postach i stronach. "
|
1049 |
+
"Wszystko po oznaczeniu \"więcej\" jest chronione. Wszystko, co znajduje się "
|
1050 |
+
"przed tagiem więcej, to zawartość zajawki."
|
1051 |
+
|
1052 |
+
#: classes/class.swpm-settings.php:61
|
1053 |
+
msgid "Hide Adminbar"
|
1054 |
+
msgstr "Showaj Adminibar"
|
1055 |
+
|
1056 |
+
#: classes/class.swpm-settings.php:62
|
1057 |
+
msgid ""
|
1058 |
+
"WordPress shows an admin toolbar to the logged in users of the site. Check "
|
1059 |
+
"this if you want to hide that admin toolbar in the frontend of your site."
|
1060 |
+
msgstr ""
|
1061 |
+
"WordPress pokazuje pasek narzędzi administratora zalogowanym użytkownikom "
|
1062 |
+
"witryny. Zaznacz to, jeśli chcesz ukryć pasek narzędzi administratora w "
|
1063 |
+
"przedniej części witryny."
|
1064 |
+
|
1065 |
+
#: classes/class.swpm-settings.php:63
|
1066 |
+
msgid "Show Adminbar to Admin"
|
1067 |
+
msgstr "Pokaż belkę administracyjną do konta administratora"
|
1068 |
+
|
1069 |
+
#: classes/class.swpm-settings.php:64
|
1070 |
+
msgid ""
|
1071 |
+
"Use this option if you want to show the admin toolbar to admin users only. "
|
1072 |
+
"The admin toolbar will be hidden for all other users."
|
1073 |
+
msgstr ""
|
1074 |
+
"Użyj tej opcji, jeśli chcesz, aby pasek narzędzi administratora był widoczny "
|
1075 |
+
"tylko dla administratorów. Pasek narzędzi administratora zostanie ukryty dla "
|
1076 |
+
"wszystkich pozostałych użytkowników."
|
1077 |
+
|
1078 |
+
#: classes/class.swpm-settings.php:65
|
1079 |
+
msgid "Disable Access to WP Dashboard"
|
1080 |
+
msgstr "Wyłączyć dostęp do panelu WP"
|
1081 |
+
|
1082 |
+
#: classes/class.swpm-settings.php:66
|
1083 |
+
msgid ""
|
1084 |
+
"WordPress allows a standard wp user to be able to go to the wp-admin URL and "
|
1085 |
+
"access his profile from the wp dashbaord. Using this option will prevent any "
|
1086 |
+
"non admin users from going to the wp dashboard."
|
1087 |
+
msgstr ""
|
1088 |
+
"WordPress pozwala standardowemu użytkownikowi na przejście do adresu URL wp-"
|
1089 |
+
"admin i uzyskanie dostępu do jego profilu z panelu wp. Użycie tej opcji "
|
1090 |
+
"uniemożliwi użytkownikom bez uprawnień administratora przejście do panelu "
|
1091 |
+
"administracyjnego wp."
|
1092 |
+
|
1093 |
+
#: classes/class.swpm-settings.php:68 classes/class.swpm-settings.php:242
|
1094 |
+
msgid "Default Account Status"
|
1095 |
+
msgstr "Domyślny status konta"
|
1096 |
+
|
1097 |
+
#: classes/class.swpm-settings.php:71
|
1098 |
+
msgid ""
|
1099 |
+
"Select the default account status for newly registered users. If you want to "
|
1100 |
+
"manually approve the members then you can set the status to \"Pending\"."
|
1101 |
+
msgstr ""
|
1102 |
+
"Wybierz domyślny status konta dla nowo zarejestrowanych użytkowników. Jeśli "
|
1103 |
+
"chcesz ręcznie zatwierdzić członków, możesz ustawić status \"oczekujący\"."
|
1104 |
+
|
1105 |
+
#: classes/class.swpm-settings.php:73
|
1106 |
+
msgid "Members Must be Logged in to Comment"
|
1107 |
+
msgstr "Członkowie muszą być zalogowani aby komentować"
|
1108 |
+
|
1109 |
+
#: classes/class.swpm-settings.php:74
|
1110 |
+
msgid ""
|
1111 |
+
"Enable this option if you only want the members of the site to be able to "
|
1112 |
+
"post a comment."
|
1113 |
+
msgstr ""
|
1114 |
+
"Włącz tę opcję, jeśli chcesz, aby tylko członkowie serwisu mogli zamieszczać "
|
1115 |
+
"komentarze."
|
1116 |
+
|
1117 |
+
#: classes/class.swpm-settings.php:83
|
1118 |
+
msgid "Pages Settings"
|
1119 |
+
msgstr "Ustawienia strony"
|
1120 |
+
|
1121 |
+
#: classes/class.swpm-settings.php:84
|
1122 |
+
msgid "Login Page URL"
|
1123 |
+
msgstr "Strona logowania"
|
1124 |
+
|
1125 |
+
#: classes/class.swpm-settings.php:86
|
1126 |
+
msgid "Registration Page URL"
|
1127 |
+
msgstr "Strona rejestracji"
|
1128 |
+
|
1129 |
+
#: classes/class.swpm-settings.php:88
|
1130 |
+
msgid "Join Us Page URL"
|
1131 |
+
msgstr "Strona dołącz do nas"
|
1132 |
+
|
1133 |
+
#: classes/class.swpm-settings.php:90
|
1134 |
+
msgid "Edit Profile Page URL"
|
1135 |
+
msgstr "Strona edycji profilu"
|
1136 |
+
|
1137 |
+
#: classes/class.swpm-settings.php:92
|
1138 |
+
msgid "Password Reset Page URL"
|
1139 |
+
msgstr "Strona zmiany hasła"
|
1140 |
+
|
1141 |
+
#: classes/class.swpm-settings.php:95
|
1142 |
+
msgid "Test & Debug Settings"
|
1143 |
+
msgstr "Ustawienia testów i debugowania"
|
1144 |
+
|
1145 |
+
#: classes/class.swpm-settings.php:97
|
1146 |
+
msgid "Check this option to enable debug logging."
|
1147 |
+
msgstr "Zaznacz tę opcję, aby włączyć debugowanie rejestracji."
|
1148 |
+
|
1149 |
+
#: classes/class.swpm-settings.php:98
|
1150 |
+
msgid ""
|
1151 |
+
" This can be useful when troubleshooting an issue. Turn it off and reset the "
|
1152 |
+
"log files after the troubleshooting is complete."
|
1153 |
+
msgstr ""
|
1154 |
+
" Może to być przydatne przy rozwiązywaniu problemów. Wyłącz i zresetuj pliki "
|
1155 |
+
"dziennika po zakończeniu rozwiązywania problemów."
|
1156 |
+
|
1157 |
+
#: classes/class.swpm-settings.php:100
|
1158 |
+
msgid "View general debug log file by clicking "
|
1159 |
+
msgstr "Obejrzyj ogólnu pliku dziennik debugowania klikając przycisk "
|
1160 |
+
|
1161 |
+
#: classes/class.swpm-settings.php:100 classes/class.swpm-settings.php:101
|
1162 |
+
#: classes/class.swpm-settings.php:102
|
1163 |
+
msgid "here"
|
1164 |
+
msgstr "tutaj"
|
1165 |
+
|
1166 |
+
#: classes/class.swpm-settings.php:101
|
1167 |
+
msgid "View login related debug log file by clicking "
|
1168 |
+
msgstr ""
|
1169 |
+
"Wyświetl plik dziennika debugowania związany z logowaniem, klikając przycisk "
|
1170 |
+
|
1171 |
+
#: classes/class.swpm-settings.php:102
|
1172 |
+
msgid "Reset debug log files by clicking "
|
1173 |
+
msgstr "Zresetuj pliki dziennika debugowania klikając przycisk "
|
1174 |
+
|
1175 |
+
#: classes/class.swpm-settings.php:103
|
1176 |
+
msgid "Enable Debug"
|
1177 |
+
msgstr "Włącz debugowanie"
|
1178 |
+
|
1179 |
+
#: classes/class.swpm-settings.php:105
|
1180 |
+
msgid "Enable Sandbox Testing"
|
1181 |
+
msgstr "Włącz testy Sandbox"
|
1182 |
+
|
1183 |
+
#: classes/class.swpm-settings.php:106
|
1184 |
+
msgid "Enable this option if you want to do sandbox payment testing."
|
1185 |
+
msgstr "Włącz tę opcję, jeśli chcesz zrobić testy płatności (sandbox)"
|
1186 |
+
|
1187 |
+
#: classes/class.swpm-settings.php:119
|
1188 |
+
msgid "Email Settings Overview"
|
1189 |
+
msgstr "Przegląd ustawień poczty elektronicznej"
|
1190 |
+
|
1191 |
+
#: classes/class.swpm-settings.php:120
|
1192 |
+
msgid "Email Misc. Settings"
|
1193 |
+
msgstr "Różne ustawienia email"
|
1194 |
+
|
1195 |
+
#: classes/class.swpm-settings.php:122
|
1196 |
+
msgid "From Email Address"
|
1197 |
+
msgstr "Z adresu email"
|
1198 |
+
|
1199 |
+
#: classes/class.swpm-settings.php:126
|
1200 |
+
msgid "Email Settings (Prompt to Complete Registration )"
|
1201 |
+
msgstr "Ustawienia poczty e-mail (Podpowiedź do zakończenia rejestracji )"
|
1202 |
+
|
1203 |
+
#: classes/class.swpm-settings.php:127 classes/class.swpm-settings.php:140
|
1204 |
+
#: classes/class.swpm-settings.php:158 classes/class.swpm-settings.php:163
|
1205 |
+
#: classes/class.swpm-settings.php:168 classes/class.swpm-settings.php:173
|
1206 |
+
msgid "Email Subject"
|
1207 |
+
msgstr "Temat email"
|
1208 |
+
|
1209 |
+
#: classes/class.swpm-settings.php:129 classes/class.swpm-settings.php:142
|
1210 |
+
#: classes/class.swpm-settings.php:159 classes/class.swpm-settings.php:164
|
1211 |
+
#: classes/class.swpm-settings.php:169 classes/class.swpm-settings.php:174
|
1212 |
+
msgid "Email Body"
|
1213 |
+
msgstr "Treść email"
|
1214 |
+
|
1215 |
+
#: classes/class.swpm-settings.php:133
|
1216 |
+
msgid ""
|
1217 |
+
"Enter the email address where you want the admin notification email to be "
|
1218 |
+
"sent to."
|
1219 |
+
msgstr ""
|
1220 |
+
"Wprowadź adres e-mail, na który ma zostać wysłana wiadomość e-mail z "
|
1221 |
+
"powiadomieniem od administratora."
|
1222 |
+
|
1223 |
+
#: classes/class.swpm-settings.php:134
|
1224 |
+
msgid ""
|
1225 |
+
" You can put multiple email addresses separated by comma (,) in the above "
|
1226 |
+
"field to send the notification to multiple email addresses."
|
1227 |
+
msgstr ""
|
1228 |
+
" Możesz umieścić wiele adresów e-mail oddzielonych przecinkiem (,) w "
|
1229 |
+
"powyższym polu, aby wysłać powiadomienie na wiele adresów e-mail."
|
1230 |
+
|
1231 |
+
#: classes/class.swpm-settings.php:136
|
1232 |
+
msgid "Enter the subject for the admin notification email."
|
1233 |
+
msgstr "Wprowadź temat wiadomości e-mail z powiadomieniem administratora."
|
1234 |
+
|
1235 |
+
#: classes/class.swpm-settings.php:137
|
1236 |
+
msgid ""
|
1237 |
+
"This email will be sent to the admin when a new user completes the "
|
1238 |
+
"membership registration. Only works if you have enabled the \"Send "
|
1239 |
+
"Notification to Admin\" option above."
|
1240 |
+
msgstr ""
|
1241 |
+
"Ten e-mail zostanie wysłany do administratora, gdy nowy użytkownik zakończy "
|
1242 |
+
"rejestrację członkostwa. Działa tylko wtedy, gdy włączono opcję \"Wyślij "
|
1243 |
+
"powiadomienie do administratora\" powyżej."
|
1244 |
+
|
1245 |
+
#: classes/class.swpm-settings.php:139
|
1246 |
+
msgid "Email Settings (Registration Complete)"
|
1247 |
+
msgstr "Ustawienia email (rejestracja zakończona)"
|
1248 |
+
|
1249 |
+
#: classes/class.swpm-settings.php:144
|
1250 |
+
msgid "Send Notification to Admin"
|
1251 |
+
msgstr "Wyślij powiadomienie do administratora"
|
1252 |
+
|
1253 |
+
#: classes/class.swpm-settings.php:145
|
1254 |
+
msgid ""
|
1255 |
+
"Enable this option if you want the admin to receive a notification when a "
|
1256 |
+
"member registers."
|
1257 |
+
msgstr ""
|
1258 |
+
"Włącz tę opcję, jeśli chcesz, aby administrator otrzymywał powiadomienia "
|
1259 |
+
"podczas rejestracji członka."
|
1260 |
+
|
1261 |
+
#: classes/class.swpm-settings.php:146
|
1262 |
+
msgid "Admin Email Address"
|
1263 |
+
msgstr "Adres email administratora"
|
1264 |
+
|
1265 |
+
#: classes/class.swpm-settings.php:148
|
1266 |
+
msgid "Admin Notification Email Subject"
|
1267 |
+
msgstr "Powiadomienie administratora: Temat wiadomości e-mail"
|
1268 |
+
|
1269 |
+
#: classes/class.swpm-settings.php:150
|
1270 |
+
msgid "Admin Notification Email Body"
|
1271 |
+
msgstr "Treść powiadomienia wysyłanego do administratora"
|
1272 |
+
|
1273 |
+
#: classes/class.swpm-settings.php:153
|
1274 |
+
msgid "Send Email to Member When Added via Admin Dashboard"
|
1275 |
+
msgstr "Wyślij email to dodanego użytkownika przez panel administratora"
|
1276 |
+
|
1277 |
+
#: classes/class.swpm-settings.php:157
|
1278 |
+
msgid "Email Settings (Password Reset)"
|
1279 |
+
msgstr "Ustawienia email (reset hasła)"
|
1280 |
+
|
1281 |
+
#: classes/class.swpm-settings.php:162
|
1282 |
+
msgid " Email Settings (Account Upgrade Notification)"
|
1283 |
+
msgstr " Ustawienie email ( Informacja o aktualizacji konta )"
|
1284 |
+
|
1285 |
+
#: classes/class.swpm-settings.php:167
|
1286 |
+
msgid " Email Settings (Bulk Account Activate Notification)"
|
1287 |
+
msgstr ""
|
1288 |
+
" Ustawienia poczty elektronicznej (powiadomienie o masowej aktywacji kont )"
|
1289 |
+
|
1290 |
+
#: classes/class.swpm-settings.php:172
|
1291 |
+
msgid " Email Settings (Email Activation)"
|
1292 |
+
msgstr " Ustawienia poczty elektronicznej (Aktywacja poczty elektronicznej)"
|
1293 |
+
|
1294 |
+
#: classes/class.swpm-settings.php:189
|
1295 |
+
msgid "Enable Expired Account Login"
|
1296 |
+
msgstr "Włączenie wygasłego logowania do konta"
|
1297 |
+
|
1298 |
+
#: classes/class.swpm-settings.php:190
|
1299 |
+
msgid ""
|
1300 |
+
"When enabled, expired members will be able to log into the system but won't "
|
1301 |
+
"be able to view any protected content. This allows them to easily renew "
|
1302 |
+
"their account by making another payment."
|
1303 |
+
msgstr ""
|
1304 |
+
"Po włączeniu tej opcji, członkowie, których okres ważności upłynął, będą "
|
1305 |
+
"mogli zalogować się do systemu, ale nie będą mogli przeglądać żadnych "
|
1306 |
+
"chronionych treści. Pozwala to na łatwe odnowienie konta poprzez dokonanie "
|
1307 |
+
"kolejnej wpłaty."
|
1308 |
+
|
1309 |
+
#: classes/class.swpm-settings.php:192
|
1310 |
+
msgid "Membership Renewal URL"
|
1311 |
+
msgstr "Adres URL odnowienia członkostwa"
|
1312 |
+
|
1313 |
+
#: classes/class.swpm-settings.php:193
|
1314 |
+
msgid ""
|
1315 |
+
"You can create a renewal page for your site. Read <a href=\"https://simple-"
|
1316 |
+
"membership-plugin.com/creating-membership-renewal-button/\" target=\"_blank"
|
1317 |
+
"\">this documentation</a> to learn how to create a renewal page."
|
1318 |
+
msgstr ""
|
1319 |
+
"Możesz stworzyć stronę odnowienia rejestracji dla swojej witryny. Przeczytaj "
|
1320 |
+
"<a href=\"https://simple-membership-plugin.com/creating-membership-renewal-"
|
1321 |
+
"button/\" target=\"_blank\">tę dokumentację</a>, aby dowiedzieć się, jak "
|
1322 |
+
"utworzyć stronę odnowienia."
|
1323 |
+
|
1324 |
+
#: classes/class.swpm-settings.php:195
|
1325 |
+
msgid "After Registration Redirect URL"
|
1326 |
+
msgstr "Adres URL przekierowania po rejestracji"
|
1327 |
+
|
1328 |
+
#: classes/class.swpm-settings.php:196
|
1329 |
+
msgid ""
|
1330 |
+
"You can enter an URL here to redirect the members to this page after they "
|
1331 |
+
"submit the registration form. Read <a href=\"https://simple-membership-"
|
1332 |
+
"plugin.com/configure-after-registration-redirect-for-members/\" target="
|
1333 |
+
"\"_blank\">this documentation</a> to learn how to setup after registration "
|
1334 |
+
"redirect."
|
1335 |
+
msgstr ""
|
1336 |
+
"Możesz wprowadzić adres URL tutaj, aby przekierować członków na tę stronę po "
|
1337 |
+
"wysłaniu formularza rejestracyjnego. Przeczytaj <a href=\"https://simple-"
|
1338 |
+
"membership-plugin.com/configure-after-registration-redirect-for-members/\" "
|
1339 |
+
"target=\"_blank\">tę dokumentację</a>, aby dowiedzieć się, jak skonfigurować "
|
1340 |
+
"konfigurację po przekierowaniu rejestracji."
|
1341 |
+
|
1342 |
+
#: classes/class.swpm-settings.php:198
|
1343 |
+
msgid "Enable Auto Login After Registration"
|
1344 |
+
msgstr "Włącz automatyczne logowanie po rejestracji"
|
1345 |
+
|
1346 |
+
#: classes/class.swpm-settings.php:199
|
1347 |
+
msgid ""
|
1348 |
+
"Use this option if you want the members to be automatically logged into your "
|
1349 |
+
"site right after they complete the registration. This option will override "
|
1350 |
+
"any after registration redirection and instead it will trigger the after "
|
1351 |
+
"login redirection. Read <a href=\"https://simple-membership-plugin.com/"
|
1352 |
+
"configure-auto-login-after-registration-members/\" target=\"_blank\">this "
|
1353 |
+
"documentation</a> to learn more."
|
1354 |
+
msgstr ""
|
1355 |
+
"Użyj tej opcji, jeśli chcesz, aby członkowie byli automatycznie zalogowani "
|
1356 |
+
"na Twoją stronę zaraz po zakończeniu rejestracji. Opcja ta zastąpi każde "
|
1357 |
+
"przekierowanie po rejestracji i zamiast tego wyzwoli przekierowanie po "
|
1358 |
+
"zalogowaniu. Przeczytaj <a href=\"https://simple-membership-plugin.com/"
|
1359 |
+
"configure-auto-login-after-registration-members/\" target=\"_blank\">tę "
|
1360 |
+
"dokumentację</a>, aby dowiedzieć się więcej."
|
1361 |
+
|
1362 |
+
#: classes/class.swpm-settings.php:201
|
1363 |
+
msgid "After Logout Redirect URL"
|
1364 |
+
msgstr "Po wylogowaniu przekieruj na adres strony"
|
1365 |
+
|
1366 |
+
#: classes/class.swpm-settings.php:202
|
1367 |
+
msgid ""
|
1368 |
+
"You can enter an URL here to redirect the members to this page after they "
|
1369 |
+
"click the logout link to logout from your site."
|
1370 |
+
msgstr ""
|
1371 |
+
"Możesz wprowadzić adres URL tutaj, aby przekierować członków na tę stronę po "
|
1372 |
+
"kliknięciu linku wylogowania z Twojej strony."
|
1373 |
+
|
1374 |
+
#: classes/class.swpm-settings.php:204
|
1375 |
+
msgid "Logout Member on Browser Close"
|
1376 |
+
msgstr "Wylogowanie członka lub zamknięcie przeglądarki"
|
1377 |
+
|
1378 |
+
#: classes/class.swpm-settings.php:205
|
1379 |
+
msgid ""
|
1380 |
+
"Enable this option if you want the member to be logged out of the account "
|
1381 |
+
"when he closes the browser."
|
1382 |
+
msgstr ""
|
1383 |
+
"Włącz tę opcję, jeśli chcesz, aby użytkownik był wylogowany z konta, gdy "
|
1384 |
+
"zamknie przeglądarkę."
|
1385 |
+
|
1386 |
+
#: classes/class.swpm-settings.php:207
|
1387 |
+
msgid "Allow Account Deletion"
|
1388 |
+
msgstr "Zezwól na usunięcie konta"
|
1389 |
+
|
1390 |
+
#: classes/class.swpm-settings.php:208
|
1391 |
+
msgid "Allow users to delete their accounts."
|
1392 |
+
msgstr "Pozwól użytkownikom usunąć swoje konta."
|
1393 |
+
|
1394 |
+
#: classes/class.swpm-settings.php:210
|
1395 |
+
msgid "Force Strong Password for Members"
|
1396 |
+
msgstr "Wymuś silne hasło dla członków"
|
1397 |
+
|
1398 |
+
#: classes/class.swpm-settings.php:211
|
1399 |
+
msgid ""
|
1400 |
+
"Enable this if you want the users to be forced to use a strong password for "
|
1401 |
+
"their accounts."
|
1402 |
+
msgstr ""
|
1403 |
+
"Włącz to, jeśli chcesz, aby użytkownicy byli zmuszeni do używania silnego "
|
1404 |
+
"hasła do swoich kont."
|
1405 |
+
|
1406 |
+
#: classes/class.swpm-settings.php:213
|
1407 |
+
msgid "Use WordPress Timezone"
|
1408 |
+
msgstr "Użyj strefy czasowej WordPressa"
|
1409 |
+
|
1410 |
+
#: classes/class.swpm-settings.php:214
|
1411 |
+
msgid ""
|
1412 |
+
"Use this option if you want to use the timezone value specified in your "
|
1413 |
+
"WordPress General Settings interface."
|
1414 |
+
msgstr ""
|
1415 |
+
"Użyj tej opcji, jeśli chcesz użyć wartości strefy czasowej określonej w "
|
1416 |
+
"interfejsie ogólnych ustawień WordPressa."
|
1417 |
+
|
1418 |
+
#: classes/class.swpm-settings.php:216
|
1419 |
+
msgid "Auto Delete Pending Account"
|
1420 |
+
msgstr "Automatyczne usuwanie konta oczekującego"
|
1421 |
+
|
1422 |
+
#: classes/class.swpm-settings.php:219
|
1423 |
+
msgid "Select how long you want to keep \"pending\" account."
|
1424 |
+
msgstr "Wybierz, jak długo chcesz tolerować konto \"oczekujące\"."
|
1425 |
+
|
1426 |
+
#: classes/class.swpm-settings.php:221
|
1427 |
+
msgid "Admin Dashboard Access Permission"
|
1428 |
+
msgstr "Zezwolenie na dostęp do panelu administratora"
|
1429 |
+
|
1430 |
+
#: classes/class.swpm-settings.php:224
|
1431 |
+
msgid ""
|
1432 |
+
"SWPM admin dashboard is accessible to admin users only (just like any other "
|
1433 |
+
"plugin). You can allow users with other WP user role to access the SWPM "
|
1434 |
+
"admin dashboard by selecting a value here."
|
1435 |
+
msgstr ""
|
1436 |
+
"Panel administracyjny SWPM jest dostępny tylko dla administratorów (tak jak "
|
1437 |
+
"każda inna wtyczka). Możesz tutaj zezwolić użytkownikom z innymi rolami w WP "
|
1438 |
+
"na dostęp do panelu administracyjnego SWPM poprzez wybór odpowiedniej "
|
1439 |
+
"wartości ."
|
1440 |
+
|
1441 |
+
#: classes/class.swpm-settings.php:226
|
1442 |
+
msgid "Force WP User Synchronization"
|
1443 |
+
msgstr "Wymuszenie synchronizacji użytkowników WP"
|
1444 |
+
|
1445 |
+
#: classes/class.swpm-settings.php:227
|
1446 |
+
msgid ""
|
1447 |
+
"Enable this option if you want to force the member login to be synchronized "
|
1448 |
+
"with WP user account. This can be useful if you are using another plugin "
|
1449 |
+
"that uses WP user records. For example: bbPress plugin."
|
1450 |
+
msgstr ""
|
1451 |
+
"Włącz tę opcję, jeśli chcesz wymusić synchronizację loginu użytkownika z "
|
1452 |
+
"kontem użytkownika WP. Może to być przydatne, jeśli używasz innej wtyczki, "
|
1453 |
+
"która wykorzystuje rekordy użytkownika WP. Na przykład: bbPress plugin."
|
1454 |
+
|
1455 |
+
#: classes/class.swpm-settings.php:230
|
1456 |
+
msgid "Create Member Accounts for New WP Users"
|
1457 |
+
msgstr "Tworzenie kont członkowskich dla nowych użytkowników WP"
|
1458 |
+
|
1459 |
+
#: classes/class.swpm-settings.php:232
|
1460 |
+
msgid "Enable Auto Create Member Accounts"
|
1461 |
+
msgstr "Włącz automatyczne tworzenie kont użytkowników"
|
1462 |
+
|
1463 |
+
#: classes/class.swpm-settings.php:233
|
1464 |
+
msgid ""
|
1465 |
+
"Enable this option to automatically create member accounts for any new WP "
|
1466 |
+
"user that is created by another plugin."
|
1467 |
+
msgstr ""
|
1468 |
+
"Włącz tę opcję, aby automatycznie tworzyć konta członkowskie dla każdego "
|
1469 |
+
"nowego użytkownika WP, który jest tworzony przez inną wtyczkę."
|
1470 |
+
|
1471 |
+
#: classes/class.swpm-settings.php:236
|
1472 |
+
msgid "Default Membership Level"
|
1473 |
+
msgstr "Domyślny poziom członkostwa"
|
1474 |
+
|
1475 |
+
#: classes/class.swpm-settings.php:239
|
1476 |
+
msgid ""
|
1477 |
+
"When automatically creating a member account using this feature, the "
|
1478 |
+
"membership level of the user will be set to the one you specify here."
|
1479 |
+
msgstr ""
|
1480 |
+
"Podczas automatycznego tworzenia konta członkowskiego za pomocą tej funkcji, "
|
1481 |
+
"poziom członkostwa użytkownika zostanie ustawiony na ten, który tutaj "
|
1482 |
+
"określisz."
|
1483 |
+
|
1484 |
+
#: classes/class.swpm-settings.php:245
|
1485 |
+
msgid ""
|
1486 |
+
"When automatically creating a member account using this feature, the "
|
1487 |
+
"membership account status of the user will be set to the one you specify "
|
1488 |
+
"here."
|
1489 |
+
msgstr ""
|
1490 |
+
"Podczas automatycznego tworzenia konta członkowskiego za pomocą tej funkcji, "
|
1491 |
+
"status konta członkowskiego użytkownika zostanie ustawiony na ten, który "
|
1492 |
+
"tutaj określisz."
|
1493 |
+
|
1494 |
+
#: classes/class.swpm-settings.php:247
|
1495 |
+
msgid "Payment Notification Forward URL"
|
1496 |
+
msgstr "URL przekierowania do potwierdzenia płatności"
|
1497 |
+
|
1498 |
+
#: classes/class.swpm-settings.php:248
|
1499 |
+
msgid ""
|
1500 |
+
"You can enter an URL here to forward the payment notification after the "
|
1501 |
+
"membership payment has been processed by this plugin. Useful if you want to "
|
1502 |
+
"forward the payment notification to an external script for further "
|
1503 |
+
"processing."
|
1504 |
+
msgstr ""
|
1505 |
+
"Możesz wpisać tutaj adres URL, aby przekazać powiadomienie o płatności po "
|
1506 |
+
"tym, jak płatność członkowska zostanie przetworzona przez tę wtyczkę. "
|
1507 |
+
"Przydatne, jeśli chcesz przekazać powiadomienie o płatności do zewnętrznego "
|
1508 |
+
"skryptu w celu dalszego przetwarzania."
|
1509 |
+
|
1510 |
+
#: classes/class.swpm-settings.php:251 views/add.php:65
|
1511 |
+
msgid "Terms and Conditions"
|
1512 |
+
msgstr "Regulamin Serwisu"
|
1513 |
+
|
1514 |
+
#: classes/class.swpm-settings.php:253
|
1515 |
+
msgid "Enable Terms and Conditions"
|
1516 |
+
msgstr "Udostępnij regulamin strony"
|
1517 |
+
|
1518 |
+
#: classes/class.swpm-settings.php:254
|
1519 |
+
msgid "Users must accept the terms before they can complete the registration."
|
1520 |
+
msgstr ""
|
1521 |
+
"Użytkownicy muszą zaakceptować warunki, zanim będą mogli dokończyć "
|
1522 |
+
"rejestrację."
|
1523 |
+
|
1524 |
+
#: classes/class.swpm-settings.php:255
|
1525 |
+
msgid "Terms and Conditions Page URL"
|
1526 |
+
msgstr "Warunki i regulaminy URL strony"
|
1527 |
+
|
1528 |
+
#: classes/class.swpm-settings.php:256
|
1529 |
+
msgid ""
|
1530 |
+
"Enter the URL of your terms and conditions page. You can create a WordPress "
|
1531 |
+
"page and specify your terms in there then specify the URL of that page in "
|
1532 |
+
"the above field."
|
1533 |
+
msgstr ""
|
1534 |
+
"Wprowadź adres URL strony z regulaminem. Możesz utworzyć stronę WordPressa i "
|
1535 |
+
"określić tam swoje warunki, a następnie podać adres URL tej strony w "
|
1536 |
+
"powyższym polu."
|
1537 |
+
|
1538 |
+
#: classes/class.swpm-settings.php:257
|
1539 |
+
msgid "Enable Privacy Policy"
|
1540 |
+
msgstr "Włączyć politykę prywatności"
|
1541 |
+
|
1542 |
+
#: classes/class.swpm-settings.php:258
|
1543 |
+
msgid "Users must accept it before they can complete the registration."
|
1544 |
+
msgstr ""
|
1545 |
+
"Użytkownicy muszą zaakceptować warunki, zanim będą mogli dokończyć "
|
1546 |
+
"rejestrację."
|
1547 |
+
|
1548 |
+
#: classes/class.swpm-settings.php:259
|
1549 |
+
msgid "Privacy Policy Page URL"
|
1550 |
+
msgstr "Adres URL strony polityki prywatności"
|
1551 |
+
|
1552 |
+
#: classes/class.swpm-settings.php:260
|
1553 |
+
msgid "Enter the URL of your privacy policy page."
|
1554 |
+
msgstr "Wprowadź adres URL strony z polityką prywatności."
|
1555 |
+
|
1556 |
+
#: classes/class.swpm-settings.php:350 classes/class.swpm-settings.php:396
|
1557 |
+
#: classes/class.swpm-settings.php:425
|
1558 |
+
msgid "Settings updated!"
|
1559 |
+
msgstr "Ustawienia zaktualizowane!"
|
1560 |
+
|
1561 |
+
#: classes/class.swpm-settings.php:355
|
1562 |
+
msgid "General Plugin Settings."
|
1563 |
+
msgstr "Ogólne ustawienia wtyczki."
|
1564 |
+
|
1565 |
+
#: classes/class.swpm-settings.php:359
|
1566 |
+
msgid "Page Setup and URL Related settings."
|
1567 |
+
msgstr "Ustawienia strony i ustawienia powiązane z URL ."
|
1568 |
+
|
1569 |
+
#: classes/class.swpm-settings.php:362
|
1570 |
+
msgid ""
|
1571 |
+
"The following pages are required for the plugin to function correctly. These "
|
1572 |
+
"pages were automatically created by the plugin at install time."
|
1573 |
+
msgstr ""
|
1574 |
+
"Aby wtyczka działała prawidłowo, te strony są wymagane. Strony te zostały "
|
1575 |
+
"automatycznie utworzone przez wtyczkę w momencie instalacji."
|
1576 |
+
|
1577 |
+
#: classes/class.swpm-settings.php:367
|
1578 |
+
msgid "Testing and Debug Related Settings."
|
1579 |
+
msgstr "Testowanie i ustawienia związane z debugowaniem."
|
1580 |
+
|
1581 |
+
#: classes/class.swpm-settings.php:371
|
1582 |
+
msgid ""
|
1583 |
+
"This email will be sent to your users when they complete the registration "
|
1584 |
+
"and become a member."
|
1585 |
+
msgstr ""
|
1586 |
+
"Ten e-mail zostanie wysłany do Twoich użytkowników, gdy zakończą rejestrację "
|
1587 |
+
"i staną się członkami."
|
1588 |
+
|
1589 |
+
#: classes/class.swpm-settings.php:375
|
1590 |
+
msgid ""
|
1591 |
+
"This email will be sent to your users when they use the password reset "
|
1592 |
+
"functionality."
|
1593 |
+
msgstr ""
|
1594 |
+
"Ten e-mail zostanie wysłany do użytkowników, gdy użyją funkcji resetowania "
|
1595 |
+
"hasła."
|
1596 |
+
|
1597 |
+
#: classes/class.swpm-settings.php:381
|
1598 |
+
msgid ""
|
1599 |
+
"This interface lets you custsomize the various emails that gets sent to your "
|
1600 |
+
"members for various actions. The default settings should be good to get your "
|
1601 |
+
"started."
|
1602 |
+
msgstr ""
|
1603 |
+
"Interfejs ten pozwala na dostosowywanie różnych wiadomości e-mail, które są "
|
1604 |
+
"wysyłane do członków podczas różnych działań. Domyślne ustawienia powinny "
|
1605 |
+
"być odpowiednie, abyś mógł rozpocząć pracę."
|
1606 |
+
|
1607 |
+
#: classes/class.swpm-settings.php:385 views/admin_tools_settings.php:82
|
1608 |
+
msgid "This documentation"
|
1609 |
+
msgstr "Ta dokumentacja"
|
1610 |
+
|
1611 |
+
#: classes/class.swpm-settings.php:386
|
1612 |
+
msgid ""
|
1613 |
+
" explains what email merge tags you can use in the email body field to "
|
1614 |
+
"customize it (if you want to)."
|
1615 |
+
msgstr ""
|
1616 |
+
" wyjaśnia, jakich tagów scalania wiadomości e-mail można użyć w polu treść "
|
1617 |
+
"wiadomości e-mail, aby je dostosować (jeśli chcesz)."
|
1618 |
+
|
1619 |
+
#: classes/class.swpm-settings.php:399
|
1620 |
+
msgid "Settings in this section apply to all emails."
|
1621 |
+
msgstr "Ustawienia w tej sekcji dotyczą wszystkich wiadomości e-mail."
|
1622 |
+
|
1623 |
+
#: classes/class.swpm-settings.php:403
|
1624 |
+
msgid ""
|
1625 |
+
"This email will be sent to your users after account upgrade (when an "
|
1626 |
+
"existing member pays for a new membership level)."
|
1627 |
+
msgstr ""
|
1628 |
+
"Ten e-mail zostanie wysłany do Twoich użytkowników po aktualizacji konta "
|
1629 |
+
"(gdy istniejący członek płaci za nowy poziom członkostwa)."
|
1630 |
+
|
1631 |
+
#: classes/class.swpm-settings.php:407
|
1632 |
+
msgid ""
|
1633 |
+
"This email will be sent to your members when you use the bulk account "
|
1634 |
+
"activate and notify action."
|
1635 |
+
msgstr ""
|
1636 |
+
"Ten e-mail zostanie wysłany do członków, gdy użyjesz zbiorczej aktywacji "
|
1637 |
+
"kont i akcji zbiorczego powiadomienia."
|
1638 |
+
|
1639 |
+
#: classes/class.swpm-settings.php:408
|
1640 |
+
msgid ""
|
1641 |
+
" You cannot use email merge tags in this email. You can only use generic "
|
1642 |
+
"text."
|
1643 |
+
msgstr ""
|
1644 |
+
" W tej wiadomości e-mail nie można używać tagów scalających wiadomości e-"
|
1645 |
+
"mail. Możesz używać tylko domyślnego tekstu."
|
1646 |
+
|
1647 |
+
#: classes/class.swpm-settings.php:413
|
1648 |
+
msgid ""
|
1649 |
+
"This email will be sent if Email Activation is enabled for a Membership "
|
1650 |
+
"Level."
|
1651 |
+
msgstr ""
|
1652 |
+
"Ten e-mail zostanie wysłany, jeśli aktywowanie poczty elektronicznej jest "
|
1653 |
+
"włączone dla poziomu członkostwa."
|
1654 |
+
|
1655 |
+
#: classes/class.swpm-settings.php:417
|
1656 |
+
msgid ""
|
1657 |
+
"This email will be sent to prompt users to complete registration after the "
|
1658 |
+
"payment."
|
1659 |
+
msgstr ""
|
1660 |
+
"Ten e-mail zostanie wysłany do użytkowników, którzy chcą dokończyć "
|
1661 |
+
"rejestrację po dokonaniu płatności."
|
1662 |
+
|
1663 |
+
#: classes/class.swpm-settings.php:428
|
1664 |
+
msgid "This page allows you to configure some advanced features of the plugin."
|
1665 |
+
msgstr "Ta strona umożliwia skonfigurowanie zaawansowanych funkcji wtyczki."
|
1666 |
+
|
1667 |
+
#: classes/class.swpm-settings.php:432
|
1668 |
+
msgid ""
|
1669 |
+
"This section allows you to configure automatic creation of member accounts "
|
1670 |
+
"when new WP User records are created by another plugin. It can be useful if "
|
1671 |
+
"you are using another plugin that creates WP user records and you want them "
|
1672 |
+
"to be recognized in the membership plugin."
|
1673 |
+
msgstr ""
|
1674 |
+
"Ta sekcja pozwala skonfigurować automatyczne tworzenie kont członkowskich, "
|
1675 |
+
"gdy nowe rekordy użytkowników WP są tworzone przez inną wtyczkę. Może to być "
|
1676 |
+
"przydatne, jeśli używasz innej wtyczki, która tworzy rekordy użytkowników WP "
|
1677 |
+
"i chcesz, aby zostały one rozpoznane we wtyczce członkowskiej."
|
1678 |
+
|
1679 |
+
#: classes/class.swpm-settings.php:436
|
1680 |
+
msgid ""
|
1681 |
+
"This section allows you to configure terms and conditions and privacy policy "
|
1682 |
+
"that users must accept at registration time."
|
1683 |
+
msgstr ""
|
1684 |
+
"Ta sekcja pozwala skonfigurować warunki i zasady oraz politykę prywatności, "
|
1685 |
+
"które użytkownicy muszą zaakceptować podczas rejestracji."
|
1686 |
+
|
1687 |
+
#: classes/class.swpm-settings.php:565
|
1688 |
+
msgid "Simple WP Membership::Settings"
|
1689 |
+
msgstr "Simple WP Membership::Ustawienia"
|
1690 |
+
|
1691 |
+
#: classes/class.swpm-utils-member.php:36
|
1692 |
+
#: classes/class.swpm-utils-member.php:44
|
1693 |
+
#: classes/class.swpm-utils-member.php:52
|
1694 |
+
#: classes/class.swpm-utils-member.php:62
|
1695 |
+
msgid "User is not logged in."
|
1696 |
+
msgstr "Użytkownik nie jest zalogowany."
|
1697 |
+
|
1698 |
+
#: classes/class.swpm-utils-member.php:80
|
1699 |
+
msgid "No Expiry"
|
1700 |
+
msgstr "Nie wygasło"
|
1701 |
+
|
1702 |
+
#: classes/class.swpm-utils-misc.php:50
|
1703 |
+
msgid "Registration"
|
1704 |
+
msgstr "Rejestracja"
|
1705 |
+
|
1706 |
+
#: classes/class.swpm-utils-misc.php:73
|
1707 |
+
msgid "Member Login"
|
1708 |
+
msgstr "Strona logowania"
|
1709 |
+
|
1710 |
+
#: classes/class.swpm-utils-misc.php:96
|
1711 |
+
#: classes/shortcode-related/class.swpm-shortcodes-handler.php:117
|
1712 |
+
msgid "Profile"
|
1713 |
msgstr "Twój profil"
|
1714 |
|
1715 |
+
#: classes/class.swpm-utils-misc.php:119
|
1716 |
+
msgid "Password Reset"
|
1717 |
+
msgstr "Reset hasła"
|
1718 |
+
|
1719 |
+
#: classes/class.swpm-utils-misc.php:168
|
1720 |
+
#, php-format
|
1721 |
+
msgid ""
|
1722 |
+
"You will be automatically redirected in a few seconds. If not, please %s."
|
1723 |
+
msgstr ""
|
1724 |
+
"Zostaniesz automatycznie przekierowany w kilka sekund. Jeśli nie, proszę "
|
1725 |
+
"podać %s."
|
1726 |
+
|
1727 |
+
#: classes/class.swpm-utils-misc.php:172
|
1728 |
+
msgid "Action Status"
|
1729 |
+
msgstr "Status akcji"
|
1730 |
+
|
1731 |
+
#: classes/class.swpm-utils-misc.php:274
|
1732 |
+
msgid "Not a Member?"
|
1733 |
+
msgstr "Nie masz konta?"
|
1734 |
+
|
1735 |
+
#: classes/class.swpm-utils-misc.php:285
|
1736 |
+
msgid "renew"
|
1737 |
+
msgstr "odnów"
|
1738 |
+
|
1739 |
+
#: classes/class.swpm-utils-misc.php:285
|
1740 |
+
msgid " your account to gain access to this content."
|
1741 |
+
msgstr " twoje konto aby uzyskać dostęp do tej zawartości."
|
1742 |
+
|
1743 |
+
#: classes/class.swpm-utils-misc.php:343 classes/class.swpm-utils-misc.php:349
|
1744 |
+
msgid "Error! This action ("
|
1745 |
+
msgstr "Błąd! To działanie ("
|
1746 |
+
|
1747 |
+
#: classes/class.swpm-utils-misc.php:421
|
1748 |
+
msgid "(Please Select)"
|
1749 |
+
msgstr "(Proszę wybrać)"
|
1750 |
+
|
1751 |
+
#: classes/class.swpm-utils-template.php:38
|
1752 |
+
msgid "Error! Failed to find a template path for the specified template: "
|
1753 |
+
msgstr "Błąd! Nie udało się znaleźć ścieżki szablonu dla określonego szablonu "
|
1754 |
+
|
1755 |
+
#: classes/class.swpm-utils.php:101
|
1756 |
+
msgid "Never"
|
1757 |
+
msgstr "Nigdy"
|
1758 |
+
|
1759 |
+
#: classes/class.swpm-utils.php:116 views/admin_members_list.php:19
|
1760 |
+
msgid "Active"
|
1761 |
+
msgstr "Aktywuj"
|
1762 |
+
|
1763 |
+
#: classes/class.swpm-utils.php:117 views/admin_members_list.php:20
|
1764 |
+
msgid "Inactive"
|
1765 |
+
msgstr "Nieaktywny"
|
1766 |
+
|
1767 |
+
#: classes/class.swpm-utils.php:118 views/admin_members_list.php:21
|
1768 |
+
msgid "Activation Required"
|
1769 |
+
msgstr "Wymagana aktywacja"
|
1770 |
+
|
1771 |
+
#: classes/class.swpm-utils.php:119 views/admin_members_list.php:22
|
1772 |
+
msgid "Pending"
|
1773 |
+
msgstr "Oczekuje"
|
1774 |
+
|
1775 |
+
#: classes/class.swpm-utils.php:120 views/admin_members_list.php:24
|
1776 |
+
msgid "Expired"
|
1777 |
+
msgstr "Wygasło"
|
1778 |
+
|
1779 |
+
#: classes/class.swpm-utils.php:414 views/account_delete_warning.php:3
|
1780 |
+
msgid "Delete Account"
|
1781 |
+
msgstr "Usuń Konto"
|
1782 |
+
|
1783 |
+
#: classes/admin-includes/class.swpm-payment-buttons-list-table.php:75
|
1784 |
+
msgid "Payment Button ID"
|
1785 |
+
msgstr "Identyfikator przycisku płatności"
|
1786 |
+
|
1787 |
+
#: classes/admin-includes/class.swpm-payment-buttons-list-table.php:76
|
1788 |
+
msgid "Payment Button Title"
|
1789 |
+
msgstr "Przycisk płatności Tytuł"
|
1790 |
+
|
1791 |
+
#: classes/admin-includes/class.swpm-payment-buttons-list-table.php:77
|
1792 |
+
msgid "Membership Level ID"
|
1793 |
+
msgstr "ID poziomu subskrypcji"
|
1794 |
+
|
1795 |
+
#: classes/admin-includes/class.swpm-payment-buttons-list-table.php:78
|
1796 |
+
msgid "Button Type"
|
1797 |
+
msgstr "Typ przycisku"
|
1798 |
+
|
1799 |
+
#: classes/admin-includes/class.swpm-payment-buttons-list-table.php:79
|
1800 |
+
msgid "Button Shortcode"
|
1801 |
+
msgstr "Shortcode przycisku"
|
1802 |
+
|
1803 |
+
#: classes/admin-includes/class.swpm-payment-buttons-list-table.php:127
|
1804 |
+
#: views/admin_members_list.php:9
|
1805 |
+
#: views/payments/admin_all_payment_transactions.php:32
|
1806 |
+
msgid "The selected entry was deleted!"
|
1807 |
+
msgstr "Wybrana pozycja została usunięta!"
|
1808 |
+
|
1809 |
+
#: classes/admin-includes/class.swpm-payments-admin-menu.php:21
|
1810 |
+
msgid "Simple Membership::Payments"
|
1811 |
+
msgstr "Simple WP Membership::Płatności"
|
1812 |
+
|
1813 |
+
#: classes/admin-includes/class.swpm-payments-admin-menu.php:25
|
1814 |
+
msgid "Transactions"
|
1815 |
+
msgstr "Transakcje"
|
1816 |
+
|
1817 |
+
#: classes/admin-includes/class.swpm-payments-admin-menu.php:26
|
1818 |
+
msgid "Manage Payment Buttons"
|
1819 |
+
msgstr "Zarządzanie przyciskami płatności"
|
1820 |
+
|
1821 |
+
#: classes/admin-includes/class.swpm-payments-admin-menu.php:27
|
1822 |
+
#: views/payments/admin_payment_buttons.php:27
|
1823 |
+
msgid "Create New Button"
|
1824 |
+
msgstr "Stwórz nowy przycisk"
|
1825 |
+
|
1826 |
+
#: classes/admin-includes/class.swpm-payments-list-table.php:57
|
1827 |
+
#: views/template-1.php:95 views/template-2.php:97
|
1828 |
+
msgid "View Profile"
|
1829 |
+
msgstr "Zobacz Profil"
|
1830 |
+
|
1831 |
+
#: classes/admin-includes/class.swpm-payments-list-table.php:76
|
1832 |
+
msgid "Row ID"
|
1833 |
+
msgstr "Identyfikator wiersza"
|
1834 |
+
|
1835 |
+
#: classes/admin-includes/class.swpm-payments-list-table.php:77
|
1836 |
+
#: views/forgot_password.php:5
|
1837 |
+
msgid "Email Address"
|
1838 |
+
msgstr "Adres email"
|
1839 |
+
|
1840 |
+
#: classes/admin-includes/class.swpm-payments-list-table.php:80
|
1841 |
+
msgid "Member Profile"
|
1842 |
+
msgstr "Profil Członka"
|
1843 |
+
|
1844 |
+
#: classes/admin-includes/class.swpm-payments-list-table.php:82
|
1845 |
+
msgid "Transaction ID"
|
1846 |
+
msgstr "ID Transkacji"
|
1847 |
+
|
1848 |
+
#: classes/admin-includes/class.swpm-payments-list-table.php:83
|
1849 |
+
msgid "Subscriber ID"
|
1850 |
+
msgstr "Identyfikator abonenta"
|
1851 |
+
|
1852 |
+
#: classes/admin-includes/class.swpm-payments-list-table.php:84
|
1853 |
+
msgid "Amount"
|
1854 |
+
msgstr "Kwota"
|
1855 |
+
|
1856 |
+
#: classes/shortcode-related/class.swpm-shortcodes-handler.php:60
|
1857 |
+
msgid "Your membership profile will be updated to reflect the payment."
|
1858 |
+
msgstr ""
|
1859 |
+
"Twój profil członkowski zostanie zaktualizowany w wyniku potwierdzenia "
|
1860 |
+
"płatności."
|
1861 |
+
|
1862 |
+
#: classes/shortcode-related/class.swpm-shortcodes-handler.php:61
|
1863 |
+
msgid "Your profile username: "
|
1864 |
+
msgstr "Nazwa twojego profil użytkownika "
|
1865 |
+
|
1866 |
+
#: classes/shortcode-related/class.swpm-shortcodes-handler.php:73
|
1867 |
+
msgid "Click on the following link to complete the registration."
|
1868 |
+
msgstr "Kliknij na poniższy link, aby zakończyć rejestrację."
|
1869 |
+
|
1870 |
+
#: classes/shortcode-related/class.swpm-shortcodes-handler.php:74
|
1871 |
+
msgid "Click here to complete your paid registration"
|
1872 |
+
msgstr "Kliknij tutaj, aby zakończyć płatną rejestrację"
|
1873 |
+
|
1874 |
+
#: classes/shortcode-related/class.swpm-shortcodes-handler.php:79
|
1875 |
+
msgid ""
|
1876 |
+
"If you have just made a membership payment then your payment is yet to be "
|
1877 |
+
"processed. Please check back in a few minutes. An email will be sent to you "
|
1878 |
+
"with the details shortly."
|
1879 |
+
msgstr ""
|
1880 |
+
"Jeśli właśnie dokonałeś płatności członkowskiej, wówczas płatność ta nie "
|
1881 |
+
"została jeszcze zrealizowana. Proszę sprawdzić za kilka minut. Wkrótce "
|
1882 |
+
"zostanie do Ciebie wysłana wiadomość e-mail z podaniem szczegółów."
|
1883 |
+
|
1884 |
+
#: classes/shortcode-related/class.swpm-shortcodes-handler.php:93
|
1885 |
+
msgid "Expiry: "
|
1886 |
+
msgstr "Ważność rejestracji: "
|
1887 |
+
|
1888 |
+
#: classes/shortcode-related/class.swpm-shortcodes-handler.php:95
|
1889 |
+
msgid "You are not logged-in as a member"
|
1890 |
+
msgstr "Nie jesteś zalogowany jako członek"
|
1891 |
+
|
1892 |
+
#: classes/shortcode-related/class.swpm-shortcodes-handler.php:115
|
1893 |
+
msgid "Logged in as: "
|
1894 |
+
msgstr "Zalogowany jako: "
|
1895 |
+
|
1896 |
+
#: classes/shortcode-related/class.swpm-shortcodes-handler.php:118
|
1897 |
+
#: views/loggedin.php:31
|
1898 |
+
msgid "Logout"
|
1899 |
+
msgstr "Wyloguj"
|
1900 |
+
|
1901 |
+
#: classes/shortcode-related/class.swpm-shortcodes-handler.php:121
|
1902 |
+
msgid "Login Here"
|
1903 |
+
msgstr "Zaloguj się tutaj"
|
1904 |
+
|
1905 |
+
#: classes/shortcode-related/class.swpm-shortcodes-handler.php:122
|
1906 |
+
msgid "Not a member? "
|
1907 |
+
msgstr "Nie masz konta? "
|
1908 |
+
|
1909 |
+
#: classes/shortcode-related/class.swpm-shortcodes-handler.php:123
|
1910 |
+
msgid "Join Now"
|
1911 |
+
msgstr "Przyłącz się"
|
1912 |
+
|
1913 |
+
#: ipn/swpm-smart-checkout-ipn.php:260 ipn/swpm-smart-checkout-ipn.php:285
|
1914 |
+
#, php-format
|
1915 |
+
msgid "Error occured during payment verification. Error code: %d. Message: %s"
|
1916 |
+
msgstr ""
|
1917 |
+
"Błąd wystąpił podczas weryfikacji płatności. Kod błędu: %d. Wiadomość: %s"
|
1918 |
+
|
1919 |
+
#: ipn/swpm-smart-checkout-ipn.php:298
|
1920 |
+
#, php-format
|
1921 |
+
msgid ""
|
1922 |
+
"Payment check failed: invalid amount received. Expected %s %s, got %s %s."
|
1923 |
+
msgstr ""
|
1924 |
+
"Weryfikacja płatności nie powiodła się: otrzymana kwota jest niewłaściwa. "
|
1925 |
+
"Oczekiwane było %s %s, otrzymano %s %s."
|
1926 |
+
|
1927 |
+
#: ipn/swpm-smart-checkout-ipn.php:315
|
1928 |
+
msgid "Empty payment data received."
|
1929 |
+
msgstr "Otrzymane pusty zapis danych dotyczących płatności."
|
1930 |
+
|
1931 |
+
#: ipn/swpm-smart-checkout-ipn.php:355
|
1932 |
+
msgid "IPN product validation failed. Check debug log for more details."
|
1933 |
+
msgstr ""
|
1934 |
+
"Walidacja produktu IPN nie powiodła się. Sprawdź dziennik debugów, aby "
|
1935 |
+
"uzyskać więcej szczegółów."
|
1936 |
+
|
1937 |
+
#: views/account_delete_warning.php:7
|
1938 |
+
msgid ""
|
1939 |
+
"You are about to delete an account. This will delete user data associated "
|
1940 |
+
"with this account. "
|
1941 |
+
msgstr ""
|
1942 |
+
"Masz zamiar usunąć konto. Spowoduje to usunięcie danych użytkownika "
|
1943 |
+
"związanych z tym kontem. "
|
1944 |
+
|
1945 |
+
#: views/account_delete_warning.php:8
|
1946 |
+
msgid "It will also delete associated WordPress user account."
|
1947 |
+
msgstr "Usuwa również powiązane z nim konto użytkownika WordPressa."
|
1948 |
+
|
1949 |
+
#: views/account_delete_warning.php:9
|
1950 |
+
msgid ""
|
1951 |
+
"(NOTE: for safety, we do not allow deletion of any associated WordPress "
|
1952 |
+
"account with administrator role)."
|
1953 |
+
msgstr ""
|
1954 |
+
"(UWAGA: dla bezpieczeństwa, nie zezwalamy na usunięcie żadnego powiązanego "
|
1955 |
+
"konta WordPressa z rolą administratora)."
|
1956 |
+
|
1957 |
+
#: views/account_delete_warning.php:10
|
1958 |
+
msgid "Continue?"
|
1959 |
+
msgstr "Kontynuować?"
|
1960 |
+
|
1961 |
+
#: views/account_delete_warning.php:13
|
1962 |
+
msgid "Password: "
|
1963 |
+
msgstr "Hasło: "
|
1964 |
+
|
1965 |
+
#: views/account_delete_warning.php:14
|
1966 |
+
msgid "Confirm Account Deletion"
|
1967 |
+
msgstr "Potwierdź usunięcie konta"
|
1968 |
+
|
1969 |
+
#: views/add.php:24 views/admin_add.php:19 views/admin_edit.php:44
|
1970 |
+
#: views/edit.php:31 views/login.php:17
|
1971 |
+
msgid "Password"
|
1972 |
+
msgstr "Hasło"
|
1973 |
+
|
1974 |
+
#: views/add.php:28 views/edit.php:35
|
1975 |
+
msgid "Repeat Password"
|
1976 |
+
msgstr "Powtórz hasło"
|
1977 |
+
|
1978 |
+
#: views/add.php:65
|
1979 |
+
msgid "I accept the "
|
1980 |
+
msgstr "Akceptuję "
|
1981 |
+
|
1982 |
+
#: views/add.php:77
|
1983 |
+
msgid "I agree to the "
|
1984 |
+
msgstr "Zgadzam się "
|
1985 |
+
|
1986 |
+
#: views/add.php:77
|
1987 |
+
msgid "Privacy Policy"
|
1988 |
+
msgstr "Polityka prywatności"
|
1989 |
+
|
1990 |
+
#: views/add.php:88
|
1991 |
+
msgid "Register"
|
1992 |
+
msgstr "Rejestruj"
|
1993 |
+
|
1994 |
+
#: views/admin_add.php:7
|
1995 |
+
msgid "Create a brand new user and add it to this site."
|
1996 |
+
msgstr "Dodaj nowego użytkownika do tej strony."
|
1997 |
+
|
1998 |
+
#: views/admin_add.php:11 views/admin_add.php:15 views/admin_add_level.php:12
|
1999 |
+
#: views/admin_add_level.php:16 views/admin_add_level.php:20
|
2000 |
+
#: views/admin_edit.php:19 views/admin_edit.php:40
|
2001 |
+
#: views/admin_edit_level.php:16 views/admin_edit_level.php:20
|
2002 |
+
#: views/admin_edit_level.php:24
|
2003 |
+
msgid "(required)"
|
2004 |
+
msgstr "(wymagane)"
|
2005 |
+
|
2006 |
+
#: views/admin_add.php:15 views/admin_edit.php:40
|
2007 |
+
msgid "E-mail"
|
2008 |
+
msgstr "E-mail"
|
2009 |
+
|
2010 |
+
#: views/admin_add.php:19
|
2011 |
+
msgid "(twice, required)"
|
2012 |
+
msgstr "(dwukrotnie, wymagane)"
|
2013 |
+
|
2014 |
+
#: views/admin_add.php:24 views/admin_edit.php:48
|
2015 |
+
msgid "Strength indicator"
|
2016 |
+
msgstr "Wskaźnik siły"
|
2017 |
+
|
2018 |
+
#: views/admin_add.php:25 views/admin_edit.php:49
|
2019 |
+
msgid ""
|
2020 |
+
"Hint: The password should be at least seven characters long. To make it "
|
2021 |
+
"stronger, use upper and lower case letters, numbers and symbols like ! \" ? "
|
2022 |
+
"$ % ^ & )."
|
2023 |
+
msgstr ""
|
2024 |
+
"Podpowiedź: Hasło powinno mieć conajmniej 7 znaków. Aby było silniejsze "
|
2025 |
+
"można używać dużych i małych liter, znaków, symboli takich jak ! \" ? $ % ^ "
|
2026 |
+
"& )"
|
2027 |
+
|
2028 |
+
#: views/admin_add.php:29 views/admin_edit.php:53 views/loggedin.php:10
|
2029 |
+
msgid "Account Status"
|
2030 |
+
msgstr "Status konta"
|
2031 |
+
|
2032 |
+
#: views/admin_add.php:39
|
2033 |
+
msgid "Add New Member "
|
2034 |
+
msgstr "Dodaj nowego członka "
|
2035 |
+
|
2036 |
+
#: views/admin_addon_settings.php:3
|
2037 |
+
msgid ""
|
2038 |
+
"Some of the simple membership plugin's addon settings and options will be "
|
2039 |
+
"displayed here (if you have them)"
|
2040 |
+
msgstr ""
|
2041 |
+
"Niektóre ustawienia i opcje dodatków do wtyczki Simple Membership będą "
|
2042 |
+
"wyświetlane tutaj (jeśli je posiadasz)"
|
2043 |
+
|
2044 |
+
#: views/admin_addon_settings.php:8
|
2045 |
+
msgid "Save Changes"
|
2046 |
+
msgstr "Zapisz zmiany"
|
2047 |
+
|
2048 |
+
#: views/admin_add_level.php:6
|
2049 |
+
msgid "Add Membership Level"
|
2050 |
+
msgstr "Dodaj nowy poziom członkostwa"
|
2051 |
+
|
2052 |
+
#: views/admin_add_level.php:7
|
2053 |
+
msgid "Create new membership level."
|
2054 |
+
msgstr "Stwórz nowy poziom dostępu."
|
2055 |
+
|
2056 |
+
#: views/admin_add_level.php:12 views/admin_edit_level.php:16
|
2057 |
+
msgid "Membership Level Name"
|
2058 |
+
msgstr "Nazwa poziomu dostępu"
|
2059 |
+
|
2060 |
+
#: views/admin_add_level.php:16 views/admin_edit_level.php:20
|
2061 |
+
msgid "Default WordPress Role"
|
2062 |
+
msgstr "Domyślna uprawnienia WordPress"
|
2063 |
+
|
2064 |
+
#: views/admin_add_level.php:20 views/admin_edit_level.php:24
|
2065 |
+
msgid "Access Duration"
|
2066 |
+
msgstr "Czas dostępu"
|
2067 |
+
|
2068 |
+
#: views/admin_add_level.php:23
|
2069 |
+
msgid "No Expiry (Access for this level will not expire until cancelled"
|
2070 |
+
msgstr "Bezterminowo (dostęp do tego poziomu nie wygaśnie do czasu anulowania"
|
2071 |
+
|
2072 |
+
#: views/admin_add_level.php:24 views/admin_add_level.php:26
|
2073 |
+
#: views/admin_add_level.php:28 views/admin_add_level.php:30
|
2074 |
+
#: views/admin_edit_level.php:28 views/admin_edit_level.php:31
|
2075 |
+
#: views/admin_edit_level.php:34 views/admin_edit_level.php:37
|
2076 |
+
msgid "Expire After"
|
2077 |
+
msgstr "Wygasa po"
|
2078 |
+
|
2079 |
+
#: views/admin_add_level.php:25 views/admin_edit_level.php:29
|
2080 |
+
msgid "Days (Access expires after given number of days)"
|
2081 |
+
msgstr "Dni (dostęp wygasa po określonej liczbie dni)"
|
2082 |
+
|
2083 |
+
#: views/admin_add_level.php:27
|
2084 |
+
msgid "Weeks (Access expires after given number of weeks"
|
2085 |
+
msgstr "Tygodnie (dostęp wygasa po określonej liczbie tygodni)"
|
2086 |
+
|
2087 |
+
#: views/admin_add_level.php:29 views/admin_edit_level.php:35
|
2088 |
+
msgid "Months (Access expires after given number of months)"
|
2089 |
+
msgstr "Miesiące (dostęp wygasa po określonej liczbie miesięcy)"
|
2090 |
+
|
2091 |
+
#: views/admin_add_level.php:31 views/admin_edit_level.php:38
|
2092 |
+
msgid "Years (Access expires after given number of years)"
|
2093 |
+
msgstr "Lata (dostęp wygasa po określonej liczbie lat)"
|
2094 |
+
|
2095 |
+
#: views/admin_add_level.php:32 views/admin_edit_level.php:40
|
2096 |
+
msgid "Fixed Date Expiry"
|
2097 |
+
msgstr "Stała data wygaśnięcia ważności"
|
2098 |
+
|
2099 |
+
#: views/admin_add_level.php:33 views/admin_edit_level.php:41
|
2100 |
+
msgid "(Access expires on a fixed date)"
|
2101 |
+
msgstr "(Dostęp wygasa w ustalonym terminie)"
|
2102 |
+
|
2103 |
+
#: views/admin_add_level.php:38 views/admin_edit_level.php:46
|
2104 |
+
msgid "Email Activation"
|
2105 |
+
msgstr "Aktywacja za pomocą poczty elektronicznej"
|
2106 |
+
|
2107 |
+
#: views/admin_add_level.php:43
|
2108 |
+
msgid ""
|
2109 |
+
"Enable new user activation via email. When enabled, members will need to "
|
2110 |
+
"click on an activation link that is sent to their email address to activate "
|
2111 |
+
"the account. Useful for free membership. "
|
2112 |
+
msgstr ""
|
2113 |
+
"Włączenie aktywacji nowego użytkownika za pośrednictwem poczty "
|
2114 |
+
"elektronicznej. Po włączeniu, członkowie będą musieli kliknąć na link "
|
2115 |
+
"aktywacyjny, który jest wysyłany na ich adres e-mail, aby aktywować konto. "
|
2116 |
+
"Przydatne dla darmowego członkostwa. "
|
2117 |
+
|
2118 |
+
#: views/admin_add_level.php:44 views/admin_edit_level.php:52
|
2119 |
+
msgid "View Documentation"
|
2120 |
+
msgstr "Zobacz dokumentację"
|
2121 |
|
2122 |
+
#: views/admin_add_level.php:45 views/admin_edit_level.php:53
|
2123 |
+
msgid "Note:"
|
2124 |
+
msgstr "Uwaga:"
|
2125 |
|
2126 |
+
#: views/admin_add_level.php:45 views/admin_edit_level.php:53
|
2127 |
+
msgid ""
|
2128 |
+
"If enabled, decryptable member password is temporarily stored in the "
|
2129 |
+
"database until the account is activated."
|
2130 |
+
msgstr ""
|
2131 |
+
"Jeśli opcja jest włączona, hasło członka, które można odszyfrować, jest "
|
2132 |
+
"tymczasowo przechowywane w bazie danych do momentu aktywacji konta."
|
2133 |
|
2134 |
+
#: views/admin_add_level.php:52
|
2135 |
+
msgid "Add New Membership Level "
|
2136 |
+
msgstr "Dodaj nowy poziom dostępu "
|
2137 |
|
2138 |
+
#: views/admin_add_ons_page.php:7
|
2139 |
+
msgid "Simple WP Membership::Add-ons"
|
2140 |
+
msgstr "Simple WP Membership::Dodatki"
|
2141 |
|
2142 |
+
#: views/admin_category_list.php:5
|
2143 |
+
msgid ""
|
2144 |
+
"First of all, globally protect the category on your site by selecting "
|
2145 |
+
"\"General Protection\" from the drop-down box below and then select the "
|
2146 |
+
"categories that should be protected from non-logged in users."
|
2147 |
+
msgstr ""
|
2148 |
+
"Na początek, globalnie chroń kategorię na swojej stronie, wybierając opcję "
|
2149 |
+
"\"Ochrona ogólna\" z rozwijanego pola poniżej, a następnie wybierz "
|
2150 |
+
"kategorie, które powinny być chronione przed niezalogowanymi użytkownikami."
|
2151 |
+
|
2152 |
+
#: views/admin_category_list.php:8
|
2153 |
+
msgid ""
|
2154 |
+
"Next, select an existing membership level from the drop-down box below and "
|
2155 |
+
"then select the categories you want to grant access to (for that particular "
|
2156 |
+
"membership level)."
|
2157 |
+
msgstr ""
|
2158 |
+
"Następnie wybierz istniejący poziom członkostwa z rozwijanej listy poniżej, "
|
2159 |
+
"a następnie wybierz kategorie, do których chcesz przyznać dostęp (dla tego "
|
2160 |
+
"konkretnego poziomu członkostwa)."
|
2161 |
|
2162 |
+
#: views/admin_category_list.php:11 views/admin_post_list.php:11
|
2163 |
+
msgid "Read the "
|
2164 |
+
msgstr "Przeczytaj "
|
2165 |
|
2166 |
+
#: views/admin_category_list.php:11
|
2167 |
+
msgid "category protection documentation"
|
2168 |
+
msgstr "dokumentacja zabezpieczenia kategorii"
|
2169 |
|
2170 |
+
#: views/admin_category_list.php:17 views/admin_post_list.php:27
|
2171 |
+
msgid "Membership Level:"
|
2172 |
+
msgstr "Poziom członkostwa:"
|
2173 |
|
2174 |
+
#: views/admin_category_list.php:19 views/admin_post_list.php:29
|
2175 |
+
msgid "General Protection"
|
2176 |
+
msgstr "Ochrona ogólna"
|
2177 |
|
2178 |
+
#: views/admin_category_list.php:23 views/admin_post_list.php:33
|
2179 |
+
#: views/edit.php:83
|
2180 |
+
msgid "Update"
|
2181 |
+
msgstr "Aktualizacja"
|
2182 |
|
2183 |
+
#: views/admin_edit.php:11
|
2184 |
+
msgid "Edit Member"
|
2185 |
+
msgstr "Edycja użytkownika"
|
2186 |
+
|
2187 |
+
#: views/admin_edit.php:13
|
2188 |
+
msgid "Edit existing member details."
|
2189 |
+
msgstr "Edytuj istniejącego użytkownika."
|
2190 |
+
|
2191 |
+
#: views/admin_edit.php:14
|
2192 |
+
msgid " You are currenty editing member with member ID: "
|
2193 |
+
msgstr " Obecnie edytujesz użytkownika z identyfikatorem: "
|
2194 |
+
|
2195 |
+
#: views/admin_edit.php:44
|
2196 |
+
msgid "(twice, leave empty to retain old password)"
|
2197 |
+
msgstr "(dwukrotnie, pozostawić puste, aby zachować stare hasło)"
|
2198 |
+
|
2199 |
+
#: views/admin_edit.php:59
|
2200 |
+
msgid ""
|
2201 |
+
"This is the member's account status. If you want to manually activate an "
|
2202 |
+
"expired member's account then read"
|
2203 |
+
msgstr ""
|
2204 |
+
"Jest to status konta członka. Jeśli chcesz ręcznie aktywować konto członka, "
|
2205 |
+
"którego okres ważności upłynął, przeczytaj"
|
2206 |
+
|
2207 |
+
#: views/admin_edit.php:60
|
2208 |
+
msgid "this documentation"
|
2209 |
+
msgstr "ta dokumentacja"
|
2210 |
+
|
2211 |
+
#: views/admin_edit.php:61
|
2212 |
+
msgid " to learn how to do it."
|
2213 |
+
msgstr " by nauczyć się, jak to zrobić."
|
2214 |
+
|
2215 |
+
#: views/admin_edit.php:66
|
2216 |
+
msgid "Notify User"
|
2217 |
+
msgstr "Powiadom użytkownika"
|
2218 |
+
|
2219 |
+
#: views/admin_edit.php:69
|
2220 |
+
msgid ""
|
2221 |
+
"You can use this option to send a quick notification email to this member "
|
2222 |
+
"(the email will be sent when you hit the save button below)."
|
2223 |
+
msgstr ""
|
2224 |
+
"Możesz skorzystać z tej opcji, aby wysłać szybkie powiadomienie do tego "
|
2225 |
+
"członka (email zostanie wysłany po naciśnięciu przycisku \"Zapisz\" poniżej)."
|
2226 |
+
|
2227 |
+
#: views/admin_edit.php:75
|
2228 |
+
msgid "Subscriber ID/Reference"
|
2229 |
+
msgstr "Identyfikator abonenta/referencja abonenta"
|
2230 |
+
|
2231 |
+
#: views/admin_edit.php:79
|
2232 |
+
msgid "Last Accessed Date"
|
2233 |
+
msgstr "Data ostatniego logowania"
|
2234 |
+
|
2235 |
+
#: views/admin_edit.php:82 views/admin_edit.php:89
|
2236 |
+
msgid "This value gets updated when this member logs into your site."
|
2237 |
+
msgstr ""
|
2238 |
+
"Wartość ta jest aktualizowana po zalogowaniu się tego członka na Twoją "
|
2239 |
+
"stronę internetową."
|
2240 |
+
|
2241 |
+
#: views/admin_edit.php:86
|
2242 |
+
msgid "Last Accessed From IP"
|
2243 |
+
msgstr "Ostatni dostęp z IP"
|
2244 |
+
|
2245 |
+
#: views/admin_edit.php:97
|
2246 |
+
msgid "Save Data"
|
2247 |
+
msgstr "Zapisz dane"
|
2248 |
+
|
2249 |
+
#: views/admin_edit.php:102
|
2250 |
+
msgid "Delete User Profile"
|
2251 |
+
msgstr "Usuń profil użytkownika"
|
2252 |
+
|
2253 |
+
#: views/admin_edit_level.php:6
|
2254 |
+
msgid "Edit membership level"
|
2255 |
+
msgstr "Edycja poziomu dostępu"
|
2256 |
+
|
2257 |
+
#: views/admin_edit_level.php:9
|
2258 |
+
msgid ""
|
2259 |
+
"You can edit details of a selected membership level from this interface. "
|
2260 |
+
msgstr ""
|
2261 |
+
"Z tego interfejsu można edytować szczegóły wybranego poziomu członkostwa. "
|
2262 |
+
|
2263 |
+
#: views/admin_edit_level.php:10
|
2264 |
+
msgid "You are currently editing: "
|
2265 |
+
msgstr "Obecnie dokonujesz edycji: "
|
2266 |
+
|
2267 |
+
#: views/admin_edit_level.php:27
|
2268 |
+
msgid "No Expiry (Access for this level will not expire until cancelled)"
|
2269 |
+
msgstr "Bezterminowo (dostęp do tego poziomu nie wygaśnie do czasu anulowania)"
|
2270 |
+
|
2271 |
+
#: views/admin_edit_level.php:32
|
2272 |
+
msgid "Weeks (Access expires after given number of weeks)"
|
2273 |
+
msgstr "Tygodnie (dostęp wygasa po określonej liczbie tygodni)"
|
2274 |
+
|
2275 |
+
#: views/admin_edit_level.php:51
|
2276 |
+
msgid ""
|
2277 |
+
"Enable new user activation via email. When enabled, members will need to "
|
2278 |
+
"click on an activation link that is sent to their email address to activate "
|
2279 |
+
"the account. Useful for free membership."
|
2280 |
+
msgstr ""
|
2281 |
+
"Włączenie aktywacji nowego użytkownika za pośrednictwem poczty "
|
2282 |
+
"elektronicznej. Po włączeniu, członkowie będą musieli kliknąć na link "
|
2283 |
+
"aktywacyjny, który jest wysyłany na ich adres e-mail, aby aktywować konto. "
|
2284 |
+
"Przydatne dla darmowego członkostwa."
|
2285 |
+
|
2286 |
+
#: views/admin_edit_level.php:60
|
2287 |
+
msgid "Save Membership Level "
|
2288 |
+
msgstr "Zapisz poziom członkostwa "
|
2289 |
|
2290 |
+
#: views/admin_membership_manage.php:18
|
2291 |
+
msgid "Example Content Protection Settings"
|
2292 |
+
msgstr "Przykład ustawienia ochrony zawartości"
|
2293 |
+
|
2294 |
+
#: views/admin_members_list.php:18
|
2295 |
+
msgid "All"
|
2296 |
+
msgstr "Wszystko"
|
2297 |
+
|
2298 |
+
#: views/admin_members_list.php:23
|
2299 |
+
msgid "Incomplete"
|
2300 |
+
msgstr "Niekompletne"
|
2301 |
+
|
2302 |
+
#: views/admin_member_form_common_part.php:23
|
2303 |
+
#: includes/swpm_mda_show_profile.php:37
|
2304 |
msgid "Gender"
|
2305 |
msgstr "Płeć"
|
2306 |
|
2307 |
+
#: views/admin_member_form_common_part.php:30 views/edit.php:47
|
2308 |
+
#: includes/swpm_mda_show_profile.php:34
|
2309 |
msgid "Phone"
|
2310 |
msgstr "Nr telefonu"
|
2311 |
|
2312 |
+
#: views/admin_member_form_common_part.php:34 views/edit.php:51
|
|
|
2313 |
msgid "Street"
|
2314 |
msgstr "Ulica"
|
2315 |
|
2316 |
+
#: views/admin_member_form_common_part.php:38 views/edit.php:55
|
|
|
2317 |
msgid "City"
|
2318 |
msgstr "Miasto"
|
2319 |
|
2320 |
+
#: views/admin_member_form_common_part.php:42 views/edit.php:59
|
|
|
2321 |
msgid "State"
|
2322 |
msgstr "Województwo"
|
2323 |
|
2324 |
+
#: views/admin_member_form_common_part.php:46 views/edit.php:63
|
|
|
2325 |
msgid "Zipcode"
|
2326 |
msgstr "Kod pocztowy"
|
2327 |
|
2328 |
+
#: views/admin_member_form_common_part.php:50 views/edit.php:67
|
2329 |
+
#: includes/swpm_mda_show_profile.php:33
|
2330 |
msgid "Country"
|
2331 |
msgstr "Kraj"
|
2332 |
|
2333 |
+
#: views/admin_member_form_common_part.php:54
|
2334 |
+
#: includes/swpm_mda_show_profile.php:38
|
2335 |
msgid "Company"
|
2336 |
msgstr "Firma"
|
2337 |
|
2338 |
+
#: views/admin_member_form_common_part.php:58
|
2339 |
+
#: includes/swpm_mda_show_profile.php:36
|
2340 |
+
msgid "Member Since"
|
2341 |
+
msgstr "Użytkownik od"
|
2342 |
|
2343 |
+
#: views/admin_post_list.php:5
|
2344 |
+
msgid ""
|
2345 |
+
"First of all, globally protect posts and pages on your site by selecting "
|
2346 |
+
"\"General Protection\" from the drop-down box below and then select posts "
|
2347 |
+
"and pages that should be protected from non-logged in users."
|
2348 |
+
msgstr ""
|
2349 |
+
"Po pierwsze, globalnie chroń posty i strony na swojej stronie wybierając "
|
2350 |
+
"\"Ochrona ogólna\" z rozwijanej listy poniżej, a następnie wybierz posty i "
|
2351 |
+
"strony, które powinny być chronione przed niezalogowanymi użytkownikami."
|
2352 |
|
2353 |
+
#: views/admin_post_list.php:8
|
2354 |
+
msgid ""
|
2355 |
+
"Next, select an existing membership level from the drop-down box below and "
|
2356 |
+
"then select posts and pages you want to grant access to (for that particular "
|
2357 |
+
"membership level)."
|
2358 |
+
msgstr ""
|
2359 |
+
"Następnie wybierz istniejący poziom członkostwa z rozwijanej listy poniżej, "
|
2360 |
+
"a następnie wybierz posty i strony, do których chcesz przyznać dostęp (dla "
|
2361 |
+
"tego konkretnego poziomu członkostwa)."
|
2362 |
|
2363 |
+
#: views/admin_post_list.php:11
|
2364 |
+
msgid "bulk protect posts and pages documentation"
|
2365 |
+
msgstr "zbiorcza ochrona wpisów i stron dokumentacji"
|
2366 |
|
2367 |
+
#: views/admin_post_list.php:11
|
2368 |
+
msgid " to learn how to use it."
|
2369 |
+
msgstr " by nauczyć się, jak tego używać."
|
|
|
|
|
|
|
|
|
2370 |
|
2371 |
+
#: views/admin_post_list.php:21
|
2372 |
+
msgid "Posts"
|
2373 |
+
msgstr "Wpisy"
|
2374 |
|
2375 |
+
#: views/admin_post_list.php:22
|
2376 |
+
msgid "Pages"
|
2377 |
+
msgstr "Strony"
|
2378 |
|
2379 |
+
#: views/admin_post_list.php:23
|
2380 |
+
msgid "Custom Posts"
|
2381 |
+
msgstr "Wybrane wpisy"
|
2382 |
|
2383 |
+
#: views/admin_tools_settings.php:14
|
2384 |
+
msgid "The required pages have been re-created."
|
2385 |
+
msgstr "Wymagane strony zostały odtworzone."
|
2386 |
|
2387 |
+
#: views/admin_tools_settings.php:21
|
2388 |
+
msgid "Generate a Registration Completion link"
|
2389 |
+
msgstr "Generowanie linku zakończenia rejestracji"
|
2390 |
|
2391 |
+
#: views/admin_tools_settings.php:24
|
2392 |
+
msgid ""
|
2393 |
+
"You can manually generate a registration completion link here and give it to "
|
2394 |
+
"your customer if they have missed the email that was automatically sent out "
|
2395 |
+
"to them after the payment."
|
2396 |
+
msgstr ""
|
2397 |
+
"Tutaj można ręcznie wygenerować link zakończenia rejestracji i wysłać go do "
|
2398 |
+
"klienta , jeśli nie został pominięty e-mail , który został automatycznie "
|
2399 |
+
"wysłany po dokonaniu płatności ."
|
2400 |
|
2401 |
+
#: views/admin_tools_settings.php:29
|
2402 |
+
msgid "Generate Registration Completion Link"
|
2403 |
+
msgstr "Generowanie linku zakończenia rejestracji"
|
2404 |
|
2405 |
+
#: views/admin_tools_settings.php:30
|
2406 |
+
msgid "For a Particular Member ID"
|
2407 |
+
msgstr "Dla szczególnego identyfikatora członka"
|
2408 |
|
2409 |
+
#: views/admin_tools_settings.php:32
|
2410 |
+
msgid "OR"
|
2411 |
+
msgstr "LUB"
|
2412 |
|
2413 |
+
#: views/admin_tools_settings.php:33
|
2414 |
+
msgid "For All Incomplete Registrations"
|
2415 |
+
msgstr "Dla wszystkich niekompletnych rejestracji"
|
2416 |
|
2417 |
+
#: views/admin_tools_settings.php:38
|
2418 |
+
msgid "Send Registration Reminder Email Too"
|
2419 |
+
msgstr "Wyślij również przypomnienie o rejestracji"
|
2420 |
|
2421 |
+
#: views/admin_tools_settings.php:44
|
2422 |
+
msgid "Submit"
|
2423 |
+
msgstr "Wyślij"
|
2424 |
|
2425 |
+
#: views/admin_tools_settings.php:53
|
2426 |
+
msgid ""
|
2427 |
+
"Link(s) generated successfully. The following link(s) can be used to "
|
2428 |
+
"complete the registration."
|
2429 |
+
msgstr ""
|
2430 |
+
"Łącze(-a) wygenerowane pomyślnie. Poniższy link(y) może(ą) być użyty(e) w "
|
2431 |
+
"celu uzupełnienia rejestracji."
|
2432 |
|
2433 |
+
#: views/admin_tools_settings.php:55
|
2434 |
+
msgid "Registration completion links will appear below"
|
2435 |
+
msgstr "Odnośniki zakończenia rejestracji pojawią się poniżej"
|
2436 |
|
2437 |
+
#: views/admin_tools_settings.php:65
|
2438 |
+
msgid "A prompt to complete registration email was also sent."
|
2439 |
+
msgstr "Wysłano również prośbę o wypełnienie e-maila rejestracyjnego."
|
2440 |
|
2441 |
+
#: views/admin_tools_settings.php:78 views/admin_tools_settings.php:88
|
2442 |
+
msgid "Re-create the Required Pages"
|
2443 |
+
msgstr "Odtwórz wymagane strony"
|
2444 |
|
2445 |
+
#: views/admin_tools_settings.php:81
|
2446 |
+
msgid ""
|
2447 |
+
"If you have accidentally deleted the required pages that this plugin creates "
|
2448 |
+
"at install time, you can use this option to re-create them."
|
2449 |
+
msgstr ""
|
2450 |
+
"Jeśli przypadkowo usunąłeś wymagane strony, które plugin tworzy podczas "
|
2451 |
+
"instalacji, możesz użyć tej opcji do ich ponownego utworzenia."
|
2452 |
|
2453 |
+
#: views/admin_tools_settings.php:82
|
2454 |
+
msgid " has full explanation."
|
2455 |
+
msgstr " ma pełne wyjaśnienie."
|
2456 |
|
2457 |
+
#: views/edit.php:32 views/edit.php:36
|
2458 |
+
msgid "Leave empty to keep the current password"
|
2459 |
+
msgstr "Zostaw puste, aby zachować aktualne hasło"
|
2460 |
|
2461 |
+
#: views/edit.php:71
|
2462 |
+
msgid "Company Name"
|
2463 |
+
msgstr "Nazwa firmy"
|
2464 |
|
2465 |
+
#: views/forgot_password.php:12
|
2466 |
+
msgid "Reset Password"
|
2467 |
+
msgstr "Reset hasła"
|
2468 |
|
2469 |
+
#: views/loggedin.php:6
|
2470 |
+
msgid "Logged in as"
|
2471 |
+
msgstr "Jesteś zalogowany jako"
|
2472 |
|
2473 |
+
#: views/loggedin.php:14
|
2474 |
+
msgid "Membership"
|
2475 |
+
msgstr "Członkostwo"
|
2476 |
|
2477 |
+
#: views/loggedin.php:18
|
2478 |
+
msgid "Account Expiry"
|
2479 |
+
msgstr "Konto straciło ważność"
|
2480 |
+
|
2481 |
+
#: views/loggedin.php:26
|
2482 |
+
msgid "Edit Profile"
|
2483 |
+
msgstr "Edytuj profil"
|
2484 |
+
|
2485 |
+
#: views/login.php:11
|
2486 |
+
msgid "Username or Email"
|
2487 |
+
msgstr "Nazwa użytkownika lub email"
|
2488 |
+
|
2489 |
+
#: views/login.php:24
|
2490 |
+
msgid "Remember Me"
|
2491 |
+
msgstr "Pamiętaj mnie"
|
2492 |
+
|
2493 |
+
#: views/login.php:33
|
2494 |
+
msgid "Forgot Password?"
|
2495 |
+
msgstr "Zapomniałeś hasła?"
|
2496 |
+
|
2497 |
+
#: views/payments/admin_all_payment_transactions.php:6
|
2498 |
+
msgid "All the payments/transactions of your members are recorded here."
|
2499 |
+
msgstr "Wszystkie płatności/transakcje członków są rejestrowane tutaj."
|
2500 |
+
|
2501 |
+
#: views/payments/admin_all_payment_transactions.php:12
|
2502 |
+
msgid "Search for a transaction by using email or name"
|
2503 |
+
msgstr "Wyszukaj transakcję za pomocą wiadomości e-mail lub nazwy"
|
2504 |
|
2505 |
+
#: views/payments/admin_create_payment_buttons.php:15
|
2506 |
msgid ""
|
2507 |
+
"You can create new payment button for your memberships using this interface."
|
|
|
|
|
2508 |
msgstr ""
|
2509 |
+
"Za pomocą tego interfejsu możesz utworzyć nowy przycisk płatności za "
|
2510 |
+
"członkostwo."
|
|
|
2511 |
|
2512 |
+
#: views/payments/admin_create_payment_buttons.php:23
|
2513 |
+
msgid "Select Payment Button Type"
|
2514 |
+
msgstr "Wybierz typ przycisku płatności"
|
|
|
2515 |
|
2516 |
+
#: views/payments/admin_create_payment_buttons.php:26
|
2517 |
+
msgid "PayPal Buy Now"
|
2518 |
+
msgstr "PayPal Kup teraz"
|
2519 |
|
2520 |
+
#: views/payments/admin_create_payment_buttons.php:28
|
2521 |
+
msgid "PayPal Subscription"
|
2522 |
+
msgstr "Subskrypcja PayPal"
|
2523 |
+
|
2524 |
+
#: views/payments/admin_create_payment_buttons.php:30
|
2525 |
+
msgid "PayPal Smart Checkout"
|
2526 |
+
msgstr "PayPal Smart Checkout"
|
2527 |
+
|
2528 |
+
#: views/payments/admin_create_payment_buttons.php:32
|
2529 |
+
msgid "Stripe Buy Now"
|
2530 |
+
msgstr "Stripe (kup teraz)"
|
2531 |
+
|
2532 |
+
#: views/payments/admin_create_payment_buttons.php:34
|
2533 |
+
msgid "Stripe Subscription"
|
2534 |
+
msgstr "Subskrypcja Stripe"
|
2535 |
+
|
2536 |
+
#: views/payments/admin_create_payment_buttons.php:36
|
2537 |
+
msgid "Braintree Buy Now"
|
2538 |
+
msgstr "Braintree (Kup teraz)"
|
2539 |
|
2540 |
+
#: views/payments/admin_create_payment_buttons.php:43
|
2541 |
+
msgid "Next"
|
2542 |
+
msgstr "Dalej"
|
2543 |
+
|
2544 |
+
#: views/payments/admin_edit_payment_buttons.php:15
|
2545 |
+
msgid "You can edit a payment button using this interface."
|
2546 |
+
msgstr "Za pomocą tego interfejsu można edytować przycisk płatności."
|
2547 |
+
|
2548 |
+
#: views/payments/admin_payment_buttons.php:6
|
2549 |
+
msgid ""
|
2550 |
+
"All the membership buttons that you created in the plugin are displayed here."
|
2551 |
+
msgstr ""
|
2552 |
+
"Tutaj wyświetlane są wszystkie przyciski członkowskie, które utworzyłeś w "
|
2553 |
+
"wtyczce."
|
2554 |
+
|
2555 |
+
#: views/payments/admin_payment_settings.php:21
|
2556 |
+
msgid "Error! The membership level ID ("
|
2557 |
+
msgstr "Błąd! Identyfikator poziomu członkostwa ("
|
2558 |
+
|
2559 |
+
#: views/payments/admin_payment_settings.php:28
|
2560 |
+
msgid ""
|
2561 |
+
"You can create membership payment buttons from the payments menu of this "
|
2562 |
+
"plugin (useful if you want to offer paid membership on the site)."
|
2563 |
+
msgstr ""
|
2564 |
+
"Możesz utworzyć przyciski płatności członkowskich z menu płatności tej "
|
2565 |
+
"wtyczki (przydatne, jeśli chcesz zaoferować płatne członkostwo na stronie)."
|
2566 |
+
|
2567 |
+
#: views/payments/admin_payment_settings.php:33
|
2568 |
msgid "PayPal Integration Settings"
|
2569 |
msgstr "PayPal Ustawienia integracyjne"
|
2570 |
|
2571 |
+
#: views/payments/admin_payment_settings.php:36
|
2572 |
msgid "Generate the \"Advanced Variables\" Code for your PayPal button"
|
2573 |
msgstr "Genrowany \"Advanced Variables\" kod dla twojego przycisku PayPal"
|
2574 |
|
2575 |
+
#: views/payments/admin_payment_settings.php:39
|
2576 |
msgid "Enter the Membership Level ID"
|
2577 |
+
msgstr "Wpisz ID poziomu"
|
2578 |
|
2579 |
+
#: views/payments/admin_payment_settings.php:41
|
2580 |
msgid "Generate Code"
|
2581 |
msgstr "Wygeneruj kod"
|
2582 |
|
2583 |
+
#: views/payments/payment-gateway/admin_braintree_buy_now_button.php:22
|
2584 |
+
msgid "Braintree Buy Now Button Configuration"
|
2585 |
+
msgstr "Konfiguracja przycisków \"Kup teraz\" Braintree"
|
2586 |
+
|
2587 |
+
#: views/payments/payment-gateway/admin_braintree_buy_now_button.php:34
|
2588 |
+
#: views/payments/payment-gateway/admin_paypal_buy_now_button.php:213
|
2589 |
+
#: views/payments/payment-gateway/admin_paypal_smart_checkout_button.php:33
|
2590 |
+
#: views/payments/payment-gateway/admin_paypal_subscription_button.php:301
|
2591 |
+
#: views/payments/payment-gateway/admin_stripe_buy_now_button.php:259
|
2592 |
+
#: views/payments/payment-gateway/admin_stripe_subscription_button.php:83
|
2593 |
+
msgid "Button ID"
|
2594 |
+
msgstr "ID Przycisku"
|
2595 |
+
|
2596 |
+
#: views/payments/payment-gateway/admin_braintree_buy_now_button.php:42
|
2597 |
+
#: views/payments/payment-gateway/admin_paypal_buy_now_button.php:26
|
2598 |
+
#: views/payments/payment-gateway/admin_paypal_buy_now_button.php:221
|
2599 |
+
#: views/payments/payment-gateway/admin_paypal_smart_checkout_button.php:41
|
2600 |
+
#: views/payments/payment-gateway/admin_paypal_subscription_button.php:27
|
2601 |
+
#: views/payments/payment-gateway/admin_paypal_subscription_button.php:309
|
2602 |
+
#: views/payments/payment-gateway/admin_stripe_buy_now_button.php:39
|
2603 |
+
#: views/payments/payment-gateway/admin_stripe_buy_now_button.php:266
|
2604 |
+
#: views/payments/payment-gateway/admin_stripe_subscription_button.php:91
|
2605 |
+
msgid "Button Title"
|
2606 |
+
msgstr "Tytuł przycisku"
|
2607 |
+
|
2608 |
+
#: views/payments/payment-gateway/admin_braintree_buy_now_button.php:60
|
2609 |
+
#: views/payments/payment-gateway/admin_paypal_buy_now_button.php:44
|
2610 |
+
#: views/payments/payment-gateway/admin_paypal_buy_now_button.php:239
|
2611 |
+
#: views/payments/payment-gateway/admin_paypal_smart_checkout_button.php:59
|
2612 |
+
#: views/payments/payment-gateway/admin_stripe_buy_now_button.php:57
|
2613 |
+
#: views/payments/payment-gateway/admin_stripe_buy_now_button.php:282
|
2614 |
+
msgid "Payment Amount"
|
2615 |
+
msgstr "Kwota płatności"
|
2616 |
+
|
2617 |
+
#: views/payments/payment-gateway/admin_braintree_buy_now_button.php:68
|
2618 |
+
msgid ""
|
2619 |
+
"Braintree API key and account details. You can get this from your Braintree "
|
2620 |
+
"account."
|
2621 |
+
msgstr ""
|
2622 |
+
"Klucz API Braintree i szczegóły dotyczące konta. Możesz to uzyskać ze "
|
2623 |
+
"swojego konta Braintree."
|
2624 |
+
|
2625 |
+
#: views/payments/payment-gateway/admin_braintree_buy_now_button.php:72
|
2626 |
+
msgid "Merchant ID"
|
2627 |
+
msgstr "Identyfikator sprzedawcy"
|
2628 |
+
|
2629 |
+
#: views/payments/payment-gateway/admin_braintree_buy_now_button.php:80
|
2630 |
+
msgid "Public Key"
|
2631 |
+
msgstr "Klucz publiczny"
|
2632 |
+
|
2633 |
+
#: views/payments/payment-gateway/admin_braintree_buy_now_button.php:87
|
2634 |
+
msgid "Private Key"
|
2635 |
+
msgstr "Klucz prywatny"
|
2636 |
+
|
2637 |
+
#: views/payments/payment-gateway/admin_braintree_buy_now_button.php:95
|
2638 |
+
msgid "Merchant Account ID"
|
2639 |
+
msgstr "Identyfikator konta handlowego"
|
2640 |
+
|
2641 |
+
#: views/payments/payment-gateway/admin_braintree_buy_now_button.php:113
|
2642 |
+
#: views/payments/payment-gateway/admin_stripe_buy_now_button.php:137
|
2643 |
+
#: views/payments/payment-gateway/admin_stripe_buy_now_button.php:361
|
2644 |
+
msgid "The following details are optional."
|
2645 |
+
msgstr "Poniższe szczegóły są opcjonalne."
|
2646 |
+
|
2647 |
+
#: views/payments/payment-gateway/admin_braintree_buy_now_button.php:117
|
2648 |
+
#: views/payments/payment-gateway/admin_paypal_buy_now_button.php:92
|
2649 |
+
#: views/payments/payment-gateway/admin_paypal_buy_now_button.php:287
|
2650 |
+
#: views/payments/payment-gateway/admin_paypal_smart_checkout_button.php:204
|
2651 |
+
#: views/payments/payment-gateway/admin_paypal_subscription_button.php:172
|
2652 |
+
#: views/payments/payment-gateway/admin_paypal_subscription_button.php:456
|
2653 |
+
#: views/payments/payment-gateway/admin_stripe_buy_now_button.php:149
|
2654 |
+
#: views/payments/payment-gateway/admin_stripe_buy_now_button.php:373
|
2655 |
+
#: views/payments/payment-gateway/admin_stripe_subscription_button.php:191
|
2656 |
+
msgid "Return URL"
|
2657 |
+
msgstr "Zwrotny adres URL"
|
2658 |
+
|
2659 |
+
#: views/payments/payment-gateway/admin_braintree_buy_now_button.php:127
|
2660 |
+
#: views/payments/payment-gateway/admin_paypal_buy_now_button.php:126
|
2661 |
+
#: views/payments/payment-gateway/admin_paypal_buy_now_button.php:321
|
2662 |
+
#: views/payments/payment-gateway/admin_paypal_smart_checkout_button.php:214
|
2663 |
+
#: views/payments/payment-gateway/admin_paypal_subscription_button.php:200
|
2664 |
+
#: views/payments/payment-gateway/admin_paypal_subscription_button.php:484
|
2665 |
+
#: views/payments/payment-gateway/admin_stripe_buy_now_button.php:159
|
2666 |
+
#: views/payments/payment-gateway/admin_stripe_buy_now_button.php:383
|
2667 |
+
#: views/payments/payment-gateway/admin_stripe_subscription_button.php:212
|
2668 |
+
msgid "Save Payment Data"
|
2669 |
+
msgstr "Zapisz dane dotyczące płatności"
|
2670 |
+
|
2671 |
+
#: views/payments/payment-gateway/admin_paypal_buy_now_button.php:16
|
2672 |
+
#: views/payments/payment-gateway/admin_paypal_buy_now_button.php:204
|
2673 |
+
msgid "PayPal Buy Now Button Configuration"
|
2674 |
+
msgstr "Konfiguracja przycisków PayPal \"Kup Teraz\""
|
2675 |
+
|
2676 |
+
#: views/payments/payment-gateway/admin_paypal_buy_now_button.php:52
|
2677 |
+
#: views/payments/payment-gateway/admin_paypal_buy_now_button.php:247
|
2678 |
+
#: views/payments/payment-gateway/admin_paypal_smart_checkout_button.php:67
|
2679 |
+
#: views/payments/payment-gateway/admin_paypal_subscription_button.php:45
|
2680 |
+
#: views/payments/payment-gateway/admin_paypal_subscription_button.php:327
|
2681 |
+
#: views/payments/payment-gateway/admin_stripe_buy_now_button.php:65
|
2682 |
+
#: views/payments/payment-gateway/admin_stripe_buy_now_button.php:289
|
2683 |
+
msgid "Payment Currency"
|
2684 |
+
msgstr "Waluta Płatności"
|
2685 |
+
|
2686 |
+
#: views/payments/payment-gateway/admin_paypal_buy_now_button.php:100
|
2687 |
+
#: views/payments/payment-gateway/admin_paypal_buy_now_button.php:295
|
2688 |
+
#: views/payments/payment-gateway/admin_paypal_subscription_button.php:85
|
2689 |
+
#: views/payments/payment-gateway/admin_paypal_subscription_button.php:367
|
2690 |
+
msgid "PayPal Email"
|
2691 |
+
msgstr "PayPal e-mail"
|
2692 |
+
|
2693 |
+
#: views/payments/payment-gateway/admin_paypal_buy_now_button.php:108
|
2694 |
+
#: views/payments/payment-gateway/admin_paypal_buy_now_button.php:303
|
2695 |
+
#: views/payments/payment-gateway/admin_paypal_subscription_button.php:180
|
2696 |
+
#: views/payments/payment-gateway/admin_paypal_subscription_button.php:464
|
2697 |
+
#: views/payments/payment-gateway/admin_stripe_subscription_button.php:199
|
2698 |
+
msgid "Button Image URL"
|
2699 |
+
msgstr "Adres obrazka Przycisku"
|
2700 |
+
|
2701 |
+
#: views/payments/payment-gateway/admin_paypal_buy_now_button.php:116
|
2702 |
+
#: views/payments/payment-gateway/admin_paypal_buy_now_button.php:311
|
2703 |
+
#: views/payments/payment-gateway/admin_paypal_subscription_button.php:188
|
2704 |
+
#: views/payments/payment-gateway/admin_paypal_subscription_button.php:472
|
2705 |
+
msgid "Custom Checkout Page Logo Image"
|
2706 |
+
msgstr "Obrazek logo własnej strony potwierdzenia płatności"
|
2707 |
+
|
2708 |
+
#: views/payments/payment-gateway/admin_paypal_smart_checkout_button.php:21
|
2709 |
+
msgid "PayPal Smart Checkout Button Configuration"
|
2710 |
+
msgstr "Konfiguracja przycisku PayPal Smart Checkout"
|
2711 |
+
|
2712 |
+
#: views/payments/payment-gateway/admin_paypal_smart_checkout_button.php:107
|
2713 |
+
msgid ""
|
2714 |
+
"PayPal Smart Checkout API Credentials (you can get this from your PayPal "
|
2715 |
+
"account)"
|
2716 |
+
msgstr ""
|
2717 |
+
"PayPal Smart Checkout API Credentials (można to uzyskać z konta PayPal)"
|
2718 |
+
|
2719 |
+
#: views/payments/payment-gateway/admin_paypal_smart_checkout_button.php:111
|
2720 |
+
msgid "Live Client ID"
|
2721 |
+
msgstr "Live Client ID"
|
2722 |
|
2723 |
+
#: views/payments/payment-gateway/admin_paypal_smart_checkout_button.php:119
|
2724 |
+
msgid "Live Secret"
|
2725 |
+
msgstr "Live Secret"
|
2726 |
+
|
2727 |
+
#: views/payments/payment-gateway/admin_paypal_smart_checkout_button.php:127
|
2728 |
+
msgid "Sandbox Client ID"
|
2729 |
+
msgstr "ID Klienta Sandbox"
|
2730 |
+
|
2731 |
+
#: views/payments/payment-gateway/admin_paypal_smart_checkout_button.php:135
|
2732 |
+
msgid "Sandbox Secret"
|
2733 |
+
msgstr "Sandbox Secret"
|
2734 |
+
|
2735 |
+
#: views/payments/payment-gateway/admin_paypal_smart_checkout_button.php:143
|
2736 |
+
msgid "Button Appearance Settings"
|
2737 |
+
msgstr "Przycisk - ustawienia wyglądu"
|
2738 |
+
|
2739 |
+
#: views/payments/payment-gateway/admin_paypal_smart_checkout_button.php:147
|
2740 |
+
msgid "Size"
|
2741 |
+
msgstr "Rozmiar"
|
2742 |
+
|
2743 |
+
#: views/payments/payment-gateway/admin_paypal_smart_checkout_button.php:150
|
2744 |
+
msgid "Medium"
|
2745 |
+
msgstr "Średni"
|
2746 |
+
|
2747 |
+
#: views/payments/payment-gateway/admin_paypal_smart_checkout_button.php:151
|
2748 |
+
msgid "Large"
|
2749 |
+
msgstr "Duży"
|
2750 |
+
|
2751 |
+
#: views/payments/payment-gateway/admin_paypal_smart_checkout_button.php:152
|
2752 |
+
msgid "Repsonsive"
|
2753 |
+
msgstr "Responsywny"
|
2754 |
+
|
2755 |
+
#: views/payments/payment-gateway/admin_paypal_smart_checkout_button.php:154
|
2756 |
+
msgid "Select button size."
|
2757 |
+
msgstr "Wybierz rozmiar przycisku."
|
2758 |
+
|
2759 |
+
#: views/payments/payment-gateway/admin_paypal_smart_checkout_button.php:158
|
2760 |
+
msgid "Color"
|
2761 |
+
msgstr "Kolor"
|
2762 |
+
|
2763 |
+
#: views/payments/payment-gateway/admin_paypal_smart_checkout_button.php:161
|
2764 |
+
msgid "Gold"
|
2765 |
+
msgstr "Złoty"
|
2766 |
+
|
2767 |
+
#: views/payments/payment-gateway/admin_paypal_smart_checkout_button.php:162
|
2768 |
+
msgid "Blue"
|
2769 |
+
msgstr "Niebieski"
|
2770 |
+
|
2771 |
+
#: views/payments/payment-gateway/admin_paypal_smart_checkout_button.php:163
|
2772 |
+
msgid "Silver"
|
2773 |
+
msgstr "Srebrny"
|
2774 |
+
|
2775 |
+
#: views/payments/payment-gateway/admin_paypal_smart_checkout_button.php:164
|
2776 |
+
msgid "Black"
|
2777 |
+
msgstr "Czarny"
|
2778 |
+
|
2779 |
+
#: views/payments/payment-gateway/admin_paypal_smart_checkout_button.php:166
|
2780 |
+
msgid "Select button color."
|
2781 |
+
msgstr "Wybierz kolor przycisku."
|
2782 |
+
|
2783 |
+
#: views/payments/payment-gateway/admin_paypal_smart_checkout_button.php:170
|
2784 |
+
msgid "Shape"
|
2785 |
+
msgstr "Kształt"
|
2786 |
+
|
2787 |
+
#: views/payments/payment-gateway/admin_paypal_smart_checkout_button.php:172
|
2788 |
+
msgid "Rectangular"
|
2789 |
+
msgstr "Prostokątny"
|
2790 |
+
|
2791 |
+
#: views/payments/payment-gateway/admin_paypal_smart_checkout_button.php:173
|
2792 |
+
msgid "Pill"
|
2793 |
+
msgstr "Pigułka"
|
2794 |
+
|
2795 |
+
#: views/payments/payment-gateway/admin_paypal_smart_checkout_button.php:174
|
2796 |
+
msgid "Select button shape."
|
2797 |
+
msgstr "Wybierz kształt przycisku."
|
2798 |
+
|
2799 |
+
#: views/payments/payment-gateway/admin_paypal_smart_checkout_button.php:178
|
2800 |
+
msgid "Layout"
|
2801 |
+
msgstr "Układ"
|
2802 |
+
|
2803 |
+
#: views/payments/payment-gateway/admin_paypal_smart_checkout_button.php:180
|
2804 |
+
msgid "Vertical"
|
2805 |
+
msgstr "Pionowo"
|
2806 |
+
|
2807 |
+
#: views/payments/payment-gateway/admin_paypal_smart_checkout_button.php:181
|
2808 |
+
msgid "Horizontal"
|
2809 |
+
msgstr "Poziomy"
|
2810 |
+
|
2811 |
+
#: views/payments/payment-gateway/admin_paypal_smart_checkout_button.php:182
|
2812 |
+
msgid "Select button layout."
|
2813 |
+
msgstr "Wybierz układ przycisku."
|
2814 |
+
|
2815 |
+
#: views/payments/payment-gateway/admin_paypal_smart_checkout_button.php:187
|
2816 |
+
msgid "Additional Settings"
|
2817 |
+
msgstr "Dodatkowe ustawienia"
|
2818 |
+
|
2819 |
+
#: views/payments/payment-gateway/admin_paypal_smart_checkout_button.php:191
|
2820 |
+
msgid "Payment Methods"
|
2821 |
+
msgstr "Metody płatności"
|
2822 |
+
|
2823 |
+
#: views/payments/payment-gateway/admin_paypal_smart_checkout_button.php:193
|
2824 |
+
msgid "PayPal Credit"
|
2825 |
+
msgstr "Kredyt PayPal"
|
2826 |
+
|
2827 |
+
#: views/payments/payment-gateway/admin_paypal_smart_checkout_button.php:194
|
2828 |
+
msgid "ELV"
|
2829 |
+
msgstr "ELV"
|
2830 |
+
|
2831 |
+
#: views/payments/payment-gateway/admin_paypal_smart_checkout_button.php:195
|
2832 |
msgid ""
|
2833 |
+
"Select payment methods that could be used by customers. Note that payment "
|
2834 |
+
"with cards is always enabled."
|
|
|
2835 |
msgstr ""
|
2836 |
+
"Wybierz metody płatności, z których mogą korzystać klienci. Należy pamiętać, "
|
2837 |
+
"że płatność kartą jest zawsze włączona."
|
2838 |
+
|
2839 |
+
#: views/payments/payment-gateway/admin_paypal_smart_checkout_button.php:200
|
2840 |
+
msgid "The following details are optional"
|
2841 |
+
msgstr "Poniższe szczegóły są opcjonalne"
|
2842 |
+
|
2843 |
+
#: views/payments/payment-gateway/admin_paypal_subscription_button.php:18
|
2844 |
+
#: views/payments/payment-gateway/admin_paypal_subscription_button.php:295
|
2845 |
+
msgid "PayPal Subscription Button Configuration"
|
2846 |
+
msgstr "Konfiguracja przycisku subskrypcji PayPal"
|
2847 |
+
|
2848 |
+
#: views/payments/payment-gateway/admin_paypal_subscription_button.php:93
|
2849 |
+
#: views/payments/payment-gateway/admin_paypal_subscription_button.php:375
|
2850 |
+
msgid "Billing Amount Each Cycle"
|
2851 |
+
msgstr "Kwota rozliczeniowa każdego cykl"
|
2852 |
+
|
2853 |
+
#: views/payments/payment-gateway/admin_paypal_subscription_button.php:101
|
2854 |
+
#: views/payments/payment-gateway/admin_paypal_subscription_button.php:383
|
2855 |
+
msgid "Billing Cycle"
|
2856 |
+
msgstr "Okres rozliczeniowy"
|
2857 |
+
|
2858 |
+
#: views/payments/payment-gateway/admin_paypal_subscription_button.php:114
|
2859 |
+
#: views/payments/payment-gateway/admin_paypal_subscription_button.php:396
|
2860 |
+
msgid "Billing Cycle Count"
|
2861 |
+
msgstr "Licznik cykli rozliczeniowych"
|
2862 |
+
|
2863 |
+
#: views/payments/payment-gateway/admin_paypal_subscription_button.php:122
|
2864 |
+
#: views/payments/payment-gateway/admin_paypal_subscription_button.php:404
|
2865 |
+
msgid "Re-attempt on Failure"
|
2866 |
+
msgstr "Niepowodzenie ponownej próby"
|
2867 |
+
|
2868 |
+
#: views/payments/payment-gateway/admin_paypal_subscription_button.php:135
|
2869 |
+
#: views/payments/payment-gateway/admin_paypal_subscription_button.php:419
|
2870 |
+
msgid ""
|
2871 |
+
"Trial Billing Details (Leave empty if you are not offering a trial period)"
|
2872 |
+
msgstr ""
|
2873 |
+
"Szczegóły rozliczania próbnego (zostaw puste, jeśli nie oferujesz okresu "
|
2874 |
+
"próbnego)"
|
2875 |
+
|
2876 |
+
#: views/payments/payment-gateway/admin_paypal_subscription_button.php:141
|
2877 |
+
#: views/payments/payment-gateway/admin_paypal_subscription_button.php:425
|
2878 |
+
msgid "Trial Billing Amount"
|
2879 |
+
msgstr "Płatność w okresie próbnym"
|
2880 |
+
|
2881 |
+
#: views/payments/payment-gateway/admin_paypal_subscription_button.php:149
|
2882 |
+
#: views/payments/payment-gateway/admin_paypal_subscription_button.php:433
|
2883 |
+
msgid "Trial Billing Period"
|
2884 |
+
msgstr "Próbny okres rozliczeniowy"
|
2885 |
+
|
2886 |
+
#: views/payments/payment-gateway/admin_paypal_subscription_button.php:166
|
2887 |
+
#: views/payments/payment-gateway/admin_paypal_subscription_button.php:450
|
2888 |
+
#: views/payments/payment-gateway/admin_stripe_subscription_button.php:177
|
2889 |
+
msgid "Optional Details"
|
2890 |
+
msgstr "Dane opcjonalne"
|
2891 |
+
|
2892 |
+
#: views/payments/payment-gateway/admin_stripe_buy_now_button.php:29
|
2893 |
+
#: views/payments/payment-gateway/admin_stripe_buy_now_button.php:250
|
2894 |
+
msgid "Stripe Buy Now Button Configuration"
|
2895 |
+
msgstr "Konfiguracja przycisku \"Kup teraz \" Stripe'a"
|
2896 |
+
|
2897 |
+
#: views/payments/payment-gateway/admin_stripe_buy_now_button.php:104
|
2898 |
+
#: views/payments/payment-gateway/admin_stripe_buy_now_button.php:328
|
2899 |
+
msgid "Stripe API keys. You can get this from your Stripe account."
|
2900 |
+
msgstr "Klucze API Stripe. Możesz je uzyskać ze swojego konta Stripe."
|
2901 |
+
|
2902 |
+
#: views/payments/payment-gateway/admin_stripe_buy_now_button.php:108
|
2903 |
+
#: views/payments/payment-gateway/admin_stripe_buy_now_button.php:332
|
2904 |
+
#: views/payments/payment-gateway/admin_stripe_subscription_button.php:131
|
2905 |
+
msgid "Test Publishable Key"
|
2906 |
+
msgstr "Testowy klucz publiczny"
|
2907 |
+
|
2908 |
+
#: views/payments/payment-gateway/admin_stripe_buy_now_button.php:115
|
2909 |
+
#: views/payments/payment-gateway/admin_stripe_buy_now_button.php:339
|
2910 |
+
#: views/payments/payment-gateway/admin_stripe_subscription_button.php:139
|
2911 |
+
msgid "Test Secret Key"
|
2912 |
+
msgstr "Testowy klucz prywatny"
|
2913 |
+
|
2914 |
+
#: views/payments/payment-gateway/admin_stripe_buy_now_button.php:122
|
2915 |
+
#: views/payments/payment-gateway/admin_stripe_buy_now_button.php:346
|
2916 |
+
#: views/payments/payment-gateway/admin_stripe_subscription_button.php:147
|
2917 |
+
msgid "Live Publishable Key"
|
2918 |
+
msgstr "Produkcyjny klucz publiczny"
|
2919 |
+
|
2920 |
+
#: views/payments/payment-gateway/admin_stripe_buy_now_button.php:129
|
2921 |
+
#: views/payments/payment-gateway/admin_stripe_buy_now_button.php:353
|
2922 |
+
#: views/payments/payment-gateway/admin_stripe_subscription_button.php:155
|
2923 |
+
msgid "Live Secret Key"
|
2924 |
+
msgstr "Sekretny klucz"
|
2925 |
+
|
2926 |
+
#: views/payments/payment-gateway/admin_stripe_buy_now_button.php:141
|
2927 |
+
#: views/payments/payment-gateway/admin_stripe_buy_now_button.php:365
|
2928 |
+
#: views/payments/payment-gateway/admin_stripe_subscription_button.php:183
|
2929 |
+
msgid "Collect Customer Address"
|
2930 |
+
msgstr "Pobierz adres klienta"
|
2931 |
+
|
2932 |
+
#: views/payments/payment-gateway/admin_stripe_subscription_button.php:75
|
2933 |
+
msgid "Stripe Subscription Button Configuration"
|
2934 |
+
msgstr "Czas trwania subskrypcji"
|
2935 |
+
|
2936 |
+
#: views/payments/payment-gateway/admin_stripe_subscription_button.php:109
|
2937 |
+
msgid "Stripe Plan ID"
|
2938 |
+
msgstr "Identyfikator planu paskowego"
|
2939 |
+
|
2940 |
+
#: views/payments/payment-gateway/admin_stripe_subscription_button.php:125
|
2941 |
+
msgid "Stripe API Settings"
|
2942 |
+
msgstr "Ustawienia API Stripe"
|
2943 |
+
|
2944 |
+
#: views/payments/payment-gateway/admin_stripe_subscription_button.php:163
|
2945 |
+
msgid "Webook Endpoint URL"
|
2946 |
+
msgstr "Adres URL punktu końcowego Webooka"
|
2947 |
+
|
2948 |
+
#: views/payments/payment-gateway/braintree_button_shortcode_view.php:20
|
2949 |
+
#: views/payments/payment-gateway/paypal_button_shortcode_view.php:91
|
2950 |
+
#: views/payments/payment-gateway/paypal_button_shortcode_view.php:93
|
2951 |
+
#: views/payments/payment-gateway/paypal_smart_checkout_button_shortcode_view.php:15
|
2952 |
+
#: views/payments/payment-gateway/stripe_button_shortcode_view.php:20
|
2953 |
+
#: views/payments/payment-gateway/stripe_button_shortcode_view.php:150
|
2954 |
+
msgid "Buy Now"
|
2955 |
+
msgstr "Kup teraz"
|
2956 |
+
|
2957 |
+
#: views/payments/payment-gateway/paypal_button_shortcode_view.php:226
|
2958 |
+
#: views/payments/payment-gateway/paypal_button_shortcode_view.php:228
|
2959 |
+
msgid "Subscribe Now"
|
2960 |
+
msgstr "Przyłącz się"
|
2961 |
+
|
2962 |
+
#: views/payments/payment-gateway/paypal_smart_checkout_button_shortcode_view.php:137
|
2963 |
+
msgid "Error occured during PayPal Smart Checkout process."
|
2964 |
+
msgstr "Błąd wystąpił podczas procesu płatności PayPal Smart Checkout."
|
2965 |
+
|
2966 |
+
#: views/payments/payment-gateway/paypal_smart_checkout_button_shortcode_view.php:165
|
2967 |
+
msgid "HTTP error occured during payment process:"
|
2968 |
+
msgstr "Błąd HTTP wystąpił podczas procesu płatności:"
|
2969 |
+
|
2970 |
+
#: Translation strings from addons === Form builder addon
|
2971 |
+
msgid "Type password here"
|
2972 |
+
msgstr "Wpisz tutaj hasło"
|
2973 |
+
|
2974 |
+
msgid "Retype password here"
|
2975 |
+
msgstr "Wpisz tutaj hasło ponownie"
|
2976 |
+
|
2977 |
+
msgid "Registration is complete. You can now log into the site."
|
2978 |
+
msgstr "Rejestracja jest zakończona. Teraz możesz zalogować się na stronie."
|
2979 |
+
|
2980 |
+
msgid " Field has invalid character"
|
2981 |
+
msgstr " Pole ma nieprawidłowy znak"
|
2982 |
+
|
2983 |
+
msgid " Password does not match"
|
2984 |
+
msgstr " Hasło nie pasuje"
|
2985 |
+
|
2986 |
+
msgid "Already taken."
|
2987 |
+
msgstr "Już zajęte."
|
2988 |
+
|
2989 |
+
msgid "Street Address"
|
2990 |
+
msgstr "Ulica i numer"
|
2991 |
+
|
2992 |
+
msgid "Apt, Suite, Bldg. (optional)"
|
2993 |
+
msgstr "Apt, Suite, Bldg. (nieobowiązkowo)"
|
2994 |
+
|
2995 |
+
msgid "State / Province / Region"
|
2996 |
+
msgstr "Województwo / Prowincja / Region"
|
2997 |
+
|
2998 |
+
msgid "Postal / Zip Code"
|
2999 |
+
msgstr "Poczta / kod pocztowy"
|
3000 |
|
3001 |
+
msgid ""
|
3002 |
+
"Check this box to delete the image. The image will be deleted when you save "
|
3003 |
+
"the profile."
|
3004 |
+
msgstr ""
|
3005 |
+
"Zaznacz to pole, aby usunąć zdjęcie. Obraz zostanie usunięty po zapisaniu "
|
3006 |
+
"profilu."
|
3007 |
|
3008 |
+
msgid "You will need to re-login since you changed your password."
|
3009 |
+
msgstr "Musisz się ponownie zalogować, ponieważ zmieniłeś hasło."
|
|
|
3010 |
|
3011 |
+
msgid ""
|
3012 |
+
"Please enter any two digits with <strong>no</strong> spaces (Example: 12)"
|
3013 |
+
msgstr ""
|
3014 |
+
"Proszę podać jakiekolwiek dwie cyfry <strong>bez</strong> spacji (Przykład: "
|
3015 |
+
"12)"
|
3016 |
|
3017 |
+
msgid "Verification"
|
3018 |
+
msgstr "Weryfikacja"
|
|
|
3019 |
|
3020 |
+
msgid "Please enter any two digits with no spaces (Example: 12)*"
|
3021 |
+
msgstr "Proszę wpisać dowolne dwie cyfry bez spacji (przykład: 12)*"
|
|
|
3022 |
|
3023 |
+
msgid "Username can only contain: letters, numbers and .-*@"
|
3024 |
+
msgstr "Nazwa użytkownika może zawierać tylko: litery, cyfry i .-*@"
|
|
|
3025 |
|
3026 |
+
#: === Partial protection addon strings
|
3027 |
+
msgid "You do not have permission to view this content."
|
3028 |
+
msgstr "Nie masz uprawnień do przeglądania tej zawartości."
|
3029 |
|
3030 |
+
msgid "Your membership level does not have permission to view this content."
|
3031 |
+
msgstr ""
|
3032 |
+
"Twój poziom członkostwa nie ma uprawnień do przeglądania tej zawartości."
|
3033 |
|
3034 |
+
msgid "This content is for members only."
|
3035 |
+
msgstr "Ta zawartość jest przeznaczona wyłącznie dla członków."
|
|
|
3036 |
|
3037 |
+
#: === Member Directory Listing addon strings swpm-member-directory-admin.php:9
|
3038 |
+
msgid "Member Directory"
|
3039 |
+
msgstr "Lista członków"
|
3040 |
|
3041 |
+
#: includes/swpm_mda_show_profile.php:26
|
3042 |
+
msgid "Member ID"
|
3043 |
+
msgstr "ID użytkownika"
|
3044 |
|
3045 |
+
#: includes/swpm_mda_show_profile.php:30
|
3046 |
+
msgid "Level"
|
3047 |
+
msgstr "Poziom"
|
3048 |
|
3049 |
+
#: includes/swpm_mda_show_profile.php:32
|
3050 |
+
msgid "Address"
|
3051 |
+
msgstr "Adres"
|
3052 |
|
3053 |
+
#: views/template-1.php:52 views/template-2.php:53
|
3054 |
+
msgid "Search..."
|
3055 |
+
msgstr "Szukaj..."
|
3056 |
|
3057 |
+
#: views/template-1.php:60 views/template-2.php:62
|
3058 |
+
msgid "Clear Search"
|
3059 |
+
msgstr "Wyczyść wyszukiwanie"
|
languages/simple-membership.pot
CHANGED
@@ -1,139 +1,152 @@
|
|
|
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Simple Membership\n"
|
4 |
-
"POT-Creation-Date:
|
5 |
-
"PO-Revision-Date:
|
6 |
"Last-Translator: \n"
|
7 |
"Language-Team: \n"
|
8 |
"MIME-Version: 1.0\n"
|
9 |
"Content-Type: text/plain; charset=UTF-8\n"
|
10 |
"Content-Transfer-Encoding: 8bit\n"
|
11 |
-
"X-Generator: Poedit
|
12 |
"X-Poedit-KeywordsList: __;_e;e\n"
|
13 |
"X-Poedit-Basepath: .\n"
|
14 |
"X-Poedit-SearchPath-0: .\n"
|
15 |
|
16 |
-
#: classes/class.simple-wp-membership.php:
|
17 |
msgid "The admin of this site does not allow users to access the wp dashboard."
|
18 |
msgstr ""
|
19 |
|
20 |
-
#: classes/class.simple-wp-membership.php:
|
21 |
msgid "Go back to the home page by "
|
22 |
msgstr ""
|
23 |
|
24 |
-
#: classes/class.simple-wp-membership.php:
|
25 |
msgid "clicking here"
|
26 |
msgstr ""
|
27 |
|
28 |
-
#: classes/class.simple-wp-membership.php:
|
29 |
msgid ""
|
30 |
"Error! This site has the force WP user login feature enabled in the "
|
31 |
"settings. We could not find a WP user record for the given username: "
|
32 |
msgstr ""
|
33 |
|
34 |
-
#: classes/class.simple-wp-membership.php:
|
35 |
msgid ""
|
36 |
"This error is triggered when a member account doesn't have a corresponding "
|
37 |
"WP user account. So the plugin fails to log the user into the WP User system."
|
38 |
msgstr ""
|
39 |
|
40 |
-
#: classes/class.simple-wp-membership.php:
|
41 |
msgid ""
|
42 |
"Contact the site admin and request them to check your username in the WP "
|
43 |
"Users menu to see what happened with the WP user entry of your account."
|
44 |
msgstr ""
|
45 |
|
46 |
-
#: classes/class.simple-wp-membership.php:
|
47 |
msgid ""
|
48 |
"The site admin can disable the Force WP User Synchronization feature in the "
|
49 |
"settings to disable this feature and this error will go away."
|
50 |
msgstr ""
|
51 |
|
52 |
-
#: classes/class.simple-wp-membership.php:
|
53 |
msgid "You can use the back button of your browser to go back to the site."
|
54 |
msgstr ""
|
55 |
|
56 |
-
#: classes/class.simple-wp-membership.php:
|
57 |
msgid "You are not logged in."
|
58 |
msgstr ""
|
59 |
|
60 |
-
#: classes/class.simple-wp-membership.php:
|
61 |
msgid ""
|
62 |
"You have the sandbox payment mode enabled in plugin settings. Make sure to "
|
63 |
"turn off the sandbox mode when you want to do live transactions."
|
64 |
msgstr ""
|
65 |
|
66 |
-
#: classes/class.simple-wp-membership.php:
|
67 |
msgid "Simple WP Membership Protection"
|
68 |
msgstr ""
|
69 |
|
70 |
-
#: classes/class.simple-wp-membership.php:
|
71 |
msgid "Simple Membership Protection options"
|
72 |
msgstr ""
|
73 |
|
74 |
-
#: classes/class.simple-wp-membership.php:
|
75 |
msgid "Do you want to protect this content?"
|
76 |
msgstr ""
|
77 |
|
78 |
-
#: classes/class.simple-wp-membership.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
79 |
msgid "Select the membership level that can access this content:"
|
80 |
msgstr ""
|
81 |
|
82 |
-
#: classes/class.simple-wp-membership.php:
|
83 |
-
#: classes/class.simple-wp-membership.php:
|
84 |
msgid "Validating, please wait"
|
85 |
msgstr ""
|
86 |
|
87 |
-
#: classes/class.simple-wp-membership.php:
|
88 |
msgid "Invalid email address"
|
89 |
msgstr ""
|
90 |
|
91 |
-
#: classes/class.simple-wp-membership.php:
|
92 |
msgid "This field is required"
|
93 |
msgstr ""
|
94 |
|
95 |
-
#: classes/class.simple-wp-membership.php:
|
96 |
msgid "Invalid Username"
|
97 |
msgstr ""
|
98 |
|
99 |
-
#: classes/class.simple-wp-membership.php:
|
|
|
|
|
|
|
|
|
100 |
msgid "Minimum "
|
101 |
msgstr ""
|
102 |
|
103 |
-
#: classes/class.simple-wp-membership.php:
|
104 |
msgid " characters required"
|
105 |
msgstr ""
|
106 |
|
107 |
-
#: classes/class.simple-wp-membership.php:
|
108 |
msgid "Apostrophe character is not allowed"
|
109 |
msgstr ""
|
110 |
|
111 |
-
#: classes/class.simple-wp-membership.php:
|
112 |
msgid "WP Membership"
|
113 |
msgstr ""
|
114 |
|
115 |
-
#: classes/class.simple-wp-membership.php:
|
116 |
-
#: classes/class.swpm-members.php:
|
117 |
msgid "Members"
|
118 |
msgstr ""
|
119 |
|
120 |
-
#: classes/class.simple-wp-membership.php:
|
121 |
#: classes/class.swpm-category-list.php:20
|
122 |
#: classes/class.swpm-membership-levels.php:12
|
123 |
-
#: classes/class.swpm-membership-levels.php:
|
124 |
#: classes/class.swpm-post-list.php:21
|
125 |
msgid "Membership Levels"
|
126 |
msgstr ""
|
127 |
|
128 |
-
#: classes/class.simple-wp-membership.php:
|
129 |
msgid "Settings"
|
130 |
msgstr ""
|
131 |
|
132 |
-
#: classes/class.simple-wp-membership.php:
|
133 |
msgid "Payments"
|
134 |
msgstr ""
|
135 |
|
136 |
-
#: classes/class.simple-wp-membership.php:
|
137 |
msgid "Add-ons"
|
138 |
msgstr ""
|
139 |
|
@@ -175,10 +188,10 @@ msgid "Member record added successfully."
|
|
175 |
msgstr ""
|
176 |
|
177 |
#: classes/class.swpm-admin-registration.php:76
|
178 |
-
#: classes/class.swpm-admin-registration.php:
|
179 |
-
#: classes/class.swpm-admin-registration.php:
|
180 |
-
#: classes/class.swpm-membership-level.php:
|
181 |
-
#: classes/class.swpm-membership-level.php:
|
182 |
msgid "Please correct the following:"
|
183 |
msgstr ""
|
184 |
|
@@ -186,7 +199,7 @@ msgstr ""
|
|
186 |
msgid "Error! Nonce verification failed for user edit from admin end."
|
187 |
msgstr ""
|
188 |
|
189 |
-
#: classes/class.swpm-admin-registration.php:
|
190 |
msgid "Your current password"
|
191 |
msgstr ""
|
192 |
|
@@ -206,67 +219,89 @@ msgstr ""
|
|
206 |
msgid "Available"
|
207 |
msgstr ""
|
208 |
|
209 |
-
#: classes/class.swpm-auth.php:
|
210 |
msgid ""
|
211 |
"Warning! Simple Membership plugin cannot process this login request to "
|
212 |
"prevent you from getting logged out of WP Admin accidentally."
|
213 |
msgstr ""
|
214 |
|
215 |
-
#: classes/class.swpm-auth.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
216 |
msgid ""
|
217 |
"You are logged into the site as an ADMIN user in this browser. First, logout "
|
218 |
-
"from WP Admin then you will be able to log in as a member."
|
219 |
msgstr ""
|
220 |
|
221 |
-
#: classes/class.swpm-auth.php:
|
222 |
msgid ""
|
223 |
"Alternatively, you can use a different browser (where you are not logged-in "
|
224 |
"as ADMIN) to test the membership login."
|
225 |
msgstr ""
|
226 |
|
227 |
-
#: classes/class.swpm-auth.php:
|
228 |
msgid ""
|
229 |
"Your normal visitors or members will never see this message. This message is "
|
230 |
"ONLY for ADMIN user."
|
231 |
msgstr ""
|
232 |
|
233 |
-
#: classes/class.swpm-auth.php:
|
234 |
msgid "Captcha validation failed on login form."
|
235 |
msgstr ""
|
236 |
|
237 |
-
#: classes/class.swpm-auth.php:
|
238 |
msgid "User Not Found."
|
239 |
msgstr ""
|
240 |
|
241 |
-
#: classes/class.swpm-auth.php:
|
242 |
msgid "Password Empty or Invalid."
|
243 |
msgstr ""
|
244 |
|
245 |
-
#: classes/class.swpm-auth.php:
|
246 |
msgid "Account is inactive."
|
247 |
msgstr ""
|
248 |
|
249 |
-
#: classes/class.swpm-auth.php:
|
250 |
msgid "Account has expired."
|
251 |
msgstr ""
|
252 |
|
253 |
-
#: classes/class.swpm-auth.php:
|
254 |
msgid "Account is pending."
|
255 |
msgstr ""
|
256 |
|
257 |
-
#: classes/class.swpm-auth.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
258 |
msgid "You are logged in as:"
|
259 |
msgstr ""
|
260 |
|
261 |
-
#: classes/class.swpm-auth.php:
|
262 |
msgid "Logged Out Successfully."
|
263 |
msgstr ""
|
264 |
|
265 |
-
#: classes/class.swpm-auth.php:
|
266 |
msgid "Session Expired."
|
267 |
msgstr ""
|
268 |
|
269 |
-
#: classes/class.swpm-auth.php:
|
270 |
msgid "Please login again."
|
271 |
msgstr ""
|
272 |
|
@@ -275,11 +310,11 @@ msgstr ""
|
|
275 |
#: classes/class.swpm-membership-levels.php:21
|
276 |
#: classes/class.swpm-post-list.php:20
|
277 |
#: classes/admin-includes/class.swpm-payments-list-table.php:85
|
278 |
-
#: views/add.php:
|
279 |
-
#: views/edit.php:66
|
280 |
#: views/payments/payment-gateway/admin_braintree_buy_now_button.php:50
|
281 |
#: views/payments/payment-gateway/admin_paypal_buy_now_button.php:34
|
282 |
#: views/payments/payment-gateway/admin_paypal_buy_now_button.php:229
|
|
|
283 |
#: views/payments/payment-gateway/admin_paypal_subscription_button.php:35
|
284 |
#: views/payments/payment-gateway/admin_paypal_subscription_button.php:317
|
285 |
#: views/payments/payment-gateway/admin_stripe_buy_now_button.php:47
|
@@ -328,79 +363,79 @@ msgstr ""
|
|
328 |
msgid "Comments not allowed by a non-member."
|
329 |
msgstr ""
|
330 |
|
331 |
-
#: classes/class.swpm-form.php:
|
332 |
msgid ""
|
333 |
"Wordpress account exists with given username. But given email doesn't match."
|
334 |
msgstr ""
|
335 |
|
336 |
-
#: classes/class.swpm-form.php:
|
337 |
msgid ""
|
338 |
" Use a different username to complete the registration. If you want to use "
|
339 |
"that username then you must enter the correct email address associated with "
|
340 |
"the existing WP user to connect with that account."
|
341 |
msgstr ""
|
342 |
|
343 |
-
#: classes/class.swpm-form.php:
|
344 |
msgid ""
|
345 |
"Wordpress account exists with given email. But given username doesn't match."
|
346 |
msgstr ""
|
347 |
|
348 |
-
#: classes/class.swpm-form.php:
|
349 |
msgid ""
|
350 |
" Use a different email address to complete the registration. If you want to "
|
351 |
"use that email then you must enter the correct username associated with the "
|
352 |
"existing WP user to connect with that account."
|
353 |
msgstr ""
|
354 |
|
355 |
-
#: classes/class.swpm-form.php:
|
356 |
msgid "Username is required"
|
357 |
msgstr ""
|
358 |
|
359 |
-
#: classes/class.swpm-form.php:
|
360 |
msgid "Username contains invalid character"
|
361 |
msgstr ""
|
362 |
|
363 |
-
#: classes/class.swpm-form.php:
|
364 |
msgid "Username already exists."
|
365 |
msgstr ""
|
366 |
|
367 |
-
#: classes/class.swpm-form.php:
|
368 |
msgid "Password is required"
|
369 |
msgstr ""
|
370 |
|
371 |
-
#: classes/class.swpm-form.php:
|
372 |
msgid "Password mismatch"
|
373 |
msgstr ""
|
374 |
|
375 |
-
#: classes/class.swpm-form.php:
|
376 |
msgid "Email is required"
|
377 |
msgstr ""
|
378 |
|
379 |
-
#: classes/class.swpm-form.php:
|
380 |
msgid "Email is invalid"
|
381 |
msgstr ""
|
382 |
|
383 |
-
#: classes/class.swpm-form.php:
|
384 |
msgid "Email is already used."
|
385 |
msgstr ""
|
386 |
|
387 |
-
#: classes/class.swpm-form.php:
|
388 |
msgid "Member since field is invalid"
|
389 |
msgstr ""
|
390 |
|
391 |
-
#: classes/class.swpm-form.php:
|
392 |
msgid "Access starts field is invalid"
|
393 |
msgstr ""
|
394 |
|
395 |
-
#: classes/class.swpm-form.php:
|
396 |
msgid "Gender field is invalid"
|
397 |
msgstr ""
|
398 |
|
399 |
-
#: classes/class.swpm-form.php:
|
400 |
msgid "Account state field is invalid"
|
401 |
msgstr ""
|
402 |
|
403 |
-
#: classes/class.swpm-form.php:
|
404 |
msgid "Invalid membership level"
|
405 |
msgstr ""
|
406 |
|
@@ -411,7 +446,7 @@ msgid ""
|
|
411 |
msgstr ""
|
412 |
|
413 |
#: classes/class.swpm-front-registration.php:45
|
414 |
-
#: classes/class.swpm-utils-misc.php:
|
415 |
msgid "Join Us"
|
416 |
msgstr ""
|
417 |
|
@@ -434,80 +469,128 @@ msgstr ""
|
|
434 |
msgid "Security check: captcha validation failed."
|
435 |
msgstr ""
|
436 |
|
437 |
-
#: classes/class.swpm-front-registration.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
438 |
msgid "Registration Successful. "
|
439 |
msgstr ""
|
440 |
|
441 |
-
#: classes/class.swpm-front-registration.php:
|
442 |
-
#: classes/class.swpm-utils-misc.php:
|
443 |
msgid "Please"
|
444 |
msgstr ""
|
445 |
|
446 |
-
#: classes/class.swpm-front-registration.php:
|
447 |
-
#: classes/class.swpm-utils-misc.php:
|
448 |
msgid "Login"
|
449 |
msgstr ""
|
450 |
|
451 |
-
#: classes/class.swpm-front-registration.php:
|
452 |
msgid "Please correct the following"
|
453 |
msgstr ""
|
454 |
|
455 |
-
#: classes/class.swpm-front-registration.php:
|
456 |
msgid "Membership Level Couldn't be found."
|
457 |
msgstr ""
|
458 |
|
459 |
-
#: classes/class.swpm-front-registration.php:
|
460 |
msgid "Error! Nonce verification failed for front end profile edit."
|
461 |
msgstr ""
|
462 |
|
463 |
-
#: classes/class.swpm-front-registration.php:
|
464 |
msgid "Profile updated successfully."
|
465 |
msgstr ""
|
466 |
|
467 |
-
#: classes/class.swpm-front-registration.php:
|
468 |
msgid ""
|
469 |
"Profile updated successfully. You will need to re-login since you changed "
|
470 |
"your password."
|
471 |
msgstr ""
|
472 |
|
473 |
-
#: classes/class.swpm-front-registration.php:
|
474 |
msgid "Please correct the following."
|
475 |
msgstr ""
|
476 |
|
477 |
-
#: classes/class.swpm-front-registration.php:
|
478 |
msgid "Captcha validation failed."
|
479 |
msgstr ""
|
480 |
|
481 |
-
#: classes/class.swpm-front-registration.php:
|
482 |
msgid "Email address not valid."
|
483 |
msgstr ""
|
484 |
|
485 |
-
#: classes/class.swpm-front-registration.php:
|
486 |
msgid "No user found with that email address."
|
487 |
msgstr ""
|
488 |
|
489 |
-
#: classes/class.swpm-front-registration.php:
|
490 |
-
#: classes/class.swpm-front-registration.php:
|
491 |
msgid "Email Address: "
|
492 |
msgstr ""
|
493 |
|
494 |
-
#: classes/class.swpm-front-registration.php:
|
495 |
msgid "New password has been sent to your email address."
|
496 |
msgstr ""
|
497 |
|
498 |
-
#: classes/class.swpm-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
499 |
msgid "Sorry, Nonce verification failed."
|
500 |
msgstr ""
|
501 |
|
502 |
-
#: classes/class.swpm-init-time-tasks.php:
|
503 |
msgid "Sorry, Password didn't match."
|
504 |
msgstr ""
|
505 |
|
506 |
-
#: classes/class.swpm-level-form.php:
|
507 |
msgid "Date format is not valid."
|
508 |
msgstr ""
|
509 |
|
510 |
-
#: classes/class.swpm-level-form.php:
|
511 |
msgid "Access duration must be > 0."
|
512 |
msgstr ""
|
513 |
|
@@ -520,140 +603,145 @@ msgstr ""
|
|
520 |
msgid "ID"
|
521 |
msgstr ""
|
522 |
|
523 |
-
#: classes/class.swpm-members.php:20 views/add.php:
|
524 |
-
#: views/admin_edit.php:19 views/edit.php:
|
|
|
525 |
msgid "Username"
|
526 |
msgstr ""
|
527 |
|
528 |
#: classes/class.swpm-members.php:21
|
529 |
#: classes/admin-includes/class.swpm-payments-list-table.php:78
|
530 |
-
#: views/add.php:
|
531 |
-
#: views/edit.php:
|
532 |
msgid "First Name"
|
533 |
msgstr ""
|
534 |
|
535 |
#: classes/class.swpm-members.php:22
|
536 |
#: classes/admin-includes/class.swpm-payments-list-table.php:79
|
537 |
-
#: views/add.php:
|
538 |
-
#: views/edit.php:
|
539 |
msgid "Last Name"
|
540 |
msgstr ""
|
541 |
|
542 |
-
#: classes/class.swpm-members.php:23 views/add.php:
|
|
|
543 |
msgid "Email"
|
544 |
msgstr ""
|
545 |
|
546 |
-
#: classes/class.swpm-members.php:25
|
547 |
-
#: views/admin_member_form_common_part.php:11
|
548 |
msgid "Access Starts"
|
549 |
msgstr ""
|
550 |
|
551 |
-
#: classes/class.swpm-members.php:26
|
552 |
msgid "Account State"
|
553 |
msgstr ""
|
554 |
|
555 |
-
#: classes/class.swpm-members.php:
|
|
|
|
|
|
|
|
|
556 |
#: classes/class.swpm-membership-levels.php:36
|
557 |
#: classes/admin-includes/class.swpm-payment-buttons-list-table.php:94
|
558 |
#: classes/admin-includes/class.swpm-payments-list-table.php:102
|
559 |
msgid "Delete"
|
560 |
msgstr ""
|
561 |
|
562 |
-
#: classes/class.swpm-members.php:
|
563 |
msgid "Set Status to Active"
|
564 |
msgstr ""
|
565 |
|
566 |
-
#: classes/class.swpm-members.php:
|
567 |
msgid "Set Status to Active and Notify"
|
568 |
msgstr ""
|
569 |
|
570 |
-
#: classes/class.swpm-members.php:
|
571 |
msgid "Set Status to Inactive"
|
572 |
msgstr ""
|
573 |
|
574 |
-
#: classes/class.swpm-members.php:
|
575 |
msgid "Set Status to Pending"
|
576 |
msgstr ""
|
577 |
|
578 |
-
#: classes/class.swpm-members.php:
|
579 |
msgid "Set Status to Expired"
|
580 |
msgstr ""
|
581 |
|
582 |
-
#: classes/class.swpm-members.php:
|
583 |
msgid "incomplete"
|
584 |
msgstr ""
|
585 |
|
586 |
-
#: classes/class.swpm-members.php:
|
587 |
msgid "No member found."
|
588 |
msgstr ""
|
589 |
|
590 |
-
#: classes/class.swpm-members.php:
|
591 |
msgid "Error! Nonce verification failed for user delete from admin end."
|
592 |
msgstr ""
|
593 |
|
594 |
-
#: classes/class.swpm-members.php:
|
595 |
msgid "Error! Please select a membership level first."
|
596 |
msgstr ""
|
597 |
|
598 |
-
#: classes/class.swpm-members.php:
|
599 |
msgid "Membership level change operation completed successfully."
|
600 |
msgstr ""
|
601 |
|
602 |
-
#: classes/class.swpm-members.php:
|
603 |
msgid "Access starts date change operation successfully completed."
|
604 |
msgstr ""
|
605 |
|
606 |
-
#: classes/class.swpm-members.php:
|
607 |
msgid "Bulk Update Membership Level of Members"
|
608 |
msgstr ""
|
609 |
|
610 |
-
#: classes/class.swpm-members.php:
|
611 |
msgid ""
|
612 |
"You can manually change the membership level of any member by editing the "
|
613 |
"record from the members menu. "
|
614 |
msgstr ""
|
615 |
|
616 |
-
#: classes/class.swpm-members.php:
|
617 |
msgid ""
|
618 |
"You can use the following option to bulk update the membership level of "
|
619 |
"users who belong to the level you select below."
|
620 |
msgstr ""
|
621 |
|
622 |
-
#: classes/class.swpm-members.php:
|
623 |
msgid "Membership Level: "
|
624 |
msgstr ""
|
625 |
|
626 |
-
#: classes/class.swpm-members.php:
|
627 |
msgid "Select Current Level"
|
628 |
msgstr ""
|
629 |
|
630 |
-
#: classes/class.swpm-members.php:
|
631 |
msgid ""
|
632 |
"Select the current membership level (the membership level of all members who "
|
633 |
"are in this level will be updated)."
|
634 |
msgstr ""
|
635 |
|
636 |
-
#: classes/class.swpm-members.php:
|
637 |
msgid "Level to Change to: "
|
638 |
msgstr ""
|
639 |
|
640 |
-
#: classes/class.swpm-members.php:
|
641 |
msgid "Select Target Level"
|
642 |
msgstr ""
|
643 |
|
644 |
-
#: classes/class.swpm-members.php:
|
645 |
msgid "Select the new membership level."
|
646 |
msgstr ""
|
647 |
|
648 |
-
#: classes/class.swpm-members.php:
|
649 |
msgid "Bulk Change Membership Level"
|
650 |
msgstr ""
|
651 |
|
652 |
-
#: classes/class.swpm-members.php:
|
653 |
msgid "Bulk Update Access Starts Date of Members"
|
654 |
msgstr ""
|
655 |
|
656 |
-
#: classes/class.swpm-members.php:
|
657 |
msgid ""
|
658 |
"The access starts date of a member is set to the day the user registers. "
|
659 |
"This date value is used to calculate how long the member can access your "
|
@@ -661,45 +749,44 @@ msgid ""
|
|
661 |
"level. "
|
662 |
msgstr ""
|
663 |
|
664 |
-
#: classes/class.swpm-members.php:
|
665 |
msgid ""
|
666 |
"You can manually set a specific access starts date value of all members who "
|
667 |
"belong to a particular level using the following option."
|
668 |
msgstr ""
|
669 |
|
670 |
-
#: classes/class.swpm-members.php:
|
671 |
msgid "Select Level"
|
672 |
msgstr ""
|
673 |
|
674 |
-
#: classes/class.swpm-members.php:
|
675 |
msgid ""
|
676 |
"Select the Membership level (the access start date of all members who are in "
|
677 |
"this level will be updated)."
|
678 |
msgstr ""
|
679 |
|
680 |
-
#: classes/class.swpm-members.php:
|
681 |
msgid "Specify the access starts date value."
|
682 |
msgstr ""
|
683 |
|
684 |
-
#: classes/class.swpm-members.php:
|
685 |
msgid "Bulk Change Access Starts Date"
|
686 |
msgstr ""
|
687 |
|
688 |
-
#: classes/class.swpm-members.php:
|
689 |
msgid "Simple WP Membership::Members"
|
690 |
msgstr ""
|
691 |
|
692 |
-
#: classes/class.swpm-members.php:
|
693 |
-
#: classes/class.swpm-membership-levels.php:
|
694 |
-
#: views/admin_members_list.php:43
|
695 |
msgid "Add New"
|
696 |
msgstr ""
|
697 |
|
698 |
-
#: classes/class.swpm-members.php:
|
699 |
msgid "Add Member"
|
700 |
msgstr ""
|
701 |
|
702 |
-
#: classes/class.swpm-members.php:
|
703 |
msgid "Bulk Operation"
|
704 |
msgstr ""
|
705 |
|
@@ -709,16 +796,16 @@ msgid ""
|
|
709 |
"end."
|
710 |
msgstr ""
|
711 |
|
712 |
-
#: classes/class.swpm-membership-level.php:
|
713 |
msgid "Membership Level Creation Successful."
|
714 |
msgstr ""
|
715 |
|
716 |
-
#: classes/class.swpm-membership-level.php:
|
717 |
msgid ""
|
718 |
"Error! Nonce verification failed for membership level edit from admin end."
|
719 |
msgstr ""
|
720 |
|
721 |
-
#: classes/class.swpm-membership-level.php:
|
722 |
msgid "Membership Level Updated Successfully."
|
723 |
msgstr ""
|
724 |
|
@@ -734,34 +821,34 @@ msgstr ""
|
|
734 |
msgid "No membership levels found."
|
735 |
msgstr ""
|
736 |
|
737 |
-
#: classes/class.swpm-membership-levels.php:
|
738 |
msgid ""
|
739 |
"Error! Nonce verification failed for membership level delete from admin end."
|
740 |
msgstr ""
|
741 |
|
742 |
-
#: classes/class.swpm-membership-levels.php:
|
743 |
-
#: views/
|
744 |
-
#: views/
|
745 |
msgid "Search"
|
746 |
msgstr ""
|
747 |
|
748 |
-
#: classes/class.swpm-membership-levels.php:
|
749 |
msgid "Simple WP Membership::Membership Levels"
|
750 |
msgstr ""
|
751 |
|
752 |
-
#: classes/class.swpm-membership-levels.php:
|
753 |
msgid "Add Level"
|
754 |
msgstr ""
|
755 |
|
756 |
-
#: classes/class.swpm-membership-levels.php:
|
757 |
msgid "Manage Content Protection"
|
758 |
msgstr ""
|
759 |
|
760 |
-
#: classes/class.swpm-membership-levels.php:
|
761 |
msgid "Category Protection"
|
762 |
msgstr ""
|
763 |
|
764 |
-
#: classes/class.swpm-membership-levels.php:
|
765 |
msgid "Post and Page Protection"
|
766 |
msgstr ""
|
767 |
|
@@ -802,6 +889,16 @@ msgstr ""
|
|
802 |
msgid "No items found."
|
803 |
msgstr ""
|
804 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
805 |
#: classes/class.swpm-settings.php:26 classes/class.swpm-settings.php:54
|
806 |
msgid "General Settings"
|
807 |
msgstr ""
|
@@ -818,7 +915,7 @@ msgstr ""
|
|
818 |
msgid "Tools"
|
819 |
msgstr ""
|
820 |
|
821 |
-
#: classes/class.swpm-settings.php:30 classes/class.swpm-settings.php:
|
822 |
msgid "Advanced Settings"
|
823 |
msgstr ""
|
824 |
|
@@ -885,12 +982,12 @@ msgstr ""
|
|
885 |
|
886 |
#: classes/class.swpm-settings.php:66
|
887 |
msgid ""
|
888 |
-
"WordPress allows a
|
889 |
"access his profile from the wp dashbaord. Using this option will prevent any "
|
890 |
"non admin users from going to the wp dashboard."
|
891 |
msgstr ""
|
892 |
|
893 |
-
#: classes/class.swpm-settings.php:68
|
894 |
msgid "Default Account Status"
|
895 |
msgstr ""
|
896 |
|
@@ -942,284 +1039,466 @@ msgstr ""
|
|
942 |
msgid "Check this option to enable debug logging."
|
943 |
msgstr ""
|
944 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
945 |
#: classes/class.swpm-settings.php:102
|
946 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
947 |
msgstr ""
|
948 |
|
949 |
#: classes/class.swpm-settings.php:103
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
950 |
msgid "Enable this option if you want to do sandbox payment testing."
|
951 |
msgstr ""
|
952 |
|
953 |
-
#: classes/class.swpm-settings.php:
|
954 |
msgid "Email Settings Overview"
|
955 |
msgstr ""
|
956 |
|
957 |
-
#: classes/class.swpm-settings.php:
|
958 |
msgid "Email Misc. Settings"
|
959 |
msgstr ""
|
960 |
|
961 |
-
#: classes/class.swpm-settings.php:
|
962 |
msgid "From Email Address"
|
963 |
msgstr ""
|
964 |
|
965 |
-
#: classes/class.swpm-settings.php:
|
966 |
msgid "Email Settings (Prompt to Complete Registration )"
|
967 |
msgstr ""
|
968 |
|
969 |
-
#: classes/class.swpm-settings.php:
|
970 |
-
#: classes/class.swpm-settings.php:
|
971 |
-
#: classes/class.swpm-settings.php:
|
972 |
msgid "Email Subject"
|
973 |
msgstr ""
|
974 |
|
975 |
-
#: classes/class.swpm-settings.php:
|
976 |
-
#: classes/class.swpm-settings.php:
|
977 |
-
#: classes/class.swpm-settings.php:
|
978 |
msgid "Email Body"
|
979 |
msgstr ""
|
980 |
|
981 |
-
#: classes/class.swpm-settings.php:
|
982 |
msgid ""
|
983 |
"Enter the email address where you want the admin notification email to be "
|
984 |
"sent to."
|
985 |
msgstr ""
|
986 |
|
987 |
-
#: classes/class.swpm-settings.php:
|
988 |
msgid ""
|
989 |
" You can put multiple email addresses separated by comma (,) in the above "
|
990 |
"field to send the notification to multiple email addresses."
|
991 |
msgstr ""
|
992 |
|
993 |
-
#: classes/class.swpm-settings.php:
|
994 |
msgid "Enter the subject for the admin notification email."
|
995 |
msgstr ""
|
996 |
|
997 |
-
#: classes/class.swpm-settings.php:
|
998 |
msgid ""
|
999 |
"This email will be sent to the admin when a new user completes the "
|
1000 |
"membership registration. Only works if you have enabled the \"Send "
|
1001 |
"Notification to Admin\" option above."
|
1002 |
msgstr ""
|
1003 |
|
1004 |
-
#: classes/class.swpm-settings.php:
|
1005 |
msgid "Email Settings (Registration Complete)"
|
1006 |
msgstr ""
|
1007 |
|
1008 |
-
#: classes/class.swpm-settings.php:
|
1009 |
msgid "Send Notification to Admin"
|
1010 |
msgstr ""
|
1011 |
|
1012 |
-
#: classes/class.swpm-settings.php:
|
1013 |
msgid ""
|
1014 |
"Enable this option if you want the admin to receive a notification when a "
|
1015 |
"member registers."
|
1016 |
msgstr ""
|
1017 |
|
1018 |
-
#: classes/class.swpm-settings.php:
|
1019 |
msgid "Admin Email Address"
|
1020 |
msgstr ""
|
1021 |
|
1022 |
-
#: classes/class.swpm-settings.php:
|
1023 |
msgid "Admin Notification Email Subject"
|
1024 |
msgstr ""
|
1025 |
|
1026 |
-
#: classes/class.swpm-settings.php:
|
1027 |
msgid "Admin Notification Email Body"
|
1028 |
msgstr ""
|
1029 |
|
1030 |
-
#: classes/class.swpm-settings.php:
|
1031 |
msgid "Send Email to Member When Added via Admin Dashboard"
|
1032 |
msgstr ""
|
1033 |
|
1034 |
-
#: classes/class.swpm-settings.php:
|
1035 |
msgid "Email Settings (Password Reset)"
|
1036 |
msgstr ""
|
1037 |
|
1038 |
-
#: classes/class.swpm-settings.php:
|
1039 |
msgid " Email Settings (Account Upgrade Notification)"
|
1040 |
msgstr ""
|
1041 |
|
1042 |
-
#: classes/class.swpm-settings.php:
|
1043 |
msgid " Email Settings (Bulk Account Activate Notification)"
|
1044 |
msgstr ""
|
1045 |
|
1046 |
-
#: classes/class.swpm-settings.php:
|
|
|
|
|
|
|
|
|
1047 |
msgid "Enable Expired Account Login"
|
1048 |
msgstr ""
|
1049 |
|
1050 |
-
#: classes/class.swpm-settings.php:
|
1051 |
msgid ""
|
1052 |
"When enabled, expired members will be able to log into the system but won't "
|
1053 |
"be able to view any protected content. This allows them to easily renew "
|
1054 |
"their account by making another payment."
|
1055 |
msgstr ""
|
1056 |
|
1057 |
-
#: classes/class.swpm-settings.php:
|
1058 |
msgid "Membership Renewal URL"
|
1059 |
msgstr ""
|
1060 |
|
1061 |
-
#: classes/class.swpm-settings.php:
|
1062 |
msgid ""
|
1063 |
"You can create a renewal page for your site. Read <a href=\"https://simple-"
|
1064 |
"membership-plugin.com/creating-membership-renewal-button/\" target=\"_blank"
|
1065 |
"\">this documentation</a> to learn how to create a renewal page."
|
1066 |
msgstr ""
|
1067 |
|
1068 |
-
#: classes/class.swpm-settings.php:
|
1069 |
msgid "After Registration Redirect URL"
|
1070 |
msgstr ""
|
1071 |
|
1072 |
-
#: classes/class.swpm-settings.php:
|
1073 |
msgid ""
|
1074 |
"You can enter an URL here to redirect the members to this page after they "
|
1075 |
"submit the registration form. Read <a href=\"https://simple-membership-"
|
1076 |
-
"plugin.com/configure-registration-redirect-members/\" target
|
1077 |
-
"documentation</a> to learn how to setup after registration
|
|
|
|
|
|
|
|
|
|
|
1078 |
msgstr ""
|
1079 |
|
1080 |
-
#: classes/class.swpm-settings.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1081 |
msgid "Allow Account Deletion"
|
1082 |
msgstr ""
|
1083 |
|
1084 |
-
#: classes/class.swpm-settings.php:
|
1085 |
msgid "Allow users to delete their accounts."
|
1086 |
msgstr ""
|
1087 |
|
1088 |
-
#: classes/class.swpm-settings.php:
|
1089 |
-
msgid "Force
|
1090 |
msgstr ""
|
1091 |
|
1092 |
-
#: classes/class.swpm-settings.php:
|
1093 |
msgid ""
|
1094 |
-
"Enable this
|
1095 |
-
"
|
1096 |
-
"that uses WP user records. For example: bbPress plugin."
|
1097 |
msgstr ""
|
1098 |
|
1099 |
-
#: classes/class.swpm-settings.php:
|
1100 |
msgid "Use WordPress Timezone"
|
1101 |
msgstr ""
|
1102 |
|
1103 |
-
#: classes/class.swpm-settings.php:
|
1104 |
msgid ""
|
1105 |
"Use this option if you want to use the timezone value specified in your "
|
1106 |
"WordPress General Settings interface."
|
1107 |
msgstr ""
|
1108 |
|
1109 |
-
#: classes/class.swpm-settings.php:
|
1110 |
msgid "Auto Delete Pending Account"
|
1111 |
msgstr ""
|
1112 |
|
1113 |
-
#: classes/class.swpm-settings.php:
|
1114 |
msgid "Select how long you want to keep \"pending\" account."
|
1115 |
msgstr ""
|
1116 |
|
1117 |
-
#: classes/class.swpm-settings.php:
|
1118 |
msgid "Admin Dashboard Access Permission"
|
1119 |
msgstr ""
|
1120 |
|
1121 |
-
#: classes/class.swpm-settings.php:
|
1122 |
msgid ""
|
1123 |
"SWPM admin dashboard is accessible to admin users only (just like any other "
|
1124 |
"plugin). You can allow users with other WP user role to access the SWPM "
|
1125 |
"admin dashboard by selecting a value here."
|
1126 |
msgstr ""
|
1127 |
|
1128 |
-
#: classes/class.swpm-settings.php:
|
1129 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1130 |
msgid "Settings updated!"
|
1131 |
msgstr ""
|
1132 |
|
1133 |
-
#: classes/class.swpm-settings.php:
|
1134 |
msgid "General Plugin Settings."
|
1135 |
msgstr ""
|
1136 |
|
1137 |
-
#: classes/class.swpm-settings.php:
|
1138 |
msgid "Page Setup and URL Related settings."
|
1139 |
msgstr ""
|
1140 |
|
1141 |
-
#: classes/class.swpm-settings.php:
|
1142 |
msgid ""
|
1143 |
"The following pages are required for the plugin to function correctly. These "
|
1144 |
"pages were automatically created by the plugin at install time."
|
1145 |
msgstr ""
|
1146 |
|
1147 |
-
#: classes/class.swpm-settings.php:
|
1148 |
msgid "Testing and Debug Related Settings."
|
1149 |
msgstr ""
|
1150 |
|
1151 |
-
#: classes/class.swpm-settings.php:
|
1152 |
msgid ""
|
1153 |
"This email will be sent to your users when they complete the registration "
|
1154 |
"and become a member."
|
1155 |
msgstr ""
|
1156 |
|
1157 |
-
#: classes/class.swpm-settings.php:
|
1158 |
msgid ""
|
1159 |
"This email will be sent to your users when they use the password reset "
|
1160 |
"functionality."
|
1161 |
msgstr ""
|
1162 |
|
1163 |
-
#: classes/class.swpm-settings.php:
|
1164 |
msgid ""
|
1165 |
"This interface lets you custsomize the various emails that gets sent to your "
|
1166 |
"members for various actions. The default settings should be good to get your "
|
1167 |
"started."
|
1168 |
msgstr ""
|
1169 |
|
1170 |
-
#: classes/class.swpm-settings.php:
|
1171 |
msgid "This documentation"
|
1172 |
msgstr ""
|
1173 |
|
1174 |
-
#: classes/class.swpm-settings.php:
|
1175 |
msgid ""
|
1176 |
" explains what email merge tags you can use in the email body field to "
|
1177 |
"customize it (if you want to)."
|
1178 |
msgstr ""
|
1179 |
|
1180 |
-
#: classes/class.swpm-settings.php:
|
1181 |
msgid "Settings in this section apply to all emails."
|
1182 |
msgstr ""
|
1183 |
|
1184 |
-
#: classes/class.swpm-settings.php:
|
1185 |
msgid ""
|
1186 |
"This email will be sent to your users after account upgrade (when an "
|
1187 |
"existing member pays for a new membership level)."
|
1188 |
msgstr ""
|
1189 |
|
1190 |
-
#: classes/class.swpm-settings.php:
|
1191 |
msgid ""
|
1192 |
"This email will be sent to your members when you use the bulk account "
|
1193 |
"activate and notify action."
|
1194 |
msgstr ""
|
1195 |
|
1196 |
-
#: classes/class.swpm-settings.php:
|
1197 |
msgid ""
|
1198 |
" You cannot use email merge tags in this email. You can only use generic "
|
1199 |
"text."
|
1200 |
msgstr ""
|
1201 |
|
1202 |
-
#: classes/class.swpm-settings.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
1203 |
msgid ""
|
1204 |
"This email will be sent to prompt users to complete registration after the "
|
1205 |
"payment."
|
1206 |
msgstr ""
|
1207 |
|
1208 |
-
#: classes/class.swpm-settings.php:
|
1209 |
msgid "This page allows you to configure some advanced features of the plugin."
|
1210 |
msgstr ""
|
1211 |
|
1212 |
-
#: classes/class.swpm-settings.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1213 |
msgid "Simple WP Membership::Settings"
|
1214 |
msgstr ""
|
1215 |
|
1216 |
-
#: classes/class.swpm-utils-member.php:
|
1217 |
-
#: classes/class.swpm-utils-member.php:
|
1218 |
-
#: classes/class.swpm-utils-member.php:
|
1219 |
-
#: classes/class.swpm-utils-member.php:
|
1220 |
msgid "User is not logged in."
|
1221 |
msgstr ""
|
1222 |
|
|
|
|
|
|
|
|
|
1223 |
#: classes/class.swpm-utils-misc.php:50
|
1224 |
msgid "Registration"
|
1225 |
msgstr ""
|
@@ -1229,6 +1508,7 @@ msgid "Member Login"
|
|
1229 |
msgstr ""
|
1230 |
|
1231 |
#: classes/class.swpm-utils-misc.php:96
|
|
|
1232 |
msgid "Profile"
|
1233 |
msgstr ""
|
1234 |
|
@@ -1236,23 +1516,33 @@ msgstr ""
|
|
1236 |
msgid "Password Reset"
|
1237 |
msgstr ""
|
1238 |
|
1239 |
-
#: classes/class.swpm-utils-misc.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1240 |
msgid "Not a Member?"
|
1241 |
msgstr ""
|
1242 |
|
1243 |
-
#: classes/class.swpm-utils-misc.php:
|
1244 |
msgid "renew"
|
1245 |
msgstr ""
|
1246 |
|
1247 |
-
#: classes/class.swpm-utils-misc.php:
|
1248 |
msgid " your account to gain access to this content."
|
1249 |
msgstr ""
|
1250 |
|
1251 |
-
#: classes/class.swpm-utils-misc.php:
|
1252 |
msgid "Error! This action ("
|
1253 |
msgstr ""
|
1254 |
|
1255 |
-
#: classes/class.swpm-utils-misc.php:
|
1256 |
msgid "(Please Select)"
|
1257 |
msgstr ""
|
1258 |
|
@@ -1260,27 +1550,31 @@ msgstr ""
|
|
1260 |
msgid "Error! Failed to find a template path for the specified template: "
|
1261 |
msgstr ""
|
1262 |
|
1263 |
-
#: classes/class.swpm-utils.php:
|
1264 |
msgid "Never"
|
1265 |
msgstr ""
|
1266 |
|
1267 |
-
#: classes/class.swpm-utils.php:
|
1268 |
msgid "Active"
|
1269 |
msgstr ""
|
1270 |
|
1271 |
-
#: classes/class.swpm-utils.php:
|
1272 |
msgid "Inactive"
|
1273 |
msgstr ""
|
1274 |
|
1275 |
-
#: classes/class.swpm-utils.php:
|
|
|
|
|
|
|
|
|
1276 |
msgid "Pending"
|
1277 |
msgstr ""
|
1278 |
|
1279 |
-
#: classes/class.swpm-utils.php:
|
1280 |
msgid "Expired"
|
1281 |
msgstr ""
|
1282 |
|
1283 |
-
#: classes/class.swpm-utils.php:
|
1284 |
msgid "Delete Account"
|
1285 |
msgstr ""
|
1286 |
|
@@ -1328,6 +1622,7 @@ msgid "Create New Button"
|
|
1328 |
msgstr ""
|
1329 |
|
1330 |
#: classes/admin-includes/class.swpm-payments-list-table.php:57
|
|
|
1331 |
msgid "View Profile"
|
1332 |
msgstr ""
|
1333 |
|
@@ -1356,41 +1651,46 @@ msgstr ""
|
|
1356 |
msgid "Amount"
|
1357 |
msgstr ""
|
1358 |
|
1359 |
-
#: classes/shortcode-related/class.swpm-shortcodes-handler.php:
|
1360 |
msgid "Your membership profile will be updated to reflect the payment."
|
1361 |
msgstr ""
|
1362 |
|
1363 |
-
#: classes/shortcode-related/class.swpm-shortcodes-handler.php:
|
1364 |
msgid "Your profile username: "
|
1365 |
msgstr ""
|
1366 |
|
1367 |
-
#: classes/shortcode-related/class.swpm-shortcodes-handler.php:
|
1368 |
msgid "Click on the following link to complete the registration."
|
1369 |
msgstr ""
|
1370 |
|
1371 |
-
#: classes/shortcode-related/class.swpm-shortcodes-handler.php:
|
1372 |
msgid "Click here to complete your paid registration"
|
1373 |
msgstr ""
|
1374 |
|
1375 |
-
#: classes/shortcode-related/class.swpm-shortcodes-handler.php:
|
1376 |
msgid ""
|
1377 |
"If you have just made a membership payment then your payment is yet to be "
|
1378 |
"processed. Please check back in a few minutes. An email will be sent to you "
|
1379 |
"with the details shortly."
|
1380 |
msgstr ""
|
1381 |
|
1382 |
-
#: classes/shortcode-related/class.swpm-shortcodes-handler.php:
|
1383 |
msgid "Expiry: "
|
1384 |
msgstr ""
|
1385 |
|
1386 |
-
#: classes/shortcode-related/class.swpm-shortcodes-handler.php:
|
1387 |
msgid "You are not logged-in as a member"
|
1388 |
msgstr ""
|
1389 |
|
1390 |
-
#: classes/shortcode-related/class.swpm-shortcodes-handler.php:
|
1391 |
msgid "Logged in as: "
|
1392 |
msgstr ""
|
1393 |
|
|
|
|
|
|
|
|
|
|
|
1394 |
#: classes/shortcode-related/class.swpm-shortcodes-handler.php:121
|
1395 |
msgid "Login Here"
|
1396 |
msgstr ""
|
@@ -1403,16 +1703,75 @@ msgstr ""
|
|
1403 |
msgid "Join Now"
|
1404 |
msgstr ""
|
1405 |
|
1406 |
-
#:
|
1407 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1408 |
msgid "Password"
|
1409 |
msgstr ""
|
1410 |
|
1411 |
-
#: views/add.php:
|
1412 |
msgid "Repeat Password"
|
1413 |
msgstr ""
|
1414 |
|
1415 |
-
#: views/add.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1416 |
msgid "Register"
|
1417 |
msgstr ""
|
1418 |
|
@@ -1520,7 +1879,32 @@ msgstr ""
|
|
1520 |
msgid "(Access expires on a fixed date)"
|
1521 |
msgstr ""
|
1522 |
|
1523 |
-
#: views/admin_add_level.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1524 |
msgid "Add New Membership Level "
|
1525 |
msgstr ""
|
1526 |
|
@@ -1542,12 +1926,24 @@ msgid ""
|
|
1542 |
"membership level)."
|
1543 |
msgstr ""
|
1544 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1545 |
#: views/admin_category_list.php:17 views/admin_post_list.php:27
|
1546 |
msgid "Membership Level:"
|
1547 |
msgstr ""
|
1548 |
|
|
|
|
|
|
|
|
|
1549 |
#: views/admin_category_list.php:23 views/admin_post_list.php:33
|
1550 |
-
#: views/edit.php:
|
1551 |
msgid "Update"
|
1552 |
msgstr ""
|
1553 |
|
@@ -1567,31 +1963,51 @@ msgstr ""
|
|
1567 |
msgid "(twice, leave empty to retain old password)"
|
1568 |
msgstr ""
|
1569 |
|
|
|
|
|
|
|
|
|
|
|
|
|
1570 |
#: views/admin_edit.php:60
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1571 |
msgid "Notify User"
|
1572 |
msgstr ""
|
1573 |
|
1574 |
-
#: views/admin_edit.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
1575 |
msgid "Subscriber ID/Reference"
|
1576 |
msgstr ""
|
1577 |
|
1578 |
-
#: views/admin_edit.php:
|
1579 |
msgid "Last Accessed Date"
|
1580 |
msgstr ""
|
1581 |
|
1582 |
-
#: views/admin_edit.php:
|
1583 |
msgid "This value gets updated when this member logs into your site."
|
1584 |
msgstr ""
|
1585 |
|
1586 |
-
#: views/admin_edit.php:
|
1587 |
msgid "Last Accessed From IP"
|
1588 |
msgstr ""
|
1589 |
|
1590 |
-
#: views/admin_edit.php:
|
1591 |
msgid "Save Data"
|
1592 |
msgstr ""
|
1593 |
|
1594 |
-
#: views/admin_edit.php:
|
1595 |
msgid "Delete User Profile"
|
1596 |
msgstr ""
|
1597 |
|
@@ -1616,7 +2032,14 @@ msgstr ""
|
|
1616 |
msgid "Weeks (Access expires after given number of weeks)"
|
1617 |
msgstr ""
|
1618 |
|
1619 |
-
#: views/admin_edit_level.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1620 |
msgid "Save Membership Level "
|
1621 |
msgstr ""
|
1622 |
|
@@ -1628,43 +2051,48 @@ msgstr ""
|
|
1628 |
msgid "All"
|
1629 |
msgstr ""
|
1630 |
|
1631 |
-
#: views/admin_members_list.php:
|
1632 |
msgid "Incomplete"
|
1633 |
msgstr ""
|
1634 |
|
1635 |
#: views/admin_member_form_common_part.php:23
|
|
|
1636 |
msgid "Gender"
|
1637 |
msgstr ""
|
1638 |
|
1639 |
-
#: views/admin_member_form_common_part.php:30 views/edit.php:
|
|
|
1640 |
msgid "Phone"
|
1641 |
msgstr ""
|
1642 |
|
1643 |
-
#: views/admin_member_form_common_part.php:34 views/edit.php:
|
1644 |
msgid "Street"
|
1645 |
msgstr ""
|
1646 |
|
1647 |
-
#: views/admin_member_form_common_part.php:38 views/edit.php:
|
1648 |
msgid "City"
|
1649 |
msgstr ""
|
1650 |
|
1651 |
-
#: views/admin_member_form_common_part.php:42 views/edit.php:
|
1652 |
msgid "State"
|
1653 |
msgstr ""
|
1654 |
|
1655 |
-
#: views/admin_member_form_common_part.php:46 views/edit.php:
|
1656 |
msgid "Zipcode"
|
1657 |
msgstr ""
|
1658 |
|
1659 |
-
#: views/admin_member_form_common_part.php:50 views/edit.php:
|
|
|
1660 |
msgid "Country"
|
1661 |
msgstr ""
|
1662 |
|
1663 |
#: views/admin_member_form_common_part.php:54
|
|
|
1664 |
msgid "Company"
|
1665 |
msgstr ""
|
1666 |
|
1667 |
#: views/admin_member_form_common_part.php:58
|
|
|
1668 |
msgid "Member Since"
|
1669 |
msgstr ""
|
1670 |
|
@@ -1682,6 +2110,14 @@ msgid ""
|
|
1682 |
"membership level)."
|
1683 |
msgstr ""
|
1684 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1685 |
#: views/admin_post_list.php:21
|
1686 |
msgid "Posts"
|
1687 |
msgstr ""
|
@@ -1694,60 +2130,78 @@ msgstr ""
|
|
1694 |
msgid "Custom Posts"
|
1695 |
msgstr ""
|
1696 |
|
1697 |
-
#: views/admin_tools_settings.php:
|
|
|
|
|
|
|
|
|
1698 |
msgid "Generate a Registration Completion link"
|
1699 |
msgstr ""
|
1700 |
|
1701 |
-
#: views/admin_tools_settings.php:
|
1702 |
msgid ""
|
1703 |
"You can manually generate a registration completion link here and give it to "
|
1704 |
"your customer if they have missed the email that was automatically sent out "
|
1705 |
"to them after the payment."
|
1706 |
msgstr ""
|
1707 |
|
1708 |
-
#: views/admin_tools_settings.php:
|
1709 |
msgid "Generate Registration Completion Link"
|
1710 |
msgstr ""
|
1711 |
|
1712 |
-
#: views/admin_tools_settings.php:
|
1713 |
msgid "For a Particular Member ID"
|
1714 |
msgstr ""
|
1715 |
|
1716 |
-
#: views/admin_tools_settings.php:
|
1717 |
msgid "OR"
|
1718 |
msgstr ""
|
1719 |
|
1720 |
-
#: views/admin_tools_settings.php:
|
1721 |
msgid "For All Incomplete Registrations"
|
1722 |
msgstr ""
|
1723 |
|
1724 |
-
#: views/admin_tools_settings.php:
|
1725 |
msgid "Send Registration Reminder Email Too"
|
1726 |
msgstr ""
|
1727 |
|
1728 |
-
#: views/admin_tools_settings.php:
|
1729 |
msgid "Submit"
|
1730 |
msgstr ""
|
1731 |
|
1732 |
-
#: views/admin_tools_settings.php:
|
1733 |
msgid ""
|
1734 |
"Link(s) generated successfully. The following link(s) can be used to "
|
1735 |
"complete the registration."
|
1736 |
msgstr ""
|
1737 |
|
1738 |
-
#: views/admin_tools_settings.php:
|
1739 |
msgid "Registration completion links will appear below"
|
1740 |
msgstr ""
|
1741 |
|
1742 |
-
#: views/admin_tools_settings.php:
|
1743 |
msgid "A prompt to complete registration email was also sent."
|
1744 |
msgstr ""
|
1745 |
|
1746 |
-
#: views/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1747 |
msgid "Leave empty to keep the current password"
|
1748 |
msgstr ""
|
1749 |
|
1750 |
-
#: views/edit.php:
|
1751 |
msgid "Company Name"
|
1752 |
msgstr ""
|
1753 |
|
@@ -1771,10 +2225,6 @@ msgstr ""
|
|
1771 |
msgid "Edit Profile"
|
1772 |
msgstr ""
|
1773 |
|
1774 |
-
#: views/loggedin.php:31
|
1775 |
-
msgid "Logout"
|
1776 |
-
msgstr ""
|
1777 |
-
|
1778 |
#: views/login.php:11
|
1779 |
msgid "Username or Email"
|
1780 |
msgstr ""
|
@@ -1795,40 +2245,44 @@ msgstr ""
|
|
1795 |
msgid "Search for a transaction by using email or name"
|
1796 |
msgstr ""
|
1797 |
|
1798 |
-
#: views/payments/admin_create_payment_buttons.php:
|
1799 |
msgid ""
|
1800 |
"You can create new payment button for your memberships using this interface."
|
1801 |
msgstr ""
|
1802 |
|
1803 |
-
#: views/payments/admin_create_payment_buttons.php:
|
1804 |
msgid "Select Payment Button Type"
|
1805 |
msgstr ""
|
1806 |
|
1807 |
-
#: views/payments/admin_create_payment_buttons.php:
|
1808 |
msgid "PayPal Buy Now"
|
1809 |
msgstr ""
|
1810 |
|
1811 |
-
#: views/payments/admin_create_payment_buttons.php:
|
1812 |
msgid "PayPal Subscription"
|
1813 |
msgstr ""
|
1814 |
|
1815 |
-
#: views/payments/admin_create_payment_buttons.php:
|
|
|
|
|
|
|
|
|
1816 |
msgid "Stripe Buy Now"
|
1817 |
msgstr ""
|
1818 |
|
1819 |
-
#: views/payments/admin_create_payment_buttons.php:
|
1820 |
msgid "Stripe Subscription"
|
1821 |
msgstr ""
|
1822 |
|
1823 |
-
#: views/payments/admin_create_payment_buttons.php:
|
1824 |
msgid "Braintree Buy Now"
|
1825 |
msgstr ""
|
1826 |
|
1827 |
-
#: views/payments/admin_create_payment_buttons.php:
|
1828 |
msgid "Next"
|
1829 |
msgstr ""
|
1830 |
|
1831 |
-
#: views/payments/admin_edit_payment_buttons.php:
|
1832 |
msgid "You can edit a payment button using this interface."
|
1833 |
msgstr ""
|
1834 |
|
@@ -1869,6 +2323,7 @@ msgstr ""
|
|
1869 |
|
1870 |
#: views/payments/payment-gateway/admin_braintree_buy_now_button.php:34
|
1871 |
#: views/payments/payment-gateway/admin_paypal_buy_now_button.php:213
|
|
|
1872 |
#: views/payments/payment-gateway/admin_paypal_subscription_button.php:301
|
1873 |
#: views/payments/payment-gateway/admin_stripe_buy_now_button.php:259
|
1874 |
#: views/payments/payment-gateway/admin_stripe_subscription_button.php:83
|
@@ -1878,6 +2333,7 @@ msgstr ""
|
|
1878 |
#: views/payments/payment-gateway/admin_braintree_buy_now_button.php:42
|
1879 |
#: views/payments/payment-gateway/admin_paypal_buy_now_button.php:26
|
1880 |
#: views/payments/payment-gateway/admin_paypal_buy_now_button.php:221
|
|
|
1881 |
#: views/payments/payment-gateway/admin_paypal_subscription_button.php:27
|
1882 |
#: views/payments/payment-gateway/admin_paypal_subscription_button.php:309
|
1883 |
#: views/payments/payment-gateway/admin_stripe_buy_now_button.php:39
|
@@ -1889,6 +2345,7 @@ msgstr ""
|
|
1889 |
#: views/payments/payment-gateway/admin_braintree_buy_now_button.php:60
|
1890 |
#: views/payments/payment-gateway/admin_paypal_buy_now_button.php:44
|
1891 |
#: views/payments/payment-gateway/admin_paypal_buy_now_button.php:239
|
|
|
1892 |
#: views/payments/payment-gateway/admin_stripe_buy_now_button.php:57
|
1893 |
#: views/payments/payment-gateway/admin_stripe_buy_now_button.php:282
|
1894 |
msgid "Payment Amount"
|
@@ -1925,6 +2382,7 @@ msgstr ""
|
|
1925 |
#: views/payments/payment-gateway/admin_braintree_buy_now_button.php:117
|
1926 |
#: views/payments/payment-gateway/admin_paypal_buy_now_button.php:92
|
1927 |
#: views/payments/payment-gateway/admin_paypal_buy_now_button.php:287
|
|
|
1928 |
#: views/payments/payment-gateway/admin_paypal_subscription_button.php:172
|
1929 |
#: views/payments/payment-gateway/admin_paypal_subscription_button.php:456
|
1930 |
#: views/payments/payment-gateway/admin_stripe_buy_now_button.php:149
|
@@ -1936,6 +2394,7 @@ msgstr ""
|
|
1936 |
#: views/payments/payment-gateway/admin_braintree_buy_now_button.php:127
|
1937 |
#: views/payments/payment-gateway/admin_paypal_buy_now_button.php:126
|
1938 |
#: views/payments/payment-gateway/admin_paypal_buy_now_button.php:321
|
|
|
1939 |
#: views/payments/payment-gateway/admin_paypal_subscription_button.php:200
|
1940 |
#: views/payments/payment-gateway/admin_paypal_subscription_button.php:484
|
1941 |
#: views/payments/payment-gateway/admin_stripe_buy_now_button.php:159
|
@@ -1951,6 +2410,7 @@ msgstr ""
|
|
1951 |
|
1952 |
#: views/payments/payment-gateway/admin_paypal_buy_now_button.php:52
|
1953 |
#: views/payments/payment-gateway/admin_paypal_buy_now_button.php:247
|
|
|
1954 |
#: views/payments/payment-gateway/admin_paypal_subscription_button.php:45
|
1955 |
#: views/payments/payment-gateway/admin_paypal_subscription_button.php:327
|
1956 |
#: views/payments/payment-gateway/admin_stripe_buy_now_button.php:65
|
@@ -1980,6 +2440,138 @@ msgstr ""
|
|
1980 |
msgid "Custom Checkout Page Logo Image"
|
1981 |
msgstr ""
|
1982 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1983 |
#: views/payments/payment-gateway/admin_paypal_subscription_button.php:18
|
1984 |
#: views/payments/payment-gateway/admin_paypal_subscription_button.php:295
|
1985 |
msgid "PayPal Subscription Button Configuration"
|
@@ -2039,26 +2631,26 @@ msgstr ""
|
|
2039 |
|
2040 |
#: views/payments/payment-gateway/admin_stripe_buy_now_button.php:108
|
2041 |
#: views/payments/payment-gateway/admin_stripe_buy_now_button.php:332
|
2042 |
-
#: views/payments/payment-gateway/admin_stripe_subscription_button.php:
|
2043 |
-
msgid "Test
|
2044 |
msgstr ""
|
2045 |
|
2046 |
#: views/payments/payment-gateway/admin_stripe_buy_now_button.php:115
|
2047 |
#: views/payments/payment-gateway/admin_stripe_buy_now_button.php:339
|
2048 |
-
#: views/payments/payment-gateway/admin_stripe_subscription_button.php:
|
2049 |
-
msgid "Test
|
2050 |
msgstr ""
|
2051 |
|
2052 |
#: views/payments/payment-gateway/admin_stripe_buy_now_button.php:122
|
2053 |
#: views/payments/payment-gateway/admin_stripe_buy_now_button.php:346
|
2054 |
-
#: views/payments/payment-gateway/admin_stripe_subscription_button.php:
|
2055 |
-
msgid "Live
|
2056 |
msgstr ""
|
2057 |
|
2058 |
#: views/payments/payment-gateway/admin_stripe_buy_now_button.php:129
|
2059 |
#: views/payments/payment-gateway/admin_stripe_buy_now_button.php:353
|
2060 |
-
#: views/payments/payment-gateway/admin_stripe_subscription_button.php:
|
2061 |
-
msgid "Live
|
2062 |
msgstr ""
|
2063 |
|
2064 |
#: views/payments/payment-gateway/admin_stripe_buy_now_button.php:141
|
@@ -2086,8 +2678,9 @@ msgstr ""
|
|
2086 |
#: views/payments/payment-gateway/braintree_button_shortcode_view.php:20
|
2087 |
#: views/payments/payment-gateway/paypal_button_shortcode_view.php:91
|
2088 |
#: views/payments/payment-gateway/paypal_button_shortcode_view.php:93
|
|
|
2089 |
#: views/payments/payment-gateway/stripe_button_shortcode_view.php:20
|
2090 |
-
#: views/payments/payment-gateway/stripe_button_shortcode_view.php:
|
2091 |
msgid "Buy Now"
|
2092 |
msgstr ""
|
2093 |
|
@@ -2096,33 +2689,15 @@ msgstr ""
|
|
2096 |
msgid "Subscribe Now"
|
2097 |
msgstr ""
|
2098 |
|
2099 |
-
|
2100 |
-
|
2101 |
-
|
2102 |
-
msgid "You are about to delete an account. This will delete user data associated with this account. "
|
2103 |
-
msgstr ""
|
2104 |
-
|
2105 |
-
msgid "It will also delete associated WordPress user account."
|
2106 |
-
msgstr ""
|
2107 |
-
|
2108 |
-
msgid "(NOTE: for safety, we do not allow deletion of any associated WordPress account with administrator role)."
|
2109 |
-
msgstr ""
|
2110 |
-
|
2111 |
-
msgid "Continue?"
|
2112 |
-
msgstr ""
|
2113 |
-
|
2114 |
-
msgid "Password: "
|
2115 |
-
msgstr ""
|
2116 |
-
|
2117 |
-
msgid "Confirm Account Deletion"
|
2118 |
msgstr ""
|
2119 |
|
2120 |
-
|
|
|
2121 |
msgstr ""
|
2122 |
|
2123 |
-
#: Translation strings from addons
|
2124 |
-
|
2125 |
-
#: === Form builder addon strings ===
|
2126 |
msgid "Type password here"
|
2127 |
msgstr ""
|
2128 |
|
@@ -2153,13 +2728,16 @@ msgstr ""
|
|
2153 |
msgid "Postal / Zip Code"
|
2154 |
msgstr ""
|
2155 |
|
2156 |
-
msgid "
|
|
|
|
|
2157 |
msgstr ""
|
2158 |
|
2159 |
msgid "You will need to re-login since you changed your password."
|
2160 |
msgstr ""
|
2161 |
|
2162 |
-
msgid "
|
|
|
2163 |
msgstr ""
|
2164 |
|
2165 |
msgid "Verification"
|
@@ -2168,31 +2746,10 @@ msgstr ""
|
|
2168 |
msgid "Please enter any two digits with no spaces (Example: 12)*"
|
2169 |
msgstr ""
|
2170 |
|
2171 |
-
msgid "Submit"
|
2172 |
-
msgstr ""
|
2173 |
-
|
2174 |
msgid "Username can only contain: letters, numbers and .-*@"
|
2175 |
msgstr ""
|
2176 |
|
2177 |
-
|
2178 |
-
msgstr ""
|
2179 |
-
|
2180 |
-
msgid "You will be automatically redirected in a few seconds. If not, please %s."
|
2181 |
-
msgstr ""
|
2182 |
-
|
2183 |
-
msgid "Account already active. "
|
2184 |
-
msgstr ""
|
2185 |
-
|
2186 |
-
msgid "click here"
|
2187 |
-
msgstr ""
|
2188 |
-
|
2189 |
-
msgid " to login."
|
2190 |
-
msgstr ""
|
2191 |
-
|
2192 |
-
msgid "You need to confirm your email address. Please check your email and follow instructions to complete your registration."
|
2193 |
-
msgstr ""
|
2194 |
-
|
2195 |
-
#: === Partial protection addon strings ===
|
2196 |
msgid "You do not have permission to view this content."
|
2197 |
msgstr ""
|
2198 |
|
@@ -2202,14 +2759,7 @@ msgstr ""
|
|
2202 |
msgid "This content is for members only."
|
2203 |
msgstr ""
|
2204 |
|
2205 |
-
|
2206 |
-
msgstr ""
|
2207 |
-
|
2208 |
-
msgid "General Protection"
|
2209 |
-
msgstr ""
|
2210 |
-
|
2211 |
-
#: === Member Directory Listing addon strings ===
|
2212 |
-
#: swpm-member-directory-admin.php:9
|
2213 |
msgid "Member Directory"
|
2214 |
msgstr ""
|
2215 |
|
@@ -2217,66 +2767,18 @@ msgstr ""
|
|
2217 |
msgid "Member ID"
|
2218 |
msgstr ""
|
2219 |
|
2220 |
-
#: includes/swpm_mda_show_profile.php:27
|
2221 |
-
msgid "Username"
|
2222 |
-
msgstr ""
|
2223 |
-
|
2224 |
-
#: includes/swpm_mda_show_profile.php:28
|
2225 |
-
msgid "First Name"
|
2226 |
-
msgstr ""
|
2227 |
-
|
2228 |
-
#: includes/swpm_mda_show_profile.php:29
|
2229 |
-
msgid "Last Name"
|
2230 |
-
msgstr ""
|
2231 |
-
|
2232 |
#: includes/swpm_mda_show_profile.php:30
|
2233 |
msgid "Level"
|
2234 |
msgstr ""
|
2235 |
|
2236 |
-
#: includes/swpm_mda_show_profile.php:31
|
2237 |
-
msgid "Account State"
|
2238 |
-
msgstr ""
|
2239 |
-
|
2240 |
#: includes/swpm_mda_show_profile.php:32
|
2241 |
msgid "Address"
|
2242 |
msgstr ""
|
2243 |
|
2244 |
-
#: includes/swpm_mda_show_profile.php:33
|
2245 |
-
msgid "Country"
|
2246 |
-
msgstr ""
|
2247 |
-
|
2248 |
-
#: includes/swpm_mda_show_profile.php:34
|
2249 |
-
msgid "Phone"
|
2250 |
-
msgstr ""
|
2251 |
-
|
2252 |
-
#: includes/swpm_mda_show_profile.php:35
|
2253 |
-
msgid "Email"
|
2254 |
-
msgstr ""
|
2255 |
-
|
2256 |
-
#: includes/swpm_mda_show_profile.php:36
|
2257 |
-
msgid "Member Since"
|
2258 |
-
msgstr ""
|
2259 |
-
|
2260 |
-
#: includes/swpm_mda_show_profile.php:37
|
2261 |
-
msgid "Gender"
|
2262 |
-
msgstr ""
|
2263 |
-
|
2264 |
-
#: includes/swpm_mda_show_profile.php:38
|
2265 |
-
msgid "Company"
|
2266 |
-
msgstr ""
|
2267 |
-
|
2268 |
#: views/template-1.php:52 views/template-2.php:53
|
2269 |
msgid "Search..."
|
2270 |
msgstr ""
|
2271 |
|
2272 |
-
#: views/template-1.php:53 views/template-2.php:54
|
2273 |
-
msgid "Search"
|
2274 |
-
msgstr ""
|
2275 |
-
|
2276 |
#: views/template-1.php:60 views/template-2.php:62
|
2277 |
msgid "Clear Search"
|
2278 |
msgstr ""
|
2279 |
-
|
2280 |
-
#: views/template-1.php:95 views/template-2.php:97
|
2281 |
-
msgid "View Profile"
|
2282 |
-
msgstr ""
|
1 |
+
#, fuzzy
|
2 |
msgid ""
|
3 |
msgstr ""
|
4 |
"Project-Id-Version: Simple Membership\n"
|
5 |
+
"POT-Creation-Date: 2019-05-26 13:48+0600\n"
|
6 |
+
"PO-Revision-Date: 2019-05-25 22:38+0600\n"
|
7 |
"Last-Translator: \n"
|
8 |
"Language-Team: \n"
|
9 |
"MIME-Version: 1.0\n"
|
10 |
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
"Content-Transfer-Encoding: 8bit\n"
|
12 |
+
"X-Generator: Poedit 2.2.3\n"
|
13 |
"X-Poedit-KeywordsList: __;_e;e\n"
|
14 |
"X-Poedit-Basepath: .\n"
|
15 |
"X-Poedit-SearchPath-0: .\n"
|
16 |
|
17 |
+
#: classes/class.simple-wp-membership.php:180
|
18 |
msgid "The admin of this site does not allow users to access the wp dashboard."
|
19 |
msgstr ""
|
20 |
|
21 |
+
#: classes/class.simple-wp-membership.php:181
|
22 |
msgid "Go back to the home page by "
|
23 |
msgstr ""
|
24 |
|
25 |
+
#: classes/class.simple-wp-membership.php:181
|
26 |
msgid "clicking here"
|
27 |
msgstr ""
|
28 |
|
29 |
+
#: classes/class.simple-wp-membership.php:242
|
30 |
msgid ""
|
31 |
"Error! This site has the force WP user login feature enabled in the "
|
32 |
"settings. We could not find a WP user record for the given username: "
|
33 |
msgstr ""
|
34 |
|
35 |
+
#: classes/class.simple-wp-membership.php:243
|
36 |
msgid ""
|
37 |
"This error is triggered when a member account doesn't have a corresponding "
|
38 |
"WP user account. So the plugin fails to log the user into the WP User system."
|
39 |
msgstr ""
|
40 |
|
41 |
+
#: classes/class.simple-wp-membership.php:244
|
42 |
msgid ""
|
43 |
"Contact the site admin and request them to check your username in the WP "
|
44 |
"Users menu to see what happened with the WP user entry of your account."
|
45 |
msgstr ""
|
46 |
|
47 |
+
#: classes/class.simple-wp-membership.php:245
|
48 |
msgid ""
|
49 |
"The site admin can disable the Force WP User Synchronization feature in the "
|
50 |
"settings to disable this feature and this error will go away."
|
51 |
msgstr ""
|
52 |
|
53 |
+
#: classes/class.simple-wp-membership.php:246
|
54 |
msgid "You can use the back button of your browser to go back to the site."
|
55 |
msgstr ""
|
56 |
|
57 |
+
#: classes/class.simple-wp-membership.php:407
|
58 |
msgid "You are not logged in."
|
59 |
msgstr ""
|
60 |
|
61 |
+
#: classes/class.simple-wp-membership.php:458
|
62 |
msgid ""
|
63 |
"You have the sandbox payment mode enabled in plugin settings. Make sure to "
|
64 |
"turn off the sandbox mode when you want to do live transactions."
|
65 |
msgstr ""
|
66 |
|
67 |
+
#: classes/class.simple-wp-membership.php:473
|
68 |
msgid "Simple WP Membership Protection"
|
69 |
msgstr ""
|
70 |
|
71 |
+
#: classes/class.simple-wp-membership.php:485
|
72 |
msgid "Simple Membership Protection options"
|
73 |
msgstr ""
|
74 |
|
75 |
+
#: classes/class.simple-wp-membership.php:503
|
76 |
msgid "Do you want to protect this content?"
|
77 |
msgstr ""
|
78 |
|
79 |
+
#: classes/class.simple-wp-membership.php:504
|
80 |
+
msgid "No, Do not protect this content."
|
81 |
+
msgstr ""
|
82 |
+
|
83 |
+
#: classes/class.simple-wp-membership.php:505
|
84 |
+
msgid "Yes, Protect this content."
|
85 |
+
msgstr ""
|
86 |
+
|
87 |
+
#: classes/class.simple-wp-membership.php:508
|
88 |
msgid "Select the membership level that can access this content:"
|
89 |
msgstr ""
|
90 |
|
91 |
+
#: classes/class.simple-wp-membership.php:646
|
92 |
+
#: classes/class.simple-wp-membership.php:650
|
93 |
msgid "Validating, please wait"
|
94 |
msgstr ""
|
95 |
|
96 |
+
#: classes/class.simple-wp-membership.php:653
|
97 |
msgid "Invalid email address"
|
98 |
msgstr ""
|
99 |
|
100 |
+
#: classes/class.simple-wp-membership.php:656
|
101 |
msgid "This field is required"
|
102 |
msgstr ""
|
103 |
|
104 |
+
#: classes/class.simple-wp-membership.php:659 classes/class.swpm-auth.php:296
|
105 |
msgid "Invalid Username"
|
106 |
msgstr ""
|
107 |
|
108 |
+
#: classes/class.simple-wp-membership.php:659
|
109 |
+
msgid "Usernames can only contain: letters, numbers and .-_*@"
|
110 |
+
msgstr ""
|
111 |
+
|
112 |
+
#: classes/class.simple-wp-membership.php:662
|
113 |
msgid "Minimum "
|
114 |
msgstr ""
|
115 |
|
116 |
+
#: classes/class.simple-wp-membership.php:663
|
117 |
msgid " characters required"
|
118 |
msgstr ""
|
119 |
|
120 |
+
#: classes/class.simple-wp-membership.php:666
|
121 |
msgid "Apostrophe character is not allowed"
|
122 |
msgstr ""
|
123 |
|
124 |
+
#: classes/class.simple-wp-membership.php:697
|
125 |
msgid "WP Membership"
|
126 |
msgstr ""
|
127 |
|
128 |
+
#: classes/class.simple-wp-membership.php:698 classes/class.swpm-members.php:11
|
129 |
+
#: classes/class.swpm-members.php:581
|
130 |
msgid "Members"
|
131 |
msgstr ""
|
132 |
|
133 |
+
#: classes/class.simple-wp-membership.php:699
|
134 |
#: classes/class.swpm-category-list.php:20
|
135 |
#: classes/class.swpm-membership-levels.php:12
|
136 |
+
#: classes/class.swpm-membership-levels.php:265
|
137 |
#: classes/class.swpm-post-list.php:21
|
138 |
msgid "Membership Levels"
|
139 |
msgstr ""
|
140 |
|
141 |
+
#: classes/class.simple-wp-membership.php:700
|
142 |
msgid "Settings"
|
143 |
msgstr ""
|
144 |
|
145 |
+
#: classes/class.simple-wp-membership.php:701
|
146 |
msgid "Payments"
|
147 |
msgstr ""
|
148 |
|
149 |
+
#: classes/class.simple-wp-membership.php:702
|
150 |
msgid "Add-ons"
|
151 |
msgstr ""
|
152 |
|
188 |
msgstr ""
|
189 |
|
190 |
#: classes/class.swpm-admin-registration.php:76
|
191 |
+
#: classes/class.swpm-admin-registration.php:124
|
192 |
+
#: classes/class.swpm-admin-registration.php:151
|
193 |
+
#: classes/class.swpm-membership-level.php:73
|
194 |
+
#: classes/class.swpm-membership-level.php:105
|
195 |
msgid "Please correct the following:"
|
196 |
msgstr ""
|
197 |
|
199 |
msgid "Error! Nonce verification failed for user edit from admin end."
|
200 |
msgstr ""
|
201 |
|
202 |
+
#: classes/class.swpm-admin-registration.php:139
|
203 |
msgid "Your current password"
|
204 |
msgstr ""
|
205 |
|
219 |
msgid "Available"
|
220 |
msgstr ""
|
221 |
|
222 |
+
#: classes/class.swpm-auth.php:57
|
223 |
msgid ""
|
224 |
"Warning! Simple Membership plugin cannot process this login request to "
|
225 |
"prevent you from getting logged out of WP Admin accidentally."
|
226 |
msgstr ""
|
227 |
|
228 |
+
#: classes/class.swpm-auth.php:58
|
229 |
+
msgid "Click here"
|
230 |
+
msgstr ""
|
231 |
+
|
232 |
+
#: classes/class.swpm-auth.php:58
|
233 |
+
msgid " to see the profile you are currently logged into in this browser."
|
234 |
+
msgstr ""
|
235 |
+
|
236 |
+
#: classes/class.swpm-auth.php:59
|
237 |
msgid ""
|
238 |
"You are logged into the site as an ADMIN user in this browser. First, logout "
|
239 |
+
"from WP Admin then you will be able to log in as a normal member."
|
240 |
msgstr ""
|
241 |
|
242 |
+
#: classes/class.swpm-auth.php:60
|
243 |
msgid ""
|
244 |
"Alternatively, you can use a different browser (where you are not logged-in "
|
245 |
"as ADMIN) to test the membership login."
|
246 |
msgstr ""
|
247 |
|
248 |
+
#: classes/class.swpm-auth.php:61
|
249 |
msgid ""
|
250 |
"Your normal visitors or members will never see this message. This message is "
|
251 |
"ONLY for ADMIN user."
|
252 |
msgstr ""
|
253 |
|
254 |
+
#: classes/class.swpm-auth.php:68
|
255 |
msgid "Captcha validation failed on login form."
|
256 |
msgstr ""
|
257 |
|
258 |
+
#: classes/class.swpm-auth.php:93
|
259 |
msgid "User Not Found."
|
260 |
msgstr ""
|
261 |
|
262 |
+
#: classes/class.swpm-auth.php:100
|
263 |
msgid "Password Empty or Invalid."
|
264 |
msgstr ""
|
265 |
|
266 |
+
#: classes/class.swpm-auth.php:133
|
267 |
msgid "Account is inactive."
|
268 |
msgstr ""
|
269 |
|
270 |
+
#: classes/class.swpm-auth.php:136 classes/class.swpm-auth.php:162
|
271 |
msgid "Account has expired."
|
272 |
msgstr ""
|
273 |
|
274 |
+
#: classes/class.swpm-auth.php:139
|
275 |
msgid "Account is pending."
|
276 |
msgstr ""
|
277 |
|
278 |
+
#: classes/class.swpm-auth.php:146
|
279 |
+
#, php-format
|
280 |
+
msgid ""
|
281 |
+
"You need to activate your account. If you didn't receive an email then %s to "
|
282 |
+
"resend the activation email."
|
283 |
+
msgstr ""
|
284 |
+
|
285 |
+
#: classes/class.swpm-auth.php:146
|
286 |
+
#: classes/class.swpm-front-registration.php:376
|
287 |
+
#: classes/class.swpm-front-registration.php:426
|
288 |
+
#: classes/class.swpm-utils-misc.php:169
|
289 |
+
msgid "click here"
|
290 |
+
msgstr ""
|
291 |
+
|
292 |
+
#: classes/class.swpm-auth.php:170
|
293 |
msgid "You are logged in as:"
|
294 |
msgstr ""
|
295 |
|
296 |
+
#: classes/class.swpm-auth.php:234
|
297 |
msgid "Logged Out Successfully."
|
298 |
msgstr ""
|
299 |
|
300 |
+
#: classes/class.swpm-auth.php:287
|
301 |
msgid "Session Expired."
|
302 |
msgstr ""
|
303 |
|
304 |
+
#: classes/class.swpm-auth.php:304
|
305 |
msgid "Please login again."
|
306 |
msgstr ""
|
307 |
|
310 |
#: classes/class.swpm-membership-levels.php:21
|
311 |
#: classes/class.swpm-post-list.php:20
|
312 |
#: classes/admin-includes/class.swpm-payments-list-table.php:85
|
313 |
+
#: views/add.php:40 views/admin_member_form_common_part.php:2 views/edit.php:75
|
|
|
314 |
#: views/payments/payment-gateway/admin_braintree_buy_now_button.php:50
|
315 |
#: views/payments/payment-gateway/admin_paypal_buy_now_button.php:34
|
316 |
#: views/payments/payment-gateway/admin_paypal_buy_now_button.php:229
|
317 |
+
#: views/payments/payment-gateway/admin_paypal_smart_checkout_button.php:49
|
318 |
#: views/payments/payment-gateway/admin_paypal_subscription_button.php:35
|
319 |
#: views/payments/payment-gateway/admin_paypal_subscription_button.php:317
|
320 |
#: views/payments/payment-gateway/admin_stripe_buy_now_button.php:47
|
363 |
msgid "Comments not allowed by a non-member."
|
364 |
msgstr ""
|
365 |
|
366 |
+
#: classes/class.swpm-form.php:30
|
367 |
msgid ""
|
368 |
"Wordpress account exists with given username. But given email doesn't match."
|
369 |
msgstr ""
|
370 |
|
371 |
+
#: classes/class.swpm-form.php:31
|
372 |
msgid ""
|
373 |
" Use a different username to complete the registration. If you want to use "
|
374 |
"that username then you must enter the correct email address associated with "
|
375 |
"the existing WP user to connect with that account."
|
376 |
msgstr ""
|
377 |
|
378 |
+
#: classes/class.swpm-form.php:37
|
379 |
msgid ""
|
380 |
"Wordpress account exists with given email. But given username doesn't match."
|
381 |
msgstr ""
|
382 |
|
383 |
+
#: classes/class.swpm-form.php:38
|
384 |
msgid ""
|
385 |
" Use a different email address to complete the registration. If you want to "
|
386 |
"use that email then you must enter the correct username associated with the "
|
387 |
"existing WP user to connect with that account."
|
388 |
msgstr ""
|
389 |
|
390 |
+
#: classes/class.swpm-form.php:48
|
391 |
msgid "Username is required"
|
392 |
msgstr ""
|
393 |
|
394 |
+
#: classes/class.swpm-form.php:52
|
395 |
msgid "Username contains invalid character"
|
396 |
msgstr ""
|
397 |
|
398 |
+
#: classes/class.swpm-form.php:60
|
399 |
msgid "Username already exists."
|
400 |
msgstr ""
|
401 |
|
402 |
+
#: classes/class.swpm-form.php:83
|
403 |
msgid "Password is required"
|
404 |
msgstr ""
|
405 |
|
406 |
+
#: classes/class.swpm-form.php:90
|
407 |
msgid "Password mismatch"
|
408 |
msgstr ""
|
409 |
|
410 |
+
#: classes/class.swpm-form.php:101
|
411 |
msgid "Email is required"
|
412 |
msgstr ""
|
413 |
|
414 |
+
#: classes/class.swpm-form.php:105
|
415 |
msgid "Email is invalid"
|
416 |
msgstr ""
|
417 |
|
418 |
+
#: classes/class.swpm-form.php:121
|
419 |
msgid "Email is already used."
|
420 |
msgstr ""
|
421 |
|
422 |
+
#: classes/class.swpm-form.php:179
|
423 |
msgid "Member since field is invalid"
|
424 |
msgstr ""
|
425 |
|
426 |
+
#: classes/class.swpm-form.php:190
|
427 |
msgid "Access starts field is invalid"
|
428 |
msgstr ""
|
429 |
|
430 |
+
#: classes/class.swpm-form.php:200
|
431 |
msgid "Gender field is invalid"
|
432 |
msgstr ""
|
433 |
|
434 |
+
#: classes/class.swpm-form.php:211
|
435 |
msgid "Account state field is invalid"
|
436 |
msgstr ""
|
437 |
|
438 |
+
#: classes/class.swpm-form.php:218
|
439 |
msgid "Invalid membership level"
|
440 |
msgstr ""
|
441 |
|
446 |
msgstr ""
|
447 |
|
448 |
#: classes/class.swpm-front-registration.php:45
|
449 |
+
#: classes/class.swpm-utils-misc.php:274 views/login.php:36
|
450 |
msgid "Join Us"
|
451 |
msgstr ""
|
452 |
|
469 |
msgid "Security check: captcha validation failed."
|
470 |
msgstr ""
|
471 |
|
472 |
+
#: classes/class.swpm-front-registration.php:89
|
473 |
+
msgid "You must accept the terms and conditions."
|
474 |
+
msgstr ""
|
475 |
+
|
476 |
+
#: classes/class.swpm-front-registration.php:100
|
477 |
+
msgid "You must agree to the privacy policy."
|
478 |
+
msgstr ""
|
479 |
+
|
480 |
+
#: classes/class.swpm-front-registration.php:140
|
481 |
+
msgid ""
|
482 |
+
"You need to confirm your email address. Please check your email and follow "
|
483 |
+
"instructions to complete your registration."
|
484 |
+
msgstr ""
|
485 |
+
|
486 |
+
#: classes/class.swpm-front-registration.php:145
|
487 |
msgid "Registration Successful. "
|
488 |
msgstr ""
|
489 |
|
490 |
+
#: classes/class.swpm-front-registration.php:145
|
491 |
+
#: classes/class.swpm-utils-misc.php:273 classes/class.swpm-utils-misc.php:285
|
492 |
msgid "Please"
|
493 |
msgstr ""
|
494 |
|
495 |
+
#: classes/class.swpm-front-registration.php:145
|
496 |
+
#: classes/class.swpm-utils-misc.php:273 views/login.php:30
|
497 |
msgid "Login"
|
498 |
msgstr ""
|
499 |
|
500 |
+
#: classes/class.swpm-front-registration.php:159
|
501 |
msgid "Please correct the following"
|
502 |
msgstr ""
|
503 |
|
504 |
+
#: classes/class.swpm-front-registration.php:207
|
505 |
msgid "Membership Level Couldn't be found."
|
506 |
msgstr ""
|
507 |
|
508 |
+
#: classes/class.swpm-front-registration.php:258
|
509 |
msgid "Error! Nonce verification failed for front end profile edit."
|
510 |
msgstr ""
|
511 |
|
512 |
+
#: classes/class.swpm-front-registration.php:266
|
513 |
msgid "Profile updated successfully."
|
514 |
msgstr ""
|
515 |
|
516 |
+
#: classes/class.swpm-front-registration.php:275
|
517 |
msgid ""
|
518 |
"Profile updated successfully. You will need to re-login since you changed "
|
519 |
"your password."
|
520 |
msgstr ""
|
521 |
|
522 |
+
#: classes/class.swpm-front-registration.php:289
|
523 |
msgid "Please correct the following."
|
524 |
msgstr ""
|
525 |
|
526 |
+
#: classes/class.swpm-front-registration.php:301
|
527 |
msgid "Captcha validation failed."
|
528 |
msgstr ""
|
529 |
|
530 |
+
#: classes/class.swpm-front-registration.php:309
|
531 |
msgid "Email address not valid."
|
532 |
msgstr ""
|
533 |
|
534 |
+
#: classes/class.swpm-front-registration.php:320
|
535 |
msgid "No user found with that email address."
|
536 |
msgstr ""
|
537 |
|
538 |
+
#: classes/class.swpm-front-registration.php:321
|
539 |
+
#: classes/class.swpm-front-registration.php:350
|
540 |
msgid "Email Address: "
|
541 |
msgstr ""
|
542 |
|
543 |
+
#: classes/class.swpm-front-registration.php:349
|
544 |
msgid "New password has been sent to your email address."
|
545 |
msgstr ""
|
546 |
|
547 |
+
#: classes/class.swpm-front-registration.php:371
|
548 |
+
msgid "Can't find member account."
|
549 |
+
msgstr ""
|
550 |
+
|
551 |
+
#: classes/class.swpm-front-registration.php:376
|
552 |
+
#: classes/class.swpm-front-registration.php:426
|
553 |
+
msgid "Account already active. "
|
554 |
+
msgstr ""
|
555 |
+
|
556 |
+
#: classes/class.swpm-front-registration.php:376
|
557 |
+
#: classes/class.swpm-front-registration.php:426
|
558 |
+
msgid " to login."
|
559 |
+
msgstr ""
|
560 |
+
|
561 |
+
#: classes/class.swpm-front-registration.php:383
|
562 |
+
msgid ""
|
563 |
+
"Activation code mismatch. Cannot activate this account. Please contact the "
|
564 |
+
"site admin."
|
565 |
+
msgstr ""
|
566 |
+
|
567 |
+
#: classes/class.swpm-front-registration.php:397
|
568 |
+
msgid "Success! Your account has been activated successfully."
|
569 |
+
msgstr ""
|
570 |
+
|
571 |
+
#: classes/class.swpm-front-registration.php:421
|
572 |
+
msgid "Cannot find member account."
|
573 |
+
msgstr ""
|
574 |
+
|
575 |
+
#: classes/class.swpm-front-registration.php:443
|
576 |
+
msgid ""
|
577 |
+
"Activation email has been sent. Please check your email and activate your "
|
578 |
+
"account."
|
579 |
+
msgstr ""
|
580 |
+
|
581 |
+
#: classes/class.swpm-init-time-tasks.php:118
|
582 |
msgid "Sorry, Nonce verification failed."
|
583 |
msgstr ""
|
584 |
|
585 |
+
#: classes/class.swpm-init-time-tasks.php:125
|
586 |
msgid "Sorry, Password didn't match."
|
587 |
msgstr ""
|
588 |
|
589 |
+
#: classes/class.swpm-level-form.php:50
|
590 |
msgid "Date format is not valid."
|
591 |
msgstr ""
|
592 |
|
593 |
+
#: classes/class.swpm-level-form.php:58
|
594 |
msgid "Access duration must be > 0."
|
595 |
msgstr ""
|
596 |
|
603 |
msgid "ID"
|
604 |
msgstr ""
|
605 |
|
606 |
+
#: classes/class.swpm-members.php:20 views/add.php:16 views/admin_add.php:11
|
607 |
+
#: views/admin_edit.php:19 views/edit.php:23
|
608 |
+
#: includes/swpm_mda_show_profile.php:27
|
609 |
msgid "Username"
|
610 |
msgstr ""
|
611 |
|
612 |
#: classes/class.swpm-members.php:21
|
613 |
#: classes/admin-includes/class.swpm-payments-list-table.php:78
|
614 |
+
#: views/add.php:32 views/admin_member_form_common_part.php:15
|
615 |
+
#: views/edit.php:39 includes/swpm_mda_show_profile.php:28
|
616 |
msgid "First Name"
|
617 |
msgstr ""
|
618 |
|
619 |
#: classes/class.swpm-members.php:22
|
620 |
#: classes/admin-includes/class.swpm-payments-list-table.php:79
|
621 |
+
#: views/add.php:36 views/admin_member_form_common_part.php:19
|
622 |
+
#: views/edit.php:43 includes/swpm_mda_show_profile.php:29
|
623 |
msgid "Last Name"
|
624 |
msgstr ""
|
625 |
|
626 |
+
#: classes/class.swpm-members.php:23 views/add.php:20 views/edit.php:27
|
627 |
+
#: includes/swpm_mda_show_profile.php:35
|
628 |
msgid "Email"
|
629 |
msgstr ""
|
630 |
|
631 |
+
#: classes/class.swpm-members.php:25 views/admin_member_form_common_part.php:11
|
|
|
632 |
msgid "Access Starts"
|
633 |
msgstr ""
|
634 |
|
635 |
+
#: classes/class.swpm-members.php:26 includes/swpm_mda_show_profile.php:31
|
636 |
msgid "Account State"
|
637 |
msgstr ""
|
638 |
|
639 |
+
#: classes/class.swpm-members.php:27
|
640 |
+
msgid "Last Login Date"
|
641 |
+
msgstr ""
|
642 |
+
|
643 |
+
#: classes/class.swpm-members.php:46
|
644 |
#: classes/class.swpm-membership-levels.php:36
|
645 |
#: classes/admin-includes/class.swpm-payment-buttons-list-table.php:94
|
646 |
#: classes/admin-includes/class.swpm-payments-list-table.php:102
|
647 |
msgid "Delete"
|
648 |
msgstr ""
|
649 |
|
650 |
+
#: classes/class.swpm-members.php:47
|
651 |
msgid "Set Status to Active"
|
652 |
msgstr ""
|
653 |
|
654 |
+
#: classes/class.swpm-members.php:48
|
655 |
msgid "Set Status to Active and Notify"
|
656 |
msgstr ""
|
657 |
|
658 |
+
#: classes/class.swpm-members.php:49
|
659 |
msgid "Set Status to Inactive"
|
660 |
msgstr ""
|
661 |
|
662 |
+
#: classes/class.swpm-members.php:50
|
663 |
msgid "Set Status to Pending"
|
664 |
msgstr ""
|
665 |
|
666 |
+
#: classes/class.swpm-members.php:51
|
667 |
msgid "Set Status to Expired"
|
668 |
msgstr ""
|
669 |
|
670 |
+
#: classes/class.swpm-members.php:72
|
671 |
msgid "incomplete"
|
672 |
msgstr ""
|
673 |
|
674 |
+
#: classes/class.swpm-members.php:191
|
675 |
msgid "No member found."
|
676 |
msgstr ""
|
677 |
|
678 |
+
#: classes/class.swpm-members.php:337
|
679 |
msgid "Error! Nonce verification failed for user delete from admin end."
|
680 |
msgstr ""
|
681 |
|
682 |
+
#: classes/class.swpm-members.php:406 classes/class.swpm-members.php:436
|
683 |
msgid "Error! Please select a membership level first."
|
684 |
msgstr ""
|
685 |
|
686 |
+
#: classes/class.swpm-members.php:423
|
687 |
msgid "Membership level change operation completed successfully."
|
688 |
msgstr ""
|
689 |
|
690 |
+
#: classes/class.swpm-members.php:453
|
691 |
msgid "Access starts date change operation successfully completed."
|
692 |
msgstr ""
|
693 |
|
694 |
+
#: classes/class.swpm-members.php:462
|
695 |
msgid "Bulk Update Membership Level of Members"
|
696 |
msgstr ""
|
697 |
|
698 |
+
#: classes/class.swpm-members.php:465
|
699 |
msgid ""
|
700 |
"You can manually change the membership level of any member by editing the "
|
701 |
"record from the members menu. "
|
702 |
msgstr ""
|
703 |
|
704 |
+
#: classes/class.swpm-members.php:466
|
705 |
msgid ""
|
706 |
"You can use the following option to bulk update the membership level of "
|
707 |
"users who belong to the level you select below."
|
708 |
msgstr ""
|
709 |
|
710 |
+
#: classes/class.swpm-members.php:472 classes/class.swpm-members.php:520
|
711 |
msgid "Membership Level: "
|
712 |
msgstr ""
|
713 |
|
714 |
+
#: classes/class.swpm-members.php:476
|
715 |
msgid "Select Current Level"
|
716 |
msgstr ""
|
717 |
|
718 |
+
#: classes/class.swpm-members.php:479
|
719 |
msgid ""
|
720 |
"Select the current membership level (the membership level of all members who "
|
721 |
"are in this level will be updated)."
|
722 |
msgstr ""
|
723 |
|
724 |
+
#: classes/class.swpm-members.php:485
|
725 |
msgid "Level to Change to: "
|
726 |
msgstr ""
|
727 |
|
728 |
+
#: classes/class.swpm-members.php:489
|
729 |
msgid "Select Target Level"
|
730 |
msgstr ""
|
731 |
|
732 |
+
#: classes/class.swpm-members.php:492
|
733 |
msgid "Select the new membership level."
|
734 |
msgstr ""
|
735 |
|
736 |
+
#: classes/class.swpm-members.php:498
|
737 |
msgid "Bulk Change Membership Level"
|
738 |
msgstr ""
|
739 |
|
740 |
+
#: classes/class.swpm-members.php:508
|
741 |
msgid "Bulk Update Access Starts Date of Members"
|
742 |
msgstr ""
|
743 |
|
744 |
+
#: classes/class.swpm-members.php:512
|
745 |
msgid ""
|
746 |
"The access starts date of a member is set to the day the user registers. "
|
747 |
"This date value is used to calculate how long the member can access your "
|
749 |
"level. "
|
750 |
msgstr ""
|
751 |
|
752 |
+
#: classes/class.swpm-members.php:513
|
753 |
msgid ""
|
754 |
"You can manually set a specific access starts date value of all members who "
|
755 |
"belong to a particular level using the following option."
|
756 |
msgstr ""
|
757 |
|
758 |
+
#: classes/class.swpm-members.php:523
|
759 |
msgid "Select Level"
|
760 |
msgstr ""
|
761 |
|
762 |
+
#: classes/class.swpm-members.php:526
|
763 |
msgid ""
|
764 |
"Select the Membership level (the access start date of all members who are in "
|
765 |
"this level will be updated)."
|
766 |
msgstr ""
|
767 |
|
768 |
+
#: classes/class.swpm-members.php:535
|
769 |
msgid "Specify the access starts date value."
|
770 |
msgstr ""
|
771 |
|
772 |
+
#: classes/class.swpm-members.php:541
|
773 |
msgid "Bulk Change Access Starts Date"
|
774 |
msgstr ""
|
775 |
|
776 |
+
#: classes/class.swpm-members.php:576
|
777 |
msgid "Simple WP Membership::Members"
|
778 |
msgstr ""
|
779 |
|
780 |
+
#: classes/class.swpm-members.php:577
|
781 |
+
#: classes/class.swpm-membership-levels.php:226 views/admin_members_list.php:44
|
|
|
782 |
msgid "Add New"
|
783 |
msgstr ""
|
784 |
|
785 |
+
#: classes/class.swpm-members.php:582 views/admin_add.php:6
|
786 |
msgid "Add Member"
|
787 |
msgstr ""
|
788 |
|
789 |
+
#: classes/class.swpm-members.php:583
|
790 |
msgid "Bulk Operation"
|
791 |
msgstr ""
|
792 |
|
796 |
"end."
|
797 |
msgstr ""
|
798 |
|
799 |
+
#: classes/class.swpm-membership-level.php:68
|
800 |
msgid "Membership Level Creation Successful."
|
801 |
msgstr ""
|
802 |
|
803 |
+
#: classes/class.swpm-membership-level.php:84
|
804 |
msgid ""
|
805 |
"Error! Nonce verification failed for membership level edit from admin end."
|
806 |
msgstr ""
|
807 |
|
808 |
+
#: classes/class.swpm-membership-level.php:100
|
809 |
msgid "Membership Level Updated Successfully."
|
810 |
msgstr ""
|
811 |
|
821 |
msgid "No membership levels found."
|
822 |
msgstr ""
|
823 |
|
824 |
+
#: classes/class.swpm-membership-levels.php:197
|
825 |
msgid ""
|
826 |
"Error! Nonce verification failed for membership level delete from admin end."
|
827 |
msgstr ""
|
828 |
|
829 |
+
#: classes/class.swpm-membership-levels.php:216 views/admin_members_list.php:31
|
830 |
+
#: views/payments/admin_all_payment_transactions.php:16 views/template-1.php:53
|
831 |
+
#: views/template-2.php:54
|
832 |
msgid "Search"
|
833 |
msgstr ""
|
834 |
|
835 |
+
#: classes/class.swpm-membership-levels.php:261
|
836 |
msgid "Simple WP Membership::Membership Levels"
|
837 |
msgstr ""
|
838 |
|
839 |
+
#: classes/class.swpm-membership-levels.php:266
|
840 |
msgid "Add Level"
|
841 |
msgstr ""
|
842 |
|
843 |
+
#: classes/class.swpm-membership-levels.php:267
|
844 |
msgid "Manage Content Protection"
|
845 |
msgstr ""
|
846 |
|
847 |
+
#: classes/class.swpm-membership-levels.php:268
|
848 |
msgid "Category Protection"
|
849 |
msgstr ""
|
850 |
|
851 |
+
#: classes/class.swpm-membership-levels.php:269
|
852 |
msgid "Post and Page Protection"
|
853 |
msgstr ""
|
854 |
|
889 |
msgid "No items found."
|
890 |
msgstr ""
|
891 |
|
892 |
+
#: classes/class.swpm-protection.php:22
|
893 |
+
msgid ""
|
894 |
+
"The category or parent category of this post is protected. You can change "
|
895 |
+
"the category protection settings from the "
|
896 |
+
msgstr ""
|
897 |
+
|
898 |
+
#: classes/class.swpm-protection.php:23
|
899 |
+
msgid "category protection menu"
|
900 |
+
msgstr ""
|
901 |
+
|
902 |
#: classes/class.swpm-settings.php:26 classes/class.swpm-settings.php:54
|
903 |
msgid "General Settings"
|
904 |
msgstr ""
|
915 |
msgid "Tools"
|
916 |
msgstr ""
|
917 |
|
918 |
+
#: classes/class.swpm-settings.php:30 classes/class.swpm-settings.php:187
|
919 |
msgid "Advanced Settings"
|
920 |
msgstr ""
|
921 |
|
982 |
|
983 |
#: classes/class.swpm-settings.php:66
|
984 |
msgid ""
|
985 |
+
"WordPress allows a standard wp user to be able to go to the wp-admin URL and "
|
986 |
"access his profile from the wp dashbaord. Using this option will prevent any "
|
987 |
"non admin users from going to the wp dashboard."
|
988 |
msgstr ""
|
989 |
|
990 |
+
#: classes/class.swpm-settings.php:68 classes/class.swpm-settings.php:242
|
991 |
msgid "Default Account Status"
|
992 |
msgstr ""
|
993 |
|
1039 |
msgid "Check this option to enable debug logging."
|
1040 |
msgstr ""
|
1041 |
|
1042 |
+
#: classes/class.swpm-settings.php:98
|
1043 |
+
msgid ""
|
1044 |
+
" This can be useful when troubleshooting an issue. Turn it off and reset the "
|
1045 |
+
"log files after the troubleshooting is complete."
|
1046 |
+
msgstr ""
|
1047 |
+
|
1048 |
+
#: classes/class.swpm-settings.php:100
|
1049 |
+
msgid "View general debug log file by clicking "
|
1050 |
+
msgstr ""
|
1051 |
+
|
1052 |
+
#: classes/class.swpm-settings.php:100 classes/class.swpm-settings.php:101
|
1053 |
#: classes/class.swpm-settings.php:102
|
1054 |
+
msgid "here"
|
1055 |
+
msgstr ""
|
1056 |
+
|
1057 |
+
#: classes/class.swpm-settings.php:101
|
1058 |
+
msgid "View login related debug log file by clicking "
|
1059 |
+
msgstr ""
|
1060 |
+
|
1061 |
+
#: classes/class.swpm-settings.php:102
|
1062 |
+
msgid "Reset debug log files by clicking "
|
1063 |
msgstr ""
|
1064 |
|
1065 |
#: classes/class.swpm-settings.php:103
|
1066 |
+
msgid "Enable Debug"
|
1067 |
+
msgstr ""
|
1068 |
+
|
1069 |
+
#: classes/class.swpm-settings.php:105
|
1070 |
+
msgid "Enable Sandbox Testing"
|
1071 |
+
msgstr ""
|
1072 |
+
|
1073 |
+
#: classes/class.swpm-settings.php:106
|
1074 |
msgid "Enable this option if you want to do sandbox payment testing."
|
1075 |
msgstr ""
|
1076 |
|
1077 |
+
#: classes/class.swpm-settings.php:119
|
1078 |
msgid "Email Settings Overview"
|
1079 |
msgstr ""
|
1080 |
|
1081 |
+
#: classes/class.swpm-settings.php:120
|
1082 |
msgid "Email Misc. Settings"
|
1083 |
msgstr ""
|
1084 |
|
1085 |
+
#: classes/class.swpm-settings.php:122
|
1086 |
msgid "From Email Address"
|
1087 |
msgstr ""
|
1088 |
|
1089 |
+
#: classes/class.swpm-settings.php:126
|
1090 |
msgid "Email Settings (Prompt to Complete Registration )"
|
1091 |
msgstr ""
|
1092 |
|
1093 |
+
#: classes/class.swpm-settings.php:127 classes/class.swpm-settings.php:140
|
1094 |
+
#: classes/class.swpm-settings.php:158 classes/class.swpm-settings.php:163
|
1095 |
+
#: classes/class.swpm-settings.php:168 classes/class.swpm-settings.php:173
|
1096 |
msgid "Email Subject"
|
1097 |
msgstr ""
|
1098 |
|
1099 |
+
#: classes/class.swpm-settings.php:129 classes/class.swpm-settings.php:142
|
1100 |
+
#: classes/class.swpm-settings.php:159 classes/class.swpm-settings.php:164
|
1101 |
+
#: classes/class.swpm-settings.php:169 classes/class.swpm-settings.php:174
|
1102 |
msgid "Email Body"
|
1103 |
msgstr ""
|
1104 |
|
1105 |
+
#: classes/class.swpm-settings.php:133
|
1106 |
msgid ""
|
1107 |
"Enter the email address where you want the admin notification email to be "
|
1108 |
"sent to."
|
1109 |
msgstr ""
|
1110 |
|
1111 |
+
#: classes/class.swpm-settings.php:134
|
1112 |
msgid ""
|
1113 |
" You can put multiple email addresses separated by comma (,) in the above "
|
1114 |
"field to send the notification to multiple email addresses."
|
1115 |
msgstr ""
|
1116 |
|
1117 |
+
#: classes/class.swpm-settings.php:136
|
1118 |
msgid "Enter the subject for the admin notification email."
|
1119 |
msgstr ""
|
1120 |
|
1121 |
+
#: classes/class.swpm-settings.php:137
|
1122 |
msgid ""
|
1123 |
"This email will be sent to the admin when a new user completes the "
|
1124 |
"membership registration. Only works if you have enabled the \"Send "
|
1125 |
"Notification to Admin\" option above."
|
1126 |
msgstr ""
|
1127 |
|
1128 |
+
#: classes/class.swpm-settings.php:139
|
1129 |
msgid "Email Settings (Registration Complete)"
|
1130 |
msgstr ""
|
1131 |
|
1132 |
+
#: classes/class.swpm-settings.php:144
|
1133 |
msgid "Send Notification to Admin"
|
1134 |
msgstr ""
|
1135 |
|
1136 |
+
#: classes/class.swpm-settings.php:145
|
1137 |
msgid ""
|
1138 |
"Enable this option if you want the admin to receive a notification when a "
|
1139 |
"member registers."
|
1140 |
msgstr ""
|
1141 |
|
1142 |
+
#: classes/class.swpm-settings.php:146
|
1143 |
msgid "Admin Email Address"
|
1144 |
msgstr ""
|
1145 |
|
1146 |
+
#: classes/class.swpm-settings.php:148
|
1147 |
msgid "Admin Notification Email Subject"
|
1148 |
msgstr ""
|
1149 |
|
1150 |
+
#: classes/class.swpm-settings.php:150
|
1151 |
msgid "Admin Notification Email Body"
|
1152 |
msgstr ""
|
1153 |
|
1154 |
+
#: classes/class.swpm-settings.php:153
|
1155 |
msgid "Send Email to Member When Added via Admin Dashboard"
|
1156 |
msgstr ""
|
1157 |
|
1158 |
+
#: classes/class.swpm-settings.php:157
|
1159 |
msgid "Email Settings (Password Reset)"
|
1160 |
msgstr ""
|
1161 |
|
1162 |
+
#: classes/class.swpm-settings.php:162
|
1163 |
msgid " Email Settings (Account Upgrade Notification)"
|
1164 |
msgstr ""
|
1165 |
|
1166 |
+
#: classes/class.swpm-settings.php:167
|
1167 |
msgid " Email Settings (Bulk Account Activate Notification)"
|
1168 |
msgstr ""
|
1169 |
|
1170 |
+
#: classes/class.swpm-settings.php:172
|
1171 |
+
msgid " Email Settings (Email Activation)"
|
1172 |
+
msgstr ""
|
1173 |
+
|
1174 |
+
#: classes/class.swpm-settings.php:189
|
1175 |
msgid "Enable Expired Account Login"
|
1176 |
msgstr ""
|
1177 |
|
1178 |
+
#: classes/class.swpm-settings.php:190
|
1179 |
msgid ""
|
1180 |
"When enabled, expired members will be able to log into the system but won't "
|
1181 |
"be able to view any protected content. This allows them to easily renew "
|
1182 |
"their account by making another payment."
|
1183 |
msgstr ""
|
1184 |
|
1185 |
+
#: classes/class.swpm-settings.php:192
|
1186 |
msgid "Membership Renewal URL"
|
1187 |
msgstr ""
|
1188 |
|
1189 |
+
#: classes/class.swpm-settings.php:193
|
1190 |
msgid ""
|
1191 |
"You can create a renewal page for your site. Read <a href=\"https://simple-"
|
1192 |
"membership-plugin.com/creating-membership-renewal-button/\" target=\"_blank"
|
1193 |
"\">this documentation</a> to learn how to create a renewal page."
|
1194 |
msgstr ""
|
1195 |
|
1196 |
+
#: classes/class.swpm-settings.php:195
|
1197 |
msgid "After Registration Redirect URL"
|
1198 |
msgstr ""
|
1199 |
|
1200 |
+
#: classes/class.swpm-settings.php:196
|
1201 |
msgid ""
|
1202 |
"You can enter an URL here to redirect the members to this page after they "
|
1203 |
"submit the registration form. Read <a href=\"https://simple-membership-"
|
1204 |
+
"plugin.com/configure-after-registration-redirect-for-members/\" target="
|
1205 |
+
"\"_blank\">this documentation</a> to learn how to setup after registration "
|
1206 |
+
"redirect."
|
1207 |
+
msgstr ""
|
1208 |
+
|
1209 |
+
#: classes/class.swpm-settings.php:198
|
1210 |
+
msgid "Enable Auto Login After Registration"
|
1211 |
msgstr ""
|
1212 |
|
1213 |
+
#: classes/class.swpm-settings.php:199
|
1214 |
+
msgid ""
|
1215 |
+
"Use this option if you want the members to be automatically logged into your "
|
1216 |
+
"site right after they complete the registration. This option will override "
|
1217 |
+
"any after registration redirection and instead it will trigger the after "
|
1218 |
+
"login redirection. Read <a href=\"https://simple-membership-plugin.com/"
|
1219 |
+
"configure-auto-login-after-registration-members/\" target=\"_blank\">this "
|
1220 |
+
"documentation</a> to learn more."
|
1221 |
+
msgstr ""
|
1222 |
+
|
1223 |
+
#: classes/class.swpm-settings.php:201
|
1224 |
+
msgid "After Logout Redirect URL"
|
1225 |
+
msgstr ""
|
1226 |
+
|
1227 |
+
#: classes/class.swpm-settings.php:202
|
1228 |
+
msgid ""
|
1229 |
+
"You can enter an URL here to redirect the members to this page after they "
|
1230 |
+
"click the logout link to logout from your site."
|
1231 |
+
msgstr ""
|
1232 |
+
|
1233 |
+
#: classes/class.swpm-settings.php:204
|
1234 |
+
msgid "Logout Member on Browser Close"
|
1235 |
+
msgstr ""
|
1236 |
+
|
1237 |
+
#: classes/class.swpm-settings.php:205
|
1238 |
+
msgid ""
|
1239 |
+
"Enable this option if you want the member to be logged out of the account "
|
1240 |
+
"when he closes the browser."
|
1241 |
+
msgstr ""
|
1242 |
+
|
1243 |
+
#: classes/class.swpm-settings.php:207
|
1244 |
msgid "Allow Account Deletion"
|
1245 |
msgstr ""
|
1246 |
|
1247 |
+
#: classes/class.swpm-settings.php:208
|
1248 |
msgid "Allow users to delete their accounts."
|
1249 |
msgstr ""
|
1250 |
|
1251 |
+
#: classes/class.swpm-settings.php:210
|
1252 |
+
msgid "Force Strong Password for Members"
|
1253 |
msgstr ""
|
1254 |
|
1255 |
+
#: classes/class.swpm-settings.php:211
|
1256 |
msgid ""
|
1257 |
+
"Enable this if you want the users to be forced to use a strong password for "
|
1258 |
+
"their accounts."
|
|
|
1259 |
msgstr ""
|
1260 |
|
1261 |
+
#: classes/class.swpm-settings.php:213
|
1262 |
msgid "Use WordPress Timezone"
|
1263 |
msgstr ""
|
1264 |
|
1265 |
+
#: classes/class.swpm-settings.php:214
|
1266 |
msgid ""
|
1267 |
"Use this option if you want to use the timezone value specified in your "
|
1268 |
"WordPress General Settings interface."
|
1269 |
msgstr ""
|
1270 |
|
1271 |
+
#: classes/class.swpm-settings.php:216
|
1272 |
msgid "Auto Delete Pending Account"
|
1273 |
msgstr ""
|
1274 |
|
1275 |
+
#: classes/class.swpm-settings.php:219
|
1276 |
msgid "Select how long you want to keep \"pending\" account."
|
1277 |
msgstr ""
|
1278 |
|
1279 |
+
#: classes/class.swpm-settings.php:221
|
1280 |
msgid "Admin Dashboard Access Permission"
|
1281 |
msgstr ""
|
1282 |
|
1283 |
+
#: classes/class.swpm-settings.php:224
|
1284 |
msgid ""
|
1285 |
"SWPM admin dashboard is accessible to admin users only (just like any other "
|
1286 |
"plugin). You can allow users with other WP user role to access the SWPM "
|
1287 |
"admin dashboard by selecting a value here."
|
1288 |
msgstr ""
|
1289 |
|
1290 |
+
#: classes/class.swpm-settings.php:226
|
1291 |
+
msgid "Force WP User Synchronization"
|
1292 |
+
msgstr ""
|
1293 |
+
|
1294 |
+
#: classes/class.swpm-settings.php:227
|
1295 |
+
msgid ""
|
1296 |
+
"Enable this option if you want to force the member login to be synchronized "
|
1297 |
+
"with WP user account. This can be useful if you are using another plugin "
|
1298 |
+
"that uses WP user records. For example: bbPress plugin."
|
1299 |
+
msgstr ""
|
1300 |
+
|
1301 |
+
#: classes/class.swpm-settings.php:230
|
1302 |
+
msgid "Create Member Accounts for New WP Users"
|
1303 |
+
msgstr ""
|
1304 |
+
|
1305 |
+
#: classes/class.swpm-settings.php:232
|
1306 |
+
msgid "Enable Auto Create Member Accounts"
|
1307 |
+
msgstr ""
|
1308 |
+
|
1309 |
+
#: classes/class.swpm-settings.php:233
|
1310 |
+
msgid ""
|
1311 |
+
"Enable this option to automatically create member accounts for any new WP "
|
1312 |
+
"user that is created by another plugin."
|
1313 |
+
msgstr ""
|
1314 |
+
|
1315 |
+
#: classes/class.swpm-settings.php:236
|
1316 |
+
msgid "Default Membership Level"
|
1317 |
+
msgstr ""
|
1318 |
+
|
1319 |
+
#: classes/class.swpm-settings.php:239
|
1320 |
+
msgid ""
|
1321 |
+
"When automatically creating a member account using this feature, the "
|
1322 |
+
"membership level of the user will be set to the one you specify here."
|
1323 |
+
msgstr ""
|
1324 |
+
|
1325 |
+
#: classes/class.swpm-settings.php:245
|
1326 |
+
msgid ""
|
1327 |
+
"When automatically creating a member account using this feature, the "
|
1328 |
+
"membership account status of the user will be set to the one you specify "
|
1329 |
+
"here."
|
1330 |
+
msgstr ""
|
1331 |
+
|
1332 |
+
#: classes/class.swpm-settings.php:247
|
1333 |
+
msgid "Payment Notification Forward URL"
|
1334 |
+
msgstr ""
|
1335 |
+
|
1336 |
+
#: classes/class.swpm-settings.php:248
|
1337 |
+
msgid ""
|
1338 |
+
"You can enter an URL here to forward the payment notification after the "
|
1339 |
+
"membership payment has been processed by this plugin. Useful if you want to "
|
1340 |
+
"forward the payment notification to an external script for further "
|
1341 |
+
"processing."
|
1342 |
+
msgstr ""
|
1343 |
+
|
1344 |
+
#: classes/class.swpm-settings.php:251 views/add.php:65
|
1345 |
+
msgid "Terms and Conditions"
|
1346 |
+
msgstr ""
|
1347 |
+
|
1348 |
+
#: classes/class.swpm-settings.php:253
|
1349 |
+
msgid "Enable Terms and Conditions"
|
1350 |
+
msgstr ""
|
1351 |
+
|
1352 |
+
#: classes/class.swpm-settings.php:254
|
1353 |
+
msgid "Users must accept the terms before they can complete the registration."
|
1354 |
+
msgstr ""
|
1355 |
+
|
1356 |
+
#: classes/class.swpm-settings.php:255
|
1357 |
+
msgid "Terms and Conditions Page URL"
|
1358 |
+
msgstr ""
|
1359 |
+
|
1360 |
+
#: classes/class.swpm-settings.php:256
|
1361 |
+
msgid ""
|
1362 |
+
"Enter the URL of your terms and conditions page. You can create a WordPress "
|
1363 |
+
"page and specify your terms in there then specify the URL of that page in "
|
1364 |
+
"the above field."
|
1365 |
+
msgstr ""
|
1366 |
+
|
1367 |
+
#: classes/class.swpm-settings.php:257
|
1368 |
+
msgid "Enable Privacy Policy"
|
1369 |
+
msgstr ""
|
1370 |
+
|
1371 |
+
#: classes/class.swpm-settings.php:258
|
1372 |
+
msgid "Users must accept it before they can complete the registration."
|
1373 |
+
msgstr ""
|
1374 |
+
|
1375 |
+
#: classes/class.swpm-settings.php:259
|
1376 |
+
msgid "Privacy Policy Page URL"
|
1377 |
+
msgstr ""
|
1378 |
+
|
1379 |
+
#: classes/class.swpm-settings.php:260
|
1380 |
+
msgid "Enter the URL of your privacy policy page."
|
1381 |
+
msgstr ""
|
1382 |
+
|
1383 |
+
#: classes/class.swpm-settings.php:350 classes/class.swpm-settings.php:396
|
1384 |
+
#: classes/class.swpm-settings.php:425
|
1385 |
msgid "Settings updated!"
|
1386 |
msgstr ""
|
1387 |
|
1388 |
+
#: classes/class.swpm-settings.php:355
|
1389 |
msgid "General Plugin Settings."
|
1390 |
msgstr ""
|
1391 |
|
1392 |
+
#: classes/class.swpm-settings.php:359
|
1393 |
msgid "Page Setup and URL Related settings."
|
1394 |
msgstr ""
|
1395 |
|
1396 |
+
#: classes/class.swpm-settings.php:362
|
1397 |
msgid ""
|
1398 |
"The following pages are required for the plugin to function correctly. These "
|
1399 |
"pages were automatically created by the plugin at install time."
|
1400 |
msgstr ""
|
1401 |
|
1402 |
+
#: classes/class.swpm-settings.php:367
|
1403 |
msgid "Testing and Debug Related Settings."
|
1404 |
msgstr ""
|
1405 |
|
1406 |
+
#: classes/class.swpm-settings.php:371
|
1407 |
msgid ""
|
1408 |
"This email will be sent to your users when they complete the registration "
|
1409 |
"and become a member."
|
1410 |
msgstr ""
|
1411 |
|
1412 |
+
#: classes/class.swpm-settings.php:375
|
1413 |
msgid ""
|
1414 |
"This email will be sent to your users when they use the password reset "
|
1415 |
"functionality."
|
1416 |
msgstr ""
|
1417 |
|
1418 |
+
#: classes/class.swpm-settings.php:381
|
1419 |
msgid ""
|
1420 |
"This interface lets you custsomize the various emails that gets sent to your "
|
1421 |
"members for various actions. The default settings should be good to get your "
|
1422 |
"started."
|
1423 |
msgstr ""
|
1424 |
|
1425 |
+
#: classes/class.swpm-settings.php:385 views/admin_tools_settings.php:82
|
1426 |
msgid "This documentation"
|
1427 |
msgstr ""
|
1428 |
|
1429 |
+
#: classes/class.swpm-settings.php:386
|
1430 |
msgid ""
|
1431 |
" explains what email merge tags you can use in the email body field to "
|
1432 |
"customize it (if you want to)."
|
1433 |
msgstr ""
|
1434 |
|
1435 |
+
#: classes/class.swpm-settings.php:399
|
1436 |
msgid "Settings in this section apply to all emails."
|
1437 |
msgstr ""
|
1438 |
|
1439 |
+
#: classes/class.swpm-settings.php:403
|
1440 |
msgid ""
|
1441 |
"This email will be sent to your users after account upgrade (when an "
|
1442 |
"existing member pays for a new membership level)."
|
1443 |
msgstr ""
|
1444 |
|
1445 |
+
#: classes/class.swpm-settings.php:407
|
1446 |
msgid ""
|
1447 |
"This email will be sent to your members when you use the bulk account "
|
1448 |
"activate and notify action."
|
1449 |
msgstr ""
|
1450 |
|
1451 |
+
#: classes/class.swpm-settings.php:408
|
1452 |
msgid ""
|
1453 |
" You cannot use email merge tags in this email. You can only use generic "
|
1454 |
"text."
|
1455 |
msgstr ""
|
1456 |
|
1457 |
+
#: classes/class.swpm-settings.php:413
|
1458 |
+
msgid ""
|
1459 |
+
"This email will be sent if Email Activation is enabled for a Membership "
|
1460 |
+
"Level."
|
1461 |
+
msgstr ""
|
1462 |
+
|
1463 |
+
#: classes/class.swpm-settings.php:417
|
1464 |
msgid ""
|
1465 |
"This email will be sent to prompt users to complete registration after the "
|
1466 |
"payment."
|
1467 |
msgstr ""
|
1468 |
|
1469 |
+
#: classes/class.swpm-settings.php:428
|
1470 |
msgid "This page allows you to configure some advanced features of the plugin."
|
1471 |
msgstr ""
|
1472 |
|
1473 |
+
#: classes/class.swpm-settings.php:432
|
1474 |
+
msgid ""
|
1475 |
+
"This section allows you to configure automatic creation of member accounts "
|
1476 |
+
"when new WP User records are created by another plugin. It can be useful if "
|
1477 |
+
"you are using another plugin that creates WP user records and you want them "
|
1478 |
+
"to be recognized in the membership plugin."
|
1479 |
+
msgstr ""
|
1480 |
+
|
1481 |
+
#: classes/class.swpm-settings.php:436
|
1482 |
+
msgid ""
|
1483 |
+
"This section allows you to configure terms and conditions and privacy policy "
|
1484 |
+
"that users must accept at registration time."
|
1485 |
+
msgstr ""
|
1486 |
+
|
1487 |
+
#: classes/class.swpm-settings.php:565
|
1488 |
msgid "Simple WP Membership::Settings"
|
1489 |
msgstr ""
|
1490 |
|
1491 |
+
#: classes/class.swpm-utils-member.php:36
|
1492 |
+
#: classes/class.swpm-utils-member.php:44
|
1493 |
+
#: classes/class.swpm-utils-member.php:52
|
1494 |
+
#: classes/class.swpm-utils-member.php:62
|
1495 |
msgid "User is not logged in."
|
1496 |
msgstr ""
|
1497 |
|
1498 |
+
#: classes/class.swpm-utils-member.php:80
|
1499 |
+
msgid "No Expiry"
|
1500 |
+
msgstr ""
|
1501 |
+
|
1502 |
#: classes/class.swpm-utils-misc.php:50
|
1503 |
msgid "Registration"
|
1504 |
msgstr ""
|
1508 |
msgstr ""
|
1509 |
|
1510 |
#: classes/class.swpm-utils-misc.php:96
|
1511 |
+
#: classes/shortcode-related/class.swpm-shortcodes-handler.php:117
|
1512 |
msgid "Profile"
|
1513 |
msgstr ""
|
1514 |
|
1516 |
msgid "Password Reset"
|
1517 |
msgstr ""
|
1518 |
|
1519 |
+
#: classes/class.swpm-utils-misc.php:168
|
1520 |
+
#, php-format
|
1521 |
+
msgid ""
|
1522 |
+
"You will be automatically redirected in a few seconds. If not, please %s."
|
1523 |
+
msgstr ""
|
1524 |
+
|
1525 |
+
#: classes/class.swpm-utils-misc.php:172
|
1526 |
+
msgid "Action Status"
|
1527 |
+
msgstr ""
|
1528 |
+
|
1529 |
+
#: classes/class.swpm-utils-misc.php:274
|
1530 |
msgid "Not a Member?"
|
1531 |
msgstr ""
|
1532 |
|
1533 |
+
#: classes/class.swpm-utils-misc.php:285
|
1534 |
msgid "renew"
|
1535 |
msgstr ""
|
1536 |
|
1537 |
+
#: classes/class.swpm-utils-misc.php:285
|
1538 |
msgid " your account to gain access to this content."
|
1539 |
msgstr ""
|
1540 |
|
1541 |
+
#: classes/class.swpm-utils-misc.php:343 classes/class.swpm-utils-misc.php:349
|
1542 |
msgid "Error! This action ("
|
1543 |
msgstr ""
|
1544 |
|
1545 |
+
#: classes/class.swpm-utils-misc.php:421
|
1546 |
msgid "(Please Select)"
|
1547 |
msgstr ""
|
1548 |
|
1550 |
msgid "Error! Failed to find a template path for the specified template: "
|
1551 |
msgstr ""
|
1552 |
|
1553 |
+
#: classes/class.swpm-utils.php:101
|
1554 |
msgid "Never"
|
1555 |
msgstr ""
|
1556 |
|
1557 |
+
#: classes/class.swpm-utils.php:116 views/admin_members_list.php:19
|
1558 |
msgid "Active"
|
1559 |
msgstr ""
|
1560 |
|
1561 |
+
#: classes/class.swpm-utils.php:117 views/admin_members_list.php:20
|
1562 |
msgid "Inactive"
|
1563 |
msgstr ""
|
1564 |
|
1565 |
+
#: classes/class.swpm-utils.php:118 views/admin_members_list.php:21
|
1566 |
+
msgid "Activation Required"
|
1567 |
+
msgstr ""
|
1568 |
+
|
1569 |
+
#: classes/class.swpm-utils.php:119 views/admin_members_list.php:22
|
1570 |
msgid "Pending"
|
1571 |
msgstr ""
|
1572 |
|
1573 |
+
#: classes/class.swpm-utils.php:120 views/admin_members_list.php:24
|
1574 |
msgid "Expired"
|
1575 |
msgstr ""
|
1576 |
|
1577 |
+
#: classes/class.swpm-utils.php:414 views/account_delete_warning.php:3
|
1578 |
msgid "Delete Account"
|
1579 |
msgstr ""
|
1580 |
|
1622 |
msgstr ""
|
1623 |
|
1624 |
#: classes/admin-includes/class.swpm-payments-list-table.php:57
|
1625 |
+
#: views/template-1.php:95 views/template-2.php:97
|
1626 |
msgid "View Profile"
|
1627 |
msgstr ""
|
1628 |
|
1651 |
msgid "Amount"
|
1652 |
msgstr ""
|
1653 |
|
1654 |
+
#: classes/shortcode-related/class.swpm-shortcodes-handler.php:60
|
1655 |
msgid "Your membership profile will be updated to reflect the payment."
|
1656 |
msgstr ""
|
1657 |
|
1658 |
+
#: classes/shortcode-related/class.swpm-shortcodes-handler.php:61
|
1659 |
msgid "Your profile username: "
|
1660 |
msgstr ""
|
1661 |
|
1662 |
+
#: classes/shortcode-related/class.swpm-shortcodes-handler.php:73
|
1663 |
msgid "Click on the following link to complete the registration."
|
1664 |
msgstr ""
|
1665 |
|
1666 |
+
#: classes/shortcode-related/class.swpm-shortcodes-handler.php:74
|
1667 |
msgid "Click here to complete your paid registration"
|
1668 |
msgstr ""
|
1669 |
|
1670 |
+
#: classes/shortcode-related/class.swpm-shortcodes-handler.php:79
|
1671 |
msgid ""
|
1672 |
"If you have just made a membership payment then your payment is yet to be "
|
1673 |
"processed. Please check back in a few minutes. An email will be sent to you "
|
1674 |
"with the details shortly."
|
1675 |
msgstr ""
|
1676 |
|
1677 |
+
#: classes/shortcode-related/class.swpm-shortcodes-handler.php:93
|
1678 |
msgid "Expiry: "
|
1679 |
msgstr ""
|
1680 |
|
1681 |
+
#: classes/shortcode-related/class.swpm-shortcodes-handler.php:95
|
1682 |
msgid "You are not logged-in as a member"
|
1683 |
msgstr ""
|
1684 |
|
1685 |
+
#: classes/shortcode-related/class.swpm-shortcodes-handler.php:115
|
1686 |
msgid "Logged in as: "
|
1687 |
msgstr ""
|
1688 |
|
1689 |
+
#: classes/shortcode-related/class.swpm-shortcodes-handler.php:118
|
1690 |
+
#: views/loggedin.php:31
|
1691 |
+
msgid "Logout"
|
1692 |
+
msgstr ""
|
1693 |
+
|
1694 |
#: classes/shortcode-related/class.swpm-shortcodes-handler.php:121
|
1695 |
msgid "Login Here"
|
1696 |
msgstr ""
|
1703 |
msgid "Join Now"
|
1704 |
msgstr ""
|
1705 |
|
1706 |
+
#: ipn/swpm-smart-checkout-ipn.php:260 ipn/swpm-smart-checkout-ipn.php:285
|
1707 |
+
#, php-format
|
1708 |
+
msgid "Error occured during payment verification. Error code: %d. Message: %s"
|
1709 |
+
msgstr ""
|
1710 |
+
|
1711 |
+
#: ipn/swpm-smart-checkout-ipn.php:298
|
1712 |
+
#, php-format
|
1713 |
+
msgid ""
|
1714 |
+
"Payment check failed: invalid amount received. Expected %s %s, got %s %s."
|
1715 |
+
msgstr ""
|
1716 |
+
|
1717 |
+
#: ipn/swpm-smart-checkout-ipn.php:315
|
1718 |
+
msgid "Empty payment data received."
|
1719 |
+
msgstr ""
|
1720 |
+
|
1721 |
+
#: ipn/swpm-smart-checkout-ipn.php:355
|
1722 |
+
msgid "IPN product validation failed. Check debug log for more details."
|
1723 |
+
msgstr ""
|
1724 |
+
|
1725 |
+
#: views/account_delete_warning.php:7
|
1726 |
+
msgid ""
|
1727 |
+
"You are about to delete an account. This will delete user data associated "
|
1728 |
+
"with this account. "
|
1729 |
+
msgstr ""
|
1730 |
+
|
1731 |
+
#: views/account_delete_warning.php:8
|
1732 |
+
msgid "It will also delete associated WordPress user account."
|
1733 |
+
msgstr ""
|
1734 |
+
|
1735 |
+
#: views/account_delete_warning.php:9
|
1736 |
+
msgid ""
|
1737 |
+
"(NOTE: for safety, we do not allow deletion of any associated WordPress "
|
1738 |
+
"account with administrator role)."
|
1739 |
+
msgstr ""
|
1740 |
+
|
1741 |
+
#: views/account_delete_warning.php:10
|
1742 |
+
msgid "Continue?"
|
1743 |
+
msgstr ""
|
1744 |
+
|
1745 |
+
#: views/account_delete_warning.php:13
|
1746 |
+
msgid "Password: "
|
1747 |
+
msgstr ""
|
1748 |
+
|
1749 |
+
#: views/account_delete_warning.php:14
|
1750 |
+
msgid "Confirm Account Deletion"
|
1751 |
+
msgstr ""
|
1752 |
+
|
1753 |
+
#: views/add.php:24 views/admin_add.php:19 views/admin_edit.php:44
|
1754 |
+
#: views/edit.php:31 views/login.php:17
|
1755 |
msgid "Password"
|
1756 |
msgstr ""
|
1757 |
|
1758 |
+
#: views/add.php:28 views/edit.php:35
|
1759 |
msgid "Repeat Password"
|
1760 |
msgstr ""
|
1761 |
|
1762 |
+
#: views/add.php:65
|
1763 |
+
msgid "I accept the "
|
1764 |
+
msgstr ""
|
1765 |
+
|
1766 |
+
#: views/add.php:77
|
1767 |
+
msgid "I agree to the "
|
1768 |
+
msgstr ""
|
1769 |
+
|
1770 |
+
#: views/add.php:77
|
1771 |
+
msgid "Privacy Policy"
|
1772 |
+
msgstr ""
|
1773 |
+
|
1774 |
+
#: views/add.php:88
|
1775 |
msgid "Register"
|
1776 |
msgstr ""
|
1777 |
|
1879 |
msgid "(Access expires on a fixed date)"
|
1880 |
msgstr ""
|
1881 |
|
1882 |
+
#: views/admin_add_level.php:38 views/admin_edit_level.php:46
|
1883 |
+
msgid "Email Activation"
|
1884 |
+
msgstr ""
|
1885 |
+
|
1886 |
+
#: views/admin_add_level.php:43
|
1887 |
+
msgid ""
|
1888 |
+
"Enable new user activation via email. When enabled, members will need to "
|
1889 |
+
"click on an activation link that is sent to their email address to activate "
|
1890 |
+
"the account. Useful for free membership. "
|
1891 |
+
msgstr ""
|
1892 |
+
|
1893 |
+
#: views/admin_add_level.php:44 views/admin_edit_level.php:52
|
1894 |
+
msgid "View Documentation"
|
1895 |
+
msgstr ""
|
1896 |
+
|
1897 |
+
#: views/admin_add_level.php:45 views/admin_edit_level.php:53
|
1898 |
+
msgid "Note:"
|
1899 |
+
msgstr ""
|
1900 |
+
|
1901 |
+
#: views/admin_add_level.php:45 views/admin_edit_level.php:53
|
1902 |
+
msgid ""
|
1903 |
+
"If enabled, decryptable member password is temporarily stored in the "
|
1904 |
+
"database until the account is activated."
|
1905 |
+
msgstr ""
|
1906 |
+
|
1907 |
+
#: views/admin_add_level.php:52
|
1908 |
msgid "Add New Membership Level "
|
1909 |
msgstr ""
|
1910 |
|
1926 |
"membership level)."
|
1927 |
msgstr ""
|
1928 |
|
1929 |
+
#: views/admin_category_list.php:11 views/admin_post_list.php:11
|
1930 |
+
msgid "Read the "
|
1931 |
+
msgstr ""
|
1932 |
+
|
1933 |
+
#: views/admin_category_list.php:11
|
1934 |
+
msgid "category protection documentation"
|
1935 |
+
msgstr ""
|
1936 |
+
|
1937 |
#: views/admin_category_list.php:17 views/admin_post_list.php:27
|
1938 |
msgid "Membership Level:"
|
1939 |
msgstr ""
|
1940 |
|
1941 |
+
#: views/admin_category_list.php:19 views/admin_post_list.php:29
|
1942 |
+
msgid "General Protection"
|
1943 |
+
msgstr ""
|
1944 |
+
|
1945 |
#: views/admin_category_list.php:23 views/admin_post_list.php:33
|
1946 |
+
#: views/edit.php:83
|
1947 |
msgid "Update"
|
1948 |
msgstr ""
|
1949 |
|
1963 |
msgid "(twice, leave empty to retain old password)"
|
1964 |
msgstr ""
|
1965 |
|
1966 |
+
#: views/admin_edit.php:59
|
1967 |
+
msgid ""
|
1968 |
+
"This is the member's account status. If you want to manually activate an "
|
1969 |
+
"expired member's account then read"
|
1970 |
+
msgstr ""
|
1971 |
+
|
1972 |
#: views/admin_edit.php:60
|
1973 |
+
msgid "this documentation"
|
1974 |
+
msgstr ""
|
1975 |
+
|
1976 |
+
#: views/admin_edit.php:61
|
1977 |
+
msgid " to learn how to do it."
|
1978 |
+
msgstr ""
|
1979 |
+
|
1980 |
+
#: views/admin_edit.php:66
|
1981 |
msgid "Notify User"
|
1982 |
msgstr ""
|
1983 |
|
1984 |
+
#: views/admin_edit.php:69
|
1985 |
+
msgid ""
|
1986 |
+
"You can use this option to send a quick notification email to this member "
|
1987 |
+
"(the email will be sent when you hit the save button below)."
|
1988 |
+
msgstr ""
|
1989 |
+
|
1990 |
+
#: views/admin_edit.php:75
|
1991 |
msgid "Subscriber ID/Reference"
|
1992 |
msgstr ""
|
1993 |
|
1994 |
+
#: views/admin_edit.php:79
|
1995 |
msgid "Last Accessed Date"
|
1996 |
msgstr ""
|
1997 |
|
1998 |
+
#: views/admin_edit.php:82 views/admin_edit.php:89
|
1999 |
msgid "This value gets updated when this member logs into your site."
|
2000 |
msgstr ""
|
2001 |
|
2002 |
+
#: views/admin_edit.php:86
|
2003 |
msgid "Last Accessed From IP"
|
2004 |
msgstr ""
|
2005 |
|
2006 |
+
#: views/admin_edit.php:97
|
2007 |
msgid "Save Data"
|
2008 |
msgstr ""
|
2009 |
|
2010 |
+
#: views/admin_edit.php:102
|
2011 |
msgid "Delete User Profile"
|
2012 |
msgstr ""
|
2013 |
|
2032 |
msgid "Weeks (Access expires after given number of weeks)"
|
2033 |
msgstr ""
|
2034 |
|
2035 |
+
#: views/admin_edit_level.php:51
|
2036 |
+
msgid ""
|
2037 |
+
"Enable new user activation via email. When enabled, members will need to "
|
2038 |
+
"click on an activation link that is sent to their email address to activate "
|
2039 |
+
"the account. Useful for free membership."
|
2040 |
+
msgstr ""
|
2041 |
+
|
2042 |
+
#: views/admin_edit_level.php:60
|
2043 |
msgid "Save Membership Level "
|
2044 |
msgstr ""
|
2045 |
|
2051 |
msgid "All"
|
2052 |
msgstr ""
|
2053 |
|
2054 |
+
#: views/admin_members_list.php:23
|
2055 |
msgid "Incomplete"
|
2056 |
msgstr ""
|
2057 |
|
2058 |
#: views/admin_member_form_common_part.php:23
|
2059 |
+
#: includes/swpm_mda_show_profile.php:37
|
2060 |
msgid "Gender"
|
2061 |
msgstr ""
|
2062 |
|
2063 |
+
#: views/admin_member_form_common_part.php:30 views/edit.php:47
|
2064 |
+
#: includes/swpm_mda_show_profile.php:34
|
2065 |
msgid "Phone"
|
2066 |
msgstr ""
|
2067 |
|
2068 |
+
#: views/admin_member_form_common_part.php:34 views/edit.php:51
|
2069 |
msgid "Street"
|
2070 |
msgstr ""
|
2071 |
|
2072 |
+
#: views/admin_member_form_common_part.php:38 views/edit.php:55
|
2073 |
msgid "City"
|
2074 |
msgstr ""
|
2075 |
|
2076 |
+
#: views/admin_member_form_common_part.php:42 views/edit.php:59
|
2077 |
msgid "State"
|
2078 |
msgstr ""
|
2079 |
|
2080 |
+
#: views/admin_member_form_common_part.php:46 views/edit.php:63
|
2081 |
msgid "Zipcode"
|
2082 |
msgstr ""
|
2083 |
|
2084 |
+
#: views/admin_member_form_common_part.php:50 views/edit.php:67
|
2085 |
+
#: includes/swpm_mda_show_profile.php:33
|
2086 |
msgid "Country"
|
2087 |
msgstr ""
|
2088 |
|
2089 |
#: views/admin_member_form_common_part.php:54
|
2090 |
+
#: includes/swpm_mda_show_profile.php:38
|
2091 |
msgid "Company"
|
2092 |
msgstr ""
|
2093 |
|
2094 |
#: views/admin_member_form_common_part.php:58
|
2095 |
+
#: includes/swpm_mda_show_profile.php:36
|
2096 |
msgid "Member Since"
|
2097 |
msgstr ""
|
2098 |
|
2110 |
"membership level)."
|
2111 |
msgstr ""
|
2112 |
|
2113 |
+
#: views/admin_post_list.php:11
|
2114 |
+
msgid "bulk protect posts and pages documentation"
|
2115 |
+
msgstr ""
|
2116 |
+
|
2117 |
+
#: views/admin_post_list.php:11
|
2118 |
+
msgid " to learn how to use it."
|
2119 |
+
msgstr ""
|
2120 |
+
|
2121 |
#: views/admin_post_list.php:21
|
2122 |
msgid "Posts"
|
2123 |
msgstr ""
|
2130 |
msgid "Custom Posts"
|
2131 |
msgstr ""
|
2132 |
|
2133 |
+
#: views/admin_tools_settings.php:14
|
2134 |
+
msgid "The required pages have been re-created."
|
2135 |
+
msgstr ""
|
2136 |
+
|
2137 |
+
#: views/admin_tools_settings.php:21
|
2138 |
msgid "Generate a Registration Completion link"
|
2139 |
msgstr ""
|
2140 |
|
2141 |
+
#: views/admin_tools_settings.php:24
|
2142 |
msgid ""
|
2143 |
"You can manually generate a registration completion link here and give it to "
|
2144 |
"your customer if they have missed the email that was automatically sent out "
|
2145 |
"to them after the payment."
|
2146 |
msgstr ""
|
2147 |
|
2148 |
+
#: views/admin_tools_settings.php:29
|
2149 |
msgid "Generate Registration Completion Link"
|
2150 |
msgstr ""
|
2151 |
|
2152 |
+
#: views/admin_tools_settings.php:30
|
2153 |
msgid "For a Particular Member ID"
|
2154 |
msgstr ""
|
2155 |
|
2156 |
+
#: views/admin_tools_settings.php:32
|
2157 |
msgid "OR"
|
2158 |
msgstr ""
|
2159 |
|
2160 |
+
#: views/admin_tools_settings.php:33
|
2161 |
msgid "For All Incomplete Registrations"
|
2162 |
msgstr ""
|
2163 |
|
2164 |
+
#: views/admin_tools_settings.php:38
|
2165 |
msgid "Send Registration Reminder Email Too"
|
2166 |
msgstr ""
|
2167 |
|
2168 |
+
#: views/admin_tools_settings.php:44
|
2169 |
msgid "Submit"
|
2170 |
msgstr ""
|
2171 |
|
2172 |
+
#: views/admin_tools_settings.php:53
|
2173 |
msgid ""
|
2174 |
"Link(s) generated successfully. The following link(s) can be used to "
|
2175 |
"complete the registration."
|
2176 |
msgstr ""
|
2177 |
|
2178 |
+
#: views/admin_tools_settings.php:55
|
2179 |
msgid "Registration completion links will appear below"
|
2180 |
msgstr ""
|
2181 |
|
2182 |
+
#: views/admin_tools_settings.php:65
|
2183 |
msgid "A prompt to complete registration email was also sent."
|
2184 |
msgstr ""
|
2185 |
|
2186 |
+
#: views/admin_tools_settings.php:78 views/admin_tools_settings.php:88
|
2187 |
+
msgid "Re-create the Required Pages"
|
2188 |
+
msgstr ""
|
2189 |
+
|
2190 |
+
#: views/admin_tools_settings.php:81
|
2191 |
+
msgid ""
|
2192 |
+
"If you have accidentally deleted the required pages that this plugin creates "
|
2193 |
+
"at install time, you can use this option to re-create them."
|
2194 |
+
msgstr ""
|
2195 |
+
|
2196 |
+
#: views/admin_tools_settings.php:82
|
2197 |
+
msgid " has full explanation."
|
2198 |
+
msgstr ""
|
2199 |
+
|
2200 |
+
#: views/edit.php:32 views/edit.php:36
|
2201 |
msgid "Leave empty to keep the current password"
|
2202 |
msgstr ""
|
2203 |
|
2204 |
+
#: views/edit.php:71
|
2205 |
msgid "Company Name"
|
2206 |
msgstr ""
|
2207 |
|
2225 |
msgid "Edit Profile"
|
2226 |
msgstr ""
|
2227 |
|
|
|
|
|
|
|
|
|
2228 |
#: views/login.php:11
|
2229 |
msgid "Username or Email"
|
2230 |
msgstr ""
|
2245 |
msgid "Search for a transaction by using email or name"
|
2246 |
msgstr ""
|
2247 |
|
2248 |
+
#: views/payments/admin_create_payment_buttons.php:15
|
2249 |
msgid ""
|
2250 |
"You can create new payment button for your memberships using this interface."
|
2251 |
msgstr ""
|
2252 |
|
2253 |
+
#: views/payments/admin_create_payment_buttons.php:23
|
2254 |
msgid "Select Payment Button Type"
|
2255 |
msgstr ""
|
2256 |
|
2257 |
+
#: views/payments/admin_create_payment_buttons.php:26
|
2258 |
msgid "PayPal Buy Now"
|
2259 |
msgstr ""
|
2260 |
|
2261 |
+
#: views/payments/admin_create_payment_buttons.php:28
|
2262 |
msgid "PayPal Subscription"
|
2263 |
msgstr ""
|
2264 |
|
2265 |
+
#: views/payments/admin_create_payment_buttons.php:30
|
2266 |
+
msgid "PayPal Smart Checkout"
|
2267 |
+
msgstr ""
|
2268 |
+
|
2269 |
+
#: views/payments/admin_create_payment_buttons.php:32
|
2270 |
msgid "Stripe Buy Now"
|
2271 |
msgstr ""
|
2272 |
|
2273 |
+
#: views/payments/admin_create_payment_buttons.php:34
|
2274 |
msgid "Stripe Subscription"
|
2275 |
msgstr ""
|
2276 |
|
2277 |
+
#: views/payments/admin_create_payment_buttons.php:36
|
2278 |
msgid "Braintree Buy Now"
|
2279 |
msgstr ""
|
2280 |
|
2281 |
+
#: views/payments/admin_create_payment_buttons.php:43
|
2282 |
msgid "Next"
|
2283 |
msgstr ""
|
2284 |
|
2285 |
+
#: views/payments/admin_edit_payment_buttons.php:15
|
2286 |
msgid "You can edit a payment button using this interface."
|
2287 |
msgstr ""
|
2288 |
|
2323 |
|
2324 |
#: views/payments/payment-gateway/admin_braintree_buy_now_button.php:34
|
2325 |
#: views/payments/payment-gateway/admin_paypal_buy_now_button.php:213
|
2326 |
+
#: views/payments/payment-gateway/admin_paypal_smart_checkout_button.php:33
|
2327 |
#: views/payments/payment-gateway/admin_paypal_subscription_button.php:301
|
2328 |
#: views/payments/payment-gateway/admin_stripe_buy_now_button.php:259
|
2329 |
#: views/payments/payment-gateway/admin_stripe_subscription_button.php:83
|
2333 |
#: views/payments/payment-gateway/admin_braintree_buy_now_button.php:42
|
2334 |
#: views/payments/payment-gateway/admin_paypal_buy_now_button.php:26
|
2335 |
#: views/payments/payment-gateway/admin_paypal_buy_now_button.php:221
|
2336 |
+
#: views/payments/payment-gateway/admin_paypal_smart_checkout_button.php:41
|
2337 |
#: views/payments/payment-gateway/admin_paypal_subscription_button.php:27
|
2338 |
#: views/payments/payment-gateway/admin_paypal_subscription_button.php:309
|
2339 |
#: views/payments/payment-gateway/admin_stripe_buy_now_button.php:39
|
2345 |
#: views/payments/payment-gateway/admin_braintree_buy_now_button.php:60
|
2346 |
#: views/payments/payment-gateway/admin_paypal_buy_now_button.php:44
|
2347 |
#: views/payments/payment-gateway/admin_paypal_buy_now_button.php:239
|
2348 |
+
#: views/payments/payment-gateway/admin_paypal_smart_checkout_button.php:59
|
2349 |
#: views/payments/payment-gateway/admin_stripe_buy_now_button.php:57
|
2350 |
#: views/payments/payment-gateway/admin_stripe_buy_now_button.php:282
|
2351 |
msgid "Payment Amount"
|
2382 |
#: views/payments/payment-gateway/admin_braintree_buy_now_button.php:117
|
2383 |
#: views/payments/payment-gateway/admin_paypal_buy_now_button.php:92
|
2384 |
#: views/payments/payment-gateway/admin_paypal_buy_now_button.php:287
|
2385 |
+
#: views/payments/payment-gateway/admin_paypal_smart_checkout_button.php:204
|
2386 |
#: views/payments/payment-gateway/admin_paypal_subscription_button.php:172
|
2387 |
#: views/payments/payment-gateway/admin_paypal_subscription_button.php:456
|
2388 |
#: views/payments/payment-gateway/admin_stripe_buy_now_button.php:149
|
2394 |
#: views/payments/payment-gateway/admin_braintree_buy_now_button.php:127
|
2395 |
#: views/payments/payment-gateway/admin_paypal_buy_now_button.php:126
|
2396 |
#: views/payments/payment-gateway/admin_paypal_buy_now_button.php:321
|
2397 |
+
#: views/payments/payment-gateway/admin_paypal_smart_checkout_button.php:214
|
2398 |
#: views/payments/payment-gateway/admin_paypal_subscription_button.php:200
|
2399 |
#: views/payments/payment-gateway/admin_paypal_subscription_button.php:484
|
2400 |
#: views/payments/payment-gateway/admin_stripe_buy_now_button.php:159
|
2410 |
|
2411 |
#: views/payments/payment-gateway/admin_paypal_buy_now_button.php:52
|
2412 |
#: views/payments/payment-gateway/admin_paypal_buy_now_button.php:247
|
2413 |
+
#: views/payments/payment-gateway/admin_paypal_smart_checkout_button.php:67
|
2414 |
#: views/payments/payment-gateway/admin_paypal_subscription_button.php:45
|
2415 |
#: views/payments/payment-gateway/admin_paypal_subscription_button.php:327
|
2416 |
#: views/payments/payment-gateway/admin_stripe_buy_now_button.php:65
|
2440 |
msgid "Custom Checkout Page Logo Image"
|
2441 |
msgstr ""
|
2442 |
|
2443 |
+
#: views/payments/payment-gateway/admin_paypal_smart_checkout_button.php:21
|
2444 |
+
msgid "PayPal Smart Checkout Button Configuration"
|
2445 |
+
msgstr ""
|
2446 |
+
|
2447 |
+
#: views/payments/payment-gateway/admin_paypal_smart_checkout_button.php:107
|
2448 |
+
msgid ""
|
2449 |
+
"PayPal Smart Checkout API Credentials (you can get this from your PayPal "
|
2450 |
+
"account)"
|
2451 |
+
msgstr ""
|
2452 |
+
|
2453 |
+
#: views/payments/payment-gateway/admin_paypal_smart_checkout_button.php:111
|
2454 |
+
msgid "Live Client ID"
|
2455 |
+
msgstr ""
|
2456 |
+
|
2457 |
+
#: views/payments/payment-gateway/admin_paypal_smart_checkout_button.php:119
|
2458 |
+
msgid "Live Secret"
|
2459 |
+
msgstr ""
|
2460 |
+
|
2461 |
+
#: views/payments/payment-gateway/admin_paypal_smart_checkout_button.php:127
|
2462 |
+
msgid "Sandbox Client ID"
|
2463 |
+
msgstr ""
|
2464 |
+
|
2465 |
+
#: views/payments/payment-gateway/admin_paypal_smart_checkout_button.php:135
|
2466 |
+
msgid "Sandbox Secret"
|
2467 |
+
msgstr ""
|
2468 |
+
|
2469 |
+
#: views/payments/payment-gateway/admin_paypal_smart_checkout_button.php:143
|
2470 |
+
msgid "Button Appearance Settings"
|
2471 |
+
msgstr ""
|
2472 |
+
|
2473 |
+
#: views/payments/payment-gateway/admin_paypal_smart_checkout_button.php:147
|
2474 |
+
msgid "Size"
|
2475 |
+
msgstr ""
|
2476 |
+
|
2477 |
+
#: views/payments/payment-gateway/admin_paypal_smart_checkout_button.php:150
|
2478 |
+
msgid "Medium"
|
2479 |
+
msgstr ""
|
2480 |
+
|
2481 |
+
#: views/payments/payment-gateway/admin_paypal_smart_checkout_button.php:151
|
2482 |
+
msgid "Large"
|
2483 |
+
msgstr ""
|
2484 |
+
|
2485 |
+
#: views/payments/payment-gateway/admin_paypal_smart_checkout_button.php:152
|
2486 |
+
msgid "Repsonsive"
|
2487 |
+
msgstr ""
|
2488 |
+
|
2489 |
+
#: views/payments/payment-gateway/admin_paypal_smart_checkout_button.php:154
|
2490 |
+
msgid "Select button size."
|
2491 |
+
msgstr ""
|
2492 |
+
|
2493 |
+
#: views/payments/payment-gateway/admin_paypal_smart_checkout_button.php:158
|
2494 |
+
msgid "Color"
|
2495 |
+
msgstr ""
|
2496 |
+
|
2497 |
+
#: views/payments/payment-gateway/admin_paypal_smart_checkout_button.php:161
|
2498 |
+
msgid "Gold"
|
2499 |
+
msgstr ""
|
2500 |
+
|
2501 |
+
#: views/payments/payment-gateway/admin_paypal_smart_checkout_button.php:162
|
2502 |
+
msgid "Blue"
|
2503 |
+
msgstr ""
|
2504 |
+
|
2505 |
+
#: views/payments/payment-gateway/admin_paypal_smart_checkout_button.php:163
|
2506 |
+
msgid "Silver"
|
2507 |
+
msgstr ""
|
2508 |
+
|
2509 |
+
#: views/payments/payment-gateway/admin_paypal_smart_checkout_button.php:164
|
2510 |
+
msgid "Black"
|
2511 |
+
msgstr ""
|
2512 |
+
|
2513 |
+
#: views/payments/payment-gateway/admin_paypal_smart_checkout_button.php:166
|
2514 |
+
msgid "Select button color."
|
2515 |
+
msgstr ""
|
2516 |
+
|
2517 |
+
#: views/payments/payment-gateway/admin_paypal_smart_checkout_button.php:170
|
2518 |
+
msgid "Shape"
|
2519 |
+
msgstr ""
|
2520 |
+
|
2521 |
+
#: views/payments/payment-gateway/admin_paypal_smart_checkout_button.php:172
|
2522 |
+
msgid "Rectangular"
|
2523 |
+
msgstr ""
|
2524 |
+
|
2525 |
+
#: views/payments/payment-gateway/admin_paypal_smart_checkout_button.php:173
|
2526 |
+
msgid "Pill"
|
2527 |
+
msgstr ""
|
2528 |
+
|
2529 |
+
#: views/payments/payment-gateway/admin_paypal_smart_checkout_button.php:174
|
2530 |
+
msgid "Select button shape."
|
2531 |
+
msgstr ""
|
2532 |
+
|
2533 |
+
#: views/payments/payment-gateway/admin_paypal_smart_checkout_button.php:178
|
2534 |
+
msgid "Layout"
|
2535 |
+
msgstr ""
|
2536 |
+
|
2537 |
+
#: views/payments/payment-gateway/admin_paypal_smart_checkout_button.php:180
|
2538 |
+
msgid "Vertical"
|
2539 |
+
msgstr ""
|
2540 |
+
|
2541 |
+
#: views/payments/payment-gateway/admin_paypal_smart_checkout_button.php:181
|
2542 |
+
msgid "Horizontal"
|
2543 |
+
msgstr ""
|
2544 |
+
|
2545 |
+
#: views/payments/payment-gateway/admin_paypal_smart_checkout_button.php:182
|
2546 |
+
msgid "Select button layout."
|
2547 |
+
msgstr ""
|
2548 |
+
|
2549 |
+
#: views/payments/payment-gateway/admin_paypal_smart_checkout_button.php:187
|
2550 |
+
msgid "Additional Settings"
|
2551 |
+
msgstr ""
|
2552 |
+
|
2553 |
+
#: views/payments/payment-gateway/admin_paypal_smart_checkout_button.php:191
|
2554 |
+
msgid "Payment Methods"
|
2555 |
+
msgstr ""
|
2556 |
+
|
2557 |
+
#: views/payments/payment-gateway/admin_paypal_smart_checkout_button.php:193
|
2558 |
+
msgid "PayPal Credit"
|
2559 |
+
msgstr ""
|
2560 |
+
|
2561 |
+
#: views/payments/payment-gateway/admin_paypal_smart_checkout_button.php:194
|
2562 |
+
msgid "ELV"
|
2563 |
+
msgstr ""
|
2564 |
+
|
2565 |
+
#: views/payments/payment-gateway/admin_paypal_smart_checkout_button.php:195
|
2566 |
+
msgid ""
|
2567 |
+
"Select payment methods that could be used by customers. Note that payment "
|
2568 |
+
"with cards is always enabled."
|
2569 |
+
msgstr ""
|
2570 |
+
|
2571 |
+
#: views/payments/payment-gateway/admin_paypal_smart_checkout_button.php:200
|
2572 |
+
msgid "The following details are optional"
|
2573 |
+
msgstr ""
|
2574 |
+
|
2575 |
#: views/payments/payment-gateway/admin_paypal_subscription_button.php:18
|
2576 |
#: views/payments/payment-gateway/admin_paypal_subscription_button.php:295
|
2577 |
msgid "PayPal Subscription Button Configuration"
|
2631 |
|
2632 |
#: views/payments/payment-gateway/admin_stripe_buy_now_button.php:108
|
2633 |
#: views/payments/payment-gateway/admin_stripe_buy_now_button.php:332
|
2634 |
+
#: views/payments/payment-gateway/admin_stripe_subscription_button.php:131
|
2635 |
+
msgid "Test Publishable Key"
|
2636 |
msgstr ""
|
2637 |
|
2638 |
#: views/payments/payment-gateway/admin_stripe_buy_now_button.php:115
|
2639 |
#: views/payments/payment-gateway/admin_stripe_buy_now_button.php:339
|
2640 |
+
#: views/payments/payment-gateway/admin_stripe_subscription_button.php:139
|
2641 |
+
msgid "Test Secret Key"
|
2642 |
msgstr ""
|
2643 |
|
2644 |
#: views/payments/payment-gateway/admin_stripe_buy_now_button.php:122
|
2645 |
#: views/payments/payment-gateway/admin_stripe_buy_now_button.php:346
|
2646 |
+
#: views/payments/payment-gateway/admin_stripe_subscription_button.php:147
|
2647 |
+
msgid "Live Publishable Key"
|
2648 |
msgstr ""
|
2649 |
|
2650 |
#: views/payments/payment-gateway/admin_stripe_buy_now_button.php:129
|
2651 |
#: views/payments/payment-gateway/admin_stripe_buy_now_button.php:353
|
2652 |
+
#: views/payments/payment-gateway/admin_stripe_subscription_button.php:155
|
2653 |
+
msgid "Live Secret Key"
|
2654 |
msgstr ""
|
2655 |
|
2656 |
#: views/payments/payment-gateway/admin_stripe_buy_now_button.php:141
|
2678 |
#: views/payments/payment-gateway/braintree_button_shortcode_view.php:20
|
2679 |
#: views/payments/payment-gateway/paypal_button_shortcode_view.php:91
|
2680 |
#: views/payments/payment-gateway/paypal_button_shortcode_view.php:93
|
2681 |
+
#: views/payments/payment-gateway/paypal_smart_checkout_button_shortcode_view.php:15
|
2682 |
#: views/payments/payment-gateway/stripe_button_shortcode_view.php:20
|
2683 |
+
#: views/payments/payment-gateway/stripe_button_shortcode_view.php:150
|
2684 |
msgid "Buy Now"
|
2685 |
msgstr ""
|
2686 |
|
2689 |
msgid "Subscribe Now"
|
2690 |
msgstr ""
|
2691 |
|
2692 |
+
#: views/payments/payment-gateway/paypal_smart_checkout_button_shortcode_view.php:137
|
2693 |
+
msgid "Error occured during PayPal Smart Checkout process."
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2694 |
msgstr ""
|
2695 |
|
2696 |
+
#: views/payments/payment-gateway/paypal_smart_checkout_button_shortcode_view.php:165
|
2697 |
+
msgid "HTTP error occured during payment process:"
|
2698 |
msgstr ""
|
2699 |
|
2700 |
+
#: Translation strings from addons === Form builder addon
|
|
|
|
|
2701 |
msgid "Type password here"
|
2702 |
msgstr ""
|
2703 |
|
2728 |
msgid "Postal / Zip Code"
|
2729 |
msgstr ""
|
2730 |
|
2731 |
+
msgid ""
|
2732 |
+
"Check this box to delete the image. The image will be deleted when you save "
|
2733 |
+
"the profile."
|
2734 |
msgstr ""
|
2735 |
|
2736 |
msgid "You will need to re-login since you changed your password."
|
2737 |
msgstr ""
|
2738 |
|
2739 |
+
msgid ""
|
2740 |
+
"Please enter any two digits with <strong>no</strong> spaces (Example: 12)"
|
2741 |
msgstr ""
|
2742 |
|
2743 |
msgid "Verification"
|
2746 |
msgid "Please enter any two digits with no spaces (Example: 12)*"
|
2747 |
msgstr ""
|
2748 |
|
|
|
|
|
|
|
2749 |
msgid "Username can only contain: letters, numbers and .-*@"
|
2750 |
msgstr ""
|
2751 |
|
2752 |
+
#: === Partial protection addon strings
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2753 |
msgid "You do not have permission to view this content."
|
2754 |
msgstr ""
|
2755 |
|
2759 |
msgid "This content is for members only."
|
2760 |
msgstr ""
|
2761 |
|
2762 |
+
#: === Member Directory Listing addon strings swpm-member-directory-admin.php:9
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2763 |
msgid "Member Directory"
|
2764 |
msgstr ""
|
2765 |
|
2767 |
msgid "Member ID"
|
2768 |
msgstr ""
|
2769 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2770 |
#: includes/swpm_mda_show_profile.php:30
|
2771 |
msgid "Level"
|
2772 |
msgstr ""
|
2773 |
|
|
|
|
|
|
|
|
|
2774 |
#: includes/swpm_mda_show_profile.php:32
|
2775 |
msgid "Address"
|
2776 |
msgstr ""
|
2777 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2778 |
#: views/template-1.php:52 views/template-2.php:53
|
2779 |
msgid "Search..."
|
2780 |
msgstr ""
|
2781 |
|
|
|
|
|
|
|
|
|
2782 |
#: views/template-1.php:60 views/template-2.php:62
|
2783 |
msgid "Clear Search"
|
2784 |
msgstr ""
|
|
|
|
|
|
|
|
readme.txt
CHANGED
@@ -4,7 +4,7 @@ Donate link: https://simple-membership-plugin.com/
|
|
4 |
Tags: member, members, members only, membership, memberships, register, WordPress membership plugin, content, content protection, paypal, restrict, restrict access, Restrict content, admin, access control, subscription, teaser, protection, profile, login, login page, bbpress, stripe, braintree
|
5 |
Requires at least: 4.0
|
6 |
Tested up to: 5.2
|
7 |
-
Stable tag: 3.8.
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
@@ -75,7 +75,9 @@ You can create a free forum user account and ask your questions.
|
|
75 |
* Membership management side is handled by the plugin.
|
76 |
* Ability to manually approve your members.
|
77 |
* Ability to import WordPress users as members.
|
|
|
78 |
* Filter members list by account status.
|
|
|
79 |
* Can be translated to any language.
|
80 |
* Hide the admin toolbar from the frontend of your site.
|
81 |
* Allow your members to delete their membership accounts.
|
@@ -156,6 +158,17 @@ https://simple-membership-plugin.com/
|
|
156 |
|
157 |
== Changelog ==
|
158 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
159 |
= 3.8.0 =
|
160 |
- Email activation's temporary data is now stored in an encrypted format.
|
161 |
- Fixed email activation data leftovers removal in the DB.
|
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.2
|
7 |
+
Stable tag: 3.8.2
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
75 |
* Membership management side is handled by the plugin.
|
76 |
* Ability to manually approve your members.
|
77 |
* Ability to import WordPress users as members.
|
78 |
+
* Search for a member's profile in your WP admin dashboard.
|
79 |
* Filter members list by account status.
|
80 |
+
* Filter members list by membership level.
|
81 |
* Can be translated to any language.
|
82 |
* Hide the admin toolbar from the frontend of your site.
|
83 |
* Allow your members to delete their membership accounts.
|
158 |
|
159 |
== Changelog ==
|
160 |
|
161 |
+
= 3.8.2 =
|
162 |
+
- Added membership level and account status filter in the member search function (Members menu of admin dashboard).
|
163 |
+
- Updated the Polish language translation.
|
164 |
+
- Added a filter hook in the get_current_page_url() function.
|
165 |
+
|
166 |
+
= 3.8.1 =
|
167 |
+
- [Important Note] If you are using the Braintree gateway, please take a backup before updating. Do a test transaction using Braintree gateway on live mode to make sure the new 3D Secure changes are working fine.
|
168 |
+
- Added 3D Secure support for Braintree payment gateway buttons. It automatically tries to detect if 3DS is enabled, then shows the additional steps.
|
169 |
+
- Added note for email activation feature regarding temporary passwords storage.
|
170 |
+
- Added "swpm_email_activation_data" filter to modify user email activation data.
|
171 |
+
|
172 |
= 3.8.0 =
|
173 |
- Email activation's temporary data is now stored in an encrypted format.
|
174 |
- Fixed email activation data leftovers removal in the DB.
|
simple-wp-membership.php
CHANGED
@@ -1,7 +1,7 @@
|
|
1 |
<?php
|
2 |
/*
|
3 |
Plugin Name: Simple WordPress Membership
|
4 |
-
Version: 3.8.
|
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.8.
|
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.8.2
|
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.8.2');
|
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/admin_add_level.php
CHANGED
@@ -42,6 +42,7 @@
|
|
42 |
<p class="description">
|
43 |
<?php echo SwpmUtils::_('Enable new user activation via email. When enabled, members will need to click on an activation link that is sent to their email address to activate the account. Useful for free membership. '); ?>
|
44 |
<?php echo '<a href="https://simple-membership-plugin.com/email-activation-for-members/" target="_blank">' . SwpmUtils::_('View Documentation') . '.</a>'; ?>
|
|
|
45 |
</p>
|
46 |
</td>
|
47 |
</tr>
|
42 |
<p class="description">
|
43 |
<?php echo SwpmUtils::_('Enable new user activation via email. When enabled, members will need to click on an activation link that is sent to their email address to activate the account. Useful for free membership. '); ?>
|
44 |
<?php echo '<a href="https://simple-membership-plugin.com/email-activation-for-members/" target="_blank">' . SwpmUtils::_('View Documentation') . '.</a>'; ?>
|
45 |
+
<?php echo '<br><strong>'.SwpmUtils::_('Note:').'</strong> '.SwpmUtils::_('If enabled, decryptable member password is temporarily stored in the database until the account is activated.'); ?>
|
46 |
</p>
|
47 |
</td>
|
48 |
</tr>
|
views/admin_edit_level.php
CHANGED
@@ -50,6 +50,7 @@
|
|
50 |
<p class="description">
|
51 |
<?php echo SwpmUtils::_('Enable new user activation via email. When enabled, members will need to click on an activation link that is sent to their email address to activate the account. Useful for free membership.');?>
|
52 |
<?php echo '<a href="https://simple-membership-plugin.com/email-activation-for-members/" target="_blank">' . SwpmUtils::_('View Documentation') . '.</a>'; ?>
|
|
|
53 |
</p>
|
54 |
</td>
|
55 |
</tr>
|
50 |
<p class="description">
|
51 |
<?php echo SwpmUtils::_('Enable new user activation via email. When enabled, members will need to click on an activation link that is sent to their email address to activate the account. Useful for free membership.');?>
|
52 |
<?php echo '<a href="https://simple-membership-plugin.com/email-activation-for-members/" target="_blank">' . SwpmUtils::_('View Documentation') . '.</a>'; ?>
|
53 |
+
<?php echo '<br><strong>'.SwpmUtils::_('Note:').'</strong> '.SwpmUtils::_('If enabled, decryptable member password is temporarily stored in the database until the account is activated.'); ?>
|
54 |
</p>
|
55 |
</td>
|
56 |
</tr>
|
views/admin_members_list.php
CHANGED
@@ -1,5 +1,4 @@
|
|
1 |
-
<?php
|
2 |
-
|
3 |
//$this refers to class "SwpmMembers" in this context.
|
4 |
|
5 |
if (isset($_REQUEST['member_action']) && $_REQUEST['member_action'] == 'delete') {
|
@@ -8,27 +7,55 @@ if (isset($_REQUEST['member_action']) && $_REQUEST['member_action'] == 'delete')
|
|
8 |
$success_msg = '<div id="message" class="updated"><p>';
|
9 |
$success_msg .= SwpmUtils::_('The selected entry was deleted!');
|
10 |
$success_msg .= '</p></div>';
|
11 |
-
echo $success_msg;
|
12 |
}
|
13 |
|
14 |
-
$this->prepare_items();
|
15 |
$count = $this->get_user_count_by_account_state();
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
16 |
?>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
17 |
<ul class="subsubsub">
|
18 |
-
<li class="all"><a href="admin.php?page=simple_wp_membership" <?php echo $status == ""? "class='current'": ""
|
19 |
-
|
20 |
-
|
21 |
-
|
22 |
-
|
23 |
-
|
24 |
-
|
25 |
</ul>
|
26 |
|
27 |
<br />
|
28 |
<form method="get">
|
29 |
<p class="search-box">
|
30 |
-
<
|
31 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
32 |
<input type="hidden" name="page" value="simple_wp_membership" />
|
33 |
</p>
|
34 |
</form>
|
1 |
+
<?php
|
|
|
2 |
//$this refers to class "SwpmMembers" in this context.
|
3 |
|
4 |
if (isset($_REQUEST['member_action']) && $_REQUEST['member_action'] == 'delete') {
|
7 |
$success_msg = '<div id="message" class="updated"><p>';
|
8 |
$success_msg .= SwpmUtils::_('The selected entry was deleted!');
|
9 |
$success_msg .= '</p></div>';
|
10 |
+
echo $success_msg;
|
11 |
}
|
12 |
|
13 |
+
$this->prepare_items();
|
14 |
$count = $this->get_user_count_by_account_state();
|
15 |
+
|
16 |
+
global $wpdb;
|
17 |
+
$query = "SELECT * FROM " . $wpdb->prefix . "swpm_membership_tbl WHERE id !=1 ";
|
18 |
+
$levels = $wpdb->get_results($query, ARRAY_A);
|
19 |
+
|
20 |
+
$account_state = filter_input(INPUT_GET, 'status', FILTER_SANITIZE_STRING);
|
21 |
+
$membership_level = filter_input(INPUT_GET, 'membership_level', FILTER_SANITIZE_NUMBER_INT);
|
22 |
?>
|
23 |
+
<style>
|
24 |
+
select.swpm-admin-search-dropdown {
|
25 |
+
padding: 3px 5px;
|
26 |
+
margin: 0px;
|
27 |
+
vertical-align: inherit;
|
28 |
+
}
|
29 |
+
input.button.swpm-admin-search-btn {
|
30 |
+
vertical-align: top;
|
31 |
+
}
|
32 |
+
</style>
|
33 |
<ul class="subsubsub">
|
34 |
+
<li class="all"><a href="admin.php?page=simple_wp_membership" <?php echo $status == "" ? "class='current'" : ""; ?> ><?php echo SwpmUtils::_('All') ?> <span class="count">(<?php echo $count['all']; ?>)</span></a> |</li>
|
35 |
+
<li class="active"><a href="admin.php?page=simple_wp_membership&status=active" <?php echo $status == "active" ? "class='current'" : ""; ?>><?php echo SwpmUtils::_('Active') ?> <span class="count">(<?php echo isset($count['active']) ? $count['active'] : 0 ?>)</span></a> |</li>
|
36 |
+
<li class="active"><a href="admin.php?page=simple_wp_membership&status=inactive" <?php echo $status == "inactive" ? "class='current'" : ""; ?>><?php echo SwpmUtils::_('Inactive') ?> <span class="count">(<?php echo isset($count['inactive']) ? $count['inactive'] : 0 ?>)</span></a> |</li>
|
37 |
+
<li class="pending"><a href="admin.php?page=simple_wp_membership&status=activation_required" <?php echo $status == "activation_required" ? "class='current'" : ""; ?>><?php echo SwpmUtils::_('Activation Required') ?> <span class="count">(<?php echo isset($count['activation_required']) ? $count['activation_required'] : 0 ?>)</span></a> |</li>
|
38 |
+
<li class="pending"><a href="admin.php?page=simple_wp_membership&status=pending" <?php echo $status == "pending" ? "class='current'" : ""; ?>><?php echo SwpmUtils::_('Pending') ?> <span class="count">(<?php echo isset($count['pending']) ? $count['pending'] : 0 ?>)</span></a> |</li>
|
39 |
+
<li class="incomplete"><a href="admin.php?page=simple_wp_membership&status=incomplete" <?php echo $status == "incomplete" ? "class='current'" : ""; ?>><?php echo SwpmUtils::_('Incomplete') ?> <span class="count">(<?php echo isset($count['incomplete']) ? $count['incomplete'] : 0 ?>)</span></a> |</li>
|
40 |
+
<li class="expired"><a href="admin.php?page=simple_wp_membership&status=expired" <?php echo $status == "expired" ? "class='current'" : ""; ?>><?php echo SwpmUtils::_('Expired') ?> <span class="count">(<?php echo isset($count['expired']) ? $count['expired'] : 0 ?>)</span></a></li>
|
41 |
</ul>
|
42 |
|
43 |
<br />
|
44 |
<form method="get">
|
45 |
<p class="search-box">
|
46 |
+
<select name="status" class="swpm-admin-search-dropdown" id="account_state">
|
47 |
+
<option value=""<?php echo empty($account_state) ? ' selected' : ''; ?>> <?php echo SwpmUtils::_('Account State'); ?></option>
|
48 |
+
<?php echo SwpmUtils::account_state_dropdown($account_state); ?>
|
49 |
+
<option value="incomplete"<?php echo $account_state === "incomplete" ? ' selected' : ''; ?>> <?php echo SwpmUtils::_('Incomplete'); ?></option>
|
50 |
+
</select>
|
51 |
+
<select name="membership_level" class="swpm-admin-search-dropdown" id="membership_level">
|
52 |
+
<option value=""<?php echo empty($membership_level) ? ' selected' : ''; ?>> <?php echo SwpmUtils::_('Membership Level'); ?></option>
|
53 |
+
<?php foreach ($levels as $level): ?>
|
54 |
+
<option <?php echo ($level['id'] == $membership_level) ? "selected='selected'" : ""; ?> value="<?php echo $level['id']; ?>"> <?php echo $level['alias'] ?></option>
|
55 |
+
<?php endforeach; ?>
|
56 |
+
</select>
|
57 |
+
<input id="search_id-search-input" type="text" name="s" value="<?php echo isset($_REQUEST['s']) ? esc_attr($_REQUEST['s']) : ''; ?>" />
|
58 |
+
<input id="search-submit" class="button swpm-admin-search-btn" type="submit" name="" value="<?php echo SwpmUtils::_('Search') ?>" />
|
59 |
<input type="hidden" name="page" value="simple_wp_membership" />
|
60 |
</p>
|
61 |
</form>
|
views/payments/payment-gateway/braintree_button_shortcode_view.php
CHANGED
@@ -94,7 +94,7 @@ function swpm_render_braintree_buy_now_button_sc_output($button_code, $args) {
|
|
94 |
/* === Braintree Buy Now Button Form === */
|
95 |
$output = '';
|
96 |
$output .= '<div class="swpm-button-wrapper swpm-braintree-buy-now-wrapper">';
|
97 |
-
$output .= "<form action='" . $notify_url . "' METHOD='POST'> ";
|
98 |
$output .= '<div id="swpm-form-cont-' . $uniqid . '" class="swpm-braintree-form-container swpm-form-container-' . $button_id . '" style="display:none;"></div>';
|
99 |
$output .= '<div id="swpm-braintree-additional-fields-container-' . $uniqid . '" class="swpm-braintree-additional-fields-container swpm-braintree-additional-fields-container-' . $button_id . '" style="display:none;">';
|
100 |
$output .= '<p><input type="text" name="first_name" placeholder="First Name" value="' . (isset($member_first_name) ? $member_first_name : '') . '" required></p>';
|
@@ -104,19 +104,50 @@ function swpm_render_braintree_buy_now_button_sc_output($button_code, $args) {
|
|
104 |
$output .= '</div>';
|
105 |
$output .= '<button id="swpm-show-form-btn-' . $uniqid . '" class="swpm-braintree-pay-now-button swpm-braintree-show-form-button-' . $button_id . ' ' . $class . '" type="button" onclick="swpm_braintree_show_form_' . $uniqid . '();"><span>' . $button_text . '</span></button>';
|
106 |
$output .= '<button id="swpm-submit-form-btn-' . $uniqid . '" class="swpm-braintree-pay-now-button swpm-braintree-submit-form-button-' . $button_id . ' ' . $class . '" type="submit" style="display: none;"><span>' . $button_text . '</span></button>';
|
107 |
-
$output .= '<script src="https://js.braintreegateway.com/js/braintree-2.
|
108 |
-
|
109 |
-
|
110 |
-
|
111 |
-
|
112 |
-
|
113 |
-
|
114 |
-
|
115 |
-
|
116 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
117 |
|
118 |
$output .= wp_nonce_field('stripe_payments', '_wpnonce', true, false);
|
119 |
$output .= '<input type="hidden" name="item_number" value="' . $button_id . '" />';
|
|
|
120 |
$output .= "<input type='hidden' value='{$item_name}' name='item_name' />";
|
121 |
$output .= "<input type='hidden' value='{$payment_amount}' name='item_price' />";
|
122 |
$output .= "<input type='hidden' value='{$payment_currency}' name='currency_code' />";
|
94 |
/* === Braintree Buy Now Button Form === */
|
95 |
$output = '';
|
96 |
$output .= '<div class="swpm-button-wrapper swpm-braintree-buy-now-wrapper">';
|
97 |
+
$output .= "<form id='swpm-braintree-payment-form-" . $uniqid . "' action='" . $notify_url . "' METHOD='POST'> ";
|
98 |
$output .= '<div id="swpm-form-cont-' . $uniqid . '" class="swpm-braintree-form-container swpm-form-container-' . $button_id . '" style="display:none;"></div>';
|
99 |
$output .= '<div id="swpm-braintree-additional-fields-container-' . $uniqid . '" class="swpm-braintree-additional-fields-container swpm-braintree-additional-fields-container-' . $button_id . '" style="display:none;">';
|
100 |
$output .= '<p><input type="text" name="first_name" placeholder="First Name" value="' . (isset($member_first_name) ? $member_first_name : '') . '" required></p>';
|
104 |
$output .= '</div>';
|
105 |
$output .= '<button id="swpm-show-form-btn-' . $uniqid . '" class="swpm-braintree-pay-now-button swpm-braintree-show-form-button-' . $button_id . ' ' . $class . '" type="button" onclick="swpm_braintree_show_form_' . $uniqid . '();"><span>' . $button_text . '</span></button>';
|
106 |
$output .= '<button id="swpm-submit-form-btn-' . $uniqid . '" class="swpm-braintree-pay-now-button swpm-braintree-submit-form-button-' . $button_id . ' ' . $class . '" type="submit" style="display: none;"><span>' . $button_text . '</span></button>';
|
107 |
+
$output .= '<script src="https://js.braintreegateway.com/js/braintree-2.32.1.min.js"></script>';
|
108 |
+
ob_start();
|
109 |
+
?>
|
110 |
+
<script>
|
111 |
+
function swpm_braintree_show_form__uniqid_() {
|
112 |
+
document.getElementById('swpm-show-form-btn-_uniqid_').style.display = "none";
|
113 |
+
document.getElementById('swpm-submit-form-btn-_uniqid_').style.display = "block";
|
114 |
+
document.getElementById('swpm-form-cont-_uniqid_').style.display = "block";
|
115 |
+
var clientToken = '_token_';
|
116 |
+
braintree.setup(clientToken, 'dropin', {container: 'swpm-form-cont-_uniqid_',
|
117 |
+
onReady: function (obj) {
|
118 |
+
document.getElementById('swpm-braintree-additional-fields-container-_uniqid_').style.display = "block";
|
119 |
+
},
|
120 |
+
onPaymentMethodReceived: function (obj) {
|
121 |
+
document.getElementById('swpm-submit-form-btn-_uniqid_').disabled = true;
|
122 |
+
var client = new braintree.api.Client({
|
123 |
+
clientToken: clientToken
|
124 |
+
});
|
125 |
+
client.verify3DS({
|
126 |
+
amount: '_amount_',
|
127 |
+
creditCard: obj.nonce
|
128 |
+
}, function (err, response) {
|
129 |
+
if (!err) {
|
130 |
+
document.getElementById('swpm-braintree-nonce-field-_uniqid_').value = response.nonce;
|
131 |
+
document.getElementById('swpm-braintree-payment-form-_uniqid_').submit();
|
132 |
+
} else {
|
133 |
+
alert(err.message);
|
134 |
+
document.getElementById('swpm-submit-form-btn-_uniqid_').disabled = false;
|
135 |
+
return false;
|
136 |
+
}
|
137 |
+
});
|
138 |
+
}
|
139 |
+
});
|
140 |
+
}
|
141 |
+
</script>
|
142 |
+
<?php
|
143 |
+
|
144 |
+
$scr = ob_get_clean();
|
145 |
+
$scr = str_replace(array('_uniqid_', '_token_', '_amount_'), array($uniqid, $clientToken, $payment_amount), $scr);
|
146 |
+
$output .= $scr;
|
147 |
|
148 |
$output .= wp_nonce_field('stripe_payments', '_wpnonce', true, false);
|
149 |
$output .= '<input type="hidden" name="item_number" value="' . $button_id . '" />';
|
150 |
+
$output .= '<input type="hidden" id="swpm-braintree-nonce-field-' . $uniqid . '" name="payment_method_nonce" value="" />';
|
151 |
$output .= "<input type='hidden' value='{$item_name}' name='item_name' />";
|
152 |
$output .= "<input type='hidden' value='{$payment_amount}' name='item_price' />";
|
153 |
$output .= "<input type='hidden' value='{$payment_currency}' name='currency_code' />";
|