Version Description
- BUG: Fixed typos in pmpro_memberslist_csv and pmpro_orderscsv capabilities. (Thanks, Arnaud Devic)
- BUG: Only loading the Braintree API when using it now.
- BUG: Fixed fatal error that would occur at checkout if PayPal Standard were used with a discount code. (Thanks, John Zeiger)
- BUG: Fixed issue where discount codes would not work if billing address fields were hidden. (e.g. paying by PayPal or check)
- BUG: Fixed issue with the logic around sending emails when admin's change a member's level or expiration date. Admins will always get an email. Members will only get an email if the checkbox is checked.
- ENHANCEMENT: No longer showing check instructions at checkout if the level is free.
- ENHANCEMENT: Added pmpro_stripe_create_subscription filter. (Thanks, nickd32 on GitHub)
- ENHANCEMENT: Added Czech (cs_CZ) language files and support for using decimals as separators. (Thanks, Martin "shr3k" Koke on GitHub)
Download this release
Release Info
Developer | strangerstudios |
Plugin | Paid Memberships Pro |
Version | 1.8.1 |
Comparing to | |
See all releases |
Code changes from version 1.8 to 1.8.1
- adminpages/orders-csv.php +1 -1
- classes/gateways/class.pmprogateway_braintree.php +17 -4
- classes/gateways/class.pmprogateway_paypalstandard.php +1 -1
- classes/gateways/class.pmprogateway_stripe.php +347 -346
- email/admin_change_admin.html +1 -1
- includes/currencies.php +8 -1
- includes/filters.php +8 -0
- includes/functions.php +12 -8
- includes/profile.php +57 -19
- languages/pmpro-cs_CZ.mo +0 -0
- languages/pmpro-cs_CZ.po +2773 -1324
- languages/pmpro.mo +0 -0
- languages/pmpro.po +139 -121
- languages/pmpro.pot +139 -121
- pages/account.php +4 -4
- pages/checkout.php +7 -7
- paid-memberships-pro.php +3 -3
- readme.txt +10 -1
- services/applydiscountcode.php +11 -0
adminpages/orders-csv.php
CHANGED
@@ -1,6 +1,6 @@
|
|
1 |
<?php
|
2 |
//only admins can get this
|
3 |
-
if(!function_exists("current_user_can") || (!current_user_can("manage_options") && !current_user_can("
|
4 |
{
|
5 |
die(__("You do not have permissions to perform this action.", "pmpro"));
|
6 |
}
|
1 |
<?php
|
2 |
//only admins can get this
|
3 |
+
if(!function_exists("current_user_can") || (!current_user_can("manage_options") && !current_user_can("pmpro_orderscsv")))
|
4 |
{
|
5 |
die(__("You do not have permissions to perform this action.", "pmpro"));
|
6 |
}
|
classes/gateways/class.pmprogateway_braintree.php
CHANGED
@@ -3,17 +3,17 @@
|
|
3 |
require_once(dirname(__FILE__) . "/class.pmprogateway.php");
|
4 |
|
5 |
//load classes init method
|
6 |
-
add_action('init', array('PMProGateway_braintree', 'init'));
|
7 |
|
8 |
-
if(!class_exists("Braintree"))
|
9 |
-
require_once(dirname(__FILE__) . "/../../includes/lib/Braintree/Braintree.php");
|
10 |
class PMProGateway_braintree extends PMProGateway
|
11 |
{
|
12 |
function PMProGateway_braintree($gateway = NULL)
|
13 |
-
{
|
14 |
$this->gateway = $gateway;
|
15 |
$this->gateway_environment = pmpro_getOption("gateway_environment");
|
16 |
|
|
|
|
|
17 |
//convert to braintree nomenclature
|
18 |
$environment = $this->gateway_environment;
|
19 |
if($environment == "live")
|
@@ -27,6 +27,19 @@
|
|
27 |
return $this->gateway;
|
28 |
}
|
29 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
30 |
/**
|
31 |
* Run on WP init
|
32 |
*
|
3 |
require_once(dirname(__FILE__) . "/class.pmprogateway.php");
|
4 |
|
5 |
//load classes init method
|
6 |
+
add_action('init', array('PMProGateway_braintree', 'init'));
|
7 |
|
|
|
|
|
8 |
class PMProGateway_braintree extends PMProGateway
|
9 |
{
|
10 |
function PMProGateway_braintree($gateway = NULL)
|
11 |
+
{
|
12 |
$this->gateway = $gateway;
|
13 |
$this->gateway_environment = pmpro_getOption("gateway_environment");
|
14 |
|
15 |
+
$this->loadBraintreeLibrary();
|
16 |
+
|
17 |
//convert to braintree nomenclature
|
18 |
$environment = $this->gateway_environment;
|
19 |
if($environment == "live")
|
27 |
return $this->gateway;
|
28 |
}
|
29 |
|
30 |
+
/**
|
31 |
+
* Load the Braintree API library.
|
32 |
+
*
|
33 |
+
* @since 1.8.1
|
34 |
+
* Moved into a method in version 1.8.1 so we only load it when needed.
|
35 |
+
*/
|
36 |
+
function loadBraintreeLibrary()
|
37 |
+
{
|
38 |
+
//load Braintree library if it hasn't been loaded already (usually by another plugin using Braintree)
|
39 |
+
if(!class_exists("Braintree"))
|
40 |
+
require_once(dirname(__FILE__) . "/../../includes/lib/Braintree/Braintree.php");
|
41 |
+
}
|
42 |
+
|
43 |
/**
|
44 |
* Run on WP init
|
45 |
*
|
classes/gateways/class.pmprogateway_paypalstandard.php
CHANGED
@@ -220,7 +220,7 @@
|
|
220 |
*/
|
221 |
static function pmpro_checkout_before_change_membership_level($user_id, $morder)
|
222 |
{
|
223 |
-
global $discount_code_id;
|
224 |
|
225 |
//if no order, no need to pay
|
226 |
if(empty($morder))
|
220 |
*/
|
221 |
static function pmpro_checkout_before_change_membership_level($user_id, $morder)
|
222 |
{
|
223 |
+
global $discount_code_id, $wpdb;
|
224 |
|
225 |
//if no order, no need to pay
|
226 |
if(empty($morder))
|
classes/gateways/class.pmprogateway_stripe.php
CHANGED
@@ -1,10 +1,10 @@
|
|
1 |
-
<?php
|
2 |
//include pmprogateway
|
3 |
-
require_once(dirname(__FILE__) . "/class.pmprogateway.php");
|
4 |
-
|
5 |
//load classes init method
|
6 |
add_action('init', array('PMProGateway_stripe', 'init'));
|
7 |
-
|
8 |
/**
|
9 |
* PMProGateway_stripe Class
|
10 |
*
|
@@ -16,25 +16,25 @@
|
|
16 |
{
|
17 |
/**
|
18 |
* Stripe Class Constructor
|
19 |
-
*
|
20 |
* @since 1.4
|
21 |
*/
|
22 |
function PMProGateway_stripe($gateway = NULL)
|
23 |
{
|
24 |
$this->gateway = $gateway;
|
25 |
$this->gateway_environment = pmpro_getOption("gateway_environment");
|
26 |
-
|
27 |
-
$this->loadStripeLibrary();
|
28 |
Stripe::setApiKey(pmpro_getOption("stripe_secretkey"));
|
29 |
-
|
30 |
return $this->gateway;
|
31 |
-
}
|
32 |
-
|
33 |
/**
|
34 |
* Load the Stripe API library.
|
35 |
-
*
|
36 |
* @since 1.8
|
37 |
-
* Moved into a method in version
|
38 |
*/
|
39 |
function loadStripeLibrary()
|
40 |
{
|
@@ -42,66 +42,66 @@
|
|
42 |
if(!class_exists("Stripe"))
|
43 |
require_once(dirname(__FILE__) . "/../../includes/lib/Stripe/Stripe.php");
|
44 |
}
|
45 |
-
|
46 |
/**
|
47 |
* Run on WP init
|
48 |
-
*
|
49 |
* @since 1.8
|
50 |
*/
|
51 |
static function init()
|
52 |
-
{
|
53 |
//make sure Stripe is a gateway option
|
54 |
add_filter('pmpro_gateways', array('PMProGateway_stripe', 'pmpro_gateways'));
|
55 |
-
|
56 |
//add fields to payment settings
|
57 |
add_filter('pmpro_payment_options', array('PMProGateway_stripe', 'pmpro_payment_options'));
|
58 |
add_filter('pmpro_payment_option_fields', array('PMProGateway_stripe', 'pmpro_payment_option_fields'), 10, 2);
|
59 |
-
|
60 |
//add some fields to edit user page (Updates)
|
61 |
add_action('pmpro_after_membership_level_profile_fields', array('PMProGateway_stripe', 'user_profile_fields'));
|
62 |
add_action('profile_update', array('PMProGateway_stripe', 'user_profile_fields_save'));
|
63 |
-
|
64 |
//old global RE showing billing address or not
|
65 |
global $pmpro_stripe_lite;
|
66 |
$pmpro_stripe_lite = apply_filters("pmpro_stripe_lite", !pmpro_getOption("stripe_billingaddress")); //default is oposite of the stripe_billingaddress setting
|
67 |
-
|
68 |
//updates cron
|
69 |
add_action('pmpro_activation', array('PMProGateway_stripe', 'pmpro_activation'));
|
70 |
add_action('pmpro_deactivation', array('PMProGateway_stripe', 'pmpro_deactivation'));
|
71 |
add_action('pmpro_cron_stripe_subscription_updates', array('PMProGateway_stripe', 'pmpro_cron_stripe_subscription_updates'));
|
72 |
-
|
73 |
//code to add at checkout if Stripe is the current gateway
|
74 |
$gateway = pmpro_getOption("gateway");
|
75 |
if($gateway == "stripe")
|
76 |
{
|
77 |
-
add_action('pmpro_checkout_preheader', array('PMProGateway_stripe', 'pmpro_checkout_preheader'));
|
78 |
add_filter('pmpro_checkout_order', array('PMProGateway_stripe', 'pmpro_checkout_order'));
|
79 |
add_filter('pmpro_include_billing_address_fields', array('PMProGateway_stripe', 'pmpro_include_billing_address_fields'));
|
80 |
add_filter('pmpro_include_cardtype_field', array('PMProGateway_stripe', 'pmpro_include_billing_address_fields'));
|
81 |
add_filter('pmpro_include_payment_information_fields', array('PMProGateway_stripe', 'pmpro_include_payment_information_fields'));
|
82 |
}
|
83 |
}
|
84 |
-
|
85 |
/**
|
86 |
* Make sure Stripe is in the gateways list
|
87 |
-
*
|
88 |
* @since 1.8
|
89 |
*/
|
90 |
static function pmpro_gateways($gateways)
|
91 |
{
|
92 |
if(empty($gateways['stripe']))
|
93 |
$gateways['stripe'] = __('Stripe', 'pmpro');
|
94 |
-
|
95 |
return $gateways;
|
96 |
}
|
97 |
-
|
98 |
/**
|
99 |
* Get a list of payment options that the Stripe gateway needs/supports.
|
100 |
-
*
|
101 |
* @since 1.8
|
102 |
*/
|
103 |
static function getGatewayOptions()
|
104 |
-
{
|
105 |
$options = array(
|
106 |
'sslseal',
|
107 |
'nuclear_HTTPS',
|
@@ -115,35 +115,35 @@
|
|
115 |
'tax_rate',
|
116 |
'accepted_credit_cards'
|
117 |
);
|
118 |
-
|
119 |
return $options;
|
120 |
}
|
121 |
-
|
122 |
/**
|
123 |
* Set payment options for payment settings page.
|
124 |
-
*
|
125 |
* @since 1.8
|
126 |
*/
|
127 |
static function pmpro_payment_options($options)
|
128 |
-
{
|
129 |
//get stripe options
|
130 |
$stripe_options = PMProGateway_stripe::getGatewayOptions();
|
131 |
-
|
132 |
//merge with others.
|
133 |
$options = array_merge($stripe_options, $options);
|
134 |
-
|
135 |
return $options;
|
136 |
}
|
137 |
-
|
138 |
/**
|
139 |
* Display fields for Stripe options.
|
140 |
-
*
|
141 |
* @since 1.8
|
142 |
*/
|
143 |
static function pmpro_payment_option_fields($values, $gateway)
|
144 |
{
|
145 |
?>
|
146 |
-
<tr class="pmpro_settings_divider gateway gateway_stripe" <?php if($gateway != "stripe") { ?>style="display: none;"<?php } ?>>
|
147 |
<td colspan="2">
|
148 |
<?php _e('Stripe Settings', 'pmpro'); ?>
|
149 |
</td>
|
@@ -171,7 +171,7 @@
|
|
171 |
<td>
|
172 |
<select id="stripe_billingaddress" name="stripe_billingaddress">
|
173 |
<option value="0" <?php if(empty($values['stripe_billingaddress'])) { ?>selected="selected"<?php } ?>><?php _e('No', 'pmpro');?></option>
|
174 |
-
<option value="1" <?php if(!empty($values['stripe_billingaddress'])) { ?>selected="selected"<?php } ?>><?php _e('Yes', 'pmpro');?></option>
|
175 |
</select>
|
176 |
<small><?php _e("Stripe doesn't require billing address fields. Choose 'No' to hide them on the checkout page.<br /><strong>If No, make sure you disable address verification in the Stripe dashboard settings.</strong>", 'pmpro');?></small>
|
177 |
</td>
|
@@ -183,39 +183,39 @@
|
|
183 |
<td>
|
184 |
<p><?php _e('To fully integrate with Stripe, be sure to set your Web Hook URL to', 'pmpro');?> <pre><?php echo admin_url("admin-ajax.php") . "?action=stripe_webhook";?></pre></p>
|
185 |
</td>
|
186 |
-
</tr>
|
187 |
<?php
|
188 |
}
|
189 |
-
|
190 |
/**
|
191 |
* Code added to checkout preheader.
|
192 |
-
*
|
193 |
* @since 1.8
|
194 |
*/
|
195 |
static function pmpro_checkout_preheader()
|
196 |
-
{
|
197 |
global $gateway, $pmpro_level;
|
198 |
-
|
199 |
if($gateway == "stripe" && !pmpro_isLevelFree($pmpro_level))
|
200 |
{
|
201 |
//stripe js library
|
202 |
wp_enqueue_script("stripe", "https://js.stripe.com/v2/", array(), NULL);
|
203 |
-
|
204 |
//stripe js code for checkout
|
205 |
function pmpro_stripe_javascript()
|
206 |
{
|
207 |
global $pmpro_gateway, $pmpro_level, $pmpro_stripe_lite;
|
208 |
?>
|
209 |
<script type="text/javascript">
|
210 |
-
// this identifies your website in the createToken call below
|
211 |
Stripe.setPublishableKey('<?php echo pmpro_getOption("stripe_publishablekey"); ?>');
|
212 |
-
|
213 |
-
var pmpro_require_billing = true;
|
214 |
-
|
215 |
jQuery(document).ready(function() {
|
216 |
jQuery("#pmpro_form, .pmpro_form").submit(function(event) {
|
217 |
-
|
218 |
-
//double check in case a discount code made the level free
|
219 |
if(pmpro_require_billing)
|
220 |
{
|
221 |
//build array for creating token
|
@@ -231,18 +231,18 @@
|
|
231 |
?>
|
232 |
,address_line1: jQuery('#baddress1').val(),
|
233 |
address_line2: jQuery('#baddress2').val(),
|
234 |
-
address_city: jQuery('#bcity').val(),
|
235 |
-
address_state: jQuery('#bstate').val(),
|
236 |
-
address_zip: jQuery('#bzipcode').val(),
|
237 |
address_country: jQuery('#bcountry').val()
|
238 |
<?php
|
239 |
}
|
240 |
-
?>
|
241 |
};
|
242 |
-
|
243 |
if (jQuery('#bfirstname').length && jQuery('#blastname').length)
|
244 |
args['name'] = jQuery.trim(jQuery('#bfirstname').val() + ' ' + jQuery('#blastname').val());
|
245 |
-
|
246 |
//create token
|
247 |
Stripe.createToken(args, stripeResponseHandler);
|
248 |
|
@@ -261,19 +261,19 @@
|
|
261 |
|
262 |
//hide processing message
|
263 |
jQuery('#pmpro_processing_message').css('visibility', 'hidden');
|
264 |
-
|
265 |
// show the errors on the form
|
266 |
alert(response.error.message);
|
267 |
jQuery(".payment-errors").text(response.error.message);
|
268 |
} else {
|
269 |
-
var form$ = jQuery("#pmpro_form, .pmpro_form");
|
270 |
// token contains id, last4, and card type
|
271 |
-
var token = response['id'];
|
272 |
// insert the token into the form so it gets submitted to the server
|
273 |
form$.append("<input type='hidden' name='stripeToken' value='" + token + "'/>");
|
274 |
-
|
275 |
console.log(response);
|
276 |
-
|
277 |
//insert fields for other card fields
|
278 |
if(jQuery('#CardType[name=CardType]').length)
|
279 |
jQuery('#CardType').val(response['card']['brand']);
|
@@ -281,8 +281,8 @@
|
|
281 |
form$.append("<input type='hidden' name='CardType' value='" + response['card']['brand'] + "'/>");
|
282 |
form$.append("<input type='hidden' name='AccountNumber' value='XXXXXXXXXXXXX" + response['card']['last4'] + "'/>");
|
283 |
form$.append("<input type='hidden' name='ExpirationMonth' value='" + ("0" + response['card']['exp_month']).slice(-2) + "'/>");
|
284 |
-
form$.append("<input type='hidden' name='ExpirationYear' value='" + response['card']['exp_year'] + "'/>");
|
285 |
-
|
286 |
// and submit
|
287 |
form$.get(0).submit();
|
288 |
}
|
@@ -291,20 +291,20 @@
|
|
291 |
<?php
|
292 |
}
|
293 |
add_action("wp_head", "pmpro_stripe_javascript");
|
294 |
-
|
295 |
//don't require the CVV
|
296 |
function pmpro_stripe_dont_require_CVV($fields)
|
297 |
{
|
298 |
-
unset($fields['CVV']);
|
299 |
return $fields;
|
300 |
}
|
301 |
add_filter("pmpro_required_billing_fields", "pmpro_stripe_dont_require_CVV");
|
302 |
}
|
303 |
}
|
304 |
-
|
305 |
/**
|
306 |
* Filtering orders at checkout.
|
307 |
-
*
|
308 |
* @since 1.8
|
309 |
*/
|
310 |
static function pmpro_checkout_order($morder)
|
@@ -314,13 +314,13 @@
|
|
314 |
{
|
315 |
$morder->stripeToken = $_REQUEST['stripeToken'];
|
316 |
}
|
317 |
-
|
318 |
//stripe lite code to get name from other sources if available
|
319 |
global $pmpro_stripe_lite, $current_user;
|
320 |
if(!empty($pmpro_stripe_lite) && empty($morder->FirstName) && empty($morder->LastName))
|
321 |
{
|
322 |
if(!empty($current_user->ID))
|
323 |
-
{
|
324 |
$morder->FirstName = get_user_meta($current_user->ID, "first_name", true);
|
325 |
$morder->LastName = get_user_meta($current_user->ID, "last_name", true);
|
326 |
}
|
@@ -330,19 +330,19 @@
|
|
330 |
$morder->LastName = $_REQUEST['last_name'];
|
331 |
}
|
332 |
}
|
333 |
-
|
334 |
return $morder;
|
335 |
}
|
336 |
-
|
337 |
/**
|
338 |
* Code to run after checkout
|
339 |
-
*
|
340 |
* @since 1.8
|
341 |
*/
|
342 |
-
static function pmpro_after_checkout($user_id, $morder)
|
343 |
{
|
344 |
global $gateway;
|
345 |
-
|
346 |
if($gateway == "stripe")
|
347 |
{
|
348 |
if(!empty($morder) && !empty($morer->Gateway) && !empty($morder->Gateway->customer) && !empty($morder->Gateway->customer->id))
|
@@ -351,7 +351,7 @@
|
|
351 |
}
|
352 |
}
|
353 |
}
|
354 |
-
|
355 |
/**
|
356 |
* Check settings if billing address should be shown.
|
357 |
* @since 1.8
|
@@ -361,24 +361,24 @@
|
|
361 |
//check settings RE showing billing address
|
362 |
if(!pmpro_getOption("stripe_billingaddress"))
|
363 |
$include = false;
|
364 |
-
|
365 |
return $include;
|
366 |
}
|
367 |
-
|
368 |
/**
|
369 |
* Use our own payment fields at checkout. (Remove the name attributes.)
|
370 |
* @since 1.8
|
371 |
*/
|
372 |
static function pmpro_include_payment_information_fields($include)
|
373 |
-
{
|
374 |
//global vars
|
375 |
global $pmpro_requirebilling, $pmpro_show_discount_code, $discount_code, $CardType, $AccountNumber, $ExpirationMonth, $ExpirationYear;
|
376 |
-
|
377 |
//get accepted credit cards
|
378 |
$pmpro_accepted_credit_cards = pmpro_getOption("accepted_credit_cards");
|
379 |
$pmpro_accepted_credit_cards = explode(",", $pmpro_accepted_credit_cards);
|
380 |
-
$pmpro_accepted_credit_cards_string = pmpro_implodeToEnglish($pmpro_accepted_credit_cards);
|
381 |
-
|
382 |
//include ours
|
383 |
?>
|
384 |
<table id="pmpro_payment_information_fields" class="pmpro_checkout top1em" width="100%" cellpadding="0" cellspacing="0" border="0" <?php if(!$pmpro_requirebilling || apply_filters("pmpro_hide_payment_information_fields", false) ) { ?>style="display: none;"<?php } ?>>
|
@@ -388,8 +388,8 @@
|
|
388 |
</tr>
|
389 |
</thead>
|
390 |
<tbody>
|
391 |
-
<tr valign="top">
|
392 |
-
<td>
|
393 |
<?php
|
394 |
$sslseal = pmpro_getOption("sslseal");
|
395 |
if($sslseal)
|
@@ -409,7 +409,7 @@
|
|
409 |
<select id="CardType" class=" <?php echo pmpro_getClassForField("CardType");?>">
|
410 |
<?php foreach($pmpro_accepted_credit_cards as $cc) { ?>
|
411 |
<option value="<?php echo $cc?>" <?php if($CardType == $cc) { ?>selected="selected"<?php } ?>><?php echo $cc?></option>
|
412 |
-
<?php } ?>
|
413 |
</select>
|
414 |
</div>
|
415 |
<?php
|
@@ -419,8 +419,8 @@
|
|
419 |
?>
|
420 |
<input type="hidden" id="CardType" name="CardType" value="<?php echo esc_attr($CardType);?>" />
|
421 |
<script>
|
422 |
-
jQuery(document).ready(function() {
|
423 |
-
jQuery('#AccountNumber').validateCreditCard(function(result) {
|
424 |
var cardtypenames = {
|
425 |
"amex":"American Express",
|
426 |
"diners_club_carte_blanche":"Diners Club Carte Blanche",
|
@@ -433,23 +433,23 @@
|
|
433 |
"visa":"Visa",
|
434 |
"visa_electron":"Visa Electron"
|
435 |
}
|
436 |
-
|
437 |
if(result.card_type)
|
438 |
jQuery('#CardType').val(cardtypenames[result.card_type.name]);
|
439 |
else
|
440 |
jQuery('#CardType').val('Unknown Card Type');
|
441 |
-
});
|
442 |
});
|
443 |
</script>
|
444 |
<?php
|
445 |
}
|
446 |
?>
|
447 |
-
|
448 |
<div class="pmpro_payment-account-number">
|
449 |
<label for="AccountNumber"><?php _e('Card Number', 'pmpro');?></label>
|
450 |
<input id="AccountNumber" class="input <?php echo pmpro_getClassForField("AccountNumber");?>" type="text" size="25" value="<?php echo esc_attr($AccountNumber)?>" autocomplete="off" />
|
451 |
</div>
|
452 |
-
|
453 |
<div class="pmpro_payment-expiration">
|
454 |
<label for="ExpirationMonth"><?php _e('Expiration Date', 'pmpro');?></label>
|
455 |
<select id="ExpirationMonth" class=" <?php echo pmpro_getClassForField("ExpirationMonth");?>">
|
@@ -474,9 +474,9 @@
|
|
474 |
<?php
|
475 |
}
|
476 |
?>
|
477 |
-
</select>
|
478 |
</div>
|
479 |
-
|
480 |
<?php
|
481 |
$pmpro_show_cvv = apply_filters("pmpro_show_cvv", true);
|
482 |
if($pmpro_show_cvv)
|
@@ -489,7 +489,7 @@
|
|
489 |
<?php
|
490 |
}
|
491 |
?>
|
492 |
-
|
493 |
<?php if($pmpro_show_discount_code) { ?>
|
494 |
<div class="pmpro_payment-discount-code">
|
495 |
<label for="discount_code"><?php _e('Discount Code', 'pmpro');?></label>
|
@@ -498,20 +498,20 @@
|
|
498 |
<p id="discount_code_message" class="pmpro_message" style="display: none;"></p>
|
499 |
</div>
|
500 |
<?php } ?>
|
501 |
-
|
502 |
-
</td>
|
503 |
</tr>
|
504 |
</tbody>
|
505 |
</table>
|
506 |
<?php
|
507 |
-
|
508 |
//don't include the default
|
509 |
return false;
|
510 |
}
|
511 |
-
|
512 |
/**
|
513 |
* Fields shown on edit user page
|
514 |
-
*
|
515 |
* @since 1.8
|
516 |
*/
|
517 |
static function user_profile_fields($user)
|
@@ -521,48 +521,48 @@
|
|
521 |
$cycles = array( __('Day(s)', 'pmpro') => 'Day', __('Week(s)', 'pmpro') => 'Week', __('Month(s)', 'pmpro') => 'Month', __('Year(s)', 'pmpro') => 'Year' );
|
522 |
$current_year = date("Y");
|
523 |
$current_month = date("m");
|
524 |
-
|
525 |
//make sure the current user has privileges
|
526 |
$membership_level_capability = apply_filters("pmpro_edit_member_capability", "manage_options");
|
527 |
if(!current_user_can($membership_level_capability))
|
528 |
return false;
|
529 |
|
530 |
-
//more privelges they should have
|
531 |
$show_membership_level = apply_filters("pmpro_profile_show_membership_level", true, $user);
|
532 |
if(!$show_membership_level)
|
533 |
return false;
|
534 |
-
|
535 |
//check that user has a current subscription at Stripe
|
536 |
$last_order = new MemberOrder();
|
537 |
$last_order->getLastMemberOrder($user->ID);
|
538 |
-
|
539 |
//assume no sub to start
|
540 |
$sub = false;
|
541 |
-
|
542 |
//check that gateway is Stripe
|
543 |
if($last_order->gateway == "stripe")
|
544 |
-
{
|
545 |
//is there a customer?
|
546 |
-
$sub = $last_order->Gateway->getSubscription($last_order);
|
547 |
-
}
|
548 |
-
|
549 |
$customer_id = $user->pmpro_stripe_customerid;
|
550 |
-
|
551 |
if(empty($sub))
|
552 |
{
|
553 |
//make sure we delete stripe updates
|
554 |
update_user_meta($user->ID, "pmpro_stripe_updates", array());
|
555 |
-
|
556 |
//if the last order has a sub id, let the admin know there is no sub at Stripe
|
557 |
if(!empty($last_order) && $last_order->gateway == "stripe" && !empty($last_order->subscription_transaction_id) && strpos($last_order->subscription_transaction_id, "sub_") !== false)
|
558 |
{
|
559 |
?>
|
560 |
<p><strong>Note:</strong> Subscription <strong><?php echo $last_order->subscription_transaction_id;?></strong> could not be found at Stripe. It might have been deleted.</p>
|
561 |
<?php
|
562 |
-
}
|
563 |
}
|
564 |
-
else
|
565 |
-
{
|
566 |
?>
|
567 |
<h3><?php _e("Subscription Updates", "pmpro"); ?></h3>
|
568 |
<p>
|
@@ -578,7 +578,7 @@
|
|
578 |
<th><label for="membership_level"><?php _e("Update", "pmpro"); ?></label></th>
|
579 |
<td id="updates_td">
|
580 |
<?php
|
581 |
-
$old_updates = $user->pmpro_stripe_updates;
|
582 |
if(is_array($old_updates))
|
583 |
{
|
584 |
$updates = array_merge(
|
@@ -588,19 +588,19 @@
|
|
588 |
}
|
589 |
else
|
590 |
$updates = array(array('template'=>true, 'when'=>'now', 'date_month'=>'', 'date_day'=>'', 'date_year'=>'', 'billing_amount'=>'', 'cycle_number'=>'', 'cycle_period'=>'Month'));
|
591 |
-
|
592 |
foreach($updates as $update)
|
593 |
{
|
594 |
?>
|
595 |
<div class="updates_update" <?php if(!empty($update['template'])) { ?>style="display: none;"<?php } ?>>
|
596 |
-
<select class="updates_when" name="updates_when[]">
|
597 |
<option value="now" <?php selected($update['when'], "now");?>>Now</option>
|
598 |
<option value="payment" <?php selected($update['when'], "payment");?>>After Next Payment</option>
|
599 |
<option value="date" <?php selected($update['when'], "date");?>>On Date</option>
|
600 |
</select>
|
601 |
<span class="updates_date" <?php if($uwhen != "date") { ?>style="display: none;"<?php } ?>>
|
602 |
<select name="updates_date_month[]">
|
603 |
-
<?php
|
604 |
for($i = 1; $i < 13; $i++)
|
605 |
{
|
606 |
?>
|
@@ -619,7 +619,7 @@
|
|
619 |
<small><?php _e('per', 'pmpro');?></small>
|
620 |
<input name="updates_cycle_number[]" type="text" size="5" value="<?php echo esc_attr($update['cycle_number']);?>" />
|
621 |
<select name="updates_cycle_period[]">
|
622 |
-
<?php
|
623 |
foreach ( $cycles as $name => $value ) {
|
624 |
echo "<option value='$value'";
|
625 |
if(!empty($update['cycle_period']) && $update['cycle_period'] == $value) echo " selected='selected'";
|
@@ -627,18 +627,18 @@
|
|
627 |
}
|
628 |
?>
|
629 |
</select>
|
630 |
-
</span>
|
631 |
<span>
|
632 |
-
<a class="updates_remove" href="javascript:void(0);">Remove</a>
|
633 |
</span>
|
634 |
</div>
|
635 |
<?php
|
636 |
}
|
637 |
-
?>
|
638 |
<p><a id="updates_new_update" href="javascript:void(0);">+ New Update</a></p>
|
639 |
</td>
|
640 |
-
</tr>
|
641 |
-
</table>
|
642 |
<script>
|
643 |
jQuery(document).ready(function() {
|
644 |
//function to update dropdowns/etc based on when field
|
@@ -648,45 +648,45 @@
|
|
648 |
jQuery(when).parent().children('.updates_date').show();
|
649 |
else
|
650 |
jQuery(when).parent().children('.updates_date').hide();
|
651 |
-
|
652 |
if(jQuery(when).val() == 'no')
|
653 |
jQuery(when).parent().children('.updates_billing').hide();
|
654 |
else
|
655 |
jQuery(when).parent().children('.updates_billing').show();
|
656 |
-
}
|
657 |
|
658 |
//and update on page load
|
659 |
jQuery('.updates_when').each(function() { if(jQuery(this).parent().css('display') != 'none') updateSubscriptionUpdateFields(this); });
|
660 |
-
|
661 |
//add a new update when clicking to
|
662 |
var num_updates_divs = <?php echo count($updates);?>;
|
663 |
jQuery('#updates_new_update').click(function() {
|
664 |
//get updates
|
665 |
updates = jQuery('.updates_update').toArray();
|
666 |
-
|
667 |
//clone the first one
|
668 |
-
new_div = jQuery(updates[0]).clone();
|
669 |
-
|
670 |
//append
|
671 |
new_div.insertBefore('#updates_new_update');
|
672 |
-
|
673 |
//update events
|
674 |
addUpdateEvents()
|
675 |
-
|
676 |
//unhide it
|
677 |
new_div.show();
|
678 |
-
updateSubscriptionUpdateFields(new_div.children('.updates_when'));
|
679 |
});
|
680 |
-
|
681 |
function addUpdateEvents()
|
682 |
{
|
683 |
//update when when changes
|
684 |
jQuery('.updates_when').change(function() {
|
685 |
updateSubscriptionUpdateFields(this);
|
686 |
});
|
687 |
-
|
688 |
//remove updates when clicking
|
689 |
-
jQuery('.updates_remove').click(function() {
|
690 |
jQuery(this).parent().parent().remove();
|
691 |
});
|
692 |
}
|
@@ -696,40 +696,40 @@
|
|
696 |
<?php
|
697 |
}
|
698 |
}
|
699 |
-
|
700 |
/**
|
701 |
* Process fields from the edit user page
|
702 |
-
*
|
703 |
* @since 1.8
|
704 |
*/
|
705 |
static function user_profile_fields_save($user_id)
|
706 |
{
|
707 |
global $wpdb;
|
708 |
-
|
709 |
//check capabilities
|
710 |
$membership_level_capability = apply_filters("pmpro_edit_member_capability", "manage_options");
|
711 |
if(!current_user_can($membership_level_capability))
|
712 |
return false;
|
713 |
-
|
714 |
//make sure some value was passed
|
715 |
if(!isset($_POST['updates_when']) || !is_array($_POST['updates_when']))
|
716 |
return;
|
717 |
-
|
718 |
//vars
|
719 |
$updates = array();
|
720 |
$next_on_date_update = "";
|
721 |
-
|
722 |
//build array of updates (we skip the first because it's the template field for the JavaScript
|
723 |
for($i = 1; $i < count($_POST['updates_when']); $i++)
|
724 |
{
|
725 |
$update = array();
|
726 |
-
|
727 |
//all updates have these values
|
728 |
$update['when'] = $_POST['updates_when'][$i];
|
729 |
$update['billing_amount'] = $_POST['updates_billing_amount'][$i];
|
730 |
$update['cycle_number'] = $_POST['updates_cycle_number'][$i];
|
731 |
$update['cycle_period'] = $_POST['updates_cycle_period'][$i];
|
732 |
-
|
733 |
//these values only for on date updates
|
734 |
if($_POST['updates_when'][$i] == "date")
|
735 |
{
|
@@ -737,17 +737,17 @@
|
|
737 |
$update['date_day'] = str_pad($_POST['updates_date_day'][$i], 2, "0", STR_PAD_LEFT);
|
738 |
$update['date_year'] = $_POST['updates_date_year'][$i];
|
739 |
}
|
740 |
-
|
741 |
//make sure the update is valid
|
742 |
if(empty($update['cycle_number']))
|
743 |
continue;
|
744 |
-
|
745 |
//if when is now, update the subscription
|
746 |
if($update['when'] == "now")
|
747 |
{
|
748 |
//get level for user
|
749 |
$user_level = pmpro_getMembershipLevelForUser($user_id);
|
750 |
-
|
751 |
//get current plan at Stripe to get payment date
|
752 |
$last_order = new MemberOrder();
|
753 |
$last_order->getLastMemberOrder($user_id);
|
@@ -755,30 +755,30 @@
|
|
755 |
$last_order->Gateway->getCustomer($last_order);
|
756 |
|
757 |
$subscription = $last_order->Gateway->getSubscription($last_order);
|
758 |
-
|
759 |
if(!empty($subscription))
|
760 |
-
{
|
761 |
$end_timestamp = $subscription->current_period_end;
|
762 |
-
|
763 |
-
//cancel the old subscription
|
764 |
if(!$last_order->Gateway->cancelSubscriptionAtGateway($subscription))
|
765 |
{
|
766 |
//throw error and halt save
|
767 |
-
function pmpro_stripe_user_profile_fields_save_error($errors, $update, $user)
|
768 |
{
|
769 |
$errors->add('pmpro_stripe_updates',__('Could not cancel the old subscription. Updates have not been processed.', 'pmpro'));
|
770 |
}
|
771 |
add_filter('user_profile_update_errors', 'pmpro_stripe_user_profile_fields_save_error', 10, 3);
|
772 |
-
|
773 |
//stop processing updates
|
774 |
return;
|
775 |
}
|
776 |
}
|
777 |
-
|
778 |
//if we didn't get an end date, let's set one one cycle out
|
779 |
if(empty($end_timestamp))
|
780 |
$end_timestamp = strtotime("+" . $update['cycle_number'] . " " . $update['cycle_period'], current_time('timestamp'));
|
781 |
-
|
782 |
//build order object
|
783 |
$update_order = new MemberOrder();
|
784 |
$update_order->setGateway('stripe');
|
@@ -789,14 +789,14 @@
|
|
789 |
$update_order->PaymentAmount = $update['billing_amount'];
|
790 |
$update_order->ProfileStartDate = date("Y-m-d", $end_timestamp);
|
791 |
$update_order->BillingPeriod = $update['cycle_period'];
|
792 |
-
$update_order->BillingFrequency = $update['cycle_number'];
|
793 |
-
|
794 |
//need filter to reset ProfileStartDate
|
795 |
add_filter('pmpro_profile_start_date', create_function('$startdate, $order', 'return "' . $update_order->ProfileStartDate . 'T0:0:0";'), 10, 2);
|
796 |
-
|
797 |
//update subscription
|
798 |
$update_order->Gateway->subscribe($update_order, false);
|
799 |
-
|
800 |
//update membership
|
801 |
$sqlQuery = "UPDATE $wpdb->pmpro_memberships_users
|
802 |
SET billing_amount = '" . esc_sql($update['billing_amount']) . "',
|
@@ -808,13 +808,13 @@
|
|
808 |
AND membership_id = '" . esc_sql($last_order->membership_id) . "'
|
809 |
AND status = 'active'
|
810 |
LIMIT 1";
|
811 |
-
|
812 |
$wpdb->query($sqlQuery);
|
813 |
-
|
814 |
//save order so we know which plan to look for at stripe (order code = plan id)
|
815 |
$update_order->status = "success";
|
816 |
$update_order->saveOrder();
|
817 |
-
|
818 |
continue;
|
819 |
}
|
820 |
elseif($update['when'] == 'date')
|
@@ -824,41 +824,41 @@
|
|
824 |
else
|
825 |
$next_on_date_update = $update['date_year'] . "-" . $update['date_month'] . "-" . $update['date_day'];
|
826 |
}
|
827 |
-
|
828 |
-
//add to array
|
829 |
-
$updates[] = $update;
|
830 |
}
|
831 |
-
|
832 |
//save in user meta
|
833 |
update_user_meta($user_id, "pmpro_stripe_updates", $updates);
|
834 |
-
|
835 |
//save date of next on-date update to make it easier to query for these in cron job
|
836 |
update_user_meta($user_id, "pmpro_stripe_next_on_date_update", $next_on_date_update);
|
837 |
}
|
838 |
-
|
839 |
/**
|
840 |
* Cron activation for subscription updates.
|
841 |
-
*
|
842 |
* @since 1.8
|
843 |
*/
|
844 |
static function pmpro_activation()
|
845 |
{
|
846 |
wp_schedule_event(time(), 'daily', 'pmpro_cron_stripe_subscription_updates');
|
847 |
}
|
848 |
-
|
849 |
/**
|
850 |
* Cron deactivation for subscription updates.
|
851 |
-
*
|
852 |
* @since 1.8
|
853 |
*/
|
854 |
static function pmpro_deactivation()
|
855 |
{
|
856 |
wp_clear_scheduled_hook('pmpro_cron_stripe_subscription_updates');
|
857 |
}
|
858 |
-
|
859 |
/**
|
860 |
* Cron job for subscription updates.
|
861 |
-
*
|
862 |
* @since 1.8
|
863 |
*/
|
864 |
static function pmpro_cron_stripe_subscription_updates()
|
@@ -866,41 +866,41 @@
|
|
866 |
global $wpdb;
|
867 |
|
868 |
//get all updates for today (or before today)
|
869 |
-
$sqlQuery = "SELECT *
|
870 |
-
FROM $wpdb->usermeta
|
871 |
-
WHERE meta_key = 'pmpro_stripe_next_on_date_update'
|
872 |
-
AND meta_value IS NOT NULL
|
873 |
-
AND meta_value < '" . date("Y-m-d", strtotime("+1 day")) . "'";
|
874 |
$updates = $wpdb->get_results($sqlQuery);
|
875 |
-
|
876 |
if(!empty($updates))
|
877 |
-
{
|
878 |
//loop through
|
879 |
foreach($updates as $update)
|
880 |
-
{
|
881 |
//pull values from update
|
882 |
$user_id = $update->user_id;
|
883 |
-
|
884 |
$user = get_userdata($user_id);
|
885 |
$user_updates = $user->pmpro_stripe_updates;
|
886 |
-
$next_on_date_update = "";
|
887 |
-
|
888 |
//loop through updates looking for updates happening today or earlier
|
889 |
foreach($user_updates as $key => $update)
|
890 |
-
{
|
891 |
if($update['when'] == 'date' &&
|
892 |
$update['date_year'] . "-" . $update['date_month'] . "-" . $update['date_day'] <= date("Y-m-d")
|
893 |
)
|
894 |
{
|
895 |
//get level for user
|
896 |
$user_level = pmpro_getMembershipLevelForUser($user_id);
|
897 |
-
|
898 |
//get current plan at Stripe to get payment date
|
899 |
$last_order = new MemberOrder();
|
900 |
$last_order->getLastMemberOrder($user_id);
|
901 |
$last_order->setGateway('stripe');
|
902 |
$last_order->Gateway->getCustomer($last_order);
|
903 |
-
|
904 |
if(!empty($last_order->Gateway->customer))
|
905 |
{
|
906 |
//find the first subscription
|
@@ -910,10 +910,10 @@
|
|
910 |
$end_timestamp = $first_sub['current_period_end'];
|
911 |
}
|
912 |
}
|
913 |
-
|
914 |
//if we didn't get an end date, let's set one one cycle out
|
915 |
$end_timestamp = strtotime("+" . $update['cycle_number'] . " " . $update['cycle_period']);
|
916 |
-
|
917 |
//build order object
|
918 |
$update_order = new MemberOrder();
|
919 |
$update_order->setGateway('stripe');
|
@@ -925,28 +925,28 @@
|
|
925 |
$update_order->ProfileStartDate = date("Y-m-d", $end_timestamp);
|
926 |
$update_order->BillingPeriod = $update['cycle_period'];
|
927 |
$update_order->BillingFrequency = $update['cycle_number'];
|
928 |
-
|
929 |
//update subscription
|
930 |
$update_order->Gateway->subscribe($update_order, false);
|
931 |
-
|
932 |
//update membership
|
933 |
-
$sqlQuery = "UPDATE $wpdb->pmpro_memberships_users
|
934 |
-
SET billing_amount = '" . esc_sql($update['billing_amount']) . "',
|
935 |
-
cycle_number = '" . esc_sql($update['cycle_number']) . "',
|
936 |
-
cycle_period = '" . esc_sql($update['cycle_period']) . "'
|
937 |
-
WHERE user_id = '" . esc_sql($user_id) . "'
|
938 |
-
AND membership_id = '" . esc_sql($last_order->membership_id) . "'
|
939 |
-
AND status = 'active'
|
940 |
LIMIT 1";
|
941 |
-
|
942 |
$wpdb->query($sqlQuery);
|
943 |
-
|
944 |
//save order
|
945 |
$update_order->status = "success";
|
946 |
$update_order->save();
|
947 |
-
|
948 |
//remove update from list
|
949 |
-
unset($user_updates[$key]);
|
950 |
}
|
951 |
elseif($update['when'] == 'date')
|
952 |
{
|
@@ -957,19 +957,19 @@
|
|
957 |
$next_on_date_update = $update['date_year'] . "-" . $update['date_month'] . "-" . $update['date_day'];
|
958 |
}
|
959 |
}
|
960 |
-
|
961 |
//save updates in case we removed some
|
962 |
update_user_meta($user_id, "pmpro_stripe_updates", $user_updates);
|
963 |
-
|
964 |
//save date of next on-date update to make it easier to query for these in cron job
|
965 |
update_user_meta($user_id, "pmpro_stripe_next_on_date_update", $next_on_date_update);
|
966 |
}
|
967 |
}
|
968 |
}
|
969 |
-
|
970 |
/**
|
971 |
* Process checkout and decide if a charge and or subscribe is needed
|
972 |
-
*
|
973 |
* @since 1.4
|
974 |
*/
|
975 |
function process(&$order)
|
@@ -986,7 +986,7 @@
|
|
986 |
if($this->charge($order))
|
987 |
{
|
988 |
if(pmpro_isLevelRecurring($order->membership_level))
|
989 |
-
{
|
990 |
if($this->subscribe($order))
|
991 |
{
|
992 |
//yay!
|
@@ -1001,7 +1001,7 @@
|
|
1001 |
else
|
1002 |
{
|
1003 |
//only a one time charge
|
1004 |
-
$order->status = "success"; //saved on checkout page
|
1005 |
return true;
|
1006 |
}
|
1007 |
}
|
@@ -1011,39 +1011,39 @@
|
|
1011 |
$order->error = __("Unknown error: Initial payment failed.", "pmpro");
|
1012 |
return false;
|
1013 |
}
|
1014 |
-
}
|
1015 |
-
}
|
1016 |
-
|
1017 |
/**
|
1018 |
* Make a one-time charge with Stripe
|
1019 |
-
*
|
1020 |
* @since 1.4
|
1021 |
*/
|
1022 |
function charge(&$order)
|
1023 |
{
|
1024 |
global $pmpro_currency;
|
1025 |
-
|
1026 |
//create a code for the order
|
1027 |
if(empty($order->code))
|
1028 |
$order->code = $order->getRandomCode();
|
1029 |
-
|
1030 |
-
//what amount to charge?
|
1031 |
$amount = $order->InitialPayment;
|
1032 |
-
|
1033 |
//tax
|
1034 |
$order->subtotal = $amount;
|
1035 |
$tax = $order->getTax(true);
|
1036 |
$amount = round((float)$order->subtotal + (float)$tax, 2);
|
1037 |
-
|
1038 |
//create a customer
|
1039 |
$result = $this->getCustomer($order);
|
1040 |
-
|
1041 |
if(empty($result))
|
1042 |
-
{
|
1043 |
//failed to create customer
|
1044 |
return false;
|
1045 |
-
}
|
1046 |
-
|
1047 |
//charge
|
1048 |
try
|
1049 |
{
|
@@ -1063,13 +1063,13 @@
|
|
1063 |
$order->shorterror = $order->error;
|
1064 |
return false;
|
1065 |
}
|
1066 |
-
|
1067 |
if(empty($response["failure_message"]))
|
1068 |
{
|
1069 |
//successful charge
|
1070 |
$order->payment_transaction_id = $response["id"];
|
1071 |
-
$order->updateStatus("success");
|
1072 |
-
return true;
|
1073 |
}
|
1074 |
else
|
1075 |
{
|
@@ -1078,12 +1078,12 @@
|
|
1078 |
$order->error = $response['failure_message'];
|
1079 |
$order->shorterror = $response['failure_message'];
|
1080 |
return false;
|
1081 |
-
}
|
1082 |
}
|
1083 |
-
|
1084 |
/**
|
1085 |
* Get a Stripe customer object.
|
1086 |
-
*
|
1087 |
* If $this->customer is set, it returns it.
|
1088 |
* It first checks if the order has a subscription_transaction_id. If so, that's the customer id.
|
1089 |
* If not, it checks for a user_id on the order and searches for a customer id in the user meta.
|
@@ -1097,42 +1097,42 @@
|
|
1097 |
function getCustomer(&$order = false, $force = false)
|
1098 |
{
|
1099 |
global $current_user;
|
1100 |
-
|
1101 |
//already have it?
|
1102 |
if(!empty($this->customer) && !$force)
|
1103 |
return $this->customer;
|
1104 |
-
|
1105 |
//figure out user_id and user
|
1106 |
if(!empty($order->user_id))
|
1107 |
$user_id = $order->user_id;
|
1108 |
-
|
1109 |
//if no id passed, check the current user
|
1110 |
if(empty($user_id) && !empty($current_user->ID))
|
1111 |
$user_id = $current_user->ID;
|
1112 |
-
|
1113 |
if(!empty($user_id))
|
1114 |
$user = get_userdata($user_id);
|
1115 |
else
|
1116 |
$user = NULL;
|
1117 |
-
|
1118 |
//transaction id?
|
1119 |
if(!empty($order->subscription_transaction_id) && strpos($order->subscription_transaction_id, "cus_") !== false)
|
1120 |
$customer_id = $order->subscription_transaction_id;
|
1121 |
else
|
1122 |
{
|
1123 |
-
//try based on user id
|
1124 |
if(!empty($user_id))
|
1125 |
-
{
|
1126 |
-
$customer_id = get_user_meta($user_id, "pmpro_stripe_customerid", true);
|
1127 |
}
|
1128 |
-
}
|
1129 |
-
|
1130 |
//get name and email values from order in case we update
|
1131 |
$name = trim($order->FirstName . " " . $order->LastName);
|
1132 |
if(empty($name) && !empty($user->ID))
|
1133 |
{
|
1134 |
$name = trim($user->first_name . " " . $user->last_name);
|
1135 |
-
|
1136 |
//still empty?
|
1137 |
if(empty($name))
|
1138 |
$name = $user->user_login;
|
@@ -1140,41 +1140,41 @@
|
|
1140 |
elseif(empty($name))
|
1141 |
$name = "No Name";
|
1142 |
|
1143 |
-
$email = $order->Email;
|
1144 |
if(empty($email) && !empty($user->ID))
|
1145 |
{
|
1146 |
$email = $user->user_email;
|
1147 |
}
|
1148 |
elseif(empty($email))
|
1149 |
$email = "No Email";
|
1150 |
-
|
1151 |
//check for an existing stripe customer
|
1152 |
if(!empty($customer_id))
|
1153 |
{
|
1154 |
try
|
1155 |
{
|
1156 |
$this->customer = Stripe_Customer::retrieve($customer_id);
|
1157 |
-
|
1158 |
//update the customer description and card
|
1159 |
if(!empty($order->stripeToken))
|
1160 |
-
{
|
1161 |
$this->customer->description = $name . " (" . $email . ")";
|
1162 |
$this->customer->email = $email;
|
1163 |
$this->customer->card = $order->stripeToken;
|
1164 |
$this->customer->save();
|
1165 |
}
|
1166 |
-
|
1167 |
return $this->customer;
|
1168 |
}
|
1169 |
catch (Exception $e)
|
1170 |
{
|
1171 |
-
//assume no customer found
|
1172 |
}
|
1173 |
}
|
1174 |
-
|
1175 |
//no customer id, create one
|
1176 |
if(!empty($order->stripeToken))
|
1177 |
-
{
|
1178 |
try
|
1179 |
{
|
1180 |
$this->customer = Stripe_Customer::create(array(
|
@@ -1189,11 +1189,11 @@
|
|
1189 |
$order->shorterror = $order->error;
|
1190 |
return false;
|
1191 |
}
|
1192 |
-
|
1193 |
if(!empty($user_id))
|
1194 |
{
|
1195 |
//user logged in/etc
|
1196 |
-
update_user_meta($user_id, "pmpro_stripe_customerid", $this->customer->id);
|
1197 |
}
|
1198 |
else
|
1199 |
{
|
@@ -1210,29 +1210,29 @@
|
|
1210 |
|
1211 |
return apply_filters('pmpro_stripe_create_customer', $this->customer);
|
1212 |
}
|
1213 |
-
|
1214 |
-
return false;
|
1215 |
}
|
1216 |
-
|
1217 |
/**
|
1218 |
* Get a Stripe subscription from a PMPro order
|
1219 |
-
*
|
1220 |
* @since 1.8
|
1221 |
*/
|
1222 |
-
function getSubscription(&$order)
|
1223 |
{
|
1224 |
global $wpdb;
|
1225 |
-
|
1226 |
//no order?
|
1227 |
if(empty($order) || empty($order->code))
|
1228 |
-
return false;
|
1229 |
-
|
1230 |
$result = $this->getCustomer($order, true); //force so we don't get a cached sub for someone else
|
1231 |
-
|
1232 |
//no customer?
|
1233 |
if(empty($result))
|
1234 |
return false;
|
1235 |
-
|
1236 |
//is there a subscription transaction id pointing to a sub?
|
1237 |
if(!empty($order->subscription_transaction_id) && strpos($order->subscription_transaction_id, "sub_") !== false)
|
1238 |
{
|
@@ -1246,49 +1246,49 @@
|
|
1246 |
$order->shorterror = $order->error;
|
1247 |
return false;
|
1248 |
}
|
1249 |
-
|
1250 |
return $sub;
|
1251 |
-
}
|
1252 |
-
|
1253 |
//find subscription based on customer id and order/plan id
|
1254 |
-
$subscriptions = $this->customer->subscriptions->all();
|
1255 |
-
|
1256 |
//no subscriptions
|
1257 |
if(empty($subscriptions) || empty($subscriptions->data))
|
1258 |
-
return false;
|
1259 |
-
|
1260 |
//we really want to test against the order codes of all orders with the same subscription_transaction_id (customer id)
|
1261 |
$codes = $wpdb->get_col("SELECT code FROM $wpdb->pmpro_membership_orders WHERE user_id = '" . $order->user_id . "' AND subscription_transaction_id = '" . $order->subscription_transaction_id . "' AND status NOT IN('refunded', 'review', 'token', 'error')");
|
1262 |
-
|
1263 |
//find the one for this order
|
1264 |
foreach($subscriptions->data as $sub)
|
1265 |
-
{
|
1266 |
if(in_array($sub->plan->id, $codes))
|
1267 |
{
|
1268 |
return $sub;
|
1269 |
}
|
1270 |
}
|
1271 |
-
|
1272 |
-
//didn't find anything yet
|
1273 |
return false;
|
1274 |
}
|
1275 |
-
|
1276 |
/**
|
1277 |
* Create a new subscription with Stripe
|
1278 |
-
*
|
1279 |
* @since 1.4
|
1280 |
*/
|
1281 |
function subscribe(&$order, $checkout = true)
|
1282 |
{
|
1283 |
global $pmpro_currency;
|
1284 |
-
|
1285 |
//create a code for the order
|
1286 |
if(empty($order->code))
|
1287 |
$order->code = $order->getRandomCode();
|
1288 |
-
|
1289 |
//filter order before subscription. use with care.
|
1290 |
$order = apply_filters("pmpro_subscribe_order", $order, $this);
|
1291 |
-
|
1292 |
//figure out the user
|
1293 |
if(!empty($order->user_id))
|
1294 |
$user_id = $order->user_id;
|
@@ -1297,28 +1297,28 @@
|
|
1297 |
global $current_user;
|
1298 |
$user_id = $current_user->ID;
|
1299 |
}
|
1300 |
-
|
1301 |
//setup customer
|
1302 |
$result = $this->getCustomer($order);
|
1303 |
if(empty($result))
|
1304 |
return false; //error retrieving customer
|
1305 |
-
|
1306 |
//set subscription id to custom id
|
1307 |
$order->subscription_transaction_id = $this->customer['id']; //transaction id is the customer id, we save it in user meta later too
|
1308 |
-
|
1309 |
//figure out the amounts
|
1310 |
$amount = $order->PaymentAmount;
|
1311 |
-
$amount_tax = $order->getTaxForPrice($amount);
|
1312 |
$amount = round((float)$amount + (float)$amount_tax, 2);
|
1313 |
|
1314 |
/*
|
1315 |
There are two parts to the trial. Part 1 is simply the delay until the first payment
|
1316 |
since we are doing the first payment as a separate transaction.
|
1317 |
The second part is the actual "trial" set by the admin.
|
1318 |
-
|
1319 |
Stripe only supports Year or Month for billing periods, but we account for Days and Weeks just in case.
|
1320 |
*/
|
1321 |
-
//figure out the trial length (first payment handled by initial charge)
|
1322 |
if($order->BillingPeriod == "Year")
|
1323 |
$trial_period_days = $order->BillingFrequency * 365; //annual
|
1324 |
elseif($order->BillingPeriod == "Day")
|
@@ -1327,18 +1327,18 @@
|
|
1327 |
$trial_period_days = $order->BillingFrequency * 7; //weekly
|
1328 |
else
|
1329 |
$trial_period_days = $order->BillingFrequency * 30; //assume monthly
|
1330 |
-
|
1331 |
//convert to a profile start date
|
1332 |
$order->ProfileStartDate = date("Y-m-d", strtotime("+ " . $trial_period_days . " Day", current_time("timestamp"))) . "T0:0:0";
|
1333 |
-
|
1334 |
//filter the start date
|
1335 |
-
$order->ProfileStartDate = apply_filters("pmpro_profile_start_date", $order->ProfileStartDate, $order);
|
1336 |
-
|
1337 |
-
//convert back to days
|
1338 |
$trial_period_days = ceil(abs(strtotime(date("Y-m-d"), current_time("timestamp")) - strtotime($order->ProfileStartDate, current_time("timestamp"))) / 86400);
|
1339 |
|
1340 |
//for free trials, just push the start date of the subscription back
|
1341 |
-
if(!empty($order->TrialBillingCycles) && $order->TrialAmount == 0)
|
1342 |
{
|
1343 |
$trialOccurrences = (int)$order->TrialBillingCycles;
|
1344 |
if($order->BillingPeriod == "Year")
|
@@ -1354,25 +1354,25 @@
|
|
1354 |
{
|
1355 |
/*
|
1356 |
Let's set the subscription to the trial and give the user an "update" to change the sub later to full price (since v2.0)
|
1357 |
-
|
1358 |
This will force TrialBillingCycles > 1 to act as if they were 1
|
1359 |
-
*/
|
1360 |
$new_user_updates = array();
|
1361 |
$new_user_updates[] = array(
|
1362 |
'when' => 'payment',
|
1363 |
'billing_amount' => $order->PaymentAmount,
|
1364 |
'cycle_period' => $order->BillingPeriod,
|
1365 |
'cycle_number' => $order->BillingFrequency
|
1366 |
-
);
|
1367 |
-
|
1368 |
//now amount to equal the trial #s
|
1369 |
$amount = $order->TrialAmount;
|
1370 |
$amount_tax = $order->getTaxForPrice($amount);
|
1371 |
$amount = round((float)$amount + (float)$amount_tax, 2);
|
1372 |
-
}
|
1373 |
-
|
1374 |
//create a plan
|
1375 |
-
try
|
1376 |
{
|
1377 |
$plan = array(
|
1378 |
"amount" => $amount * 100,
|
@@ -1384,7 +1384,7 @@
|
|
1384 |
"id" => $order->code
|
1385 |
);
|
1386 |
|
1387 |
-
$plan = Stripe_Plan::create(apply_filters('pmpro_stripe_create_plan_array', $plan));
|
1388 |
}
|
1389 |
catch (Exception $e)
|
1390 |
{
|
@@ -1392,54 +1392,55 @@
|
|
1392 |
$order->shorterror = $order->error;
|
1393 |
return false;
|
1394 |
}
|
1395 |
-
|
1396 |
//before subscribing, let's clear out the updates so we don't trigger any during sub
|
1397 |
if(!empty($user_id))
|
1398 |
-
{
|
1399 |
$old_user_updates = get_user_meta($user_id, "pmpro_stripe_updates", true);
|
1400 |
-
update_user_meta($user_id, "pmpro_stripe_updates", array());
|
1401 |
-
}
|
1402 |
-
|
1403 |
if(empty($order->subscription_transaction_id) && !empty($this->customer['id']))
|
1404 |
$order->subscription_transaction_id = $this->customer['id'];
|
1405 |
-
|
1406 |
//subscribe to the plan
|
1407 |
try
|
1408 |
{
|
1409 |
-
$
|
|
|
1410 |
}
|
1411 |
catch (Exception $e)
|
1412 |
{
|
1413 |
//try to delete the plan
|
1414 |
$plan->delete();
|
1415 |
-
|
1416 |
//give the user any old updates back
|
1417 |
if(!empty($user_id))
|
1418 |
update_user_meta($user_id, "pmpro_stripe_updates", $old_user_updates);
|
1419 |
-
|
1420 |
//return error
|
1421 |
$order->error = __("Error subscribing customer to plan with Stripe:", "pmpro") . $e->getMessage();
|
1422 |
$order->shorterror = $order->error;
|
1423 |
return false;
|
1424 |
}
|
1425 |
-
|
1426 |
//delete the plan
|
1427 |
$plan = Stripe_Plan::retrieve($order->code);
|
1428 |
-
$plan->delete();
|
1429 |
|
1430 |
-
//if we got this far, we're all good
|
1431 |
-
$order->status = "success";
|
1432 |
$order->subscription_transaction_id = $result['id'];
|
1433 |
-
|
1434 |
//save new updates if this is at checkout
|
1435 |
if($checkout)
|
1436 |
-
{
|
1437 |
//empty out updates unless set above
|
1438 |
if(empty($new_user_updates))
|
1439 |
$new_user_updates = array();
|
1440 |
-
|
1441 |
//update user meta
|
1442 |
-
if(!empty($user_id))
|
1443 |
update_user_meta($user_id, "pmpro_stripe_updates", $new_user_updates);
|
1444 |
else
|
1445 |
{
|
@@ -1459,33 +1460,33 @@
|
|
1459 |
//give them their old updates back
|
1460 |
update_user_meta($user_id, "pmpro_stripe_updates", $old_user_updates);
|
1461 |
}
|
1462 |
-
|
1463 |
return true;
|
1464 |
-
}
|
1465 |
-
|
1466 |
/**
|
1467 |
* Helper method to update the customer info via getCustomer
|
1468 |
-
*
|
1469 |
* @since 1.4
|
1470 |
*/
|
1471 |
function update(&$order)
|
1472 |
{
|
1473 |
//we just have to run getCustomer which will look for the customer and update it with the new token
|
1474 |
$result = $this->getCustomer($order);
|
1475 |
-
|
1476 |
if(!empty($result))
|
1477 |
{
|
1478 |
return true;
|
1479 |
-
}
|
1480 |
else
|
1481 |
{
|
1482 |
return false; //couldn't find the customer
|
1483 |
}
|
1484 |
}
|
1485 |
-
|
1486 |
/**
|
1487 |
* Cancel a subscription at Stripe
|
1488 |
-
*
|
1489 |
* @since 1.4
|
1490 |
*/
|
1491 |
function cancel(&$order, $update_status = true)
|
@@ -1493,21 +1494,21 @@
|
|
1493 |
//no matter what happens below, we're going to cancel the order in our system
|
1494 |
if($update_status)
|
1495 |
$order->updateStatus("cancelled");
|
1496 |
-
|
1497 |
//require a subscription id
|
1498 |
if(empty($order->subscription_transaction_id))
|
1499 |
return false;
|
1500 |
-
|
1501 |
//find the customer
|
1502 |
-
$result = $this->getCustomer($order);
|
1503 |
-
|
1504 |
if(!empty($result))
|
1505 |
{
|
1506 |
//find subscription with this order code
|
1507 |
-
$subscription = $this->getSubscription($order);
|
1508 |
|
1509 |
if(!empty($subscription))
|
1510 |
-
{
|
1511 |
if($this->cancelSubscriptionAtGateway($subscription))
|
1512 |
{
|
1513 |
//we're okay, going to return true later
|
@@ -1516,17 +1517,17 @@
|
|
1516 |
{
|
1517 |
$order->error = __("Could not cancel old subscription.", "pmpro");
|
1518 |
$order->shorterror = $order->error;
|
1519 |
-
|
1520 |
-
return false;
|
1521 |
-
}
|
1522 |
-
}
|
1523 |
-
|
1524 |
/*
|
1525 |
Clear updates for this user. (But not if checking out, we would have already done that.)
|
1526 |
*/
|
1527 |
if(empty($_REQUEST['submit-checkout']))
|
1528 |
update_user_meta($order->user_id, "pmpro_stripe_updates", array());
|
1529 |
-
|
1530 |
return true;
|
1531 |
}
|
1532 |
else
|
@@ -1534,12 +1535,12 @@
|
|
1534 |
$order->error = __("Could not find the customer.", "pmpro");
|
1535 |
$order->shorterror = $order->error;
|
1536 |
return false; //no customer found
|
1537 |
-
}
|
1538 |
-
}
|
1539 |
-
|
1540 |
/**
|
1541 |
* Helper method to cancel a subscription at Stripe and also clear up any upaid invoices.
|
1542 |
-
*
|
1543 |
* @since 1.8
|
1544 |
*/
|
1545 |
function cancelSubscriptionAtGateway($subscription)
|
@@ -1547,50 +1548,50 @@
|
|
1547 |
//need a valid sub
|
1548 |
if(empty($subscription->id))
|
1549 |
return false;
|
1550 |
-
|
1551 |
//make sure we get the customer for this subscription
|
1552 |
$order = new MemberOrder();
|
1553 |
-
$order->getLastMemberOrderBySubscriptionTransactionID($subscription->id);
|
1554 |
-
|
1555 |
//no order?
|
1556 |
if(empty($order))
|
1557 |
{
|
1558 |
//lets cancel anyway, but this is suspicious
|
1559 |
$r = $subscription->cancel();
|
1560 |
-
|
1561 |
return true;
|
1562 |
}
|
1563 |
-
|
1564 |
//okay have an order, so get customer so we can cancel invoices too
|
1565 |
$this->getCustomer($order);
|
1566 |
-
|
1567 |
//get open invoices
|
1568 |
$invoices = $this->customer->invoices();
|
1569 |
$invoices = $invoices->all();
|
1570 |
-
|
1571 |
//found it, cancel it
|
1572 |
try
|
1573 |
-
{
|
1574 |
//find any open invoices for this subscription and forgive them
|
1575 |
if(!empty($invoices))
|
1576 |
{
|
1577 |
foreach($invoices->data as $invoice)
|
1578 |
-
{
|
1579 |
if(!$invoice->closed && $invoice->subscription == $subscription->id)
|
1580 |
-
{
|
1581 |
$invoice->closed = true;
|
1582 |
$invoice->save();
|
1583 |
}
|
1584 |
}
|
1585 |
-
}
|
1586 |
-
|
1587 |
//cancel
|
1588 |
$r = $subscription->cancel();
|
1589 |
-
|
1590 |
return true;
|
1591 |
}
|
1592 |
catch(Exception $e)
|
1593 |
-
{
|
1594 |
return false;
|
1595 |
}
|
1596 |
}
|
1 |
+
<?php
|
2 |
//include pmprogateway
|
3 |
+
require_once(dirname(__FILE__) . "/class.pmprogateway.php");
|
4 |
+
|
5 |
//load classes init method
|
6 |
add_action('init', array('PMProGateway_stripe', 'init'));
|
7 |
+
|
8 |
/**
|
9 |
* PMProGateway_stripe Class
|
10 |
*
|
16 |
{
|
17 |
/**
|
18 |
* Stripe Class Constructor
|
19 |
+
*
|
20 |
* @since 1.4
|
21 |
*/
|
22 |
function PMProGateway_stripe($gateway = NULL)
|
23 |
{
|
24 |
$this->gateway = $gateway;
|
25 |
$this->gateway_environment = pmpro_getOption("gateway_environment");
|
26 |
+
|
27 |
+
$this->loadStripeLibrary();
|
28 |
Stripe::setApiKey(pmpro_getOption("stripe_secretkey"));
|
29 |
+
|
30 |
return $this->gateway;
|
31 |
+
}
|
32 |
+
|
33 |
/**
|
34 |
* Load the Stripe API library.
|
35 |
+
*
|
36 |
* @since 1.8
|
37 |
+
* Moved into a method in version 1.8 so we only load it when needed.
|
38 |
*/
|
39 |
function loadStripeLibrary()
|
40 |
{
|
42 |
if(!class_exists("Stripe"))
|
43 |
require_once(dirname(__FILE__) . "/../../includes/lib/Stripe/Stripe.php");
|
44 |
}
|
45 |
+
|
46 |
/**
|
47 |
* Run on WP init
|
48 |
+
*
|
49 |
* @since 1.8
|
50 |
*/
|
51 |
static function init()
|
52 |
+
{
|
53 |
//make sure Stripe is a gateway option
|
54 |
add_filter('pmpro_gateways', array('PMProGateway_stripe', 'pmpro_gateways'));
|
55 |
+
|
56 |
//add fields to payment settings
|
57 |
add_filter('pmpro_payment_options', array('PMProGateway_stripe', 'pmpro_payment_options'));
|
58 |
add_filter('pmpro_payment_option_fields', array('PMProGateway_stripe', 'pmpro_payment_option_fields'), 10, 2);
|
59 |
+
|
60 |
//add some fields to edit user page (Updates)
|
61 |
add_action('pmpro_after_membership_level_profile_fields', array('PMProGateway_stripe', 'user_profile_fields'));
|
62 |
add_action('profile_update', array('PMProGateway_stripe', 'user_profile_fields_save'));
|
63 |
+
|
64 |
//old global RE showing billing address or not
|
65 |
global $pmpro_stripe_lite;
|
66 |
$pmpro_stripe_lite = apply_filters("pmpro_stripe_lite", !pmpro_getOption("stripe_billingaddress")); //default is oposite of the stripe_billingaddress setting
|
67 |
+
|
68 |
//updates cron
|
69 |
add_action('pmpro_activation', array('PMProGateway_stripe', 'pmpro_activation'));
|
70 |
add_action('pmpro_deactivation', array('PMProGateway_stripe', 'pmpro_deactivation'));
|
71 |
add_action('pmpro_cron_stripe_subscription_updates', array('PMProGateway_stripe', 'pmpro_cron_stripe_subscription_updates'));
|
72 |
+
|
73 |
//code to add at checkout if Stripe is the current gateway
|
74 |
$gateway = pmpro_getOption("gateway");
|
75 |
if($gateway == "stripe")
|
76 |
{
|
77 |
+
add_action('pmpro_checkout_preheader', array('PMProGateway_stripe', 'pmpro_checkout_preheader'));
|
78 |
add_filter('pmpro_checkout_order', array('PMProGateway_stripe', 'pmpro_checkout_order'));
|
79 |
add_filter('pmpro_include_billing_address_fields', array('PMProGateway_stripe', 'pmpro_include_billing_address_fields'));
|
80 |
add_filter('pmpro_include_cardtype_field', array('PMProGateway_stripe', 'pmpro_include_billing_address_fields'));
|
81 |
add_filter('pmpro_include_payment_information_fields', array('PMProGateway_stripe', 'pmpro_include_payment_information_fields'));
|
82 |
}
|
83 |
}
|
84 |
+
|
85 |
/**
|
86 |
* Make sure Stripe is in the gateways list
|
87 |
+
*
|
88 |
* @since 1.8
|
89 |
*/
|
90 |
static function pmpro_gateways($gateways)
|
91 |
{
|
92 |
if(empty($gateways['stripe']))
|
93 |
$gateways['stripe'] = __('Stripe', 'pmpro');
|
94 |
+
|
95 |
return $gateways;
|
96 |
}
|
97 |
+
|
98 |
/**
|
99 |
* Get a list of payment options that the Stripe gateway needs/supports.
|
100 |
+
*
|
101 |
* @since 1.8
|
102 |
*/
|
103 |
static function getGatewayOptions()
|
104 |
+
{
|
105 |
$options = array(
|
106 |
'sslseal',
|
107 |
'nuclear_HTTPS',
|
115 |
'tax_rate',
|
116 |
'accepted_credit_cards'
|
117 |
);
|
118 |
+
|
119 |
return $options;
|
120 |
}
|
121 |
+
|
122 |
/**
|
123 |
* Set payment options for payment settings page.
|
124 |
+
*
|
125 |
* @since 1.8
|
126 |
*/
|
127 |
static function pmpro_payment_options($options)
|
128 |
+
{
|
129 |
//get stripe options
|
130 |
$stripe_options = PMProGateway_stripe::getGatewayOptions();
|
131 |
+
|
132 |
//merge with others.
|
133 |
$options = array_merge($stripe_options, $options);
|
134 |
+
|
135 |
return $options;
|
136 |
}
|
137 |
+
|
138 |
/**
|
139 |
* Display fields for Stripe options.
|
140 |
+
*
|
141 |
* @since 1.8
|
142 |
*/
|
143 |
static function pmpro_payment_option_fields($values, $gateway)
|
144 |
{
|
145 |
?>
|
146 |
+
<tr class="pmpro_settings_divider gateway gateway_stripe" <?php if($gateway != "stripe") { ?>style="display: none;"<?php } ?>>
|
147 |
<td colspan="2">
|
148 |
<?php _e('Stripe Settings', 'pmpro'); ?>
|
149 |
</td>
|
171 |
<td>
|
172 |
<select id="stripe_billingaddress" name="stripe_billingaddress">
|
173 |
<option value="0" <?php if(empty($values['stripe_billingaddress'])) { ?>selected="selected"<?php } ?>><?php _e('No', 'pmpro');?></option>
|
174 |
+
<option value="1" <?php if(!empty($values['stripe_billingaddress'])) { ?>selected="selected"<?php } ?>><?php _e('Yes', 'pmpro');?></option>
|
175 |
</select>
|
176 |
<small><?php _e("Stripe doesn't require billing address fields. Choose 'No' to hide them on the checkout page.<br /><strong>If No, make sure you disable address verification in the Stripe dashboard settings.</strong>", 'pmpro');?></small>
|
177 |
</td>
|
183 |
<td>
|
184 |
<p><?php _e('To fully integrate with Stripe, be sure to set your Web Hook URL to', 'pmpro');?> <pre><?php echo admin_url("admin-ajax.php") . "?action=stripe_webhook";?></pre></p>
|
185 |
</td>
|
186 |
+
</tr>
|
187 |
<?php
|
188 |
}
|
189 |
+
|
190 |
/**
|
191 |
* Code added to checkout preheader.
|
192 |
+
*
|
193 |
* @since 1.8
|
194 |
*/
|
195 |
static function pmpro_checkout_preheader()
|
196 |
+
{
|
197 |
global $gateway, $pmpro_level;
|
198 |
+
|
199 |
if($gateway == "stripe" && !pmpro_isLevelFree($pmpro_level))
|
200 |
{
|
201 |
//stripe js library
|
202 |
wp_enqueue_script("stripe", "https://js.stripe.com/v2/", array(), NULL);
|
203 |
+
|
204 |
//stripe js code for checkout
|
205 |
function pmpro_stripe_javascript()
|
206 |
{
|
207 |
global $pmpro_gateway, $pmpro_level, $pmpro_stripe_lite;
|
208 |
?>
|
209 |
<script type="text/javascript">
|
210 |
+
// this identifies your website in the createToken call below
|
211 |
Stripe.setPublishableKey('<?php echo pmpro_getOption("stripe_publishablekey"); ?>');
|
212 |
+
|
213 |
+
var pmpro_require_billing = true;
|
214 |
+
|
215 |
jQuery(document).ready(function() {
|
216 |
jQuery("#pmpro_form, .pmpro_form").submit(function(event) {
|
217 |
+
|
218 |
+
//double check in case a discount code made the level free
|
219 |
if(pmpro_require_billing)
|
220 |
{
|
221 |
//build array for creating token
|
231 |
?>
|
232 |
,address_line1: jQuery('#baddress1').val(),
|
233 |
address_line2: jQuery('#baddress2').val(),
|
234 |
+
address_city: jQuery('#bcity').val(),
|
235 |
+
address_state: jQuery('#bstate').val(),
|
236 |
+
address_zip: jQuery('#bzipcode').val(),
|
237 |
address_country: jQuery('#bcountry').val()
|
238 |
<?php
|
239 |
}
|
240 |
+
?>
|
241 |
};
|
242 |
+
|
243 |
if (jQuery('#bfirstname').length && jQuery('#blastname').length)
|
244 |
args['name'] = jQuery.trim(jQuery('#bfirstname').val() + ' ' + jQuery('#blastname').val());
|
245 |
+
|
246 |
//create token
|
247 |
Stripe.createToken(args, stripeResponseHandler);
|
248 |
|
261 |
|
262 |
//hide processing message
|
263 |
jQuery('#pmpro_processing_message').css('visibility', 'hidden');
|
264 |
+
|
265 |
// show the errors on the form
|
266 |
alert(response.error.message);
|
267 |
jQuery(".payment-errors").text(response.error.message);
|
268 |
} else {
|
269 |
+
var form$ = jQuery("#pmpro_form, .pmpro_form");
|
270 |
// token contains id, last4, and card type
|
271 |
+
var token = response['id'];
|
272 |
// insert the token into the form so it gets submitted to the server
|
273 |
form$.append("<input type='hidden' name='stripeToken' value='" + token + "'/>");
|
274 |
+
|
275 |
console.log(response);
|
276 |
+
|
277 |
//insert fields for other card fields
|
278 |
if(jQuery('#CardType[name=CardType]').length)
|
279 |
jQuery('#CardType').val(response['card']['brand']);
|
281 |
form$.append("<input type='hidden' name='CardType' value='" + response['card']['brand'] + "'/>");
|
282 |
form$.append("<input type='hidden' name='AccountNumber' value='XXXXXXXXXXXXX" + response['card']['last4'] + "'/>");
|
283 |
form$.append("<input type='hidden' name='ExpirationMonth' value='" + ("0" + response['card']['exp_month']).slice(-2) + "'/>");
|
284 |
+
form$.append("<input type='hidden' name='ExpirationYear' value='" + response['card']['exp_year'] + "'/>");
|
285 |
+
|
286 |
// and submit
|
287 |
form$.get(0).submit();
|
288 |
}
|
291 |
<?php
|
292 |
}
|
293 |
add_action("wp_head", "pmpro_stripe_javascript");
|
294 |
+
|
295 |
//don't require the CVV
|
296 |
function pmpro_stripe_dont_require_CVV($fields)
|
297 |
{
|
298 |
+
unset($fields['CVV']);
|
299 |
return $fields;
|
300 |
}
|
301 |
add_filter("pmpro_required_billing_fields", "pmpro_stripe_dont_require_CVV");
|
302 |
}
|
303 |
}
|
304 |
+
|
305 |
/**
|
306 |
* Filtering orders at checkout.
|
307 |
+
*
|
308 |
* @since 1.8
|
309 |
*/
|
310 |
static function pmpro_checkout_order($morder)
|
314 |
{
|
315 |
$morder->stripeToken = $_REQUEST['stripeToken'];
|
316 |
}
|
317 |
+
|
318 |
//stripe lite code to get name from other sources if available
|
319 |
global $pmpro_stripe_lite, $current_user;
|
320 |
if(!empty($pmpro_stripe_lite) && empty($morder->FirstName) && empty($morder->LastName))
|
321 |
{
|
322 |
if(!empty($current_user->ID))
|
323 |
+
{
|
324 |
$morder->FirstName = get_user_meta($current_user->ID, "first_name", true);
|
325 |
$morder->LastName = get_user_meta($current_user->ID, "last_name", true);
|
326 |
}
|
330 |
$morder->LastName = $_REQUEST['last_name'];
|
331 |
}
|
332 |
}
|
333 |
+
|
334 |
return $morder;
|
335 |
}
|
336 |
+
|
337 |
/**
|
338 |
* Code to run after checkout
|
339 |
+
*
|
340 |
* @since 1.8
|
341 |
*/
|
342 |
+
static function pmpro_after_checkout($user_id, $morder)
|
343 |
{
|
344 |
global $gateway;
|
345 |
+
|
346 |
if($gateway == "stripe")
|
347 |
{
|
348 |
if(!empty($morder) && !empty($morer->Gateway) && !empty($morder->Gateway->customer) && !empty($morder->Gateway->customer->id))
|
351 |
}
|
352 |
}
|
353 |
}
|
354 |
+
|
355 |
/**
|
356 |
* Check settings if billing address should be shown.
|
357 |
* @since 1.8
|
361 |
//check settings RE showing billing address
|
362 |
if(!pmpro_getOption("stripe_billingaddress"))
|
363 |
$include = false;
|
364 |
+
|
365 |
return $include;
|
366 |
}
|
367 |
+
|
368 |
/**
|
369 |
* Use our own payment fields at checkout. (Remove the name attributes.)
|
370 |
* @since 1.8
|
371 |
*/
|
372 |
static function pmpro_include_payment_information_fields($include)
|
373 |
+
{
|
374 |
//global vars
|
375 |
global $pmpro_requirebilling, $pmpro_show_discount_code, $discount_code, $CardType, $AccountNumber, $ExpirationMonth, $ExpirationYear;
|
376 |
+
|
377 |
//get accepted credit cards
|
378 |
$pmpro_accepted_credit_cards = pmpro_getOption("accepted_credit_cards");
|
379 |
$pmpro_accepted_credit_cards = explode(",", $pmpro_accepted_credit_cards);
|
380 |
+
$pmpro_accepted_credit_cards_string = pmpro_implodeToEnglish($pmpro_accepted_credit_cards);
|
381 |
+
|
382 |
//include ours
|
383 |
?>
|
384 |
<table id="pmpro_payment_information_fields" class="pmpro_checkout top1em" width="100%" cellpadding="0" cellspacing="0" border="0" <?php if(!$pmpro_requirebilling || apply_filters("pmpro_hide_payment_information_fields", false) ) { ?>style="display: none;"<?php } ?>>
|
388 |
</tr>
|
389 |
</thead>
|
390 |
<tbody>
|
391 |
+
<tr valign="top">
|
392 |
+
<td>
|
393 |
<?php
|
394 |
$sslseal = pmpro_getOption("sslseal");
|
395 |
if($sslseal)
|
409 |
<select id="CardType" class=" <?php echo pmpro_getClassForField("CardType");?>">
|
410 |
<?php foreach($pmpro_accepted_credit_cards as $cc) { ?>
|
411 |
<option value="<?php echo $cc?>" <?php if($CardType == $cc) { ?>selected="selected"<?php } ?>><?php echo $cc?></option>
|
412 |
+
<?php } ?>
|
413 |
</select>
|
414 |
</div>
|
415 |
<?php
|
419 |
?>
|
420 |
<input type="hidden" id="CardType" name="CardType" value="<?php echo esc_attr($CardType);?>" />
|
421 |
<script>
|
422 |
+
jQuery(document).ready(function() {
|
423 |
+
jQuery('#AccountNumber').validateCreditCard(function(result) {
|
424 |
var cardtypenames = {
|
425 |
"amex":"American Express",
|
426 |
"diners_club_carte_blanche":"Diners Club Carte Blanche",
|
433 |
"visa":"Visa",
|
434 |
"visa_electron":"Visa Electron"
|
435 |
}
|
436 |
+
|
437 |
if(result.card_type)
|
438 |
jQuery('#CardType').val(cardtypenames[result.card_type.name]);
|
439 |
else
|
440 |
jQuery('#CardType').val('Unknown Card Type');
|
441 |
+
});
|
442 |
});
|
443 |
</script>
|
444 |
<?php
|
445 |
}
|
446 |
?>
|
447 |
+
|
448 |
<div class="pmpro_payment-account-number">
|
449 |
<label for="AccountNumber"><?php _e('Card Number', 'pmpro');?></label>
|
450 |
<input id="AccountNumber" class="input <?php echo pmpro_getClassForField("AccountNumber");?>" type="text" size="25" value="<?php echo esc_attr($AccountNumber)?>" autocomplete="off" />
|
451 |
</div>
|
452 |
+
|
453 |
<div class="pmpro_payment-expiration">
|
454 |
<label for="ExpirationMonth"><?php _e('Expiration Date', 'pmpro');?></label>
|
455 |
<select id="ExpirationMonth" class=" <?php echo pmpro_getClassForField("ExpirationMonth");?>">
|
474 |
<?php
|
475 |
}
|
476 |
?>
|
477 |
+
</select>
|
478 |
</div>
|
479 |
+
|
480 |
<?php
|
481 |
$pmpro_show_cvv = apply_filters("pmpro_show_cvv", true);
|
482 |
if($pmpro_show_cvv)
|
489 |
<?php
|
490 |
}
|
491 |
?>
|
492 |
+
|
493 |
<?php if($pmpro_show_discount_code) { ?>
|
494 |
<div class="pmpro_payment-discount-code">
|
495 |
<label for="discount_code"><?php _e('Discount Code', 'pmpro');?></label>
|
498 |
<p id="discount_code_message" class="pmpro_message" style="display: none;"></p>
|
499 |
</div>
|
500 |
<?php } ?>
|
501 |
+
|
502 |
+
</td>
|
503 |
</tr>
|
504 |
</tbody>
|
505 |
</table>
|
506 |
<?php
|
507 |
+
|
508 |
//don't include the default
|
509 |
return false;
|
510 |
}
|
511 |
+
|
512 |
/**
|
513 |
* Fields shown on edit user page
|
514 |
+
*
|
515 |
* @since 1.8
|
516 |
*/
|
517 |
static function user_profile_fields($user)
|
521 |
$cycles = array( __('Day(s)', 'pmpro') => 'Day', __('Week(s)', 'pmpro') => 'Week', __('Month(s)', 'pmpro') => 'Month', __('Year(s)', 'pmpro') => 'Year' );
|
522 |
$current_year = date("Y");
|
523 |
$current_month = date("m");
|
524 |
+
|
525 |
//make sure the current user has privileges
|
526 |
$membership_level_capability = apply_filters("pmpro_edit_member_capability", "manage_options");
|
527 |
if(!current_user_can($membership_level_capability))
|
528 |
return false;
|
529 |
|
530 |
+
//more privelges they should have
|
531 |
$show_membership_level = apply_filters("pmpro_profile_show_membership_level", true, $user);
|
532 |
if(!$show_membership_level)
|
533 |
return false;
|
534 |
+
|
535 |
//check that user has a current subscription at Stripe
|
536 |
$last_order = new MemberOrder();
|
537 |
$last_order->getLastMemberOrder($user->ID);
|
538 |
+
|
539 |
//assume no sub to start
|
540 |
$sub = false;
|
541 |
+
|
542 |
//check that gateway is Stripe
|
543 |
if($last_order->gateway == "stripe")
|
544 |
+
{
|
545 |
//is there a customer?
|
546 |
+
$sub = $last_order->Gateway->getSubscription($last_order);
|
547 |
+
}
|
548 |
+
|
549 |
$customer_id = $user->pmpro_stripe_customerid;
|
550 |
+
|
551 |
if(empty($sub))
|
552 |
{
|
553 |
//make sure we delete stripe updates
|
554 |
update_user_meta($user->ID, "pmpro_stripe_updates", array());
|
555 |
+
|
556 |
//if the last order has a sub id, let the admin know there is no sub at Stripe
|
557 |
if(!empty($last_order) && $last_order->gateway == "stripe" && !empty($last_order->subscription_transaction_id) && strpos($last_order->subscription_transaction_id, "sub_") !== false)
|
558 |
{
|
559 |
?>
|
560 |
<p><strong>Note:</strong> Subscription <strong><?php echo $last_order->subscription_transaction_id;?></strong> could not be found at Stripe. It might have been deleted.</p>
|
561 |
<?php
|
562 |
+
}
|
563 |
}
|
564 |
+
else
|
565 |
+
{
|
566 |
?>
|
567 |
<h3><?php _e("Subscription Updates", "pmpro"); ?></h3>
|
568 |
<p>
|
578 |
<th><label for="membership_level"><?php _e("Update", "pmpro"); ?></label></th>
|
579 |
<td id="updates_td">
|
580 |
<?php
|
581 |
+
$old_updates = $user->pmpro_stripe_updates;
|
582 |
if(is_array($old_updates))
|
583 |
{
|
584 |
$updates = array_merge(
|
588 |
}
|
589 |
else
|
590 |
$updates = array(array('template'=>true, 'when'=>'now', 'date_month'=>'', 'date_day'=>'', 'date_year'=>'', 'billing_amount'=>'', 'cycle_number'=>'', 'cycle_period'=>'Month'));
|
591 |
+
|
592 |
foreach($updates as $update)
|
593 |
{
|
594 |
?>
|
595 |
<div class="updates_update" <?php if(!empty($update['template'])) { ?>style="display: none;"<?php } ?>>
|
596 |
+
<select class="updates_when" name="updates_when[]">
|
597 |
<option value="now" <?php selected($update['when'], "now");?>>Now</option>
|
598 |
<option value="payment" <?php selected($update['when'], "payment");?>>After Next Payment</option>
|
599 |
<option value="date" <?php selected($update['when'], "date");?>>On Date</option>
|
600 |
</select>
|
601 |
<span class="updates_date" <?php if($uwhen != "date") { ?>style="display: none;"<?php } ?>>
|
602 |
<select name="updates_date_month[]">
|
603 |
+
<?php
|
604 |
for($i = 1; $i < 13; $i++)
|
605 |
{
|
606 |
?>
|
619 |
<small><?php _e('per', 'pmpro');?></small>
|
620 |
<input name="updates_cycle_number[]" type="text" size="5" value="<?php echo esc_attr($update['cycle_number']);?>" />
|
621 |
<select name="updates_cycle_period[]">
|
622 |
+
<?php
|
623 |
foreach ( $cycles as $name => $value ) {
|
624 |
echo "<option value='$value'";
|
625 |
if(!empty($update['cycle_period']) && $update['cycle_period'] == $value) echo " selected='selected'";
|
627 |
}
|
628 |
?>
|
629 |
</select>
|
630 |
+
</span>
|
631 |
<span>
|
632 |
+
<a class="updates_remove" href="javascript:void(0);">Remove</a>
|
633 |
</span>
|
634 |
</div>
|
635 |
<?php
|
636 |
}
|
637 |
+
?>
|
638 |
<p><a id="updates_new_update" href="javascript:void(0);">+ New Update</a></p>
|
639 |
</td>
|
640 |
+
</tr>
|
641 |
+
</table>
|
642 |
<script>
|
643 |
jQuery(document).ready(function() {
|
644 |
//function to update dropdowns/etc based on when field
|
648 |
jQuery(when).parent().children('.updates_date').show();
|
649 |
else
|
650 |
jQuery(when).parent().children('.updates_date').hide();
|
651 |
+
|
652 |
if(jQuery(when).val() == 'no')
|
653 |
jQuery(when).parent().children('.updates_billing').hide();
|
654 |
else
|
655 |
jQuery(when).parent().children('.updates_billing').show();
|
656 |
+
}
|
657 |
|
658 |
//and update on page load
|
659 |
jQuery('.updates_when').each(function() { if(jQuery(this).parent().css('display') != 'none') updateSubscriptionUpdateFields(this); });
|
660 |
+
|
661 |
//add a new update when clicking to
|
662 |
var num_updates_divs = <?php echo count($updates);?>;
|
663 |
jQuery('#updates_new_update').click(function() {
|
664 |
//get updates
|
665 |
updates = jQuery('.updates_update').toArray();
|
666 |
+
|
667 |
//clone the first one
|
668 |
+
new_div = jQuery(updates[0]).clone();
|
669 |
+
|
670 |
//append
|
671 |
new_div.insertBefore('#updates_new_update');
|
672 |
+
|
673 |
//update events
|
674 |
addUpdateEvents()
|
675 |
+
|
676 |
//unhide it
|
677 |
new_div.show();
|
678 |
+
updateSubscriptionUpdateFields(new_div.children('.updates_when'));
|
679 |
});
|
680 |
+
|
681 |
function addUpdateEvents()
|
682 |
{
|
683 |
//update when when changes
|
684 |
jQuery('.updates_when').change(function() {
|
685 |
updateSubscriptionUpdateFields(this);
|
686 |
});
|
687 |
+
|
688 |
//remove updates when clicking
|
689 |
+
jQuery('.updates_remove').click(function() {
|
690 |
jQuery(this).parent().parent().remove();
|
691 |
});
|
692 |
}
|
696 |
<?php
|
697 |
}
|
698 |
}
|
699 |
+
|
700 |
/**
|
701 |
* Process fields from the edit user page
|
702 |
+
*
|
703 |
* @since 1.8
|
704 |
*/
|
705 |
static function user_profile_fields_save($user_id)
|
706 |
{
|
707 |
global $wpdb;
|
708 |
+
|
709 |
//check capabilities
|
710 |
$membership_level_capability = apply_filters("pmpro_edit_member_capability", "manage_options");
|
711 |
if(!current_user_can($membership_level_capability))
|
712 |
return false;
|
713 |
+
|
714 |
//make sure some value was passed
|
715 |
if(!isset($_POST['updates_when']) || !is_array($_POST['updates_when']))
|
716 |
return;
|
717 |
+
|
718 |
//vars
|
719 |
$updates = array();
|
720 |
$next_on_date_update = "";
|
721 |
+
|
722 |
//build array of updates (we skip the first because it's the template field for the JavaScript
|
723 |
for($i = 1; $i < count($_POST['updates_when']); $i++)
|
724 |
{
|
725 |
$update = array();
|
726 |
+
|
727 |
//all updates have these values
|
728 |
$update['when'] = $_POST['updates_when'][$i];
|
729 |
$update['billing_amount'] = $_POST['updates_billing_amount'][$i];
|
730 |
$update['cycle_number'] = $_POST['updates_cycle_number'][$i];
|
731 |
$update['cycle_period'] = $_POST['updates_cycle_period'][$i];
|
732 |
+
|
733 |
//these values only for on date updates
|
734 |
if($_POST['updates_when'][$i] == "date")
|
735 |
{
|
737 |
$update['date_day'] = str_pad($_POST['updates_date_day'][$i], 2, "0", STR_PAD_LEFT);
|
738 |
$update['date_year'] = $_POST['updates_date_year'][$i];
|
739 |
}
|
740 |
+
|
741 |
//make sure the update is valid
|
742 |
if(empty($update['cycle_number']))
|
743 |
continue;
|
744 |
+
|
745 |
//if when is now, update the subscription
|
746 |
if($update['when'] == "now")
|
747 |
{
|
748 |
//get level for user
|
749 |
$user_level = pmpro_getMembershipLevelForUser($user_id);
|
750 |
+
|
751 |
//get current plan at Stripe to get payment date
|
752 |
$last_order = new MemberOrder();
|
753 |
$last_order->getLastMemberOrder($user_id);
|
755 |
$last_order->Gateway->getCustomer($last_order);
|
756 |
|
757 |
$subscription = $last_order->Gateway->getSubscription($last_order);
|
758 |
+
|
759 |
if(!empty($subscription))
|
760 |
+
{
|
761 |
$end_timestamp = $subscription->current_period_end;
|
762 |
+
|
763 |
+
//cancel the old subscription
|
764 |
if(!$last_order->Gateway->cancelSubscriptionAtGateway($subscription))
|
765 |
{
|
766 |
//throw error and halt save
|
767 |
+
function pmpro_stripe_user_profile_fields_save_error($errors, $update, $user)
|
768 |
{
|
769 |
$errors->add('pmpro_stripe_updates',__('Could not cancel the old subscription. Updates have not been processed.', 'pmpro'));
|
770 |
}
|
771 |
add_filter('user_profile_update_errors', 'pmpro_stripe_user_profile_fields_save_error', 10, 3);
|
772 |
+
|
773 |
//stop processing updates
|
774 |
return;
|
775 |
}
|
776 |
}
|
777 |
+
|
778 |
//if we didn't get an end date, let's set one one cycle out
|
779 |
if(empty($end_timestamp))
|
780 |
$end_timestamp = strtotime("+" . $update['cycle_number'] . " " . $update['cycle_period'], current_time('timestamp'));
|
781 |
+
|
782 |
//build order object
|
783 |
$update_order = new MemberOrder();
|
784 |
$update_order->setGateway('stripe');
|
789 |
$update_order->PaymentAmount = $update['billing_amount'];
|
790 |
$update_order->ProfileStartDate = date("Y-m-d", $end_timestamp);
|
791 |
$update_order->BillingPeriod = $update['cycle_period'];
|
792 |
+
$update_order->BillingFrequency = $update['cycle_number'];
|
793 |
+
|
794 |
//need filter to reset ProfileStartDate
|
795 |
add_filter('pmpro_profile_start_date', create_function('$startdate, $order', 'return "' . $update_order->ProfileStartDate . 'T0:0:0";'), 10, 2);
|
796 |
+
|
797 |
//update subscription
|
798 |
$update_order->Gateway->subscribe($update_order, false);
|
799 |
+
|
800 |
//update membership
|
801 |
$sqlQuery = "UPDATE $wpdb->pmpro_memberships_users
|
802 |
SET billing_amount = '" . esc_sql($update['billing_amount']) . "',
|
808 |
AND membership_id = '" . esc_sql($last_order->membership_id) . "'
|
809 |
AND status = 'active'
|
810 |
LIMIT 1";
|
811 |
+
|
812 |
$wpdb->query($sqlQuery);
|
813 |
+
|
814 |
//save order so we know which plan to look for at stripe (order code = plan id)
|
815 |
$update_order->status = "success";
|
816 |
$update_order->saveOrder();
|
817 |
+
|
818 |
continue;
|
819 |
}
|
820 |
elseif($update['when'] == 'date')
|
824 |
else
|
825 |
$next_on_date_update = $update['date_year'] . "-" . $update['date_month'] . "-" . $update['date_day'];
|
826 |
}
|
827 |
+
|
828 |
+
//add to array
|
829 |
+
$updates[] = $update;
|
830 |
}
|
831 |
+
|
832 |
//save in user meta
|
833 |
update_user_meta($user_id, "pmpro_stripe_updates", $updates);
|
834 |
+
|
835 |
//save date of next on-date update to make it easier to query for these in cron job
|
836 |
update_user_meta($user_id, "pmpro_stripe_next_on_date_update", $next_on_date_update);
|
837 |
}
|
838 |
+
|
839 |
/**
|
840 |
* Cron activation for subscription updates.
|
841 |
+
*
|
842 |
* @since 1.8
|
843 |
*/
|
844 |
static function pmpro_activation()
|
845 |
{
|
846 |
wp_schedule_event(time(), 'daily', 'pmpro_cron_stripe_subscription_updates');
|
847 |
}
|
848 |
+
|
849 |
/**
|
850 |
* Cron deactivation for subscription updates.
|
851 |
+
*
|
852 |
* @since 1.8
|
853 |
*/
|
854 |
static function pmpro_deactivation()
|
855 |
{
|
856 |
wp_clear_scheduled_hook('pmpro_cron_stripe_subscription_updates');
|
857 |
}
|
858 |
+
|
859 |
/**
|
860 |
* Cron job for subscription updates.
|
861 |
+
*
|
862 |
* @since 1.8
|
863 |
*/
|
864 |
static function pmpro_cron_stripe_subscription_updates()
|
866 |
global $wpdb;
|
867 |
|
868 |
//get all updates for today (or before today)
|
869 |
+
$sqlQuery = "SELECT *
|
870 |
+
FROM $wpdb->usermeta
|
871 |
+
WHERE meta_key = 'pmpro_stripe_next_on_date_update'
|
872 |
+
AND meta_value IS NOT NULL
|
873 |
+
AND meta_value < '" . date("Y-m-d", strtotime("+1 day")) . "'";
|
874 |
$updates = $wpdb->get_results($sqlQuery);
|
875 |
+
|
876 |
if(!empty($updates))
|
877 |
+
{
|
878 |
//loop through
|
879 |
foreach($updates as $update)
|
880 |
+
{
|
881 |
//pull values from update
|
882 |
$user_id = $update->user_id;
|
883 |
+
|
884 |
$user = get_userdata($user_id);
|
885 |
$user_updates = $user->pmpro_stripe_updates;
|
886 |
+
$next_on_date_update = "";
|
887 |
+
|
888 |
//loop through updates looking for updates happening today or earlier
|
889 |
foreach($user_updates as $key => $update)
|
890 |
+
{
|
891 |
if($update['when'] == 'date' &&
|
892 |
$update['date_year'] . "-" . $update['date_month'] . "-" . $update['date_day'] <= date("Y-m-d")
|
893 |
)
|
894 |
{
|
895 |
//get level for user
|
896 |
$user_level = pmpro_getMembershipLevelForUser($user_id);
|
897 |
+
|
898 |
//get current plan at Stripe to get payment date
|
899 |
$last_order = new MemberOrder();
|
900 |
$last_order->getLastMemberOrder($user_id);
|
901 |
$last_order->setGateway('stripe');
|
902 |
$last_order->Gateway->getCustomer($last_order);
|
903 |
+
|
904 |
if(!empty($last_order->Gateway->customer))
|
905 |
{
|
906 |
//find the first subscription
|
910 |
$end_timestamp = $first_sub['current_period_end'];
|
911 |
}
|
912 |
}
|
913 |
+
|
914 |
//if we didn't get an end date, let's set one one cycle out
|
915 |
$end_timestamp = strtotime("+" . $update['cycle_number'] . " " . $update['cycle_period']);
|
916 |
+
|
917 |
//build order object
|
918 |
$update_order = new MemberOrder();
|
919 |
$update_order->setGateway('stripe');
|
925 |
$update_order->ProfileStartDate = date("Y-m-d", $end_timestamp);
|
926 |
$update_order->BillingPeriod = $update['cycle_period'];
|
927 |
$update_order->BillingFrequency = $update['cycle_number'];
|
928 |
+
|
929 |
//update subscription
|
930 |
$update_order->Gateway->subscribe($update_order, false);
|
931 |
+
|
932 |
//update membership
|
933 |
+
$sqlQuery = "UPDATE $wpdb->pmpro_memberships_users
|
934 |
+
SET billing_amount = '" . esc_sql($update['billing_amount']) . "',
|
935 |
+
cycle_number = '" . esc_sql($update['cycle_number']) . "',
|
936 |
+
cycle_period = '" . esc_sql($update['cycle_period']) . "'
|
937 |
+
WHERE user_id = '" . esc_sql($user_id) . "'
|
938 |
+
AND membership_id = '" . esc_sql($last_order->membership_id) . "'
|
939 |
+
AND status = 'active'
|
940 |
LIMIT 1";
|
941 |
+
|
942 |
$wpdb->query($sqlQuery);
|
943 |
+
|
944 |
//save order
|
945 |
$update_order->status = "success";
|
946 |
$update_order->save();
|
947 |
+
|
948 |
//remove update from list
|
949 |
+
unset($user_updates[$key]);
|
950 |
}
|
951 |
elseif($update['when'] == 'date')
|
952 |
{
|
957 |
$next_on_date_update = $update['date_year'] . "-" . $update['date_month'] . "-" . $update['date_day'];
|
958 |
}
|
959 |
}
|
960 |
+
|
961 |
//save updates in case we removed some
|
962 |
update_user_meta($user_id, "pmpro_stripe_updates", $user_updates);
|
963 |
+
|
964 |
//save date of next on-date update to make it easier to query for these in cron job
|
965 |
update_user_meta($user_id, "pmpro_stripe_next_on_date_update", $next_on_date_update);
|
966 |
}
|
967 |
}
|
968 |
}
|
969 |
+
|
970 |
/**
|
971 |
* Process checkout and decide if a charge and or subscribe is needed
|
972 |
+
*
|
973 |
* @since 1.4
|
974 |
*/
|
975 |
function process(&$order)
|
986 |
if($this->charge($order))
|
987 |
{
|
988 |
if(pmpro_isLevelRecurring($order->membership_level))
|
989 |
+
{
|
990 |
if($this->subscribe($order))
|
991 |
{
|
992 |
//yay!
|
1001 |
else
|
1002 |
{
|
1003 |
//only a one time charge
|
1004 |
+
$order->status = "success"; //saved on checkout page
|
1005 |
return true;
|
1006 |
}
|
1007 |
}
|
1011 |
$order->error = __("Unknown error: Initial payment failed.", "pmpro");
|
1012 |
return false;
|
1013 |
}
|
1014 |
+
}
|
1015 |
+
}
|
1016 |
+
|
1017 |
/**
|
1018 |
* Make a one-time charge with Stripe
|
1019 |
+
*
|
1020 |
* @since 1.4
|
1021 |
*/
|
1022 |
function charge(&$order)
|
1023 |
{
|
1024 |
global $pmpro_currency;
|
1025 |
+
|
1026 |
//create a code for the order
|
1027 |
if(empty($order->code))
|
1028 |
$order->code = $order->getRandomCode();
|
1029 |
+
|
1030 |
+
//what amount to charge?
|
1031 |
$amount = $order->InitialPayment;
|
1032 |
+
|
1033 |
//tax
|
1034 |
$order->subtotal = $amount;
|
1035 |
$tax = $order->getTax(true);
|
1036 |
$amount = round((float)$order->subtotal + (float)$tax, 2);
|
1037 |
+
|
1038 |
//create a customer
|
1039 |
$result = $this->getCustomer($order);
|
1040 |
+
|
1041 |
if(empty($result))
|
1042 |
+
{
|
1043 |
//failed to create customer
|
1044 |
return false;
|
1045 |
+
}
|
1046 |
+
|
1047 |
//charge
|
1048 |
try
|
1049 |
{
|
1063 |
$order->shorterror = $order->error;
|
1064 |
return false;
|
1065 |
}
|
1066 |
+
|
1067 |
if(empty($response["failure_message"]))
|
1068 |
{
|
1069 |
//successful charge
|
1070 |
$order->payment_transaction_id = $response["id"];
|
1071 |
+
$order->updateStatus("success");
|
1072 |
+
return true;
|
1073 |
}
|
1074 |
else
|
1075 |
{
|
1078 |
$order->error = $response['failure_message'];
|
1079 |
$order->shorterror = $response['failure_message'];
|
1080 |
return false;
|
1081 |
+
}
|
1082 |
}
|
1083 |
+
|
1084 |
/**
|
1085 |
* Get a Stripe customer object.
|
1086 |
+
*
|
1087 |
* If $this->customer is set, it returns it.
|
1088 |
* It first checks if the order has a subscription_transaction_id. If so, that's the customer id.
|
1089 |
* If not, it checks for a user_id on the order and searches for a customer id in the user meta.
|
1097 |
function getCustomer(&$order = false, $force = false)
|
1098 |
{
|
1099 |
global $current_user;
|
1100 |
+
|
1101 |
//already have it?
|
1102 |
if(!empty($this->customer) && !$force)
|
1103 |
return $this->customer;
|
1104 |
+
|
1105 |
//figure out user_id and user
|
1106 |
if(!empty($order->user_id))
|
1107 |
$user_id = $order->user_id;
|
1108 |
+
|
1109 |
//if no id passed, check the current user
|
1110 |
if(empty($user_id) && !empty($current_user->ID))
|
1111 |
$user_id = $current_user->ID;
|
1112 |
+
|
1113 |
if(!empty($user_id))
|
1114 |
$user = get_userdata($user_id);
|
1115 |
else
|
1116 |
$user = NULL;
|
1117 |
+
|
1118 |
//transaction id?
|
1119 |
if(!empty($order->subscription_transaction_id) && strpos($order->subscription_transaction_id, "cus_") !== false)
|
1120 |
$customer_id = $order->subscription_transaction_id;
|
1121 |
else
|
1122 |
{
|
1123 |
+
//try based on user id
|
1124 |
if(!empty($user_id))
|
1125 |
+
{
|
1126 |
+
$customer_id = get_user_meta($user_id, "pmpro_stripe_customerid", true);
|
1127 |
}
|
1128 |
+
}
|
1129 |
+
|
1130 |
//get name and email values from order in case we update
|
1131 |
$name = trim($order->FirstName . " " . $order->LastName);
|
1132 |
if(empty($name) && !empty($user->ID))
|
1133 |
{
|
1134 |
$name = trim($user->first_name . " " . $user->last_name);
|
1135 |
+
|
1136 |
//still empty?
|
1137 |
if(empty($name))
|
1138 |
$name = $user->user_login;
|
1140 |
elseif(empty($name))
|
1141 |
$name = "No Name";
|
1142 |
|
1143 |
+
$email = $order->Email;
|
1144 |
if(empty($email) && !empty($user->ID))
|
1145 |
{
|
1146 |
$email = $user->user_email;
|
1147 |
}
|
1148 |
elseif(empty($email))
|
1149 |
$email = "No Email";
|
1150 |
+
|
1151 |
//check for an existing stripe customer
|
1152 |
if(!empty($customer_id))
|
1153 |
{
|
1154 |
try
|
1155 |
{
|
1156 |
$this->customer = Stripe_Customer::retrieve($customer_id);
|
1157 |
+
|
1158 |
//update the customer description and card
|
1159 |
if(!empty($order->stripeToken))
|
1160 |
+
{
|
1161 |
$this->customer->description = $name . " (" . $email . ")";
|
1162 |
$this->customer->email = $email;
|
1163 |
$this->customer->card = $order->stripeToken;
|
1164 |
$this->customer->save();
|
1165 |
}
|
1166 |
+
|
1167 |
return $this->customer;
|
1168 |
}
|
1169 |
catch (Exception $e)
|
1170 |
{
|
1171 |
+
//assume no customer found
|
1172 |
}
|
1173 |
}
|
1174 |
+
|
1175 |
//no customer id, create one
|
1176 |
if(!empty($order->stripeToken))
|
1177 |
+
{
|
1178 |
try
|
1179 |
{
|
1180 |
$this->customer = Stripe_Customer::create(array(
|
1189 |
$order->shorterror = $order->error;
|
1190 |
return false;
|
1191 |
}
|
1192 |
+
|
1193 |
if(!empty($user_id))
|
1194 |
{
|
1195 |
//user logged in/etc
|
1196 |
+
update_user_meta($user_id, "pmpro_stripe_customerid", $this->customer->id);
|
1197 |
}
|
1198 |
else
|
1199 |
{
|
1210 |
|
1211 |
return apply_filters('pmpro_stripe_create_customer', $this->customer);
|
1212 |
}
|
1213 |
+
|
1214 |
+
return false;
|
1215 |
}
|
1216 |
+
|
1217 |
/**
|
1218 |
* Get a Stripe subscription from a PMPro order
|
1219 |
+
*
|
1220 |
* @since 1.8
|
1221 |
*/
|
1222 |
+
function getSubscription(&$order)
|
1223 |
{
|
1224 |
global $wpdb;
|
1225 |
+
|
1226 |
//no order?
|
1227 |
if(empty($order) || empty($order->code))
|
1228 |
+
return false;
|
1229 |
+
|
1230 |
$result = $this->getCustomer($order, true); //force so we don't get a cached sub for someone else
|
1231 |
+
|
1232 |
//no customer?
|
1233 |
if(empty($result))
|
1234 |
return false;
|
1235 |
+
|
1236 |
//is there a subscription transaction id pointing to a sub?
|
1237 |
if(!empty($order->subscription_transaction_id) && strpos($order->subscription_transaction_id, "sub_") !== false)
|
1238 |
{
|
1246 |
$order->shorterror = $order->error;
|
1247 |
return false;
|
1248 |
}
|
1249 |
+
|
1250 |
return $sub;
|
1251 |
+
}
|
1252 |
+
|
1253 |
//find subscription based on customer id and order/plan id
|
1254 |
+
$subscriptions = $this->customer->subscriptions->all();
|
1255 |
+
|
1256 |
//no subscriptions
|
1257 |
if(empty($subscriptions) || empty($subscriptions->data))
|
1258 |
+
return false;
|
1259 |
+
|
1260 |
//we really want to test against the order codes of all orders with the same subscription_transaction_id (customer id)
|
1261 |
$codes = $wpdb->get_col("SELECT code FROM $wpdb->pmpro_membership_orders WHERE user_id = '" . $order->user_id . "' AND subscription_transaction_id = '" . $order->subscription_transaction_id . "' AND status NOT IN('refunded', 'review', 'token', 'error')");
|
1262 |
+
|
1263 |
//find the one for this order
|
1264 |
foreach($subscriptions->data as $sub)
|
1265 |
+
{
|
1266 |
if(in_array($sub->plan->id, $codes))
|
1267 |
{
|
1268 |
return $sub;
|
1269 |
}
|
1270 |
}
|
1271 |
+
|
1272 |
+
//didn't find anything yet
|
1273 |
return false;
|
1274 |
}
|
1275 |
+
|
1276 |
/**
|
1277 |
* Create a new subscription with Stripe
|
1278 |
+
*
|
1279 |
* @since 1.4
|
1280 |
*/
|
1281 |
function subscribe(&$order, $checkout = true)
|
1282 |
{
|
1283 |
global $pmpro_currency;
|
1284 |
+
|
1285 |
//create a code for the order
|
1286 |
if(empty($order->code))
|
1287 |
$order->code = $order->getRandomCode();
|
1288 |
+
|
1289 |
//filter order before subscription. use with care.
|
1290 |
$order = apply_filters("pmpro_subscribe_order", $order, $this);
|
1291 |
+
|
1292 |
//figure out the user
|
1293 |
if(!empty($order->user_id))
|
1294 |
$user_id = $order->user_id;
|
1297 |
global $current_user;
|
1298 |
$user_id = $current_user->ID;
|
1299 |
}
|
1300 |
+
|
1301 |
//setup customer
|
1302 |
$result = $this->getCustomer($order);
|
1303 |
if(empty($result))
|
1304 |
return false; //error retrieving customer
|
1305 |
+
|
1306 |
//set subscription id to custom id
|
1307 |
$order->subscription_transaction_id = $this->customer['id']; //transaction id is the customer id, we save it in user meta later too
|
1308 |
+
|
1309 |
//figure out the amounts
|
1310 |
$amount = $order->PaymentAmount;
|
1311 |
+
$amount_tax = $order->getTaxForPrice($amount);
|
1312 |
$amount = round((float)$amount + (float)$amount_tax, 2);
|
1313 |
|
1314 |
/*
|
1315 |
There are two parts to the trial. Part 1 is simply the delay until the first payment
|
1316 |
since we are doing the first payment as a separate transaction.
|
1317 |
The second part is the actual "trial" set by the admin.
|
1318 |
+
|
1319 |
Stripe only supports Year or Month for billing periods, but we account for Days and Weeks just in case.
|
1320 |
*/
|
1321 |
+
//figure out the trial length (first payment handled by initial charge)
|
1322 |
if($order->BillingPeriod == "Year")
|
1323 |
$trial_period_days = $order->BillingFrequency * 365; //annual
|
1324 |
elseif($order->BillingPeriod == "Day")
|
1327 |
$trial_period_days = $order->BillingFrequency * 7; //weekly
|
1328 |
else
|
1329 |
$trial_period_days = $order->BillingFrequency * 30; //assume monthly
|
1330 |
+
|
1331 |
//convert to a profile start date
|
1332 |
$order->ProfileStartDate = date("Y-m-d", strtotime("+ " . $trial_period_days . " Day", current_time("timestamp"))) . "T0:0:0";
|
1333 |
+
|
1334 |
//filter the start date
|
1335 |
+
$order->ProfileStartDate = apply_filters("pmpro_profile_start_date", $order->ProfileStartDate, $order);
|
1336 |
+
|
1337 |
+
//convert back to days
|
1338 |
$trial_period_days = ceil(abs(strtotime(date("Y-m-d"), current_time("timestamp")) - strtotime($order->ProfileStartDate, current_time("timestamp"))) / 86400);
|
1339 |
|
1340 |
//for free trials, just push the start date of the subscription back
|
1341 |
+
if(!empty($order->TrialBillingCycles) && $order->TrialAmount == 0)
|
1342 |
{
|
1343 |
$trialOccurrences = (int)$order->TrialBillingCycles;
|
1344 |
if($order->BillingPeriod == "Year")
|
1354 |
{
|
1355 |
/*
|
1356 |
Let's set the subscription to the trial and give the user an "update" to change the sub later to full price (since v2.0)
|
1357 |
+
|
1358 |
This will force TrialBillingCycles > 1 to act as if they were 1
|
1359 |
+
*/
|
1360 |
$new_user_updates = array();
|
1361 |
$new_user_updates[] = array(
|
1362 |
'when' => 'payment',
|
1363 |
'billing_amount' => $order->PaymentAmount,
|
1364 |
'cycle_period' => $order->BillingPeriod,
|
1365 |
'cycle_number' => $order->BillingFrequency
|
1366 |
+
);
|
1367 |
+
|
1368 |
//now amount to equal the trial #s
|
1369 |
$amount = $order->TrialAmount;
|
1370 |
$amount_tax = $order->getTaxForPrice($amount);
|
1371 |
$amount = round((float)$amount + (float)$amount_tax, 2);
|
1372 |
+
}
|
1373 |
+
|
1374 |
//create a plan
|
1375 |
+
try
|
1376 |
{
|
1377 |
$plan = array(
|
1378 |
"amount" => $amount * 100,
|
1384 |
"id" => $order->code
|
1385 |
);
|
1386 |
|
1387 |
+
$plan = Stripe_Plan::create(apply_filters('pmpro_stripe_create_plan_array', $plan));
|
1388 |
}
|
1389 |
catch (Exception $e)
|
1390 |
{
|
1392 |
$order->shorterror = $order->error;
|
1393 |
return false;
|
1394 |
}
|
1395 |
+
|
1396 |
//before subscribing, let's clear out the updates so we don't trigger any during sub
|
1397 |
if(!empty($user_id))
|
1398 |
+
{
|
1399 |
$old_user_updates = get_user_meta($user_id, "pmpro_stripe_updates", true);
|
1400 |
+
update_user_meta($user_id, "pmpro_stripe_updates", array());
|
1401 |
+
}
|
1402 |
+
|
1403 |
if(empty($order->subscription_transaction_id) && !empty($this->customer['id']))
|
1404 |
$order->subscription_transaction_id = $this->customer['id'];
|
1405 |
+
|
1406 |
//subscribe to the plan
|
1407 |
try
|
1408 |
{
|
1409 |
+
$subscription = array("plan" => $order->code);
|
1410 |
+
$result = $this->customer->subscriptions->create(apply_filters('pmpro_stripe_create_subscription_array', $subscription));
|
1411 |
}
|
1412 |
catch (Exception $e)
|
1413 |
{
|
1414 |
//try to delete the plan
|
1415 |
$plan->delete();
|
1416 |
+
|
1417 |
//give the user any old updates back
|
1418 |
if(!empty($user_id))
|
1419 |
update_user_meta($user_id, "pmpro_stripe_updates", $old_user_updates);
|
1420 |
+
|
1421 |
//return error
|
1422 |
$order->error = __("Error subscribing customer to plan with Stripe:", "pmpro") . $e->getMessage();
|
1423 |
$order->shorterror = $order->error;
|
1424 |
return false;
|
1425 |
}
|
1426 |
+
|
1427 |
//delete the plan
|
1428 |
$plan = Stripe_Plan::retrieve($order->code);
|
1429 |
+
$plan->delete();
|
1430 |
|
1431 |
+
//if we got this far, we're all good
|
1432 |
+
$order->status = "success";
|
1433 |
$order->subscription_transaction_id = $result['id'];
|
1434 |
+
|
1435 |
//save new updates if this is at checkout
|
1436 |
if($checkout)
|
1437 |
+
{
|
1438 |
//empty out updates unless set above
|
1439 |
if(empty($new_user_updates))
|
1440 |
$new_user_updates = array();
|
1441 |
+
|
1442 |
//update user meta
|
1443 |
+
if(!empty($user_id))
|
1444 |
update_user_meta($user_id, "pmpro_stripe_updates", $new_user_updates);
|
1445 |
else
|
1446 |
{
|
1460 |
//give them their old updates back
|
1461 |
update_user_meta($user_id, "pmpro_stripe_updates", $old_user_updates);
|
1462 |
}
|
1463 |
+
|
1464 |
return true;
|
1465 |
+
}
|
1466 |
+
|
1467 |
/**
|
1468 |
* Helper method to update the customer info via getCustomer
|
1469 |
+
*
|
1470 |
* @since 1.4
|
1471 |
*/
|
1472 |
function update(&$order)
|
1473 |
{
|
1474 |
//we just have to run getCustomer which will look for the customer and update it with the new token
|
1475 |
$result = $this->getCustomer($order);
|
1476 |
+
|
1477 |
if(!empty($result))
|
1478 |
{
|
1479 |
return true;
|
1480 |
+
}
|
1481 |
else
|
1482 |
{
|
1483 |
return false; //couldn't find the customer
|
1484 |
}
|
1485 |
}
|
1486 |
+
|
1487 |
/**
|
1488 |
* Cancel a subscription at Stripe
|
1489 |
+
*
|
1490 |
* @since 1.4
|
1491 |
*/
|
1492 |
function cancel(&$order, $update_status = true)
|
1494 |
//no matter what happens below, we're going to cancel the order in our system
|
1495 |
if($update_status)
|
1496 |
$order->updateStatus("cancelled");
|
1497 |
+
|
1498 |
//require a subscription id
|
1499 |
if(empty($order->subscription_transaction_id))
|
1500 |
return false;
|
1501 |
+
|
1502 |
//find the customer
|
1503 |
+
$result = $this->getCustomer($order);
|
1504 |
+
|
1505 |
if(!empty($result))
|
1506 |
{
|
1507 |
//find subscription with this order code
|
1508 |
+
$subscription = $this->getSubscription($order);
|
1509 |
|
1510 |
if(!empty($subscription))
|
1511 |
+
{
|
1512 |
if($this->cancelSubscriptionAtGateway($subscription))
|
1513 |
{
|
1514 |
//we're okay, going to return true later
|
1517 |
{
|
1518 |
$order->error = __("Could not cancel old subscription.", "pmpro");
|
1519 |
$order->shorterror = $order->error;
|
1520 |
+
|
1521 |
+
return false;
|
1522 |
+
}
|
1523 |
+
}
|
1524 |
+
|
1525 |
/*
|
1526 |
Clear updates for this user. (But not if checking out, we would have already done that.)
|
1527 |
*/
|
1528 |
if(empty($_REQUEST['submit-checkout']))
|
1529 |
update_user_meta($order->user_id, "pmpro_stripe_updates", array());
|
1530 |
+
|
1531 |
return true;
|
1532 |
}
|
1533 |
else
|
1535 |
$order->error = __("Could not find the customer.", "pmpro");
|
1536 |
$order->shorterror = $order->error;
|
1537 |
return false; //no customer found
|
1538 |
+
}
|
1539 |
+
}
|
1540 |
+
|
1541 |
/**
|
1542 |
* Helper method to cancel a subscription at Stripe and also clear up any upaid invoices.
|
1543 |
+
*
|
1544 |
* @since 1.8
|
1545 |
*/
|
1546 |
function cancelSubscriptionAtGateway($subscription)
|
1548 |
//need a valid sub
|
1549 |
if(empty($subscription->id))
|
1550 |
return false;
|
1551 |
+
|
1552 |
//make sure we get the customer for this subscription
|
1553 |
$order = new MemberOrder();
|
1554 |
+
$order->getLastMemberOrderBySubscriptionTransactionID($subscription->id);
|
1555 |
+
|
1556 |
//no order?
|
1557 |
if(empty($order))
|
1558 |
{
|
1559 |
//lets cancel anyway, but this is suspicious
|
1560 |
$r = $subscription->cancel();
|
1561 |
+
|
1562 |
return true;
|
1563 |
}
|
1564 |
+
|
1565 |
//okay have an order, so get customer so we can cancel invoices too
|
1566 |
$this->getCustomer($order);
|
1567 |
+
|
1568 |
//get open invoices
|
1569 |
$invoices = $this->customer->invoices();
|
1570 |
$invoices = $invoices->all();
|
1571 |
+
|
1572 |
//found it, cancel it
|
1573 |
try
|
1574 |
+
{
|
1575 |
//find any open invoices for this subscription and forgive them
|
1576 |
if(!empty($invoices))
|
1577 |
{
|
1578 |
foreach($invoices->data as $invoice)
|
1579 |
+
{
|
1580 |
if(!$invoice->closed && $invoice->subscription == $subscription->id)
|
1581 |
+
{
|
1582 |
$invoice->closed = true;
|
1583 |
$invoice->save();
|
1584 |
}
|
1585 |
}
|
1586 |
+
}
|
1587 |
+
|
1588 |
//cancel
|
1589 |
$r = $subscription->cancel();
|
1590 |
+
|
1591 |
return true;
|
1592 |
}
|
1593 |
catch(Exception $e)
|
1594 |
+
{
|
1595 |
return false;
|
1596 |
}
|
1597 |
}
|
email/admin_change_admin.html
CHANGED
@@ -1,4 +1,4 @@
|
|
1 |
-
<p>An administrator at !!sitename!! has changed a membership level
|
2 |
|
3 |
<p>!!membership_change!!.</p>
|
4 |
|
1 |
+
<p>An administrator at !!sitename!! has changed a membership level for !!name!!.</p>
|
2 |
|
3 |
<p>!!membership_change!!.</p>
|
4 |
|
includes/currencies.php
CHANGED
@@ -23,7 +23,14 @@
|
|
23 |
),
|
24 |
'CAD' => __('Canadian Dollars ($)', 'pmpro'),
|
25 |
'CNY' => __('Chinese Yuan', 'pmpro'),
|
26 |
-
'CZK' =>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
27 |
'DKK' => __('Danish Krone', 'pmpro'),
|
28 |
'HKD' => __('Hong Kong Dollar ($)', 'pmpro'),
|
29 |
'HUF' => __('Hungarian Forint', 'pmpro'),
|
23 |
),
|
24 |
'CAD' => __('Canadian Dollars ($)', 'pmpro'),
|
25 |
'CNY' => __('Chinese Yuan', 'pmpro'),
|
26 |
+
'CZK' => array(
|
27 |
+
'name' => __('Czech Koruna', 'pmpro'),
|
28 |
+
'decimals' => '0',
|
29 |
+
'thousands_separator' => ' ',
|
30 |
+
'decimal_separator' => ',',
|
31 |
+
'symbol' => ' Kč',
|
32 |
+
'position' => 'right',
|
33 |
+
),
|
34 |
'DKK' => __('Danish Krone', 'pmpro'),
|
35 |
'HKD' => __('Hong Kong Dollar ($)', 'pmpro'),
|
36 |
'HUF' => __('Hungarian Forint', 'pmpro'),
|
includes/filters.php
CHANGED
@@ -147,4 +147,12 @@ function pmpro_required_billing_fields_stripe_lite($fields)
|
|
147 |
|
148 |
//ship it!
|
149 |
return $fields;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
150 |
}
|
147 |
|
148 |
//ship it!
|
149 |
return $fields;
|
150 |
+
}
|
151 |
+
|
152 |
+
//copy other discount code to discount code if latter is not set
|
153 |
+
if(empty($_REQUEST['discount_code']) && !empty($_REQUEST['other_discount_code']))
|
154 |
+
{
|
155 |
+
$_REQUEST['discount_code'] = $_REQUEST['other_discount_code'];
|
156 |
+
$_POST['discount_code'] = $_POST['other_discount_code'];
|
157 |
+
$_GET['discount_code'] = $_GET['other_discount_code'];
|
158 |
}
|
includes/functions.php
CHANGED
@@ -237,7 +237,7 @@ function pmpro_getLevelCost(&$level, $tags = true, $short = false)
|
|
237 |
if(!$short)
|
238 |
$r = sprintf(__('The price for membership is <strong>%s every %d %s</strong>.', 'pmpro'), pmpro_formatPrice($level->initial_payment), $level->cycle_number, pmpro_translate_billing_period($level->cycle_period, $level->cycle_number) );
|
239 |
else
|
240 |
-
$r = sprintf(__('<strong>%s every %d %s</strong>.', 'pmpro'), pmpro_formatPrice($level->initial_payment), $level->cycle_number, pmpro_translate_billing_period($level->cycle_period, $level->cycle_number) );
|
241 |
}
|
242 |
} else {
|
243 |
if($level->cycle_number == '1')
|
@@ -422,6 +422,7 @@ if(!function_exists("formatPhone"))
|
|
422 |
|
423 |
function pmpro_showRequiresMembershipMessage()
|
424 |
{
|
|
|
425 |
//get the correct message
|
426 |
if(is_feed())
|
427 |
{
|
@@ -636,7 +637,7 @@ function pmpro_changeMembershipLevel($level, $user_id = NULL, $old_level_status
|
|
636 |
|
637 |
if(!empty($c_order->error))
|
638 |
$pmpro_error = $c_order->error;
|
639 |
-
}
|
640 |
}
|
641 |
|
642 |
//insert current membership
|
@@ -1804,15 +1805,18 @@ function pmpro_formatPrice($price)
|
|
1804 |
//settings stored in array?
|
1805 |
if(!empty($pmpro_currencies[$pmpro_currency]) && is_array($pmpro_currencies[$pmpro_currency]))
|
1806 |
{
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1807 |
//which side is the symbol on?
|
1808 |
if(!empty($pmpro_currencies[$pmpro_currency]['position']) && $pmpro_currencies[$pmpro_currency]['position']== 'left')
|
1809 |
$formatted = $pmpro_currency_symbol . $formatted;
|
1810 |
else
|
1811 |
$formatted = $formatted . $pmpro_currency_symbol;
|
1812 |
-
|
1813 |
-
//commas or periods?
|
1814 |
-
if(!empty($pmpro_currencies[$pmpro_currency]['separator']) && $pmpro_currencies[$pmpro_currency]['separator'])
|
1815 |
-
$formatted = str_replace(array(".",","), $pmpro_currencies[$pmpro_currency]['separator'], $formatted);
|
1816 |
}
|
1817 |
else
|
1818 |
$formatted = $pmpro_currency_symbol . $formatted; //default to symbol on the left
|
@@ -1834,7 +1838,7 @@ function pmpro_getCurrencyPosition()
|
|
1834 |
return $pmpro_currencies[$pmpro_currency]['position'];
|
1835 |
else
|
1836 |
return "left";
|
1837 |
-
}
|
1838 |
|
1839 |
/*
|
1840 |
* What gateway should we be using?
|
@@ -1865,4 +1869,4 @@ function pmpro_getGateway()
|
|
1865 |
$gateway = apply_filters('pmpro_get_gateway', $gateway, $valid_gateways);
|
1866 |
|
1867 |
return $gateway;
|
1868 |
-
}
|
237 |
if(!$short)
|
238 |
$r = sprintf(__('The price for membership is <strong>%s every %d %s</strong>.', 'pmpro'), pmpro_formatPrice($level->initial_payment), $level->cycle_number, pmpro_translate_billing_period($level->cycle_period, $level->cycle_number) );
|
239 |
else
|
240 |
+
$r = sprintf(__('<strong>%s every %d %s</strong>.', 'pmpro'), pmpro_formatPrice($level->initial_payment), $level->cycle_number, pmpro_translate_billing_period($level->cycle_period, $level->cycle_number) );
|
241 |
}
|
242 |
} else {
|
243 |
if($level->cycle_number == '1')
|
422 |
|
423 |
function pmpro_showRequiresMembershipMessage()
|
424 |
{
|
425 |
+
//TODO $current_user $post_membership_levels_names are undefined variables
|
426 |
//get the correct message
|
427 |
if(is_feed())
|
428 |
{
|
637 |
|
638 |
if(!empty($c_order->error))
|
639 |
$pmpro_error = $c_order->error;
|
640 |
+
}
|
641 |
}
|
642 |
|
643 |
//insert current membership
|
1805 |
//settings stored in array?
|
1806 |
if(!empty($pmpro_currencies[$pmpro_currency]) && is_array($pmpro_currencies[$pmpro_currency]))
|
1807 |
{
|
1808 |
+
//format number do decimals, with decimal_separator and thousands_separator
|
1809 |
+
$formatted = number_format($price,
|
1810 |
+
(isset($pmpro_currencies[$pmpro_currency]['decimals']) ? (int)$pmpro_currencies[$pmpro_currency]['decimals'] : 2),
|
1811 |
+
$pmpro_currencies[$pmpro_currency]['decimal_separator'],
|
1812 |
+
$pmpro_currencies[$pmpro_currency]['thousands_separator']
|
1813 |
+
);
|
1814 |
+
|
1815 |
//which side is the symbol on?
|
1816 |
if(!empty($pmpro_currencies[$pmpro_currency]['position']) && $pmpro_currencies[$pmpro_currency]['position']== 'left')
|
1817 |
$formatted = $pmpro_currency_symbol . $formatted;
|
1818 |
else
|
1819 |
$formatted = $formatted . $pmpro_currency_symbol;
|
|
|
|
|
|
|
|
|
1820 |
}
|
1821 |
else
|
1822 |
$formatted = $pmpro_currency_symbol . $formatted; //default to symbol on the left
|
1838 |
return $pmpro_currencies[$pmpro_currency]['position'];
|
1839 |
else
|
1840 |
return "left";
|
1841 |
+
}
|
1842 |
|
1843 |
/*
|
1844 |
* What gateway should we be using?
|
1869 |
$gateway = apply_filters('pmpro_get_gateway', $gateway, $valid_gateways);
|
1870 |
|
1871 |
return $gateway;
|
1872 |
+
}
|
includes/profile.php
CHANGED
@@ -144,14 +144,29 @@ function pmpro_membership_level_profile_fields($user)
|
|
144 |
</table>
|
145 |
<script>
|
146 |
jQuery(document).ready(function() {
|
147 |
-
|
148 |
-
|
149 |
-
var
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
150 |
|
151 |
-
|
|
|
152 |
|
153 |
-
|
154 |
-
|
|
|
|
|
155 |
jQuery("#cancel_subscription").attr('checked', true);
|
156 |
jQuery("#current_level_cost").text("Not paying.");
|
157 |
}
|
@@ -159,20 +174,43 @@ function pmpro_membership_level_profile_fields($user)
|
|
159 |
jQuery("#cancel_subscription").attr('checked', false);
|
160 |
jQuery("#current_level_cost").text(current_level_cost);
|
161 |
}
|
162 |
-
|
163 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
164 |
{
|
165 |
jQuery(".more_level_options").show();
|
166 |
-
jQuery("#cancel_description").show();
|
167 |
}
|
168 |
else
|
169 |
{
|
170 |
jQuery(".more_level_options").hide();
|
171 |
-
jQuery("#cancel_description").hide();
|
172 |
-
|
173 |
}
|
|
|
|
|
|
|
|
|
|
|
174 |
});
|
175 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
176 |
jQuery("#cancel_subscription").change(function() {
|
177 |
if(jQuery(this).attr('checked') == 'checked')
|
178 |
{
|
@@ -266,6 +304,12 @@ function pmpro_membership_level_profile_fields_update()
|
|
266 |
}
|
267 |
}
|
268 |
|
|
|
|
|
|
|
|
|
|
|
|
|
269 |
//send email
|
270 |
if(!empty($_REQUEST['send_admin_change_email']))
|
271 |
{
|
@@ -273,13 +317,7 @@ function pmpro_membership_level_profile_fields_update()
|
|
273 |
$pmproemail = new PMProEmail();
|
274 |
if(!empty($expiration_changed))
|
275 |
$pmproemail->expiration_changed = true;
|
276 |
-
$pmproemail->sendAdminChangeEmail(get_userdata($user_ID));
|
277 |
-
|
278 |
-
//email to admin
|
279 |
-
$pmproemail = new PMProEmail();
|
280 |
-
if(!empty($expiration_changed))
|
281 |
-
$pmproemail->expiration_changed = true;
|
282 |
-
$pmproemail->sendAdminChangeAdminEmail(get_userdata($user_ID));
|
283 |
}
|
284 |
}
|
285 |
add_action( 'show_user_profile', 'pmpro_membership_level_profile_fields' );
|
144 |
</table>
|
145 |
<script>
|
146 |
jQuery(document).ready(function() {
|
147 |
+
//vars for fields
|
148 |
+
var $membership_level_select = jQuery("[name=membership_level]");
|
149 |
+
var $expires_select = jQuery("[name=expires]");
|
150 |
+
var $expires_month_select = jQuery("[name=expires_month]");
|
151 |
+
var $expires_day_text = jQuery("[name=expires_day]");
|
152 |
+
var $expires_year_text = jQuery("[name=expires_year]");
|
153 |
+
|
154 |
+
//note old data to check for changes
|
155 |
+
var old_level = $membership_level_select.val();
|
156 |
+
var old_expires = $expires_select.val();
|
157 |
+
var old_expires_month = $expires_month_select.val();
|
158 |
+
var old_expires_day = $expires_day_text.val();
|
159 |
+
var old_expires_year = $expires_year_text.val();
|
160 |
+
|
161 |
+
var current_level_cost = jQuery("#current_level_cost").text();
|
162 |
|
163 |
+
//hide by default
|
164 |
+
jQuery(".more_level_options").hide();
|
165 |
|
166 |
+
function pmpro_checkForLevelChangeInProfile()
|
167 |
+
{
|
168 |
+
//cancelling sub or not
|
169 |
+
if($membership_level_select.val() == 0) {
|
170 |
jQuery("#cancel_subscription").attr('checked', true);
|
171 |
jQuery("#current_level_cost").text("Not paying.");
|
172 |
}
|
174 |
jQuery("#cancel_subscription").attr('checked', false);
|
175 |
jQuery("#current_level_cost").text(current_level_cost);
|
176 |
}
|
177 |
+
|
178 |
+
//did level or expiration change?
|
179 |
+
if(
|
180 |
+
$membership_level_select.val() != old_level ||
|
181 |
+
$expires_select.val() != old_expires ||
|
182 |
+
$expires_month_select.val() != old_expires_month ||
|
183 |
+
$expires_day_text.val() != old_expires_day ||
|
184 |
+
$expires_year_text.val() != old_expires_year
|
185 |
+
)
|
186 |
{
|
187 |
jQuery(".more_level_options").show();
|
188 |
+
jQuery("#cancel_description").show();
|
189 |
}
|
190 |
else
|
191 |
{
|
192 |
jQuery(".more_level_options").hide();
|
193 |
+
jQuery("#cancel_description").hide();
|
|
|
194 |
}
|
195 |
+
}
|
196 |
+
|
197 |
+
//run check when fields change
|
198 |
+
$membership_level_select.change(function() {
|
199 |
+
pmpro_checkForLevelChangeInProfile();
|
200 |
});
|
201 |
+
$expires_select.change(function() {
|
202 |
+
pmpro_checkForLevelChangeInProfile();
|
203 |
+
});
|
204 |
+
$expires_month_select.change(function() {
|
205 |
+
pmpro_checkForLevelChangeInProfile();
|
206 |
+
});
|
207 |
+
$expires_day_text.change(function() {
|
208 |
+
pmpro_checkForLevelChangeInProfile();
|
209 |
+
});
|
210 |
+
$expires_year_text.change(function() {
|
211 |
+
pmpro_checkForLevelChangeInProfile();
|
212 |
+
});
|
213 |
+
|
214 |
jQuery("#cancel_subscription").change(function() {
|
215 |
if(jQuery(this).attr('checked') == 'checked')
|
216 |
{
|
304 |
}
|
305 |
}
|
306 |
|
307 |
+
//email to admin
|
308 |
+
$pmproemail = new PMProEmail();
|
309 |
+
if(!empty($expiration_changed))
|
310 |
+
$pmproemail->expiration_changed = true;
|
311 |
+
$pmproemail->sendAdminChangeAdminEmail(get_userdata($user_ID));
|
312 |
+
|
313 |
//send email
|
314 |
if(!empty($_REQUEST['send_admin_change_email']))
|
315 |
{
|
317 |
$pmproemail = new PMProEmail();
|
318 |
if(!empty($expiration_changed))
|
319 |
$pmproemail->expiration_changed = true;
|
320 |
+
$pmproemail->sendAdminChangeEmail(get_userdata($user_ID));
|
|
|
|
|
|
|
|
|
|
|
|
|
321 |
}
|
322 |
}
|
323 |
add_action( 'show_user_profile', 'pmpro_membership_level_profile_fields' );
|
languages/pmpro-cs_CZ.mo
CHANGED
Binary file
|
languages/pmpro-cs_CZ.po
CHANGED
@@ -1,19 +1,16 @@
|
|
1 |
-
#
|
2 |
-
# Hi there! Details on how to help out translating Paid Memberships Pro can be found at:
|
3 |
-
# http://www.paidmembershipspro.com/documentation/languages/
|
4 |
-
#
|
5 |
msgid ""
|
6 |
msgstr ""
|
7 |
"Project-Id-Version: pmpro\n"
|
8 |
-
"POT-Creation-Date:
|
9 |
-
"PO-Revision-Date:
|
10 |
-
"Last-Translator:
|
11 |
"Language-Team: Stranger Studios <jason@strangerstudios.com>\n"
|
|
|
12 |
"MIME-Version: 1.0\n"
|
13 |
"Content-Type: text/plain; charset=UTF-8\n"
|
14 |
"Content-Transfer-Encoding: 8bit\n"
|
15 |
-
"
|
16 |
-
"
|
17 |
|
18 |
#: adminpages/addons.php:5 adminpages/advancedsettings.php:5
|
19 |
#: adminpages/discountcodes.php:5 adminpages/emailsettings.php:5
|
@@ -26,7 +23,7 @@ msgstr "K provedení této akce nemáte dostatečná opravnění."
|
|
26 |
|
27 |
#: adminpages/addons.php:79
|
28 |
msgid "Disabled"
|
29 |
-
msgstr "
|
30 |
|
31 |
#: adminpages/addons.php:79
|
32 |
msgid "Enabled"
|
@@ -34,36 +31,36 @@ msgstr "Povoleno"
|
|
34 |
|
35 |
#: adminpages/admin_header.php:25
|
36 |
msgid "Add a membership level to get started."
|
37 |
-
msgstr "
|
38 |
|
39 |
#: adminpages/admin_header.php:27
|
40 |
msgid "Setup the membership pages"
|
41 |
-
msgstr "
|
42 |
|
43 |
#: adminpages/admin_header.php:29
|
44 |
msgid "Setup your SSL certificate and payment gateway"
|
45 |
-
msgstr "
|
46 |
|
47 |
#: adminpages/admin_header.php:38
|
48 |
msgid ""
|
49 |
"The billing details for some of your membership levels is not supported by "
|
50 |
"Stripe."
|
51 |
msgstr ""
|
52 |
-
"
|
53 |
-
"
|
54 |
|
55 |
#: adminpages/admin_header.php:46
|
56 |
msgid ""
|
57 |
"The billing details for this level are not supported by Stripe. Please "
|
58 |
"review the notes in the Billing Details section below."
|
59 |
msgstr ""
|
60 |
-
"
|
61 |
-
"
|
62 |
|
63 |
#: adminpages/admin_header.php:50 adminpages/admin_header.php:70
|
64 |
#: adminpages/admin_header.php:90 adminpages/admin_header.php:111
|
65 |
msgid "The levels with issues are highlighted below."
|
66 |
-
msgstr "Úrovně s
|
67 |
|
68 |
#: adminpages/admin_header.php:52 adminpages/admin_header.php:72
|
69 |
#: adminpages/admin_header.php:92 adminpages/admin_header.php:113
|
@@ -76,45 +73,47 @@ msgid ""
|
|
76 |
"Payflow."
|
77 |
msgstr ""
|
78 |
"Fakturační údaje pro některé z vašich členských úrovní nejsou podporovány "
|
79 |
-
"Payflow."
|
80 |
|
81 |
#: adminpages/admin_header.php:66
|
82 |
msgid ""
|
83 |
"The billing details for this level are not supported by Payflow. Please "
|
84 |
"review the notes in the Billing Details section below."
|
85 |
msgstr ""
|
86 |
-
"
|
87 |
-
"
|
88 |
|
89 |
#: adminpages/admin_header.php:78
|
90 |
msgid ""
|
91 |
"The billing details for some of your membership levels is not supported by "
|
92 |
"Braintree."
|
93 |
msgstr ""
|
94 |
-
"
|
|
|
95 |
|
96 |
#: adminpages/admin_header.php:86
|
97 |
msgid ""
|
98 |
"The billing details for this level are not supported by Braintree. Please "
|
99 |
"review the notes in the Billing Details section below."
|
100 |
msgstr ""
|
101 |
-
"
|
102 |
-
"
|
103 |
|
104 |
#: adminpages/admin_header.php:98
|
105 |
msgid ""
|
106 |
"The billing details for some of your membership levels is not supported by "
|
107 |
"TwoCheckout."
|
108 |
msgstr ""
|
109 |
-
"
|
|
|
110 |
|
111 |
#: adminpages/admin_header.php:107
|
112 |
msgid ""
|
113 |
"The billing details for this level are not supported by 2Checkout. Please "
|
114 |
"review the notes in the Billing Details section below."
|
115 |
msgstr ""
|
116 |
-
"
|
117 |
-
"
|
118 |
|
119 |
#: adminpages/admin_header.php:127 adminpages/admin_header.php:106
|
120 |
msgid "Plugin Support"
|
@@ -124,169 +123,267 @@ msgstr "Podpora pluginu"
|
|
124 |
msgid "User Forum"
|
125 |
msgstr "Uživatelské fórum"
|
126 |
|
127 |
-
#: adminpages/admin_header.php:149 adminpages/membershiplevels.php:
|
128 |
-
#:
|
129 |
-
#: adminpages/
|
|
|
|
|
|
|
|
|
130 |
msgid "Membership Levels"
|
131 |
-
msgstr "
|
132 |
|
133 |
-
#: adminpages/admin_header.php:150 adminpages/pagesettings.php:
|
134 |
-
#: adminpages/admin_header.php:129
|
135 |
msgid "Pages"
|
136 |
msgstr "Stránky"
|
137 |
|
138 |
#: adminpages/admin_header.php:151 adminpages/admin_header.php:130
|
139 |
msgid "Payment Gateway & SSL"
|
140 |
-
msgstr "Platební
|
141 |
|
142 |
-
#: adminpages/admin_header.php:152 adminpages/memberslist.php:
|
143 |
-
#: pages/account.php:
|
|
|
|
|
144 |
msgid "Email"
|
145 |
-
msgstr "
|
146 |
|
147 |
#: adminpages/admin_header.php:153 adminpages/admin_header.php:132
|
148 |
msgid "Advanced"
|
149 |
-
msgstr "
|
150 |
|
151 |
-
#: adminpages/admin_header.php:154 includes/adminpages.php:
|
152 |
-
#: includes/adminpages.php:
|
|
|
|
|
153 |
msgid "Add Ons"
|
154 |
msgstr "Doplňky"
|
155 |
|
156 |
-
#: adminpages/advancedsettings.php:35
|
|
|
157 |
msgid "Your advanced settings have been updated."
|
158 |
-
msgstr "Vaše
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
159 |
|
160 |
-
#: adminpages/advancedsettings.php:
|
161 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
162 |
msgid "Advanced Settings"
|
163 |
-
msgstr "
|
164 |
|
165 |
-
#: adminpages/advancedsettings.php:85
|
|
|
166 |
msgid "Message for Logged-in Non-members"
|
167 |
-
msgstr "Zpráva pro přihlášené
|
168 |
|
169 |
-
#: adminpages/advancedsettings.php:89
|
|
|
170 |
msgid ""
|
171 |
"This message replaces the post content for non-members. Available variables"
|
172 |
-
msgstr "Tato zpráva nahrazuje obsah příspěvku pro nečleny. Dostupné
|
173 |
|
174 |
-
#: adminpages/advancedsettings.php:94
|
|
|
175 |
msgid "Message for Logged-out Users"
|
176 |
msgstr "Zpráva pro odhlášené uživatele"
|
177 |
|
178 |
-
#: adminpages/advancedsettings.php:98
|
|
|
179 |
msgid "This message replaces the post content for logged-out visitors."
|
180 |
-
msgstr "Tato zpráva nahrazuje obsah příspěvku pro
|
181 |
|
182 |
-
#: adminpages/advancedsettings.php:103
|
|
|
183 |
msgid "Message for RSS Feed"
|
184 |
msgstr "Zpráva pro RSS Feed"
|
185 |
|
186 |
-
#: adminpages/advancedsettings.php:107
|
|
|
187 |
msgid "This message replaces the post content in RSS feeds."
|
188 |
-
msgstr "Tato zpráva nahrazuje obsah příspěvku v
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
189 |
|
190 |
-
#: adminpages/advancedsettings.php:113
|
|
|
191 |
msgid "Show Excerpts to Non-Members?"
|
192 |
msgstr "Zobrazit ukázky pro nečleny?"
|
193 |
|
194 |
-
#: adminpages/advancedsettings.php:117
|
|
|
195 |
msgid "No - Hide excerpts."
|
196 |
-
msgstr "Ne - Skrýt
|
197 |
|
198 |
-
#: adminpages/advancedsettings.php:118
|
|
|
199 |
msgid "Yes - Show excerpts."
|
200 |
-
msgstr "Ano - Ukázat
|
201 |
-
|
202 |
-
#: adminpages/advancedsettings.php:
|
203 |
-
#: adminpages/advancedsettings.php:
|
204 |
-
#: adminpages/paymentsettings.php:
|
205 |
-
#:
|
206 |
-
#: adminpages/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
207 |
msgid "No"
|
208 |
msgstr "Ne"
|
209 |
|
210 |
-
#: adminpages/advancedsettings.php:129
|
|
|
211 |
msgid "Hide Ads From All Members"
|
212 |
-
msgstr "Skrýt reklamy
|
213 |
|
214 |
-
#: adminpages/advancedsettings.php:130
|
|
|
215 |
msgid "Hide Ads From Certain Members"
|
216 |
-
msgstr "Skrýt reklamy
|
217 |
|
218 |
-
#: adminpages/advancedsettings.php:137
|
|
|
219 |
msgid "Ads from the following plugins will be automatically turned off"
|
220 |
-
msgstr "Reklama z následujících pluginů
|
221 |
|
222 |
-
#: adminpages/advancedsettings.php:138
|
|
|
223 |
msgid "To hide ads in your template code, use code like the following"
|
224 |
msgstr ""
|
225 |
-
"Chcete-li skrýt reklamy ve vašem kódu šablony,
|
226 |
|
227 |
-
#: adminpages/advancedsettings.php:149
|
|
|
228 |
msgid "Choose Levels to Hide Ads From"
|
229 |
-
msgstr "Zvolte úrovně pro
|
230 |
|
231 |
-
#: adminpages/advancedsettings.php:183
|
|
|
232 |
msgid "Redirect all traffic from registration page to /susbcription/?"
|
233 |
-
msgstr "Přesměrovat veškerý provoz z registrační stránky na /
|
234 |
|
235 |
-
#: adminpages/advancedsettings.php:183
|
|
|
236 |
msgid "multisite only"
|
237 |
msgstr "Pouze pro multisite"
|
238 |
|
239 |
-
#: adminpages/advancedsettings.php:
|
240 |
-
#: adminpages/paymentsettings.php:
|
241 |
-
#:
|
|
|
|
|
|
|
242 |
#: adminpages/paymentsettings.php:415 adminpages/paymentsettings.php:424
|
243 |
-
#:
|
|
|
|
|
|
|
244 |
msgid "Yes"
|
245 |
msgstr "Ano"
|
246 |
|
247 |
-
#: adminpages/advancedsettings.php:195
|
|
|
248 |
msgid "Use reCAPTCHA?"
|
249 |
msgstr "Použít reCAPTCHU?"
|
250 |
|
251 |
-
#: adminpages/advancedsettings.php:200
|
|
|
252 |
msgid "Yes - Free memberships only."
|
253 |
-
msgstr "Ano - Pouze
|
254 |
|
255 |
-
#: adminpages/advancedsettings.php:201
|
|
|
256 |
msgid "Yes - All memberships."
|
257 |
-
msgstr "Ano -
|
258 |
|
259 |
-
#: adminpages/advancedsettings.php:203
|
|
|
260 |
msgid "A free reCAPTCHA key is required."
|
261 |
-
msgstr "Je vyžadován
|
262 |
|
263 |
-
#: adminpages/advancedsettings.php:203
|
|
|
264 |
msgid "Click here to signup for reCAPTCHA"
|
265 |
-
msgstr "Klikněte zde pro registraci
|
266 |
|
267 |
-
#: adminpages/advancedsettings.php:209
|
|
|
268 |
msgid "reCAPTCHA Public Key"
|
269 |
-
msgstr "
|
270 |
|
271 |
-
#: adminpages/advancedsettings.php:212
|
|
|
272 |
msgid "reCAPTCHA Private Key"
|
273 |
-
msgstr "
|
274 |
|
275 |
-
#: adminpages/advancedsettings.php:218
|
|
|
276 |
msgid "Require Terms of Service on signups?"
|
277 |
-
msgstr "Vyžadovat souhlas s podmínkami služeb
|
278 |
|
279 |
-
#: adminpages/advancedsettings.php:225
|
|
|
280 |
msgid ""
|
281 |
"If yes, create a WordPress page containing your TOS agreement and assign it "
|
282 |
"using the dropdown above."
|
283 |
msgstr ""
|
284 |
-
"Pokud ano, WordPress
|
285 |
-
"
|
286 |
-
|
287 |
-
#: adminpages/advancedsettings.php:
|
288 |
-
|
289 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
290 |
msgid "Save Settings"
|
291 |
msgstr "Uložit nastavení"
|
292 |
|
@@ -296,249 +393,390 @@ msgstr "Slevový kód byl úspěšně upraven."
|
|
296 |
|
297 |
#: adminpages/discountcodes.php:55
|
298 |
msgid "Error updating discount code. That code may already be in use."
|
299 |
-
msgstr ""
|
300 |
-
"Chyba při aktualizaci slevového kupónu. Tento kupón může být již v provozu."
|
301 |
|
302 |
#: adminpages/discountcodes.php:64
|
303 |
msgid "Discount code added successfully."
|
304 |
msgstr "Slevový kód byl úspěšně přidán"
|
305 |
|
306 |
-
#: adminpages/discountcodes.php:71
|
307 |
msgid "Error adding discount code. That code may already be in use."
|
308 |
-
msgstr ""
|
309 |
-
"Chyba při přidání slevového kupónu. Tento kupón může být již v provozu."
|
310 |
|
311 |
-
#: adminpages/discountcodes.php:196
|
312 |
#, php-format
|
313 |
msgid "Error saving values for the %s level."
|
314 |
-
msgstr "Chyba při
|
315 |
|
316 |
-
#: adminpages/discountcodes.php:204
|
317 |
msgid "There were errors updating the level values: "
|
318 |
-
msgstr "Došlo k chybám při
|
319 |
|
320 |
-
#: adminpages/discountcodes.php:234
|
|
|
321 |
#, php-format
|
322 |
msgid "Code %s deleted successfully."
|
323 |
-
msgstr "
|
324 |
|
325 |
-
#: adminpages/discountcodes.php:239
|
|
|
326 |
msgid ""
|
327 |
"Error deleting discount code. The code was only partially deleted. Please "
|
328 |
"try again."
|
329 |
msgstr ""
|
330 |
-
"Chyba při mazání slevového
|
331 |
"prosím znovu."
|
332 |
|
333 |
-
#: adminpages/discountcodes.php:245
|
|
|
334 |
msgid "Error deleting code. Please try again."
|
335 |
-
msgstr "Chyba při mazání
|
336 |
|
337 |
-
#: adminpages/discountcodes.php:251
|
|
|
338 |
msgid "Code not found."
|
339 |
-
msgstr "
|
340 |
|
341 |
-
#: adminpages/discountcodes.php:264
|
|
|
342 |
msgid "Edit Discount Code"
|
343 |
-
msgstr "Upravit slevový
|
344 |
|
345 |
-
#: adminpages/discountcodes.php:
|
|
|
|
|
|
|
346 |
msgid "Add New Discount Code"
|
347 |
-
msgstr "Vložit nový slevový
|
348 |
-
|
349 |
-
#: adminpages/discountcodes.php:
|
350 |
-
#: adminpages/membershiplevels.php:
|
351 |
-
#: adminpages/memberslist.php:
|
352 |
-
#: adminpages/reports/login.php:140 adminpages/
|
|
|
|
|
|
|
|
|
|
|
|
|
353 |
msgid "ID"
|
354 |
msgstr "ID"
|
355 |
|
356 |
-
#: adminpages/discountcodes.php:
|
|
|
|
|
357 |
msgid "This will be generated when you save."
|
358 |
-
msgstr "Toto bude
|
359 |
-
|
360 |
-
#: adminpages/discountcodes.php:
|
361 |
-
#: adminpages/orders.php:
|
|
|
|
|
|
|
|
|
362 |
msgid "Code"
|
363 |
msgstr "Kód"
|
364 |
|
365 |
-
#: adminpages/discountcodes.php:349
|
|
|
366 |
msgid "Start Date"
|
367 |
msgstr "Počáteční datum"
|
368 |
|
369 |
-
#: adminpages/discountcodes.php:
|
370 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
371 |
msgid "Expiration Date"
|
372 |
msgstr "Datum vypršení"
|
373 |
|
374 |
-
#: adminpages/discountcodes.php:
|
|
|
|
|
|
|
375 |
msgid "Uses"
|
376 |
-
msgstr "
|
377 |
|
378 |
-
#: adminpages/discountcodes.php:388
|
|
|
379 |
msgid "Leave blank for unlimited uses."
|
380 |
-
msgstr "
|
|
|
|
|
|
|
|
|
381 |
|
382 |
-
#: adminpages/discountcodes.php:
|
383 |
-
#: adminpages/
|
384 |
-
#: adminpages/membershiplevels.php:507
|
|
|
|
|
385 |
msgid "Initial Payment"
|
386 |
msgstr "Počáteční platba"
|
387 |
|
388 |
-
#: adminpages/discountcodes.php:
|
|
|
|
|
|
|
389 |
msgid "The initial amount collected at registration."
|
390 |
msgstr "Počáteční částka získaná při registraci."
|
391 |
|
392 |
-
#: adminpages/discountcodes.php:
|
|
|
|
|
|
|
393 |
msgid "Recurring Subscription"
|
394 |
-
msgstr "
|
395 |
|
396 |
-
#: adminpages/discountcodes.php:
|
|
|
|
|
|
|
397 |
msgid "Check if this level has a recurring subscription payment."
|
398 |
-
msgstr "
|
399 |
|
400 |
-
#: adminpages/discountcodes.php:
|
401 |
-
|
402 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
403 |
|
404 |
-
#: adminpages/discountcodes.php:
|
|
|
|
|
|
|
405 |
msgid "The amount to be billed one cycle after the initial payment."
|
406 |
-
msgstr "Částka, která má být účtována
|
407 |
|
408 |
-
#: adminpages/discountcodes.php:
|
|
|
|
|
|
|
409 |
msgid "Billing Cycle Limit"
|
410 |
msgstr "Limit fakturačního cyklu"
|
411 |
|
412 |
-
#: adminpages/discountcodes.php:
|
|
|
|
|
|
|
413 |
msgid ""
|
414 |
"The <strong>total</strong> number of recurring billing cycles for this "
|
415 |
"level, including the trial period (if applicable) but not including the "
|
416 |
"initial payment. Set to zero if membership is indefinite."
|
417 |
msgstr ""
|
418 |
-
"<strong>
|
419 |
-
"
|
420 |
"platby. Nastavit na nulu, pokud je členství na dobu neurčitou."
|
421 |
|
422 |
-
#: adminpages/discountcodes.php:
|
|
|
|
|
|
|
423 |
msgid "Custom Trial"
|
424 |
-
msgstr "Vlastní zkušební
|
425 |
|
426 |
-
#: adminpages/discountcodes.php:
|
427 |
-
#: adminpages/
|
|
|
|
|
428 |
msgid "Check to add a custom trial period."
|
429 |
-
msgstr "
|
430 |
|
431 |
-
#: adminpages/discountcodes.php:
|
432 |
-
#: adminpages/
|
|
|
|
|
433 |
msgid "Trial Billing Amount"
|
434 |
-
msgstr "
|
435 |
|
436 |
-
#: adminpages/discountcodes.php:
|
437 |
-
#: adminpages/
|
|
|
|
|
438 |
msgid "for the first"
|
439 |
-
msgstr "
|
440 |
|
441 |
-
#: adminpages/discountcodes.php:
|
442 |
-
#: adminpages/
|
|
|
|
|
443 |
msgid "subscription payments"
|
444 |
-
msgstr "
|
445 |
|
446 |
-
#: adminpages/discountcodes.php:
|
447 |
-
#: adminpages/
|
|
|
|
|
|
|
448 |
msgid "Membership Expiration"
|
449 |
msgstr "Vypršení členství"
|
450 |
|
451 |
-
#: adminpages/discountcodes.php:
|
452 |
-
|
453 |
-
|
|
|
|
|
|
|
454 |
|
455 |
-
#: adminpages/discountcodes.php:
|
456 |
-
#: adminpages/
|
|
|
|
|
|
|
457 |
msgid "Expires In"
|
458 |
-
msgstr "Vyprší
|
459 |
|
460 |
-
#: adminpages/discountcodes.php:
|
|
|
|
|
|
|
461 |
msgid ""
|
462 |
-
"
|
463 |
-
"be cancelled when the membership
|
|
|
464 |
msgstr ""
|
465 |
-
"
|
466 |
-
"budou zrušeny
|
|
|
467 |
|
468 |
-
#: adminpages/discountcodes.php:525
|
|
|
469 |
msgid "Memberships Discount Codes"
|
470 |
-
msgstr "Slevové
|
471 |
|
472 |
-
#: adminpages/discountcodes.php:535
|
|
|
473 |
msgid "Search Discount Codes"
|
474 |
-
msgstr "
|
475 |
|
476 |
-
#: adminpages/discountcodes.php:
|
|
|
|
|
477 |
msgid "Search"
|
478 |
msgstr "Hledat"
|
479 |
|
480 |
-
#: adminpages/discountcodes.php:549
|
|
|
481 |
msgid "Starts"
|
482 |
-
msgstr "
|
483 |
-
|
484 |
-
#: adminpages/discountcodes.php:
|
485 |
-
#: adminpages/reports/login.php:145 includes/profile.php:
|
486 |
-
#:
|
|
|
|
|
|
|
487 |
msgid "Expires"
|
488 |
msgstr "Vyprší"
|
489 |
|
490 |
-
#: adminpages/discountcodes.php:552
|
|
|
491 |
msgid "Levels"
|
492 |
msgstr "Úrovně"
|
493 |
|
494 |
-
#: adminpages/discountcodes.php:570
|
|
|
495 |
msgid "Create your first discount code now"
|
496 |
-
msgstr "Nyní vytvořte Váš první slevový
|
497 |
|
498 |
-
#: adminpages/discountcodes.php:570
|
|
|
499 |
msgid ""
|
500 |
"Discount codes allow you to offer your memberships at discounted prices to "
|
501 |
"select customers."
|
502 |
msgstr ""
|
503 |
-
"Slevové
|
504 |
-
"zvýhodněné ceny"
|
505 |
-
|
506 |
-
#: adminpages/discountcodes.php:
|
507 |
-
#: adminpages/orders.php:
|
|
|
|
|
|
|
|
|
508 |
msgid "edit"
|
509 |
msgstr "upravit"
|
510 |
|
511 |
-
#: adminpages/discountcodes.php:617
|
|
|
512 |
#, php-format
|
513 |
msgid ""
|
514 |
"Are you sure you want to delete the %s discount code? The subscriptions for "
|
515 |
"existing users will not change, but new users will not be able to use this "
|
516 |
"code anymore."
|
517 |
msgstr ""
|
518 |
-
"Jste si jisti, že chcete smazat %
|
519 |
-
"uživatele
|
520 |
-
|
521 |
-
#: adminpages/discountcodes.php:
|
522 |
-
#: adminpages/orders.php:
|
|
|
|
|
|
|
|
|
523 |
msgid "delete"
|
524 |
msgstr "smazat"
|
525 |
|
526 |
-
#: adminpages/emailsettings.php:
|
527 |
-
#: includes/adminpages.php:
|
|
|
|
|
528 |
msgid "Email Settings"
|
529 |
msgstr "Nastavení e-mailu"
|
530 |
|
531 |
-
#: adminpages/emailsettings.php:61
|
532 |
msgid ""
|
533 |
"By default, system generated emails are sent from "
|
534 |
"<em><strong>wordpress@yourdomain.com</strong></em>. You can update this from "
|
535 |
"address using the fields below."
|
536 |
msgstr ""
|
537 |
-
"Ve výchozím nastavení jsou
|
538 |
-
"<em><strong>wordpress@yourdomain.com</strong></em>. Můžete
|
539 |
-
"
|
540 |
|
541 |
-
#: adminpages/emailsettings.php:63
|
542 |
msgid ""
|
543 |
"To modify the appearance of system generated emails, add the files "
|
544 |
"<em>email_header.html</em> and <em>email_footer.html</em> to your theme's "
|
@@ -549,200 +787,216 @@ msgid ""
|
|
549 |
"learn more about Paid Memberships Pro emails</a>."
|
550 |
msgstr ""
|
551 |
"Chcete-li změnit vzhled systémem generovaných e-mailů, přidejte soubory "
|
552 |
-
"<em>email_header.html
|
553 |
-
"motivu. To bude
|
554 |
-
"
|
555 |
-
"
|
556 |
-
"
|
557 |
-
"
|
558 |
-
|
559 |
-
#: adminpages/emailsettings.php:69
|
560 |
msgid "From Email"
|
561 |
-
msgstr "
|
562 |
|
563 |
-
#: adminpages/emailsettings.php:77
|
564 |
msgid "From Name"
|
565 |
-
msgstr "
|
|
|
|
|
|
|
|
|
566 |
|
567 |
-
#: adminpages/emailsettings.php:
|
|
|
|
|
|
|
|
|
|
|
568 |
msgid "Send the site admin emails"
|
569 |
-
msgstr "
|
570 |
|
571 |
-
#: adminpages/emailsettings.php:92
|
|
|
572 |
msgid "Checkout"
|
573 |
msgstr "Pokladna"
|
574 |
|
575 |
-
#: adminpages/emailsettings.php:96
|
|
|
576 |
msgid "when a member checks out."
|
577 |
-
msgstr "když
|
578 |
|
579 |
-
#: adminpages/emailsettings.php:101
|
|
|
580 |
msgid "Admin Changes"
|
581 |
msgstr "Změny správce"
|
582 |
|
583 |
-
#: adminpages/emailsettings.php:105
|
|
|
584 |
msgid "when an admin changes a user's membership level through the dashboard."
|
585 |
-
msgstr "když správce změní úrověň členství uživatelů
|
586 |
|
587 |
-
#: adminpages/emailsettings.php:110
|
|
|
588 |
msgid "Cancellation"
|
589 |
msgstr "Zrušení."
|
590 |
|
591 |
-
#: adminpages/emailsettings.php:114
|
|
|
592 |
msgid "when a user cancels his or her account."
|
593 |
msgstr "když uživatel zruší svůj účet."
|
594 |
|
595 |
-
#: adminpages/emailsettings.php:119
|
|
|
596 |
msgid "Bill Updates"
|
597 |
-
msgstr "Aktualizace
|
598 |
|
599 |
-
#: adminpages/emailsettings.php:123
|
|
|
600 |
msgid "when a user updates his or her billing information."
|
601 |
-
msgstr "
|
602 |
|
603 |
-
#: adminpages/emailsettings.php:129
|
|
|
604 |
msgid "Send members emails"
|
605 |
-
msgstr "
|
606 |
|
607 |
-
#: adminpages/emailsettings.php:135
|
|
|
608 |
msgid "New Users"
|
609 |
msgstr "Noví uživatelé"
|
610 |
|
611 |
-
#: adminpages/emailsettings.php:139
|
|
|
612 |
msgid ""
|
613 |
"Default WP notification email. (Recommended: Leave unchecked. Members will "
|
614 |
"still get an email confirmation from PMPro after checkout.)"
|
615 |
msgstr ""
|
616 |
-
"Výchozí
|
617 |
-
"
|
618 |
|
619 |
#: adminpages/membershiplevels.php:118
|
620 |
msgid "Membership level updated successfully."
|
621 |
-
msgstr "Úroveň členství
|
622 |
|
623 |
#: adminpages/membershiplevels.php:124
|
624 |
msgid "Error updating membership level."
|
625 |
-
msgstr "Chyba při aktualizaci
|
626 |
|
627 |
#: adminpages/membershiplevels.php:141
|
628 |
msgid "Membership level added successfully."
|
629 |
-
msgstr "
|
630 |
|
631 |
#: adminpages/membershiplevels.php:146
|
632 |
msgid "Error adding membership level."
|
633 |
-
msgstr "Chyba při přidávání
|
634 |
|
635 |
-
#: adminpages/membershiplevels.php:179
|
636 |
#, php-format
|
637 |
msgid ""
|
638 |
"There was an error canceling the subscription for user with ID=%d. You will "
|
639 |
"want to check your payment gateway to see if their subscription is still "
|
640 |
"active."
|
641 |
msgstr ""
|
642 |
-
"Došlo k chybě při zrušení odběru pro uživatele s ID
|
643 |
-
"
|
644 |
|
645 |
-
#: adminpages/membershiplevels.php:182
|
646 |
msgid "Last Invoice"
|
647 |
-
msgstr "Poslední
|
648 |
|
649 |
-
#: adminpages/membershiplevels.php:196
|
650 |
msgid "Membership level deleted successfully."
|
651 |
-
msgstr "Úroveň členství byla úspěšně
|
652 |
|
|
|
653 |
#: adminpages/membershiplevels.php:201 adminpages/membershiplevels.php:207
|
654 |
msgid "Error deleting membership level."
|
655 |
-
msgstr "
|
656 |
|
657 |
-
#: adminpages/membershiplevels.php:222
|
658 |
msgid "Edit Membership Level"
|
659 |
-
msgstr "
|
660 |
|
661 |
-
#: adminpages/membershiplevels.php:224
|
662 |
msgid "Add New Membership Level"
|
663 |
-
msgstr "
|
664 |
|
665 |
-
#: adminpages/membershiplevels.php:
|
666 |
-
#: adminpages/reports/login.php:142 adminpages/membershiplevels.php:
|
|
|
|
|
667 |
msgid "Name"
|
668 |
msgstr "Jméno"
|
669 |
|
670 |
-
#: adminpages/membershiplevels.php:296
|
671 |
msgid "Description"
|
672 |
msgstr "Popis"
|
673 |
|
674 |
-
#: adminpages/membershiplevels.php:314
|
675 |
msgid "Confirmation Message"
|
676 |
msgstr "Potvrzovací zpráva"
|
677 |
|
|
|
678 |
#: adminpages/membershiplevels.php:333
|
679 |
msgid "Billing Details"
|
680 |
-
msgstr "Fakturační
|
681 |
-
|
682 |
-
#: adminpages/membershiplevels.php:347
|
683 |
-
msgid "Billing Amount"
|
684 |
-
msgstr "Množství faktur"
|
685 |
|
686 |
-
#: adminpages/membershiplevels.php:
|
|
|
|
|
687 |
msgid "per"
|
688 |
msgstr "na"
|
689 |
|
690 |
-
#: adminpages/membershiplevels.php:
|
691 |
-
msgid "Day(s)"
|
692 |
-
msgstr "Den(y)"
|
693 |
-
|
694 |
-
#: adminpages/membershiplevels.php:353
|
695 |
-
msgid "Month(s)"
|
696 |
-
msgstr "Měsíc(e)"
|
697 |
-
|
698 |
-
#: adminpages/membershiplevels.php:353
|
699 |
-
msgid "Week(s)"
|
700 |
-
msgstr "Týden(y)"
|
701 |
-
|
702 |
-
#: adminpages/membershiplevels.php:353
|
703 |
-
msgid "Year(s)"
|
704 |
-
msgstr "Rok(y)"
|
705 |
-
|
706 |
-
#: adminpages/membershiplevels.php:364
|
707 |
msgid ""
|
708 |
-
"Stripe integration currently only supports billing periods of \"
|
709 |
-
"\"Year\"."
|
710 |
msgstr ""
|
711 |
-
"Integrace Stripe v současné době podporuje pouze
|
712 |
-
"
|
713 |
|
714 |
-
#: adminpages/membershiplevels.php:366
|
|
|
715 |
msgid ""
|
716 |
"Braintree integration currently only supports billing periods of \"Month\" "
|
717 |
"or \"Year\"."
|
718 |
msgstr ""
|
719 |
-
"Integrace Braintree v současné době podporuje pouze
|
720 |
-
"\"
|
721 |
|
722 |
-
#: adminpages/membershiplevels.php:368
|
|
|
723 |
msgid ""
|
724 |
"Payflow integration currently only supports billing frequencies of 1 and "
|
725 |
"billing periods of \"Week\", \"Month\" or \"Year\"."
|
726 |
msgstr ""
|
727 |
-
"Integrace Payflow v současné době podporuje pouze fakturace
|
728 |
-
"
|
729 |
|
730 |
-
#: adminpages/membershiplevels.php:372
|
|
|
731 |
msgid ""
|
732 |
"After saving this level, make note of the ID and create a \"Plan\" in your "
|
733 |
"Braintree dashboard with the same settings and the \"Plan ID\" set to "
|
734 |
"<em>pmpro_#</em>, where # is the level ID."
|
735 |
msgstr ""
|
736 |
"Po uložení této úrovně si poznamenejte ID a vytvořte \"Plan\" ve vašem "
|
737 |
-
"Braintree
|
738 |
"<em>pmpro_#</em>, kde # je úroveň ID."
|
739 |
|
|
|
|
|
|
|
|
|
|
|
740 |
#: adminpages/membershiplevels.php:372 adminpages/membershiplevels.php:374
|
741 |
-
#: adminpages/
|
|
|
742 |
msgid "Note"
|
743 |
msgstr "Poznámka"
|
744 |
|
745 |
-
#: adminpages/membershiplevels.php:374
|
|
|
746 |
msgid ""
|
747 |
"You will need to create a \"Plan\" in your Braintree dashboard with the same "
|
748 |
"settings and the \"Plan ID\" set to"
|
@@ -750,798 +1004,827 @@ msgstr ""
|
|
750 |
"Budete muset vytvořit \"Plan\" v Braintree nástěnce se stejným nastavením a "
|
751 |
"\"Plan ID\" nastavit na"
|
752 |
|
753 |
-
#: adminpages/membershiplevels.php:386
|
|
|
754 |
msgid ""
|
755 |
"Stripe integration currently does not support billing limits. You can still "
|
756 |
"set an expiration date below."
|
757 |
msgstr ""
|
758 |
-
"Integrace Stripe v současné době nepodporuje fakturační limity.
|
759 |
-
"nastavit datum vypršení platnosti."
|
760 |
|
761 |
-
#: adminpages/membershiplevels.php:398
|
|
|
762 |
msgid ""
|
763 |
"2Checkout integration does not support custom trials. You can do one period "
|
764 |
"trials by setting an initial payment different from the billing amount."
|
765 |
msgstr ""
|
766 |
-
"2Checkout
|
767 |
-
"zkušební
|
768 |
-
"částky."
|
769 |
|
770 |
-
#: adminpages/membershiplevels.php:
|
|
|
771 |
msgid ""
|
772 |
"Stripe integration currently does not support trial amounts greater than $0."
|
773 |
msgstr ""
|
774 |
-
"Integrace Stripe v současné době nepodporuje zkušební
|
|
|
775 |
|
776 |
-
#: adminpages/membershiplevels.php:
|
|
|
777 |
msgid ""
|
778 |
"Braintree integration currently does not support trial amounts greater than "
|
779 |
"$0."
|
780 |
msgstr ""
|
781 |
-
"Integrace Braintree v současné době nepodporuje zkušební
|
782 |
-
"Kč."
|
783 |
|
784 |
-
#: adminpages/membershiplevels.php:
|
|
|
785 |
msgid ""
|
786 |
"Payflow integration currently does not support trial amounts greater than $0."
|
787 |
msgstr ""
|
788 |
-
"Integrace Payflow v současné době nepodporuje zkušební
|
789 |
|
790 |
-
#: adminpages/membershiplevels.php:
|
|
|
|
|
791 |
msgid "Other Settings"
|
792 |
msgstr "Další nastavení"
|
793 |
|
794 |
-
#: adminpages/membershiplevels.php:
|
|
|
|
|
795 |
msgid "Disable New Signups"
|
796 |
-
msgstr "
|
797 |
|
798 |
-
#: adminpages/membershiplevels.php:
|
|
|
|
|
799 |
msgid ""
|
800 |
"Check to hide this level from the membership levels page and disable "
|
801 |
"registration."
|
802 |
msgstr ""
|
803 |
-
"
|
804 |
-
|
805 |
-
#: adminpages/membershiplevels.php:438 adminpages/membershiplevels.php:432
|
806 |
-
msgid "Check this to set when membership access expires."
|
807 |
-
msgstr "Zkontrolujte, zda je toto nastaveno, když vyprší přístup k členství."
|
808 |
-
|
809 |
-
#: adminpages/membershiplevels.php:455 adminpages/membershiplevels.php:449
|
810 |
-
msgid ""
|
811 |
-
"Set the duration of membership access. Note that the any future payments "
|
812 |
-
"(recurring subscription, if any) will be cancelled when the membership "
|
813 |
-
"expires."
|
814 |
-
msgstr ""
|
815 |
-
"Nastavte dobu trvání přístupu členství. Všimněte si, že všechny budoucí "
|
816 |
-
"platby (opakující předplatné, pokud existuje) budou zrušeny, pokud vyprší "
|
817 |
-
"členství."
|
818 |
|
819 |
-
#: adminpages/membershiplevels.php:
|
|
|
|
|
820 |
msgid "Content Settings"
|
821 |
msgstr "Nastavení obsahu"
|
822 |
|
823 |
-
#: adminpages/membershiplevels.php:
|
|
|
|
|
824 |
msgid "Categories"
|
825 |
msgstr "Kategorie"
|
826 |
|
827 |
-
#: adminpages/membershiplevels.php:
|
|
|
|
|
828 |
msgid "Add New Level"
|
829 |
msgstr "Vložit novou úroveň"
|
830 |
|
831 |
-
#: adminpages/membershiplevels.php:
|
832 |
#: adminpages/membershiplevels.php:493 adminpages/membershiplevels.php:496
|
|
|
|
|
|
|
833 |
msgid "Search Levels"
|
834 |
msgstr "Najít úrovně"
|
835 |
|
836 |
-
#: adminpages/membershiplevels.php:
|
837 |
-
|
838 |
-
|
839 |
-
|
840 |
-
#: adminpages/membershiplevels.php:515 adminpages/membershiplevels.php:509
|
841 |
-
msgid "Trial Cycle"
|
842 |
-
msgstr "Zkušební cyklus"
|
843 |
-
|
844 |
-
#: adminpages/membershiplevels.php:516 pages/confirmation.php:83
|
845 |
-
#: pages/invoice.php:70 adminpages/membershiplevels.php:510
|
846 |
#: pages/confirmation.php:81 pages/invoice.php:68
|
847 |
msgid "Expiration"
|
848 |
msgstr "Vypršení"
|
849 |
|
850 |
-
#: adminpages/membershiplevels.php:
|
|
|
|
|
851 |
msgid "Allow Signups"
|
852 |
msgstr "Povolit registraci"
|
853 |
|
854 |
-
#: adminpages/membershiplevels.php:
|
|
|
|
|
855 |
msgid "FREE"
|
856 |
msgstr "ZDARMA"
|
857 |
|
858 |
-
#: adminpages/membershiplevels.php:
|
859 |
-
|
860 |
-
|
861 |
-
|
862 |
-
#: adminpages/membershiplevels.php:551 adminpages/membershiplevels.php:559
|
863 |
-
#: adminpages/reports/memberships.php:304
|
864 |
-
#: adminpages/reports/memberships.php:315 adminpages/reports/sales.php:204
|
865 |
-
#: adminpages/reports/sales.php:215 adminpages/membershiplevels.php:545
|
866 |
-
#: adminpages/membershiplevels.php:553 adminpages/reports/sales.php:195
|
867 |
-
#: adminpages/reports/sales.php:206
|
868 |
-
msgid "for"
|
869 |
-
msgstr "pro"
|
870 |
-
|
871 |
-
#: adminpages/membershiplevels.php:566 adminpages/membershiplevels.php:560
|
872 |
msgid "After"
|
873 |
msgstr "Po"
|
874 |
|
875 |
-
#: adminpages/membershiplevels.php:
|
876 |
-
#: adminpages/membershiplevels.php:
|
877 |
-
|
878 |
-
msgstr "kopie"
|
879 |
-
|
880 |
-
#: adminpages/membershiplevels.php:572 adminpages/membershiplevels.php:566
|
881 |
#, php-format
|
882 |
msgid ""
|
883 |
"Are you sure you want to delete membership level %s? All subscriptions will "
|
884 |
"be cancelled."
|
885 |
msgstr ""
|
886 |
-
"Jste si jisti, že chcete
|
887 |
-
"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
888 |
|
889 |
-
#: adminpages/memberslist.php:25 includes/adminpages.php:
|
890 |
-
#: includes/adminpages.php:
|
|
|
891 |
msgid "Members List"
|
892 |
msgstr "Seznam členů"
|
893 |
|
894 |
-
#: adminpages/memberslist.php:26 adminpages/orders.php:
|
|
|
895 |
msgid "Export to CSV"
|
896 |
-
msgstr "
|
897 |
|
898 |
-
#: adminpages/memberslist.php:30 adminpages/
|
899 |
-
#: adminpages/reports/
|
900 |
-
#: adminpages/reports/sales.php:185
|
|
|
901 |
msgid "Show"
|
902 |
msgstr "Ukaž"
|
903 |
|
904 |
#: adminpages/memberslist.php:32 adminpages/reports/login.php:67
|
905 |
-
#: adminpages/reports/memberships.php:317 adminpages/reports/sales.php:
|
906 |
-
#: adminpages/reports/sales.php:208
|
907 |
msgid "All Levels"
|
908 |
msgstr "Všechny úrovně"
|
909 |
|
910 |
-
#: adminpages/memberslist.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
911 |
msgid "Search Members"
|
912 |
msgstr "Prohledat členy"
|
913 |
|
914 |
-
#: adminpages/memberslist.php:103
|
|
|
915 |
#, php-format
|
916 |
msgid "%d members found."
|
917 |
msgstr "%d členů nalezeno"
|
918 |
|
919 |
-
#: adminpages/memberslist.php:
|
920 |
-
#:
|
|
|
|
|
921 |
msgid "Username"
|
922 |
msgstr "Uživatelské jméno"
|
923 |
|
924 |
-
#: adminpages/memberslist.php:113
|
|
|
925 |
msgid "First Name"
|
926 |
msgstr "Jméno"
|
927 |
|
928 |
-
#: adminpages/memberslist.php:114
|
|
|
929 |
msgid "Last Name"
|
930 |
msgstr "Příjmení"
|
931 |
|
932 |
-
#: adminpages/memberslist.php:
|
933 |
-
#: pages/
|
934 |
-
#:
|
|
|
|
|
|
|
935 |
msgid "Billing Address"
|
936 |
msgstr "Fakturační adresa"
|
937 |
|
938 |
-
#: adminpages/memberslist.php:
|
939 |
-
#:
|
|
|
|
|
940 |
#: classes/gateways/class.pmprogateway_authorizenet.php:187
|
941 |
msgid "Membership"
|
942 |
msgstr "Členství"
|
943 |
|
944 |
-
#: adminpages/memberslist.php:119
|
|
|
945 |
msgid "Fee"
|
946 |
-
msgstr "
|
947 |
|
948 |
-
#: adminpages/memberslist.php:
|
|
|
949 |
msgid "Joined"
|
950 |
-
msgstr "
|
951 |
|
952 |
-
#: adminpages/memberslist.php:
|
953 |
-
msgid "
|
954 |
-
msgstr "
|
955 |
|
956 |
-
#: adminpages/memberslist.php:
|
|
|
957 |
msgid "No members found."
|
958 |
-
msgstr "Žádní členové
|
959 |
|
960 |
-
#: adminpages/memberslist.php:
|
|
|
961 |
msgid "Search all levels"
|
962 |
msgstr "Prohledat všechny úrovně"
|
963 |
|
964 |
-
#: adminpages/orders.php:26
|
965 |
msgid "Order deleted successfully."
|
966 |
-
msgstr "Objednávka byla úspěšně
|
967 |
|
968 |
-
#: adminpages/orders.php:31
|
969 |
msgid "Error deleting order."
|
970 |
-
msgstr "Chyba při
|
971 |
|
972 |
-
#: adminpages/orders.php:119
|
973 |
msgid "Order saved successfully."
|
974 |
-
msgstr "Objednávka byla
|
975 |
|
976 |
-
#: adminpages/orders.php:124
|
977 |
msgid "Error updating order timestamp."
|
978 |
-
msgstr "Chyba při aktualizaci časového razítka"
|
979 |
|
980 |
-
#: adminpages/orders.php:130
|
981 |
msgid "Error saving order."
|
982 |
-
msgstr "Chyba při ukládání
|
983 |
|
984 |
-
#: adminpages/orders.php:195
|
985 |
msgid "Order"
|
986 |
msgstr "Objednávka"
|
987 |
|
988 |
-
#: adminpages/orders.php:197
|
989 |
msgid "New Order"
|
990 |
msgstr "Nová objednávka"
|
991 |
|
992 |
-
#: adminpages/orders.php:220
|
993 |
msgid "Randomly generated for you."
|
994 |
-
msgstr "Náhodně generované pro
|
995 |
|
996 |
-
#: adminpages/orders.php:225
|
997 |
msgid "User ID"
|
998 |
msgstr "Uživatelské ID"
|
999 |
|
1000 |
-
#: adminpages/orders.php:234
|
1001 |
msgid "Membership Level ID"
|
1002 |
msgstr "ID členské úrovně"
|
1003 |
|
1004 |
-
#: adminpages/orders.php:243
|
1005 |
msgid "Billing Name"
|
1006 |
-
msgstr "Fakturační
|
1007 |
|
1008 |
-
#: adminpages/orders.php:251
|
1009 |
msgid "Billing Street"
|
1010 |
msgstr "Fakturační ulice"
|
1011 |
|
1012 |
-
#: adminpages/orders.php:258
|
1013 |
msgid "Billing City"
|
1014 |
msgstr "Fakturační město"
|
1015 |
|
1016 |
-
#: adminpages/orders.php:265
|
1017 |
msgid "Billing State"
|
1018 |
-
msgstr "Fakturační
|
1019 |
|
1020 |
-
#: adminpages/orders.php:272
|
1021 |
msgid "Billing Postal Code"
|
1022 |
msgstr "Fakturační PSČ"
|
1023 |
|
1024 |
-
#: adminpages/orders.php:279
|
1025 |
msgid "Billing Country"
|
1026 |
msgstr "Fakturační země"
|
1027 |
|
1028 |
-
#: adminpages/orders.php:287
|
1029 |
msgid "Billing Phone"
|
1030 |
msgstr "Fakturační telefon"
|
1031 |
|
1032 |
-
#: adminpages/orders.php:296
|
1033 |
msgid "Sub Total"
|
1034 |
msgstr "Mezisoučet"
|
1035 |
|
1036 |
-
#: adminpages/orders.php:
|
|
|
1037 |
msgid "Tax"
|
1038 |
msgstr "Daň"
|
1039 |
|
1040 |
-
#: adminpages/orders.php:312
|
1041 |
msgid "Coupon Amount"
|
1042 |
-
msgstr "
|
1043 |
|
1044 |
-
#: adminpages/orders.php:
|
1045 |
-
#: pages/invoice.php:82
|
1046 |
msgid "Total"
|
1047 |
msgstr "Celkem"
|
1048 |
|
1049 |
-
#: adminpages/orders.php:325
|
1050 |
msgid "Should be subtotal + tax - couponamount."
|
1051 |
-
msgstr "
|
1052 |
|
1053 |
-
#: adminpages/orders.php:330
|
1054 |
msgid "Payment Type"
|
1055 |
msgstr "Typ platby"
|
1056 |
|
1057 |
-
#: adminpages/orders.php:335
|
1058 |
msgid "e.g. PayPal Express, PayPal Standard, Credit Card."
|
1059 |
-
msgstr "
|
1060 |
|
1061 |
-
#: adminpages/orders.php:
|
1062 |
-
#:
|
|
|
|
|
|
|
1063 |
msgid "Card Type"
|
1064 |
msgstr "Typ karty"
|
1065 |
|
1066 |
-
#: adminpages/orders.php:344
|
1067 |
msgid "e.g. Visa, MasterCard, AMEX, etc"
|
1068 |
msgstr "Například Visa, MasterCard, AMEX, atd."
|
1069 |
|
|
|
|
|
1070 |
#: adminpages/orders.php:348 adminpages/paymentsettings.php:347
|
|
|
1071 |
msgid "Account Number"
|
1072 |
msgstr "Číslo účtu"
|
1073 |
|
1074 |
-
#: adminpages/orders.php:353
|
1075 |
msgid "Obscure all but last 4 digits."
|
1076 |
-
msgstr "
|
1077 |
|
1078 |
-
#: adminpages/orders.php:358
|
1079 |
msgid "Expiration Month"
|
1080 |
-
msgstr "
|
1081 |
|
1082 |
-
#: adminpages/orders.php:365
|
1083 |
msgid "Expiration Year"
|
1084 |
msgstr "Rok expirace"
|
1085 |
|
|
|
1086 |
#: adminpages/orders.php:373 adminpages/orders.php:606
|
1087 |
msgid "Status"
|
1088 |
-
msgstr "
|
1089 |
|
|
|
1090 |
#: adminpages/orders.php:394 adminpages/orders.php:604
|
1091 |
msgid "Gateway"
|
1092 |
msgstr "Brána"
|
1093 |
|
1094 |
-
#: adminpages/orders.php:
|
1095 |
-
|
1096 |
-
|
1097 |
-
|
1098 |
-
#: adminpages/orders.php:399 adminpages/paymentsettings.php:159
|
1099 |
-
#: adminpages/paymentsettings.php:157
|
1100 |
-
msgid "Pay by Check"
|
1101 |
-
msgstr "Platit kupónem"
|
1102 |
-
|
1103 |
-
#: adminpages/orders.php:411 adminpages/paymentsettings.php:179
|
1104 |
-
#: adminpages/paymentsettings.php:175
|
1105 |
msgid "Gateway Environment"
|
1106 |
-
msgstr "
|
1107 |
|
1108 |
-
#: adminpages/orders.php:
|
1109 |
-
#: adminpages/
|
|
|
|
|
1110 |
msgid "Sandbox/Testing"
|
1111 |
-
msgstr "
|
1112 |
|
1113 |
-
#: adminpages/orders.php:
|
1114 |
-
#: adminpages/
|
|
|
|
|
1115 |
msgid "Live/Production"
|
1116 |
-
msgstr "
|
1117 |
|
1118 |
-
#: adminpages/orders.php:423
|
|
|
1119 |
msgid "Payment Transaction ID"
|
1120 |
-
msgstr "
|
1121 |
|
1122 |
-
#: adminpages/orders.php:428
|
|
|
1123 |
msgid "Generated by the gateway. Useful to cross reference orders."
|
1124 |
-
msgstr "Generováno bránou.
|
1125 |
|
1126 |
-
#: adminpages/orders.php:432
|
|
|
1127 |
msgid "Subscription Transaction ID"
|
1128 |
-
msgstr "
|
1129 |
|
1130 |
-
#: adminpages/orders.php:437
|
|
|
1131 |
msgid "Generated by the gateway. Useful to cross reference subscriptions."
|
1132 |
-
msgstr "Generováno bránou.
|
1133 |
|
1134 |
-
#: adminpages/orders.php:
|
1135 |
-
#: pages/invoice.php:
|
|
|
1136 |
msgid "Date"
|
1137 |
msgstr "Datum"
|
1138 |
|
1139 |
-
#: adminpages/orders.php:477
|
1140 |
msgid "Affiliate ID"
|
1141 |
msgstr "Partnerské ID"
|
1142 |
|
1143 |
-
#: adminpages/orders.php:485
|
1144 |
msgid "Affiliate SubID"
|
1145 |
-
msgstr "Partnerské
|
1146 |
|
1147 |
-
#: adminpages/orders.php:495
|
1148 |
msgid "Notes"
|
1149 |
msgstr "Poznámky"
|
1150 |
|
1151 |
-
#: adminpages/orders.php:510
|
1152 |
msgid "Save Order"
|
1153 |
-
msgstr "Uložit"
|
1154 |
|
1155 |
-
#: adminpages/orders.php:
|
|
|
|
|
1156 |
msgid "Cancel"
|
1157 |
msgstr "Zrušit"
|
1158 |
|
1159 |
-
#: adminpages/orders.php:
|
1160 |
-
#: includes/adminpages.php:
|
|
|
|
|
1161 |
msgid "Orders"
|
1162 |
msgstr "Objednávky"
|
1163 |
|
1164 |
-
#: adminpages/orders.php:521
|
1165 |
msgid "Add New Order"
|
1166 |
msgstr "Vložit novou objednávku"
|
1167 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1168 |
#: adminpages/orders.php:535 adminpages/orders.php:538
|
1169 |
msgid "Search Orders"
|
1170 |
-
msgstr "
|
1171 |
|
1172 |
-
#: adminpages/orders.php:590
|
1173 |
#, php-format
|
1174 |
msgid "%d orders found."
|
1175 |
msgstr "%d objednávek nalezeno."
|
1176 |
|
1177 |
-
#: adminpages/orders.php:
|
1178 |
-
#:
|
|
|
|
|
1179 |
msgid "User"
|
1180 |
msgstr "Uživatel"
|
1181 |
|
1182 |
-
#: adminpages/orders.php:
|
1183 |
-
#: pages/confirmation.php:47 pages/confirmation.php:64
|
1184 |
#: pages/confirmation.php:105 pages/invoice.php:28 pages/invoice.php:51
|
1185 |
-
#:
|
1186 |
-
#:
|
1187 |
-
#: pages/
|
|
|
1188 |
msgid "Membership Level"
|
1189 |
msgstr "Úroveň členství"
|
1190 |
|
|
|
1191 |
#: adminpages/orders.php:603 adminpages/orders.php:651
|
|
|
1192 |
msgid "Payment"
|
1193 |
msgstr "Platba"
|
1194 |
|
1195 |
-
#: adminpages/orders.php:605
|
1196 |
msgid "Transaction IDs"
|
1197 |
-
msgstr "
|
1198 |
|
1199 |
-
#: adminpages/orders.php:630
|
1200 |
msgid "deleted"
|
1201 |
msgstr "smazáno"
|
1202 |
|
1203 |
-
#: adminpages/orders.php:653
|
|
|
1204 |
msgid "Subscription"
|
1205 |
msgstr "Předplatné"
|
1206 |
|
1207 |
-
#: adminpages/orders.php:664
|
|
|
1208 |
#, php-format
|
1209 |
msgid ""
|
1210 |
"Deleting orders is permanent and can affect active users. Are you sure you "
|
1211 |
"want to delete order %s?"
|
1212 |
msgstr ""
|
1213 |
-
"
|
1214 |
-
"si jisti, že chcete
|
1215 |
|
1216 |
-
#: adminpages/orders.php:674
|
|
|
1217 |
msgid "No orders found."
|
1218 |
-
msgstr "žádné
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1219 |
|
1220 |
-
#: adminpages/pagesettings.php:
|
|
|
|
|
|
|
|
|
|
|
1221 |
msgid "The following pages have been created for you"
|
1222 |
-
msgstr "Následující stránky
|
1223 |
|
1224 |
-
#: adminpages/pagesettings.php:98
|
1225 |
msgid ""
|
1226 |
"Manage the WordPress pages assigned to each required Paid Memberships Pro "
|
1227 |
"page."
|
1228 |
msgstr ""
|
1229 |
-
"
|
1230 |
-
"Pro
|
1231 |
|
1232 |
-
#: adminpages/pagesettings.php:104
|
1233 |
msgid ""
|
1234 |
"Assign the WordPress pages for each required Paid Memberships Pro page or"
|
1235 |
-
msgstr "
|
|
|
|
|
1236 |
|
1237 |
-
#: adminpages/pagesettings.php:104
|
1238 |
msgid "click here to let us generate them for you"
|
1239 |
-
msgstr "klikněte zde a my
|
1240 |
|
1241 |
-
#: adminpages/pagesettings.php:112
|
1242 |
msgid "Account Page"
|
1243 |
msgstr "Stránka účtu"
|
1244 |
|
1245 |
-
#: adminpages/pagesettings.php:
|
1246 |
-
#: adminpages/pagesettings.php:
|
1247 |
-
#: adminpages/pagesettings.php:
|
1248 |
-
#: adminpages/pagesettings.php:
|
1249 |
-
#: adminpages/pagesettings.php:
|
1250 |
-
#: adminpages/pagesettings.php:
|
1251 |
-
#: adminpages/pagesettings.php:
|
|
|
|
|
|
|
1252 |
msgid "edit page"
|
1253 |
msgstr "upravit stránku"
|
1254 |
|
1255 |
-
#: adminpages/pagesettings.php:
|
1256 |
-
#: adminpages/pagesettings.php:
|
1257 |
-
#: adminpages/pagesettings.php:
|
1258 |
-
#: adminpages/pagesettings.php:
|
|
|
|
|
|
|
1259 |
msgid "view page"
|
1260 |
msgstr "zobrazit stránku"
|
1261 |
|
1262 |
-
#: adminpages/pagesettings.php:
|
1263 |
-
#: adminpages/pagesettings.php:
|
1264 |
-
#: adminpages/pagesettings.php:
|
1265 |
-
#: adminpages/pagesettings.php:
|
1266 |
-
#: adminpages/pagesettings.php:
|
1267 |
-
#: adminpages/pagesettings.php:
|
1268 |
-
#: adminpages/pagesettings.php:
|
|
|
|
|
|
|
|
|
1269 |
msgid "Include the shortcode"
|
1270 |
msgstr "Vložit shortcode"
|
1271 |
|
1272 |
-
#: adminpages/pagesettings.php:
|
|
|
1273 |
msgid "Billing Information Page"
|
1274 |
msgstr "Stránka fakturačních údajů"
|
1275 |
|
1276 |
-
#: adminpages/pagesettings.php:
|
|
|
1277 |
msgid "Cancel Page"
|
1278 |
-
msgstr "
|
1279 |
|
1280 |
-
#: adminpages/pagesettings.php:
|
|
|
1281 |
msgid "Checkout Page"
|
1282 |
-
msgstr "
|
1283 |
|
1284 |
-
#: adminpages/pagesettings.php:
|
|
|
1285 |
msgid "Confirmation Page"
|
1286 |
-
msgstr "
|
1287 |
|
1288 |
-
#: adminpages/pagesettings.php:
|
|
|
1289 |
msgid "Invoice Page"
|
1290 |
-
msgstr "Stránka
|
1291 |
|
1292 |
-
#: adminpages/pagesettings.php:
|
|
|
1293 |
msgid "Levels Page"
|
1294 |
msgstr "Stránka úrovní"
|
1295 |
|
1296 |
-
#: adminpages/paymentsettings.php:
|
|
|
1297 |
msgid "Your payment settings have been updated."
|
1298 |
-
msgstr "Vaše nastavení plateb bylo úspěšně aktualizováno"
|
1299 |
|
1300 |
-
#: adminpages/paymentsettings.php:
|
1301 |
-
#: adminpages/paymentsettings.php:144 adminpages/paymentsettings.php:
|
|
|
1302 |
msgid "Payment Gateway"
|
1303 |
msgstr "Platební brána"
|
1304 |
|
1305 |
-
#: adminpages/paymentsettings.php:
|
|
|
1306 |
msgid "SSL Settings"
|
1307 |
msgstr "Nastavení SSL"
|
1308 |
|
1309 |
-
#: adminpages/paymentsettings.php:
|
1310 |
msgid ""
|
1311 |
-
"
|
1312 |
-
"
|
1313 |
-
"
|
1314 |
-
"
|
|
|
1315 |
msgstr ""
|
1316 |
-
"
|
1317 |
-
"
|
1318 |
-
"
|
1319 |
-
"
|
1320 |
-
|
1321 |
-
#: adminpages/paymentsettings.php:199 adminpages/paymentsettings.php:195
|
1322 |
-
msgid "Partner"
|
1323 |
-
msgstr "Partner"
|
1324 |
-
|
1325 |
-
#: adminpages/paymentsettings.php:207 adminpages/paymentsettings.php:203
|
1326 |
-
msgid "Vendor"
|
1327 |
-
msgstr "Prodejce"
|
1328 |
-
|
1329 |
-
#: adminpages/paymentsettings.php:223 pages/checkout.php:180
|
1330 |
-
#: adminpages/paymentsettings.php:219 pages/checkout.php:177
|
1331 |
-
msgid "Password"
|
1332 |
-
msgstr "Heslo"
|
1333 |
-
|
1334 |
-
#: adminpages/paymentsettings.php:231 adminpages/paymentsettings.php:227
|
1335 |
-
msgid "Gateway Account Email"
|
1336 |
-
msgstr "E-mail k bráně účtu"
|
1337 |
-
|
1338 |
-
#: adminpages/paymentsettings.php:239 adminpages/paymentsettings.php:331
|
1339 |
-
#: adminpages/paymentsettings.php:235
|
1340 |
-
msgid "API Username"
|
1341 |
-
msgstr "API uživatelské jméno"
|
1342 |
-
|
1343 |
-
#: adminpages/paymentsettings.php:247 adminpages/paymentsettings.php:339
|
1344 |
-
#: adminpages/paymentsettings.php:243
|
1345 |
-
msgid "API Password"
|
1346 |
-
msgstr "API heslo"
|
1347 |
-
|
1348 |
-
#: adminpages/paymentsettings.php:255 adminpages/paymentsettings.php:251
|
1349 |
-
msgid "API Signature"
|
1350 |
-
msgstr "API podpis"
|
1351 |
-
|
1352 |
-
#: adminpages/paymentsettings.php:264 adminpages/paymentsettings.php:260
|
1353 |
-
msgid "Login Name"
|
1354 |
-
msgstr "Přihlašovací jméno"
|
1355 |
-
|
1356 |
-
#: adminpages/paymentsettings.php:272 adminpages/paymentsettings.php:268
|
1357 |
-
msgid "Transaction Key"
|
1358 |
-
msgstr "Transakční klíč"
|
1359 |
-
|
1360 |
-
#: adminpages/paymentsettings.php:281 adminpages/paymentsettings.php:277
|
1361 |
-
msgid "Secret Key"
|
1362 |
-
msgstr "Tajný klíč"
|
1363 |
-
|
1364 |
-
#: adminpages/paymentsettings.php:289 adminpages/paymentsettings.php:285
|
1365 |
-
msgid "Publishable Key"
|
1366 |
-
msgstr "Nezávadný klíč"
|
1367 |
-
|
1368 |
-
#: adminpages/paymentsettings.php:298 adminpages/paymentsettings.php:364
|
1369 |
-
#: adminpages/paymentsettings.php:294
|
1370 |
-
msgid "Merchant ID"
|
1371 |
-
msgstr "ID obchodníka"
|
1372 |
|
1373 |
-
#: adminpages/paymentsettings.php:
|
1374 |
-
msgid "Public Key"
|
1375 |
-
msgstr "Veřejný klíč"
|
1376 |
-
|
1377 |
-
#: adminpages/paymentsettings.php:314 adminpages/paymentsettings.php:310
|
1378 |
-
msgid "Private Key"
|
1379 |
-
msgstr "Osobní klíč"
|
1380 |
-
|
1381 |
-
#: adminpages/paymentsettings.php:322 adminpages/paymentsettings.php:318
|
1382 |
-
msgid "Client-Side Encryption Key"
|
1383 |
-
msgstr "Klientův dešifrovací klíč"
|
1384 |
-
|
1385 |
-
#: adminpages/paymentsettings.php:355
|
1386 |
-
msgid "Secret Word"
|
1387 |
-
msgstr "Tajné slovo"
|
1388 |
-
|
1389 |
-
#: adminpages/paymentsettings.php:372
|
1390 |
-
msgid "Transaction Security Key"
|
1391 |
-
msgstr "Bezpečnostní klíč transakce"
|
1392 |
-
|
1393 |
-
#: adminpages/paymentsettings.php:381 adminpages/paymentsettings.php:327
|
1394 |
#: adminpages/paymentsettings.php:337 adminpages/paymentsettings.php:356
|
|
|
1395 |
msgid "Currency"
|
1396 |
msgstr "Měna"
|
1397 |
|
1398 |
-
#: adminpages/paymentsettings.php:
|
1399 |
-
|
1400 |
-
msgstr "Akceptujeme tyto platební karty"
|
1401 |
-
|
1402 |
-
#: adminpages/paymentsettings.php:415 adminpages/paymentsettings.php:389
|
1403 |
-
msgid "Instructions"
|
1404 |
-
msgstr "Instrukce"
|
1405 |
-
|
1406 |
-
#: adminpages/paymentsettings.php:419 adminpages/paymentsettings.php:393
|
1407 |
msgid ""
|
1408 |
-
"
|
1409 |
-
"
|
1410 |
msgstr ""
|
1411 |
-
"
|
1412 |
-
"
|
1413 |
-
|
1414 |
-
#: adminpages/paymentsettings.php:425
|
1415 |
-
msgid "Show Billing Address Fields"
|
1416 |
-
msgstr "Ukázat pole - Fakturační údaje"
|
1417 |
|
1418 |
-
#: adminpages/paymentsettings.php:
|
1419 |
-
|
1420 |
-
|
1421 |
-
"
|
1422 |
-
msgstr ""
|
1423 |
-
"Stripe nevyžaduje pole fakturační adresa. Zvolte \"Ne\" pro skování na "
|
1424 |
-
"platební stránce."
|
1425 |
|
1426 |
-
#: adminpages/paymentsettings.php:
|
|
|
|
|
1427 |
msgid "Sales Tax"
|
1428 |
-
msgstr "Daň z
|
1429 |
|
1430 |
-
#: adminpages/paymentsettings.php:
|
1431 |
-
#: adminpages/paymentsettings.php:398
|
|
|
|
|
1432 |
msgid "optional"
|
1433 |
msgstr "volitelné"
|
1434 |
|
1435 |
-
#: adminpages/paymentsettings.php:
|
|
|
|
|
1436 |
msgid "Tax State"
|
1437 |
-
msgstr "
|
1438 |
|
1439 |
-
#: adminpages/paymentsettings.php:
|
|
|
|
|
1440 |
msgid "abbreviation, e.g. \"PA\""
|
1441 |
msgstr "zkratka, např. \"PA\""
|
1442 |
|
1443 |
-
#: adminpages/paymentsettings.php:
|
|
|
|
|
1444 |
msgid "decimal, e.g. \"0.06\""
|
1445 |
msgstr "desetinný, např. \"0.06\""
|
1446 |
|
1447 |
-
#: adminpages/paymentsettings.php:
|
|
|
1448 |
msgid ""
|
1449 |
-
"If values are given, tax will be applied for any members ordering
|
1450 |
-
"selected state
|
|
|
|
|
1451 |
msgstr ""
|
1452 |
-
"
|
1453 |
-
"
|
1454 |
-
"použijte
|
|
|
1455 |
|
1456 |
-
#: adminpages/paymentsettings.php:450
|
|
|
1457 |
msgid "Force SSL"
|
1458 |
-
msgstr "
|
1459 |
|
1460 |
-
#: adminpages/paymentsettings.php:456
|
|
|
1461 |
msgid "Yes (with JavaScript redirects)"
|
1462 |
msgstr "Ano (s JavaScript přesměrováním)"
|
1463 |
|
1464 |
-
#: adminpages/paymentsettings.php:
|
|
|
|
|
1465 |
msgid "SSL Seal Code"
|
1466 |
-
msgstr "SSL Seal
|
1467 |
-
|
1468 |
-
#: adminpages/paymentsettings.php:471 adminpages/paymentsettings.php:438
|
1469 |
-
msgid "HTTPS Nuclear Option"
|
1470 |
-
msgstr "nastavení HTTPS"
|
1471 |
-
|
1472 |
-
#: adminpages/paymentsettings.php:474 adminpages/paymentsettings.php:441
|
1473 |
-
msgid ""
|
1474 |
-
"Use the \"Nuclear Option\" to use secure (HTTPS) URLs on your secure pages. "
|
1475 |
-
"Check this if you are using SSL and have warnings on your checkout pages."
|
1476 |
-
msgstr ""
|
1477 |
-
"Použijte \"Nuclear Option\" k použití zabezpečené (HTTPS) URL na vaše "
|
1478 |
-
"zabezpečené stránky. Podívejte se na to, zda používáte SSL a máte upozornění "
|
1479 |
-
"na vašich platebních stránkách."
|
1480 |
-
|
1481 |
-
#: adminpages/paymentsettings.php:479 adminpages/paymentsettings.php:446
|
1482 |
-
msgid "IPN Handler URL"
|
1483 |
-
msgstr "IPN Handler URL"
|
1484 |
-
|
1485 |
-
#: adminpages/paymentsettings.php:482 adminpages/paymentsettings.php:449
|
1486 |
-
msgid "To fully integrate with PayPal, be sure to set your IPN Handler URL to "
|
1487 |
-
msgstr ""
|
1488 |
-
"Chcete-li plně integrovat PayPal, ujistěte se že jste nastavily IPN Handler "
|
1489 |
-
"URL"
|
1490 |
-
|
1491 |
-
#: adminpages/paymentsettings.php:487
|
1492 |
-
msgid "TwoCheckout INS URL"
|
1493 |
-
msgstr "TwoCheckout INS URL"
|
1494 |
|
1495 |
-
#: adminpages/paymentsettings.php:
|
1496 |
-
msgid ""
|
1497 |
-
"
|
1498 |
-
msgstr ""
|
1499 |
-
"Chcete-li plně integrovat 2Checkout, ujistěte se že jste nastavily "
|
1500 |
-
"2Checkout IPN Handler URL"
|
1501 |
-
|
1502 |
-
#: adminpages/paymentsettings.php:495 adminpages/paymentsettings.php:454
|
1503 |
-
msgid "Silent Post URL"
|
1504 |
-
msgstr "Tichý příspěvek URL"
|
1505 |
|
1506 |
-
#: adminpages/paymentsettings.php:
|
1507 |
msgid ""
|
1508 |
-
"
|
1509 |
-
|
1510 |
-
"
|
1511 |
-
"nastaven Silent Post URL na"
|
1512 |
-
|
1513 |
-
#: adminpages/paymentsettings.php:503 adminpages/paymentsettings.php:511
|
1514 |
-
#: adminpages/paymentsettings.php:462 adminpages/paymentsettings.php:470
|
1515 |
-
msgid "Web Hook URL"
|
1516 |
-
msgstr "Web Hook URL"
|
1517 |
-
|
1518 |
-
#: adminpages/paymentsettings.php:506 adminpages/paymentsettings.php:465
|
1519 |
-
msgid "To fully integrate with Stripe, be sure to set your Web Hook URL to"
|
1520 |
msgstr ""
|
1521 |
-
"
|
1522 |
-
"
|
|
|
1523 |
|
1524 |
-
#: adminpages/
|
1525 |
-
|
1526 |
-
msgstr ""
|
1527 |
-
"Chcete-li plně integrovat s Braintree, ujistěte se, že máte správně nastaven "
|
1528 |
-
"Web Hook URL na"
|
1529 |
-
|
1530 |
-
#: adminpages/reports.php:37 adminpages/reports.php:26
|
1531 |
msgid "Details"
|
1532 |
msgstr "Detaily"
|
1533 |
|
1534 |
#: adminpages/reports/login.php:16
|
1535 |
msgid "Visits, Views, and Logins"
|
1536 |
-
msgstr "
|
1537 |
|
1538 |
#: adminpages/reports/login.php:26
|
1539 |
msgid "Visits Today"
|
1540 |
-
msgstr "Dnešní
|
1541 |
|
1542 |
#: adminpages/reports/login.php:27 adminpages/reports/login.php:147
|
1543 |
msgid "Visits This Month"
|
1544 |
-
msgstr "
|
1545 |
|
1546 |
#: adminpages/reports/login.php:28
|
1547 |
msgid "Visits All Time"
|
@@ -1553,27 +1836,27 @@ msgstr "Dnešní zobrazení"
|
|
1553 |
|
1554 |
#: adminpages/reports/login.php:32 adminpages/reports/login.php:149
|
1555 |
msgid "Views This Month"
|
1556 |
-
msgstr "
|
1557 |
|
1558 |
#: adminpages/reports/login.php:33
|
1559 |
msgid "Views All Time"
|
1560 |
-
msgstr "
|
1561 |
|
1562 |
#: adminpages/reports/login.php:36
|
1563 |
msgid "Logins Today"
|
1564 |
-
msgstr "
|
1565 |
|
1566 |
#: adminpages/reports/login.php:37 adminpages/reports/login.php:152
|
1567 |
msgid "Logins This Month"
|
1568 |
-
msgstr "
|
1569 |
|
1570 |
#: adminpages/reports/login.php:38
|
1571 |
msgid "Logins All Time"
|
1572 |
-
msgstr "
|
1573 |
|
1574 |
#: adminpages/reports/login.php:61
|
1575 |
msgid "Visits, Views, and Logins Report"
|
1576 |
-
msgstr "
|
1577 |
|
1578 |
#: adminpages/reports/login.php:66
|
1579 |
msgid "All Users"
|
@@ -1589,7 +1872,7 @@ msgstr "Návštěv celkem"
|
|
1589 |
|
1590 |
#: adminpages/reports/login.php:150
|
1591 |
msgid "Total Views"
|
1592 |
-
msgstr "
|
1593 |
|
1594 |
#: adminpages/reports/login.php:151
|
1595 |
msgid "Last Login"
|
@@ -1602,20 +1885,60 @@ msgstr "Přihlášení celkem"
|
|
1602 |
#: adminpages/reports/memberships.php:18
|
1603 |
#: adminpages/reports/memberships.php:288
|
1604 |
msgid "Membership Stats"
|
1605 |
-
msgstr "
|
1606 |
|
1607 |
-
#: adminpages/reports/memberships.php:
|
1608 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1609 |
msgid "Daily"
|
1610 |
msgstr "Denně"
|
1611 |
|
1612 |
-
#: adminpages/reports/memberships.php:295 adminpages/reports/sales.php:
|
1613 |
-
#: adminpages/reports/sales.php:188
|
1614 |
msgid "Monthly"
|
1615 |
msgstr "Měsíčně"
|
1616 |
|
1617 |
-
#: adminpages/reports/memberships.php:296 adminpages/reports/sales.php:
|
1618 |
-
#: adminpages/reports/sales.php:189
|
1619 |
msgid "Annual"
|
1620 |
msgstr "Ročně"
|
1621 |
|
@@ -1623,165 +1946,245 @@ msgstr "Ročně"
|
|
1623 |
msgid "Signups vs. Cancellations"
|
1624 |
msgstr "Registrace vs. storna"
|
1625 |
|
1626 |
-
#: adminpages/reports/memberships.php:
|
1627 |
-
#: adminpages/reports/sales.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1628 |
msgid "Generate Report"
|
1629 |
-
msgstr "Vytvořit
|
1630 |
|
1631 |
#: adminpages/reports/sales.php:18
|
1632 |
msgid "Sales and Revenue (Testing/Sandbox)"
|
1633 |
-
msgstr "Prodeje a
|
1634 |
|
1635 |
#: adminpages/reports/sales.php:20 adminpages/reports/sales.php:189
|
1636 |
#: adminpages/reports/sales.php:180
|
1637 |
msgid "Sales and Revenue"
|
1638 |
msgstr "Prodeje a příjmy"
|
1639 |
|
1640 |
-
#: adminpages/reports/sales.php:
|
|
|
1641 |
msgid "Revenue"
|
1642 |
-
msgstr "
|
1643 |
|
1644 |
-
#: adminpages/reports/sales.php:
|
|
|
1645 |
msgid "Sales"
|
1646 |
msgstr "Prodeje"
|
1647 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1648 |
#: classes/class.pmproemail.php:37
|
1649 |
#, php-format
|
1650 |
msgid "An Email From %s"
|
1651 |
msgstr "E-mail od %s"
|
1652 |
|
1653 |
-
#: classes/class.pmproemail.php:120
|
|
|
1654 |
#, php-format
|
1655 |
msgid "Your membership at %s has been CANCELLED"
|
1656 |
-
msgstr "Vaše členství
|
1657 |
|
1658 |
-
#: classes/class.pmproemail.php:142
|
|
|
1659 |
#, php-format
|
1660 |
msgid "Membership for %s at %s has been CANCELLED"
|
1661 |
-
msgstr "Členství
|
1662 |
|
1663 |
-
#: classes/class.pmproemail.php:
|
|
|
1664 |
#, php-format
|
1665 |
msgid "Your membership confirmation for %s"
|
1666 |
-
msgstr "
|
1667 |
-
|
1668 |
-
#: classes/class.pmproemail.php:
|
1669 |
-
#: classes/class.pmproemail.php:
|
1670 |
-
#: classes/class.pmproemail.php:
|
1671 |
-
#:
|
1672 |
-
#:
|
1673 |
-
#:
|
1674 |
-
#:
|
1675 |
-
#: classes/class.pmproemail.php:
|
1676 |
-
#:
|
1677 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1678 |
msgid "Discount Code"
|
1679 |
msgstr "Slevový kód"
|
1680 |
|
1681 |
-
#: classes/class.pmproemail.php:
|
1682 |
-
#: classes/class.pmproemail.php:
|
1683 |
-
#: classes/class.pmproemail.php:
|
|
|
|
|
|
|
1684 |
#, php-format
|
1685 |
msgid "This membership will expire on %s."
|
1686 |
msgstr "Toto členství vyprší %s."
|
1687 |
|
1688 |
-
#: classes/class.pmproemail.php:
|
|
|
1689 |
#, php-format
|
1690 |
msgid "Member Checkout for %s at %s"
|
1691 |
-
msgstr "
|
1692 |
|
1693 |
-
#: classes/class.pmproemail.php:
|
|
|
1694 |
#, php-format
|
1695 |
msgid "Your billing information has been udpated at %s"
|
1696 |
msgstr "Vaše fakturační údaje byly aktualizovány na %s"
|
1697 |
|
1698 |
-
#: classes/class.pmproemail.php:
|
|
|
1699 |
#, php-format
|
1700 |
msgid "Billing information has been udpated for %s at %s"
|
1701 |
msgstr "Fakturační údaje byly aktualizovány z %s na %s"
|
1702 |
|
1703 |
-
#: classes/class.pmproemail.php:
|
|
|
1704 |
#, php-format
|
1705 |
msgid "Membership Payment Failed at %s"
|
1706 |
msgstr "Platba za členství se nezdařila na %s"
|
1707 |
|
1708 |
-
#: classes/class.pmproemail.php:
|
|
|
1709 |
#, php-format
|
1710 |
msgid "Membership Payment Failed For %s at %s"
|
1711 |
-
msgstr "
|
1712 |
|
1713 |
-
#: classes/class.pmproemail.php:508
|
|
|
1714 |
#, php-format
|
1715 |
msgid "Credit Card on File Expiring Soon at %s"
|
1716 |
msgstr "Kreditní karta brzy skončí na %s"
|
1717 |
|
1718 |
-
#: classes/class.pmproemail.php:
|
|
|
1719 |
#, php-format
|
1720 |
msgid "INVOICE for %s membership"
|
1721 |
-
msgstr "
|
1722 |
|
1723 |
-
#: classes/class.pmproemail.php:
|
|
|
1724 |
#, php-format
|
1725 |
msgid "Your trial at %s is ending soon"
|
1726 |
-
msgstr "Vaše zkušební
|
1727 |
|
1728 |
-
#: classes/class.pmproemail.php:
|
|
|
1729 |
#, php-format
|
1730 |
msgid "Your membership at %s has ended"
|
1731 |
-
msgstr "Vaše členství
|
1732 |
|
1733 |
-
#: classes/class.pmproemail.php:
|
|
|
1734 |
#, php-format
|
1735 |
msgid "Your membership at %s will end soon"
|
1736 |
-
msgstr "Vaše členství
|
1737 |
|
1738 |
-
#: classes/class.pmproemail.php:
|
|
|
1739 |
#, php-format
|
1740 |
msgid "Your membership at %s has been changed"
|
1741 |
-
msgstr "Vaše členství
|
1742 |
|
1743 |
-
#: classes/class.pmproemail.php:
|
1744 |
-
#: classes/class.pmproemail.php:645 classes/class.pmproemail.php:683
|
1745 |
#, php-format
|
1746 |
-
msgid "The new level is %s.
|
1747 |
-
msgstr "Nová úroveň je%
|
1748 |
|
1749 |
-
#: classes/class.pmproemail.php:
|
|
|
1750 |
msgid "Your membership has been cancelled"
|
1751 |
-
msgstr "Vaše členství bylo
|
1752 |
|
1753 |
-
#: classes/class.pmproemail.php:
|
1754 |
#: classes/class.pmproemail.php:651 classes/class.pmproemail.php:689
|
|
|
|
|
1755 |
#, php-format
|
1756 |
msgid "This membership will expire on %s"
|
1757 |
msgstr "Toto členství vyprší %s"
|
1758 |
|
1759 |
-
#: classes/class.pmproemail.php:
|
1760 |
#: classes/class.pmproemail.php:655 classes/class.pmproemail.php:693
|
|
|
|
|
1761 |
msgid "This membership does not expire"
|
1762 |
msgstr "Toto členství nevyprší"
|
1763 |
|
1764 |
-
#: classes/class.pmproemail.php:
|
|
|
1765 |
#, php-format
|
1766 |
msgid "Membership for %s at %s has been changed"
|
1767 |
-
msgstr "
|
1768 |
|
1769 |
-
#: classes/class.pmproemail.php:
|
1770 |
-
|
1771 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1772 |
|
1773 |
#: classes/gateways/class.pmprogateway.php:55
|
|
|
|
|
|
|
|
|
|
|
1774 |
#: classes/gateways/class.pmprogateway_authorizenet.php:55
|
1775 |
#: classes/gateways/class.pmprogateway_check.php:60
|
1776 |
#: classes/gateways/class.pmprogateway_cybersource.php:57
|
1777 |
#: classes/gateways/class.pmprogateway_payflowpro.php:27
|
1778 |
#: classes/gateways/class.pmprogateway_paypal.php:27
|
1779 |
msgid "Unknown error: Authorization failed."
|
1780 |
-
msgstr "Neznámá chyba: Autorizace selhala"
|
1781 |
|
1782 |
#: classes/gateways/class.pmprogateway.php:106
|
1783 |
#: classes/gateways/class.pmprogateway.php:111
|
1784 |
#: classes/gateways/class.pmprogateway.php:129
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1785 |
#: classes/gateways/class.pmprogateway_authorizenet.php:106
|
1786 |
#: classes/gateways/class.pmprogateway_authorizenet.php:111
|
1787 |
#: classes/gateways/class.pmprogateway_authorizenet.php:128
|
@@ -1795,9 +2198,12 @@ msgstr "Neznámá chyba: Autorizace selhala"
|
|
1795 |
#: classes/gateways/class.pmprogateway_payflowpro.php:55
|
1796 |
#: classes/gateways/class.pmprogateway_paypal.php:50
|
1797 |
msgid "Unknown error: Payment failed."
|
1798 |
-
msgstr "Neznámá chyba: Platba selhala"
|
1799 |
|
1800 |
#: classes/gateways/class.pmprogateway.php:113
|
|
|
|
|
|
|
1801 |
#: classes/gateways/class.pmprogateway_authorizenet.php:112
|
1802 |
#: classes/gateways/class.pmprogateway_check.php:118
|
1803 |
#: classes/gateways/class.pmprogateway_cybersource.php:115
|
@@ -1805,384 +2211,1136 @@ msgid ""
|
|
1805 |
"A partial payment was made that we could not void. Please contact the site "
|
1806 |
"owner immediately to correct this."
|
1807 |
msgstr ""
|
1808 |
-
"
|
1809 |
-
"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1810 |
|
|
|
|
|
1811 |
#: classes/gateways/class.pmprogateway_authorizenet.php:787
|
1812 |
#: classes/gateways/class.pmprogateway_authorizenet.php:788
|
1813 |
#: classes/gateways/class.pmprogateway_authorizenet.php:789
|
|
|
|
|
1814 |
msgid "Could not connect to Authorize.net"
|
1815 |
msgstr "Nelze se připojit k Authorize.net"
|
1816 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1817 |
#: classes/gateways/class.pmprogateway_braintree.php:61
|
1818 |
#: classes/gateways/class.pmprogateway_stripe.php:53
|
1819 |
msgid "Unknown error: Initial payment failed."
|
1820 |
-
msgstr "Neznámá
|
1821 |
|
|
|
1822 |
#: classes/gateways/class.pmprogateway_braintree.php:120
|
1823 |
msgid "Error during settlement:"
|
1824 |
-
msgstr "Chyba
|
1825 |
|
|
|
1826 |
#: classes/gateways/class.pmprogateway_braintree.php:129
|
1827 |
msgid "Error during charge:"
|
1828 |
-
msgstr "Chyba během
|
1829 |
|
|
|
1830 |
#: classes/gateways/class.pmprogateway_braintree.php:198
|
|
|
1831 |
msgid "Failed to update customer."
|
1832 |
msgstr "Nepodařilo se aktualizovat zákazníka."
|
1833 |
|
|
|
1834 |
#: classes/gateways/class.pmprogateway_braintree.php:246
|
|
|
1835 |
msgid "Failed to create customer."
|
1836 |
msgstr "Nepodařilo se vytvořit zákazníka."
|
1837 |
|
|
|
1838 |
#: classes/gateways/class.pmprogateway_braintree.php:253
|
|
|
1839 |
msgid "Error creating customer record with Braintree:"
|
1840 |
-
msgstr "Chyba při vytváření zákazníka
|
1841 |
|
|
|
1842 |
#: classes/gateways/class.pmprogateway_braintree.php:344
|
1843 |
#: classes/gateways/class.pmprogateway_braintree.php:345
|
|
|
1844 |
msgid "Error subscribing customer to plan with Braintree:"
|
1845 |
-
msgstr "Chyba při
|
1846 |
|
|
|
1847 |
#: classes/gateways/class.pmprogateway_braintree.php:359
|
1848 |
#: classes/gateways/class.pmprogateway_braintree.php:360
|
|
|
1849 |
msgid "Failed to subscribe with Braintree:"
|
1850 |
-
msgstr "
|
1851 |
|
|
|
|
|
|
|
1852 |
#: classes/gateways/class.pmprogateway_braintree.php:397
|
1853 |
-
#: classes/gateways/class.pmprogateway_braintree.php:410
|
1854 |
-
#: classes/gateways/class.pmprogateway_braintree.php:417
|
1855 |
-
#: classes/gateways/class.pmprogateway_stripe.php:344
|
1856 |
-
#: classes/gateways/class.pmprogateway_stripe.php:354
|
1857 |
#: classes/gateways/class.pmprogateway_braintree.php:398
|
|
|
1858 |
#: classes/gateways/class.pmprogateway_braintree.php:411
|
|
|
1859 |
#: classes/gateways/class.pmprogateway_braintree.php:418
|
|
|
|
|
|
|
1860 |
#: classes/gateways/class.pmprogateway_stripe.php:343
|
|
|
|
|
1861 |
#: classes/gateways/class.pmprogateway_stripe.php:353
|
|
|
|
|
|
|
|
|
|
|
1862 |
msgid "Could not find the subscription."
|
1863 |
msgstr "Nelze najít předplatné."
|
1864 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1865 |
#: classes/gateways/class.pmprogateway_payflowpro.php:57
|
1866 |
#: classes/gateways/class.pmprogateway_paypal.php:57
|
1867 |
msgid ""
|
1868 |
"A partial payment was made that we could not refund. Please contact the site "
|
1869 |
"owner immediately to correct this."
|
1870 |
msgstr ""
|
1871 |
-
"
|
1872 |
-
"
|
1873 |
|
1874 |
-
#: classes/gateways/class.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1875 |
#: classes/gateways/class.pmprogateway_stripe.php:190
|
|
|
|
|
|
|
|
|
1876 |
msgid "Error creating customer record with Stripe:"
|
1877 |
-
msgstr "Chyba při vytváření zákazníka
|
1878 |
|
1879 |
-
#: classes/gateways/class.pmprogateway_stripe.php:
|
|
|
1880 |
#: classes/gateways/class.pmprogateway_stripe.php:278
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1881 |
msgid "Error creating plan with Stripe:"
|
1882 |
-
msgstr "Chyba
|
1883 |
|
1884 |
-
#: classes/gateways/class.pmprogateway_stripe.php:
|
1885 |
#: classes/gateways/class.pmprogateway_stripe.php:294
|
|
|
|
|
|
|
|
|
|
|
|
|
1886 |
msgid "Error subscribing customer to plan with Stripe:"
|
1887 |
-
msgstr "Chyba při
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1888 |
|
1889 |
-
#: includes/adminpages.php:
|
|
|
|
|
1890 |
msgid "Memberships"
|
1891 |
msgstr "Členství"
|
1892 |
|
|
|
1893 |
#: includes/adminpages.php:10 includes/adminpages.php:49
|
|
|
1894 |
msgid "Page Settings"
|
1895 |
msgstr "Nastavení stránek"
|
1896 |
|
|
|
1897 |
#: includes/adminpages.php:11 includes/adminpages.php:54
|
|
|
1898 |
msgid "Payment Settings"
|
1899 |
msgstr "Nastavení plateb"
|
1900 |
|
|
|
1901 |
#: includes/adminpages.php:16 includes/adminpages.php:79
|
|
|
1902 |
msgid "Reports"
|
1903 |
-
msgstr "
|
1904 |
|
|
|
1905 |
#: includes/adminpages.php:18 includes/adminpages.php:89
|
|
|
1906 |
msgid "Discount Codes"
|
1907 |
-
msgstr "Slevové
|
1908 |
|
1909 |
-
#: includes/
|
1910 |
-
|
1911 |
-
|
1912 |
-
|
1913 |
-
|
1914 |
-
"
|
1915 |
-
msgstr ""
|
1916 |
-
|
1917 |
-
|
|
|
|
|
1918 |
|
1919 |
-
#: includes/
|
1920 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1921 |
msgid "US Dollars ($)"
|
1922 |
-
msgstr "
|
1923 |
|
1924 |
-
#: includes/currencies.php:
|
1925 |
-
#: includes/currencies.php:40
|
|
|
1926 |
msgid "Euros (€)"
|
1927 |
-
msgstr "
|
1928 |
|
1929 |
-
#: includes/currencies.php:
|
1930 |
-
#: includes/currencies.php:39
|
|
|
1931 |
msgid "Pounds Sterling (£)"
|
1932 |
-
msgstr "
|
1933 |
|
1934 |
-
#: includes/currencies.php:10
|
1935 |
msgid "Australian Dollars ($)"
|
1936 |
-
msgstr "
|
1937 |
|
1938 |
-
#: includes/currencies.php:
|
1939 |
-
msgid "Brazilian Real ($)"
|
1940 |
-
msgstr "
|
1941 |
|
1942 |
-
#: includes/currencies.php:
|
1943 |
-
#: includes/currencies.php:38
|
|
|
1944 |
msgid "Canadian Dollars ($)"
|
1945 |
-
msgstr "
|
1946 |
|
1947 |
-
#: includes/currencies.php:13
|
1948 |
msgid "Chinese Yuan"
|
1949 |
-
msgstr "
|
1950 |
|
1951 |
-
#: includes/currencies.php:
|
|
|
1952 |
msgid "Czech Koruna"
|
1953 |
-
msgstr "
|
1954 |
|
1955 |
-
#: includes/currencies.php:
|
|
|
1956 |
msgid "Danish Krone"
|
1957 |
-
msgstr "
|
1958 |
|
1959 |
-
#: includes/currencies.php:
|
|
|
1960 |
msgid "Hong Kong Dollar ($)"
|
1961 |
-
msgstr "
|
1962 |
|
1963 |
-
#: includes/currencies.php:
|
|
|
1964 |
msgid "Hungarian Forint"
|
1965 |
-
msgstr "
|
1966 |
|
1967 |
-
#: includes/currencies.php:18
|
1968 |
msgid "Indian Rupee"
|
1969 |
-
msgstr "
|
1970 |
|
1971 |
-
#: includes/currencies.php:19
|
1972 |
msgid "Indonesia Rupiah"
|
1973 |
-
msgstr "
|
1974 |
|
1975 |
-
#: includes/currencies.php:
|
|
|
1976 |
msgid "Israeli Shekel"
|
1977 |
-
msgstr "
|
1978 |
|
1979 |
-
#: includes/currencies.php:
|
|
|
1980 |
msgid "Japanese Yen (¥)"
|
1981 |
-
msgstr "
|
1982 |
|
1983 |
-
#: includes/currencies.php:
|
|
|
1984 |
msgid "Malaysian Ringgits"
|
1985 |
-
msgstr "
|
1986 |
|
1987 |
-
#: includes/currencies.php:
|
|
|
1988 |
msgid "Mexican Peso ($)"
|
1989 |
-
msgstr "
|
1990 |
|
1991 |
-
#: includes/currencies.php:
|
|
|
1992 |
msgid "New Zealand Dollar ($)"
|
1993 |
-
msgstr "
|
1994 |
|
1995 |
-
#: includes/currencies.php:
|
|
|
1996 |
msgid "Norwegian Krone"
|
1997 |
-
msgstr "
|
1998 |
|
1999 |
-
#: includes/currencies.php:
|
|
|
2000 |
msgid "Philippine Pesos"
|
2001 |
-
msgstr "
|
2002 |
|
2003 |
-
#: includes/currencies.php:
|
|
|
2004 |
msgid "Polish Zloty"
|
2005 |
-
msgstr "
|
2006 |
|
2007 |
-
#: includes/currencies.php:
|
|
|
2008 |
msgid "Singapore Dollar ($)"
|
2009 |
-
msgstr "
|
2010 |
|
2011 |
-
#: includes/currencies.php:
|
2012 |
-
msgid "South African Rand"
|
2013 |
-
msgstr "
|
2014 |
|
2015 |
-
#: includes/currencies.php:30
|
|
|
2016 |
msgid "South Korean Won"
|
2017 |
-
msgstr "
|
2018 |
|
2019 |
-
#: includes/currencies.php:
|
|
|
2020 |
msgid "Swedish Krona"
|
2021 |
msgstr "švédská koruna"
|
2022 |
|
2023 |
-
#: includes/currencies.php:
|
|
|
2024 |
msgid "Swiss Franc"
|
2025 |
-
msgstr "
|
2026 |
|
2027 |
-
#: includes/currencies.php:
|
|
|
2028 |
msgid "Taiwan New Dollars"
|
2029 |
-
msgstr "
|
2030 |
|
2031 |
-
#: includes/currencies.php:
|
|
|
2032 |
msgid "Thai Baht"
|
2033 |
-
msgstr "
|
2034 |
|
2035 |
-
#: includes/currencies.php:35
|
|
|
2036 |
msgid "Turkish Lira"
|
2037 |
-
msgstr "
|
2038 |
|
2039 |
-
#: includes/currencies.php:36
|
|
|
2040 |
msgid "Vietnamese Dong"
|
2041 |
-
msgstr "
|
2042 |
|
2043 |
-
#: includes/functions.php:
|
|
|
|
|
2044 |
#, php-format
|
2045 |
msgid "The price for membership is <strong>%s</strong> now"
|
2046 |
msgstr "Cena za členství je nyní <strong>%s</strong>"
|
2047 |
|
2048 |
-
#: includes/functions.php:205 includes/functions.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2049 |
#, php-format
|
2050 |
msgid " and then <strong>%s per %s for %d more %s</strong>."
|
2051 |
msgstr "a pak <strong>%s na %s pro %d další %s</strong>."
|
2052 |
|
2053 |
-
#: includes/functions.php:
|
|
|
|
|
2054 |
#, php-format
|
2055 |
msgid " and then <strong>%s every %d %s for %d more %s</strong>."
|
2056 |
msgstr "a pak <strong>%s každý %d %s pro %d více %s</strong>."
|
2057 |
|
2058 |
-
#: includes/functions.php:
|
|
|
|
|
2059 |
#, php-format
|
2060 |
msgid " and then <strong>%s after %d %s</strong>."
|
2061 |
msgstr "a pak <strong>%s po %d %s</strong>."
|
2062 |
|
2063 |
-
#: includes/functions.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2064 |
#, php-format
|
2065 |
msgid " and then <strong>%s per %s</strong>."
|
2066 |
msgstr "a pak <strong>%s na %s</strong>."
|
2067 |
|
2068 |
-
#: includes/functions.php:
|
|
|
|
|
|
|
2069 |
#, php-format
|
2070 |
msgid " and then <strong>%s every %d %s</strong>."
|
2071 |
msgstr "a pak <strong>%s každý %d %s</strong>."
|
2072 |
|
2073 |
-
#: includes/functions.php:
|
|
|
|
|
|
|
2074 |
msgid "After your initial payment, your first payment is Free."
|
2075 |
-
msgstr "
|
2076 |
|
2077 |
-
#: includes/functions.php:
|
|
|
|
|
|
|
2078 |
#, php-format
|
2079 |
msgid "After your initial payment, your first %d payments are Free."
|
2080 |
-
msgstr "
|
2081 |
|
2082 |
-
#: includes/functions.php:
|
|
|
|
|
|
|
2083 |
#, php-format
|
2084 |
msgid "After your initial payment, your first payment will cost %s."
|
2085 |
-
msgstr "
|
2086 |
|
2087 |
-
#: includes/functions.php:
|
|
|
|
|
|
|
2088 |
#, php-format
|
2089 |
msgid "After your initial payment, your first %d payments will cost %s."
|
2090 |
-
msgstr "
|
2091 |
|
2092 |
-
#: includes/functions.php:
|
|
|
|
|
|
|
2093 |
#, php-format
|
2094 |
msgid "Customers in %s will be charged %s%% tax."
|
2095 |
-
msgstr "
|
2096 |
|
2097 |
-
#: includes/functions.php:
|
|
|
|
|
|
|
2098 |
#, php-format
|
2099 |
msgid "Membership expires after %d %s."
|
2100 |
-
msgstr "Členství vyprší %d %s."
|
2101 |
|
2102 |
-
#: includes/functions.php:
|
|
|
|
|
|
|
2103 |
msgid "User ID not found."
|
2104 |
-
msgstr "
|
2105 |
|
2106 |
-
#: includes/functions.php:
|
|
|
|
|
|
|
2107 |
msgid "Invalid level."
|
2108 |
-
msgstr "
|
2109 |
|
2110 |
-
#: includes/functions.php:
|
|
|
|
|
|
|
2111 |
msgid "not changing?"
|
2112 |
-
msgstr "
|
2113 |
-
|
2114 |
-
#: includes/functions.php:
|
2115 |
-
#: includes/functions.php:
|
2116 |
-
#: includes/functions.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2117 |
msgid "Error interacting with database"
|
2118 |
-
msgstr "Chyba
|
2119 |
-
|
2120 |
-
#: includes/functions.php:
|
2121 |
-
#: includes/functions.php:629 includes/functions.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2122 |
msgid "Membership level not found."
|
2123 |
-
msgstr "
|
2124 |
-
|
2125 |
-
#: includes/functions.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2126 |
msgid "The discount code could not be found."
|
2127 |
-
msgstr "Slevový
|
2128 |
-
|
2129 |
-
#: includes/functions.php:
|
|
|
|
|
|
|
|
|
|
|
2130 |
#, php-format
|
2131 |
msgid "This discount code goes into effect on %s."
|
2132 |
-
msgstr "
|
2133 |
-
|
2134 |
-
#: includes/functions.php:
|
|
|
|
|
|
|
|
|
|
|
2135 |
#, php-format
|
2136 |
msgid "This discount code expired on %s."
|
2137 |
-
msgstr "Tento slevový
|
2138 |
-
|
2139 |
-
#: includes/functions.php:
|
|
|
|
|
|
|
|
|
|
|
2140 |
msgid "This discount code is no longer valid."
|
2141 |
-
msgstr "Tento slevový
|
2142 |
|
2143 |
-
#: includes/functions.php:
|
|
|
|
|
|
|
|
|
2144 |
msgid "This discount code does not apply to this membership level."
|
2145 |
-
msgstr "Tento slevový
|
2146 |
-
|
2147 |
-
#: includes/functions.php:
|
|
|
|
|
|
|
|
|
|
|
2148 |
msgid "This discount code is okay."
|
2149 |
-
msgstr "
|
2150 |
|
2151 |
-
#: includes/functions.php:
|
|
|
|
|
|
|
|
|
2152 |
msgid "and"
|
2153 |
msgstr "a"
|
2154 |
|
2155 |
-
#: includes/functions.php:
|
|
|
|
|
|
|
|
|
2156 |
msgid "Sign Up for !!name!! Now"
|
2157 |
-
msgstr "
|
2158 |
|
2159 |
-
#: includes/functions.php:
|
|
|
|
|
|
|
|
|
2160 |
msgid "Please specify a level id."
|
2161 |
-
msgstr "
|
|
|
|
|
|
|
|
|
|
|
2162 |
|
2163 |
-
#: includes/localization.php:23
|
2164 |
msgid "Day"
|
2165 |
-
msgstr "
|
2166 |
|
2167 |
-
#: includes/localization.php:25
|
2168 |
msgid "Week"
|
2169 |
-
msgstr "
|
2170 |
|
2171 |
-
#: includes/localization.php:27
|
2172 |
msgid "Month"
|
2173 |
-
msgstr "
|
2174 |
|
2175 |
-
#: includes/localization.php:29
|
2176 |
msgid "Year"
|
2177 |
-
msgstr "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2178 |
|
2179 |
#: includes/metaboxes.php:38
|
2180 |
msgid ""
|
2181 |
"This post is already protected for this level because it is within a "
|
2182 |
"category that requires membership."
|
2183 |
msgstr ""
|
2184 |
-
"Tento příspěvek je
|
2185 |
-
"
|
2186 |
|
2187 |
#: includes/metaboxes.php:99 includes/metaboxes.php:100
|
2188 |
msgid "Require Membership"
|
@@ -2190,95 +3348,101 @@ msgstr "Vyžadovat členství"
|
|
2190 |
|
2191 |
#: includes/profile.php:36 includes/profile.php:34
|
2192 |
msgid "Current Level"
|
2193 |
-
msgstr "Aktuální
|
2194 |
|
2195 |
-
#: includes/profile.php:
|
2196 |
-
msgid "
|
2197 |
-
|
|
|
|
|
|
|
|
|
2198 |
|
2199 |
-
#: includes/
|
2200 |
-
|
2201 |
-
|
|
|
|
|
|
|
|
|
|
|
2202 |
|
2203 |
-
#:
|
2204 |
-
|
2205 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
2206 |
|
2207 |
-
#:
|
2208 |
-
|
2209 |
-
|
|
|
|
|
|
|
|
|
|
|
2210 |
|
2211 |
-
#: pages/account.php:14 pages/
|
2212 |
-
msgid "
|
2213 |
-
msgstr "
|
2214 |
|
2215 |
-
#: pages/account.php:
|
2216 |
-
|
2217 |
-
|
|
|
|
|
2218 |
|
2219 |
-
#: pages/account.php:
|
2220 |
-
|
2221 |
-
|
2222 |
-
msgstr "členství vyprší"
|
2223 |
|
2224 |
-
#: pages/account.php:
|
2225 |
-
|
2226 |
-
|
2227 |
-
msgstr "Vaše první platba bude stát %s."
|
2228 |
|
2229 |
-
#: pages/account.php:
|
2230 |
-
|
2231 |
-
|
2232 |
-
|
|
|
|
|
|
|
2233 |
|
2234 |
-
#: pages/account.php:
|
|
|
|
|
|
|
|
|
2235 |
msgid "My Account"
|
2236 |
msgstr "Muj účet"
|
2237 |
|
2238 |
-
#: pages/account.php:55
|
2239 |
msgid "Edit Profile"
|
2240 |
msgstr "Upravit profil"
|
2241 |
|
2242 |
-
#: pages/account.php:56
|
2243 |
msgid "Change Password"
|
2244 |
msgstr "Změnit heslo"
|
2245 |
|
2246 |
-
#: pages/account.php:87
|
2247 |
-
msgid "Billing Information"
|
2248 |
-
msgstr "Fakturační údaje"
|
2249 |
-
|
2250 |
-
#: pages/account.php:105 pages/confirmation.php:63 pages/invoice.php:50
|
2251 |
-
#: pages/confirmation.php:61 pages/invoice.php:48
|
2252 |
-
msgid "Payment Method"
|
2253 |
-
msgstr "Platební metody"
|
2254 |
-
|
2255 |
-
#: pages/account.php:114
|
2256 |
-
msgid "Edit Billing Information"
|
2257 |
-
msgstr "Upravit fakturační údaje"
|
2258 |
-
|
2259 |
-
#: pages/account.php:125
|
2260 |
msgid "Past Invoices"
|
2261 |
-
msgstr "
|
|
|
|
|
|
|
|
|
2262 |
|
2263 |
-
#: pages/account.php:140
|
2264 |
msgid "View All Invoices"
|
2265 |
-
msgstr "Zobrazit
|
2266 |
|
2267 |
-
#: pages/account.php:146
|
2268 |
msgid "Member Links"
|
2269 |
-
msgstr "Odkazy
|
2270 |
-
|
2271 |
-
#: pages/account.php:152
|
2272 |
-
msgid "Update Billing Information"
|
2273 |
-
msgstr "Upravit fakturační údaje"
|
2274 |
-
|
2275 |
-
#: pages/account.php:155
|
2276 |
-
msgid "Change Membership Level"
|
2277 |
-
msgstr "Změnit úroveň členství"
|
2278 |
-
|
2279 |
-
#: pages/account.php:157
|
2280 |
-
msgid "Cancel Membership"
|
2281 |
-
msgstr "Zrušení členství"
|
2282 |
|
2283 |
#: pages/billing.php:14
|
2284 |
#, php-format
|
@@ -2289,245 +3453,263 @@ msgstr "Přihlášen jako <strong>%s</strong>."
|
|
2289 |
msgid "logout"
|
2290 |
msgstr "odhlásit"
|
2291 |
|
2292 |
-
#: pages/billing.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2293 |
msgid ""
|
2294 |
"Your payment subscription is managed by PayPal. Please <a href=\"http://www."
|
2295 |
"paypal.com\">login to PayPal here</a> to update your billing information."
|
2296 |
msgstr ""
|
2297 |
-
"
|
2298 |
-
"
|
|
|
2299 |
|
2300 |
-
#: pages/billing.php:
|
|
|
|
|
2301 |
msgid "First Name"
|
2302 |
msgstr "Jméno"
|
2303 |
|
2304 |
-
#: pages/billing.php:
|
|
|
|
|
2305 |
msgid "Last Name"
|
2306 |
msgstr "Příjmení"
|
2307 |
|
2308 |
-
#: pages/billing.php:
|
|
|
|
|
2309 |
msgid "Address 1"
|
2310 |
-
msgstr "Adresa
|
2311 |
|
2312 |
-
#: pages/billing.php:
|
|
|
|
|
2313 |
msgid "Address 2"
|
2314 |
-
msgstr "
|
2315 |
|
2316 |
-
#: pages/billing.php:
|
|
|
|
|
2317 |
msgid "City"
|
2318 |
msgstr "Město"
|
2319 |
|
2320 |
-
#: pages/billing.php:
|
|
|
|
|
2321 |
msgid "State"
|
2322 |
-
msgstr "
|
2323 |
|
2324 |
-
#: pages/billing.php:
|
|
|
|
|
2325 |
msgid "Postal Code"
|
2326 |
msgstr "PSČ"
|
2327 |
|
2328 |
-
#: pages/billing.php:
|
|
|
|
|
2329 |
msgid "City, State Zip"
|
2330 |
-
msgstr "
|
2331 |
|
2332 |
-
#: pages/billing.php:
|
|
|
|
|
2333 |
msgid "Country"
|
2334 |
msgstr "Země"
|
2335 |
|
2336 |
-
#: pages/billing.php:
|
|
|
|
|
2337 |
msgid "Phone"
|
2338 |
msgstr "Telefon"
|
2339 |
|
2340 |
-
#: pages/billing.php:
|
2341 |
-
#: pages/checkout.php:204 pages/checkout.php:
|
|
|
|
|
2342 |
msgid "E-mail Address"
|
2343 |
-
msgstr "E-
|
2344 |
|
2345 |
-
#: pages/billing.php:
|
|
|
|
|
2346 |
msgid "Confirm E-mail"
|
2347 |
msgstr "Potvrdit e-mail"
|
2348 |
|
2349 |
-
#: pages/billing.php:217
|
2350 |
msgid "Credit Card Information"
|
2351 |
msgstr "Informace o platební kartě"
|
2352 |
|
2353 |
-
#: pages/billing.php:217
|
2354 |
#, php-format
|
2355 |
msgid "We accept %s"
|
2356 |
msgstr "Přijímáme %s"
|
2357 |
|
2358 |
-
#: pages/billing.php:
|
2359 |
-
msgid "Card Number"
|
2360 |
-
msgstr "Číslo karty"
|
2361 |
-
|
2362 |
-
#: pages/billing.php:281 pages/checkout.php:564 pages/checkout.php:557
|
2363 |
-
msgid "CVV"
|
2364 |
-
msgstr "CVV"
|
2365 |
-
|
2366 |
-
#: pages/billing.php:282 pages/checkout.php:565 pages/checkout.php:558
|
2367 |
-
msgid "what's this?"
|
2368 |
-
msgstr "Co je toto?"
|
2369 |
-
|
2370 |
-
#: pages/billing.php:294
|
2371 |
-
msgid "Update"
|
2372 |
-
msgstr "Upraveno"
|
2373 |
-
|
2374 |
-
#: pages/billing.php:309
|
2375 |
msgid ""
|
2376 |
"This subscription is not recurring. So you don't need to update your billing "
|
2377 |
"information."
|
2378 |
msgstr ""
|
2379 |
-
"
|
|
|
2380 |
|
2381 |
-
#: pages/cancel.php:14
|
2382 |
msgid "Are you sure you want to cancel your membership?"
|
2383 |
msgstr "Jste si jisti, že chcete zrušit Vaše členství?"
|
2384 |
|
2385 |
-
#: pages/cancel.php:
|
|
|
|
|
|
|
|
|
|
|
2386 |
msgid "Yes, cancel my account"
|
2387 |
-
msgstr "Ano, chci zrušit
|
2388 |
|
2389 |
-
#: pages/cancel.php:19
|
2390 |
msgid "No, keep my account"
|
2391 |
-
msgstr "Ne, chci
|
|
|
|
|
|
|
|
|
2392 |
|
2393 |
-
#: pages/cancel.php:22
|
2394 |
msgid "Click here to go to the home page."
|
2395 |
-
msgstr "Pro návrat na
|
2396 |
|
2397 |
-
#: pages/checkout.php:26 pages/checkout.php:27
|
2398 |
msgid ""
|
2399 |
"Almost done. Review the membership information and pricing below then "
|
2400 |
"<strong>click the \"Complete Payment\" button</strong> to finish your order."
|
2401 |
msgstr ""
|
2402 |
-
"Téměř hotovo. Zkontrolujte informace o členství a ceny níže
|
2403 |
-
"<strong>klikněte na tlačítko \"Complete Payment\" </ strong
|
2404 |
-
"se dokončí."
|
2405 |
|
2406 |
-
#: pages/checkout.php:33 pages/checkout.php:34
|
2407 |
msgid "change"
|
2408 |
-
msgstr "
|
2409 |
|
2410 |
-
#: pages/checkout.php:41 pages/checkout.php:42
|
2411 |
#, php-format
|
2412 |
msgid "You have selected the <strong>%s</strong> membership level."
|
2413 |
-
msgstr "Vybrali jste si <strong>%s</strong
|
2414 |
|
2415 |
-
#: pages/checkout.php:51 pages/checkout.php:
|
2416 |
#, php-format
|
2417 |
-
msgid "
|
2418 |
-
|
|
|
|
|
|
|
|
|
2419 |
|
2420 |
-
#: pages/checkout.php:62 services/applydiscountcode.php:
|
2421 |
-
#: pages/checkout.php:63
|
|
|
2422 |
msgid "Click here to change your discount code"
|
2423 |
-
msgstr "Pro
|
2424 |
|
2425 |
-
#: pages/checkout.php:64 pages/checkout.php:65
|
2426 |
msgid "Click here to enter your discount code"
|
2427 |
-
msgstr "Pro vložení slevového
|
2428 |
|
2429 |
-
#: pages/checkout.php:64 pages/checkout.php:65
|
2430 |
msgid "Do you have a discount code?"
|
2431 |
-
msgstr "Chcete použít slevový
|
2432 |
|
2433 |
-
#: pages/checkout.php:
|
2434 |
-
#: pages/checkout.php:568
|
2435 |
-
msgid "Apply"
|
2436 |
-
msgstr "použít"
|
2437 |
-
|
2438 |
-
#: pages/checkout.php:163 pages/checkout.php:160
|
2439 |
msgid "Account Information"
|
2440 |
msgstr "Informace o účtu"
|
2441 |
|
2442 |
-
#: pages/checkout.php:163 pages/checkout.php:160
|
2443 |
msgid "Already have an account?"
|
2444 |
-
msgstr "
|
2445 |
|
2446 |
-
#: pages/checkout.php:163 pages/checkout.php:160
|
2447 |
msgid "Log in here"
|
2448 |
-
msgstr "
|
2449 |
|
2450 |
-
#: pages/checkout.php:189 pages/checkout.php:186
|
2451 |
msgid "Confirm Password"
|
2452 |
msgstr "Potvrzení hesla"
|
2453 |
|
2454 |
-
#: pages/checkout.php:216 pages/checkout.php:213
|
2455 |
msgid "Confirm E-mail Address"
|
2456 |
-
msgstr "Potvrzení e-
|
2457 |
|
2458 |
-
#: pages/checkout.php:235 pages/checkout.php:232
|
2459 |
msgid "Full Name"
|
2460 |
msgstr "Celé jméno"
|
2461 |
|
2462 |
-
#: pages/checkout.php:236 pages/checkout.php:233
|
2463 |
msgid "LEAVE THIS BLANK"
|
2464 |
-
msgstr "
|
2465 |
|
2466 |
-
#: pages/checkout.php:260 pages/checkout.php:257
|
2467 |
#, php-format
|
2468 |
msgid ""
|
2469 |
"You are logged in as <strong>%s</strong>. If you would like to use a "
|
2470 |
"different account for this membership, <a href=\"%s\">log out now</a>."
|
2471 |
msgstr ""
|
2472 |
-
"Jste
|
2473 |
-
"<a href=\"%s\">
|
2474 |
|
2475 |
-
#: pages/checkout.php:
|
2476 |
-
|
2477 |
-
msgid "I agree to the %s"
|
2478 |
-
msgstr "Souhlasím s %s"
|
2479 |
-
|
2480 |
-
#: pages/checkout.php:299 pages/checkout.php:292
|
2481 |
msgid "Choose your Payment Method"
|
2482 |
-
msgstr "
|
2483 |
|
2484 |
-
#: pages/checkout.php:
|
|
|
2485 |
msgid "Check Out with a Credit Card Here"
|
2486 |
-
msgstr "Zde
|
2487 |
|
2488 |
-
#: pages/checkout.php:
|
2489 |
-
#: pages/checkout.php:
|
2490 |
-
msgid "Check Out with PayPal"
|
2491 |
-
msgstr "Zde ověřte PayPal"
|
2492 |
-
|
2493 |
-
#: pages/checkout.php:500 pages/checkout.php:493
|
2494 |
-
msgid "Payment Information"
|
2495 |
-
msgstr "Platební informace"
|
2496 |
-
|
2497 |
-
#: pages/checkout.php:500 pages/checkout.php:493
|
2498 |
#, php-format
|
2499 |
-
msgid "
|
2500 |
-
msgstr "
|
2501 |
|
2502 |
-
#: pages/checkout.php:
|
|
|
2503 |
msgid "Complete Payment"
|
2504 |
-
msgstr "
|
2505 |
-
|
2506 |
-
#: pages/checkout.php:688 pages/checkout.php:681
|
2507 |
-
msgid "Submit and Check Out"
|
2508 |
-
msgstr "Ověřit a odeslat"
|
2509 |
-
|
2510 |
-
#: pages/checkout.php:688 pages/checkout.php:681
|
2511 |
-
msgid "Submit and Confirm"
|
2512 |
-
msgstr "Potvrdit a odeslat"
|
2513 |
-
|
2514 |
-
#: pages/checkout.php:688
|
2515 |
-
msgid "Submit and Pay with 2CheckOut"
|
2516 |
-
msgstr "Zaplatit a odeslat pomocí 2CheckOut"
|
2517 |
|
2518 |
-
#: pages/checkout.php:
|
|
|
2519 |
msgid "Processing..."
|
2520 |
msgstr "Zpracování..."
|
2521 |
|
2522 |
#: pages/confirmation.php:12
|
2523 |
msgid ""
|
2524 |
"Your payment has been submitted. Your membership will be activated shortly."
|
2525 |
-
msgstr "
|
2526 |
|
2527 |
#: pages/confirmation.php:14
|
2528 |
#, php-format
|
2529 |
msgid "Thank you for your membership to %s. Your %s membership is now active."
|
2530 |
-
msgstr "
|
|
|
|
|
2531 |
|
2532 |
#: pages/confirmation.php:28
|
2533 |
#, php-format
|
@@ -2536,15 +3718,15 @@ msgid ""
|
|
2536 |
"initial membership invoice. A welcome email with a copy of your initial "
|
2537 |
"membership invoice has been sent to %s."
|
2538 |
msgstr ""
|
2539 |
-
"Níže jsou uvedeny informace
|
2540 |
-
"
|
2541 |
|
2542 |
#: pages/confirmation.php:41 pages/invoice.php:22
|
2543 |
#, php-format
|
2544 |
msgid "Invoice #%s on %s"
|
2545 |
-
msgstr "
|
2546 |
|
2547 |
-
#: pages/confirmation.php:43
|
2548 |
msgid "Print"
|
2549 |
msgstr "Tisk"
|
2550 |
|
@@ -2553,39 +3735,51 @@ msgstr "Tisk"
|
|
2553 |
msgid "Account"
|
2554 |
msgstr "Účet"
|
2555 |
|
2556 |
-
#: pages/confirmation.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2557 |
#: pages/confirmation.php:63 pages/invoice.php:50 pages/invoice.php:107
|
|
|
2558 |
msgid "Total Billed"
|
2559 |
-
msgstr "
|
2560 |
|
2561 |
#: pages/confirmation.php:82 pages/invoice.php:69 pages/confirmation.php:80
|
2562 |
#: pages/invoice.php:67
|
2563 |
msgid "ending in"
|
2564 |
-
msgstr "
|
2565 |
|
2566 |
-
#: pages/confirmation.php:97
|
2567 |
#, php-format
|
2568 |
msgid ""
|
2569 |
-
"Below are details about your membership account. A welcome email
|
2570 |
-
"
|
2571 |
msgstr ""
|
2572 |
-
"Níže jsou uvedeny informace o
|
|
|
2573 |
|
2574 |
#: pages/confirmation.php:105 pages/confirmation.php:103
|
2575 |
msgid "Pending"
|
2576 |
-
msgstr "
|
2577 |
|
2578 |
#: pages/confirmation.php:113 pages/invoice.php:141 pages/confirmation.php:111
|
2579 |
#: pages/invoice.php:139
|
2580 |
msgid "View Your Membership Account →"
|
2581 |
-
msgstr "Zobrazit
|
2582 |
|
2583 |
#: pages/confirmation.php:115 pages/confirmation.php:113
|
2584 |
msgid ""
|
2585 |
"If your account is not activated within a few minutes, please contact the "
|
2586 |
"site owner."
|
2587 |
msgstr ""
|
2588 |
-
"Pokud
|
2589 |
"webu."
|
2590 |
|
2591 |
#: pages/invoice.php:79 pages/invoice.php:77
|
@@ -2598,262 +3792,345 @@ msgstr "Kupón"
|
|
2598 |
|
2599 |
#: pages/invoice.php:108 pages/invoice.php:106
|
2600 |
msgid "Invoice #"
|
2601 |
-
msgstr "
|
2602 |
-
|
2603 |
-
#: pages/invoice.php:122 pages/invoice.php:120
|
2604 |
-
msgid "View Invoice"
|
2605 |
-
msgstr "Zobrazit fakturu"
|
2606 |
|
2607 |
#: pages/invoice.php:134 pages/invoice.php:132
|
2608 |
msgid "No invoices found."
|
2609 |
-
msgstr "
|
2610 |
|
2611 |
#: pages/invoice.php:145 pages/invoice.php:143
|
2612 |
msgid "← View All Invoices"
|
2613 |
-
msgstr "←
|
2614 |
|
2615 |
-
#: pages/levels.php:
|
2616 |
-
msgid "
|
2617 |
-
msgstr "
|
2618 |
-
|
2619 |
-
#: pages/levels.php:33
|
2620 |
-
msgid "--"
|
2621 |
-
msgstr "--"
|
2622 |
|
2623 |
-
#: pages/levels.php:43
|
2624 |
msgid "Free"
|
2625 |
msgstr "Zdarma"
|
2626 |
|
2627 |
-
#: pages/levels.php:
|
2628 |
-
|
2629 |
-
msgid "%s per %s for %d more %s."
|
2630 |
-
msgstr "%s na %s pro %d více %s."
|
2631 |
-
|
2632 |
-
#: pages/levels.php:55
|
2633 |
-
#, php-format
|
2634 |
-
msgid "%s every %d %s for %d more %s."
|
2635 |
-
msgstr "%s každý %d %s pro %d více %s."
|
2636 |
-
|
2637 |
-
#: pages/levels.php:60
|
2638 |
-
#, php-format
|
2639 |
-
msgid "%s after %d %s."
|
2640 |
-
msgstr "%s po %d %s."
|
2641 |
-
|
2642 |
-
#: pages/levels.php:66
|
2643 |
-
#, php-format
|
2644 |
-
msgid "%s per %s."
|
2645 |
-
msgstr "%s na %s."
|
2646 |
-
|
2647 |
-
#: pages/levels.php:70
|
2648 |
-
#, php-format
|
2649 |
-
msgid "%s every %d %s."
|
2650 |
-
msgstr "%s každý %d %s."
|
2651 |
-
|
2652 |
-
#: pages/levels.php:113 pages/levels.php:115
|
2653 |
msgid "Select"
|
2654 |
msgstr "Označit"
|
2655 |
|
2656 |
-
#: pages/levels.php:
|
2657 |
-
msgid "Renew"
|
2658 |
-
msgstr "Obnovit"
|
2659 |
-
|
2660 |
-
#: pages/levels.php:129 pages/levels.php:117
|
2661 |
msgid "Your Level"
|
2662 |
-
msgstr "Vaše ú
|
2663 |
|
2664 |
-
#: pages/levels.php:
|
2665 |
msgid "← Return to Your Account"
|
2666 |
-
msgstr "←
|
2667 |
|
2668 |
-
#: pages/levels.php:
|
2669 |
msgid "← Return to Home"
|
2670 |
-
msgstr "←
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2671 |
|
2672 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
2673 |
msgid "Your membership status has been updated - Thank you!"
|
2674 |
-
msgstr "Váš
|
2675 |
|
|
|
2676 |
#: preheaders/account.php:11 preheaders/levels.php:23
|
2677 |
msgid ""
|
2678 |
"Sorry, your request could not be completed - please try again in a few "
|
2679 |
"moments."
|
2680 |
-
msgstr "
|
2681 |
-
|
2682 |
-
|
2683 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
2684 |
msgid "Please complete all required fields."
|
2685 |
-
msgstr "
|
2686 |
-
|
2687 |
-
#: preheaders/billing.php:
|
2688 |
-
#: preheaders/
|
|
|
|
|
|
|
|
|
2689 |
msgid "Your email addresses do not match. Please try again."
|
2690 |
-
msgstr "Vaše e-
|
2691 |
-
|
2692 |
-
#: preheaders/billing.php:
|
2693 |
-
#: preheaders/
|
|
|
|
|
|
|
|
|
2694 |
msgid "The email address entered is in an invalid format. Please try again."
|
2695 |
-
msgstr ""
|
2696 |
-
"Vaše e-mailová adresa nebyla vložena ve správném formátu. Zkuste to znovu."
|
2697 |
|
2698 |
-
#: preheaders/billing.php:274
|
|
|
|
|
2699 |
msgid "All good!"
|
2700 |
-
msgstr "Vše v pořádku!"
|
2701 |
|
2702 |
-
#: preheaders/billing.php:340
|
|
|
|
|
2703 |
#, php-format
|
2704 |
msgid "Information updated. <a href=\"%s\">« back to my account</a>"
|
2705 |
-
msgstr "
|
|
|
2706 |
|
2707 |
-
#: preheaders/billing.php:347
|
|
|
|
|
2708 |
msgid "Error updating billing information."
|
2709 |
-
msgstr "Chyba při aktualizaci
|
2710 |
|
2711 |
-
#: preheaders/cancel.php:24
|
2712 |
msgid "Your membership has been cancelled."
|
2713 |
-
msgstr "Vaše členství bylo
|
2714 |
-
|
2715 |
-
#: preheaders/checkout.php:
|
2716 |
-
#: preheaders/checkout.php:
|
|
|
|
|
|
|
|
|
2717 |
msgid "Invalid gateway."
|
2718 |
msgstr "Neplatná brána."
|
2719 |
|
|
|
|
|
2720 |
#: preheaders/checkout.php:96
|
2721 |
msgid "Checkout: Payment Information"
|
2722 |
msgstr "Pokladna: Informace o platbě"
|
2723 |
|
2724 |
-
#: preheaders/checkout.php:
|
|
|
2725 |
msgid "Setup Your Account"
|
2726 |
-
msgstr "
|
2727 |
|
2728 |
-
#: preheaders/checkout.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2729 |
msgid "Your passwords do not match. Please try again."
|
2730 |
-
msgstr "Vaše
|
2731 |
|
2732 |
-
#: preheaders/checkout.php:
|
|
|
|
|
|
|
2733 |
#, php-format
|
2734 |
msgid "Please check the box to agree to the %s."
|
2735 |
-
msgstr "Prosím,
|
2736 |
|
2737 |
-
#: preheaders/checkout.php:
|
|
|
|
|
2738 |
msgid "Are you a spammer?"
|
2739 |
msgstr "Jste spamer?"
|
2740 |
|
2741 |
-
#: preheaders/checkout.php:
|
|
|
|
|
|
|
2742 |
msgid "That username is already taken. Please try another."
|
2743 |
-
msgstr "Toto uživatelské
|
2744 |
|
2745 |
-
#: preheaders/checkout.php:
|
|
|
|
|
|
|
2746 |
msgid "That email address is already taken. Please try another."
|
2747 |
-
msgstr "Tato e-mailová adresa
|
2748 |
|
2749 |
-
#: preheaders/checkout.php:
|
|
|
|
|
|
|
2750 |
#, php-format
|
2751 |
msgid "reCAPTCHA failed. (%s) Please try again."
|
2752 |
-
msgstr "reCAPTCHA
|
2753 |
|
2754 |
-
#: preheaders/checkout.php:
|
|
|
|
|
|
|
2755 |
msgid "Payment accepted."
|
2756 |
-
msgstr "Platba
|
2757 |
|
2758 |
-
#: preheaders/checkout.php:
|
|
|
|
|
|
|
2759 |
msgid ""
|
2760 |
"Unknown error generating account. Please contact us to setup your membership."
|
2761 |
msgstr ""
|
2762 |
-
"Neznámá chyba generování
|
2763 |
-
|
2764 |
-
|
2765 |
-
#: preheaders/checkout.php:
|
2766 |
-
|
2767 |
-
|
2768 |
-
|
2769 |
-
#: preheaders/checkout.php:
|
2770 |
-
#: preheaders/checkout.php:844
|
2771 |
msgid ""
|
2772 |
"Your payment was accepted, but there was an error setting up your account. "
|
2773 |
"Please contact us."
|
2774 |
msgstr ""
|
2775 |
-
"Vaše platba byla přijata, ale
|
2776 |
-
"kontaktujte nás."
|
2777 |
-
|
2778 |
-
#: preheaders/checkout.php:
|
2779 |
-
#: preheaders/checkout.php:
|
|
|
|
|
|
|
2780 |
msgid ""
|
2781 |
"IMPORTANT: Something went wrong during membership creation. Your credit card "
|
2782 |
"authorized, but we cancelled the order immediately. You should not try to "
|
2783 |
"submit this form again. Please contact the site owner to fix this issue."
|
2784 |
msgstr ""
|
2785 |
-
"DŮLEŽITÉ: Při vytváření členství se něco pokazilo. Vaše
|
2786 |
-
"autorizována, ale objednávka byla
|
2787 |
-
"
|
2788 |
-
|
2789 |
-
|
2790 |
-
#: preheaders/checkout.php:
|
|
|
|
|
|
|
|
|
2791 |
msgid ""
|
2792 |
"IMPORTANT: Something went wrong during membership creation. Your credit card "
|
2793 |
"was charged, but we couldn't assign your membership. You should not submit "
|
2794 |
"this form again. Please contact the site owner to fix this issue."
|
2795 |
msgstr ""
|
2796 |
-
"DŮLEŽITÉ: Při vytváření členství se něco pokazilo. Vaše
|
2797 |
-
"
|
2798 |
-
"
|
2799 |
-
|
2800 |
-
|
2801 |
-
#: preheaders/checkout.php:
|
|
|
|
|
|
|
|
|
2802 |
#, php-format
|
2803 |
msgid ""
|
2804 |
"You must <a href=\"%s\">setup a Payment Gateway</a> before any payments will "
|
2805 |
"be processed."
|
2806 |
msgstr ""
|
2807 |
-
"Před
|
2808 |
-
|
2809 |
-
|
2810 |
-
#: preheaders/checkout.php:
|
|
|
|
|
|
|
|
|
2811 |
msgid "A Payment Gateway must be setup before any payments will be processed."
|
2812 |
msgstr ""
|
2813 |
-
"
|
2814 |
-
"
|
2815 |
|
2816 |
-
#: scheduled/crons.php:31 scheduled/crons.php:
|
|
|
2817 |
#, php-format
|
2818 |
msgid "Membership expired email sent to %s. "
|
2819 |
-
msgstr "
|
2820 |
|
2821 |
-
#: scheduled/crons.php:
|
|
|
2822 |
#, php-format
|
2823 |
msgid "Membership expiring email sent to %s. "
|
2824 |
-
msgstr "
|
2825 |
|
2826 |
-
#: scheduled/crons.php:143
|
2827 |
#, php-format
|
2828 |
msgid "Credit card expiring email sent to %s. "
|
2829 |
-
msgstr "
|
2830 |
|
2831 |
-
#: scheduled/crons.php:
|
|
|
2832 |
#, php-format
|
2833 |
msgid "Trial ending email sent to %s. "
|
2834 |
-
msgstr "
|
|
|
|
|
|
|
|
|
|
|
2835 |
|
2836 |
-
#: services/applydiscountcode.php:82
|
|
|
2837 |
#, php-format
|
2838 |
msgid "The <strong>%s</strong> code has been applied to your order."
|
2839 |
-
msgstr "<strong>%s</strong>
|
2840 |
|
2841 |
-
#: services/authnet-silent-post.php:133
|
|
|
2842 |
msgid ""
|
2843 |
"<p>A payment is being held for review within Authorize.net.</p><p>Payment "
|
2844 |
"Information From Authorize.net"
|
2845 |
msgstr ""
|
2846 |
-
"<p>Platba
|
2847 |
-
"Authorize.net"
|
2848 |
|
2849 |
-
#: services/stripe-webhook.php:176
|
|
|
2850 |
#, php-format
|
2851 |
msgid ""
|
2852 |
"%s has had their payment subscription cancelled by Stripe. Please check that "
|
2853 |
"this user's membership is cancelled on your site if it should be."
|
2854 |
msgstr ""
|
2855 |
-
"%
|
2856 |
-
"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2857 |
|
2858 |
#: adminpages/membershiplevels.php:398
|
2859 |
msgid ""
|
@@ -2861,17 +4138,44 @@ msgid ""
|
|
2861 |
"one period trials by setting an initial payment different from the billing "
|
2862 |
"amount."
|
2863 |
msgstr ""
|
2864 |
-
"Integrace
|
2865 |
"Můžete to udělat v jednom období zkušební doby, nastavením počáteční platby "
|
2866 |
"lišící se od fakturační částky."
|
2867 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2868 |
#: adminpages/paymentsettings.php:170
|
2869 |
msgid ""
|
2870 |
"Payflow Pro currently only supports one-time payments. Users will not be "
|
2871 |
"able to checkout for levels with recurring payments."
|
2872 |
msgstr ""
|
2873 |
"Payflow Pro v současné době podporuje pouze jednorázové platby. Uživatelé "
|
2874 |
-
"nebudou moci zaplatit
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2875 |
|
2876 |
#: adminpages/paymentsettings.php:410 adminpages/paymentsettings.php:421
|
2877 |
msgid "Use SSL"
|
@@ -2879,11 +4183,156 @@ msgstr "Použít SSL"
|
|
2879 |
|
2880 |
#: adminpages/paymentsettings.php:425
|
2881 |
msgid "Required by this Gateway Option"
|
2882 |
-
msgstr "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2883 |
|
2884 |
#: pages/confirmation.php:12
|
2885 |
msgid ""
|
2886 |
"Your payment has been submitted to PayPal. Your membership will be activated "
|
2887 |
"shortly."
|
2888 |
msgstr ""
|
2889 |
-
"Vaše platba byla odeslána
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: pmpro\n"
|
4 |
+
"POT-Creation-Date: 2015-02-28 13:48-0500\n"
|
5 |
+
"PO-Revision-Date: 2015-03-12 20:07+0100\n"
|
6 |
+
"Last-Translator: Martin Kokeš <shr3k1@gmail.com>\n"
|
7 |
"Language-Team: Stranger Studios <jason@strangerstudios.com>\n"
|
8 |
+
"Language: cs_CZ\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 1.7.5\n"
|
13 |
+
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
|
14 |
|
15 |
#: adminpages/addons.php:5 adminpages/advancedsettings.php:5
|
16 |
#: adminpages/discountcodes.php:5 adminpages/emailsettings.php:5
|
23 |
|
24 |
#: adminpages/addons.php:79
|
25 |
msgid "Disabled"
|
26 |
+
msgstr "Zakázáno"
|
27 |
|
28 |
#: adminpages/addons.php:79
|
29 |
msgid "Enabled"
|
31 |
|
32 |
#: adminpages/admin_header.php:25
|
33 |
msgid "Add a membership level to get started."
|
34 |
+
msgstr "Pro začátek zadejte nějakou úroveň členství."
|
35 |
|
36 |
#: adminpages/admin_header.php:27
|
37 |
msgid "Setup the membership pages"
|
38 |
+
msgstr "Nastavte stránky členství"
|
39 |
|
40 |
#: adminpages/admin_header.php:29
|
41 |
msgid "Setup your SSL certificate and payment gateway"
|
42 |
+
msgstr "Nastavte Váš SSL certifikát a platební bránu"
|
43 |
|
44 |
#: adminpages/admin_header.php:38
|
45 |
msgid ""
|
46 |
"The billing details for some of your membership levels is not supported by "
|
47 |
"Stripe."
|
48 |
msgstr ""
|
49 |
+
"Fakturační údaje pro některé z vašich členských úrovní nejsou podporovány "
|
50 |
+
"bránou Stripe."
|
51 |
|
52 |
#: adminpages/admin_header.php:46
|
53 |
msgid ""
|
54 |
"The billing details for this level are not supported by Stripe. Please "
|
55 |
"review the notes in the Billing Details section below."
|
56 |
msgstr ""
|
57 |
+
"Fakturační údaje pro tuto úroveň nejsou podporovány bránou Stripe. Prosím "
|
58 |
+
"prohlédněte si poznámky níže v sekci Fakturační údaje."
|
59 |
|
60 |
#: adminpages/admin_header.php:50 adminpages/admin_header.php:70
|
61 |
#: adminpages/admin_header.php:90 adminpages/admin_header.php:111
|
62 |
msgid "The levels with issues are highlighted below."
|
63 |
+
msgstr "Úrovně s problémy jsou zvýrazněny níže."
|
64 |
|
65 |
#: adminpages/admin_header.php:52 adminpages/admin_header.php:72
|
66 |
#: adminpages/admin_header.php:92 adminpages/admin_header.php:113
|
73 |
"Payflow."
|
74 |
msgstr ""
|
75 |
"Fakturační údaje pro některé z vašich členských úrovní nejsou podporovány "
|
76 |
+
"bránou Payflow."
|
77 |
|
78 |
#: adminpages/admin_header.php:66
|
79 |
msgid ""
|
80 |
"The billing details for this level are not supported by Payflow. Please "
|
81 |
"review the notes in the Billing Details section below."
|
82 |
msgstr ""
|
83 |
+
"Fakturační údaje pro tuto úroveň nejsou podporovány bránou Payflow. Prosím "
|
84 |
+
"prohlédněte si poznámky níže v sekci Fakturační údaje."
|
85 |
|
86 |
#: adminpages/admin_header.php:78
|
87 |
msgid ""
|
88 |
"The billing details for some of your membership levels is not supported by "
|
89 |
"Braintree."
|
90 |
msgstr ""
|
91 |
+
"Fakturační údaje pro některé z vašich členských úrovní nejsou podporovány "
|
92 |
+
"bránou Braintree."
|
93 |
|
94 |
#: adminpages/admin_header.php:86
|
95 |
msgid ""
|
96 |
"The billing details for this level are not supported by Braintree. Please "
|
97 |
"review the notes in the Billing Details section below."
|
98 |
msgstr ""
|
99 |
+
"Fakturační údaje pro tuto úroveň nejsou podporovány bránou Braintree. Prosím "
|
100 |
+
"prohlédněte si poznámky níže v sekci Fakturační údaje."
|
101 |
|
102 |
#: adminpages/admin_header.php:98
|
103 |
msgid ""
|
104 |
"The billing details for some of your membership levels is not supported by "
|
105 |
"TwoCheckout."
|
106 |
msgstr ""
|
107 |
+
"Fakturační údaje pro některé z vašich členských úrovní nejsou podporovány "
|
108 |
+
"bránou 2Checkout."
|
109 |
|
110 |
#: adminpages/admin_header.php:107
|
111 |
msgid ""
|
112 |
"The billing details for this level are not supported by 2Checkout. Please "
|
113 |
"review the notes in the Billing Details section below."
|
114 |
msgstr ""
|
115 |
+
"Fakturační údaje pro tuto úroveň nejsou podporovány bránou 2Checkout. Prosím "
|
116 |
+
"prohlédněte si poznámky níže v sekci Fakturační údaje."
|
117 |
|
118 |
#: adminpages/admin_header.php:127 adminpages/admin_header.php:106
|
119 |
msgid "Plugin Support"
|
123 |
msgid "User Forum"
|
124 |
msgstr "Uživatelské fórum"
|
125 |
|
126 |
+
#: adminpages/admin_header.php:149 adminpages/membershiplevels.php:526
|
127 |
+
#: adminpages/pagesettings.php:69 includes/adminpages.php:64
|
128 |
+
#: includes/adminpages.php:65 includes/adminpages.php:107
|
129 |
+
#: adminpages/admin_header.php:128 adminpages/membershiplevels.php:490
|
130 |
+
#: adminpages/membershiplevels.php:496 adminpages/membershiplevels.php:498
|
131 |
+
#: adminpages/membershiplevels.php:525 includes/adminpages.php:44
|
132 |
+
#: includes/adminpages.php:100
|
133 |
msgid "Membership Levels"
|
134 |
+
msgstr "Úrovně členství"
|
135 |
|
136 |
+
#: adminpages/admin_header.php:150 adminpages/pagesettings.php:120
|
137 |
+
#: adminpages/admin_header.php:129 adminpages/pagesettings.php:92
|
138 |
msgid "Pages"
|
139 |
msgstr "Stránky"
|
140 |
|
141 |
#: adminpages/admin_header.php:151 adminpages/admin_header.php:130
|
142 |
msgid "Payment Gateway & SSL"
|
143 |
+
msgstr "Platební brána & SSL"
|
144 |
|
145 |
+
#: adminpages/admin_header.php:152 adminpages/memberslist.php:158
|
146 |
+
#: pages/account.php:77 adminpages/admin_header.php:131
|
147 |
+
#: adminpages/memberslist.php:115 adminpages/memberslist.php:148
|
148 |
+
#: pages/account.php:52 pages/account.php:56
|
149 |
msgid "Email"
|
150 |
+
msgstr "E-mail"
|
151 |
|
152 |
#: adminpages/admin_header.php:153 adminpages/admin_header.php:132
|
153 |
msgid "Advanced"
|
154 |
+
msgstr "Rozšířené"
|
155 |
|
156 |
+
#: adminpages/admin_header.php:154 includes/adminpages.php:52
|
157 |
+
#: includes/adminpages.php:142 adminpages/admin_header.php:133
|
158 |
+
#: includes/adminpages.php:14 includes/adminpages.php:69
|
159 |
+
#: includes/adminpages.php:135
|
160 |
msgid "Add Ons"
|
161 |
msgstr "Doplňky"
|
162 |
|
163 |
+
#: adminpages/advancedsettings.php:43 adminpages/advancedsettings.php:35
|
164 |
+
#: adminpages/advancedsettings.php:42
|
165 |
msgid "Your advanced settings have been updated."
|
166 |
+
msgstr "Vaše rozšířená nastavení byla aktualizována."
|
167 |
+
|
168 |
+
#: adminpages/advancedsettings.php:68 adminpages/advancedsettings.php:66
|
169 |
+
#, php-format
|
170 |
+
msgid ""
|
171 |
+
"This content is for !!levels!! members only. <a href=\"%s\">Register here</"
|
172 |
+
"a>."
|
173 |
+
msgstr ""
|
174 |
+
"Tento obsah je určený pouze pro členy !!levels!!. <a href=\"%s"
|
175 |
+
"\">Zaregistrujte se zde</a>."
|
176 |
+
|
177 |
+
#: adminpages/advancedsettings.php:73 adminpages/advancedsettings.php:71
|
178 |
+
#, php-format
|
179 |
+
msgid ""
|
180 |
+
"Please <a href=\"%s\">login</a> to view this content. (<a href=\"%s"
|
181 |
+
"\">Register here</a>.)"
|
182 |
+
msgstr ""
|
183 |
+
"Pro zobrazení tohoto obsahu se prosím <a href=\"%s\">přihlaste</a>. (<a href="
|
184 |
+
"\"%s\">Zagistrujte se zde</a>.)"
|
185 |
|
186 |
+
#: adminpages/advancedsettings.php:78 adminpages/advancedsettings.php:76
|
187 |
+
msgid ""
|
188 |
+
"This content is for members only. Visit the site and log in/register to read."
|
189 |
+
msgstr ""
|
190 |
+
"Tento obsah je určen pouze pro členy. Pro jeho čtení navštivte stránky a "
|
191 |
+
"přihlaste se/zaregistrujte se."
|
192 |
+
|
193 |
+
#: adminpages/advancedsettings.php:88 includes/adminpages.php:51
|
194 |
+
#: includes/adminpages.php:135 adminpages/advancedsettings.php:79
|
195 |
+
#: adminpages/advancedsettings.php:86 includes/adminpages.php:13
|
196 |
+
#: includes/adminpages.php:64 includes/adminpages.php:128
|
197 |
msgid "Advanced Settings"
|
198 |
+
msgstr "Rozšířená nastavení"
|
199 |
|
200 |
+
#: adminpages/advancedsettings.php:94 adminpages/advancedsettings.php:85
|
201 |
+
#: adminpages/advancedsettings.php:92
|
202 |
msgid "Message for Logged-in Non-members"
|
203 |
+
msgstr "Zpráva pro přihlášené nečleny"
|
204 |
|
205 |
+
#: adminpages/advancedsettings.php:98 adminpages/advancedsettings.php:89
|
206 |
+
#: adminpages/advancedsettings.php:96
|
207 |
msgid ""
|
208 |
"This message replaces the post content for non-members. Available variables"
|
209 |
+
msgstr "Tato zpráva nahrazuje obsah příspěvku pro nečleny. Dostupné proměnné"
|
210 |
|
211 |
+
#: adminpages/advancedsettings.php:103 adminpages/advancedsettings.php:94
|
212 |
+
#: adminpages/advancedsettings.php:101
|
213 |
msgid "Message for Logged-out Users"
|
214 |
msgstr "Zpráva pro odhlášené uživatele"
|
215 |
|
216 |
+
#: adminpages/advancedsettings.php:107 adminpages/advancedsettings.php:98
|
217 |
+
#: adminpages/advancedsettings.php:105
|
218 |
msgid "This message replaces the post content for logged-out visitors."
|
219 |
+
msgstr "Tato zpráva nahrazuje obsah příspěvku pro nepřihlášené návštěvníky."
|
220 |
|
221 |
+
#: adminpages/advancedsettings.php:112 adminpages/advancedsettings.php:103
|
222 |
+
#: adminpages/advancedsettings.php:110
|
223 |
msgid "Message for RSS Feed"
|
224 |
msgstr "Zpráva pro RSS Feed"
|
225 |
|
226 |
+
#: adminpages/advancedsettings.php:116 adminpages/advancedsettings.php:107
|
227 |
+
#: adminpages/advancedsettings.php:114
|
228 |
msgid "This message replaces the post content in RSS feeds."
|
229 |
+
msgstr "Tato zpráva nahrazuje obsah příspěvku v RSS feedech."
|
230 |
+
|
231 |
+
#: adminpages/advancedsettings.php:122
|
232 |
+
msgid "Filter searches and archives?"
|
233 |
+
msgstr "Filtrovat vyhledávání a archivy?"
|
234 |
+
|
235 |
+
#: adminpages/advancedsettings.php:126
|
236 |
+
msgid ""
|
237 |
+
"No - Non-members will see restricted posts/pages in searches and archives."
|
238 |
+
msgstr "Ne - Nečlenové uvidí omezené příspěvky/stránky v hledání a archivech."
|
239 |
+
|
240 |
+
#: adminpages/advancedsettings.php:127
|
241 |
+
msgid ""
|
242 |
+
"Yes - Only members will see restricted posts/pages in searches and archives."
|
243 |
+
msgstr ""
|
244 |
+
"Ano - Pouze členové uvidí omezené příspěvky/stránky v hledání a archivech."
|
245 |
|
246 |
+
#: adminpages/advancedsettings.php:133 adminpages/advancedsettings.php:113
|
247 |
+
#: adminpages/advancedsettings.php:120
|
248 |
msgid "Show Excerpts to Non-Members?"
|
249 |
msgstr "Zobrazit ukázky pro nečleny?"
|
250 |
|
251 |
+
#: adminpages/advancedsettings.php:137 adminpages/advancedsettings.php:117
|
252 |
+
#: adminpages/advancedsettings.php:124
|
253 |
msgid "No - Hide excerpts."
|
254 |
+
msgstr "Ne - Skrýt výňatky."
|
255 |
|
256 |
+
#: adminpages/advancedsettings.php:138 adminpages/advancedsettings.php:118
|
257 |
+
#: adminpages/advancedsettings.php:125
|
258 |
msgid "Yes - Show excerpts."
|
259 |
+
msgstr "Ano - Ukázat výňatky."
|
260 |
+
|
261 |
+
#: adminpages/advancedsettings.php:148 adminpages/advancedsettings.php:207
|
262 |
+
#: adminpages/advancedsettings.php:219 adminpages/membershiplevels.php:578
|
263 |
+
#: adminpages/paymentsettings.php:210
|
264 |
+
#: classes/gateways/class.pmprogateway_stripe.php:173 includes/profile.php:101
|
265 |
+
#: adminpages/advancedsettings.php:128 adminpages/advancedsettings.php:135
|
266 |
+
#: adminpages/advancedsettings.php:187 adminpages/advancedsettings.php:194
|
267 |
+
#: adminpages/advancedsettings.php:199 adminpages/advancedsettings.php:206
|
268 |
+
#: adminpages/membershiplevels.php:563 adminpages/membershiplevels.php:569
|
269 |
+
#: adminpages/membershiplevels.php:571 adminpages/membershiplevels.php:598
|
270 |
+
#: adminpages/paymentsettings.php:414 adminpages/paymentsettings.php:429
|
271 |
+
#: adminpages/paymentsettings.php:434 adminpages/paymentsettings.php:436
|
272 |
+
#: adminpages/paymentsettings.php:454 adminpages/paymentsettings.php:459
|
273 |
+
#: adminpages/paymentsettings.php:461 includes/profile.php:121
|
274 |
+
#: includes/profile.php:123
|
275 |
msgid "No"
|
276 |
msgstr "Ne"
|
277 |
|
278 |
+
#: adminpages/advancedsettings.php:149 adminpages/advancedsettings.php:129
|
279 |
+
#: adminpages/advancedsettings.php:136
|
280 |
msgid "Hide Ads From All Members"
|
281 |
+
msgstr "Skrýt reklamy všem členům"
|
282 |
|
283 |
+
#: adminpages/advancedsettings.php:150 adminpages/advancedsettings.php:130
|
284 |
+
#: adminpages/advancedsettings.php:137
|
285 |
msgid "Hide Ads From Certain Members"
|
286 |
+
msgstr "Skrýt reklamy některým členům"
|
287 |
|
288 |
+
#: adminpages/advancedsettings.php:157 adminpages/advancedsettings.php:137
|
289 |
+
#: adminpages/advancedsettings.php:144
|
290 |
msgid "Ads from the following plugins will be automatically turned off"
|
291 |
+
msgstr "Reklama z následujících pluginů bude automaticky vypnuta"
|
292 |
|
293 |
+
#: adminpages/advancedsettings.php:158 adminpages/advancedsettings.php:138
|
294 |
+
#: adminpages/advancedsettings.php:145
|
295 |
msgid "To hide ads in your template code, use code like the following"
|
296 |
msgstr ""
|
297 |
+
"Chcete-li skrýt reklamy ve vašem kódu šablony, použijte následující kód"
|
298 |
|
299 |
+
#: adminpages/advancedsettings.php:169 adminpages/advancedsettings.php:149
|
300 |
+
#: adminpages/advancedsettings.php:156
|
301 |
msgid "Choose Levels to Hide Ads From"
|
302 |
+
msgstr "Zvolte úrovně pro skrytí reklam"
|
303 |
|
304 |
+
#: adminpages/advancedsettings.php:203 adminpages/advancedsettings.php:183
|
305 |
+
#: adminpages/advancedsettings.php:190
|
306 |
msgid "Redirect all traffic from registration page to /susbcription/?"
|
307 |
+
msgstr "Přesměrovat veškerý provoz z registrační stránky na /subscription/?"
|
308 |
|
309 |
+
#: adminpages/advancedsettings.php:203 adminpages/advancedsettings.php:183
|
310 |
+
#: adminpages/advancedsettings.php:190
|
311 |
msgid "multisite only"
|
312 |
msgstr "Pouze pro multisite"
|
313 |
|
314 |
+
#: adminpages/advancedsettings.php:208 adminpages/membershiplevels.php:578
|
315 |
+
#: adminpages/paymentsettings.php:211
|
316 |
+
#: classes/gateways/class.pmprogateway_stripe.php:174 includes/profile.php:102
|
317 |
+
#: adminpages/advancedsettings.php:188 adminpages/advancedsettings.php:195
|
318 |
+
#: adminpages/membershiplevels.php:563 adminpages/membershiplevels.php:569
|
319 |
+
#: adminpages/membershiplevels.php:571 adminpages/membershiplevels.php:598
|
320 |
#: adminpages/paymentsettings.php:415 adminpages/paymentsettings.php:424
|
321 |
+
#: adminpages/paymentsettings.php:430 adminpages/paymentsettings.php:435
|
322 |
+
#: adminpages/paymentsettings.php:437 adminpages/paymentsettings.php:455
|
323 |
+
#: adminpages/paymentsettings.php:460 adminpages/paymentsettings.php:462
|
324 |
+
#: includes/profile.php:122 includes/profile.php:124
|
325 |
msgid "Yes"
|
326 |
msgstr "Ano"
|
327 |
|
328 |
+
#: adminpages/advancedsettings.php:215 adminpages/advancedsettings.php:195
|
329 |
+
#: adminpages/advancedsettings.php:202
|
330 |
msgid "Use reCAPTCHA?"
|
331 |
msgstr "Použít reCAPTCHU?"
|
332 |
|
333 |
+
#: adminpages/advancedsettings.php:220 adminpages/advancedsettings.php:200
|
334 |
+
#: adminpages/advancedsettings.php:207
|
335 |
msgid "Yes - Free memberships only."
|
336 |
+
msgstr "Ano - Pouze členství zdarma."
|
337 |
|
338 |
+
#: adminpages/advancedsettings.php:221 adminpages/advancedsettings.php:201
|
339 |
+
#: adminpages/advancedsettings.php:208
|
340 |
msgid "Yes - All memberships."
|
341 |
+
msgstr "Ano - Všechna členství."
|
342 |
|
343 |
+
#: adminpages/advancedsettings.php:223 adminpages/advancedsettings.php:203
|
344 |
+
#: adminpages/advancedsettings.php:210
|
345 |
msgid "A free reCAPTCHA key is required."
|
346 |
+
msgstr "Je vyžadován bezplatný reCAPTCHA klíč."
|
347 |
|
348 |
+
#: adminpages/advancedsettings.php:223 adminpages/advancedsettings.php:203
|
349 |
+
#: adminpages/advancedsettings.php:210
|
350 |
msgid "Click here to signup for reCAPTCHA"
|
351 |
+
msgstr "Klikněte zde pro registraci reCAPTCHA"
|
352 |
|
353 |
+
#: adminpages/advancedsettings.php:229 adminpages/advancedsettings.php:209
|
354 |
+
#: adminpages/advancedsettings.php:216
|
355 |
msgid "reCAPTCHA Public Key"
|
356 |
+
msgstr "Veřejný klíč reCAPTCHA"
|
357 |
|
358 |
+
#: adminpages/advancedsettings.php:232 adminpages/advancedsettings.php:212
|
359 |
+
#: adminpages/advancedsettings.php:219
|
360 |
msgid "reCAPTCHA Private Key"
|
361 |
+
msgstr "Soukromý klíč reCAPTCHA"
|
362 |
|
363 |
+
#: adminpages/advancedsettings.php:238 adminpages/advancedsettings.php:218
|
364 |
+
#: adminpages/advancedsettings.php:225
|
365 |
msgid "Require Terms of Service on signups?"
|
366 |
+
msgstr "Vyžadovat souhlas s podmínkami služeb při registracích?"
|
367 |
|
368 |
+
#: adminpages/advancedsettings.php:245 adminpages/advancedsettings.php:225
|
369 |
+
#: adminpages/advancedsettings.php:232
|
370 |
msgid ""
|
371 |
"If yes, create a WordPress page containing your TOS agreement and assign it "
|
372 |
"using the dropdown above."
|
373 |
msgstr ""
|
374 |
+
"Pokud ano, vytvořte WordPress stránku obsahující vaše podmínky služeb a "
|
375 |
+
"přiřaďte ji pomocí rozbalovací menu výše."
|
376 |
+
|
377 |
+
#: adminpages/advancedsettings.php:285 adminpages/advancedsettings.php:272
|
378 |
+
msgid "selected"
|
379 |
+
msgstr "vybráno"
|
380 |
+
|
381 |
+
#: adminpages/advancedsettings.php:368 adminpages/pagesettings.php:251
|
382 |
+
#: adminpages/paymentsettings.php:238 adminpages/advancedsettings.php:284
|
383 |
+
#: adminpages/advancedsettings.php:355 adminpages/pagesettings.php:209
|
384 |
+
#: adminpages/pagesettings.php:223 adminpages/paymentsettings.php:485
|
385 |
+
#: adminpages/paymentsettings.php:526 adminpages/paymentsettings.php:532
|
386 |
+
#: adminpages/paymentsettings.php:534
|
387 |
msgid "Save Settings"
|
388 |
msgstr "Uložit nastavení"
|
389 |
|
393 |
|
394 |
#: adminpages/discountcodes.php:55
|
395 |
msgid "Error updating discount code. That code may already be in use."
|
396 |
+
msgstr "Chyba při aktualizaci slevového kódu. Tento kód může být již používán."
|
|
|
397 |
|
398 |
#: adminpages/discountcodes.php:64
|
399 |
msgid "Discount code added successfully."
|
400 |
msgstr "Slevový kód byl úspěšně přidán"
|
401 |
|
402 |
+
#: adminpages/discountcodes.php:72 adminpages/discountcodes.php:71
|
403 |
msgid "Error adding discount code. That code may already be in use."
|
404 |
+
msgstr "Chyba při přidání slevového kódu. Tento kód může být již používán."
|
|
|
405 |
|
406 |
+
#: adminpages/discountcodes.php:197 adminpages/discountcodes.php:196
|
407 |
#, php-format
|
408 |
msgid "Error saving values for the %s level."
|
409 |
+
msgstr "Chyba při ukládání hodnot pro úroveň %s."
|
410 |
|
411 |
+
#: adminpages/discountcodes.php:205 adminpages/discountcodes.php:204
|
412 |
msgid "There were errors updating the level values: "
|
413 |
+
msgstr "Došlo k chybám při aktualizaci hodnot úrovní:"
|
414 |
|
415 |
+
#: adminpages/discountcodes.php:238 adminpages/discountcodes.php:234
|
416 |
+
#: adminpages/discountcodes.php:237
|
417 |
#, php-format
|
418 |
msgid "Code %s deleted successfully."
|
419 |
+
msgstr "Kód %s byl úspěšně smazán."
|
420 |
|
421 |
+
#: adminpages/discountcodes.php:243 adminpages/discountcodes.php:239
|
422 |
+
#: adminpages/discountcodes.php:242
|
423 |
msgid ""
|
424 |
"Error deleting discount code. The code was only partially deleted. Please "
|
425 |
"try again."
|
426 |
msgstr ""
|
427 |
+
"Chyba při mazání slevového kódu. Kód byl jen částečně odstraněn. Zkuste to "
|
428 |
"prosím znovu."
|
429 |
|
430 |
+
#: adminpages/discountcodes.php:249 adminpages/discountcodes.php:245
|
431 |
+
#: adminpages/discountcodes.php:248
|
432 |
msgid "Error deleting code. Please try again."
|
433 |
+
msgstr "Chyba při mazání kódu. Zkuste to znovu."
|
434 |
|
435 |
+
#: adminpages/discountcodes.php:255 adminpages/discountcodes.php:251
|
436 |
+
#: adminpages/discountcodes.php:254
|
437 |
msgid "Code not found."
|
438 |
+
msgstr "Kód nenalezen."
|
439 |
|
440 |
+
#: adminpages/discountcodes.php:268 adminpages/discountcodes.php:264
|
441 |
+
#: adminpages/discountcodes.php:267
|
442 |
msgid "Edit Discount Code"
|
443 |
+
msgstr "Upravit slevový kód"
|
444 |
|
445 |
+
#: adminpages/discountcodes.php:270 adminpages/discountcodes.php:558
|
446 |
+
#: adminpages/discountcodes.php:266 adminpages/discountcodes.php:269
|
447 |
+
#: adminpages/discountcodes.php:526 adminpages/discountcodes.php:529
|
448 |
+
#: adminpages/discountcodes.php:557
|
449 |
msgid "Add New Discount Code"
|
450 |
+
msgstr "Vložit nový slevový kód"
|
451 |
+
|
452 |
+
#: adminpages/discountcodes.php:310 adminpages/discountcodes.php:586
|
453 |
+
#: adminpages/membershiplevels.php:286 adminpages/membershiplevels.php:541
|
454 |
+
#: adminpages/memberslist.php:154 adminpages/orders.php:900
|
455 |
+
#: adminpages/reports/login.php:140 adminpages/discountcodes.php:306
|
456 |
+
#: adminpages/discountcodes.php:309 adminpages/discountcodes.php:547
|
457 |
+
#: adminpages/discountcodes.php:557 adminpages/discountcodes.php:585
|
458 |
+
#: adminpages/membershiplevels.php:284 adminpages/membershiplevels.php:505
|
459 |
+
#: adminpages/membershiplevels.php:511 adminpages/membershiplevels.php:513
|
460 |
+
#: adminpages/membershiplevels.php:540 adminpages/memberslist.php:111
|
461 |
+
#: adminpages/memberslist.php:144 adminpages/orders.php:597
|
462 |
msgid "ID"
|
463 |
msgstr "ID"
|
464 |
|
465 |
+
#: adminpages/discountcodes.php:311 adminpages/orders.php:261
|
466 |
+
#: adminpages/discountcodes.php:307 adminpages/discountcodes.php:310
|
467 |
+
#: adminpages/orders.php:211
|
468 |
msgid "This will be generated when you save."
|
469 |
+
msgstr "Toto bude vygenerováno při uložení."
|
470 |
+
|
471 |
+
#: adminpages/discountcodes.php:315 adminpages/discountcodes.php:587
|
472 |
+
#: adminpages/orders.php:265 adminpages/orders.php:901
|
473 |
+
#: adminpages/discountcodes.php:311 adminpages/discountcodes.php:314
|
474 |
+
#: adminpages/discountcodes.php:548 adminpages/discountcodes.php:558
|
475 |
+
#: adminpages/discountcodes.php:586 adminpages/orders.php:215
|
476 |
+
#: adminpages/orders.php:598
|
477 |
msgid "Code"
|
478 |
msgstr "Kód"
|
479 |
|
480 |
+
#: adminpages/discountcodes.php:353 adminpages/discountcodes.php:349
|
481 |
+
#: adminpages/discountcodes.php:352
|
482 |
msgid "Start Date"
|
483 |
msgstr "Počáteční datum"
|
484 |
|
485 |
+
#: adminpages/discountcodes.php:371
|
486 |
+
#: classes/gateways/class.pmprogateway_braintree.php:308
|
487 |
+
#: classes/gateways/class.pmprogateway_stripe.php:454 pages/billing.php:253
|
488 |
+
#: pages/checkout.php:553 adminpages/discountcodes.php:367
|
489 |
+
#: adminpages/discountcodes.php:370 pages/billing.php:249
|
490 |
+
#: pages/checkout.php:508 pages/checkout.php:524 pages/checkout.php:525
|
491 |
+
#: pages/checkout.php:532
|
492 |
msgid "Expiration Date"
|
493 |
msgstr "Datum vypršení"
|
494 |
|
495 |
+
#: adminpages/discountcodes.php:389 adminpages/discountcodes.php:590
|
496 |
+
#: adminpages/discountcodes.php:385 adminpages/discountcodes.php:388
|
497 |
+
#: adminpages/discountcodes.php:551 adminpages/discountcodes.php:561
|
498 |
+
#: adminpages/discountcodes.php:589
|
499 |
msgid "Uses"
|
500 |
+
msgstr "Použití"
|
501 |
|
502 |
+
#: adminpages/discountcodes.php:392 adminpages/discountcodes.php:388
|
503 |
+
#: adminpages/discountcodes.php:391
|
504 |
msgid "Leave blank for unlimited uses."
|
505 |
+
msgstr "Nechte prázdné pro neomezené použití."
|
506 |
+
|
507 |
+
#: adminpages/discountcodes.php:401 adminpages/discountcodes.php:400
|
508 |
+
msgid "Which Levels Will This Code Apply To?"
|
509 |
+
msgstr "Jakých úrovní se bude tento kód týkat?"
|
510 |
|
511 |
+
#: adminpages/discountcodes.php:431 adminpages/membershiplevels.php:339
|
512 |
+
#: adminpages/discountcodes.php:427 adminpages/discountcodes.php:430
|
513 |
+
#: adminpages/membershiplevels.php:337 adminpages/membershiplevels.php:507
|
514 |
+
#: adminpages/membershiplevels.php:513 adminpages/membershiplevels.php:515
|
515 |
+
#: adminpages/membershiplevels.php:542 pages/levels.php:14
|
516 |
msgid "Initial Payment"
|
517 |
msgstr "Počáteční platba"
|
518 |
|
519 |
+
#: adminpages/discountcodes.php:442 adminpages/membershiplevels.php:350
|
520 |
+
#: adminpages/discountcodes.php:428 adminpages/discountcodes.php:431
|
521 |
+
#: adminpages/discountcodes.php:441 adminpages/membershiplevels.php:338
|
522 |
+
#: adminpages/membershiplevels.php:340
|
523 |
msgid "The initial amount collected at registration."
|
524 |
msgstr "Počáteční částka získaná při registraci."
|
525 |
|
526 |
+
#: adminpages/discountcodes.php:447 adminpages/membershiplevels.php:354
|
527 |
+
#: adminpages/discountcodes.php:432 adminpages/discountcodes.php:435
|
528 |
+
#: adminpages/discountcodes.php:446 adminpages/membershiplevels.php:342
|
529 |
+
#: adminpages/membershiplevels.php:344
|
530 |
msgid "Recurring Subscription"
|
531 |
+
msgstr "Opakující se předplatné"
|
532 |
|
533 |
+
#: adminpages/discountcodes.php:448 adminpages/membershiplevels.php:355
|
534 |
+
#: adminpages/discountcodes.php:433 adminpages/discountcodes.php:436
|
535 |
+
#: adminpages/discountcodes.php:447 adminpages/membershiplevels.php:343
|
536 |
+
#: adminpages/membershiplevels.php:345
|
537 |
msgid "Check if this level has a recurring subscription payment."
|
538 |
+
msgstr "Zatrhněte, pokud má tato úroveň opakující se platbu předplatného."
|
539 |
|
540 |
+
#: adminpages/discountcodes.php:452 adminpages/membershiplevels.php:359
|
541 |
+
#: adminpages/discountcodes.php:440 adminpages/discountcodes.php:451
|
542 |
+
#: adminpages/membershiplevels.php:347 adminpages/membershiplevels.php:349
|
543 |
+
msgid "Billing Amount"
|
544 |
+
msgstr "Vyfakturovaná částka"
|
545 |
+
|
546 |
+
#: adminpages/discountcodes.php:467 adminpages/discountcodes.php:521
|
547 |
+
#: adminpages/membershiplevels.php:374 adminpages/membershiplevels.php:477
|
548 |
+
#: classes/gateways/class.pmprogateway_stripe.php:521
|
549 |
+
#: adminpages/discountcodes.php:446 adminpages/discountcodes.php:466
|
550 |
+
#: adminpages/discountcodes.php:492 adminpages/discountcodes.php:520
|
551 |
+
#: adminpages/membershiplevels.php:353 adminpages/membershiplevels.php:355
|
552 |
+
#: adminpages/membershiplevels.php:449 adminpages/membershiplevels.php:476
|
553 |
+
msgid "Day(s)"
|
554 |
+
msgstr "den(y)"
|
555 |
+
|
556 |
+
#: adminpages/discountcodes.php:467 adminpages/discountcodes.php:521
|
557 |
+
#: adminpages/membershiplevels.php:374 adminpages/membershiplevels.php:477
|
558 |
+
#: classes/gateways/class.pmprogateway_stripe.php:521
|
559 |
+
#: adminpages/discountcodes.php:446 adminpages/discountcodes.php:466
|
560 |
+
#: adminpages/discountcodes.php:492 adminpages/discountcodes.php:520
|
561 |
+
#: adminpages/membershiplevels.php:353 adminpages/membershiplevels.php:355
|
562 |
+
#: adminpages/membershiplevels.php:449 adminpages/membershiplevels.php:476
|
563 |
+
msgid "Month(s)"
|
564 |
+
msgstr "měsíc(e)"
|
565 |
+
|
566 |
+
#: adminpages/discountcodes.php:467 adminpages/discountcodes.php:521
|
567 |
+
#: adminpages/membershiplevels.php:374 adminpages/membershiplevels.php:477
|
568 |
+
#: classes/gateways/class.pmprogateway_stripe.php:521
|
569 |
+
#: adminpages/discountcodes.php:446 adminpages/discountcodes.php:466
|
570 |
+
#: adminpages/discountcodes.php:492 adminpages/discountcodes.php:520
|
571 |
+
#: adminpages/membershiplevels.php:353 adminpages/membershiplevels.php:355
|
572 |
+
#: adminpages/membershiplevels.php:449 adminpages/membershiplevels.php:476
|
573 |
+
msgid "Week(s)"
|
574 |
+
msgstr "týden(y)"
|
575 |
+
|
576 |
+
#: adminpages/discountcodes.php:467 adminpages/discountcodes.php:521
|
577 |
+
#: adminpages/membershiplevels.php:374 adminpages/membershiplevels.php:477
|
578 |
+
#: classes/gateways/class.pmprogateway_stripe.php:521
|
579 |
+
#: adminpages/discountcodes.php:446 adminpages/discountcodes.php:466
|
580 |
+
#: adminpages/discountcodes.php:492 adminpages/discountcodes.php:520
|
581 |
+
#: adminpages/membershiplevels.php:353 adminpages/membershiplevels.php:355
|
582 |
+
#: adminpages/membershiplevels.php:449 adminpages/membershiplevels.php:476
|
583 |
+
msgid "Year(s)"
|
584 |
+
msgstr "rok(y)"
|
585 |
|
586 |
+
#: adminpages/discountcodes.php:475 adminpages/membershiplevels.php:383
|
587 |
+
#: adminpages/discountcodes.php:451 adminpages/discountcodes.php:454
|
588 |
+
#: adminpages/discountcodes.php:474 adminpages/membershiplevels.php:362
|
589 |
+
#: adminpages/membershiplevels.php:364
|
590 |
msgid "The amount to be billed one cycle after the initial payment."
|
591 |
+
msgstr "Částka, která má být účtována pro jeden cyklus po počáteční platbě."
|
592 |
|
593 |
+
#: adminpages/discountcodes.php:480 adminpages/membershiplevels.php:401
|
594 |
+
#: adminpages/discountcodes.php:456 adminpages/discountcodes.php:459
|
595 |
+
#: adminpages/discountcodes.php:479 adminpages/membershiplevels.php:380
|
596 |
+
#: adminpages/membershiplevels.php:382
|
597 |
msgid "Billing Cycle Limit"
|
598 |
msgstr "Limit fakturačního cyklu"
|
599 |
|
600 |
+
#: adminpages/discountcodes.php:483 adminpages/membershiplevels.php:405
|
601 |
+
#: adminpages/discountcodes.php:459 adminpages/discountcodes.php:462
|
602 |
+
#: adminpages/discountcodes.php:482 adminpages/membershiplevels.php:384
|
603 |
+
#: adminpages/membershiplevels.php:386
|
604 |
msgid ""
|
605 |
"The <strong>total</strong> number of recurring billing cycles for this "
|
606 |
"level, including the trial period (if applicable) but not including the "
|
607 |
"initial payment. Set to zero if membership is indefinite."
|
608 |
msgstr ""
|
609 |
+
"Počet <strong>všech</strong> opakujících se fakturačních cyklů pro tuto "
|
610 |
+
"úroveň, včetně zkušební doby (pokud existuje), ale ne včetně počáteční "
|
611 |
"platby. Nastavit na nulu, pokud je členství na dobu neurčitou."
|
612 |
|
613 |
+
#: adminpages/discountcodes.php:488 adminpages/membershiplevels.php:414
|
614 |
+
#: adminpages/discountcodes.php:464 adminpages/discountcodes.php:467
|
615 |
+
#: adminpages/discountcodes.php:487 adminpages/membershiplevels.php:393
|
616 |
+
#: adminpages/membershiplevels.php:395
|
617 |
msgid "Custom Trial"
|
618 |
+
msgstr "Vlastní zkušební doba"
|
619 |
|
620 |
+
#: adminpages/discountcodes.php:489 adminpages/membershiplevels.php:416
|
621 |
+
#: adminpages/discountcodes.php:465 adminpages/discountcodes.php:468
|
622 |
+
#: adminpages/discountcodes.php:488 adminpages/membershiplevels.php:394
|
623 |
+
#: adminpages/membershiplevels.php:395 adminpages/membershiplevels.php:397
|
624 |
msgid "Check to add a custom trial period."
|
625 |
+
msgstr "Zatrhněte pro přidání vlastní zkušební doby."
|
626 |
|
627 |
+
#: adminpages/discountcodes.php:493 adminpages/membershiplevels.php:425
|
628 |
+
#: adminpages/discountcodes.php:469 adminpages/discountcodes.php:472
|
629 |
+
#: adminpages/discountcodes.php:492 adminpages/membershiplevels.php:398
|
630 |
+
#: adminpages/membershiplevels.php:404 adminpages/membershiplevels.php:406
|
631 |
msgid "Trial Billing Amount"
|
632 |
+
msgstr "Částka fakturace zkušební doby"
|
633 |
|
634 |
+
#: adminpages/discountcodes.php:504 adminpages/membershiplevels.php:436
|
635 |
+
#: adminpages/discountcodes.php:472 adminpages/discountcodes.php:475
|
636 |
+
#: adminpages/discountcodes.php:503 adminpages/membershiplevels.php:401
|
637 |
+
#: adminpages/membershiplevels.php:407 adminpages/membershiplevels.php:409
|
638 |
msgid "for the first"
|
639 |
+
msgstr "pro první"
|
640 |
|
641 |
+
#: adminpages/discountcodes.php:506 adminpages/membershiplevels.php:438
|
642 |
+
#: adminpages/discountcodes.php:474 adminpages/discountcodes.php:477
|
643 |
+
#: adminpages/discountcodes.php:505 adminpages/membershiplevels.php:403
|
644 |
+
#: adminpages/membershiplevels.php:409 adminpages/membershiplevels.php:411
|
645 |
msgid "subscription payments"
|
646 |
+
msgstr "platby předplatného"
|
647 |
|
648 |
+
#: adminpages/discountcodes.php:511 adminpages/membershiplevels.php:467
|
649 |
+
#: adminpages/discountcodes.php:479 adminpages/discountcodes.php:482
|
650 |
+
#: adminpages/discountcodes.php:510 adminpages/membershiplevels.php:431
|
651 |
+
#: adminpages/membershiplevels.php:437 adminpages/membershiplevels.php:439
|
652 |
+
#: adminpages/membershiplevels.php:466
|
653 |
msgid "Membership Expiration"
|
654 |
msgstr "Vypršení členství"
|
655 |
|
656 |
+
#: adminpages/discountcodes.php:512 adminpages/membershiplevels.php:468
|
657 |
+
#: adminpages/discountcodes.php:483 adminpages/discountcodes.php:511
|
658 |
+
#: adminpages/membershiplevels.php:432 adminpages/membershiplevels.php:438
|
659 |
+
#: adminpages/membershiplevels.php:440 adminpages/membershiplevels.php:467
|
660 |
+
msgid "Check this to set when membership access expires."
|
661 |
+
msgstr "Zatrhněte pro nastavení, kdy přístup ke členství vyprší."
|
662 |
|
663 |
+
#: adminpages/discountcodes.php:516 adminpages/membershiplevels.php:472
|
664 |
+
#: adminpages/discountcodes.php:484 adminpages/discountcodes.php:487
|
665 |
+
#: adminpages/discountcodes.php:515 adminpages/membershiplevels.php:436
|
666 |
+
#: adminpages/membershiplevels.php:442 adminpages/membershiplevels.php:444
|
667 |
+
#: adminpages/membershiplevels.php:471
|
668 |
msgid "Expires In"
|
669 |
+
msgstr "Vyprší za"
|
670 |
|
671 |
+
#: adminpages/discountcodes.php:529 adminpages/membershiplevels.php:485
|
672 |
+
#: adminpages/discountcodes.php:500 adminpages/discountcodes.php:528
|
673 |
+
#: adminpages/membershiplevels.php:449 adminpages/membershiplevels.php:455
|
674 |
+
#: adminpages/membershiplevels.php:457 adminpages/membershiplevels.php:484
|
675 |
msgid ""
|
676 |
+
"Set the duration of membership access. Note that the any future payments "
|
677 |
+
"(recurring subscription, if any) will be cancelled when the membership "
|
678 |
+
"expires."
|
679 |
msgstr ""
|
680 |
+
"Nastavte dobu trvání přístupu ke členství. Vezměte na vědomí, že všechny "
|
681 |
+
"budoucí platby (opakující se předplatné, pokud existuje) budou zrušeny, "
|
682 |
+
"pokud členství vyprší."
|
683 |
|
684 |
+
#: adminpages/discountcodes.php:557 adminpages/discountcodes.php:525
|
685 |
+
#: adminpages/discountcodes.php:528 adminpages/discountcodes.php:556
|
686 |
msgid "Memberships Discount Codes"
|
687 |
+
msgstr "Slevové kódy členství"
|
688 |
|
689 |
+
#: adminpages/discountcodes.php:567 adminpages/discountcodes.php:535
|
690 |
+
#: adminpages/discountcodes.php:538 adminpages/discountcodes.php:566
|
691 |
msgid "Search Discount Codes"
|
692 |
+
msgstr "Hledat slevové kódy"
|
693 |
|
694 |
+
#: adminpages/discountcodes.php:570 adminpages/reports/login.php:81
|
695 |
+
#: adminpages/discountcodes.php:538 adminpages/discountcodes.php:541
|
696 |
+
#: adminpages/discountcodes.php:569
|
697 |
msgid "Search"
|
698 |
msgstr "Hledat"
|
699 |
|
700 |
+
#: adminpages/discountcodes.php:588 adminpages/discountcodes.php:549
|
701 |
+
#: adminpages/discountcodes.php:559 adminpages/discountcodes.php:587
|
702 |
msgid "Starts"
|
703 |
+
msgstr "Začíná"
|
704 |
+
|
705 |
+
#: adminpages/discountcodes.php:589 adminpages/memberslist.php:169
|
706 |
+
#: adminpages/reports/login.php:145 includes/profile.php:98
|
707 |
+
#: adminpages/discountcodes.php:550 adminpages/discountcodes.php:560
|
708 |
+
#: adminpages/discountcodes.php:588 adminpages/memberslist.php:121
|
709 |
+
#: adminpages/memberslist.php:159 includes/profile.php:118
|
710 |
+
#: includes/profile.php:120
|
711 |
msgid "Expires"
|
712 |
msgstr "Vyprší"
|
713 |
|
714 |
+
#: adminpages/discountcodes.php:591 adminpages/discountcodes.php:552
|
715 |
+
#: adminpages/discountcodes.php:562 adminpages/discountcodes.php:590
|
716 |
msgid "Levels"
|
717 |
msgstr "Úrovně"
|
718 |
|
719 |
+
#: adminpages/discountcodes.php:603 adminpages/discountcodes.php:570
|
720 |
+
#: adminpages/discountcodes.php:574 adminpages/discountcodes.php:602
|
721 |
msgid "Create your first discount code now"
|
722 |
+
msgstr "Nyní vytvořte Váš první slevový kód"
|
723 |
|
724 |
+
#: adminpages/discountcodes.php:603 adminpages/discountcodes.php:570
|
725 |
+
#: adminpages/discountcodes.php:574 adminpages/discountcodes.php:602
|
726 |
msgid ""
|
727 |
"Discount codes allow you to offer your memberships at discounted prices to "
|
728 |
"select customers."
|
729 |
msgstr ""
|
730 |
+
"Slevové kódy vám umožňují nabízet vaše členství vybraným zákazníkům za "
|
731 |
+
"zvýhodněné ceny."
|
732 |
+
|
733 |
+
#: adminpages/discountcodes.php:648 adminpages/membershiplevels.php:580
|
734 |
+
#: adminpages/orders.php:979 adminpages/discountcodes.php:614
|
735 |
+
#: adminpages/discountcodes.php:619 adminpages/discountcodes.php:647
|
736 |
+
#: adminpages/membershiplevels.php:564 adminpages/membershiplevels.php:570
|
737 |
+
#: adminpages/membershiplevels.php:572 adminpages/membershiplevels.php:599
|
738 |
+
#: adminpages/orders.php:658 adminpages/orders.php:961
|
739 |
msgid "edit"
|
740 |
msgstr "upravit"
|
741 |
|
742 |
+
#: adminpages/discountcodes.php:651 adminpages/discountcodes.php:617
|
743 |
+
#: adminpages/discountcodes.php:622 adminpages/discountcodes.php:650
|
744 |
#, php-format
|
745 |
msgid ""
|
746 |
"Are you sure you want to delete the %s discount code? The subscriptions for "
|
747 |
"existing users will not change, but new users will not be able to use this "
|
748 |
"code anymore."
|
749 |
msgstr ""
|
750 |
+
"Jste si jisti, že chcete smazat %s slevový kód? Předplatné se pro stávající "
|
751 |
+
"uživatele nezmění, ale noví uživatelé nebudou moci dále používat tento kód."
|
752 |
+
|
753 |
+
#: adminpages/discountcodes.php:651 adminpages/membershiplevels.php:580
|
754 |
+
#: adminpages/orders.php:985 adminpages/discountcodes.php:617
|
755 |
+
#: adminpages/discountcodes.php:622 adminpages/discountcodes.php:650
|
756 |
+
#: adminpages/membershiplevels.php:566 adminpages/membershiplevels.php:572
|
757 |
+
#: adminpages/membershiplevels.php:574 adminpages/membershiplevels.php:601
|
758 |
+
#: adminpages/orders.php:664 adminpages/orders.php:967
|
759 |
msgid "delete"
|
760 |
msgstr "smazat"
|
761 |
|
762 |
+
#: adminpages/emailsettings.php:69 includes/adminpages.php:50
|
763 |
+
#: includes/adminpages.php:128 adminpages/emailsettings.php:60
|
764 |
+
#: includes/adminpages.php:12 includes/adminpages.php:59
|
765 |
+
#: includes/adminpages.php:121
|
766 |
msgid "Email Settings"
|
767 |
msgstr "Nastavení e-mailu"
|
768 |
|
769 |
+
#: adminpages/emailsettings.php:70 adminpages/emailsettings.php:61
|
770 |
msgid ""
|
771 |
"By default, system generated emails are sent from "
|
772 |
"<em><strong>wordpress@yourdomain.com</strong></em>. You can update this from "
|
773 |
"address using the fields below."
|
774 |
msgstr ""
|
775 |
+
"Ve výchozím nastavení jsou systémem generovené e-maily odesílány z "
|
776 |
+
"<em><strong>wordpress@yourdomain.com</strong></em>. Můžete tuto adresu "
|
777 |
+
"aktualizovat pomocí níže uvedených polí."
|
778 |
|
779 |
+
#: adminpages/emailsettings.php:72 adminpages/emailsettings.php:63
|
780 |
msgid ""
|
781 |
"To modify the appearance of system generated emails, add the files "
|
782 |
"<em>email_header.html</em> and <em>email_footer.html</em> to your theme's "
|
787 |
"learn more about Paid Memberships Pro emails</a>."
|
788 |
msgstr ""
|
789 |
"Chcete-li změnit vzhled systémem generovaných e-mailů, přidejte soubory "
|
790 |
+
"<em>email_header.html</em> a <em>email_footer.html</em> do adresáře vašeho "
|
791 |
+
"motivu. To bude měnit jak výchozí zprávy WordPressu, tak i zprávy generované "
|
792 |
+
"Paid Memberships Pro. <a title=\"Paid Memberships Pro - Member Communications"
|
793 |
+
"\" target=\"_blank\" href=\"http://www.paidmembershipspro.com/documentation/"
|
794 |
+
"member-communications/\">Klikněte zde a dozvíte se více o e-mailech Paid "
|
795 |
+
"Memberships Pro</a>."
|
796 |
+
|
797 |
+
#: adminpages/emailsettings.php:78 adminpages/emailsettings.php:69
|
798 |
msgid "From Email"
|
799 |
+
msgstr "E-mail odesílatele"
|
800 |
|
801 |
+
#: adminpages/emailsettings.php:86 adminpages/emailsettings.php:77
|
802 |
msgid "From Name"
|
803 |
+
msgstr "Jméno odesílatele"
|
804 |
+
|
805 |
+
#: adminpages/emailsettings.php:94
|
806 |
+
msgid "Only Filter PMPro Emails?"
|
807 |
+
msgstr "Filtrovat jen PMPro e-maily?"
|
808 |
|
809 |
+
#: adminpages/emailsettings.php:98
|
810 |
+
msgid "If unchecked, all emails from \"WordPress <"
|
811 |
+
msgstr "Není-li zatrhnuto, všechny e-maily od \"WordPress <"
|
812 |
+
|
813 |
+
#: adminpages/emailsettings.php:115 adminpages/emailsettings.php:86
|
814 |
+
#: adminpages/emailsettings.php:104
|
815 |
msgid "Send the site admin emails"
|
816 |
+
msgstr "Odeslat e-maily správci webu"
|
817 |
|
818 |
+
#: adminpages/emailsettings.php:121 adminpages/emailsettings.php:92
|
819 |
+
#: adminpages/emailsettings.php:110
|
820 |
msgid "Checkout"
|
821 |
msgstr "Pokladna"
|
822 |
|
823 |
+
#: adminpages/emailsettings.php:125 adminpages/emailsettings.php:96
|
824 |
+
#: adminpages/emailsettings.php:114
|
825 |
msgid "when a member checks out."
|
826 |
+
msgstr "když člen zaplatí."
|
827 |
|
828 |
+
#: adminpages/emailsettings.php:130 adminpages/emailsettings.php:101
|
829 |
+
#: adminpages/emailsettings.php:119
|
830 |
msgid "Admin Changes"
|
831 |
msgstr "Změny správce"
|
832 |
|
833 |
+
#: adminpages/emailsettings.php:134 adminpages/emailsettings.php:105
|
834 |
+
#: adminpages/emailsettings.php:123
|
835 |
msgid "when an admin changes a user's membership level through the dashboard."
|
836 |
+
msgstr "když správce změní úrověň členství uživatelů pomocí nástěnky."
|
837 |
|
838 |
+
#: adminpages/emailsettings.php:139 adminpages/emailsettings.php:110
|
839 |
+
#: adminpages/emailsettings.php:128
|
840 |
msgid "Cancellation"
|
841 |
msgstr "Zrušení."
|
842 |
|
843 |
+
#: adminpages/emailsettings.php:143 adminpages/emailsettings.php:114
|
844 |
+
#: adminpages/emailsettings.php:132
|
845 |
msgid "when a user cancels his or her account."
|
846 |
msgstr "když uživatel zruší svůj účet."
|
847 |
|
848 |
+
#: adminpages/emailsettings.php:148 adminpages/emailsettings.php:119
|
849 |
+
#: adminpages/emailsettings.php:137
|
850 |
msgid "Bill Updates"
|
851 |
+
msgstr "Aktualizace údajů"
|
852 |
|
853 |
+
#: adminpages/emailsettings.php:152 adminpages/emailsettings.php:123
|
854 |
+
#: adminpages/emailsettings.php:141
|
855 |
msgid "when a user updates his or her billing information."
|
856 |
+
msgstr "když uživatel aktualizuje svoje fakturační údaje."
|
857 |
|
858 |
+
#: adminpages/emailsettings.php:158 adminpages/emailsettings.php:129
|
859 |
+
#: adminpages/emailsettings.php:147
|
860 |
msgid "Send members emails"
|
861 |
+
msgstr "Odeslat e-maily uživatelům"
|
862 |
|
863 |
+
#: adminpages/emailsettings.php:164 adminpages/emailsettings.php:135
|
864 |
+
#: adminpages/emailsettings.php:153
|
865 |
msgid "New Users"
|
866 |
msgstr "Noví uživatelé"
|
867 |
|
868 |
+
#: adminpages/emailsettings.php:168 adminpages/emailsettings.php:139
|
869 |
+
#: adminpages/emailsettings.php:157
|
870 |
msgid ""
|
871 |
"Default WP notification email. (Recommended: Leave unchecked. Members will "
|
872 |
"still get an email confirmation from PMPro after checkout.)"
|
873 |
msgstr ""
|
874 |
+
"Výchozí e-mail upozornění WP. (Doporučeno: Nechte zaškrtnuté. Členové i tak "
|
875 |
+
"dostanou e-mailové potvrzení od PMPro po zaplacení.)"
|
876 |
|
877 |
#: adminpages/membershiplevels.php:118
|
878 |
msgid "Membership level updated successfully."
|
879 |
+
msgstr "Úroveň členství úspěšně aktualizována."
|
880 |
|
881 |
#: adminpages/membershiplevels.php:124
|
882 |
msgid "Error updating membership level."
|
883 |
+
msgstr "Chyba při aktualizaci úrovně členství."
|
884 |
|
885 |
#: adminpages/membershiplevels.php:141
|
886 |
msgid "Membership level added successfully."
|
887 |
+
msgstr "Úroveň členství úspěšně přidána."
|
888 |
|
889 |
#: adminpages/membershiplevels.php:146
|
890 |
msgid "Error adding membership level."
|
891 |
+
msgstr "Chyba při přidávání úrovně členství."
|
892 |
|
893 |
+
#: adminpages/membershiplevels.php:181 adminpages/membershiplevels.php:179
|
894 |
#, php-format
|
895 |
msgid ""
|
896 |
"There was an error canceling the subscription for user with ID=%d. You will "
|
897 |
"want to check your payment gateway to see if their subscription is still "
|
898 |
"active."
|
899 |
msgstr ""
|
900 |
+
"Došlo k chybě při zrušení odběru pro uživatele s ID=%d. Pro zjištění, zda je "
|
901 |
+
"jeho předplatné stále aktivní, budete muset zkontrolovat platební bránu."
|
902 |
|
903 |
+
#: adminpages/membershiplevels.php:184 adminpages/membershiplevels.php:182
|
904 |
msgid "Last Invoice"
|
905 |
+
msgstr "Poslední vyúčtování"
|
906 |
|
907 |
+
#: adminpages/membershiplevels.php:198 adminpages/membershiplevels.php:196
|
908 |
msgid "Membership level deleted successfully."
|
909 |
+
msgstr "Úroveň členství byla úspěšně odstraněna."
|
910 |
|
911 |
+
#: adminpages/membershiplevels.php:203 adminpages/membershiplevels.php:209
|
912 |
#: adminpages/membershiplevels.php:201 adminpages/membershiplevels.php:207
|
913 |
msgid "Error deleting membership level."
|
914 |
+
msgstr "Chyba při odstraňování úrovně členství."
|
915 |
|
916 |
+
#: adminpages/membershiplevels.php:224 adminpages/membershiplevels.php:222
|
917 |
msgid "Edit Membership Level"
|
918 |
+
msgstr "Upravit úroveň členství"
|
919 |
|
920 |
+
#: adminpages/membershiplevels.php:226 adminpages/membershiplevels.php:224
|
921 |
msgid "Add New Membership Level"
|
922 |
+
msgstr "Přidat novou úroveň členství"
|
923 |
|
924 |
+
#: adminpages/membershiplevels.php:293 adminpages/membershiplevels.php:542
|
925 |
+
#: adminpages/reports/login.php:142 adminpages/membershiplevels.php:291
|
926 |
+
#: adminpages/membershiplevels.php:506 adminpages/membershiplevels.php:512
|
927 |
+
#: adminpages/membershiplevels.php:514 adminpages/membershiplevels.php:541
|
928 |
msgid "Name"
|
929 |
msgstr "Jméno"
|
930 |
|
931 |
+
#: adminpages/membershiplevels.php:298 adminpages/membershiplevels.php:296
|
932 |
msgid "Description"
|
933 |
msgstr "Popis"
|
934 |
|
935 |
+
#: adminpages/membershiplevels.php:316 adminpages/membershiplevels.php:314
|
936 |
msgid "Confirmation Message"
|
937 |
msgstr "Potvrzovací zpráva"
|
938 |
|
939 |
+
#: adminpages/membershiplevels.php:335 adminpages/membershiplevels.php:543
|
940 |
#: adminpages/membershiplevels.php:333
|
941 |
msgid "Billing Details"
|
942 |
+
msgstr "Fakturační údaje"
|
|
|
|
|
|
|
|
|
943 |
|
944 |
+
#: adminpages/membershiplevels.php:370
|
945 |
+
#: classes/gateways/class.pmprogateway_stripe.php:619
|
946 |
+
#: adminpages/membershiplevels.php:349 adminpages/membershiplevels.php:351
|
947 |
msgid "per"
|
948 |
msgstr "na"
|
949 |
|
950 |
+
#: adminpages/membershiplevels.php:385 adminpages/membershiplevels.php:366
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
951 |
msgid ""
|
952 |
+
"Stripe integration currently only supports billing periods of \"Week\", "
|
953 |
+
"\"Month\" or \"Year\"."
|
954 |
msgstr ""
|
955 |
+
"Integrace Stripe v současné době podporuje pouze fakturační období \"Week\", "
|
956 |
+
"\"Month\" nebo \"Year\"."
|
957 |
|
958 |
+
#: adminpages/membershiplevels.php:387 adminpages/membershiplevels.php:366
|
959 |
+
#: adminpages/membershiplevels.php:368
|
960 |
msgid ""
|
961 |
"Braintree integration currently only supports billing periods of \"Month\" "
|
962 |
"or \"Year\"."
|
963 |
msgstr ""
|
964 |
+
"Integrace Braintree v současné době podporuje pouze fakturační období \"Month"
|
965 |
+
"\" nebo \"Year\"."
|
966 |
|
967 |
+
#: adminpages/membershiplevels.php:389 adminpages/membershiplevels.php:368
|
968 |
+
#: adminpages/membershiplevels.php:370
|
969 |
msgid ""
|
970 |
"Payflow integration currently only supports billing frequencies of 1 and "
|
971 |
"billing periods of \"Week\", \"Month\" or \"Year\"."
|
972 |
msgstr ""
|
973 |
+
"Integrace Payflow v současné době podporuje pouze frekvenci fakturace 1 a "
|
974 |
+
"fakturační období \"Week\", \"Month\" nebo \"Year\"."
|
975 |
|
976 |
+
#: adminpages/membershiplevels.php:393 adminpages/membershiplevels.php:372
|
977 |
+
#: adminpages/membershiplevels.php:374
|
978 |
msgid ""
|
979 |
"After saving this level, make note of the ID and create a \"Plan\" in your "
|
980 |
"Braintree dashboard with the same settings and the \"Plan ID\" set to "
|
981 |
"<em>pmpro_#</em>, where # is the level ID."
|
982 |
msgstr ""
|
983 |
"Po uložení této úrovně si poznamenejte ID a vytvořte \"Plan\" ve vašem "
|
984 |
+
"ovládacím panelu Braintree se stejným nastavením a \"Plan ID\" nastavte na "
|
985 |
"<em>pmpro_#</em>, kde # je úroveň ID."
|
986 |
|
987 |
+
#: adminpages/membershiplevels.php:393 adminpages/membershiplevels.php:395
|
988 |
+
#: classes/gateways/class.pmprogateway_cybersource.php:101
|
989 |
+
#: classes/gateways/class.pmprogateway_paypal.php:118
|
990 |
+
#: classes/gateways/class.pmprogateway_paypalexpress.php:123
|
991 |
+
#: classes/gateways/class.pmprogateway_paypalstandard.php:117
|
992 |
#: adminpages/membershiplevels.php:372 adminpages/membershiplevels.php:374
|
993 |
+
#: adminpages/membershiplevels.php:376 adminpages/paymentsettings.php:170
|
994 |
+
#: adminpages/paymentsettings.php:174 adminpages/paymentsettings.php:179
|
995 |
msgid "Note"
|
996 |
msgstr "Poznámka"
|
997 |
|
998 |
+
#: adminpages/membershiplevels.php:395 adminpages/membershiplevels.php:374
|
999 |
+
#: adminpages/membershiplevels.php:376
|
1000 |
msgid ""
|
1001 |
"You will need to create a \"Plan\" in your Braintree dashboard with the same "
|
1002 |
"settings and the \"Plan ID\" set to"
|
1004 |
"Budete muset vytvořit \"Plan\" v Braintree nástěnce se stejným nastavením a "
|
1005 |
"\"Plan ID\" nastavit na"
|
1006 |
|
1007 |
+
#: adminpages/membershiplevels.php:407 adminpages/membershiplevels.php:386
|
1008 |
+
#: adminpages/membershiplevels.php:388
|
1009 |
msgid ""
|
1010 |
"Stripe integration currently does not support billing limits. You can still "
|
1011 |
"set an expiration date below."
|
1012 |
msgstr ""
|
1013 |
+
"Integrace Stripe v současné době nepodporuje fakturační limity. Přesto "
|
1014 |
+
"můžete nastavit datum vypršení platnosti níže."
|
1015 |
|
1016 |
+
#: adminpages/membershiplevels.php:419 adminpages/membershiplevels.php:398
|
1017 |
+
#: adminpages/membershiplevels.php:400
|
1018 |
msgid ""
|
1019 |
"2Checkout integration does not support custom trials. You can do one period "
|
1020 |
"trials by setting an initial payment different from the billing amount."
|
1021 |
msgstr ""
|
1022 |
+
"Integrace 2Checkout nepodporuje vlastní zkušební dobu. Můžete vytvořit "
|
1023 |
+
"jednorázové zkušební doby nastavením počáteční platby, která se liší od "
|
1024 |
+
"fakturované částky."
|
1025 |
|
1026 |
+
#: adminpages/membershiplevels.php:441 adminpages/membershiplevels.php:406
|
1027 |
+
#: adminpages/membershiplevels.php:412 adminpages/membershiplevels.php:414
|
1028 |
msgid ""
|
1029 |
"Stripe integration currently does not support trial amounts greater than $0."
|
1030 |
msgstr ""
|
1031 |
+
"Integrace Stripe v současné době nepodporuje částku zkušební doby vyšší než "
|
1032 |
+
"0 Kč."
|
1033 |
|
1034 |
+
#: adminpages/membershiplevels.php:445 adminpages/membershiplevels.php:410
|
1035 |
+
#: adminpages/membershiplevels.php:416 adminpages/membershiplevels.php:418
|
1036 |
msgid ""
|
1037 |
"Braintree integration currently does not support trial amounts greater than "
|
1038 |
"$0."
|
1039 |
msgstr ""
|
1040 |
+
"Integrace Braintree v současné době nepodporuje částku zkušební doby vyšší "
|
1041 |
+
"než 0 Kč."
|
1042 |
|
1043 |
+
#: adminpages/membershiplevels.php:449 adminpages/membershiplevels.php:414
|
1044 |
+
#: adminpages/membershiplevels.php:420 adminpages/membershiplevels.php:422
|
1045 |
msgid ""
|
1046 |
"Payflow integration currently does not support trial amounts greater than $0."
|
1047 |
msgstr ""
|
1048 |
+
"Integrace Payflow v současné době nepodporuje částku zkušební doby než 0 Kč."
|
1049 |
|
1050 |
+
#: adminpages/membershiplevels.php:458 adminpages/membershiplevels.php:422
|
1051 |
+
#: adminpages/membershiplevels.php:428 adminpages/membershiplevels.php:430
|
1052 |
+
#: adminpages/membershiplevels.php:457
|
1053 |
msgid "Other Settings"
|
1054 |
msgstr "Další nastavení"
|
1055 |
|
1056 |
+
#: adminpages/membershiplevels.php:462 adminpages/membershiplevels.php:426
|
1057 |
+
#: adminpages/membershiplevels.php:432 adminpages/membershiplevels.php:434
|
1058 |
+
#: adminpages/membershiplevels.php:461
|
1059 |
msgid "Disable New Signups"
|
1060 |
+
msgstr "Zakázat nové registrace"
|
1061 |
|
1062 |
+
#: adminpages/membershiplevels.php:463 adminpages/membershiplevels.php:427
|
1063 |
+
#: adminpages/membershiplevels.php:433 adminpages/membershiplevels.php:435
|
1064 |
+
#: adminpages/membershiplevels.php:462
|
1065 |
msgid ""
|
1066 |
"Check to hide this level from the membership levels page and disable "
|
1067 |
"registration."
|
1068 |
msgstr ""
|
1069 |
+
"Zatrhněte pro skrytí této úrovně ze stránky úrovně členství a zakázání "
|
1070 |
+
"registrace."
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1071 |
|
1072 |
+
#: adminpages/membershiplevels.php:493 adminpages/membershiplevels.php:457
|
1073 |
+
#: adminpages/membershiplevels.php:463 adminpages/membershiplevels.php:465
|
1074 |
+
#: adminpages/membershiplevels.php:492
|
1075 |
msgid "Content Settings"
|
1076 |
msgstr "Nastavení obsahu"
|
1077 |
|
1078 |
+
#: adminpages/membershiplevels.php:497 adminpages/membershiplevels.php:461
|
1079 |
+
#: adminpages/membershiplevels.php:467 adminpages/membershiplevels.php:469
|
1080 |
+
#: adminpages/membershiplevels.php:496
|
1081 |
msgid "Categories"
|
1082 |
msgstr "Kategorie"
|
1083 |
|
1084 |
+
#: adminpages/membershiplevels.php:526 adminpages/membershiplevels.php:490
|
1085 |
+
#: adminpages/membershiplevels.php:496 adminpages/membershiplevels.php:498
|
1086 |
+
#: adminpages/membershiplevels.php:525
|
1087 |
msgid "Add New Level"
|
1088 |
msgstr "Vložit novou úroveň"
|
1089 |
|
1090 |
+
#: adminpages/membershiplevels.php:529 adminpages/membershiplevels.php:532
|
1091 |
#: adminpages/membershiplevels.php:493 adminpages/membershiplevels.php:496
|
1092 |
+
#: adminpages/membershiplevels.php:499 adminpages/membershiplevels.php:501
|
1093 |
+
#: adminpages/membershiplevels.php:502 adminpages/membershiplevels.php:504
|
1094 |
+
#: adminpages/membershiplevels.php:528 adminpages/membershiplevels.php:531
|
1095 |
msgid "Search Levels"
|
1096 |
msgstr "Najít úrovně"
|
1097 |
|
1098 |
+
#: adminpages/membershiplevels.php:544 pages/account.php:20
|
1099 |
+
#: pages/cancel.php:53 pages/confirmation.php:83 pages/invoice.php:70
|
1100 |
+
#: adminpages/membershiplevels.php:510 adminpages/membershiplevels.php:516
|
1101 |
+
#: adminpages/membershiplevels.php:518 adminpages/membershiplevels.php:545
|
|
|
|
|
|
|
|
|
|
|
|
|
1102 |
#: pages/confirmation.php:81 pages/invoice.php:68
|
1103 |
msgid "Expiration"
|
1104 |
msgstr "Vypršení"
|
1105 |
|
1106 |
+
#: adminpages/membershiplevels.php:545 adminpages/membershiplevels.php:511
|
1107 |
+
#: adminpages/membershiplevels.php:517 adminpages/membershiplevels.php:519
|
1108 |
+
#: adminpages/membershiplevels.php:546
|
1109 |
msgid "Allow Signups"
|
1110 |
msgstr "Povolit registraci"
|
1111 |
|
1112 |
+
#: adminpages/membershiplevels.php:566 adminpages/membershiplevels.php:534
|
1113 |
+
#: adminpages/membershiplevels.php:540 adminpages/membershiplevels.php:542
|
1114 |
+
#: adminpages/membershiplevels.php:569
|
1115 |
msgid "FREE"
|
1116 |
msgstr "ZDARMA"
|
1117 |
|
1118 |
+
#: adminpages/membershiplevels.php:575 adminpages/membershiplevels.php:560
|
1119 |
+
#: adminpages/membershiplevels.php:566 adminpages/membershiplevels.php:568
|
1120 |
+
#: adminpages/membershiplevels.php:595
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1121 |
msgid "After"
|
1122 |
msgstr "Po"
|
1123 |
|
1124 |
+
#: adminpages/membershiplevels.php:580 adminpages/membershiplevels.php:566
|
1125 |
+
#: adminpages/membershiplevels.php:572 adminpages/membershiplevels.php:574
|
1126 |
+
#: adminpages/membershiplevels.php:601
|
|
|
|
|
|
|
1127 |
#, php-format
|
1128 |
msgid ""
|
1129 |
"Are you sure you want to delete membership level %s? All subscriptions will "
|
1130 |
"be cancelled."
|
1131 |
msgstr ""
|
1132 |
+
"Jste si jisti, že chcete odstranit úroveň členství %s? Všechna předplatné "
|
1133 |
+
"budou zrušena."
|
1134 |
+
|
1135 |
+
#: adminpages/membershiplevels.php:580 adminpages/orders.php:982
|
1136 |
+
#: adminpages/membershiplevels.php:565 adminpages/membershiplevels.php:571
|
1137 |
+
#: adminpages/membershiplevels.php:573 adminpages/membershiplevels.php:600
|
1138 |
+
#: adminpages/orders.php:661 adminpages/orders.php:964
|
1139 |
+
msgid "copy"
|
1140 |
+
msgstr "kopírovat"
|
1141 |
|
1142 |
+
#: adminpages/memberslist.php:25 includes/adminpages.php:53
|
1143 |
+
#: includes/adminpages.php:149 includes/adminpages.php:15
|
1144 |
+
#: includes/adminpages.php:74 includes/adminpages.php:142
|
1145 |
msgid "Members List"
|
1146 |
msgstr "Seznam členů"
|
1147 |
|
1148 |
+
#: adminpages/memberslist.php:26 adminpages/orders.php:591
|
1149 |
+
#: adminpages/orders.php:522
|
1150 |
msgid "Export to CSV"
|
1151 |
+
msgstr "Exportovat do CSV"
|
1152 |
|
1153 |
+
#: adminpages/memberslist.php:30 adminpages/orders.php:603
|
1154 |
+
#: adminpages/reports/login.php:65 adminpages/reports/memberships.php:292
|
1155 |
+
#: adminpages/reports/sales.php:193 adminpages/reports/sales.php:185
|
1156 |
+
#: adminpages/reports/sales.php:194
|
1157 |
msgid "Show"
|
1158 |
msgstr "Ukaž"
|
1159 |
|
1160 |
#: adminpages/memberslist.php:32 adminpages/reports/login.php:67
|
1161 |
+
#: adminpages/reports/memberships.php:317 adminpages/reports/sales.php:216
|
1162 |
+
#: adminpages/reports/sales.php:208 adminpages/reports/sales.php:217
|
1163 |
msgid "All Levels"
|
1164 |
msgstr "Všechny úrovně"
|
1165 |
|
1166 |
+
#: adminpages/memberslist.php:42
|
1167 |
+
msgid "Cancelled Members"
|
1168 |
+
msgstr "Zrušení členové"
|
1169 |
+
|
1170 |
+
#: adminpages/memberslist.php:43
|
1171 |
+
msgid "Expired Members"
|
1172 |
+
msgstr "Expirovaní členové"
|
1173 |
+
|
1174 |
+
#: adminpages/memberslist.php:44 adminpages/memberslist.php:42
|
1175 |
+
msgid "Old Members"
|
1176 |
+
msgstr "Starší členové"
|
1177 |
+
|
1178 |
+
#: adminpages/memberslist.php:49 adminpages/memberslist.php:52
|
1179 |
+
#: adminpages/memberslist.php:46 adminpages/memberslist.php:47
|
1180 |
+
#: adminpages/memberslist.php:50
|
1181 |
msgid "Search Members"
|
1182 |
msgstr "Prohledat členy"
|
1183 |
|
1184 |
+
#: adminpages/memberslist.php:146 adminpages/memberslist.php:103
|
1185 |
+
#: adminpages/memberslist.php:136
|
1186 |
#, php-format
|
1187 |
msgid "%d members found."
|
1188 |
msgstr "%d členů nalezeno"
|
1189 |
|
1190 |
+
#: adminpages/memberslist.php:155 pages/account.php:76 pages/checkout.php:171
|
1191 |
+
#: adminpages/memberslist.php:112 adminpages/memberslist.php:145
|
1192 |
+
#: pages/account.php:51 pages/account.php:55 pages/checkout.php:168
|
1193 |
+
#: pages/checkout.php:173
|
1194 |
msgid "Username"
|
1195 |
msgstr "Uživatelské jméno"
|
1196 |
|
1197 |
+
#: adminpages/memberslist.php:156 adminpages/memberslist.php:113
|
1198 |
+
#: adminpages/memberslist.php:146
|
1199 |
msgid "First Name"
|
1200 |
msgstr "Jméno"
|
1201 |
|
1202 |
+
#: adminpages/memberslist.php:157 adminpages/memberslist.php:114
|
1203 |
+
#: adminpages/memberslist.php:147
|
1204 |
msgid "Last Name"
|
1205 |
msgstr "Příjmení"
|
1206 |
|
1207 |
+
#: adminpages/memberslist.php:160 pages/billing.php:62 pages/checkout.php:302
|
1208 |
+
#: pages/confirmation.php:61 pages/invoice.php:48
|
1209 |
+
#: adminpages/memberslist.php:117 adminpages/memberslist.php:150
|
1210 |
+
#: pages/account.php:90 pages/account.php:94 pages/billing.php:58
|
1211 |
+
#: pages/checkout.php:298 pages/checkout.php:300 pages/checkout.php:314
|
1212 |
+
#: pages/checkout.php:321 pages/confirmation.php:59 pages/invoice.php:46
|
1213 |
msgid "Billing Address"
|
1214 |
msgstr "Fakturační adresa"
|
1215 |
|
1216 |
+
#: adminpages/memberslist.php:161 adminpages/reports/login.php:143
|
1217 |
+
#: classes/gateways/class.pmprogateway_authorizenet.php:303
|
1218 |
+
#: adminpages/memberslist.php:118 adminpages/memberslist.php:151
|
1219 |
+
#: adminpages/pagesettings.php:51
|
1220 |
#: classes/gateways/class.pmprogateway_authorizenet.php:187
|
1221 |
msgid "Membership"
|
1222 |
msgstr "Členství"
|
1223 |
|
1224 |
+
#: adminpages/memberslist.php:162 adminpages/memberslist.php:119
|
1225 |
+
#: adminpages/memberslist.php:152
|
1226 |
msgid "Fee"
|
1227 |
+
msgstr "Poplatek"
|
1228 |
|
1229 |
+
#: adminpages/memberslist.php:163 adminpages/reports/login.php:144
|
1230 |
+
#: adminpages/memberslist.php:120 adminpages/memberslist.php:153
|
1231 |
msgid "Joined"
|
1232 |
+
msgstr "Přidal se"
|
1233 |
|
1234 |
+
#: adminpages/memberslist.php:167 adminpages/memberslist.php:157
|
1235 |
+
msgid "Ended"
|
1236 |
+
msgstr "Ukončil"
|
1237 |
|
1238 |
+
#: adminpages/memberslist.php:251 adminpages/reports/login.php:210
|
1239 |
+
#: adminpages/memberslist.php:195 adminpages/memberslist.php:223
|
1240 |
msgid "No members found."
|
1241 |
+
msgstr "Žádní členové nebyli nalezeni"
|
1242 |
|
1243 |
+
#: adminpages/memberslist.php:251 adminpages/reports/login.php:210
|
1244 |
+
#: adminpages/memberslist.php:195 adminpages/memberslist.php:223
|
1245 |
msgid "Search all levels"
|
1246 |
msgstr "Prohledat všechny úrovně"
|
1247 |
|
1248 |
+
#: adminpages/orders.php:67 adminpages/orders.php:26
|
1249 |
msgid "Order deleted successfully."
|
1250 |
+
msgstr "Objednávka byla úspěšně odstraněna."
|
1251 |
|
1252 |
+
#: adminpages/orders.php:72 adminpages/orders.php:31
|
1253 |
msgid "Error deleting order."
|
1254 |
+
msgstr "Chyba při odstraňování objednávky."
|
1255 |
|
1256 |
+
#: adminpages/orders.php:169 adminpages/orders.php:119
|
1257 |
msgid "Order saved successfully."
|
1258 |
+
msgstr "Objednávka byla úspěšně uložena."
|
1259 |
|
1260 |
+
#: adminpages/orders.php:174 adminpages/orders.php:124
|
1261 |
msgid "Error updating order timestamp."
|
1262 |
+
msgstr "Chyba při aktualizaci časového razítka objednávky."
|
1263 |
|
1264 |
+
#: adminpages/orders.php:180 adminpages/orders.php:130
|
1265 |
msgid "Error saving order."
|
1266 |
+
msgstr "Chyba při ukládání objednávky."
|
1267 |
|
1268 |
+
#: adminpages/orders.php:245 adminpages/orders.php:195
|
1269 |
msgid "Order"
|
1270 |
msgstr "Objednávka"
|
1271 |
|
1272 |
+
#: adminpages/orders.php:247 adminpages/orders.php:197
|
1273 |
msgid "New Order"
|
1274 |
msgstr "Nová objednávka"
|
1275 |
|
1276 |
+
#: adminpages/orders.php:270 adminpages/orders.php:220
|
1277 |
msgid "Randomly generated for you."
|
1278 |
+
msgstr "Náhodně generované pro vás."
|
1279 |
|
1280 |
+
#: adminpages/orders.php:275 adminpages/orders.php:225
|
1281 |
msgid "User ID"
|
1282 |
msgstr "Uživatelské ID"
|
1283 |
|
1284 |
+
#: adminpages/orders.php:284 adminpages/orders.php:234
|
1285 |
msgid "Membership Level ID"
|
1286 |
msgstr "ID členské úrovně"
|
1287 |
|
1288 |
+
#: adminpages/orders.php:293 adminpages/orders.php:243
|
1289 |
msgid "Billing Name"
|
1290 |
+
msgstr "Fakturační jméno"
|
1291 |
|
1292 |
+
#: adminpages/orders.php:301 adminpages/orders.php:251
|
1293 |
msgid "Billing Street"
|
1294 |
msgstr "Fakturační ulice"
|
1295 |
|
1296 |
+
#: adminpages/orders.php:308 adminpages/orders.php:258
|
1297 |
msgid "Billing City"
|
1298 |
msgstr "Fakturační město"
|
1299 |
|
1300 |
+
#: adminpages/orders.php:315 adminpages/orders.php:265
|
1301 |
msgid "Billing State"
|
1302 |
+
msgstr "Fakturační kraj"
|
1303 |
|
1304 |
+
#: adminpages/orders.php:322 adminpages/orders.php:272
|
1305 |
msgid "Billing Postal Code"
|
1306 |
msgstr "Fakturační PSČ"
|
1307 |
|
1308 |
+
#: adminpages/orders.php:329 adminpages/orders.php:279
|
1309 |
msgid "Billing Country"
|
1310 |
msgstr "Fakturační země"
|
1311 |
|
1312 |
+
#: adminpages/orders.php:337 adminpages/orders.php:287
|
1313 |
msgid "Billing Phone"
|
1314 |
msgstr "Fakturační telefon"
|
1315 |
|
1316 |
+
#: adminpages/orders.php:346 adminpages/orders.php:296
|
1317 |
msgid "Sub Total"
|
1318 |
msgstr "Mezisoučet"
|
1319 |
|
1320 |
+
#: adminpages/orders.php:354 pages/invoice.php:80 adminpages/orders.php:304
|
1321 |
+
#: pages/invoice.php:78
|
1322 |
msgid "Tax"
|
1323 |
msgstr "Daň"
|
1324 |
|
1325 |
+
#: adminpages/orders.php:362 adminpages/orders.php:312
|
1326 |
msgid "Coupon Amount"
|
1327 |
+
msgstr "Sleva"
|
1328 |
|
1329 |
+
#: adminpages/orders.php:370 adminpages/orders.php:905 pages/invoice.php:84
|
1330 |
+
#: adminpages/orders.php:320 adminpages/orders.php:602 pages/invoice.php:82
|
1331 |
msgid "Total"
|
1332 |
msgstr "Celkem"
|
1333 |
|
1334 |
+
#: adminpages/orders.php:375 adminpages/orders.php:325
|
1335 |
msgid "Should be subtotal + tax - couponamount."
|
1336 |
+
msgstr "Částka by měla obsahovat mezisoučet + daň - sleva."
|
1337 |
|
1338 |
+
#: adminpages/orders.php:380 adminpages/orders.php:330
|
1339 |
msgid "Payment Type"
|
1340 |
msgstr "Typ platby"
|
1341 |
|
1342 |
+
#: adminpages/orders.php:385 adminpages/orders.php:335
|
1343 |
msgid "e.g. PayPal Express, PayPal Standard, Credit Card."
|
1344 |
+
msgstr "např. PayPal Express, PayPal Standard, platební karta."
|
1345 |
|
1346 |
+
#: adminpages/orders.php:389
|
1347 |
+
#: classes/gateways/class.pmprogateway_braintree.php:291
|
1348 |
+
#: classes/gateways/class.pmprogateway_stripe.php:408 pages/billing.php:238
|
1349 |
+
#: pages/checkout.php:507 adminpages/orders.php:339 pages/billing.php:234
|
1350 |
+
#: pages/checkout.php:493 pages/checkout.php:510 pages/checkout.php:517
|
1351 |
msgid "Card Type"
|
1352 |
msgstr "Typ karty"
|
1353 |
|
1354 |
+
#: adminpages/orders.php:394 adminpages/orders.php:344
|
1355 |
msgid "e.g. Visa, MasterCard, AMEX, etc"
|
1356 |
msgstr "Například Visa, MasterCard, AMEX, atd."
|
1357 |
|
1358 |
+
#: adminpages/orders.php:398
|
1359 |
+
#: classes/gateways/class.pmprogateway_twocheckout.php:129
|
1360 |
#: adminpages/orders.php:348 adminpages/paymentsettings.php:347
|
1361 |
+
#: adminpages/paymentsettings.php:352
|
1362 |
msgid "Account Number"
|
1363 |
msgstr "Číslo účtu"
|
1364 |
|
1365 |
+
#: adminpages/orders.php:403 adminpages/orders.php:353
|
1366 |
msgid "Obscure all but last 4 digits."
|
1367 |
+
msgstr "Všechno skryté až na poslední 4 číslice."
|
1368 |
|
1369 |
+
#: adminpages/orders.php:408 adminpages/orders.php:358
|
1370 |
msgid "Expiration Month"
|
1371 |
+
msgstr "Měsíc expirace"
|
1372 |
|
1373 |
+
#: adminpages/orders.php:415 adminpages/orders.php:365
|
1374 |
msgid "Expiration Year"
|
1375 |
msgstr "Rok expirace"
|
1376 |
|
1377 |
+
#: adminpages/orders.php:423 adminpages/orders.php:909
|
1378 |
#: adminpages/orders.php:373 adminpages/orders.php:606
|
1379 |
msgid "Status"
|
1380 |
+
msgstr "Stav"
|
1381 |
|
1382 |
+
#: adminpages/orders.php:444 adminpages/orders.php:907
|
1383 |
#: adminpages/orders.php:394 adminpages/orders.php:604
|
1384 |
msgid "Gateway"
|
1385 |
msgstr "Brána"
|
1386 |
|
1387 |
+
#: adminpages/orders.php:462 adminpages/paymentsettings.php:124
|
1388 |
+
#: adminpages/orders.php:411 adminpages/orders.php:461
|
1389 |
+
#: adminpages/paymentsettings.php:175 adminpages/paymentsettings.php:179
|
1390 |
+
#: adminpages/paymentsettings.php:184
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1391 |
msgid "Gateway Environment"
|
1392 |
+
msgstr "Prostředí brány"
|
1393 |
|
1394 |
+
#: adminpages/orders.php:466 adminpages/paymentsettings.php:128
|
1395 |
+
#: adminpages/orders.php:415 adminpages/orders.php:465
|
1396 |
+
#: adminpages/paymentsettings.php:179 adminpages/paymentsettings.php:183
|
1397 |
+
#: adminpages/paymentsettings.php:188
|
1398 |
msgid "Sandbox/Testing"
|
1399 |
+
msgstr "Sandbox/testování"
|
1400 |
|
1401 |
+
#: adminpages/orders.php:467 adminpages/paymentsettings.php:129
|
1402 |
+
#: adminpages/orders.php:416 adminpages/orders.php:466
|
1403 |
+
#: adminpages/paymentsettings.php:180 adminpages/paymentsettings.php:184
|
1404 |
+
#: adminpages/paymentsettings.php:189
|
1405 |
msgid "Live/Production"
|
1406 |
+
msgstr "Ostré/produkční"
|
1407 |
|
1408 |
+
#: adminpages/orders.php:474 adminpages/orders.php:423
|
1409 |
+
#: adminpages/orders.php:473
|
1410 |
msgid "Payment Transaction ID"
|
1411 |
+
msgstr "ID platební transakce"
|
1412 |
|
1413 |
+
#: adminpages/orders.php:479 adminpages/orders.php:428
|
1414 |
+
#: adminpages/orders.php:478
|
1415 |
msgid "Generated by the gateway. Useful to cross reference orders."
|
1416 |
+
msgstr "Generováno platební bránou. Užitečné pro spárování objednávek."
|
1417 |
|
1418 |
+
#: adminpages/orders.php:483 adminpages/orders.php:432
|
1419 |
+
#: adminpages/orders.php:482
|
1420 |
msgid "Subscription Transaction ID"
|
1421 |
+
msgstr "ID transakce předplatného"
|
1422 |
|
1423 |
+
#: adminpages/orders.php:488 adminpages/orders.php:437
|
1424 |
+
#: adminpages/orders.php:487
|
1425 |
msgid "Generated by the gateway. Useful to cross reference subscriptions."
|
1426 |
+
msgstr "Generováno platební bránou. Užitečné pro spárování předplatného."
|
1427 |
|
1428 |
+
#: adminpages/orders.php:493 adminpages/orders.php:910 pages/account.php:91
|
1429 |
+
#: pages/invoice.php:107 adminpages/orders.php:442 adminpages/orders.php:492
|
1430 |
+
#: adminpages/orders.php:607 pages/invoice.php:105
|
1431 |
msgid "Date"
|
1432 |
msgstr "Datum"
|
1433 |
|
1434 |
+
#: adminpages/orders.php:527 adminpages/orders.php:477
|
1435 |
msgid "Affiliate ID"
|
1436 |
msgstr "Partnerské ID"
|
1437 |
|
1438 |
+
#: adminpages/orders.php:535 adminpages/orders.php:485
|
1439 |
msgid "Affiliate SubID"
|
1440 |
+
msgstr "Partnerské SubID"
|
1441 |
|
1442 |
+
#: adminpages/orders.php:545 adminpages/orders.php:495
|
1443 |
msgid "Notes"
|
1444 |
msgstr "Poznámky"
|
1445 |
|
1446 |
+
#: adminpages/orders.php:560 adminpages/orders.php:510
|
1447 |
msgid "Save Order"
|
1448 |
+
msgstr "Uložit objednávku"
|
1449 |
|
1450 |
+
#: adminpages/orders.php:561 pages/account.php:44 pages/billing.php:330
|
1451 |
+
#: pages/cancel.php:71 adminpages/orders.php:511 pages/billing.php:295
|
1452 |
+
#: pages/billing.php:299
|
1453 |
msgid "Cancel"
|
1454 |
msgstr "Zrušit"
|
1455 |
|
1456 |
+
#: adminpages/orders.php:570 includes/adminpages.php:55
|
1457 |
+
#: includes/adminpages.php:163 adminpages/orders.php:520
|
1458 |
+
#: includes/adminpages.php:17 includes/adminpages.php:84
|
1459 |
+
#: includes/adminpages.php:156
|
1460 |
msgid "Orders"
|
1461 |
msgstr "Objednávky"
|
1462 |
|
1463 |
+
#: adminpages/orders.php:571 adminpages/orders.php:521
|
1464 |
msgid "Add New Order"
|
1465 |
msgstr "Vložit novou objednávku"
|
1466 |
|
1467 |
+
#: adminpages/orders.php:605
|
1468 |
+
msgid "All"
|
1469 |
+
msgstr "Vše"
|
1470 |
+
|
1471 |
+
#: adminpages/orders.php:606
|
1472 |
+
msgid "Within a Date Range"
|
1473 |
+
msgstr "V časovém období"
|
1474 |
+
|
1475 |
+
#: adminpages/orders.php:607
|
1476 |
+
msgid "Predefined Date Range"
|
1477 |
+
msgstr "Předdefinované období"
|
1478 |
+
|
1479 |
+
#: adminpages/orders.php:608
|
1480 |
+
msgid "Within a Level"
|
1481 |
+
msgstr "V rámci úrovně"
|
1482 |
+
|
1483 |
+
#: adminpages/orders.php:609
|
1484 |
+
msgid "Within a Status"
|
1485 |
+
msgstr "V rámci stavu"
|
1486 |
+
|
1487 |
+
#: adminpages/orders.php:612
|
1488 |
+
msgid "From"
|
1489 |
+
msgstr "Od"
|
1490 |
+
|
1491 |
+
#: adminpages/orders.php:624
|
1492 |
+
msgid "To"
|
1493 |
+
msgstr "Do"
|
1494 |
+
|
1495 |
+
#: adminpages/orders.php:636
|
1496 |
+
msgid "filter by "
|
1497 |
+
msgstr "filtrovat podle"
|
1498 |
+
|
1499 |
+
#: adminpages/orders.php:674
|
1500 |
+
msgid "Filter"
|
1501 |
+
msgstr "Filtrovat"
|
1502 |
+
|
1503 |
+
#: adminpages/orders.php:777 adminpages/orders.php:780
|
1504 |
#: adminpages/orders.php:535 adminpages/orders.php:538
|
1505 |
msgid "Search Orders"
|
1506 |
+
msgstr "Hledat objednávky"
|
1507 |
|
1508 |
+
#: adminpages/orders.php:893 adminpages/orders.php:590
|
1509 |
#, php-format
|
1510 |
msgid "%d orders found."
|
1511 |
msgstr "%d objednávek nalezeno."
|
1512 |
|
1513 |
+
#: adminpages/orders.php:902 adminpages/reports/login.php:141
|
1514 |
+
#: classes/gateways/class.pmprogateway_payflowpro.php:116
|
1515 |
+
#: adminpages/orders.php:599 adminpages/paymentsettings.php:211
|
1516 |
+
#: adminpages/paymentsettings.php:215 adminpages/paymentsettings.php:220
|
1517 |
msgid "User"
|
1518 |
msgstr "Uživatel"
|
1519 |
|
1520 |
+
#: adminpages/orders.php:904 includes/init.php:218 includes/profile.php:27
|
1521 |
+
#: pages/checkout.php:33 pages/confirmation.php:47 pages/confirmation.php:64
|
1522 |
#: pages/confirmation.php:105 pages/invoice.php:28 pages/invoice.php:51
|
1523 |
+
#: adminpages/orders.php:601 includes/init.php:214 includes/init.php:217
|
1524 |
+
#: includes/profile.php:25 pages/checkout.php:34 pages/checkout.php:35
|
1525 |
+
#: pages/confirmation.php:46 pages/confirmation.php:62
|
1526 |
+
#: pages/confirmation.php:103 pages/invoice.php:27 pages/invoice.php:49
|
1527 |
msgid "Membership Level"
|
1528 |
msgstr "Úroveň členství"
|
1529 |
|
1530 |
+
#: adminpages/orders.php:906 adminpages/orders.php:972
|
1531 |
#: adminpages/orders.php:603 adminpages/orders.php:651
|
1532 |
+
#: adminpages/orders.php:954
|
1533 |
msgid "Payment"
|
1534 |
msgstr "Platba"
|
1535 |
|
1536 |
+
#: adminpages/orders.php:908 adminpages/orders.php:605
|
1537 |
msgid "Transaction IDs"
|
1538 |
+
msgstr "ID transakce"
|
1539 |
|
1540 |
+
#: adminpages/orders.php:933 adminpages/orders.php:630
|
1541 |
msgid "deleted"
|
1542 |
msgstr "smazáno"
|
1543 |
|
1544 |
+
#: adminpages/orders.php:974 adminpages/orders.php:653
|
1545 |
+
#: adminpages/orders.php:956
|
1546 |
msgid "Subscription"
|
1547 |
msgstr "Předplatné"
|
1548 |
|
1549 |
+
#: adminpages/orders.php:985 adminpages/orders.php:664
|
1550 |
+
#: adminpages/orders.php:967
|
1551 |
#, php-format
|
1552 |
msgid ""
|
1553 |
"Deleting orders is permanent and can affect active users. Are you sure you "
|
1554 |
"want to delete order %s?"
|
1555 |
msgstr ""
|
1556 |
+
"Odstranění objednávek je trvalé a může mít vliv na aktivní uživatele. Jste "
|
1557 |
+
"si jisti, že chcete odstranit objednávku %s?"
|
1558 |
|
1559 |
+
#: adminpages/orders.php:995 adminpages/orders.php:674
|
1560 |
+
#: adminpages/orders.php:977
|
1561 |
msgid "No orders found."
|
1562 |
+
msgstr "Nebyly nalezeny žádné objednávky."
|
1563 |
+
|
1564 |
+
#: adminpages/pagesettings.php:51
|
1565 |
+
msgid "Membership Account"
|
1566 |
+
msgstr "Účet členství"
|
1567 |
+
|
1568 |
+
#: adminpages/pagesettings.php:54
|
1569 |
+
msgid "Membership Billing"
|
1570 |
+
msgstr "Fakturace členství"
|
1571 |
+
|
1572 |
+
#: adminpages/pagesettings.php:57
|
1573 |
+
msgid "Membership Cancel"
|
1574 |
+
msgstr "Zrušení členství"
|
1575 |
+
|
1576 |
+
#: adminpages/pagesettings.php:60
|
1577 |
+
msgid "Membership Checkout"
|
1578 |
+
msgstr "Platba členství"
|
1579 |
+
|
1580 |
+
#: adminpages/pagesettings.php:63
|
1581 |
+
msgid "Membership Confirmation"
|
1582 |
+
msgstr "Potvrzení členství"
|
1583 |
+
|
1584 |
+
#: adminpages/pagesettings.php:66
|
1585 |
+
msgid "Membership Invoice"
|
1586 |
+
msgstr "Vyúčtování členství"
|
1587 |
|
1588 |
+
#: adminpages/pagesettings.php:73
|
1589 |
+
#, php-format
|
1590 |
+
msgid "Membership %s"
|
1591 |
+
msgstr "Členství %s"
|
1592 |
+
|
1593 |
+
#: adminpages/pagesettings.php:111 adminpages/pagesettings.php:83
|
1594 |
msgid "The following pages have been created for you"
|
1595 |
+
msgstr "Následující stránky byly pro vás vytvořeny"
|
1596 |
|
1597 |
+
#: adminpages/pagesettings.php:126 adminpages/pagesettings.php:98
|
1598 |
msgid ""
|
1599 |
"Manage the WordPress pages assigned to each required Paid Memberships Pro "
|
1600 |
"page."
|
1601 |
msgstr ""
|
1602 |
+
"Spravovat WordPress stránky přiřazené ke každé vyžadované stránce "
|
1603 |
+
"Memberships Pro."
|
1604 |
|
1605 |
+
#: adminpages/pagesettings.php:132 adminpages/pagesettings.php:104
|
1606 |
msgid ""
|
1607 |
"Assign the WordPress pages for each required Paid Memberships Pro page or"
|
1608 |
+
msgstr ""
|
1609 |
+
"Přiřaďte Wordpress stránky ke každé požadované stránce Paid Memberships Pro "
|
1610 |
+
"nebo,"
|
1611 |
|
1612 |
+
#: adminpages/pagesettings.php:132 adminpages/pagesettings.php:104
|
1613 |
msgid "click here to let us generate them for you"
|
1614 |
+
msgstr "klikněte zde a my je vygenerujeme za vás"
|
1615 |
|
1616 |
+
#: adminpages/pagesettings.php:140 adminpages/pagesettings.php:112
|
1617 |
msgid "Account Page"
|
1618 |
msgstr "Stránka účtu"
|
1619 |
|
1620 |
+
#: adminpages/pagesettings.php:147 adminpages/pagesettings.php:162
|
1621 |
+
#: adminpages/pagesettings.php:177 adminpages/pagesettings.php:193
|
1622 |
+
#: adminpages/pagesettings.php:209 adminpages/pagesettings.php:225
|
1623 |
+
#: adminpages/pagesettings.php:241 adminpages/pagesettings.php:119
|
1624 |
+
#: adminpages/pagesettings.php:132 adminpages/pagesettings.php:134
|
1625 |
+
#: adminpages/pagesettings.php:145 adminpages/pagesettings.php:149
|
1626 |
+
#: adminpages/pagesettings.php:159 adminpages/pagesettings.php:165
|
1627 |
+
#: adminpages/pagesettings.php:173 adminpages/pagesettings.php:181
|
1628 |
+
#: adminpages/pagesettings.php:187 adminpages/pagesettings.php:197
|
1629 |
+
#: adminpages/pagesettings.php:201 adminpages/pagesettings.php:213
|
1630 |
msgid "edit page"
|
1631 |
msgstr "upravit stránku"
|
1632 |
|
1633 |
+
#: adminpages/pagesettings.php:149 adminpages/pagesettings.php:164
|
1634 |
+
#: adminpages/pagesettings.php:179 adminpages/pagesettings.php:195
|
1635 |
+
#: adminpages/pagesettings.php:211 adminpages/pagesettings.php:227
|
1636 |
+
#: adminpages/pagesettings.php:243 adminpages/pagesettings.php:121
|
1637 |
+
#: adminpages/pagesettings.php:136 adminpages/pagesettings.php:151
|
1638 |
+
#: adminpages/pagesettings.php:167 adminpages/pagesettings.php:183
|
1639 |
+
#: adminpages/pagesettings.php:199 adminpages/pagesettings.php:215
|
1640 |
msgid "view page"
|
1641 |
msgstr "zobrazit stránku"
|
1642 |
|
1643 |
+
#: adminpages/pagesettings.php:151 adminpages/pagesettings.php:166
|
1644 |
+
#: adminpages/pagesettings.php:181 adminpages/pagesettings.php:197
|
1645 |
+
#: adminpages/pagesettings.php:213 adminpages/pagesettings.php:229
|
1646 |
+
#: adminpages/pagesettings.php:245 adminpages/pagesettings.php:121
|
1647 |
+
#: adminpages/pagesettings.php:123 adminpages/pagesettings.php:134
|
1648 |
+
#: adminpages/pagesettings.php:138 adminpages/pagesettings.php:147
|
1649 |
+
#: adminpages/pagesettings.php:153 adminpages/pagesettings.php:161
|
1650 |
+
#: adminpages/pagesettings.php:169 adminpages/pagesettings.php:175
|
1651 |
+
#: adminpages/pagesettings.php:185 adminpages/pagesettings.php:189
|
1652 |
+
#: adminpages/pagesettings.php:201 adminpages/pagesettings.php:203
|
1653 |
+
#: adminpages/pagesettings.php:217
|
1654 |
msgid "Include the shortcode"
|
1655 |
msgstr "Vložit shortcode"
|
1656 |
|
1657 |
+
#: adminpages/pagesettings.php:155 adminpages/pagesettings.php:125
|
1658 |
+
#: adminpages/pagesettings.php:127
|
1659 |
msgid "Billing Information Page"
|
1660 |
msgstr "Stránka fakturačních údajů"
|
1661 |
|
1662 |
+
#: adminpages/pagesettings.php:170 adminpages/pagesettings.php:138
|
1663 |
+
#: adminpages/pagesettings.php:142
|
1664 |
msgid "Cancel Page"
|
1665 |
+
msgstr "Stránka zrušení"
|
1666 |
|
1667 |
+
#: adminpages/pagesettings.php:186 adminpages/pagesettings.php:152
|
1668 |
+
#: adminpages/pagesettings.php:158
|
1669 |
msgid "Checkout Page"
|
1670 |
+
msgstr "Stránka pokladny"
|
1671 |
|
1672 |
+
#: adminpages/pagesettings.php:202 adminpages/pagesettings.php:166
|
1673 |
+
#: adminpages/pagesettings.php:174
|
1674 |
msgid "Confirmation Page"
|
1675 |
+
msgstr "Stránka potvrzení"
|
1676 |
|
1677 |
+
#: adminpages/pagesettings.php:218 adminpages/pagesettings.php:180
|
1678 |
+
#: adminpages/pagesettings.php:190
|
1679 |
msgid "Invoice Page"
|
1680 |
+
msgstr "Stránka vyúčtování"
|
1681 |
|
1682 |
+
#: adminpages/pagesettings.php:234 adminpages/pagesettings.php:194
|
1683 |
+
#: adminpages/pagesettings.php:206
|
1684 |
msgid "Levels Page"
|
1685 |
msgstr "Stránka úrovní"
|
1686 |
|
1687 |
+
#: adminpages/paymentsettings.php:49 adminpages/paymentsettings.php:77
|
1688 |
+
#: adminpages/paymentsettings.php:82
|
1689 |
msgid "Your payment settings have been updated."
|
1690 |
+
msgstr "Vaše nastavení plateb bylo úspěšně aktualizováno."
|
1691 |
|
1692 |
+
#: adminpages/paymentsettings.php:93 adminpages/paymentsettings.php:106
|
1693 |
+
#: adminpages/paymentsettings.php:144 adminpages/paymentsettings.php:146
|
1694 |
+
#: adminpages/paymentsettings.php:152 adminpages/paymentsettings.php:154
|
1695 |
msgid "Payment Gateway"
|
1696 |
msgstr "Platební brána"
|
1697 |
|
1698 |
+
#: adminpages/paymentsettings.php:93 adminpages/paymentsettings.php:144
|
1699 |
+
#: adminpages/paymentsettings.php:146
|
1700 |
msgid "SSL Settings"
|
1701 |
msgstr "Nastavení SSL"
|
1702 |
|
1703 |
+
#: adminpages/paymentsettings.php:95 adminpages/paymentsettings.php:148
|
1704 |
msgid ""
|
1705 |
+
"Learn more about <a title=\"Paid Memberships Pro - SSL Settings\" target="
|
1706 |
+
"\"_blank\" href=\"http://www.paidmembershipspro.com/support/initial-plugin-"
|
1707 |
+
"setup/ssl/\">SSL</a> or <a title=\"Paid Memberships Pro - Payment Gateway "
|
1708 |
+
"Settings\" target=\"_blank\" href=\"http://www.paidmembershipspro.com/"
|
1709 |
+
"support/initial-plugin-setup/payment-gateway/\">Payment Gateway Settings</a>."
|
1710 |
msgstr ""
|
1711 |
+
"Více informací o <a title=\"Paid Memberships Pro - nastavení SSL\" target="
|
1712 |
+
"\"_blank\" href=\"http://www.paidmembershipspro.com/support/initial-plugin-"
|
1713 |
+
"setup/ssl/\">SSL</a> nebo <a title=\"Paid Memberships Pro - Nastavení "
|
1714 |
+
"platební brány\" target=\"_blank\" href=\"http://www.paidmembershipspro.com/"
|
1715 |
+
"support/initial-plugin-setup/payment-gateway/\">Nastavení platební brány</a>."
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1716 |
|
1717 |
+
#: adminpages/paymentsettings.php:153 adminpages/paymentsettings.php:327
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1718 |
#: adminpages/paymentsettings.php:337 adminpages/paymentsettings.php:356
|
1719 |
+
#: adminpages/paymentsettings.php:381 adminpages/paymentsettings.php:386
|
1720 |
msgid "Currency"
|
1721 |
msgstr "Měna"
|
1722 |
|
1723 |
+
#: adminpages/paymentsettings.php:169 adminpages/paymentsettings.php:400
|
1724 |
+
#: adminpages/paymentsettings.php:402
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1725 |
msgid ""
|
1726 |
+
"Not all currencies will be supported by every gateway. Please check with "
|
1727 |
+
"your gateway."
|
1728 |
msgstr ""
|
1729 |
+
"Ne všechny měny jsou podporovány každou platební branou. Prosíme, "
|
1730 |
+
"zkontrolujte si to u své platební brány."
|
|
|
|
|
|
|
|
|
1731 |
|
1732 |
+
#: adminpages/paymentsettings.php:174 adminpages/paymentsettings.php:375
|
1733 |
+
#: adminpages/paymentsettings.php:401 adminpages/paymentsettings.php:406
|
1734 |
+
#: adminpages/paymentsettings.php:408
|
1735 |
+
msgid "Accepted Credit Card Types"
|
1736 |
+
msgstr "Akceptujeme tyto platební karty"
|
|
|
|
|
1737 |
|
1738 |
+
#: adminpages/paymentsettings.php:188 adminpages/paymentsettings.php:398
|
1739 |
+
#: adminpages/paymentsettings.php:438 adminpages/paymentsettings.php:443
|
1740 |
+
#: adminpages/paymentsettings.php:445
|
1741 |
msgid "Sales Tax"
|
1742 |
+
msgstr "Daň z obratu"
|
1743 |
|
1744 |
+
#: adminpages/paymentsettings.php:188 pages/billing.php:82
|
1745 |
+
#: adminpages/paymentsettings.php:398 adminpages/paymentsettings.php:438
|
1746 |
+
#: adminpages/paymentsettings.php:443 adminpages/paymentsettings.php:445
|
1747 |
+
#: pages/billing.php:78
|
1748 |
msgid "optional"
|
1749 |
msgstr "volitelné"
|
1750 |
|
1751 |
+
#: adminpages/paymentsettings.php:191 adminpages/paymentsettings.php:401
|
1752 |
+
#: adminpages/paymentsettings.php:441 adminpages/paymentsettings.php:446
|
1753 |
+
#: adminpages/paymentsettings.php:448
|
1754 |
msgid "Tax State"
|
1755 |
+
msgstr "Stát daně"
|
1756 |
|
1757 |
+
#: adminpages/paymentsettings.php:192 adminpages/paymentsettings.php:402
|
1758 |
+
#: adminpages/paymentsettings.php:442 adminpages/paymentsettings.php:447
|
1759 |
+
#: adminpages/paymentsettings.php:449
|
1760 |
msgid "abbreviation, e.g. \"PA\""
|
1761 |
msgstr "zkratka, např. \"PA\""
|
1762 |
|
1763 |
+
#: adminpages/paymentsettings.php:194 adminpages/paymentsettings.php:404
|
1764 |
+
#: adminpages/paymentsettings.php:444 adminpages/paymentsettings.php:449
|
1765 |
+
#: adminpages/paymentsettings.php:451
|
1766 |
msgid "decimal, e.g. \"0.06\""
|
1767 |
msgstr "desetinný, např. \"0.06\""
|
1768 |
|
1769 |
+
#: adminpages/paymentsettings.php:195 adminpages/paymentsettings.php:450
|
1770 |
+
#: adminpages/paymentsettings.php:452
|
1771 |
msgid ""
|
1772 |
+
"US only. If values are given, tax will be applied for any members ordering "
|
1773 |
+
"from the selected state.<br />For non-US or more complex tax rules, use the "
|
1774 |
+
"<a target=\"_blank\" href=\"http://www.paidmembershipspro.com/2013/10/non-us-"
|
1775 |
+
"taxes-paid-memberships-pro/\">pmpro_tax filter</a>."
|
1776 |
msgstr ""
|
1777 |
+
"Pouze pro USA. Pokud jsou zadány hodnoty, daň se použije pro všechny členy "
|
1778 |
+
"objednávající z vybraného státu.<br />Mimo USA nebo pro složitější daňové "
|
1779 |
+
"předpisy použijte <a target=\"_blank\" href=\"http://www.paidmembershipspro."
|
1780 |
+
"com/2013/10/non-us-taxes-paid-memberships-pro/\">pmpro_tax filter</a>."
|
1781 |
|
1782 |
+
#: adminpages/paymentsettings.php:206 adminpages/paymentsettings.php:450
|
1783 |
+
#: adminpages/paymentsettings.php:455 adminpages/paymentsettings.php:457
|
1784 |
msgid "Force SSL"
|
1785 |
+
msgstr "Vynutit SSL"
|
1786 |
|
1787 |
+
#: adminpages/paymentsettings.php:212 adminpages/paymentsettings.php:456
|
1788 |
+
#: adminpages/paymentsettings.php:461 adminpages/paymentsettings.php:463
|
1789 |
msgid "Yes (with JavaScript redirects)"
|
1790 |
msgstr "Ano (s JavaScript přesměrováním)"
|
1791 |
|
1792 |
+
#: adminpages/paymentsettings.php:219 adminpages/paymentsettings.php:430
|
1793 |
+
#: adminpages/paymentsettings.php:463 adminpages/paymentsettings.php:468
|
1794 |
+
#: adminpages/paymentsettings.php:470
|
1795 |
msgid "SSL Seal Code"
|
1796 |
+
msgstr "Kód SSL Seal"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1797 |
|
1798 |
+
#: adminpages/paymentsettings.php:228
|
1799 |
+
msgid "Extra HTTPS URL Filter"
|
1800 |
+
msgstr "Přídavný filtr HTTPS URL"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1801 |
|
1802 |
+
#: adminpages/paymentsettings.php:231
|
1803 |
msgid ""
|
1804 |
+
"Pass all generated HTML through a URL filter to add HTTPS to URLs used on "
|
1805 |
+
"secure pages. Check this if you are using SSL and have warnings on your "
|
1806 |
+
"checkout pages."
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1807 |
msgstr ""
|
1808 |
+
"Analyzovat u zabezpečených stránek veškerý generovaný HTML kód "
|
1809 |
+
"prostřednictvím filtru URL pro přidání HTTPS k URL. Zatrhněte, pokud "
|
1810 |
+
"používáte SSL a máte varování na stránkách pokladny."
|
1811 |
|
1812 |
+
#: adminpages/reports.php:40 adminpages/reports.php:26
|
1813 |
+
#: adminpages/reports.php:37
|
|
|
|
|
|
|
|
|
|
|
1814 |
msgid "Details"
|
1815 |
msgstr "Detaily"
|
1816 |
|
1817 |
#: adminpages/reports/login.php:16
|
1818 |
msgid "Visits, Views, and Logins"
|
1819 |
+
msgstr "Návštěvnost, zobrazení a přihlášení"
|
1820 |
|
1821 |
#: adminpages/reports/login.php:26
|
1822 |
msgid "Visits Today"
|
1823 |
+
msgstr "Dnešní návštěvnost"
|
1824 |
|
1825 |
#: adminpages/reports/login.php:27 adminpages/reports/login.php:147
|
1826 |
msgid "Visits This Month"
|
1827 |
+
msgstr "Návštěvnost tento měsíc"
|
1828 |
|
1829 |
#: adminpages/reports/login.php:28
|
1830 |
msgid "Visits All Time"
|
1836 |
|
1837 |
#: adminpages/reports/login.php:32 adminpages/reports/login.php:149
|
1838 |
msgid "Views This Month"
|
1839 |
+
msgstr "Zobrazení tento měsíc"
|
1840 |
|
1841 |
#: adminpages/reports/login.php:33
|
1842 |
msgid "Views All Time"
|
1843 |
+
msgstr "Celkem zobrazení"
|
1844 |
|
1845 |
#: adminpages/reports/login.php:36
|
1846 |
msgid "Logins Today"
|
1847 |
+
msgstr "Přihlášení dnes"
|
1848 |
|
1849 |
#: adminpages/reports/login.php:37 adminpages/reports/login.php:152
|
1850 |
msgid "Logins This Month"
|
1851 |
+
msgstr "Přihlášení tento měsíc"
|
1852 |
|
1853 |
#: adminpages/reports/login.php:38
|
1854 |
msgid "Logins All Time"
|
1855 |
+
msgstr "Přihlášení celkem"
|
1856 |
|
1857 |
#: adminpages/reports/login.php:61
|
1858 |
msgid "Visits, Views, and Logins Report"
|
1859 |
+
msgstr "Výkaz o návštěvnosti, zobrazení a přihlášení"
|
1860 |
|
1861 |
#: adminpages/reports/login.php:66
|
1862 |
msgid "All Users"
|
1872 |
|
1873 |
#: adminpages/reports/login.php:150
|
1874 |
msgid "Total Views"
|
1875 |
+
msgstr "Zobrazení celkem"
|
1876 |
|
1877 |
#: adminpages/reports/login.php:151
|
1878 |
msgid "Last Login"
|
1885 |
#: adminpages/reports/memberships.php:18
|
1886 |
#: adminpages/reports/memberships.php:288
|
1887 |
msgid "Membership Stats"
|
1888 |
+
msgstr "Statistika členství"
|
1889 |
|
1890 |
+
#: adminpages/reports/memberships.php:48
|
1891 |
+
msgid "Signups"
|
1892 |
+
msgstr "Registrací"
|
1893 |
+
|
1894 |
+
#: adminpages/reports/memberships.php:50 adminpages/reports/memberships.php:69
|
1895 |
+
msgid "All Time"
|
1896 |
+
msgstr "Od počátku"
|
1897 |
+
|
1898 |
+
#: adminpages/reports/memberships.php:54 adminpages/reports/memberships.php:73
|
1899 |
+
msgid "This Year"
|
1900 |
+
msgstr "Tento rok"
|
1901 |
+
|
1902 |
+
#: adminpages/reports/memberships.php:58 adminpages/reports/memberships.php:77
|
1903 |
+
msgid "This Month"
|
1904 |
+
msgstr "Tento měsíc"
|
1905 |
+
|
1906 |
+
#: adminpages/reports/memberships.php:62 adminpages/reports/memberships.php:81
|
1907 |
+
msgid "Today"
|
1908 |
+
msgstr "Dnes"
|
1909 |
+
|
1910 |
+
#: adminpages/reports/memberships.php:67
|
1911 |
+
msgid "Cancellations"
|
1912 |
+
msgstr "Zrušení"
|
1913 |
+
|
1914 |
+
#: adminpages/reports/memberships.php:86
|
1915 |
+
msgid "Other Stats"
|
1916 |
+
msgstr "Další statistiky"
|
1917 |
+
|
1918 |
+
#: adminpages/reports/memberships.php:88
|
1919 |
+
msgid "Monthly Recurring Revenue (MRR)"
|
1920 |
+
msgstr "Měsíční opakující se příjmy (MRR)"
|
1921 |
+
|
1922 |
+
#: adminpages/reports/memberships.php:92
|
1923 |
+
msgid "Cancellation Rate"
|
1924 |
+
msgstr "Míra zrušení"
|
1925 |
+
|
1926 |
+
#: adminpages/reports/memberships.php:96
|
1927 |
+
msgid "Lifetime Value (LTV)"
|
1928 |
+
msgstr "Životní hodnota (LTV)"
|
1929 |
+
|
1930 |
+
#: adminpages/reports/memberships.php:294 adminpages/reports/sales.php:195
|
1931 |
+
#: adminpages/reports/sales.php:187 adminpages/reports/sales.php:196
|
1932 |
msgid "Daily"
|
1933 |
msgstr "Denně"
|
1934 |
|
1935 |
+
#: adminpages/reports/memberships.php:295 adminpages/reports/sales.php:196
|
1936 |
+
#: adminpages/reports/sales.php:188 adminpages/reports/sales.php:197
|
1937 |
msgid "Monthly"
|
1938 |
msgstr "Měsíčně"
|
1939 |
|
1940 |
+
#: adminpages/reports/memberships.php:296 adminpages/reports/sales.php:197
|
1941 |
+
#: adminpages/reports/sales.php:189 adminpages/reports/sales.php:198
|
1942 |
msgid "Annual"
|
1943 |
msgstr "Ročně"
|
1944 |
|
1946 |
msgid "Signups vs. Cancellations"
|
1947 |
msgstr "Registrace vs. storna"
|
1948 |
|
1949 |
+
#: adminpages/reports/memberships.php:304
|
1950 |
+
#: adminpages/reports/memberships.php:315 adminpages/reports/sales.php:203
|
1951 |
+
#: adminpages/reports/sales.php:214 adminpages/membershiplevels.php:545
|
1952 |
+
#: adminpages/membershiplevels.php:551 adminpages/membershiplevels.php:553
|
1953 |
+
#: adminpages/membershiplevels.php:559 adminpages/membershiplevels.php:561
|
1954 |
+
#: adminpages/membershiplevels.php:580 adminpages/membershiplevels.php:588
|
1955 |
+
#: adminpages/reports/sales.php:195 adminpages/reports/sales.php:204
|
1956 |
+
#: adminpages/reports/sales.php:206 adminpages/reports/sales.php:215
|
1957 |
+
msgid "for"
|
1958 |
+
msgstr "pro"
|
1959 |
+
|
1960 |
+
#: adminpages/reports/memberships.php:331 adminpages/reports/sales.php:230
|
1961 |
+
#: adminpages/reports/sales.php:222 adminpages/reports/sales.php:231
|
1962 |
msgid "Generate Report"
|
1963 |
+
msgstr "Vytvořit výkaz"
|
1964 |
|
1965 |
#: adminpages/reports/sales.php:18
|
1966 |
msgid "Sales and Revenue (Testing/Sandbox)"
|
1967 |
+
msgstr "Prodeje a příjmy (Sandbox/Testování)"
|
1968 |
|
1969 |
#: adminpages/reports/sales.php:20 adminpages/reports/sales.php:189
|
1970 |
#: adminpages/reports/sales.php:180
|
1971 |
msgid "Sales and Revenue"
|
1972 |
msgstr "Prodeje a příjmy"
|
1973 |
|
1974 |
+
#: adminpages/reports/sales.php:200 adminpages/reports/sales.php:192
|
1975 |
+
#: adminpages/reports/sales.php:201
|
1976 |
msgid "Revenue"
|
1977 |
+
msgstr "Příjem"
|
1978 |
|
1979 |
+
#: adminpages/reports/sales.php:201 adminpages/reports/sales.php:193
|
1980 |
+
#: adminpages/reports/sales.php:202
|
1981 |
msgid "Sales"
|
1982 |
msgstr "Prodeje"
|
1983 |
|
1984 |
+
#: classes/class.memberorder.php:644 classes/class.memberorder.php:553
|
1985 |
+
#: classes/class.memberorder.php:561 classes/class.memberorder.php:564
|
1986 |
+
#: classes/class.memberorder.php:573 includes/cleanup.php:24
|
1987 |
+
#, php-format
|
1988 |
+
msgid ""
|
1989 |
+
"There was an error canceling the subscription for user with ID=%s. You will "
|
1990 |
+
"want to check your payment gateway to see if their subscription is still "
|
1991 |
+
"active."
|
1992 |
+
msgstr ""
|
1993 |
+
"Došlo k chybě při zrušení předplatného pro uživatele s ID=%s. Budete muset "
|
1994 |
+
"zkontrolovat vaši platební bránu, zda je jeho předplatné stále aktivní."
|
1995 |
+
|
1996 |
#: classes/class.pmproemail.php:37
|
1997 |
#, php-format
|
1998 |
msgid "An Email From %s"
|
1999 |
msgstr "E-mail od %s"
|
2000 |
|
2001 |
+
#: classes/class.pmproemail.php:125 classes/class.pmproemail.php:120
|
2002 |
+
#: classes/class.pmproemail.php:122
|
2003 |
#, php-format
|
2004 |
msgid "Your membership at %s has been CANCELLED"
|
2005 |
+
msgstr "Vaše členství v %s bylo ZRUŠENO"
|
2006 |
|
2007 |
+
#: classes/class.pmproemail.php:147 classes/class.pmproemail.php:142
|
2008 |
+
#: classes/class.pmproemail.php:144
|
2009 |
#, php-format
|
2010 |
msgid "Membership for %s at %s has been CANCELLED"
|
2011 |
+
msgstr "Členství uživatele %s v %s bylo ZRUŠENO"
|
2012 |
|
2013 |
+
#: classes/class.pmproemail.php:178 classes/class.pmproemail.php:172
|
2014 |
+
#: classes/class.pmproemail.php:173 classes/class.pmproemail.php:175
|
2015 |
#, php-format
|
2016 |
msgid "Your membership confirmation for %s"
|
2017 |
+
msgstr "Potvrzení Vašeho členství v %s"
|
2018 |
+
|
2019 |
+
#: classes/class.pmproemail.php:231 classes/class.pmproemail.php:240
|
2020 |
+
#: classes/class.pmproemail.php:249 classes/class.pmproemail.php:328
|
2021 |
+
#: classes/class.pmproemail.php:337 classes/class.pmproemail.php:648
|
2022 |
+
#: classes/gateways/class.pmprogateway_braintree.php:349
|
2023 |
+
#: classes/gateways/class.pmprogateway_stripe.php:495 pages/checkout.php:66
|
2024 |
+
#: pages/checkout.php:76 pages/checkout.php:594 pages/confirmation.php:52
|
2025 |
+
#: pages/invoice.php:33 classes/class.pmproemail.php:216
|
2026 |
+
#: classes/class.pmproemail.php:218 classes/class.pmproemail.php:225
|
2027 |
+
#: classes/class.pmproemail.php:227 classes/class.pmproemail.php:228
|
2028 |
+
#: classes/class.pmproemail.php:234 classes/class.pmproemail.php:236
|
2029 |
+
#: classes/class.pmproemail.php:237 classes/class.pmproemail.php:246
|
2030 |
+
#: classes/class.pmproemail.php:304 classes/class.pmproemail.php:307
|
2031 |
+
#: classes/class.pmproemail.php:313 classes/class.pmproemail.php:316
|
2032 |
+
#: classes/class.pmproemail.php:325 classes/class.pmproemail.php:334
|
2033 |
+
#: classes/class.pmproemail.php:532 classes/class.pmproemail.php:580
|
2034 |
+
#: classes/class.pmproemail.php:645 pages/checkout.php:67
|
2035 |
+
#: pages/checkout.php:68 pages/checkout.php:77 pages/checkout.php:78
|
2036 |
+
#: pages/checkout.php:549 pages/checkout.php:565 pages/checkout.php:566
|
2037 |
+
#: pages/checkout.php:573 pages/confirmation.php:51 pages/invoice.php:32
|
2038 |
msgid "Discount Code"
|
2039 |
msgstr "Slevový kód"
|
2040 |
|
2041 |
+
#: classes/class.pmproemail.php:256 classes/class.pmproemail.php:349
|
2042 |
+
#: classes/class.pmproemail.php:654 classes/class.pmproemail.php:241
|
2043 |
+
#: classes/class.pmproemail.php:243 classes/class.pmproemail.php:253
|
2044 |
+
#: classes/class.pmproemail.php:325 classes/class.pmproemail.php:328
|
2045 |
+
#: classes/class.pmproemail.php:346 classes/class.pmproemail.php:538
|
2046 |
+
#: classes/class.pmproemail.php:586 classes/class.pmproemail.php:651
|
2047 |
#, php-format
|
2048 |
msgid "This membership will expire on %s."
|
2049 |
msgstr "Toto členství vyprší %s."
|
2050 |
|
2051 |
+
#: classes/class.pmproemail.php:278 classes/class.pmproemail.php:263
|
2052 |
+
#: classes/class.pmproemail.php:265 classes/class.pmproemail.php:275
|
2053 |
#, php-format
|
2054 |
msgid "Member Checkout for %s at %s"
|
2055 |
+
msgstr "Platba člena za %s v %s"
|
2056 |
|
2057 |
+
#: classes/class.pmproemail.php:366 classes/class.pmproemail.php:342
|
2058 |
+
#: classes/class.pmproemail.php:345 classes/class.pmproemail.php:363
|
2059 |
#, php-format
|
2060 |
msgid "Your billing information has been udpated at %s"
|
2061 |
msgstr "Vaše fakturační údaje byly aktualizovány na %s"
|
2062 |
|
2063 |
+
#: classes/class.pmproemail.php:419 classes/class.pmproemail.php:386
|
2064 |
+
#: classes/class.pmproemail.php:390 classes/class.pmproemail.php:416
|
2065 |
#, php-format
|
2066 |
msgid "Billing information has been udpated for %s at %s"
|
2067 |
msgstr "Fakturační údaje byly aktualizovány z %s na %s"
|
2068 |
|
2069 |
+
#: classes/class.pmproemail.php:467 classes/class.pmproemail.php:425
|
2070 |
+
#: classes/class.pmproemail.php:430 classes/class.pmproemail.php:464
|
2071 |
#, php-format
|
2072 |
msgid "Membership Payment Failed at %s"
|
2073 |
msgstr "Platba za členství se nezdařila na %s"
|
2074 |
|
2075 |
+
#: classes/class.pmproemail.php:513 classes/class.pmproemail.php:462
|
2076 |
+
#: classes/class.pmproemail.php:468 classes/class.pmproemail.php:510
|
2077 |
#, php-format
|
2078 |
msgid "Membership Payment Failed For %s at %s"
|
2079 |
+
msgstr "Platba za členství se nezdařila pro %s na %s"
|
2080 |
|
2081 |
+
#: classes/class.pmproemail.php:560 classes/class.pmproemail.php:508
|
2082 |
+
#: classes/class.pmproemail.php:557
|
2083 |
#, php-format
|
2084 |
msgid "Credit Card on File Expiring Soon at %s"
|
2085 |
msgstr "Kreditní karta brzy skončí na %s"
|
2086 |
|
2087 |
+
#: classes/class.pmproemail.php:608 classes/class.pmproemail.php:501
|
2088 |
+
#: classes/class.pmproemail.php:548 classes/class.pmproemail.php:605
|
2089 |
#, php-format
|
2090 |
msgid "INVOICE for %s membership"
|
2091 |
+
msgstr "VYÚČTOVÁNÍ za %s členství"
|
2092 |
|
2093 |
+
#: classes/class.pmproemail.php:679 classes/class.pmproemail.php:563
|
2094 |
+
#: classes/class.pmproemail.php:611 classes/class.pmproemail.php:676
|
2095 |
#, php-format
|
2096 |
msgid "Your trial at %s is ending soon"
|
2097 |
+
msgstr "Vaše zkušební doba v %s brzy vyprší"
|
2098 |
|
2099 |
+
#: classes/class.pmproemail.php:713 classes/class.pmproemail.php:596
|
2100 |
+
#: classes/class.pmproemail.php:645 classes/class.pmproemail.php:710
|
2101 |
#, php-format
|
2102 |
msgid "Your membership at %s has ended"
|
2103 |
+
msgstr "Vaše členství v %s vypršelo"
|
2104 |
|
2105 |
+
#: classes/class.pmproemail.php:738 classes/class.pmproemail.php:621
|
2106 |
+
#: classes/class.pmproemail.php:670 classes/class.pmproemail.php:735
|
2107 |
#, php-format
|
2108 |
msgid "Your membership at %s will end soon"
|
2109 |
+
msgstr "Vaše členství v %s brzy vyprší"
|
2110 |
|
2111 |
+
#: classes/class.pmproemail.php:758 classes/class.pmproemail.php:641
|
2112 |
+
#: classes/class.pmproemail.php:690 classes/class.pmproemail.php:755
|
2113 |
#, php-format
|
2114 |
msgid "Your membership at %s has been changed"
|
2115 |
+
msgstr "Vaše členství v %s bylo změněno"
|
2116 |
|
2117 |
+
#: classes/class.pmproemail.php:762 classes/class.pmproemail.php:759
|
|
|
2118 |
#, php-format
|
2119 |
+
msgid "The new level is %s."
|
2120 |
+
msgstr "Nová úroveň je %s."
|
2121 |
|
2122 |
+
#: classes/class.pmproemail.php:764 classes/class.pmproemail.php:647
|
2123 |
+
#: classes/class.pmproemail.php:696 classes/class.pmproemail.php:761
|
2124 |
msgid "Your membership has been cancelled"
|
2125 |
+
msgstr "Vaše členství bylo zrušeno"
|
2126 |
|
2127 |
+
#: classes/class.pmproemail.php:768 classes/class.pmproemail.php:806
|
2128 |
#: classes/class.pmproemail.php:651 classes/class.pmproemail.php:689
|
2129 |
+
#: classes/class.pmproemail.php:700 classes/class.pmproemail.php:738
|
2130 |
+
#: classes/class.pmproemail.php:765 classes/class.pmproemail.php:803
|
2131 |
#, php-format
|
2132 |
msgid "This membership will expire on %s"
|
2133 |
msgstr "Toto členství vyprší %s"
|
2134 |
|
2135 |
+
#: classes/class.pmproemail.php:772 classes/class.pmproemail.php:810
|
2136 |
#: classes/class.pmproemail.php:655 classes/class.pmproemail.php:693
|
2137 |
+
#: classes/class.pmproemail.php:704 classes/class.pmproemail.php:742
|
2138 |
+
#: classes/class.pmproemail.php:769 classes/class.pmproemail.php:807
|
2139 |
msgid "This membership does not expire"
|
2140 |
msgstr "Toto členství nevyprší"
|
2141 |
|
2142 |
+
#: classes/class.pmproemail.php:796 classes/class.pmproemail.php:679
|
2143 |
+
#: classes/class.pmproemail.php:728 classes/class.pmproemail.php:793
|
2144 |
#, php-format
|
2145 |
msgid "Membership for %s at %s has been changed"
|
2146 |
+
msgstr "Členství uživatele %s v %s bylo změněno"
|
2147 |
|
2148 |
+
#: classes/class.pmproemail.php:800 classes/class.pmproemail.php:645
|
2149 |
+
#: classes/class.pmproemail.php:683 classes/class.pmproemail.php:694
|
2150 |
+
#: classes/class.pmproemail.php:732 classes/class.pmproemail.php:797
|
2151 |
+
#, php-format
|
2152 |
+
msgid "The new level is %s. This membership is free"
|
2153 |
+
msgstr "Nová úroveň je %s. Toto členství je zdarma."
|
2154 |
+
|
2155 |
+
#: classes/class.pmproemail.php:802 classes/class.pmproemail.php:799
|
2156 |
+
msgid "Membership has been cancelled"
|
2157 |
+
msgstr "Členství bylo zrušeno"
|
2158 |
|
2159 |
#: classes/gateways/class.pmprogateway.php:55
|
2160 |
+
#: classes/gateways/class.pmprogateway_authorizenet.php:171
|
2161 |
+
#: classes/gateways/class.pmprogateway_check.php:193
|
2162 |
+
#: classes/gateways/class.pmprogateway_cybersource.php:171
|
2163 |
+
#: classes/gateways/class.pmprogateway_payflowpro.php:164
|
2164 |
+
#: classes/gateways/class.pmprogateway_paypal.php:247
|
2165 |
#: classes/gateways/class.pmprogateway_authorizenet.php:55
|
2166 |
#: classes/gateways/class.pmprogateway_check.php:60
|
2167 |
#: classes/gateways/class.pmprogateway_cybersource.php:57
|
2168 |
#: classes/gateways/class.pmprogateway_payflowpro.php:27
|
2169 |
#: classes/gateways/class.pmprogateway_paypal.php:27
|
2170 |
msgid "Unknown error: Authorization failed."
|
2171 |
+
msgstr "Neznámá chyba: Autorizace selhala."
|
2172 |
|
2173 |
#: classes/gateways/class.pmprogateway.php:106
|
2174 |
#: classes/gateways/class.pmprogateway.php:111
|
2175 |
#: classes/gateways/class.pmprogateway.php:129
|
2176 |
+
#: classes/gateways/class.pmprogateway_authorizenet.php:222
|
2177 |
+
#: classes/gateways/class.pmprogateway_authorizenet.php:227
|
2178 |
+
#: classes/gateways/class.pmprogateway_authorizenet.php:244
|
2179 |
+
#: classes/gateways/class.pmprogateway_check.php:244
|
2180 |
+
#: classes/gateways/class.pmprogateway_check.php:249
|
2181 |
+
#: classes/gateways/class.pmprogateway_check.php:267
|
2182 |
+
#: classes/gateways/class.pmprogateway_cybersource.php:222
|
2183 |
+
#: classes/gateways/class.pmprogateway_cybersource.php:227
|
2184 |
+
#: classes/gateways/class.pmprogateway_cybersource.php:245
|
2185 |
+
#: classes/gateways/class.pmprogateway_payflowpro.php:187
|
2186 |
+
#: classes/gateways/class.pmprogateway_payflowpro.php:192
|
2187 |
+
#: classes/gateways/class.pmprogateway_paypal.php:270
|
2188 |
#: classes/gateways/class.pmprogateway_authorizenet.php:106
|
2189 |
#: classes/gateways/class.pmprogateway_authorizenet.php:111
|
2190 |
#: classes/gateways/class.pmprogateway_authorizenet.php:128
|
2198 |
#: classes/gateways/class.pmprogateway_payflowpro.php:55
|
2199 |
#: classes/gateways/class.pmprogateway_paypal.php:50
|
2200 |
msgid "Unknown error: Payment failed."
|
2201 |
+
msgstr "Neznámá chyba: Platba selhala."
|
2202 |
|
2203 |
#: classes/gateways/class.pmprogateway.php:113
|
2204 |
+
#: classes/gateways/class.pmprogateway_authorizenet.php:228
|
2205 |
+
#: classes/gateways/class.pmprogateway_check.php:251
|
2206 |
+
#: classes/gateways/class.pmprogateway_cybersource.php:229
|
2207 |
#: classes/gateways/class.pmprogateway_authorizenet.php:112
|
2208 |
#: classes/gateways/class.pmprogateway_check.php:118
|
2209 |
#: classes/gateways/class.pmprogateway_cybersource.php:115
|
2211 |
"A partial payment was made that we could not void. Please contact the site "
|
2212 |
"owner immediately to correct this."
|
2213 |
msgstr ""
|
2214 |
+
"Byla provedena částečná platba, kterou jsme nemohli anulovat. Pro nápravu se "
|
2215 |
+
"obraťte co nejdříve na vlastníka webu."
|
2216 |
+
|
2217 |
+
#: classes/gateways/class.pmprogateway_authorizenet.php:39
|
2218 |
+
#: paid-memberships-pro.php:122
|
2219 |
+
msgid "Authorize.net"
|
2220 |
+
msgstr "Authorize.net"
|
2221 |
+
|
2222 |
+
#: classes/gateways/class.pmprogateway_authorizenet.php:93
|
2223 |
+
msgid "Authorize.net Settings"
|
2224 |
+
msgstr "Nastavení Authorize.net"
|
2225 |
+
|
2226 |
+
#: classes/gateways/class.pmprogateway_authorizenet.php:98
|
2227 |
+
#: adminpages/paymentsettings.php:260 adminpages/paymentsettings.php:264
|
2228 |
+
#: adminpages/paymentsettings.php:269
|
2229 |
+
msgid "Login Name"
|
2230 |
+
msgstr "Přihlašovací jméno"
|
2231 |
+
|
2232 |
+
#: classes/gateways/class.pmprogateway_authorizenet.php:106
|
2233 |
+
#: adminpages/paymentsettings.php:268 adminpages/paymentsettings.php:272
|
2234 |
+
#: adminpages/paymentsettings.php:277
|
2235 |
+
msgid "Transaction Key"
|
2236 |
+
msgstr "Transakční klíč"
|
2237 |
+
|
2238 |
+
#: classes/gateways/class.pmprogateway_authorizenet.php:114
|
2239 |
+
#: adminpages/paymentsettings.php:454 adminpages/paymentsettings.php:495
|
2240 |
+
#: adminpages/paymentsettings.php:501 adminpages/paymentsettings.php:503
|
2241 |
+
msgid "Silent Post URL"
|
2242 |
+
msgstr "URL pro Silent Post"
|
2243 |
+
|
2244 |
+
#: classes/gateways/class.pmprogateway_authorizenet.php:117
|
2245 |
+
#: adminpages/paymentsettings.php:457 adminpages/paymentsettings.php:498
|
2246 |
+
#: adminpages/paymentsettings.php:504 adminpages/paymentsettings.php:506
|
2247 |
+
msgid ""
|
2248 |
+
"To fully integrate with Authorize.net, be sure to set your Silent Post URL to"
|
2249 |
+
msgstr ""
|
2250 |
+
"Chcete-li plně integrovat Authorize.net, ujistěte se, že máte správně "
|
2251 |
+
"nastaven URL pro Silent Post na"
|
2252 |
|
2253 |
+
#: classes/gateways/class.pmprogateway_authorizenet.php:908
|
2254 |
+
#: classes/gateways/class.pmprogateway_authorizenet.php:909
|
2255 |
#: classes/gateways/class.pmprogateway_authorizenet.php:787
|
2256 |
#: classes/gateways/class.pmprogateway_authorizenet.php:788
|
2257 |
#: classes/gateways/class.pmprogateway_authorizenet.php:789
|
2258 |
+
#: classes/gateways/class.pmprogateway_authorizenet.php:792
|
2259 |
+
#: classes/gateways/class.pmprogateway_authorizenet.php:793
|
2260 |
msgid "Could not connect to Authorize.net"
|
2261 |
msgstr "Nelze se připojit k Authorize.net"
|
2262 |
|
2263 |
+
#: classes/gateways/class.pmprogateway_braintree.php:63
|
2264 |
+
#: paid-memberships-pro.php:123
|
2265 |
+
msgid "Braintree Payments"
|
2266 |
+
msgstr "Platby Braintree"
|
2267 |
+
|
2268 |
+
#: classes/gateways/class.pmprogateway_braintree.php:119
|
2269 |
+
msgid "Braintree Settings"
|
2270 |
+
msgstr "Nastavení Braintree"
|
2271 |
+
|
2272 |
+
#: classes/gateways/class.pmprogateway_braintree.php:124
|
2273 |
+
#: classes/gateways/class.pmprogateway_cybersource.php:106
|
2274 |
+
#: adminpages/paymentsettings.php:294 adminpages/paymentsettings.php:298
|
2275 |
+
#: adminpages/paymentsettings.php:303 adminpages/paymentsettings.php:364
|
2276 |
+
#: adminpages/paymentsettings.php:369
|
2277 |
+
msgid "Merchant ID"
|
2278 |
+
msgstr "ID obchodníka"
|
2279 |
+
|
2280 |
+
#: classes/gateways/class.pmprogateway_braintree.php:132
|
2281 |
+
#: adminpages/paymentsettings.php:302 adminpages/paymentsettings.php:306
|
2282 |
+
#: adminpages/paymentsettings.php:311
|
2283 |
+
msgid "Public Key"
|
2284 |
+
msgstr "Veřejný klíč"
|
2285 |
+
|
2286 |
+
#: classes/gateways/class.pmprogateway_braintree.php:140
|
2287 |
+
#: adminpages/paymentsettings.php:310 adminpages/paymentsettings.php:314
|
2288 |
+
#: adminpages/paymentsettings.php:319
|
2289 |
+
msgid "Private Key"
|
2290 |
+
msgstr "Osobní klíč"
|
2291 |
+
|
2292 |
+
#: classes/gateways/class.pmprogateway_braintree.php:148
|
2293 |
+
#: adminpages/paymentsettings.php:318 adminpages/paymentsettings.php:322
|
2294 |
+
#: adminpages/paymentsettings.php:327
|
2295 |
+
msgid "Client-Side Encryption Key"
|
2296 |
+
msgstr "Šifrovací klíč na straně klienta"
|
2297 |
+
|
2298 |
+
#: classes/gateways/class.pmprogateway_braintree.php:156
|
2299 |
+
#: classes/gateways/class.pmprogateway_stripe.php:181
|
2300 |
+
#: adminpages/paymentsettings.php:462 adminpages/paymentsettings.php:470
|
2301 |
+
#: adminpages/paymentsettings.php:503 adminpages/paymentsettings.php:509
|
2302 |
+
#: adminpages/paymentsettings.php:511 adminpages/paymentsettings.php:517
|
2303 |
+
#: adminpages/paymentsettings.php:519
|
2304 |
+
msgid "Web Hook URL"
|
2305 |
+
msgstr "URL pro Web Hook"
|
2306 |
+
|
2307 |
+
#: classes/gateways/class.pmprogateway_braintree.php:160
|
2308 |
+
#: adminpages/paymentsettings.php:474 adminpages/paymentsettings.php:515
|
2309 |
+
#: adminpages/paymentsettings.php:521 adminpages/paymentsettings.php:523
|
2310 |
+
msgid "To fully integrate with Braintree, be sure to set your Web Hook URL to"
|
2311 |
+
msgstr ""
|
2312 |
+
"Chcete-li plně integrovat Braintree, ujistěte se, že máte správně nastaven "
|
2313 |
+
"URL pro Web Hook na"
|
2314 |
+
|
2315 |
+
#: classes/gateways/class.pmprogateway_braintree.php:270
|
2316 |
+
#: classes/gateways/class.pmprogateway_stripe.php:387 pages/checkout.php:485
|
2317 |
+
#: pages/checkout.php:476 pages/checkout.php:478 pages/checkout.php:493
|
2318 |
+
#: pages/checkout.php:500
|
2319 |
+
msgid "Payment Information"
|
2320 |
+
msgstr "Platební informace"
|
2321 |
+
|
2322 |
+
#: classes/gateways/class.pmprogateway_braintree.php:270
|
2323 |
+
#: classes/gateways/class.pmprogateway_stripe.php:387 pages/checkout.php:485
|
2324 |
+
#: pages/checkout.php:476 pages/checkout.php:478 pages/checkout.php:493
|
2325 |
+
#: pages/checkout.php:500
|
2326 |
+
#, php-format
|
2327 |
+
msgid "We Accept %s"
|
2328 |
+
msgstr "Přijímáme %s"
|
2329 |
+
|
2330 |
+
#: classes/gateways/class.pmprogateway_braintree.php:303
|
2331 |
+
#: classes/gateways/class.pmprogateway_stripe.php:449 pages/billing.php:248
|
2332 |
+
#: pages/checkout.php:548 pages/billing.php:244 pages/checkout.php:503
|
2333 |
+
#: pages/checkout.php:519 pages/checkout.php:520 pages/checkout.php:527
|
2334 |
+
msgid "Card Number"
|
2335 |
+
msgstr "Číslo karty"
|
2336 |
+
|
2337 |
+
#: classes/gateways/class.pmprogateway_braintree.php:340
|
2338 |
+
#: classes/gateways/class.pmprogateway_stripe.php:486 pages/billing.php:285
|
2339 |
+
#: pages/checkout.php:585 pages/billing.php:281 pages/checkout.php:540
|
2340 |
+
#: pages/checkout.php:556 pages/checkout.php:557 pages/checkout.php:564
|
2341 |
+
msgid "CVV"
|
2342 |
+
msgstr "CVV"
|
2343 |
+
|
2344 |
+
#: classes/gateways/class.pmprogateway_braintree.php:341
|
2345 |
+
#: classes/gateways/class.pmprogateway_stripe.php:487 pages/billing.php:286
|
2346 |
+
#: pages/checkout.php:586 pages/billing.php:282 pages/checkout.php:541
|
2347 |
+
#: pages/checkout.php:557 pages/checkout.php:558 pages/checkout.php:565
|
2348 |
+
msgid "what's this?"
|
2349 |
+
msgstr "co to je?"
|
2350 |
+
|
2351 |
+
#: classes/gateways/class.pmprogateway_braintree.php:351
|
2352 |
+
#: classes/gateways/class.pmprogateway_stripe.php:497 pages/checkout.php:78
|
2353 |
+
#: pages/checkout.php:596 pages/checkout.php:79 pages/checkout.php:80
|
2354 |
+
#: pages/checkout.php:551 pages/checkout.php:567 pages/checkout.php:568
|
2355 |
+
#: pages/checkout.php:575
|
2356 |
+
msgid "Apply"
|
2357 |
+
msgstr "Použít"
|
2358 |
+
|
2359 |
+
#: classes/gateways/class.pmprogateway_braintree.php:406
|
2360 |
+
#: classes/gateways/class.pmprogateway_stripe.php:1011
|
2361 |
#: classes/gateways/class.pmprogateway_braintree.php:61
|
2362 |
#: classes/gateways/class.pmprogateway_stripe.php:53
|
2363 |
msgid "Unknown error: Initial payment failed."
|
2364 |
+
msgstr "Neznámá chyba: První platba se nezdařila."
|
2365 |
|
2366 |
+
#: classes/gateways/class.pmprogateway_braintree.php:465
|
2367 |
#: classes/gateways/class.pmprogateway_braintree.php:120
|
2368 |
msgid "Error during settlement:"
|
2369 |
+
msgstr "Chyba během připsání:"
|
2370 |
|
2371 |
+
#: classes/gateways/class.pmprogateway_braintree.php:474
|
2372 |
#: classes/gateways/class.pmprogateway_braintree.php:129
|
2373 |
msgid "Error during charge:"
|
2374 |
+
msgstr "Chyba během debetu:"
|
2375 |
|
2376 |
+
#: classes/gateways/class.pmprogateway_braintree.php:566
|
2377 |
#: classes/gateways/class.pmprogateway_braintree.php:198
|
2378 |
+
#: classes/gateways/class.pmprogateway_braintree.php:221
|
2379 |
msgid "Failed to update customer."
|
2380 |
msgstr "Nepodařilo se aktualizovat zákazníka."
|
2381 |
|
2382 |
+
#: classes/gateways/class.pmprogateway_braintree.php:614
|
2383 |
#: classes/gateways/class.pmprogateway_braintree.php:246
|
2384 |
+
#: classes/gateways/class.pmprogateway_braintree.php:269
|
2385 |
msgid "Failed to create customer."
|
2386 |
msgstr "Nepodařilo se vytvořit zákazníka."
|
2387 |
|
2388 |
+
#: classes/gateways/class.pmprogateway_braintree.php:621
|
2389 |
#: classes/gateways/class.pmprogateway_braintree.php:253
|
2390 |
+
#: classes/gateways/class.pmprogateway_braintree.php:276
|
2391 |
msgid "Error creating customer record with Braintree:"
|
2392 |
+
msgstr "Chyba při vytváření záznamu zákazníka Braintree:"
|
2393 |
|
2394 |
+
#: classes/gateways/class.pmprogateway_braintree.php:721
|
2395 |
#: classes/gateways/class.pmprogateway_braintree.php:344
|
2396 |
#: classes/gateways/class.pmprogateway_braintree.php:345
|
2397 |
+
#: classes/gateways/class.pmprogateway_braintree.php:376
|
2398 |
msgid "Error subscribing customer to plan with Braintree:"
|
2399 |
+
msgstr "Chyba při přihlášení zákazníka k plánu předplatného Braintree:"
|
2400 |
|
2401 |
+
#: classes/gateways/class.pmprogateway_braintree.php:736
|
2402 |
#: classes/gateways/class.pmprogateway_braintree.php:359
|
2403 |
#: classes/gateways/class.pmprogateway_braintree.php:360
|
2404 |
+
#: classes/gateways/class.pmprogateway_braintree.php:391
|
2405 |
msgid "Failed to subscribe with Braintree:"
|
2406 |
+
msgstr "Nepodařilo se předplatit pomocí Braintree:"
|
2407 |
|
2408 |
+
#: classes/gateways/class.pmprogateway_braintree.php:774
|
2409 |
+
#: classes/gateways/class.pmprogateway_braintree.php:787
|
2410 |
+
#: classes/gateways/class.pmprogateway_braintree.php:794
|
2411 |
#: classes/gateways/class.pmprogateway_braintree.php:397
|
|
|
|
|
|
|
|
|
2412 |
#: classes/gateways/class.pmprogateway_braintree.php:398
|
2413 |
+
#: classes/gateways/class.pmprogateway_braintree.php:410
|
2414 |
#: classes/gateways/class.pmprogateway_braintree.php:411
|
2415 |
+
#: classes/gateways/class.pmprogateway_braintree.php:417
|
2416 |
#: classes/gateways/class.pmprogateway_braintree.php:418
|
2417 |
+
#: classes/gateways/class.pmprogateway_braintree.php:429
|
2418 |
+
#: classes/gateways/class.pmprogateway_braintree.php:442
|
2419 |
+
#: classes/gateways/class.pmprogateway_braintree.php:449
|
2420 |
#: classes/gateways/class.pmprogateway_stripe.php:343
|
2421 |
+
#: classes/gateways/class.pmprogateway_stripe.php:344
|
2422 |
+
#: classes/gateways/class.pmprogateway_stripe.php:351
|
2423 |
#: classes/gateways/class.pmprogateway_stripe.php:353
|
2424 |
+
#: classes/gateways/class.pmprogateway_stripe.php:354
|
2425 |
+
#: classes/gateways/class.pmprogateway_stripe.php:361
|
2426 |
+
#: classes/gateways/class.pmprogateway_stripe.php:396
|
2427 |
+
#: classes/gateways/class.pmprogateway_stripe.php:402
|
2428 |
+
#: classes/gateways/class.pmprogateway_stripe.php:423
|
2429 |
msgid "Could not find the subscription."
|
2430 |
msgstr "Nelze najít předplatné."
|
2431 |
|
2432 |
+
#: classes/gateways/class.pmprogateway_check.php:48
|
2433 |
+
#: paid-memberships-pro.php:116 adminpages/orders.php:399
|
2434 |
+
#: adminpages/orders.php:449 adminpages/paymentsettings.php:157
|
2435 |
+
#: adminpages/paymentsettings.php:159
|
2436 |
+
msgid "Pay by Check"
|
2437 |
+
msgstr "Zaplatit šekem"
|
2438 |
+
|
2439 |
+
#: classes/gateways/class.pmprogateway_check.php:100
|
2440 |
+
msgid "Pay by Check Settings"
|
2441 |
+
msgstr "Nastavení platby šekem"
|
2442 |
+
|
2443 |
+
#: classes/gateways/class.pmprogateway_check.php:105
|
2444 |
+
#: adminpages/paymentsettings.php:389 adminpages/paymentsettings.php:415
|
2445 |
+
#: adminpages/paymentsettings.php:420 adminpages/paymentsettings.php:422
|
2446 |
+
msgid "Instructions"
|
2447 |
+
msgstr "Instrukce"
|
2448 |
+
|
2449 |
+
#: classes/gateways/class.pmprogateway_check.php:109
|
2450 |
+
#: adminpages/paymentsettings.php:393 adminpages/paymentsettings.php:419
|
2451 |
+
#: adminpages/paymentsettings.php:424 adminpages/paymentsettings.php:426
|
2452 |
+
msgid ""
|
2453 |
+
"Who to write the check out to. Where to mail it. Shown on checkout, "
|
2454 |
+
"confirmation, and invoice pages."
|
2455 |
+
msgstr ""
|
2456 |
+
"Na koho se má vystavit šek. Kam jej poslat. Zobrazeno na stránkách pokladny, "
|
2457 |
+
"potvrzení a vyúčtování."
|
2458 |
+
|
2459 |
+
#: classes/gateways/class.pmprogateway_cybersource.php:42
|
2460 |
+
msgid "CyberSource"
|
2461 |
+
msgstr "CyberSource"
|
2462 |
+
|
2463 |
+
#: classes/gateways/class.pmprogateway_cybersource.php:96
|
2464 |
+
msgid "CyberSource Settings"
|
2465 |
+
msgstr "Nastavení CyberSource"
|
2466 |
+
|
2467 |
+
#: classes/gateways/class.pmprogateway_cybersource.php:101
|
2468 |
+
#: adminpages/paymentsettings.php:174
|
2469 |
+
msgid ""
|
2470 |
+
"This gateway option is in beta. Some functionality may not be available. "
|
2471 |
+
"Please contact Paid Memberships Pro with any issues you run into. "
|
2472 |
+
"<strong>Please be sure to upgrade Paid Memberships Pro to the latest "
|
2473 |
+
"versions when available.</strong>"
|
2474 |
+
msgstr ""
|
2475 |
+
"Tato platební brána je v beta verzi. Nekteré funkce nemusí být k dispozici. "
|
2476 |
+
"Obraťte se prosím na Memberships Pro s jakýmikoliv problémy, do kterých se "
|
2477 |
+
"dostanete. <strong> Prosím ujistěte se, že jste aktualizovali Paid "
|
2478 |
+
"Memberships Pro na nejnovější verzi, která je k dispozici.</strong>"
|
2479 |
+
|
2480 |
+
#: classes/gateways/class.pmprogateway_cybersource.php:114
|
2481 |
+
#: adminpages/paymentsettings.php:372 adminpages/paymentsettings.php:377
|
2482 |
+
msgid "Transaction Security Key"
|
2483 |
+
msgstr "Bezpečnostní klíč transakce"
|
2484 |
+
|
2485 |
+
#: classes/gateways/class.pmprogateway_payflowpro.php:39
|
2486 |
+
msgid "Payflow Pro/PayPal Pro"
|
2487 |
+
msgstr "Payflow Pro/PayPal Pro"
|
2488 |
+
|
2489 |
+
#: classes/gateways/class.pmprogateway_payflowpro.php:95
|
2490 |
+
msgid "Payflow Pro Settings"
|
2491 |
+
msgstr "Nastavení Payflow Pro"
|
2492 |
+
|
2493 |
+
#: classes/gateways/class.pmprogateway_payflowpro.php:100
|
2494 |
+
#: adminpages/paymentsettings.php:195 adminpages/paymentsettings.php:199
|
2495 |
+
#: adminpages/paymentsettings.php:204
|
2496 |
+
msgid "Partner"
|
2497 |
+
msgstr "Partner"
|
2498 |
+
|
2499 |
+
#: classes/gateways/class.pmprogateway_payflowpro.php:108
|
2500 |
+
#: adminpages/paymentsettings.php:203 adminpages/paymentsettings.php:207
|
2501 |
+
#: adminpages/paymentsettings.php:212
|
2502 |
+
msgid "Vendor"
|
2503 |
+
msgstr "Prodejce"
|
2504 |
+
|
2505 |
+
#: classes/gateways/class.pmprogateway_payflowpro.php:124
|
2506 |
+
#: pages/checkout.php:180 adminpages/paymentsettings.php:219
|
2507 |
+
#: adminpages/paymentsettings.php:223 adminpages/paymentsettings.php:228
|
2508 |
+
#: pages/checkout.php:177 pages/checkout.php:182
|
2509 |
+
msgid "Password"
|
2510 |
+
msgstr "Heslo"
|
2511 |
+
|
2512 |
+
#: classes/gateways/class.pmprogateway_payflowpro.php:132
|
2513 |
+
msgid "IPN Handler"
|
2514 |
+
msgstr "IPN Handler"
|
2515 |
+
|
2516 |
+
#: classes/gateways/class.pmprogateway_payflowpro.php:137
|
2517 |
+
#, php-format
|
2518 |
+
msgid ""
|
2519 |
+
"Payflow does not use IPN. To sync recurring subscriptions, please see <a "
|
2520 |
+
"target=\"_blank\" href=\"%s\">this addon</a>."
|
2521 |
+
msgstr ""
|
2522 |
+
"Payflow nepoužívá IPN. Chcete-li synchronizovat opakující se předplatné, viz "
|
2523 |
+
"<a target=\"_blank\" href=\"%s\">tento doplněk</a>."
|
2524 |
+
|
2525 |
+
#: classes/gateways/class.pmprogateway_payflowpro.php:194
|
2526 |
+
#: classes/gateways/class.pmprogateway_paypal.php:277
|
2527 |
#: classes/gateways/class.pmprogateway_payflowpro.php:57
|
2528 |
#: classes/gateways/class.pmprogateway_paypal.php:57
|
2529 |
msgid ""
|
2530 |
"A partial payment was made that we could not refund. Please contact the site "
|
2531 |
"owner immediately to correct this."
|
2532 |
msgstr ""
|
2533 |
+
"Byla provedena částečná platba, kterou nemůžeme vrátit. Pro nápravu se "
|
2534 |
+
"obraťte co nejdříve na vlastníka webu."
|
2535 |
|
2536 |
+
#: classes/gateways/class.pmprogateway_paypal.php:57
|
2537 |
+
#: paid-memberships-pro.php:119
|
2538 |
+
msgid "PayPal Website Payments Pro"
|
2539 |
+
msgstr "PayPal Website Payments Pro"
|
2540 |
+
|
2541 |
+
#: classes/gateways/class.pmprogateway_paypal.php:113
|
2542 |
+
#: classes/gateways/class.pmprogateway_paypalexpress.php:118
|
2543 |
+
#: classes/gateways/class.pmprogateway_paypalstandard.php:112
|
2544 |
+
msgid "PayPal Settings"
|
2545 |
+
msgstr "Nastavení PayPal"
|
2546 |
+
|
2547 |
+
#: classes/gateways/class.pmprogateway_paypal.php:118
|
2548 |
+
#: classes/gateways/class.pmprogateway_paypalexpress.php:123
|
2549 |
+
#: classes/gateways/class.pmprogateway_paypalstandard.php:117
|
2550 |
+
#: adminpages/paymentsettings.php:179
|
2551 |
+
msgid ""
|
2552 |
+
"We do not recommend using PayPal Standard. We suggest using PayPal Express, "
|
2553 |
+
"Website Payments Pro (Legacy), or PayPal Pro (Payflow Pro). <a target="
|
2554 |
+
"\"_blank\" href=\"http://www.paidmembershipspro.com/2013/09/read-using-"
|
2555 |
+
"paypal-standard-paid-memberships-pro/\">More information on why can be found "
|
2556 |
+
"here.</a>"
|
2557 |
+
msgstr ""
|
2558 |
+
"Nedoporučujeme používat PayPal Standard. Doporučujeme používat PayPal "
|
2559 |
+
"Express, Website Payments Pro (Legacy), nebo PayPal Pro (Payflow Pro). <a "
|
2560 |
+
"target=\"_blank\" href=\"http://www.paidmembershipspro.com/2013/09/read-"
|
2561 |
+
"using-paypal-standard-paid-memberships-pro/\">Více informací o tom je možné "
|
2562 |
+
"nalézt zde.</a>"
|
2563 |
+
|
2564 |
+
#: classes/gateways/class.pmprogateway_paypal.php:123
|
2565 |
+
#: classes/gateways/class.pmprogateway_paypalexpress.php:128
|
2566 |
+
#: classes/gateways/class.pmprogateway_paypalstandard.php:122
|
2567 |
+
#: adminpages/paymentsettings.php:227 adminpages/paymentsettings.php:231
|
2568 |
+
#: adminpages/paymentsettings.php:236
|
2569 |
+
msgid "Gateway Account Email"
|
2570 |
+
msgstr "E-mail účtu brány"
|
2571 |
+
|
2572 |
+
#: classes/gateways/class.pmprogateway_paypal.php:131
|
2573 |
+
#: classes/gateways/class.pmprogateway_paypalexpress.php:136
|
2574 |
+
#: classes/gateways/class.pmprogateway_paypalstandard.php:130
|
2575 |
+
#: classes/gateways/class.pmprogateway_twocheckout.php:113
|
2576 |
+
#: adminpages/paymentsettings.php:235 adminpages/paymentsettings.php:239
|
2577 |
+
#: adminpages/paymentsettings.php:244 adminpages/paymentsettings.php:331
|
2578 |
+
#: adminpages/paymentsettings.php:336
|
2579 |
+
msgid "API Username"
|
2580 |
+
msgstr "Uživatelské jméno API"
|
2581 |
+
|
2582 |
+
#: classes/gateways/class.pmprogateway_paypal.php:139
|
2583 |
+
#: classes/gateways/class.pmprogateway_paypalexpress.php:144
|
2584 |
+
#: classes/gateways/class.pmprogateway_paypalstandard.php:138
|
2585 |
+
#: classes/gateways/class.pmprogateway_twocheckout.php:121
|
2586 |
+
#: adminpages/paymentsettings.php:243 adminpages/paymentsettings.php:247
|
2587 |
+
#: adminpages/paymentsettings.php:252 adminpages/paymentsettings.php:339
|
2588 |
+
#: adminpages/paymentsettings.php:344
|
2589 |
+
msgid "API Password"
|
2590 |
+
msgstr "Heslo API"
|
2591 |
+
|
2592 |
+
#: classes/gateways/class.pmprogateway_paypal.php:147
|
2593 |
+
#: classes/gateways/class.pmprogateway_paypalexpress.php:152
|
2594 |
+
#: classes/gateways/class.pmprogateway_paypalstandard.php:146
|
2595 |
+
#: adminpages/paymentsettings.php:251 adminpages/paymentsettings.php:255
|
2596 |
+
#: adminpages/paymentsettings.php:260
|
2597 |
+
msgid "API Signature"
|
2598 |
+
msgstr "Signatura API"
|
2599 |
+
|
2600 |
+
#: classes/gateways/class.pmprogateway_paypal.php:155
|
2601 |
+
#: classes/gateways/class.pmprogateway_paypalexpress.php:160
|
2602 |
+
#: classes/gateways/class.pmprogateway_paypalstandard.php:154
|
2603 |
+
#: adminpages/paymentsettings.php:446 adminpages/paymentsettings.php:479
|
2604 |
+
#: adminpages/paymentsettings.php:485 adminpages/paymentsettings.php:487
|
2605 |
+
msgid "IPN Handler URL"
|
2606 |
+
msgstr "URL IPN Handleru"
|
2607 |
+
|
2608 |
+
#: classes/gateways/class.pmprogateway_paypal.php:158
|
2609 |
+
msgid ""
|
2610 |
+
"This URL is passed to PayPal for all new charges and subscriptions. You "
|
2611 |
+
"SHOULD NOT set this in your PayPal account settings."
|
2612 |
+
msgstr ""
|
2613 |
+
"Tato URL adresa je předána PayPalu pro všechny nové debety a předplatné. "
|
2614 |
+
"NEMĚLI byste ji nastavovat v nastavení účtu PayPal."
|
2615 |
+
|
2616 |
+
#: classes/gateways/class.pmprogateway_paypal.php:178
|
2617 |
+
#: classes/gateways/class.pmprogateway_paypalexpress.php:402
|
2618 |
+
#: classes/gateways/class.pmprogateway_paypalstandard.php:202
|
2619 |
+
#: pages/checkout.php:286 pages/checkout.php:288 pages/checkout.php:302
|
2620 |
+
#: pages/checkout.php:309 pages/checkout.php:675 pages/checkout.php:682
|
2621 |
+
#: pages/checkout.php:685 pages/checkout.php:701
|
2622 |
+
msgid "Check Out with PayPal"
|
2623 |
+
msgstr "Zde zaplaťte pomocí PayPalu"
|
2624 |
+
|
2625 |
+
#: classes/gateways/class.pmprogateway_paypal.php:184
|
2626 |
+
#: classes/gateways/class.pmprogateway_paypalexpress.php:408
|
2627 |
+
#: classes/gateways/class.pmprogateway_paypalstandard.php:208
|
2628 |
+
#: pages/checkout.php:704 pages/checkout.php:681 pages/checkout.php:688
|
2629 |
+
#: pages/checkout.php:691 pages/checkout.php:707
|
2630 |
+
msgid "Submit and Check Out"
|
2631 |
+
msgstr "Odeslat a zaplatit"
|
2632 |
+
|
2633 |
+
#: classes/gateways/class.pmprogateway_paypal.php:184
|
2634 |
+
#: classes/gateways/class.pmprogateway_paypalexpress.php:408
|
2635 |
+
#: classes/gateways/class.pmprogateway_paypalstandard.php:208
|
2636 |
+
#: classes/gateways/class.pmprogateway_twocheckout.php:192
|
2637 |
+
#: pages/checkout.php:704 pages/checkout.php:681 pages/checkout.php:688
|
2638 |
+
#: pages/checkout.php:691 pages/checkout.php:707
|
2639 |
+
msgid "Submit and Confirm"
|
2640 |
+
msgstr "Odeslat a potvrdit"
|
2641 |
+
|
2642 |
+
#: classes/gateways/class.pmprogateway_paypal.php:605
|
2643 |
+
#: classes/gateways/class.pmprogateway_paypalexpress.php:731
|
2644 |
+
#: classes/gateways/class.pmprogateway_paypalstandard.php:466
|
2645 |
+
#: classes/gateways/class.pmprogateway_paypal.php:385
|
2646 |
+
#: classes/gateways/class.pmprogateway_paypalexpress.php:301
|
2647 |
+
#: classes/gateways/class.pmprogateway_paypalexpress.php:303
|
2648 |
+
#: classes/gateways/class.pmprogateway_paypalexpress.php:305
|
2649 |
+
#: classes/gateways/class.pmprogateway_paypalstandard.php:216
|
2650 |
+
#: classes/gateways/class.pmprogateway_paypalstandard.php:220
|
2651 |
+
#: classes/gateways/class.pmprogateway_paypalstandard.php:230
|
2652 |
+
#: classes/gateways/class.pmprogateway_paypalstandard.php:231
|
2653 |
+
msgid ""
|
2654 |
+
"Please contact the site owner or cancel your subscription from within PayPal "
|
2655 |
+
"to make sure you are not charged going forward."
|
2656 |
+
msgstr ""
|
2657 |
+
"Prosíme obraťte se na vlastníka stránky nebo zrušte předplatné v rámci "
|
2658 |
+
"PayPal a ujistěte se, že Vám nebude do budoucna účtováno."
|
2659 |
+
|
2660 |
+
#: classes/gateways/class.pmprogateway_paypalexpress.php:63
|
2661 |
+
#: paid-memberships-pro.php:118
|
2662 |
+
msgid "PayPal Express"
|
2663 |
+
msgstr "PayPal Express"
|
2664 |
+
|
2665 |
+
#: classes/gateways/class.pmprogateway_paypalexpress.php:163
|
2666 |
+
#: adminpages/paymentsettings.php:449 adminpages/paymentsettings.php:482
|
2667 |
+
#: adminpages/paymentsettings.php:488 adminpages/paymentsettings.php:490
|
2668 |
+
msgid "To fully integrate with PayPal, be sure to set your IPN Handler URL to "
|
2669 |
+
msgstr "Chcete-li plně integrovat PayPal, nastavte IPN Handler URL na"
|
2670 |
+
|
2671 |
+
#: classes/gateways/class.pmprogateway_paypalexpress.php:268
|
2672 |
+
#: classes/gateways/class.pmprogateway_paypalexpress.php:320
|
2673 |
+
#: preheaders/checkout.php:690 preheaders/checkout.php:697
|
2674 |
+
#: preheaders/checkout.php:702 preheaders/checkout.php:735
|
2675 |
+
#: preheaders/checkout.php:750 preheaders/checkout.php:753
|
2676 |
+
#: preheaders/checkout.php:754 preheaders/checkout.php:757
|
2677 |
+
#: preheaders/checkout.php:762 preheaders/checkout.php:803
|
2678 |
+
#: preheaders/checkout.php:822 preheaders/checkout.php:823
|
2679 |
+
msgid "The PayPal Token was lost."
|
2680 |
+
msgstr "Paypal Token byl ztracen."
|
2681 |
+
|
2682 |
+
#: classes/gateways/class.pmprogateway_paypalstandard.php:60
|
2683 |
+
#: paid-memberships-pro.php:121
|
2684 |
+
msgid "PayPal Standard"
|
2685 |
+
msgstr "PayPal Standard"
|
2686 |
+
|
2687 |
+
#: classes/gateways/class.pmprogateway_paypalstandard.php:157
|
2688 |
+
msgid ""
|
2689 |
+
"Here is your IPN URL for reference. You SHOULD NOT set this in your PayPal "
|
2690 |
+
"settings."
|
2691 |
+
msgstr ""
|
2692 |
+
"Tady je váš IPN URL pro referenci. Toto byste NEMĚLI nastavit v nastavení "
|
2693 |
+
"PayPal."
|
2694 |
+
|
2695 |
+
#: classes/gateways/class.pmprogateway_stripe.php:93
|
2696 |
+
#: paid-memberships-pro.php:117
|
2697 |
+
msgid "Stripe"
|
2698 |
+
msgstr "Stripe"
|
2699 |
+
|
2700 |
+
#: classes/gateways/class.pmprogateway_stripe.php:148
|
2701 |
+
msgid "Stripe Settings"
|
2702 |
+
msgstr "Nastavení Stripe"
|
2703 |
+
|
2704 |
+
#: classes/gateways/class.pmprogateway_stripe.php:153
|
2705 |
+
#: adminpages/paymentsettings.php:277 adminpages/paymentsettings.php:281
|
2706 |
+
#: adminpages/paymentsettings.php:286
|
2707 |
+
msgid "Secret Key"
|
2708 |
+
msgstr "Tajný klíč"
|
2709 |
+
|
2710 |
+
#: classes/gateways/class.pmprogateway_stripe.php:161
|
2711 |
+
#: adminpages/paymentsettings.php:285 adminpages/paymentsettings.php:289
|
2712 |
+
#: adminpages/paymentsettings.php:294
|
2713 |
+
msgid "Publishable Key"
|
2714 |
+
msgstr "Veřejný klíč"
|
2715 |
+
|
2716 |
+
#: classes/gateways/class.pmprogateway_stripe.php:169
|
2717 |
+
#: adminpages/paymentsettings.php:425 adminpages/paymentsettings.php:430
|
2718 |
+
#: adminpages/paymentsettings.php:432
|
2719 |
+
msgid "Show Billing Address Fields"
|
2720 |
+
msgstr "Zobrazit pole fakturační adresy"
|
2721 |
+
|
2722 |
+
#: classes/gateways/class.pmprogateway_stripe.php:176
|
2723 |
+
#: adminpages/paymentsettings.php:437 adminpages/paymentsettings.php:439
|
2724 |
+
msgid ""
|
2725 |
+
"Stripe doesn't require billing address fields. Choose 'No' to hide them on "
|
2726 |
+
"the checkout page.<br /><strong>If No, make sure you disable address "
|
2727 |
+
"verification in the Stripe dashboard settings.</strong>"
|
2728 |
+
msgstr ""
|
2729 |
+
"Stripe nevyžaduje pole fakturační adresy. Zvolte 'Ne' pro jejich skrytí na "
|
2730 |
+
"stránce pokladny.<br /><strong>Pokud zvolíte Ne, ujistěte se, že jste "
|
2731 |
+
"zakázali ověření adresy v ovládacím panelu Stripe.</strong>"
|
2732 |
+
|
2733 |
+
#: classes/gateways/class.pmprogateway_stripe.php:184
|
2734 |
+
#: adminpages/paymentsettings.php:465 adminpages/paymentsettings.php:506
|
2735 |
+
#: adminpages/paymentsettings.php:512 adminpages/paymentsettings.php:514
|
2736 |
+
msgid "To fully integrate with Stripe, be sure to set your Web Hook URL to"
|
2737 |
+
msgstr ""
|
2738 |
+
"Chcete-li plně integrovat Stripe, ujistěte se, že máte správně nastaven URL "
|
2739 |
+
"Web Hook na"
|
2740 |
+
|
2741 |
+
#: classes/gateways/class.pmprogateway_stripe.php:567
|
2742 |
+
msgid "Subscription Updates"
|
2743 |
+
msgstr "Aktualizace předplatného"
|
2744 |
+
|
2745 |
+
#: classes/gateways/class.pmprogateway_stripe.php:571
|
2746 |
+
msgid ""
|
2747 |
+
"Subscription updates, allow you to change the member's subscription values "
|
2748 |
+
"at predefined times. Be sure to click Update Profile after making changes."
|
2749 |
+
msgstr ""
|
2750 |
+
"Aktualizace předplatného, umožňují změnit hodnoty předplatného v nastaveném "
|
2751 |
+
"čase. Ujistěte se, že po provedení změn klepnete na tlačítko Aktualizovat "
|
2752 |
+
"profil."
|
2753 |
+
|
2754 |
+
#: classes/gateways/class.pmprogateway_stripe.php:573
|
2755 |
+
msgid ""
|
2756 |
+
"Subscription updates, allow you to change the member's subscription values "
|
2757 |
+
"at predefined times. Be sure to click Update User after making changes."
|
2758 |
+
msgstr ""
|
2759 |
+
"Aktualizace předplatného, umožňují změnit hodnoty předplatného v nastaveném "
|
2760 |
+
"čase. Ujistěte se, že po provedení změn klepnete na tlačítko Aktualizovat "
|
2761 |
+
"uživatele."
|
2762 |
+
|
2763 |
+
#: classes/gateways/class.pmprogateway_stripe.php:578 pages/billing.php:329
|
2764 |
+
#: pages/billing.php:294 pages/billing.php:298
|
2765 |
+
msgid "Update"
|
2766 |
+
msgstr "Aktualizovat"
|
2767 |
+
|
2768 |
+
#: classes/gateways/class.pmprogateway_stripe.php:769
|
2769 |
+
msgid "Could not cancel the old subscription. Updates have not been processed."
|
2770 |
+
msgstr "Nemohu zrušit staré předplatné. Aktualizace nebyly zpracovány."
|
2771 |
+
|
2772 |
+
#: classes/gateways/class.pmprogateway_stripe.php:1188
|
2773 |
#: classes/gateways/class.pmprogateway_stripe.php:190
|
2774 |
+
#: classes/gateways/class.pmprogateway_stripe.php:192
|
2775 |
+
#: classes/gateways/class.pmprogateway_stripe.php:199
|
2776 |
+
#: classes/gateways/class.pmprogateway_stripe.php:201
|
2777 |
+
#: classes/gateways/class.pmprogateway_stripe.php:1187
|
2778 |
msgid "Error creating customer record with Stripe:"
|
2779 |
+
msgstr "Chyba při vytváření záznamu zákazníka Stripe:"
|
2780 |
|
2781 |
+
#: classes/gateways/class.pmprogateway_stripe.php:1245
|
2782 |
+
#: classes/gateways/class.pmprogateway_stripe.php:1391
|
2783 |
#: classes/gateways/class.pmprogateway_stripe.php:278
|
2784 |
+
#: classes/gateways/class.pmprogateway_stripe.php:279
|
2785 |
+
#: classes/gateways/class.pmprogateway_stripe.php:286
|
2786 |
+
#: classes/gateways/class.pmprogateway_stripe.php:302
|
2787 |
+
#: classes/gateways/class.pmprogateway_stripe.php:308
|
2788 |
+
#: classes/gateways/class.pmprogateway_stripe.php:311
|
2789 |
+
#: classes/gateways/class.pmprogateway_stripe.php:1244
|
2790 |
+
#: classes/gateways/class.pmprogateway_stripe.php:1390
|
2791 |
msgid "Error creating plan with Stripe:"
|
2792 |
+
msgstr "Chyba při vytváření plánu předplatného Stripe:"
|
2793 |
|
2794 |
+
#: classes/gateways/class.pmprogateway_stripe.php:1421
|
2795 |
#: classes/gateways/class.pmprogateway_stripe.php:294
|
2796 |
+
#: classes/gateways/class.pmprogateway_stripe.php:295
|
2797 |
+
#: classes/gateways/class.pmprogateway_stripe.php:302
|
2798 |
+
#: classes/gateways/class.pmprogateway_stripe.php:318
|
2799 |
+
#: classes/gateways/class.pmprogateway_stripe.php:324
|
2800 |
+
#: classes/gateways/class.pmprogateway_stripe.php:330
|
2801 |
+
#: classes/gateways/class.pmprogateway_stripe.php:1420
|
2802 |
msgid "Error subscribing customer to plan with Stripe:"
|
2803 |
+
msgstr "Chyba při přihlášení zákazníka k plánu předplatného Stripe:"
|
2804 |
+
|
2805 |
+
#: classes/gateways/class.pmprogateway_stripe.php:1517
|
2806 |
+
#: classes/gateways/class.pmprogateway_stripe.php:383
|
2807 |
+
#: classes/gateways/class.pmprogateway_stripe.php:389
|
2808 |
+
#: classes/gateways/class.pmprogateway_stripe.php:410
|
2809 |
+
#: classes/gateways/class.pmprogateway_stripe.php:1516
|
2810 |
+
msgid "Could not cancel old subscription."
|
2811 |
+
msgstr "Nelze zrušit staré předplatné."
|
2812 |
+
|
2813 |
+
#: classes/gateways/class.pmprogateway_stripe.php:1534
|
2814 |
+
#: classes/gateways/class.pmprogateway_stripe.php:1533
|
2815 |
+
msgid "Could not find the customer."
|
2816 |
+
msgstr "Nelze najít zákazníka."
|
2817 |
+
|
2818 |
+
#: classes/gateways/class.pmprogateway_twocheckout.php:53
|
2819 |
+
#: paid-memberships-pro.php:124
|
2820 |
+
msgid "2Checkout"
|
2821 |
+
msgstr "2Checkout"
|
2822 |
+
|
2823 |
+
#: classes/gateways/class.pmprogateway_twocheckout.php:108
|
2824 |
+
msgid "2Checkout Settings"
|
2825 |
+
msgstr "Nastavení 2Checkout"
|
2826 |
+
|
2827 |
+
#: classes/gateways/class.pmprogateway_twocheckout.php:137
|
2828 |
+
#: adminpages/paymentsettings.php:355 adminpages/paymentsettings.php:360
|
2829 |
+
msgid "Secret Word"
|
2830 |
+
msgstr "Tajné slovo"
|
2831 |
+
|
2832 |
+
#: classes/gateways/class.pmprogateway_twocheckout.php:145
|
2833 |
+
#: adminpages/paymentsettings.php:487 adminpages/paymentsettings.php:493
|
2834 |
+
#: adminpages/paymentsettings.php:495
|
2835 |
+
msgid "TwoCheckout INS URL"
|
2836 |
+
msgstr "URL 2Checkout INS"
|
2837 |
+
|
2838 |
+
#: classes/gateways/class.pmprogateway_twocheckout.php:148
|
2839 |
+
#: adminpages/paymentsettings.php:490 adminpages/paymentsettings.php:496
|
2840 |
+
#: adminpages/paymentsettings.php:498
|
2841 |
+
msgid ""
|
2842 |
+
"To fully integrate with 2Checkout, be sure to set your 2Checkout INS URL "
|
2843 |
+
msgstr ""
|
2844 |
+
"Chcete-li plně integrovat 2Checkout, ujistěte se že jste nastavili URL "
|
2845 |
+
"2Checkout INS"
|
2846 |
+
|
2847 |
+
#: classes/gateways/class.pmprogateway_twocheckout.php:192
|
2848 |
+
msgid "Check Out with 2Checkout"
|
2849 |
+
msgstr "Zaplatit pomocí 2Checkout"
|
2850 |
|
2851 |
+
#: includes/adminpages.php:47 includes/adminpages.php:9
|
2852 |
+
#: includes/adminpages.php:39 includes/adminpages.php:93
|
2853 |
+
#: includes/adminpages.php:100
|
2854 |
msgid "Memberships"
|
2855 |
msgstr "Členství"
|
2856 |
|
2857 |
+
#: includes/adminpages.php:48 includes/adminpages.php:114
|
2858 |
#: includes/adminpages.php:10 includes/adminpages.php:49
|
2859 |
+
#: includes/adminpages.php:107
|
2860 |
msgid "Page Settings"
|
2861 |
msgstr "Nastavení stránek"
|
2862 |
|
2863 |
+
#: includes/adminpages.php:49 includes/adminpages.php:121
|
2864 |
#: includes/adminpages.php:11 includes/adminpages.php:54
|
2865 |
+
#: includes/adminpages.php:114
|
2866 |
msgid "Payment Settings"
|
2867 |
msgstr "Nastavení plateb"
|
2868 |
|
2869 |
+
#: includes/adminpages.php:54 includes/adminpages.php:156
|
2870 |
#: includes/adminpages.php:16 includes/adminpages.php:79
|
2871 |
+
#: includes/adminpages.php:149
|
2872 |
msgid "Reports"
|
2873 |
+
msgstr "Výkazy"
|
2874 |
|
2875 |
+
#: includes/adminpages.php:56 includes/adminpages.php:170
|
2876 |
#: includes/adminpages.php:18 includes/adminpages.php:89
|
2877 |
+
#: includes/adminpages.php:163
|
2878 |
msgid "Discount Codes"
|
2879 |
+
msgstr "Slevové kódy"
|
2880 |
|
2881 |
+
#: includes/adminpages.php:100
|
2882 |
+
msgid "<span class=\"ab-icon\"></span>Memberships"
|
2883 |
+
msgstr "<span class=\"ab-icon\"></span>Členství"
|
2884 |
+
|
2885 |
+
#: includes/adminpages.php:261
|
2886 |
+
msgid "Docs"
|
2887 |
+
msgstr "Dokumenty"
|
2888 |
+
|
2889 |
+
#: includes/adminpages.php:261
|
2890 |
+
msgid "View PMPro Documentation"
|
2891 |
+
msgstr "Zobrazit dokumentaci PMPro"
|
2892 |
|
2893 |
+
#: includes/adminpages.php:262
|
2894 |
+
msgid "Support"
|
2895 |
+
msgstr "Podpora"
|
2896 |
+
|
2897 |
+
#: includes/adminpages.php:262
|
2898 |
+
msgid "Visit Customer Support Forum"
|
2899 |
+
msgstr "Navštivte fórum podpory zákazníků"
|
2900 |
+
|
2901 |
+
#: includes/currencies.php:7 includes/currencies.php:68
|
2902 |
+
#: includes/currencies.php:37 includes/currencies.php:44
|
2903 |
+
#: includes/currencies.php:64
|
2904 |
msgid "US Dollars ($)"
|
2905 |
+
msgstr "americký dolar ($)"
|
2906 |
|
2907 |
+
#: includes/currencies.php:9 includes/currencies.php:71
|
2908 |
+
#: includes/currencies.php:8 includes/currencies.php:40
|
2909 |
+
#: includes/currencies.php:47 includes/currencies.php:67
|
2910 |
msgid "Euros (€)"
|
2911 |
+
msgstr "euro (€)"
|
2912 |
|
2913 |
+
#: includes/currencies.php:14 includes/currencies.php:70
|
2914 |
+
#: includes/currencies.php:9 includes/currencies.php:39
|
2915 |
+
#: includes/currencies.php:46 includes/currencies.php:66
|
2916 |
msgid "Pounds Sterling (£)"
|
2917 |
+
msgstr "britská libra (£)"
|
2918 |
|
2919 |
+
#: includes/currencies.php:18 includes/currencies.php:10
|
2920 |
msgid "Australian Dollars ($)"
|
2921 |
+
msgstr "australský dolar ($)"
|
2922 |
|
2923 |
+
#: includes/currencies.php:20
|
2924 |
+
msgid "Brazilian Real (R$)"
|
2925 |
+
msgstr "brazilský real (R$)"
|
2926 |
|
2927 |
+
#: includes/currencies.php:24 includes/currencies.php:69
|
2928 |
+
#: includes/currencies.php:12 includes/currencies.php:38
|
2929 |
+
#: includes/currencies.php:45 includes/currencies.php:65
|
2930 |
msgid "Canadian Dollars ($)"
|
2931 |
+
msgstr "kanadský dolar ($)"
|
2932 |
|
2933 |
+
#: includes/currencies.php:25 includes/currencies.php:13
|
2934 |
msgid "Chinese Yuan"
|
2935 |
+
msgstr "čínský jüan"
|
2936 |
|
2937 |
+
#: includes/currencies.php:26 includes/currencies.php:13
|
2938 |
+
#: includes/currencies.php:14
|
2939 |
msgid "Czech Koruna"
|
2940 |
+
msgstr "česká koruna (Kč)"
|
2941 |
|
2942 |
+
#: includes/currencies.php:27 includes/currencies.php:14
|
2943 |
+
#: includes/currencies.php:15
|
2944 |
msgid "Danish Krone"
|
2945 |
+
msgstr "dánská koruna"
|
2946 |
|
2947 |
+
#: includes/currencies.php:28 includes/currencies.php:15
|
2948 |
+
#: includes/currencies.php:16
|
2949 |
msgid "Hong Kong Dollar ($)"
|
2950 |
+
msgstr "hongkongský dolar ($)"
|
2951 |
|
2952 |
+
#: includes/currencies.php:29 includes/currencies.php:16
|
2953 |
+
#: includes/currencies.php:17
|
2954 |
msgid "Hungarian Forint"
|
2955 |
+
msgstr "maďarský forint"
|
2956 |
|
2957 |
+
#: includes/currencies.php:30 includes/currencies.php:18
|
2958 |
msgid "Indian Rupee"
|
2959 |
+
msgstr "indická rupie"
|
2960 |
|
2961 |
+
#: includes/currencies.php:31 includes/currencies.php:19
|
2962 |
msgid "Indonesia Rupiah"
|
2963 |
+
msgstr "indonéská rupie"
|
2964 |
|
2965 |
+
#: includes/currencies.php:32 includes/currencies.php:17
|
2966 |
+
#: includes/currencies.php:20
|
2967 |
msgid "Israeli Shekel"
|
2968 |
+
msgstr "izraelský šekel"
|
2969 |
|
2970 |
+
#: includes/currencies.php:34 includes/currencies.php:18
|
2971 |
+
#: includes/currencies.php:21
|
2972 |
msgid "Japanese Yen (¥)"
|
2973 |
+
msgstr "japonský jen (¥)"
|
2974 |
|
2975 |
+
#: includes/currencies.php:38 includes/currencies.php:19
|
2976 |
+
#: includes/currencies.php:22
|
2977 |
msgid "Malaysian Ringgits"
|
2978 |
+
msgstr "malajsijský ringgit"
|
2979 |
|
2980 |
+
#: includes/currencies.php:39 includes/currencies.php:20
|
2981 |
+
#: includes/currencies.php:23
|
2982 |
msgid "Mexican Peso ($)"
|
2983 |
+
msgstr "mexické peso ($)"
|
2984 |
|
2985 |
+
#: includes/currencies.php:40 includes/currencies.php:21
|
2986 |
+
#: includes/currencies.php:24
|
2987 |
msgid "New Zealand Dollar ($)"
|
2988 |
+
msgstr "novozélanský dolar ($)"
|
2989 |
|
2990 |
+
#: includes/currencies.php:41 includes/currencies.php:22
|
2991 |
+
#: includes/currencies.php:25
|
2992 |
msgid "Norwegian Krone"
|
2993 |
+
msgstr "norská koruna"
|
2994 |
|
2995 |
+
#: includes/currencies.php:42 includes/currencies.php:23
|
2996 |
+
#: includes/currencies.php:26
|
2997 |
msgid "Philippine Pesos"
|
2998 |
+
msgstr "filipínské peso"
|
2999 |
|
3000 |
+
#: includes/currencies.php:43 includes/currencies.php:24
|
3001 |
+
#: includes/currencies.php:27
|
3002 |
msgid "Polish Zloty"
|
3003 |
+
msgstr "polský zlotý"
|
3004 |
|
3005 |
+
#: includes/currencies.php:45 includes/currencies.php:25
|
3006 |
+
#: includes/currencies.php:28
|
3007 |
msgid "Singapore Dollar ($)"
|
3008 |
+
msgstr "singapurský dolar ($)"
|
3009 |
|
3010 |
+
#: includes/currencies.php:50
|
3011 |
+
msgid "South African Rand (R)"
|
3012 |
+
msgstr "jihoafrický rand (R)"
|
3013 |
|
3014 |
+
#: includes/currencies.php:54 includes/currencies.php:30
|
3015 |
+
#: includes/currencies.php:50
|
3016 |
msgid "South Korean Won"
|
3017 |
+
msgstr "jihokorejský won"
|
3018 |
|
3019 |
+
#: includes/currencies.php:55 includes/currencies.php:26
|
3020 |
+
#: includes/currencies.php:31 includes/currencies.php:51
|
3021 |
msgid "Swedish Krona"
|
3022 |
msgstr "švédská koruna"
|
3023 |
|
3024 |
+
#: includes/currencies.php:56 includes/currencies.php:27
|
3025 |
+
#: includes/currencies.php:32 includes/currencies.php:52
|
3026 |
msgid "Swiss Franc"
|
3027 |
+
msgstr "švýcarský frank"
|
3028 |
|
3029 |
+
#: includes/currencies.php:57 includes/currencies.php:28
|
3030 |
+
#: includes/currencies.php:33 includes/currencies.php:53
|
3031 |
msgid "Taiwan New Dollars"
|
3032 |
+
msgstr "nový tchajwanský dolar"
|
3033 |
|
3034 |
+
#: includes/currencies.php:58 includes/currencies.php:29
|
3035 |
+
#: includes/currencies.php:34 includes/currencies.php:54
|
3036 |
msgid "Thai Baht"
|
3037 |
+
msgstr "thajský baht"
|
3038 |
|
3039 |
+
#: includes/currencies.php:59 includes/currencies.php:35
|
3040 |
+
#: includes/currencies.php:55
|
3041 |
msgid "Turkish Lira"
|
3042 |
+
msgstr "turecká lira"
|
3043 |
|
3044 |
+
#: includes/currencies.php:60 includes/currencies.php:36
|
3045 |
+
#: includes/currencies.php:56
|
3046 |
msgid "Vietnamese Dong"
|
3047 |
+
msgstr "vietnamský dong"
|
3048 |
|
3049 |
+
#: includes/functions.php:203 includes/functions.php:160
|
3050 |
+
#: includes/functions.php:196 includes/functions.php:202
|
3051 |
+
#: includes/functions.php:204
|
3052 |
#, php-format
|
3053 |
msgid "The price for membership is <strong>%s</strong> now"
|
3054 |
msgstr "Cena za členství je nyní <strong>%s</strong>"
|
3055 |
|
3056 |
+
#: includes/functions.php:205 includes/functions.php:204
|
3057 |
+
#: includes/functions.php:206
|
3058 |
+
#, php-format
|
3059 |
+
msgid "<strong>%s</strong> now"
|
3060 |
+
msgstr "<strong>%s</strong> nyní"
|
3061 |
+
|
3062 |
+
#: includes/functions.php:214 includes/functions.php:169
|
3063 |
+
#: includes/functions.php:205 includes/functions.php:213
|
3064 |
+
#: includes/functions.php:215
|
3065 |
#, php-format
|
3066 |
msgid " and then <strong>%s per %s for %d more %s</strong>."
|
3067 |
msgstr "a pak <strong>%s na %s pro %d další %s</strong>."
|
3068 |
|
3069 |
+
#: includes/functions.php:218 includes/functions.php:173
|
3070 |
+
#: includes/functions.php:209 includes/functions.php:217
|
3071 |
+
#: includes/functions.php:219
|
3072 |
#, php-format
|
3073 |
msgid " and then <strong>%s every %d %s for %d more %s</strong>."
|
3074 |
msgstr "a pak <strong>%s každý %d %s pro %d více %s</strong>."
|
3075 |
|
3076 |
+
#: includes/functions.php:223 includes/functions.php:178
|
3077 |
+
#: includes/functions.php:214 includes/functions.php:222
|
3078 |
+
#: includes/functions.php:224
|
3079 |
#, php-format
|
3080 |
msgid " and then <strong>%s after %d %s</strong>."
|
3081 |
msgstr "a pak <strong>%s po %d %s</strong>."
|
3082 |
|
3083 |
+
#: includes/functions.php:231 includes/functions.php:229
|
3084 |
+
#: includes/functions.php:230
|
3085 |
+
#, php-format
|
3086 |
+
msgid "The price for membership is <strong>%s per %s</strong>."
|
3087 |
+
msgstr "Cena členství je <strong>%s za %s</ strong>."
|
3088 |
+
|
3089 |
+
#: includes/functions.php:233
|
3090 |
+
#, php-format
|
3091 |
+
msgid "<strong>%s per %s</strong>."
|
3092 |
+
msgstr "<strong>%s za %s</strong>."
|
3093 |
+
|
3094 |
+
#: includes/functions.php:238 includes/functions.php:233
|
3095 |
+
#: includes/functions.php:234 includes/functions.php:235
|
3096 |
+
#, php-format
|
3097 |
+
msgid "The price for membership is <strong>%s every %d %s</strong>."
|
3098 |
+
msgstr "Cena členství je <strong>%s každý %d %s</strong>."
|
3099 |
+
|
3100 |
+
#: includes/functions.php:240
|
3101 |
+
#, php-format
|
3102 |
+
msgid "<strong>%s every %d %s</strong>."
|
3103 |
+
msgstr "<strong>%s každý %d %s</strong>."
|
3104 |
+
|
3105 |
+
#: includes/functions.php:245 includes/functions.php:184
|
3106 |
+
#: includes/functions.php:220 includes/functions.php:228
|
3107 |
+
#: includes/functions.php:238 includes/functions.php:239
|
3108 |
+
#: includes/functions.php:240
|
3109 |
#, php-format
|
3110 |
msgid " and then <strong>%s per %s</strong>."
|
3111 |
msgstr "a pak <strong>%s na %s</strong>."
|
3112 |
|
3113 |
+
#: includes/functions.php:249 includes/functions.php:188
|
3114 |
+
#: includes/functions.php:224 includes/functions.php:232
|
3115 |
+
#: includes/functions.php:242 includes/functions.php:243
|
3116 |
+
#: includes/functions.php:244
|
3117 |
#, php-format
|
3118 |
msgid " and then <strong>%s every %d %s</strong>."
|
3119 |
msgstr "a pak <strong>%s každý %d %s</strong>."
|
3120 |
|
3121 |
+
#: includes/functions.php:267 includes/functions.php:202
|
3122 |
+
#: includes/functions.php:238 includes/functions.php:249
|
3123 |
+
#: includes/functions.php:260 includes/functions.php:261
|
3124 |
+
#: includes/functions.php:262 pages/levels.php:82
|
3125 |
msgid "After your initial payment, your first payment is Free."
|
3126 |
+
msgstr "Po vaší počáteční platbě je vaše první platba zdarma."
|
3127 |
|
3128 |
+
#: includes/functions.php:271 includes/functions.php:206
|
3129 |
+
#: includes/functions.php:242 includes/functions.php:253
|
3130 |
+
#: includes/functions.php:264 includes/functions.php:265
|
3131 |
+
#: includes/functions.php:266 pages/levels.php:86
|
3132 |
#, php-format
|
3133 |
msgid "After your initial payment, your first %d payments are Free."
|
3134 |
+
msgstr "Po vaší počáteční platbě je vašich %d plateb zdarma."
|
3135 |
|
3136 |
+
#: includes/functions.php:278 includes/functions.php:213
|
3137 |
+
#: includes/functions.php:249 includes/functions.php:260
|
3138 |
+
#: includes/functions.php:271 includes/functions.php:272
|
3139 |
+
#: includes/functions.php:273 pages/levels.php:93
|
3140 |
#, php-format
|
3141 |
msgid "After your initial payment, your first payment will cost %s."
|
3142 |
+
msgstr "Po vaší počáteční platbě bude vaše první platba stát %s."
|
3143 |
|
3144 |
+
#: includes/functions.php:282 includes/functions.php:217
|
3145 |
+
#: includes/functions.php:253 includes/functions.php:264
|
3146 |
+
#: includes/functions.php:275 includes/functions.php:276
|
3147 |
+
#: includes/functions.php:277 pages/levels.php:97
|
3148 |
#, php-format
|
3149 |
msgid "After your initial payment, your first %d payments will cost %s."
|
3150 |
+
msgstr "Po vaší počáteční platbě bude vašich prvních %d plateb stát %s."
|
3151 |
|
3152 |
+
#: includes/functions.php:293 includes/functions.php:228
|
3153 |
+
#: includes/functions.php:264 includes/functions.php:275
|
3154 |
+
#: includes/functions.php:286 includes/functions.php:287
|
3155 |
+
#: includes/functions.php:288
|
3156 |
#, php-format
|
3157 |
msgid "Customers in %s will be charged %s%% tax."
|
3158 |
+
msgstr "Zákazníkům z %s bude účtována %s%% daň."
|
3159 |
|
3160 |
+
#: includes/functions.php:307 includes/functions.php:242
|
3161 |
+
#: includes/functions.php:278 includes/functions.php:289
|
3162 |
+
#: includes/functions.php:300 includes/functions.php:301
|
3163 |
+
#: includes/functions.php:302
|
3164 |
#, php-format
|
3165 |
msgid "Membership expires after %d %s."
|
3166 |
+
msgstr "Členství vyprší po %d %s."
|
3167 |
|
3168 |
+
#: includes/functions.php:569 includes/functions.php:491
|
3169 |
+
#: includes/functions.php:514 includes/functions.php:525
|
3170 |
+
#: includes/functions.php:536 includes/functions.php:537
|
3171 |
+
#: includes/functions.php:538 includes/functions.php:545
|
3172 |
msgid "User ID not found."
|
3173 |
+
msgstr "ID uživatele nebylo nenalezeno."
|
3174 |
|
3175 |
+
#: includes/functions.php:586 includes/functions.php:508
|
3176 |
+
#: includes/functions.php:531 includes/functions.php:542
|
3177 |
+
#: includes/functions.php:553 includes/functions.php:554
|
3178 |
+
#: includes/functions.php:555 includes/functions.php:562
|
3179 |
msgid "Invalid level."
|
3180 |
+
msgstr "Neplatná úroveň."
|
3181 |
|
3182 |
+
#: includes/functions.php:597 includes/functions.php:520
|
3183 |
+
#: includes/functions.php:542 includes/functions.php:553
|
3184 |
+
#: includes/functions.php:564 includes/functions.php:565
|
3185 |
+
#: includes/functions.php:566 includes/functions.php:573
|
3186 |
msgid "not changing?"
|
3187 |
+
msgstr "beze změny?"
|
3188 |
+
|
3189 |
+
#: includes/functions.php:614 includes/functions.php:673
|
3190 |
+
#: includes/functions.php:697 includes/functions.php:537
|
3191 |
+
#: includes/functions.php:559 includes/functions.php:570
|
3192 |
+
#: includes/functions.php:581 includes/functions.php:582
|
3193 |
+
#: includes/functions.php:583 includes/functions.php:590
|
3194 |
+
#: includes/functions.php:592 includes/functions.php:605
|
3195 |
+
#: includes/functions.php:617 includes/functions.php:626
|
3196 |
+
#: includes/functions.php:628 includes/functions.php:631
|
3197 |
+
#: includes/functions.php:632 includes/functions.php:633
|
3198 |
+
#: includes/functions.php:637 includes/functions.php:640
|
3199 |
+
#: includes/functions.php:649 includes/functions.php:656
|
3200 |
+
#: includes/functions.php:657
|
3201 |
msgid "Error interacting with database"
|
3202 |
+
msgstr "Chyba komunikace s databází"
|
3203 |
+
|
3204 |
+
#: includes/functions.php:738 includes/functions.php:777
|
3205 |
+
#: includes/functions.php:629 includes/functions.php:651
|
3206 |
+
#: includes/functions.php:667 includes/functions.php:668
|
3207 |
+
#: includes/functions.php:678 includes/functions.php:681
|
3208 |
+
#: includes/functions.php:690 includes/functions.php:697
|
3209 |
+
#: includes/functions.php:698 includes/functions.php:706
|
3210 |
+
#: includes/functions.php:714 includes/functions.php:717
|
3211 |
+
#: includes/functions.php:720 includes/functions.php:736
|
3212 |
+
#: includes/functions.php:737 includes/functions.php:753
|
3213 |
msgid "Membership level not found."
|
3214 |
+
msgstr "Úroveň členství nebyla nalezena."
|
3215 |
+
|
3216 |
+
#: includes/functions.php:1142 includes/functions.php:1100
|
3217 |
+
#: includes/functions.php:1101 includes/functions.php:1118
|
3218 |
+
msgid "No code was given to check."
|
3219 |
+
msgstr "Pro zkontrolování nebyl zadán žádný kód."
|
3220 |
+
|
3221 |
+
#: includes/functions.php:1151 includes/functions.php:1050
|
3222 |
+
#: includes/functions.php:1072 includes/functions.php:1088
|
3223 |
+
#: includes/functions.php:1099 includes/functions.php:1102
|
3224 |
+
#: includes/functions.php:1109 includes/functions.php:1110
|
3225 |
+
#: includes/functions.php:1112 includes/functions.php:1113
|
3226 |
+
#: includes/functions.php:1127
|
3227 |
msgid "The discount code could not be found."
|
3228 |
+
msgstr "Slevový kód nebyl nalezen."
|
3229 |
+
|
3230 |
+
#: includes/functions.php:1166 includes/functions.php:1066
|
3231 |
+
#: includes/functions.php:1088 includes/functions.php:1104
|
3232 |
+
#: includes/functions.php:1115 includes/functions.php:1118
|
3233 |
+
#: includes/functions.php:1124 includes/functions.php:1125
|
3234 |
+
#: includes/functions.php:1128 includes/functions.php:1129
|
3235 |
+
#: includes/functions.php:1142
|
3236 |
#, php-format
|
3237 |
msgid "This discount code goes into effect on %s."
|
3238 |
+
msgstr "Tento slevový kód nabude účinnosti %s."
|
3239 |
+
|
3240 |
+
#: includes/functions.php:1173 includes/functions.php:1075
|
3241 |
+
#: includes/functions.php:1097 includes/functions.php:1113
|
3242 |
+
#: includes/functions.php:1124 includes/functions.php:1127
|
3243 |
+
#: includes/functions.php:1131 includes/functions.php:1132
|
3244 |
+
#: includes/functions.php:1137 includes/functions.php:1138
|
3245 |
+
#: includes/functions.php:1149
|
3246 |
#, php-format
|
3247 |
msgid "This discount code expired on %s."
|
3248 |
+
msgstr "Tento slevový kód vyprší %s."
|
3249 |
+
|
3250 |
+
#: includes/functions.php:1183 includes/functions.php:1087
|
3251 |
+
#: includes/functions.php:1109 includes/functions.php:1125
|
3252 |
+
#: includes/functions.php:1136 includes/functions.php:1139
|
3253 |
+
#: includes/functions.php:1141 includes/functions.php:1142
|
3254 |
+
#: includes/functions.php:1149 includes/functions.php:1150
|
3255 |
+
#: includes/functions.php:1159
|
3256 |
msgid "This discount code is no longer valid."
|
3257 |
+
msgstr "Tento slevový kód již není platný."
|
3258 |
|
3259 |
+
#: includes/functions.php:1196 includes/functions.php:1102
|
3260 |
+
#: includes/functions.php:1124 includes/functions.php:1140
|
3261 |
+
#: includes/functions.php:1151 includes/functions.php:1154
|
3262 |
+
#: includes/functions.php:1155 includes/functions.php:1164
|
3263 |
+
#: includes/functions.php:1165 includes/functions.php:1172
|
3264 |
msgid "This discount code does not apply to this membership level."
|
3265 |
+
msgstr "Tento slevový kód se nevztahuje na tuto úroveň členství."
|
3266 |
+
|
3267 |
+
#: includes/functions.php:1222 includes/functions.php:1110
|
3268 |
+
#: includes/functions.php:1132 includes/functions.php:1148
|
3269 |
+
#: includes/functions.php:1159 includes/functions.php:1162
|
3270 |
+
#: includes/functions.php:1172 includes/functions.php:1180
|
3271 |
+
#: includes/functions.php:1181 includes/functions.php:1182
|
3272 |
+
#: includes/functions.php:1198
|
3273 |
msgid "This discount code is okay."
|
3274 |
+
msgstr "Tento slevový kód je v pořádku."
|
3275 |
|
3276 |
+
#: includes/functions.php:1247 includes/functions.php:1134
|
3277 |
+
#: includes/functions.php:1156 includes/functions.php:1172
|
3278 |
+
#: includes/functions.php:1183 includes/functions.php:1186
|
3279 |
+
#: includes/functions.php:1196 includes/functions.php:1205
|
3280 |
+
#: includes/functions.php:1206 includes/functions.php:1223
|
3281 |
msgid "and"
|
3282 |
msgstr "a"
|
3283 |
|
3284 |
+
#: includes/functions.php:1436 includes/functions.php:1319
|
3285 |
+
#: includes/functions.php:1341 includes/functions.php:1361
|
3286 |
+
#: includes/functions.php:1372 includes/functions.php:1375
|
3287 |
+
#: includes/functions.php:1385 includes/functions.php:1394
|
3288 |
+
#: includes/functions.php:1395 includes/functions.php:1412
|
3289 |
msgid "Sign Up for !!name!! Now"
|
3290 |
+
msgstr "Pro !!name!! se nyní přihlaste"
|
3291 |
|
3292 |
+
#: includes/functions.php:1442 includes/functions.php:1325
|
3293 |
+
#: includes/functions.php:1347 includes/functions.php:1367
|
3294 |
+
#: includes/functions.php:1378 includes/functions.php:1381
|
3295 |
+
#: includes/functions.php:1391 includes/functions.php:1400
|
3296 |
+
#: includes/functions.php:1401 includes/functions.php:1418
|
3297 |
msgid "Please specify a level id."
|
3298 |
+
msgstr "Prosím, zadejte ID úrovně."
|
3299 |
+
|
3300 |
+
#: includes/init.php:233 includes/profile.php:39 includes/init.php:229
|
3301 |
+
#: includes/init.php:232 includes/profile.php:37
|
3302 |
+
msgid "None"
|
3303 |
+
msgstr "žádný"
|
3304 |
|
3305 |
+
#: includes/localization.php:26 includes/localization.php:23
|
3306 |
msgid "Day"
|
3307 |
+
msgstr "den"
|
3308 |
|
3309 |
+
#: includes/localization.php:28 includes/localization.php:25
|
3310 |
msgid "Week"
|
3311 |
+
msgstr "týden"
|
3312 |
|
3313 |
+
#: includes/localization.php:30 includes/localization.php:27
|
3314 |
msgid "Month"
|
3315 |
+
msgstr "měsíc"
|
3316 |
|
3317 |
+
#: includes/localization.php:32 includes/localization.php:29
|
3318 |
msgid "Year"
|
3319 |
+
msgstr "rok"
|
3320 |
+
|
3321 |
+
#: includes/localization.php:37
|
3322 |
+
msgid "Days"
|
3323 |
+
msgstr "dny"
|
3324 |
+
|
3325 |
+
#: includes/localization.php:39
|
3326 |
+
msgid "Weeks"
|
3327 |
+
msgstr "týdny"
|
3328 |
+
|
3329 |
+
#: includes/localization.php:41
|
3330 |
+
msgid "Months"
|
3331 |
+
msgstr "měsíce"
|
3332 |
+
|
3333 |
+
#: includes/localization.php:43
|
3334 |
+
msgid "Years"
|
3335 |
+
msgstr "roky"
|
3336 |
|
3337 |
#: includes/metaboxes.php:38
|
3338 |
msgid ""
|
3339 |
"This post is already protected for this level because it is within a "
|
3340 |
"category that requires membership."
|
3341 |
msgstr ""
|
3342 |
+
"Tento příspěvek je pro tuto úroveň již chráněný, protože je v rámci "
|
3343 |
+
"kategorie vyžadující členství."
|
3344 |
|
3345 |
#: includes/metaboxes.php:99 includes/metaboxes.php:100
|
3346 |
msgid "Require Membership"
|
3348 |
|
3349 |
#: includes/profile.php:36 includes/profile.php:34
|
3350 |
msgid "Current Level"
|
3351 |
+
msgstr "Aktuální úroveň"
|
3352 |
|
3353 |
+
#: includes/profile.php:64
|
3354 |
+
msgid ""
|
3355 |
+
"This will not change the subscription at the gateway unless the 'Cancel' "
|
3356 |
+
"checkbox is selected below."
|
3357 |
+
msgstr ""
|
3358 |
+
"Toto nezmění předplatné u platební brány, ledaže by bylo zatrhnuto políčko "
|
3359 |
+
"'Storno' níže."
|
3360 |
|
3361 |
+
#: includes/upgradecheck.php:422 includes/upgradecheck.php:401
|
3362 |
+
#: includes/upgradecheck.php:410
|
3363 |
+
#, php-format
|
3364 |
+
msgid ""
|
3365 |
+
"This content is for !!levels!! members only.<br /><a href=\"%s\">Register</a>"
|
3366 |
+
msgstr ""
|
3367 |
+
"Tento obsah je určen pouze pro členy !!levels!!.<br /><a href=\"%s"
|
3368 |
+
"\">Zaregistrujte se</a>"
|
3369 |
|
3370 |
+
#: includes/upgradecheck.php:425 includes/upgradecheck.php:404
|
3371 |
+
#: includes/upgradecheck.php:413
|
3372 |
+
#, php-format
|
3373 |
+
msgid ""
|
3374 |
+
"This content is for !!levels!! members only.<br /><a href=\"%s\">Log In</a> "
|
3375 |
+
"<a href=\"%s\">Register</a>"
|
3376 |
+
msgstr ""
|
3377 |
+
"Tento obsah je určen pouze pro členy !!levels!!.<br /><a href=\"%s"
|
3378 |
+
"\">Přihlaste se</a> <a href=\"%s\">Zaregistrujte se</a>"
|
3379 |
|
3380 |
+
#: includes/upgradecheck.php:429 includes/upgradecheck.php:408
|
3381 |
+
#: includes/upgradecheck.php:417
|
3382 |
+
msgid ""
|
3383 |
+
"This content is for !!levels!! members only. Visit the site and log in/"
|
3384 |
+
"register to read."
|
3385 |
+
msgstr ""
|
3386 |
+
"Tento obsah je určen pouze pro členy !!levels!!. Pro čtení navštivte stránky "
|
3387 |
+
"a přihlaste se/zaregistrujte se."
|
3388 |
|
3389 |
+
#: pages/account.php:14 pages/cancel.php:48
|
3390 |
+
msgid "My Memberships"
|
3391 |
+
msgstr "Moje členství"
|
3392 |
|
3393 |
+
#: pages/account.php:18 pages/account.php:92 pages/billing.php:16
|
3394 |
+
#: pages/cancel.php:52 pages/invoice.php:109 pages/levels.php:13
|
3395 |
+
#: pages/account.php:12
|
3396 |
+
msgid "Level"
|
3397 |
+
msgstr "Úroveň"
|
3398 |
|
3399 |
+
#: pages/account.php:19
|
3400 |
+
msgid "Billing"
|
3401 |
+
msgstr "Fakturace"
|
|
|
3402 |
|
3403 |
+
#: pages/account.php:33 pages/levels.php:57 pages/levels.php:123
|
3404 |
+
msgid "Renew"
|
3405 |
+
msgstr "Obnovit"
|
|
|
3406 |
|
3407 |
+
#: pages/account.php:36
|
3408 |
+
msgid "Update Billing Info"
|
3409 |
+
msgstr "Upravit fakturační údaje"
|
3410 |
+
|
3411 |
+
#: pages/account.php:42
|
3412 |
+
msgid "Change"
|
3413 |
+
msgstr "Změnit"
|
3414 |
|
3415 |
+
#: pages/account.php:64
|
3416 |
+
msgid "View all Membership Options"
|
3417 |
+
msgstr "Zobrazit všechny možnosti členství"
|
3418 |
+
|
3419 |
+
#: pages/account.php:71 pages/account.php:46 pages/account.php:50
|
3420 |
msgid "My Account"
|
3421 |
msgstr "Muj účet"
|
3422 |
|
3423 |
+
#: pages/account.php:80 pages/account.php:55 pages/account.php:59
|
3424 |
msgid "Edit Profile"
|
3425 |
msgstr "Upravit profil"
|
3426 |
|
3427 |
+
#: pages/account.php:81 pages/account.php:56 pages/account.php:60
|
3428 |
msgid "Change Password"
|
3429 |
msgstr "Změnit heslo"
|
3430 |
|
3431 |
+
#: pages/account.php:87 pages/account.php:125 pages/account.php:129
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3432 |
msgid "Past Invoices"
|
3433 |
+
msgstr "Minulá vyúčtování"
|
3434 |
+
|
3435 |
+
#: pages/account.php:93
|
3436 |
+
msgid "Amount"
|
3437 |
+
msgstr "Částka"
|
3438 |
|
3439 |
+
#: pages/account.php:121 pages/account.php:140 pages/account.php:144
|
3440 |
msgid "View All Invoices"
|
3441 |
+
msgstr "Zobrazit všechna vyúčtování"
|
3442 |
|
3443 |
+
#: pages/account.php:128 pages/account.php:146 pages/account.php:150
|
3444 |
msgid "Member Links"
|
3445 |
+
msgstr "Odkazy pro členy"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3446 |
|
3447 |
#: pages/billing.php:14
|
3448 |
#, php-format
|
3453 |
msgid "logout"
|
3454 |
msgstr "odhlásit"
|
3455 |
|
3456 |
+
#: pages/billing.php:18 pages/account.php:14
|
3457 |
+
msgid "Membership Fee"
|
3458 |
+
msgstr "Členský příspěvek"
|
3459 |
+
|
3460 |
+
#: pages/billing.php:22 pages/account.php:18 pages/levels.php:70
|
3461 |
+
#, php-format
|
3462 |
+
msgid "%s every %d %s."
|
3463 |
+
msgstr "%s každý %d %s."
|
3464 |
+
|
3465 |
+
#: pages/billing.php:24 pages/account.php:20 pages/levels.php:66
|
3466 |
+
#, php-format
|
3467 |
+
msgid "%s per %s."
|
3468 |
+
msgstr "%s za %s."
|
3469 |
+
|
3470 |
+
#: pages/billing.php:33 pages/account.php:25 pages/account.php:29
|
3471 |
+
#: pages/billing.php:29
|
3472 |
+
msgid "Duration"
|
3473 |
+
msgstr "Doba trvání"
|
3474 |
+
|
3475 |
+
#: pages/billing.php:43 pages/billing.php:39
|
3476 |
msgid ""
|
3477 |
"Your payment subscription is managed by PayPal. Please <a href=\"http://www."
|
3478 |
"paypal.com\">login to PayPal here</a> to update your billing information."
|
3479 |
msgstr ""
|
3480 |
+
"Vaše placené předplatné spravuje PayPal. Pro aktualizazi Vašich fakturačních "
|
3481 |
+
"údajů se prosím <a href=\"http://www.paypal.com\">přihlaste se do PayPalu</"
|
3482 |
+
"a>."
|
3483 |
|
3484 |
+
#: pages/billing.php:69 pages/checkout.php:309 pages/billing.php:65
|
3485 |
+
#: pages/checkout.php:305 pages/checkout.php:307 pages/checkout.php:321
|
3486 |
+
#: pages/checkout.php:328
|
3487 |
msgid "First Name"
|
3488 |
msgstr "Jméno"
|
3489 |
|
3490 |
+
#: pages/billing.php:73 pages/checkout.php:313 pages/billing.php:69
|
3491 |
+
#: pages/checkout.php:309 pages/checkout.php:311 pages/checkout.php:325
|
3492 |
+
#: pages/checkout.php:332
|
3493 |
msgid "Last Name"
|
3494 |
msgstr "Příjmení"
|
3495 |
|
3496 |
+
#: pages/billing.php:77 pages/checkout.php:317 pages/billing.php:73
|
3497 |
+
#: pages/checkout.php:313 pages/checkout.php:315 pages/checkout.php:329
|
3498 |
+
#: pages/checkout.php:336
|
3499 |
msgid "Address 1"
|
3500 |
+
msgstr "Adresa"
|
3501 |
|
3502 |
+
#: pages/billing.php:81 pages/checkout.php:321 pages/billing.php:77
|
3503 |
+
#: pages/checkout.php:317 pages/checkout.php:319 pages/checkout.php:333
|
3504 |
+
#: pages/checkout.php:340
|
3505 |
msgid "Address 2"
|
3506 |
+
msgstr "Upřesnění adresy"
|
3507 |
|
3508 |
+
#: pages/billing.php:91 pages/checkout.php:331 pages/billing.php:87
|
3509 |
+
#: pages/checkout.php:327 pages/checkout.php:329 pages/checkout.php:343
|
3510 |
+
#: pages/checkout.php:350
|
3511 |
msgid "City"
|
3512 |
msgstr "Město"
|
3513 |
|
3514 |
+
#: pages/billing.php:95 pages/checkout.php:335 pages/billing.php:91
|
3515 |
+
#: pages/checkout.php:331 pages/checkout.php:333 pages/checkout.php:347
|
3516 |
+
#: pages/checkout.php:354
|
3517 |
msgid "State"
|
3518 |
+
msgstr "Kraj"
|
3519 |
|
3520 |
+
#: pages/billing.php:99 pages/checkout.php:339 pages/billing.php:95
|
3521 |
+
#: pages/checkout.php:335 pages/checkout.php:337 pages/checkout.php:351
|
3522 |
+
#: pages/checkout.php:358
|
3523 |
msgid "Postal Code"
|
3524 |
msgstr "PSČ"
|
3525 |
|
3526 |
+
#: pages/billing.php:108 pages/checkout.php:348 pages/billing.php:104
|
3527 |
+
#: pages/checkout.php:344 pages/checkout.php:346 pages/checkout.php:360
|
3528 |
+
#: pages/checkout.php:367
|
3529 |
msgid "City, State Zip"
|
3530 |
+
msgstr "Směrovací kód města, kraje"
|
3531 |
|
3532 |
+
#: pages/billing.php:161 pages/checkout.php:401 pages/billing.php:157
|
3533 |
+
#: pages/checkout.php:397 pages/checkout.php:399 pages/checkout.php:413
|
3534 |
+
#: pages/checkout.php:420
|
3535 |
msgid "Country"
|
3536 |
msgstr "Země"
|
3537 |
|
3538 |
+
#: pages/billing.php:186 pages/checkout.php:426 pages/billing.php:182
|
3539 |
+
#: pages/checkout.php:422 pages/checkout.php:424 pages/checkout.php:438
|
3540 |
+
#: pages/checkout.php:445
|
3541 |
msgid "Phone"
|
3542 |
msgstr "Telefon"
|
3543 |
|
3544 |
+
#: pages/billing.php:197 pages/checkout.php:207 pages/checkout.php:440
|
3545 |
+
#: pages/billing.php:193 pages/checkout.php:204 pages/checkout.php:209
|
3546 |
+
#: pages/checkout.php:436 pages/checkout.php:438 pages/checkout.php:453
|
3547 |
+
#: pages/checkout.php:460
|
3548 |
msgid "E-mail Address"
|
3549 |
+
msgstr "E-mailová adresa"
|
3550 |
|
3551 |
+
#: pages/billing.php:201 pages/checkout.php:449 pages/billing.php:197
|
3552 |
+
#: pages/checkout.php:445 pages/checkout.php:447 pages/checkout.php:462
|
3553 |
+
#: pages/checkout.php:469
|
3554 |
msgid "Confirm E-mail"
|
3555 |
msgstr "Potvrdit e-mail"
|
3556 |
|
3557 |
+
#: pages/billing.php:221 pages/billing.php:217
|
3558 |
msgid "Credit Card Information"
|
3559 |
msgstr "Informace o platební kartě"
|
3560 |
|
3561 |
+
#: pages/billing.php:221 pages/billing.php:217
|
3562 |
#, php-format
|
3563 |
msgid "We accept %s"
|
3564 |
msgstr "Přijímáme %s"
|
3565 |
|
3566 |
+
#: pages/billing.php:344 pages/billing.php:309 pages/billing.php:313
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3567 |
msgid ""
|
3568 |
"This subscription is not recurring. So you don't need to update your billing "
|
3569 |
"information."
|
3570 |
msgstr ""
|
3571 |
+
"Toto předplatné se neopakuje, takže nemusíte aktualizovat své fakturační "
|
3572 |
+
"údaje."
|
3573 |
|
3574 |
+
#: pages/cancel.php:26 pages/cancel.php:14
|
3575 |
msgid "Are you sure you want to cancel your membership?"
|
3576 |
msgstr "Jste si jisti, že chcete zrušit Vaše členství?"
|
3577 |
|
3578 |
+
#: pages/cancel.php:32
|
3579 |
+
#, php-format
|
3580 |
+
msgid "Are you sure you want to cancel your %s membership?"
|
3581 |
+
msgstr "Jste si jisti, že chcete zrušit Vaše členství %s?"
|
3582 |
+
|
3583 |
+
#: pages/cancel.php:37 pages/cancel.php:17
|
3584 |
msgid "Yes, cancel my account"
|
3585 |
+
msgstr "Ano, chci zrušit členství"
|
3586 |
|
3587 |
+
#: pages/cancel.php:38 pages/cancel.php:19
|
3588 |
msgid "No, keep my account"
|
3589 |
+
msgstr "Ne, chci zůstat členem"
|
3590 |
+
|
3591 |
+
#: pages/cancel.php:77
|
3592 |
+
msgid "Cancel All Memberships"
|
3593 |
+
msgstr "Zrušit všechna členství"
|
3594 |
|
3595 |
+
#: pages/cancel.php:86 pages/cancel.php:22
|
3596 |
msgid "Click here to go to the home page."
|
3597 |
+
msgstr "Pro návrat na úvodní stránku klikněte zde."
|
3598 |
|
3599 |
+
#: pages/checkout.php:26 pages/checkout.php:27 pages/checkout.php:28
|
3600 |
msgid ""
|
3601 |
"Almost done. Review the membership information and pricing below then "
|
3602 |
"<strong>click the \"Complete Payment\" button</strong> to finish your order."
|
3603 |
msgstr ""
|
3604 |
+
"Téměř hotovo. Zkontrolujte informace o členství a ceny níže a pro dokončení "
|
3605 |
+
"objednávky pak <strong>klikněte na tlačítko \"Complete Payment\" </ strong>."
|
|
|
3606 |
|
3607 |
+
#: pages/checkout.php:33 pages/checkout.php:34 pages/checkout.php:35
|
3608 |
msgid "change"
|
3609 |
+
msgstr "změnit"
|
3610 |
|
3611 |
+
#: pages/checkout.php:41 pages/checkout.php:42 pages/checkout.php:43
|
3612 |
#, php-format
|
3613 |
msgid "You have selected the <strong>%s</strong> membership level."
|
3614 |
+
msgstr "Vybrali jste si úroveň členství <strong>%s</strong>."
|
3615 |
|
3616 |
+
#: pages/checkout.php:51 pages/checkout.php:53
|
3617 |
#, php-format
|
3618 |
+
msgid ""
|
3619 |
+
"<p class=\"pmpro_level_discount_applied\">The <strong>%s</strong> code has "
|
3620 |
+
"been applied to your order.</p>"
|
3621 |
+
msgstr ""
|
3622 |
+
"<p class=\"pmpro_level_discount_applied\">Kód <strong>%s</strong> byl použit "
|
3623 |
+
"na Vaši objednávku.</p>"
|
3624 |
|
3625 |
+
#: pages/checkout.php:62 services/applydiscountcode.php:78
|
3626 |
+
#: pages/checkout.php:63 pages/checkout.php:64
|
3627 |
+
#: services/applydiscountcode.php:74 services/applydiscountcode.php:75
|
3628 |
msgid "Click here to change your discount code"
|
3629 |
+
msgstr "Pro změnu slevového kódu klikněte zde"
|
3630 |
|
3631 |
+
#: pages/checkout.php:64 pages/checkout.php:65 pages/checkout.php:66
|
3632 |
msgid "Click here to enter your discount code"
|
3633 |
+
msgstr "Pro vložení slevového kódu klikněte zde"
|
3634 |
|
3635 |
+
#: pages/checkout.php:64 pages/checkout.php:65 pages/checkout.php:66
|
3636 |
msgid "Do you have a discount code?"
|
3637 |
+
msgstr "Chcete použít slevový kód?"
|
3638 |
|
3639 |
+
#: pages/checkout.php:163 pages/checkout.php:160 pages/checkout.php:165
|
|
|
|
|
|
|
|
|
|
|
3640 |
msgid "Account Information"
|
3641 |
msgstr "Informace o účtu"
|
3642 |
|
3643 |
+
#: pages/checkout.php:163 pages/checkout.php:160 pages/checkout.php:165
|
3644 |
msgid "Already have an account?"
|
3645 |
+
msgstr "Již nějaký účet máte?"
|
3646 |
|
3647 |
+
#: pages/checkout.php:163 pages/checkout.php:160 pages/checkout.php:165
|
3648 |
msgid "Log in here"
|
3649 |
+
msgstr "Přihlaste se zde"
|
3650 |
|
3651 |
+
#: pages/checkout.php:189 pages/checkout.php:186 pages/checkout.php:191
|
3652 |
msgid "Confirm Password"
|
3653 |
msgstr "Potvrzení hesla"
|
3654 |
|
3655 |
+
#: pages/checkout.php:216 pages/checkout.php:213 pages/checkout.php:218
|
3656 |
msgid "Confirm E-mail Address"
|
3657 |
+
msgstr "Potvrzení e-mailu"
|
3658 |
|
3659 |
+
#: pages/checkout.php:235 pages/checkout.php:232 pages/checkout.php:237
|
3660 |
msgid "Full Name"
|
3661 |
msgstr "Celé jméno"
|
3662 |
|
3663 |
+
#: pages/checkout.php:236 pages/checkout.php:233 pages/checkout.php:238
|
3664 |
msgid "LEAVE THIS BLANK"
|
3665 |
+
msgstr "NECHTE TO PRÁZDNÉ"
|
3666 |
|
3667 |
+
#: pages/checkout.php:260 pages/checkout.php:257 pages/checkout.php:262
|
3668 |
#, php-format
|
3669 |
msgid ""
|
3670 |
"You are logged in as <strong>%s</strong>. If you would like to use a "
|
3671 |
"different account for this membership, <a href=\"%s\">log out now</a>."
|
3672 |
msgstr ""
|
3673 |
+
"Jste přihlášeni jako <strong>%s</strong>. Pokud byste chtěli pro toto "
|
3674 |
+
"členství použít jiný účet, <a href=\"%s\">odhlaste se právě teď</a>."
|
3675 |
|
3676 |
+
#: pages/checkout.php:276 pages/checkout.php:278 pages/checkout.php:292
|
3677 |
+
#: pages/checkout.php:299
|
|
|
|
|
|
|
|
|
3678 |
msgid "Choose your Payment Method"
|
3679 |
+
msgstr "Vyberte si způsob platby"
|
3680 |
|
3681 |
+
#: pages/checkout.php:284 pages/checkout.php:286 pages/checkout.php:300
|
3682 |
+
#: pages/checkout.php:307
|
3683 |
msgid "Check Out with a Credit Card Here"
|
3684 |
+
msgstr "Zde zaplaťte platební kartou"
|
3685 |
|
3686 |
+
#: pages/checkout.php:672 pages/checkout.php:277 pages/checkout.php:284
|
3687 |
+
#: pages/checkout.php:657 pages/checkout.php:673
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3688 |
#, php-format
|
3689 |
+
msgid "I agree to the %s"
|
3690 |
+
msgstr "Souhlasím s %s"
|
3691 |
|
3692 |
+
#: pages/checkout.php:692 pages/checkout.php:667 pages/checkout.php:674
|
3693 |
+
#: pages/checkout.php:677 pages/checkout.php:693
|
3694 |
msgid "Complete Payment"
|
3695 |
+
msgstr "Dokončit platbu"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3696 |
|
3697 |
+
#: pages/checkout.php:714 pages/checkout.php:687 pages/checkout.php:694
|
3698 |
+
#: pages/checkout.php:697 pages/checkout.php:713
|
3699 |
msgid "Processing..."
|
3700 |
msgstr "Zpracování..."
|
3701 |
|
3702 |
#: pages/confirmation.php:12
|
3703 |
msgid ""
|
3704 |
"Your payment has been submitted. Your membership will be activated shortly."
|
3705 |
+
msgstr "Vaše platba byla odeslána. Vaše členství bude zakrátko aktivováno."
|
3706 |
|
3707 |
#: pages/confirmation.php:14
|
3708 |
#, php-format
|
3709 |
msgid "Thank you for your membership to %s. Your %s membership is now active."
|
3710 |
+
msgstr ""
|
3711 |
+
"Děkujeme Vám za Vaše členství v %s. Váš členský účet na úrovni %s je nyní "
|
3712 |
+
"aktivní."
|
3713 |
|
3714 |
#: pages/confirmation.php:28
|
3715 |
#, php-format
|
3718 |
"initial membership invoice. A welcome email with a copy of your initial "
|
3719 |
"membership invoice has been sent to %s."
|
3720 |
msgstr ""
|
3721 |
+
"Níže jsou uvedeny informace týkající se Vašeho členského účtu. Uvítací e-"
|
3722 |
+
"mail s kopií počátečního vyúčtování Vašeho členství byl odeslán na %s."
|
3723 |
|
3724 |
#: pages/confirmation.php:41 pages/invoice.php:22
|
3725 |
#, php-format
|
3726 |
msgid "Invoice #%s on %s"
|
3727 |
+
msgstr "Vyúčtování #%s z %s"
|
3728 |
|
3729 |
+
#: pages/confirmation.php:43 pages/invoice.php:24
|
3730 |
msgid "Print"
|
3731 |
msgstr "Tisk"
|
3732 |
|
3735 |
msgid "Account"
|
3736 |
msgstr "Účet"
|
3737 |
|
3738 |
+
#: pages/confirmation.php:49 pages/invoice.php:30 pages/account.php:29
|
3739 |
+
#: pages/account.php:33 pages/confirmation.php:48 pages/invoice.php:29
|
3740 |
+
msgid "Membership Expires"
|
3741 |
+
msgstr "Členství vyprší"
|
3742 |
+
|
3743 |
+
#: pages/confirmation.php:63 pages/invoice.php:50 pages/account.php:105
|
3744 |
+
#: pages/account.php:109 pages/confirmation.php:61 pages/invoice.php:48
|
3745 |
+
msgid "Payment Method"
|
3746 |
+
msgstr "Platební metoda"
|
3747 |
+
|
3748 |
+
#: pages/confirmation.php:65 pages/invoice.php:52 pages/invoice.php:110
|
3749 |
#: pages/confirmation.php:63 pages/invoice.php:50 pages/invoice.php:107
|
3750 |
+
#: pages/invoice.php:109
|
3751 |
msgid "Total Billed"
|
3752 |
+
msgstr "Celková částka"
|
3753 |
|
3754 |
#: pages/confirmation.php:82 pages/invoice.php:69 pages/confirmation.php:80
|
3755 |
#: pages/invoice.php:67
|
3756 |
msgid "ending in"
|
3757 |
+
msgstr "končí za"
|
3758 |
|
3759 |
+
#: pages/confirmation.php:97
|
3760 |
#, php-format
|
3761 |
msgid ""
|
3762 |
+
"Below are details about your membership account. A welcome email has been "
|
3763 |
+
"sent to %s."
|
3764 |
msgstr ""
|
3765 |
+
"Níže jsou uvedeny informace o Vašem členském účtu. Na %s byl odeslán uvítací "
|
3766 |
+
"e-mail."
|
3767 |
|
3768 |
#: pages/confirmation.php:105 pages/confirmation.php:103
|
3769 |
msgid "Pending"
|
3770 |
+
msgstr "Čekající"
|
3771 |
|
3772 |
#: pages/confirmation.php:113 pages/invoice.php:141 pages/confirmation.php:111
|
3773 |
#: pages/invoice.php:139
|
3774 |
msgid "View Your Membership Account →"
|
3775 |
+
msgstr "Zobrazit Váš členský účet →"
|
3776 |
|
3777 |
#: pages/confirmation.php:115 pages/confirmation.php:113
|
3778 |
msgid ""
|
3779 |
"If your account is not activated within a few minutes, please contact the "
|
3780 |
"site owner."
|
3781 |
msgstr ""
|
3782 |
+
"Pokud nebude Váš účet aktivován během několika minut, kontaktujte vlastníka "
|
3783 |
"webu."
|
3784 |
|
3785 |
#: pages/invoice.php:79 pages/invoice.php:77
|
3792 |
|
3793 |
#: pages/invoice.php:108 pages/invoice.php:106
|
3794 |
msgid "Invoice #"
|
3795 |
+
msgstr "Vyúčtování #"
|
|
|
|
|
|
|
|
|
3796 |
|
3797 |
#: pages/invoice.php:134 pages/invoice.php:132
|
3798 |
msgid "No invoices found."
|
3799 |
+
msgstr "Nebyla nalezena žádná vyúčtování."
|
3800 |
|
3801 |
#: pages/invoice.php:145 pages/invoice.php:143
|
3802 |
msgid "← View All Invoices"
|
3803 |
+
msgstr "← Zobrazit všechna vyúčtování"
|
3804 |
|
3805 |
+
#: pages/levels.php:14
|
3806 |
+
msgid "Price"
|
3807 |
+
msgstr "Cena"
|
|
|
|
|
|
|
|
|
3808 |
|
3809 |
+
#: pages/levels.php:33 pages/levels.php:43
|
3810 |
msgid "Free"
|
3811 |
msgstr "Zdarma"
|
3812 |
|
3813 |
+
#: pages/levels.php:47 pages/levels.php:49 pages/levels.php:113
|
3814 |
+
#: pages/levels.php:115
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3815 |
msgid "Select"
|
3816 |
msgstr "Označit"
|
3817 |
|
3818 |
+
#: pages/levels.php:63 pages/levels.php:117 pages/levels.php:129
|
|
|
|
|
|
|
|
|
3819 |
msgid "Your Level"
|
3820 |
+
msgstr "Vaše úroveň"
|
3821 |
|
3822 |
+
#: pages/levels.php:79 pages/levels.php:129 pages/levels.php:145
|
3823 |
msgid "← Return to Your Account"
|
3824 |
+
msgstr "← Zpět na Váš účet"
|
3825 |
|
3826 |
+
#: pages/levels.php:81 pages/levels.php:131 pages/levels.php:147
|
3827 |
msgid "← Return to Home"
|
3828 |
+
msgstr "← Zpět na úvod"
|
3829 |
+
|
3830 |
+
#: paid-memberships-pro.php:115 adminpages/orders.php:398
|
3831 |
+
#: adminpages/orders.php:448
|
3832 |
+
msgid "Testing Only"
|
3833 |
+
msgstr "Pouze testování"
|
3834 |
+
|
3835 |
+
#: paid-memberships-pro.php:120
|
3836 |
+
msgid "PayPal Payflow Pro/PayPal Pro"
|
3837 |
+
msgstr "PayPal Payflow Pro/PayPal Pro"
|
3838 |
|
3839 |
+
#: paid-memberships-pro.php:125
|
3840 |
+
msgid "Cybersource"
|
3841 |
+
msgstr "Cybersource"
|
3842 |
+
|
3843 |
+
#: preheaders/account.php:10 preheaders/levels.php:22 preheaders/account.php:7
|
3844 |
+
#: preheaders/account.php:9 preheaders/levels.php:19 preheaders/levels.php:21
|
3845 |
msgid "Your membership status has been updated - Thank you!"
|
3846 |
+
msgstr "Váš status členství byla aktualizován - Děkujeme Vám!"
|
3847 |
|
3848 |
+
#: preheaders/account.php:12 preheaders/levels.php:24
|
3849 |
#: preheaders/account.php:11 preheaders/levels.php:23
|
3850 |
msgid ""
|
3851 |
"Sorry, your request could not be completed - please try again in a few "
|
3852 |
"moments."
|
3853 |
+
msgstr ""
|
3854 |
+
"Je nám líto, váš požadavek nelze dokončit - zkuste to prosím znovu za "
|
3855 |
+
"několik málo okamžiků."
|
3856 |
+
|
3857 |
+
#: preheaders/billing.php:270 preheaders/checkout.php:332
|
3858 |
+
#: preheaders/billing.php:258 preheaders/billing.php:265
|
3859 |
+
#: preheaders/billing.php:266 preheaders/billing.php:279
|
3860 |
+
#: preheaders/checkout.php:458 preheaders/checkout.php:464
|
3861 |
+
#: preheaders/checkout.php:465 preheaders/checkout.php:470
|
3862 |
+
#: preheaders/checkout.php:481 preheaders/checkout.php:482
|
3863 |
msgid "Please complete all required fields."
|
3864 |
+
msgstr "Prosím vyplňte všechna povinná pole."
|
3865 |
+
|
3866 |
+
#: preheaders/billing.php:273 preheaders/checkout.php:340
|
3867 |
+
#: preheaders/billing.php:263 preheaders/billing.php:268
|
3868 |
+
#: preheaders/billing.php:269 preheaders/billing.php:284
|
3869 |
+
#: preheaders/checkout.php:466 preheaders/checkout.php:473
|
3870 |
+
#: preheaders/checkout.php:474 preheaders/checkout.php:478
|
3871 |
+
#: preheaders/checkout.php:491 preheaders/checkout.php:492
|
3872 |
msgid "Your email addresses do not match. Please try again."
|
3873 |
+
msgstr "Vaše e-mailové adresy nesouhlasí. Zkuste to prosím znovu."
|
3874 |
+
|
3875 |
+
#: preheaders/billing.php:276 preheaders/checkout.php:345
|
3876 |
+
#: preheaders/billing.php:268 preheaders/billing.php:271
|
3877 |
+
#: preheaders/billing.php:272 preheaders/billing.php:289
|
3878 |
+
#: preheaders/checkout.php:471 preheaders/checkout.php:478
|
3879 |
+
#: preheaders/checkout.php:480 preheaders/checkout.php:483
|
3880 |
+
#: preheaders/checkout.php:497 preheaders/checkout.php:498
|
3881 |
msgid "The email address entered is in an invalid format. Please try again."
|
3882 |
+
msgstr "Zadáná e-mailová adresa má neplatný formát. Zkuste to prosím znovu."
|
|
|
3883 |
|
3884 |
+
#: preheaders/billing.php:280 preheaders/billing.php:274
|
3885 |
+
#: preheaders/billing.php:275 preheaders/billing.php:276
|
3886 |
+
#: preheaders/billing.php:295
|
3887 |
msgid "All good!"
|
3888 |
+
msgstr "Vše je v pořádku!"
|
3889 |
|
3890 |
+
#: preheaders/billing.php:350 preheaders/billing.php:340
|
3891 |
+
#: preheaders/billing.php:345 preheaders/billing.php:346
|
3892 |
+
#: preheaders/billing.php:370
|
3893 |
#, php-format
|
3894 |
msgid "Information updated. <a href=\"%s\">« back to my account</a>"
|
3895 |
+
msgstr ""
|
3896 |
+
"Informace byly aktualizovány. <a href=\"%s\">« Zpět k mému účtu</a>"
|
3897 |
|
3898 |
+
#: preheaders/billing.php:356 preheaders/billing.php:347
|
3899 |
+
#: preheaders/billing.php:351 preheaders/billing.php:352
|
3900 |
+
#: preheaders/billing.php:378 preheaders/billing.php:380
|
3901 |
msgid "Error updating billing information."
|
3902 |
+
msgstr "Chyba při aktualizaci fakturačních údajů."
|
3903 |
|
3904 |
+
#: preheaders/cancel.php:25 preheaders/cancel.php:24
|
3905 |
msgid "Your membership has been cancelled."
|
3906 |
+
msgstr "Vaše členství bylo zrušeno."
|
3907 |
+
|
3908 |
+
#: preheaders/checkout.php:32 preheaders/checkout.php:354
|
3909 |
+
#: preheaders/checkout.php:28 preheaders/checkout.php:30
|
3910 |
+
#: preheaders/checkout.php:31 preheaders/checkout.php:480
|
3911 |
+
#: preheaders/checkout.php:487 preheaders/checkout.php:491
|
3912 |
+
#: preheaders/checkout.php:492 preheaders/checkout.php:508
|
3913 |
+
#: preheaders/checkout.php:509
|
3914 |
msgid "Invalid gateway."
|
3915 |
msgstr "Neplatná brána."
|
3916 |
|
3917 |
+
#: preheaders/checkout.php:95 preheaders/checkout.php:88
|
3918 |
+
#: preheaders/checkout.php:89 preheaders/checkout.php:91
|
3919 |
#: preheaders/checkout.php:96
|
3920 |
msgid "Checkout: Payment Information"
|
3921 |
msgstr "Pokladna: Informace o platbě"
|
3922 |
|
3923 |
+
#: preheaders/checkout.php:100 preheaders/checkout.php:99
|
3924 |
+
#: preheaders/checkout.php:102 preheaders/checkout.php:109
|
3925 |
msgid "Setup Your Account"
|
3926 |
+
msgstr "Nastavení Vašeho účtu"
|
3927 |
|
3928 |
+
#: preheaders/checkout.php:300 preheaders/checkout.php:416
|
3929 |
+
#: preheaders/checkout.php:421
|
3930 |
+
msgid "There are JavaScript errors on the page. Please contact the webmaster."
|
3931 |
+
msgstr ""
|
3932 |
+
"Na stránce se vyskytly chyby JavaScriptu. Prosíme obraťte se na správce webu."
|
3933 |
+
|
3934 |
+
#: preheaders/checkout.php:335 preheaders/checkout.php:461
|
3935 |
+
#: preheaders/checkout.php:468 preheaders/checkout.php:473
|
3936 |
+
#: preheaders/checkout.php:485 preheaders/checkout.php:486
|
3937 |
msgid "Your passwords do not match. Please try again."
|
3938 |
+
msgstr "Vaše hesla se neshodují. Zkuste to prosím znovu."
|
3939 |
|
3940 |
+
#: preheaders/checkout.php:350 preheaders/checkout.php:476
|
3941 |
+
#: preheaders/checkout.php:483 preheaders/checkout.php:486
|
3942 |
+
#: preheaders/checkout.php:488 preheaders/checkout.php:503
|
3943 |
+
#: preheaders/checkout.php:504
|
3944 |
#, php-format
|
3945 |
msgid "Please check the box to agree to the %s."
|
3946 |
+
msgstr "Prosím, zatrhněte políčko pro odsouhlasení %s."
|
3947 |
|
3948 |
+
#: preheaders/checkout.php:357 preheaders/checkout.php:483
|
3949 |
+
#: preheaders/checkout.php:490 preheaders/checkout.php:495
|
3950 |
+
#: preheaders/checkout.php:512 preheaders/checkout.php:513
|
3951 |
msgid "Are you a spammer?"
|
3952 |
msgstr "Jste spamer?"
|
3953 |
|
3954 |
+
#: preheaders/checkout.php:377 preheaders/checkout.php:503
|
3955 |
+
#: preheaders/checkout.php:510 preheaders/checkout.php:515
|
3956 |
+
#: preheaders/checkout.php:518 preheaders/checkout.php:535
|
3957 |
+
#: preheaders/checkout.php:536
|
3958 |
msgid "That username is already taken. Please try another."
|
3959 |
+
msgstr "Toto uživatelské jméno se již používá. Zkuste prosím jiné."
|
3960 |
|
3961 |
+
#: preheaders/checkout.php:382 preheaders/checkout.php:508
|
3962 |
+
#: preheaders/checkout.php:515 preheaders/checkout.php:520
|
3963 |
+
#: preheaders/checkout.php:524 preheaders/checkout.php:541
|
3964 |
+
#: preheaders/checkout.php:542
|
3965 |
msgid "That email address is already taken. Please try another."
|
3966 |
+
msgstr "Tato e-mailová adresa se již používá. Zkuste prosím jinou."
|
3967 |
|
3968 |
+
#: preheaders/checkout.php:397 preheaders/checkout.php:399
|
3969 |
+
#: preheaders/checkout.php:525 preheaders/checkout.php:532
|
3970 |
+
#: preheaders/checkout.php:537 preheaders/checkout.php:544
|
3971 |
+
#: preheaders/checkout.php:561 preheaders/checkout.php:562
|
3972 |
#, php-format
|
3973 |
msgid "reCAPTCHA failed. (%s) Please try again."
|
3974 |
+
msgstr "reCAPTCHA neúspěšná. (%s) Zkuste to prosím znovu."
|
3975 |
|
3976 |
+
#: preheaders/checkout.php:482 preheaders/checkout.php:484
|
3977 |
+
#: preheaders/checkout.php:647 preheaders/checkout.php:654
|
3978 |
+
#: preheaders/checkout.php:659 preheaders/checkout.php:683
|
3979 |
+
#: preheaders/checkout.php:701 preheaders/checkout.php:702
|
3980 |
msgid "Payment accepted."
|
3981 |
+
msgstr "Platba byla přijata."
|
3982 |
|
3983 |
+
#: preheaders/checkout.php:490 preheaders/checkout.php:492
|
3984 |
+
#: preheaders/checkout.php:653 preheaders/checkout.php:660
|
3985 |
+
#: preheaders/checkout.php:665 preheaders/checkout.php:691
|
3986 |
+
#: preheaders/checkout.php:709 preheaders/checkout.php:710
|
3987 |
msgid ""
|
3988 |
"Unknown error generating account. Please contact us to setup your membership."
|
3989 |
msgstr ""
|
3990 |
+
"Neznámá chyba při generování účtu. Prosím, kontaktujte nás pro nastavení "
|
3991 |
+
"vašeho členství."
|
3992 |
+
|
3993 |
+
#: preheaders/checkout.php:550 preheaders/checkout.php:552
|
3994 |
+
#: preheaders/checkout.php:785 preheaders/checkout.php:792
|
3995 |
+
#: preheaders/checkout.php:797 preheaders/checkout.php:825
|
3996 |
+
#: preheaders/checkout.php:844 preheaders/checkout.php:859
|
3997 |
+
#: preheaders/checkout.php:860
|
|
|
3998 |
msgid ""
|
3999 |
"Your payment was accepted, but there was an error setting up your account. "
|
4000 |
"Please contact us."
|
4001 |
msgstr ""
|
4002 |
+
"Vaše platba byla přijata, ale vyskytla se chyba při nastavení Vašeho účtu. "
|
4003 |
+
"Prosím, kontaktujte nás."
|
4004 |
+
|
4005 |
+
#: preheaders/checkout.php:691 preheaders/checkout.php:693
|
4006 |
+
#: preheaders/checkout.php:953 preheaders/checkout.php:960
|
4007 |
+
#: preheaders/checkout.php:970 preheaders/checkout.php:983
|
4008 |
+
#: preheaders/checkout.php:1030 preheaders/checkout.php:1045
|
4009 |
+
#: preheaders/checkout.php:1046
|
4010 |
msgid ""
|
4011 |
"IMPORTANT: Something went wrong during membership creation. Your credit card "
|
4012 |
"authorized, but we cancelled the order immediately. You should not try to "
|
4013 |
"submit this form again. Please contact the site owner to fix this issue."
|
4014 |
msgstr ""
|
4015 |
+
"DŮLEŽITÉ: Při vytváření členství se něco pokazilo. Vaše platební karta byla "
|
4016 |
+
"autorizována, ale objednávka byla vzápětí zrušena. Neměli byste se pokoušet "
|
4017 |
+
"odesílat tento formulář znovu. Pro vyřešení problému se prosím obraťte na "
|
4018 |
+
"vlastníka webu."
|
4019 |
+
|
4020 |
+
#: preheaders/checkout.php:694 preheaders/checkout.php:696
|
4021 |
+
#: preheaders/checkout.php:956 preheaders/checkout.php:963
|
4022 |
+
#: preheaders/checkout.php:973 preheaders/checkout.php:988
|
4023 |
+
#: preheaders/checkout.php:1035 preheaders/checkout.php:1050
|
4024 |
+
#: preheaders/checkout.php:1051
|
4025 |
msgid ""
|
4026 |
"IMPORTANT: Something went wrong during membership creation. Your credit card "
|
4027 |
"was charged, but we couldn't assign your membership. You should not submit "
|
4028 |
"this form again. Please contact the site owner to fix this issue."
|
4029 |
msgstr ""
|
4030 |
+
"DŮLEŽITÉ: Při vytváření členství se něco pokazilo. Vaše platební karta byla "
|
4031 |
+
"zatížena debetem, ale Vaše členství nemohlo být přiřazeno. Neměli byste se "
|
4032 |
+
"pokoušet odesílat tento formulář znovu. Pro vyřešení problému se prosím "
|
4033 |
+
"obraťte na vlastníka webu."
|
4034 |
+
|
4035 |
+
#: preheaders/checkout.php:705 preheaders/checkout.php:707
|
4036 |
+
#: preheaders/checkout.php:967 preheaders/checkout.php:974
|
4037 |
+
#: preheaders/checkout.php:984 preheaders/checkout.php:1001
|
4038 |
+
#: preheaders/checkout.php:1048 preheaders/checkout.php:1063
|
4039 |
+
#: preheaders/checkout.php:1064
|
4040 |
#, php-format
|
4041 |
msgid ""
|
4042 |
"You must <a href=\"%s\">setup a Payment Gateway</a> before any payments will "
|
4043 |
"be processed."
|
4044 |
msgstr ""
|
4045 |
+
"Před zpracováním jakýchkoliv plateb musíte <a href=\"%s\">nastavit platební "
|
4046 |
+
"bránu</a>."
|
4047 |
+
|
4048 |
+
#: preheaders/checkout.php:707 preheaders/checkout.php:709
|
4049 |
+
#: preheaders/checkout.php:969 preheaders/checkout.php:976
|
4050 |
+
#: preheaders/checkout.php:986 preheaders/checkout.php:1003
|
4051 |
+
#: preheaders/checkout.php:1050 preheaders/checkout.php:1065
|
4052 |
+
#: preheaders/checkout.php:1066
|
4053 |
msgid "A Payment Gateway must be setup before any payments will be processed."
|
4054 |
msgstr ""
|
4055 |
+
"Předtím, než budou moci být zpracovány jakékoliv platby, musí být nastavena "
|
4056 |
+
"platební brána."
|
4057 |
|
4058 |
+
#: scheduled/crons.php:38 scheduled/crons.php:31 scheduled/crons.php:34
|
4059 |
+
#: scheduled/crons.php:61
|
4060 |
#, php-format
|
4061 |
msgid "Membership expired email sent to %s. "
|
4062 |
+
msgstr "E-mail informující o vypršení členství byl zaslán na %s."
|
4063 |
|
4064 |
+
#: scheduled/crons.php:84 scheduled/crons.php:27 scheduled/crons.php:74
|
4065 |
+
#: scheduled/crons.php:80
|
4066 |
#, php-format
|
4067 |
msgid "Membership expiring email sent to %s. "
|
4068 |
+
msgstr "E-mail informující o brzkém vypršení členství byl zaslán na %s."
|
4069 |
|
4070 |
+
#: scheduled/crons.php:157 scheduled/crons.php:143 scheduled/crons.php:152
|
4071 |
#, php-format
|
4072 |
msgid "Credit card expiring email sent to %s. "
|
4073 |
+
msgstr "E-mail informující o konci platnosti platební karty byl zaslán na %s."
|
4074 |
|
4075 |
+
#: scheduled/crons.php:210 scheduled/crons.php:104 scheduled/crons.php:196
|
4076 |
+
#: scheduled/crons.php:208
|
4077 |
#, php-format
|
4078 |
msgid "Trial ending email sent to %s. "
|
4079 |
+
msgstr "E-mail informující o konci zkušební doby byl zaslán na %s."
|
4080 |
+
|
4081 |
+
#: services/applydiscountcode.php:67 services/applydiscountcode.php:64
|
4082 |
+
#, php-format
|
4083 |
+
msgid "The %s code has been applied to your order. "
|
4084 |
+
msgstr "Kód %s byl použit na Vaši objednávku."
|
4085 |
|
4086 |
+
#: services/applydiscountcode.php:86 services/applydiscountcode.php:82
|
4087 |
+
#: services/applydiscountcode.php:83
|
4088 |
#, php-format
|
4089 |
msgid "The <strong>%s</strong> code has been applied to your order."
|
4090 |
+
msgstr "Kód <strong>%s</strong> byl použit na Vaši objednávku."
|
4091 |
|
4092 |
+
#: services/authnet-silent-post.php:141 services/authnet-silent-post.php:133
|
4093 |
+
#: services/authnet-silent-post.php:138
|
4094 |
msgid ""
|
4095 |
"<p>A payment is being held for review within Authorize.net.</p><p>Payment "
|
4096 |
"Information From Authorize.net"
|
4097 |
msgstr ""
|
4098 |
+
"<p>Platba je pozdržena pro posouzení v rámci Authorize.net.</p><p> Informace "
|
4099 |
+
"o platbě od Authorize.net"
|
4100 |
|
4101 |
+
#: services/stripe-webhook.php:270 services/stripe-webhook.php:176
|
4102 |
+
#: services/stripe-webhook.php:194
|
4103 |
#, php-format
|
4104 |
msgid ""
|
4105 |
"%s has had their payment subscription cancelled by Stripe. Please check that "
|
4106 |
"this user's membership is cancelled on your site if it should be."
|
4107 |
msgstr ""
|
4108 |
+
"%s bylo jeho předplatné zrušeno u Stripe. Zkontrolujte prosím, zda bylo "
|
4109 |
+
"členství uživatele zrušeno i na vašich stránkách, pokud by mělo být zrušeno."
|
4110 |
+
|
4111 |
+
#: adminpages/discountcodes.php:437
|
4112 |
+
msgid "Billing Ammount"
|
4113 |
+
msgstr "Částka fakturace"
|
4114 |
+
|
4115 |
+
#: adminpages/discountcodes.php:480
|
4116 |
+
msgid "Check this to set an expiration date for new sign ups."
|
4117 |
+
msgstr "Zatrhněte pro nastavení data vypršení pro nové registrace."
|
4118 |
+
|
4119 |
+
#: adminpages/discountcodes.php:497
|
4120 |
+
msgid ""
|
4121 |
+
"How long before the expiration expires. Note that any future payments will "
|
4122 |
+
"be cancelled when the membership expires."
|
4123 |
+
msgstr ""
|
4124 |
+
"Jak dlouho před vypršením platnosti. Vezměte na vědomí, že všechny budoucí "
|
4125 |
+
"platby budou po vypršení členství zrušeny."
|
4126 |
+
|
4127 |
+
#: adminpages/membershiplevels.php:364
|
4128 |
+
msgid ""
|
4129 |
+
"Stripe integration currently only supports billing periods of \"Month\" or "
|
4130 |
+
"\"Year\"."
|
4131 |
+
msgstr ""
|
4132 |
+
"Integrace Stripe v současné době podporuje pouze účtovací období \"Month\" "
|
4133 |
+
"nebo \"Year\"."
|
4134 |
|
4135 |
#: adminpages/membershiplevels.php:398
|
4136 |
msgid ""
|
4138 |
"one period trials by setting an initial payment different from the billing "
|
4139 |
"amount."
|
4140 |
msgstr ""
|
4141 |
+
"Integrace 2Checkout v současné době nepodporuje vlastní zkušební dobu. "
|
4142 |
"Můžete to udělat v jednom období zkušební doby, nastavením počáteční platby "
|
4143 |
"lišící se od fakturační částky."
|
4144 |
|
4145 |
+
#: adminpages/membershiplevels.php:508 adminpages/membershiplevels.php:514
|
4146 |
+
#: adminpages/membershiplevels.php:516 adminpages/membershiplevels.php:543
|
4147 |
+
msgid "Billing Cycle"
|
4148 |
+
msgstr "Cyklus fakturace"
|
4149 |
+
|
4150 |
+
#: adminpages/membershiplevels.php:509 adminpages/membershiplevels.php:515
|
4151 |
+
#: adminpages/membershiplevels.php:517 adminpages/membershiplevels.php:544
|
4152 |
+
msgid "Trial Cycle"
|
4153 |
+
msgstr "Cyklus zkušební doby"
|
4154 |
+
|
4155 |
+
#: adminpages/membershiplevels.php:543 adminpages/membershiplevels.php:549
|
4156 |
+
#: adminpages/membershiplevels.php:551 adminpages/membershiplevels.php:578
|
4157 |
+
msgid "every"
|
4158 |
+
msgstr "každý"
|
4159 |
+
|
4160 |
+
#: adminpages/memberslist.php:184 adminpages/memberslist.php:212
|
4161 |
+
msgid "Never"
|
4162 |
+
msgstr "Nikdy"
|
4163 |
+
|
4164 |
#: adminpages/paymentsettings.php:170
|
4165 |
msgid ""
|
4166 |
"Payflow Pro currently only supports one-time payments. Users will not be "
|
4167 |
"able to checkout for levels with recurring payments."
|
4168 |
msgstr ""
|
4169 |
"Payflow Pro v současné době podporuje pouze jednorázové platby. Uživatelé "
|
4170 |
+
"nebudou moci zaplatit úrovně členství s opakujícími se platbami."
|
4171 |
+
|
4172 |
+
#: adminpages/paymentsettings.php:405 adminpages/paymentsettings.php:445
|
4173 |
+
msgid ""
|
4174 |
+
"If values are given, tax will be applied for any members ordering from the "
|
4175 |
+
"selected state. For more complex tax rules, use the \"pmpro_tax\" filter."
|
4176 |
+
msgstr ""
|
4177 |
+
"Pokud jsou zadány hodnoty, bude daň použita na všechny členy objednávající z "
|
4178 |
+
"vybraného státu. Pro složitější daňová pravidla použijte filtr \"pmpro_tax\"."
|
4179 |
|
4180 |
#: adminpages/paymentsettings.php:410 adminpages/paymentsettings.php:421
|
4181 |
msgid "Use SSL"
|
4183 |
|
4184 |
#: adminpages/paymentsettings.php:425
|
4185 |
msgid "Required by this Gateway Option"
|
4186 |
+
msgstr "Vyžadováno touto volbou brány"
|
4187 |
+
|
4188 |
+
#: adminpages/paymentsettings.php:432
|
4189 |
+
msgid ""
|
4190 |
+
"Stripe doesn't require billing address fields. Choose 'No' to hide them on "
|
4191 |
+
"the checkout page."
|
4192 |
+
msgstr ""
|
4193 |
+
"Stripe nevyžaduje pole fakturační adresy. Zvolte \"Ne\" pro jejich skrytí na "
|
4194 |
+
"stránce pokladny."
|
4195 |
+
|
4196 |
+
#: adminpages/paymentsettings.php:438 adminpages/paymentsettings.php:471
|
4197 |
+
#: adminpages/paymentsettings.php:477 adminpages/paymentsettings.php:479
|
4198 |
+
msgid "HTTPS Nuclear Option"
|
4199 |
+
msgstr "Volba HTTPS Nuclear"
|
4200 |
+
|
4201 |
+
#: adminpages/paymentsettings.php:441 adminpages/paymentsettings.php:474
|
4202 |
+
#: adminpages/paymentsettings.php:480 adminpages/paymentsettings.php:482
|
4203 |
+
msgid ""
|
4204 |
+
"Use the \"Nuclear Option\" to use secure (HTTPS) URLs on your secure pages. "
|
4205 |
+
"Check this if you are using SSL and have warnings on your checkout pages."
|
4206 |
+
msgstr ""
|
4207 |
+
"Použít \"Nuclear Option\" k použití zabezpečených (HTTPS) URL na vašich "
|
4208 |
+
"zabezpečených stránkách. Zatrhněte, pokud používáte SSL a máte varování na "
|
4209 |
+
"stránkách pokladny."
|
4210 |
+
|
4211 |
+
#: classes/class.pmproemail.php:685 classes/class.pmproemail.php:734
|
4212 |
+
#: classes/class.pmproemail.php:799
|
4213 |
+
msgid "membership has been cancelled"
|
4214 |
+
msgstr "členství bylo zrušeno"
|
4215 |
+
|
4216 |
+
#: includes/currencies.php:11
|
4217 |
+
msgid "Brazilian Real ($)"
|
4218 |
+
msgstr "brazilský real ($)"
|
4219 |
+
|
4220 |
+
#: includes/currencies.php:29 includes/currencies.php:49
|
4221 |
+
msgid "South African Rand"
|
4222 |
+
msgstr "jihoafrický rand"
|
4223 |
+
|
4224 |
+
#: includes/profile.php:82 includes/profile.php:84
|
4225 |
+
msgid "User is not paying."
|
4226 |
+
msgstr "Uživatel nezaplatil."
|
4227 |
+
|
4228 |
+
#: pages/account.php:10
|
4229 |
+
msgid "Your membership is <strong>active</strong>."
|
4230 |
+
msgstr "Vaše členství je <strong>aktivní</strong>."
|
4231 |
+
|
4232 |
+
#: pages/account.php:34 pages/account.php:38
|
4233 |
+
#, php-format
|
4234 |
+
msgid "Your first payment will cost %s."
|
4235 |
+
msgstr "Vaše první platba bude stát %s."
|
4236 |
+
|
4237 |
+
#: pages/account.php:38 pages/account.php:42
|
4238 |
+
#, php-format
|
4239 |
+
msgid "Your first %d payments will cost %s."
|
4240 |
+
msgstr "Vašich prvních %d plateb bude stát %s."
|
4241 |
+
|
4242 |
+
#: pages/account.php:87 pages/account.php:91
|
4243 |
+
msgid "Billing Information"
|
4244 |
+
msgstr "Fakturační údaje"
|
4245 |
+
|
4246 |
+
#: pages/account.php:114 pages/account.php:118
|
4247 |
+
msgid "Edit Billing Information"
|
4248 |
+
msgstr "Upravit fakturační údaje"
|
4249 |
+
|
4250 |
+
#: pages/account.php:152 pages/account.php:156
|
4251 |
+
msgid "Update Billing Information"
|
4252 |
+
msgstr "Aktualizovat fakturační údaje"
|
4253 |
+
|
4254 |
+
#: pages/account.php:155 pages/account.php:159
|
4255 |
+
msgid "Change Membership Level"
|
4256 |
+
msgstr "Změnit úroveň členství"
|
4257 |
+
|
4258 |
+
#: pages/account.php:157 pages/account.php:161
|
4259 |
+
msgid "Cancel Membership"
|
4260 |
+
msgstr "Zrušit členství"
|
4261 |
+
|
4262 |
+
#: pages/checkout.php:51 pages/checkout.php:52
|
4263 |
+
#, php-format
|
4264 |
+
msgid "<p>The <strong>%s</strong> code has been applied to your order.</p>"
|
4265 |
+
msgstr "<p>Kód <strong>%s</strong> byl použit na Vaši objednávku.</p>"
|
4266 |
+
|
4267 |
+
#: pages/checkout.php:688 pages/checkout.php:691 pages/checkout.php:707
|
4268 |
+
msgid "Submit and Pay with 2CheckOut"
|
4269 |
+
msgstr "Odeslat a zaplatit pomocí 2Checkout"
|
4270 |
|
4271 |
#: pages/confirmation.php:12
|
4272 |
msgid ""
|
4273 |
"Your payment has been submitted to PayPal. Your membership will be activated "
|
4274 |
"shortly."
|
4275 |
msgstr ""
|
4276 |
+
"Vaše platba byla odeslána PayPalu. Vaše členství bude aktivováno v nejbližší "
|
4277 |
+
"době."
|
4278 |
+
|
4279 |
+
#: pages/confirmation.php:95 pages/confirmation.php:97
|
4280 |
+
#, php-format
|
4281 |
+
msgid ""
|
4282 |
+
"Below are details about your membership account. A welcome email with has "
|
4283 |
+
"been sent to %s."
|
4284 |
+
msgstr ""
|
4285 |
+
"Níže jsou uvedeny informace o Vašem členském účtu. Na %s byl odeslán uvítací "
|
4286 |
+
"e-mail."
|
4287 |
+
|
4288 |
+
#: pages/invoice.php:120 pages/invoice.php:122
|
4289 |
+
msgid "View Invoice"
|
4290 |
+
msgstr "Zobrazit vyúčtování"
|
4291 |
+
|
4292 |
+
#: pages/levels.php:15
|
4293 |
+
msgid "Subscription Information"
|
4294 |
+
msgstr "Informace o předplatném"
|
4295 |
+
|
4296 |
+
#: pages/levels.php:33
|
4297 |
+
msgid "--"
|
4298 |
+
msgstr "--"
|
4299 |
+
|
4300 |
+
#: pages/levels.php:51
|
4301 |
+
#, php-format
|
4302 |
+
msgid "%s per %s for %d more %s."
|
4303 |
+
msgstr "%s za %s pro %d více %s."
|
4304 |
+
|
4305 |
+
#: pages/levels.php:55
|
4306 |
+
#, php-format
|
4307 |
+
msgid "%s every %d %s for %d more %s."
|
4308 |
+
msgstr "%s každý %d %s pro %d více %s."
|
4309 |
+
|
4310 |
+
#: pages/levels.php:60
|
4311 |
+
#, php-format
|
4312 |
+
msgid "%s after %d %s."
|
4313 |
+
msgstr "%s po %d %s."
|
4314 |
+
|
4315 |
+
#: pmpro-register-helper.php
|
4316 |
+
#, php-format
|
4317 |
+
msgid "Extra profile information"
|
4318 |
+
msgstr "Další informace o profilu"
|
4319 |
+
|
4320 |
+
#: pmpro-shipping.php
|
4321 |
+
#, php-format
|
4322 |
+
msgid "Hide Shipping Address:"
|
4323 |
+
msgstr "Skrýt doručovací adresu:"
|
4324 |
+
|
4325 |
+
#: pmpro-shipping.php
|
4326 |
+
#, php-format
|
4327 |
+
msgid "Ship to the billing address used above."
|
4328 |
+
msgstr "Doručit na fakturační adresu uvedenou výše."
|
4329 |
+
|
4330 |
+
#: pmpro-shipping.php
|
4331 |
+
#, php-format
|
4332 |
+
msgid "Shipping Address"
|
4333 |
+
msgstr "Doručovací adresa"
|
4334 |
+
|
4335 |
+
#: pmpro-shipping.php
|
4336 |
+
#, php-format
|
4337 |
+
msgid "Shipping Information:"
|
4338 |
+
msgstr "Informace o doručení"
|
languages/pmpro.mo
CHANGED
Binary file
|
languages/pmpro.po
CHANGED
@@ -5,8 +5,7 @@
|
|
5 |
msgid ""
|
6 |
msgstr ""
|
7 |
"Project-Id-Version: pmpro\n"
|
8 |
-
"POT-Creation-Date: 2015-
|
9 |
-
"POT-Creation-Date: 2015-03-10 11:13-0400\n"
|
10 |
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
11 |
"Last-Translator: \n"
|
12 |
"Language-Team: Stranger Studios <jason@strangerstudios.com>\n"
|
@@ -500,7 +499,7 @@ msgid "Start Date"
|
|
500 |
msgstr ""
|
501 |
|
502 |
#: adminpages/discountcodes.php:371
|
503 |
-
#: classes/gateways/class.pmprogateway_braintree.php:
|
504 |
#: classes/gateways/class.pmprogateway_stripe.php:454 pages/billing.php:253
|
505 |
#: pages/checkout.php:553 adminpages/discountcodes.php:367
|
506 |
#: adminpages/discountcodes.php:370 adminpages/discountcodes.php:371
|
@@ -1429,7 +1428,7 @@ msgid "e.g. PayPal Express, PayPal Standard, Credit Card."
|
|
1429 |
msgstr ""
|
1430 |
|
1431 |
#: adminpages/orders.php:389
|
1432 |
-
#: classes/gateways/class.pmprogateway_braintree.php:
|
1433 |
#: classes/gateways/class.pmprogateway_stripe.php:408 pages/billing.php:238
|
1434 |
#: pages/checkout.php:507 adminpages/orders.php:339 adminpages/orders.php:389
|
1435 |
#: classes/gateways/class.pmprogateway_braintree.php:291
|
@@ -2156,7 +2155,7 @@ msgstr ""
|
|
2156 |
#: classes/class.pmproemail.php:231 classes/class.pmproemail.php:240
|
2157 |
#: classes/class.pmproemail.php:249 classes/class.pmproemail.php:328
|
2158 |
#: classes/class.pmproemail.php:337 classes/class.pmproemail.php:648
|
2159 |
-
#: classes/gateways/class.pmprogateway_braintree.php:
|
2160 |
#: classes/gateways/class.pmprogateway_stripe.php:495 pages/checkout.php:66
|
2161 |
#: pages/checkout.php:76 pages/checkout.php:594 pages/confirmation.php:52
|
2162 |
#: pages/invoice.php:33 classes/class.pmproemail.php:216
|
@@ -2453,19 +2452,19 @@ msgstr ""
|
|
2453 |
msgid "Could not connect to Authorize.net"
|
2454 |
msgstr ""
|
2455 |
|
2456 |
-
#: classes/gateways/class.pmprogateway_braintree.php:
|
2457 |
#: paid-memberships-pro.php:123
|
2458 |
#: classes/gateways/class.pmprogateway_braintree.php:63
|
2459 |
#: paid-memberships-pro.php:123
|
2460 |
msgid "Braintree Payments"
|
2461 |
msgstr ""
|
2462 |
|
2463 |
-
#: classes/gateways/class.pmprogateway_braintree.php:
|
2464 |
#: classes/gateways/class.pmprogateway_braintree.php:119
|
2465 |
msgid "Braintree Settings"
|
2466 |
msgstr ""
|
2467 |
|
2468 |
-
#: classes/gateways/class.pmprogateway_braintree.php:
|
2469 |
#: classes/gateways/class.pmprogateway_cybersource.php:106
|
2470 |
#: adminpages/paymentsettings.php:294 adminpages/paymentsettings.php:298
|
2471 |
#: adminpages/paymentsettings.php:303 adminpages/paymentsettings.php:364
|
@@ -2475,28 +2474,28 @@ msgstr ""
|
|
2475 |
msgid "Merchant ID"
|
2476 |
msgstr ""
|
2477 |
|
2478 |
-
#: classes/gateways/class.pmprogateway_braintree.php:
|
2479 |
#: adminpages/paymentsettings.php:302 adminpages/paymentsettings.php:306
|
2480 |
#: adminpages/paymentsettings.php:311
|
2481 |
#: classes/gateways/class.pmprogateway_braintree.php:132
|
2482 |
msgid "Public Key"
|
2483 |
msgstr ""
|
2484 |
|
2485 |
-
#: classes/gateways/class.pmprogateway_braintree.php:
|
2486 |
#: adminpages/paymentsettings.php:310 adminpages/paymentsettings.php:314
|
2487 |
#: adminpages/paymentsettings.php:319
|
2488 |
#: classes/gateways/class.pmprogateway_braintree.php:140
|
2489 |
msgid "Private Key"
|
2490 |
msgstr ""
|
2491 |
|
2492 |
-
#: classes/gateways/class.pmprogateway_braintree.php:
|
2493 |
#: adminpages/paymentsettings.php:318 adminpages/paymentsettings.php:322
|
2494 |
#: adminpages/paymentsettings.php:327
|
2495 |
#: classes/gateways/class.pmprogateway_braintree.php:148
|
2496 |
msgid "Client-Side Encryption Key"
|
2497 |
msgstr ""
|
2498 |
|
2499 |
-
#: classes/gateways/class.pmprogateway_braintree.php:
|
2500 |
#: classes/gateways/class.pmprogateway_stripe.php:181
|
2501 |
#: adminpages/paymentsettings.php:462 adminpages/paymentsettings.php:470
|
2502 |
#: adminpages/paymentsettings.php:503 adminpages/paymentsettings.php:509
|
@@ -2507,14 +2506,14 @@ msgstr ""
|
|
2507 |
msgid "Web Hook URL"
|
2508 |
msgstr ""
|
2509 |
|
2510 |
-
#: classes/gateways/class.pmprogateway_braintree.php:
|
2511 |
#: adminpages/paymentsettings.php:474 adminpages/paymentsettings.php:515
|
2512 |
#: adminpages/paymentsettings.php:521 adminpages/paymentsettings.php:523
|
2513 |
#: classes/gateways/class.pmprogateway_braintree.php:160
|
2514 |
msgid "To fully integrate with Braintree, be sure to set your Web Hook URL to"
|
2515 |
msgstr ""
|
2516 |
|
2517 |
-
#: classes/gateways/class.pmprogateway_braintree.php:
|
2518 |
#: classes/gateways/class.pmprogateway_stripe.php:387 pages/checkout.php:485
|
2519 |
#: classes/gateways/class.pmprogateway_braintree.php:270
|
2520 |
#: classes/gateways/class.pmprogateway_stripe.php:387 pages/checkout.php:476
|
@@ -2523,7 +2522,7 @@ msgstr ""
|
|
2523 |
msgid "Payment Information"
|
2524 |
msgstr ""
|
2525 |
|
2526 |
-
#: classes/gateways/class.pmprogateway_braintree.php:
|
2527 |
#: classes/gateways/class.pmprogateway_stripe.php:387 pages/checkout.php:485
|
2528 |
#: classes/gateways/class.pmprogateway_braintree.php:270
|
2529 |
#: classes/gateways/class.pmprogateway_stripe.php:387 pages/checkout.php:476
|
@@ -2533,7 +2532,7 @@ msgstr ""
|
|
2533 |
msgid "We Accept %s"
|
2534 |
msgstr ""
|
2535 |
|
2536 |
-
#: classes/gateways/class.pmprogateway_braintree.php:
|
2537 |
#: classes/gateways/class.pmprogateway_stripe.php:449 pages/billing.php:248
|
2538 |
#: pages/checkout.php:548
|
2539 |
#: classes/gateways/class.pmprogateway_braintree.php:303
|
@@ -2543,7 +2542,7 @@ msgstr ""
|
|
2543 |
msgid "Card Number"
|
2544 |
msgstr ""
|
2545 |
|
2546 |
-
#: classes/gateways/class.pmprogateway_braintree.php:
|
2547 |
#: classes/gateways/class.pmprogateway_stripe.php:486 pages/billing.php:285
|
2548 |
#: pages/checkout.php:585
|
2549 |
#: classes/gateways/class.pmprogateway_braintree.php:340
|
@@ -2553,7 +2552,7 @@ msgstr ""
|
|
2553 |
msgid "CVV"
|
2554 |
msgstr ""
|
2555 |
|
2556 |
-
#: classes/gateways/class.pmprogateway_braintree.php:
|
2557 |
#: classes/gateways/class.pmprogateway_stripe.php:487 pages/billing.php:286
|
2558 |
#: pages/checkout.php:586
|
2559 |
#: classes/gateways/class.pmprogateway_braintree.php:341
|
@@ -2563,7 +2562,7 @@ msgstr ""
|
|
2563 |
msgid "what's this?"
|
2564 |
msgstr ""
|
2565 |
|
2566 |
-
#: classes/gateways/class.pmprogateway_braintree.php:
|
2567 |
#: classes/gateways/class.pmprogateway_stripe.php:497 pages/checkout.php:78
|
2568 |
#: pages/checkout.php:596
|
2569 |
#: classes/gateways/class.pmprogateway_braintree.php:351
|
@@ -2574,7 +2573,7 @@ msgstr ""
|
|
2574 |
msgid "Apply"
|
2575 |
msgstr ""
|
2576 |
|
2577 |
-
#: classes/gateways/class.pmprogateway_braintree.php:
|
2578 |
#: classes/gateways/class.pmprogateway_stripe.php:1011
|
2579 |
#: classes/gateways/class.pmprogateway_braintree.php:61
|
2580 |
#: classes/gateways/class.pmprogateway_braintree.php:406
|
@@ -2583,40 +2582,40 @@ msgstr ""
|
|
2583 |
msgid "Unknown error: Initial payment failed."
|
2584 |
msgstr ""
|
2585 |
|
2586 |
-
#: classes/gateways/class.pmprogateway_braintree.php:
|
2587 |
#: classes/gateways/class.pmprogateway_braintree.php:120
|
2588 |
#: classes/gateways/class.pmprogateway_braintree.php:465
|
2589 |
msgid "Error during settlement:"
|
2590 |
msgstr ""
|
2591 |
|
2592 |
-
#: classes/gateways/class.pmprogateway_braintree.php:
|
2593 |
#: classes/gateways/class.pmprogateway_braintree.php:129
|
2594 |
#: classes/gateways/class.pmprogateway_braintree.php:474
|
2595 |
msgid "Error during charge:"
|
2596 |
msgstr ""
|
2597 |
|
2598 |
-
#: classes/gateways/class.pmprogateway_braintree.php:
|
2599 |
#: classes/gateways/class.pmprogateway_braintree.php:198
|
2600 |
#: classes/gateways/class.pmprogateway_braintree.php:221
|
2601 |
#: classes/gateways/class.pmprogateway_braintree.php:566
|
2602 |
msgid "Failed to update customer."
|
2603 |
msgstr ""
|
2604 |
|
2605 |
-
#: classes/gateways/class.pmprogateway_braintree.php:
|
2606 |
#: classes/gateways/class.pmprogateway_braintree.php:246
|
2607 |
#: classes/gateways/class.pmprogateway_braintree.php:269
|
2608 |
#: classes/gateways/class.pmprogateway_braintree.php:614
|
2609 |
msgid "Failed to create customer."
|
2610 |
msgstr ""
|
2611 |
|
2612 |
-
#: classes/gateways/class.pmprogateway_braintree.php:
|
2613 |
#: classes/gateways/class.pmprogateway_braintree.php:253
|
2614 |
#: classes/gateways/class.pmprogateway_braintree.php:276
|
2615 |
#: classes/gateways/class.pmprogateway_braintree.php:621
|
2616 |
msgid "Error creating customer record with Braintree:"
|
2617 |
msgstr ""
|
2618 |
|
2619 |
-
#: classes/gateways/class.pmprogateway_braintree.php:
|
2620 |
#: classes/gateways/class.pmprogateway_braintree.php:344
|
2621 |
#: classes/gateways/class.pmprogateway_braintree.php:345
|
2622 |
#: classes/gateways/class.pmprogateway_braintree.php:376
|
@@ -2624,7 +2623,7 @@ msgstr ""
|
|
2624 |
msgid "Error subscribing customer to plan with Braintree:"
|
2625 |
msgstr ""
|
2626 |
|
2627 |
-
#: classes/gateways/class.pmprogateway_braintree.php:
|
2628 |
#: classes/gateways/class.pmprogateway_braintree.php:359
|
2629 |
#: classes/gateways/class.pmprogateway_braintree.php:360
|
2630 |
#: classes/gateways/class.pmprogateway_braintree.php:391
|
@@ -2632,9 +2631,9 @@ msgstr ""
|
|
2632 |
msgid "Failed to subscribe with Braintree:"
|
2633 |
msgstr ""
|
2634 |
|
2635 |
-
#: classes/gateways/class.pmprogateway_braintree.php:774
|
2636 |
#: classes/gateways/class.pmprogateway_braintree.php:787
|
2637 |
-
#: classes/gateways/class.pmprogateway_braintree.php:
|
|
|
2638 |
#: classes/gateways/class.pmprogateway_braintree.php:397
|
2639 |
#: classes/gateways/class.pmprogateway_braintree.php:398
|
2640 |
#: classes/gateways/class.pmprogateway_braintree.php:410
|
@@ -3051,6 +3050,7 @@ msgstr ""
|
|
3051 |
#: classes/gateways/class.pmprogateway_stripe.php:199
|
3052 |
#: classes/gateways/class.pmprogateway_stripe.php:201
|
3053 |
#: classes/gateways/class.pmprogateway_stripe.php:1187
|
|
|
3054 |
msgid "Error creating customer record with Stripe:"
|
3055 |
msgstr ""
|
3056 |
|
@@ -3063,11 +3063,13 @@ msgstr ""
|
|
3063 |
#: classes/gateways/class.pmprogateway_stripe.php:308
|
3064 |
#: classes/gateways/class.pmprogateway_stripe.php:311
|
3065 |
#: classes/gateways/class.pmprogateway_stripe.php:1244
|
|
|
3066 |
#: classes/gateways/class.pmprogateway_stripe.php:1390
|
|
|
3067 |
msgid "Error creating plan with Stripe:"
|
3068 |
msgstr ""
|
3069 |
|
3070 |
-
#: classes/gateways/class.pmprogateway_stripe.php:
|
3071 |
#: classes/gateways/class.pmprogateway_stripe.php:294
|
3072 |
#: classes/gateways/class.pmprogateway_stripe.php:295
|
3073 |
#: classes/gateways/class.pmprogateway_stripe.php:302
|
@@ -3075,19 +3077,22 @@ msgstr ""
|
|
3075 |
#: classes/gateways/class.pmprogateway_stripe.php:324
|
3076 |
#: classes/gateways/class.pmprogateway_stripe.php:330
|
3077 |
#: classes/gateways/class.pmprogateway_stripe.php:1420
|
|
|
3078 |
msgid "Error subscribing customer to plan with Stripe:"
|
3079 |
msgstr ""
|
3080 |
|
3081 |
-
#: classes/gateways/class.pmprogateway_stripe.php:
|
3082 |
#: classes/gateways/class.pmprogateway_stripe.php:383
|
3083 |
#: classes/gateways/class.pmprogateway_stripe.php:389
|
3084 |
#: classes/gateways/class.pmprogateway_stripe.php:410
|
3085 |
#: classes/gateways/class.pmprogateway_stripe.php:1516
|
|
|
3086 |
msgid "Could not cancel old subscription."
|
3087 |
msgstr ""
|
3088 |
|
3089 |
-
#: classes/gateways/class.pmprogateway_stripe.php:
|
3090 |
#: classes/gateways/class.pmprogateway_stripe.php:1533
|
|
|
3091 |
msgid "Could not find the customer."
|
3092 |
msgstr ""
|
3093 |
|
@@ -3183,21 +3188,21 @@ msgstr ""
|
|
3183 |
msgid "Visit Customer Support Forum"
|
3184 |
msgstr ""
|
3185 |
|
3186 |
-
#: includes/currencies.php:7 includes/currencies.php:
|
3187 |
#: includes/currencies.php:7 includes/currencies.php:37
|
3188 |
#: includes/currencies.php:44 includes/currencies.php:64
|
3189 |
#: includes/currencies.php:68
|
3190 |
msgid "US Dollars ($)"
|
3191 |
msgstr ""
|
3192 |
|
3193 |
-
#: includes/currencies.php:9 includes/currencies.php:
|
3194 |
#: includes/currencies.php:8 includes/currencies.php:9
|
3195 |
#: includes/currencies.php:40 includes/currencies.php:47
|
3196 |
#: includes/currencies.php:67 includes/currencies.php:71
|
3197 |
msgid "Euros (€)"
|
3198 |
msgstr ""
|
3199 |
|
3200 |
-
#: includes/currencies.php:14 includes/currencies.php:
|
3201 |
#: includes/currencies.php:9 includes/currencies.php:14
|
3202 |
#: includes/currencies.php:39 includes/currencies.php:46
|
3203 |
#: includes/currencies.php:66 includes/currencies.php:70
|
@@ -3213,7 +3218,7 @@ msgstr ""
|
|
3213 |
msgid "Brazilian Real (R$)"
|
3214 |
msgstr ""
|
3215 |
|
3216 |
-
#: includes/currencies.php:24 includes/currencies.php:
|
3217 |
#: includes/currencies.php:12 includes/currencies.php:24
|
3218 |
#: includes/currencies.php:38 includes/currencies.php:45
|
3219 |
#: includes/currencies.php:65 includes/currencies.php:69
|
@@ -3225,120 +3230,120 @@ msgstr ""
|
|
3225 |
msgid "Chinese Yuan"
|
3226 |
msgstr ""
|
3227 |
|
3228 |
-
#: includes/currencies.php:
|
3229 |
#: includes/currencies.php:14 includes/currencies.php:26
|
3230 |
msgid "Czech Koruna"
|
3231 |
msgstr ""
|
3232 |
|
3233 |
-
#: includes/currencies.php:
|
3234 |
#: includes/currencies.php:15 includes/currencies.php:27
|
3235 |
msgid "Danish Krone"
|
3236 |
msgstr ""
|
3237 |
|
3238 |
-
#: includes/currencies.php:
|
3239 |
#: includes/currencies.php:16 includes/currencies.php:28
|
3240 |
msgid "Hong Kong Dollar ($)"
|
3241 |
msgstr ""
|
3242 |
|
3243 |
-
#: includes/currencies.php:
|
3244 |
#: includes/currencies.php:17 includes/currencies.php:29
|
3245 |
msgid "Hungarian Forint"
|
3246 |
msgstr ""
|
3247 |
|
3248 |
-
#: includes/currencies.php:
|
3249 |
#: includes/currencies.php:30
|
3250 |
msgid "Indian Rupee"
|
3251 |
msgstr ""
|
3252 |
|
3253 |
-
#: includes/currencies.php:
|
3254 |
#: includes/currencies.php:31
|
3255 |
msgid "Indonesia Rupiah"
|
3256 |
msgstr ""
|
3257 |
|
3258 |
-
#: includes/currencies.php:
|
3259 |
#: includes/currencies.php:20 includes/currencies.php:32
|
3260 |
msgid "Israeli Shekel"
|
3261 |
msgstr ""
|
3262 |
|
3263 |
-
#: includes/currencies.php:
|
3264 |
#: includes/currencies.php:21 includes/currencies.php:34
|
3265 |
msgid "Japanese Yen (¥)"
|
3266 |
msgstr ""
|
3267 |
|
3268 |
-
#: includes/currencies.php:
|
3269 |
#: includes/currencies.php:22 includes/currencies.php:38
|
3270 |
msgid "Malaysian Ringgits"
|
3271 |
msgstr ""
|
3272 |
|
3273 |
-
#: includes/currencies.php:
|
3274 |
#: includes/currencies.php:23 includes/currencies.php:39
|
3275 |
msgid "Mexican Peso ($)"
|
3276 |
msgstr ""
|
3277 |
|
3278 |
-
#: includes/currencies.php:
|
3279 |
#: includes/currencies.php:24 includes/currencies.php:40
|
3280 |
msgid "New Zealand Dollar ($)"
|
3281 |
msgstr ""
|
3282 |
|
3283 |
-
#: includes/currencies.php:
|
3284 |
#: includes/currencies.php:25 includes/currencies.php:41
|
3285 |
msgid "Norwegian Krone"
|
3286 |
msgstr ""
|
3287 |
|
3288 |
-
#: includes/currencies.php:
|
3289 |
#: includes/currencies.php:26 includes/currencies.php:42
|
3290 |
msgid "Philippine Pesos"
|
3291 |
msgstr ""
|
3292 |
|
3293 |
-
#: includes/currencies.php:
|
3294 |
#: includes/currencies.php:27 includes/currencies.php:43
|
3295 |
msgid "Polish Zloty"
|
3296 |
msgstr ""
|
3297 |
|
3298 |
-
#: includes/currencies.php:
|
3299 |
#: includes/currencies.php:28 includes/currencies.php:45
|
3300 |
msgid "Singapore Dollar ($)"
|
3301 |
msgstr ""
|
3302 |
|
3303 |
-
#: includes/currencies.php:
|
3304 |
msgid "South African Rand (R)"
|
3305 |
msgstr ""
|
3306 |
|
3307 |
-
#: includes/currencies.php:
|
3308 |
#: includes/currencies.php:50 includes/currencies.php:54
|
3309 |
msgid "South Korean Won"
|
3310 |
msgstr ""
|
3311 |
|
3312 |
-
#: includes/currencies.php:
|
3313 |
#: includes/currencies.php:31 includes/currencies.php:51
|
3314 |
#: includes/currencies.php:55
|
3315 |
msgid "Swedish Krona"
|
3316 |
msgstr ""
|
3317 |
|
3318 |
-
#: includes/currencies.php:
|
3319 |
#: includes/currencies.php:32 includes/currencies.php:52
|
3320 |
#: includes/currencies.php:56
|
3321 |
msgid "Swiss Franc"
|
3322 |
msgstr ""
|
3323 |
|
3324 |
-
#: includes/currencies.php:
|
3325 |
#: includes/currencies.php:33 includes/currencies.php:53
|
3326 |
#: includes/currencies.php:57
|
3327 |
msgid "Taiwan New Dollars"
|
3328 |
msgstr ""
|
3329 |
|
3330 |
-
#: includes/currencies.php:
|
3331 |
#: includes/currencies.php:34 includes/currencies.php:54
|
3332 |
#: includes/currencies.php:58
|
3333 |
msgid "Thai Baht"
|
3334 |
msgstr ""
|
3335 |
|
3336 |
-
#: includes/currencies.php:
|
3337 |
#: includes/currencies.php:55 includes/currencies.php:59
|
3338 |
msgid "Turkish Lira"
|
3339 |
msgstr ""
|
3340 |
|
3341 |
-
#: includes/currencies.php:
|
3342 |
#: includes/currencies.php:56 includes/currencies.php:60
|
3343 |
msgid "Vietnamese Dong"
|
3344 |
msgstr ""
|
@@ -3463,29 +3468,32 @@ msgstr ""
|
|
3463 |
msgid "Membership expires after %d %s."
|
3464 |
msgstr ""
|
3465 |
|
3466 |
-
#: includes/functions.php:
|
3467 |
#: includes/functions.php:514 includes/functions.php:525
|
3468 |
#: includes/functions.php:536 includes/functions.php:537
|
3469 |
#: includes/functions.php:538 includes/functions.php:545
|
|
|
3470 |
msgid "User ID not found."
|
3471 |
msgstr ""
|
3472 |
|
3473 |
-
#: includes/functions.php:
|
3474 |
#: includes/functions.php:531 includes/functions.php:542
|
3475 |
#: includes/functions.php:553 includes/functions.php:554
|
3476 |
#: includes/functions.php:555 includes/functions.php:562
|
|
|
3477 |
msgid "Invalid level."
|
3478 |
msgstr ""
|
3479 |
|
3480 |
-
#: includes/functions.php:
|
3481 |
#: includes/functions.php:542 includes/functions.php:553
|
3482 |
#: includes/functions.php:564 includes/functions.php:565
|
3483 |
#: includes/functions.php:566 includes/functions.php:573
|
|
|
3484 |
msgid "not changing?"
|
3485 |
msgstr ""
|
3486 |
|
3487 |
-
#: includes/functions.php:
|
3488 |
-
#: includes/functions.php:
|
3489 |
#: includes/functions.php:559 includes/functions.php:570
|
3490 |
#: includes/functions.php:581 includes/functions.php:582
|
3491 |
#: includes/functions.php:583 includes/functions.php:590
|
@@ -3496,11 +3504,11 @@ msgstr ""
|
|
3496 |
#: includes/functions.php:633 includes/functions.php:637
|
3497 |
#: includes/functions.php:640 includes/functions.php:649
|
3498 |
#: includes/functions.php:656 includes/functions.php:657
|
3499 |
-
#: includes/functions.php:673
|
3500 |
msgid "Error interacting with database"
|
3501 |
msgstr ""
|
3502 |
|
3503 |
-
#: includes/functions.php:
|
3504 |
#: includes/functions.php:629 includes/functions.php:651
|
3505 |
#: includes/functions.php:667 includes/functions.php:668
|
3506 |
#: includes/functions.php:678 includes/functions.php:681
|
@@ -3508,91 +3516,97 @@ msgstr ""
|
|
3508 |
#: includes/functions.php:698 includes/functions.php:706
|
3509 |
#: includes/functions.php:714 includes/functions.php:717
|
3510 |
#: includes/functions.php:720 includes/functions.php:736
|
3511 |
-
#: includes/functions.php:737 includes/functions.php:
|
|
|
3512 |
msgid "Membership level not found."
|
3513 |
msgstr ""
|
3514 |
|
3515 |
-
#: includes/functions.php:
|
3516 |
#: includes/functions.php:1101 includes/functions.php:1118
|
|
|
3517 |
msgid "No code was given to check."
|
3518 |
msgstr ""
|
3519 |
|
3520 |
-
#: includes/functions.php:
|
3521 |
#: includes/functions.php:1072 includes/functions.php:1088
|
3522 |
#: includes/functions.php:1099 includes/functions.php:1102
|
3523 |
#: includes/functions.php:1109 includes/functions.php:1110
|
3524 |
#: includes/functions.php:1112 includes/functions.php:1113
|
3525 |
-
#: includes/functions.php:1127
|
3526 |
msgid "The discount code could not be found."
|
3527 |
msgstr ""
|
3528 |
|
3529 |
-
#: includes/functions.php:
|
3530 |
#: includes/functions.php:1088 includes/functions.php:1104
|
3531 |
#: includes/functions.php:1115 includes/functions.php:1118
|
3532 |
#: includes/functions.php:1124 includes/functions.php:1125
|
3533 |
#: includes/functions.php:1128 includes/functions.php:1129
|
3534 |
-
#: includes/functions.php:1142
|
3535 |
#, php-format
|
3536 |
msgid "This discount code goes into effect on %s."
|
3537 |
msgstr ""
|
3538 |
|
3539 |
-
#: includes/functions.php:
|
3540 |
#: includes/functions.php:1097 includes/functions.php:1113
|
3541 |
#: includes/functions.php:1124 includes/functions.php:1127
|
3542 |
#: includes/functions.php:1131 includes/functions.php:1132
|
3543 |
#: includes/functions.php:1137 includes/functions.php:1138
|
3544 |
-
#: includes/functions.php:1149
|
3545 |
#, php-format
|
3546 |
msgid "This discount code expired on %s."
|
3547 |
msgstr ""
|
3548 |
|
3549 |
-
#: includes/functions.php:
|
3550 |
#: includes/functions.php:1109 includes/functions.php:1125
|
3551 |
#: includes/functions.php:1136 includes/functions.php:1139
|
3552 |
#: includes/functions.php:1141 includes/functions.php:1142
|
3553 |
#: includes/functions.php:1149 includes/functions.php:1150
|
3554 |
-
#: includes/functions.php:1159
|
3555 |
msgid "This discount code is no longer valid."
|
3556 |
msgstr ""
|
3557 |
|
3558 |
-
#: includes/functions.php:
|
3559 |
#: includes/functions.php:1124 includes/functions.php:1140
|
3560 |
#: includes/functions.php:1151 includes/functions.php:1154
|
3561 |
#: includes/functions.php:1155 includes/functions.php:1164
|
3562 |
#: includes/functions.php:1165 includes/functions.php:1172
|
|
|
3563 |
msgid "This discount code does not apply to this membership level."
|
3564 |
msgstr ""
|
3565 |
|
3566 |
-
#: includes/functions.php:
|
3567 |
#: includes/functions.php:1132 includes/functions.php:1148
|
3568 |
#: includes/functions.php:1159 includes/functions.php:1162
|
3569 |
#: includes/functions.php:1172 includes/functions.php:1180
|
3570 |
#: includes/functions.php:1181 includes/functions.php:1182
|
3571 |
-
#: includes/functions.php:1198
|
3572 |
msgid "This discount code is okay."
|
3573 |
msgstr ""
|
3574 |
|
3575 |
-
#: includes/functions.php:
|
3576 |
#: includes/functions.php:1156 includes/functions.php:1172
|
3577 |
#: includes/functions.php:1183 includes/functions.php:1186
|
3578 |
#: includes/functions.php:1196 includes/functions.php:1205
|
3579 |
#: includes/functions.php:1206 includes/functions.php:1223
|
|
|
3580 |
msgid "and"
|
3581 |
msgstr ""
|
3582 |
|
3583 |
-
#: includes/functions.php:
|
3584 |
#: includes/functions.php:1341 includes/functions.php:1361
|
3585 |
#: includes/functions.php:1372 includes/functions.php:1375
|
3586 |
#: includes/functions.php:1385 includes/functions.php:1394
|
3587 |
#: includes/functions.php:1395 includes/functions.php:1412
|
|
|
3588 |
msgid "Sign Up for !!name!! Now"
|
3589 |
msgstr ""
|
3590 |
|
3591 |
-
#: includes/functions.php:
|
3592 |
#: includes/functions.php:1347 includes/functions.php:1367
|
3593 |
#: includes/functions.php:1378 includes/functions.php:1381
|
3594 |
#: includes/functions.php:1391 includes/functions.php:1400
|
3595 |
#: includes/functions.php:1401 includes/functions.php:1418
|
|
|
3596 |
msgid "Please specify a level id."
|
3597 |
msgstr ""
|
3598 |
|
@@ -3925,7 +3939,7 @@ msgid ""
|
|
3925 |
"been applied to your order.</p>"
|
3926 |
msgstr ""
|
3927 |
|
3928 |
-
#: pages/checkout.php:62 services/applydiscountcode.php:
|
3929 |
#: pages/checkout.php:62 pages/checkout.php:63 pages/checkout.php:64
|
3930 |
#: services/applydiscountcode.php:74 services/applydiscountcode.php:75
|
3931 |
#: services/applydiscountcode.php:78
|
@@ -4036,6 +4050,7 @@ msgid "Invoice #%s on %s"
|
|
4036 |
msgstr ""
|
4037 |
|
4038 |
#: pages/confirmation.php:43 pages/invoice.php:24 pages/confirmation.php:43
|
|
|
4039 |
msgid "Print"
|
4040 |
msgstr ""
|
4041 |
|
@@ -4286,77 +4301,80 @@ msgstr ""
|
|
4286 |
msgid "That email address is already taken. Please try another."
|
4287 |
msgstr ""
|
4288 |
|
4289 |
-
#: preheaders/checkout.php:397 preheaders/checkout.php:
|
4290 |
-
#: preheaders/checkout.php:
|
4291 |
-
#: preheaders/checkout.php:
|
4292 |
-
#: preheaders/checkout.php:
|
|
|
4293 |
#, php-format
|
4294 |
msgid "reCAPTCHA failed. (%s) Please try again."
|
4295 |
msgstr ""
|
4296 |
|
4297 |
-
#: preheaders/checkout.php:482 preheaders/checkout.php:
|
4298 |
-
#: preheaders/checkout.php:
|
4299 |
-
#: preheaders/checkout.php:
|
4300 |
-
#: preheaders/checkout.php:
|
|
|
4301 |
msgid "Payment accepted."
|
4302 |
msgstr ""
|
4303 |
|
4304 |
-
#: preheaders/checkout.php:490 preheaders/checkout.php:
|
4305 |
-
#: preheaders/checkout.php:
|
4306 |
-
#: preheaders/checkout.php:
|
4307 |
-
#: preheaders/checkout.php:
|
|
|
4308 |
msgid ""
|
4309 |
"Unknown error generating account. Please contact us to setup your membership."
|
4310 |
msgstr ""
|
4311 |
|
4312 |
-
#: preheaders/checkout.php:550 preheaders/checkout.php:
|
4313 |
-
#: preheaders/checkout.php:
|
4314 |
-
#: preheaders/checkout.php:
|
4315 |
-
#: preheaders/checkout.php:
|
4316 |
-
#: preheaders/checkout.php:860
|
4317 |
msgid ""
|
4318 |
"Your payment was accepted, but there was an error setting up your account. "
|
4319 |
"Please contact us."
|
4320 |
msgstr ""
|
4321 |
|
4322 |
-
#: preheaders/checkout.php:691 preheaders/checkout.php:
|
4323 |
-
#: preheaders/checkout.php:
|
4324 |
-
#: preheaders/checkout.php:
|
4325 |
-
#: preheaders/checkout.php:
|
4326 |
-
#: preheaders/checkout.php:1046
|
4327 |
msgid ""
|
4328 |
"IMPORTANT: Something went wrong during membership creation. Your credit card "
|
4329 |
"authorized, but we cancelled the order immediately. You should not try to "
|
4330 |
"submit this form again. Please contact the site owner to fix this issue."
|
4331 |
msgstr ""
|
4332 |
|
4333 |
-
#: preheaders/checkout.php:694 preheaders/checkout.php:
|
4334 |
-
#: preheaders/checkout.php:
|
4335 |
-
#: preheaders/checkout.php:
|
4336 |
-
#: preheaders/checkout.php:
|
4337 |
-
#: preheaders/checkout.php:1051
|
4338 |
msgid ""
|
4339 |
"IMPORTANT: Something went wrong during membership creation. Your credit card "
|
4340 |
"was charged, but we couldn't assign your membership. You should not submit "
|
4341 |
"this form again. Please contact the site owner to fix this issue."
|
4342 |
msgstr ""
|
4343 |
|
4344 |
-
#: preheaders/checkout.php:705 preheaders/checkout.php:
|
4345 |
-
#: preheaders/checkout.php:
|
4346 |
-
#: preheaders/checkout.php:
|
4347 |
-
#: preheaders/checkout.php:
|
4348 |
-
#: preheaders/checkout.php:1064
|
4349 |
#, php-format
|
4350 |
msgid ""
|
4351 |
"You must <a href=\"%s\">setup a Payment Gateway</a> before any payments will "
|
4352 |
"be processed."
|
4353 |
msgstr ""
|
4354 |
|
4355 |
-
#: preheaders/checkout.php:707 preheaders/checkout.php:
|
4356 |
-
#: preheaders/checkout.php:
|
4357 |
-
#: preheaders/checkout.php:
|
4358 |
-
#: preheaders/checkout.php:
|
4359 |
-
#: preheaders/checkout.php:1066
|
4360 |
msgid "A Payment Gateway must be setup before any payments will be processed."
|
4361 |
msgstr ""
|
4362 |
|
@@ -4390,7 +4408,7 @@ msgstr ""
|
|
4390 |
msgid "The %s code has been applied to your order. "
|
4391 |
msgstr ""
|
4392 |
|
4393 |
-
#: services/applydiscountcode.php:
|
4394 |
#: services/applydiscountcode.php:83 services/applydiscountcode.php:86
|
4395 |
#, php-format
|
4396 |
msgid "The <strong>%s</strong> code has been applied to your order."
|
5 |
msgid ""
|
6 |
msgstr ""
|
7 |
"Project-Id-Version: pmpro\n"
|
8 |
+
"POT-Creation-Date: 2015-03-17 09:49-0400\n"
|
|
|
9 |
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
10 |
"Last-Translator: \n"
|
11 |
"Language-Team: Stranger Studios <jason@strangerstudios.com>\n"
|
499 |
msgstr ""
|
500 |
|
501 |
#: adminpages/discountcodes.php:371
|
502 |
+
#: classes/gateways/class.pmprogateway_braintree.php:321
|
503 |
#: classes/gateways/class.pmprogateway_stripe.php:454 pages/billing.php:253
|
504 |
#: pages/checkout.php:553 adminpages/discountcodes.php:367
|
505 |
#: adminpages/discountcodes.php:370 adminpages/discountcodes.php:371
|
1428 |
msgstr ""
|
1429 |
|
1430 |
#: adminpages/orders.php:389
|
1431 |
+
#: classes/gateways/class.pmprogateway_braintree.php:304
|
1432 |
#: classes/gateways/class.pmprogateway_stripe.php:408 pages/billing.php:238
|
1433 |
#: pages/checkout.php:507 adminpages/orders.php:339 adminpages/orders.php:389
|
1434 |
#: classes/gateways/class.pmprogateway_braintree.php:291
|
2155 |
#: classes/class.pmproemail.php:231 classes/class.pmproemail.php:240
|
2156 |
#: classes/class.pmproemail.php:249 classes/class.pmproemail.php:328
|
2157 |
#: classes/class.pmproemail.php:337 classes/class.pmproemail.php:648
|
2158 |
+
#: classes/gateways/class.pmprogateway_braintree.php:362
|
2159 |
#: classes/gateways/class.pmprogateway_stripe.php:495 pages/checkout.php:66
|
2160 |
#: pages/checkout.php:76 pages/checkout.php:594 pages/confirmation.php:52
|
2161 |
#: pages/invoice.php:33 classes/class.pmproemail.php:216
|
2452 |
msgid "Could not connect to Authorize.net"
|
2453 |
msgstr ""
|
2454 |
|
2455 |
+
#: classes/gateways/class.pmprogateway_braintree.php:76
|
2456 |
#: paid-memberships-pro.php:123
|
2457 |
#: classes/gateways/class.pmprogateway_braintree.php:63
|
2458 |
#: paid-memberships-pro.php:123
|
2459 |
msgid "Braintree Payments"
|
2460 |
msgstr ""
|
2461 |
|
2462 |
+
#: classes/gateways/class.pmprogateway_braintree.php:132
|
2463 |
#: classes/gateways/class.pmprogateway_braintree.php:119
|
2464 |
msgid "Braintree Settings"
|
2465 |
msgstr ""
|
2466 |
|
2467 |
+
#: classes/gateways/class.pmprogateway_braintree.php:137
|
2468 |
#: classes/gateways/class.pmprogateway_cybersource.php:106
|
2469 |
#: adminpages/paymentsettings.php:294 adminpages/paymentsettings.php:298
|
2470 |
#: adminpages/paymentsettings.php:303 adminpages/paymentsettings.php:364
|
2474 |
msgid "Merchant ID"
|
2475 |
msgstr ""
|
2476 |
|
2477 |
+
#: classes/gateways/class.pmprogateway_braintree.php:145
|
2478 |
#: adminpages/paymentsettings.php:302 adminpages/paymentsettings.php:306
|
2479 |
#: adminpages/paymentsettings.php:311
|
2480 |
#: classes/gateways/class.pmprogateway_braintree.php:132
|
2481 |
msgid "Public Key"
|
2482 |
msgstr ""
|
2483 |
|
2484 |
+
#: classes/gateways/class.pmprogateway_braintree.php:153
|
2485 |
#: adminpages/paymentsettings.php:310 adminpages/paymentsettings.php:314
|
2486 |
#: adminpages/paymentsettings.php:319
|
2487 |
#: classes/gateways/class.pmprogateway_braintree.php:140
|
2488 |
msgid "Private Key"
|
2489 |
msgstr ""
|
2490 |
|
2491 |
+
#: classes/gateways/class.pmprogateway_braintree.php:161
|
2492 |
#: adminpages/paymentsettings.php:318 adminpages/paymentsettings.php:322
|
2493 |
#: adminpages/paymentsettings.php:327
|
2494 |
#: classes/gateways/class.pmprogateway_braintree.php:148
|
2495 |
msgid "Client-Side Encryption Key"
|
2496 |
msgstr ""
|
2497 |
|
2498 |
+
#: classes/gateways/class.pmprogateway_braintree.php:169
|
2499 |
#: classes/gateways/class.pmprogateway_stripe.php:181
|
2500 |
#: adminpages/paymentsettings.php:462 adminpages/paymentsettings.php:470
|
2501 |
#: adminpages/paymentsettings.php:503 adminpages/paymentsettings.php:509
|
2506 |
msgid "Web Hook URL"
|
2507 |
msgstr ""
|
2508 |
|
2509 |
+
#: classes/gateways/class.pmprogateway_braintree.php:173
|
2510 |
#: adminpages/paymentsettings.php:474 adminpages/paymentsettings.php:515
|
2511 |
#: adminpages/paymentsettings.php:521 adminpages/paymentsettings.php:523
|
2512 |
#: classes/gateways/class.pmprogateway_braintree.php:160
|
2513 |
msgid "To fully integrate with Braintree, be sure to set your Web Hook URL to"
|
2514 |
msgstr ""
|
2515 |
|
2516 |
+
#: classes/gateways/class.pmprogateway_braintree.php:283
|
2517 |
#: classes/gateways/class.pmprogateway_stripe.php:387 pages/checkout.php:485
|
2518 |
#: classes/gateways/class.pmprogateway_braintree.php:270
|
2519 |
#: classes/gateways/class.pmprogateway_stripe.php:387 pages/checkout.php:476
|
2522 |
msgid "Payment Information"
|
2523 |
msgstr ""
|
2524 |
|
2525 |
+
#: classes/gateways/class.pmprogateway_braintree.php:283
|
2526 |
#: classes/gateways/class.pmprogateway_stripe.php:387 pages/checkout.php:485
|
2527 |
#: classes/gateways/class.pmprogateway_braintree.php:270
|
2528 |
#: classes/gateways/class.pmprogateway_stripe.php:387 pages/checkout.php:476
|
2532 |
msgid "We Accept %s"
|
2533 |
msgstr ""
|
2534 |
|
2535 |
+
#: classes/gateways/class.pmprogateway_braintree.php:316
|
2536 |
#: classes/gateways/class.pmprogateway_stripe.php:449 pages/billing.php:248
|
2537 |
#: pages/checkout.php:548
|
2538 |
#: classes/gateways/class.pmprogateway_braintree.php:303
|
2542 |
msgid "Card Number"
|
2543 |
msgstr ""
|
2544 |
|
2545 |
+
#: classes/gateways/class.pmprogateway_braintree.php:353
|
2546 |
#: classes/gateways/class.pmprogateway_stripe.php:486 pages/billing.php:285
|
2547 |
#: pages/checkout.php:585
|
2548 |
#: classes/gateways/class.pmprogateway_braintree.php:340
|
2552 |
msgid "CVV"
|
2553 |
msgstr ""
|
2554 |
|
2555 |
+
#: classes/gateways/class.pmprogateway_braintree.php:354
|
2556 |
#: classes/gateways/class.pmprogateway_stripe.php:487 pages/billing.php:286
|
2557 |
#: pages/checkout.php:586
|
2558 |
#: classes/gateways/class.pmprogateway_braintree.php:341
|
2562 |
msgid "what's this?"
|
2563 |
msgstr ""
|
2564 |
|
2565 |
+
#: classes/gateways/class.pmprogateway_braintree.php:364
|
2566 |
#: classes/gateways/class.pmprogateway_stripe.php:497 pages/checkout.php:78
|
2567 |
#: pages/checkout.php:596
|
2568 |
#: classes/gateways/class.pmprogateway_braintree.php:351
|
2573 |
msgid "Apply"
|
2574 |
msgstr ""
|
2575 |
|
2576 |
+
#: classes/gateways/class.pmprogateway_braintree.php:419
|
2577 |
#: classes/gateways/class.pmprogateway_stripe.php:1011
|
2578 |
#: classes/gateways/class.pmprogateway_braintree.php:61
|
2579 |
#: classes/gateways/class.pmprogateway_braintree.php:406
|
2582 |
msgid "Unknown error: Initial payment failed."
|
2583 |
msgstr ""
|
2584 |
|
2585 |
+
#: classes/gateways/class.pmprogateway_braintree.php:478
|
2586 |
#: classes/gateways/class.pmprogateway_braintree.php:120
|
2587 |
#: classes/gateways/class.pmprogateway_braintree.php:465
|
2588 |
msgid "Error during settlement:"
|
2589 |
msgstr ""
|
2590 |
|
2591 |
+
#: classes/gateways/class.pmprogateway_braintree.php:487
|
2592 |
#: classes/gateways/class.pmprogateway_braintree.php:129
|
2593 |
#: classes/gateways/class.pmprogateway_braintree.php:474
|
2594 |
msgid "Error during charge:"
|
2595 |
msgstr ""
|
2596 |
|
2597 |
+
#: classes/gateways/class.pmprogateway_braintree.php:579
|
2598 |
#: classes/gateways/class.pmprogateway_braintree.php:198
|
2599 |
#: classes/gateways/class.pmprogateway_braintree.php:221
|
2600 |
#: classes/gateways/class.pmprogateway_braintree.php:566
|
2601 |
msgid "Failed to update customer."
|
2602 |
msgstr ""
|
2603 |
|
2604 |
+
#: classes/gateways/class.pmprogateway_braintree.php:627
|
2605 |
#: classes/gateways/class.pmprogateway_braintree.php:246
|
2606 |
#: classes/gateways/class.pmprogateway_braintree.php:269
|
2607 |
#: classes/gateways/class.pmprogateway_braintree.php:614
|
2608 |
msgid "Failed to create customer."
|
2609 |
msgstr ""
|
2610 |
|
2611 |
+
#: classes/gateways/class.pmprogateway_braintree.php:634
|
2612 |
#: classes/gateways/class.pmprogateway_braintree.php:253
|
2613 |
#: classes/gateways/class.pmprogateway_braintree.php:276
|
2614 |
#: classes/gateways/class.pmprogateway_braintree.php:621
|
2615 |
msgid "Error creating customer record with Braintree:"
|
2616 |
msgstr ""
|
2617 |
|
2618 |
+
#: classes/gateways/class.pmprogateway_braintree.php:734
|
2619 |
#: classes/gateways/class.pmprogateway_braintree.php:344
|
2620 |
#: classes/gateways/class.pmprogateway_braintree.php:345
|
2621 |
#: classes/gateways/class.pmprogateway_braintree.php:376
|
2623 |
msgid "Error subscribing customer to plan with Braintree:"
|
2624 |
msgstr ""
|
2625 |
|
2626 |
+
#: classes/gateways/class.pmprogateway_braintree.php:749
|
2627 |
#: classes/gateways/class.pmprogateway_braintree.php:359
|
2628 |
#: classes/gateways/class.pmprogateway_braintree.php:360
|
2629 |
#: classes/gateways/class.pmprogateway_braintree.php:391
|
2631 |
msgid "Failed to subscribe with Braintree:"
|
2632 |
msgstr ""
|
2633 |
|
|
|
2634 |
#: classes/gateways/class.pmprogateway_braintree.php:787
|
2635 |
+
#: classes/gateways/class.pmprogateway_braintree.php:800
|
2636 |
+
#: classes/gateways/class.pmprogateway_braintree.php:807
|
2637 |
#: classes/gateways/class.pmprogateway_braintree.php:397
|
2638 |
#: classes/gateways/class.pmprogateway_braintree.php:398
|
2639 |
#: classes/gateways/class.pmprogateway_braintree.php:410
|
3050 |
#: classes/gateways/class.pmprogateway_stripe.php:199
|
3051 |
#: classes/gateways/class.pmprogateway_stripe.php:201
|
3052 |
#: classes/gateways/class.pmprogateway_stripe.php:1187
|
3053 |
+
#: classes/gateways/class.pmprogateway_stripe.php:1188
|
3054 |
msgid "Error creating customer record with Stripe:"
|
3055 |
msgstr ""
|
3056 |
|
3063 |
#: classes/gateways/class.pmprogateway_stripe.php:308
|
3064 |
#: classes/gateways/class.pmprogateway_stripe.php:311
|
3065 |
#: classes/gateways/class.pmprogateway_stripe.php:1244
|
3066 |
+
#: classes/gateways/class.pmprogateway_stripe.php:1245
|
3067 |
#: classes/gateways/class.pmprogateway_stripe.php:1390
|
3068 |
+
#: classes/gateways/class.pmprogateway_stripe.php:1391
|
3069 |
msgid "Error creating plan with Stripe:"
|
3070 |
msgstr ""
|
3071 |
|
3072 |
+
#: classes/gateways/class.pmprogateway_stripe.php:1422
|
3073 |
#: classes/gateways/class.pmprogateway_stripe.php:294
|
3074 |
#: classes/gateways/class.pmprogateway_stripe.php:295
|
3075 |
#: classes/gateways/class.pmprogateway_stripe.php:302
|
3077 |
#: classes/gateways/class.pmprogateway_stripe.php:324
|
3078 |
#: classes/gateways/class.pmprogateway_stripe.php:330
|
3079 |
#: classes/gateways/class.pmprogateway_stripe.php:1420
|
3080 |
+
#: classes/gateways/class.pmprogateway_stripe.php:1421
|
3081 |
msgid "Error subscribing customer to plan with Stripe:"
|
3082 |
msgstr ""
|
3083 |
|
3084 |
+
#: classes/gateways/class.pmprogateway_stripe.php:1518
|
3085 |
#: classes/gateways/class.pmprogateway_stripe.php:383
|
3086 |
#: classes/gateways/class.pmprogateway_stripe.php:389
|
3087 |
#: classes/gateways/class.pmprogateway_stripe.php:410
|
3088 |
#: classes/gateways/class.pmprogateway_stripe.php:1516
|
3089 |
+
#: classes/gateways/class.pmprogateway_stripe.php:1517
|
3090 |
msgid "Could not cancel old subscription."
|
3091 |
msgstr ""
|
3092 |
|
3093 |
+
#: classes/gateways/class.pmprogateway_stripe.php:1535
|
3094 |
#: classes/gateways/class.pmprogateway_stripe.php:1533
|
3095 |
+
#: classes/gateways/class.pmprogateway_stripe.php:1534
|
3096 |
msgid "Could not find the customer."
|
3097 |
msgstr ""
|
3098 |
|
3188 |
msgid "Visit Customer Support Forum"
|
3189 |
msgstr ""
|
3190 |
|
3191 |
+
#: includes/currencies.php:7 includes/currencies.php:75
|
3192 |
#: includes/currencies.php:7 includes/currencies.php:37
|
3193 |
#: includes/currencies.php:44 includes/currencies.php:64
|
3194 |
#: includes/currencies.php:68
|
3195 |
msgid "US Dollars ($)"
|
3196 |
msgstr ""
|
3197 |
|
3198 |
+
#: includes/currencies.php:9 includes/currencies.php:78
|
3199 |
#: includes/currencies.php:8 includes/currencies.php:9
|
3200 |
#: includes/currencies.php:40 includes/currencies.php:47
|
3201 |
#: includes/currencies.php:67 includes/currencies.php:71
|
3202 |
msgid "Euros (€)"
|
3203 |
msgstr ""
|
3204 |
|
3205 |
+
#: includes/currencies.php:14 includes/currencies.php:77
|
3206 |
#: includes/currencies.php:9 includes/currencies.php:14
|
3207 |
#: includes/currencies.php:39 includes/currencies.php:46
|
3208 |
#: includes/currencies.php:66 includes/currencies.php:70
|
3218 |
msgid "Brazilian Real (R$)"
|
3219 |
msgstr ""
|
3220 |
|
3221 |
+
#: includes/currencies.php:24 includes/currencies.php:76
|
3222 |
#: includes/currencies.php:12 includes/currencies.php:24
|
3223 |
#: includes/currencies.php:38 includes/currencies.php:45
|
3224 |
#: includes/currencies.php:65 includes/currencies.php:69
|
3230 |
msgid "Chinese Yuan"
|
3231 |
msgstr ""
|
3232 |
|
3233 |
+
#: includes/currencies.php:27 includes/currencies.php:13
|
3234 |
#: includes/currencies.php:14 includes/currencies.php:26
|
3235 |
msgid "Czech Koruna"
|
3236 |
msgstr ""
|
3237 |
|
3238 |
+
#: includes/currencies.php:34 includes/currencies.php:14
|
3239 |
#: includes/currencies.php:15 includes/currencies.php:27
|
3240 |
msgid "Danish Krone"
|
3241 |
msgstr ""
|
3242 |
|
3243 |
+
#: includes/currencies.php:35 includes/currencies.php:15
|
3244 |
#: includes/currencies.php:16 includes/currencies.php:28
|
3245 |
msgid "Hong Kong Dollar ($)"
|
3246 |
msgstr ""
|
3247 |
|
3248 |
+
#: includes/currencies.php:36 includes/currencies.php:16
|
3249 |
#: includes/currencies.php:17 includes/currencies.php:29
|
3250 |
msgid "Hungarian Forint"
|
3251 |
msgstr ""
|
3252 |
|
3253 |
+
#: includes/currencies.php:37 includes/currencies.php:18
|
3254 |
#: includes/currencies.php:30
|
3255 |
msgid "Indian Rupee"
|
3256 |
msgstr ""
|
3257 |
|
3258 |
+
#: includes/currencies.php:38 includes/currencies.php:19
|
3259 |
#: includes/currencies.php:31
|
3260 |
msgid "Indonesia Rupiah"
|
3261 |
msgstr ""
|
3262 |
|
3263 |
+
#: includes/currencies.php:39 includes/currencies.php:17
|
3264 |
#: includes/currencies.php:20 includes/currencies.php:32
|
3265 |
msgid "Israeli Shekel"
|
3266 |
msgstr ""
|
3267 |
|
3268 |
+
#: includes/currencies.php:41 includes/currencies.php:18
|
3269 |
#: includes/currencies.php:21 includes/currencies.php:34
|
3270 |
msgid "Japanese Yen (¥)"
|
3271 |
msgstr ""
|
3272 |
|
3273 |
+
#: includes/currencies.php:45 includes/currencies.php:19
|
3274 |
#: includes/currencies.php:22 includes/currencies.php:38
|
3275 |
msgid "Malaysian Ringgits"
|
3276 |
msgstr ""
|
3277 |
|
3278 |
+
#: includes/currencies.php:46 includes/currencies.php:20
|
3279 |
#: includes/currencies.php:23 includes/currencies.php:39
|
3280 |
msgid "Mexican Peso ($)"
|
3281 |
msgstr ""
|
3282 |
|
3283 |
+
#: includes/currencies.php:47 includes/currencies.php:21
|
3284 |
#: includes/currencies.php:24 includes/currencies.php:40
|
3285 |
msgid "New Zealand Dollar ($)"
|
3286 |
msgstr ""
|
3287 |
|
3288 |
+
#: includes/currencies.php:48 includes/currencies.php:22
|
3289 |
#: includes/currencies.php:25 includes/currencies.php:41
|
3290 |
msgid "Norwegian Krone"
|
3291 |
msgstr ""
|
3292 |
|
3293 |
+
#: includes/currencies.php:49 includes/currencies.php:23
|
3294 |
#: includes/currencies.php:26 includes/currencies.php:42
|
3295 |
msgid "Philippine Pesos"
|
3296 |
msgstr ""
|
3297 |
|
3298 |
+
#: includes/currencies.php:50 includes/currencies.php:24
|
3299 |
#: includes/currencies.php:27 includes/currencies.php:43
|
3300 |
msgid "Polish Zloty"
|
3301 |
msgstr ""
|
3302 |
|
3303 |
+
#: includes/currencies.php:52 includes/currencies.php:25
|
3304 |
#: includes/currencies.php:28 includes/currencies.php:45
|
3305 |
msgid "Singapore Dollar ($)"
|
3306 |
msgstr ""
|
3307 |
|
3308 |
+
#: includes/currencies.php:57 includes/currencies.php:50
|
3309 |
msgid "South African Rand (R)"
|
3310 |
msgstr ""
|
3311 |
|
3312 |
+
#: includes/currencies.php:61 includes/currencies.php:30
|
3313 |
#: includes/currencies.php:50 includes/currencies.php:54
|
3314 |
msgid "South Korean Won"
|
3315 |
msgstr ""
|
3316 |
|
3317 |
+
#: includes/currencies.php:62 includes/currencies.php:26
|
3318 |
#: includes/currencies.php:31 includes/currencies.php:51
|
3319 |
#: includes/currencies.php:55
|
3320 |
msgid "Swedish Krona"
|
3321 |
msgstr ""
|
3322 |
|
3323 |
+
#: includes/currencies.php:63 includes/currencies.php:27
|
3324 |
#: includes/currencies.php:32 includes/currencies.php:52
|
3325 |
#: includes/currencies.php:56
|
3326 |
msgid "Swiss Franc"
|
3327 |
msgstr ""
|
3328 |
|
3329 |
+
#: includes/currencies.php:64 includes/currencies.php:28
|
3330 |
#: includes/currencies.php:33 includes/currencies.php:53
|
3331 |
#: includes/currencies.php:57
|
3332 |
msgid "Taiwan New Dollars"
|
3333 |
msgstr ""
|
3334 |
|
3335 |
+
#: includes/currencies.php:65 includes/currencies.php:29
|
3336 |
#: includes/currencies.php:34 includes/currencies.php:54
|
3337 |
#: includes/currencies.php:58
|
3338 |
msgid "Thai Baht"
|
3339 |
msgstr ""
|
3340 |
|
3341 |
+
#: includes/currencies.php:66 includes/currencies.php:35
|
3342 |
#: includes/currencies.php:55 includes/currencies.php:59
|
3343 |
msgid "Turkish Lira"
|
3344 |
msgstr ""
|
3345 |
|
3346 |
+
#: includes/currencies.php:67 includes/currencies.php:36
|
3347 |
#: includes/currencies.php:56 includes/currencies.php:60
|
3348 |
msgid "Vietnamese Dong"
|
3349 |
msgstr ""
|
3468 |
msgid "Membership expires after %d %s."
|
3469 |
msgstr ""
|
3470 |
|
3471 |
+
#: includes/functions.php:570 includes/functions.php:491
|
3472 |
#: includes/functions.php:514 includes/functions.php:525
|
3473 |
#: includes/functions.php:536 includes/functions.php:537
|
3474 |
#: includes/functions.php:538 includes/functions.php:545
|
3475 |
+
#: includes/functions.php:569
|
3476 |
msgid "User ID not found."
|
3477 |
msgstr ""
|
3478 |
|
3479 |
+
#: includes/functions.php:587 includes/functions.php:508
|
3480 |
#: includes/functions.php:531 includes/functions.php:542
|
3481 |
#: includes/functions.php:553 includes/functions.php:554
|
3482 |
#: includes/functions.php:555 includes/functions.php:562
|
3483 |
+
#: includes/functions.php:586
|
3484 |
msgid "Invalid level."
|
3485 |
msgstr ""
|
3486 |
|
3487 |
+
#: includes/functions.php:598 includes/functions.php:520
|
3488 |
#: includes/functions.php:542 includes/functions.php:553
|
3489 |
#: includes/functions.php:564 includes/functions.php:565
|
3490 |
#: includes/functions.php:566 includes/functions.php:573
|
3491 |
+
#: includes/functions.php:597
|
3492 |
msgid "not changing?"
|
3493 |
msgstr ""
|
3494 |
|
3495 |
+
#: includes/functions.php:615 includes/functions.php:674
|
3496 |
+
#: includes/functions.php:698 includes/functions.php:537
|
3497 |
#: includes/functions.php:559 includes/functions.php:570
|
3498 |
#: includes/functions.php:581 includes/functions.php:582
|
3499 |
#: includes/functions.php:583 includes/functions.php:590
|
3504 |
#: includes/functions.php:633 includes/functions.php:637
|
3505 |
#: includes/functions.php:640 includes/functions.php:649
|
3506 |
#: includes/functions.php:656 includes/functions.php:657
|
3507 |
+
#: includes/functions.php:673 includes/functions.php:697
|
3508 |
msgid "Error interacting with database"
|
3509 |
msgstr ""
|
3510 |
|
3511 |
+
#: includes/functions.php:739 includes/functions.php:778
|
3512 |
#: includes/functions.php:629 includes/functions.php:651
|
3513 |
#: includes/functions.php:667 includes/functions.php:668
|
3514 |
#: includes/functions.php:678 includes/functions.php:681
|
3516 |
#: includes/functions.php:698 includes/functions.php:706
|
3517 |
#: includes/functions.php:714 includes/functions.php:717
|
3518 |
#: includes/functions.php:720 includes/functions.php:736
|
3519 |
+
#: includes/functions.php:737 includes/functions.php:738
|
3520 |
+
#: includes/functions.php:753 includes/functions.php:777
|
3521 |
msgid "Membership level not found."
|
3522 |
msgstr ""
|
3523 |
|
3524 |
+
#: includes/functions.php:1143 includes/functions.php:1100
|
3525 |
#: includes/functions.php:1101 includes/functions.php:1118
|
3526 |
+
#: includes/functions.php:1142
|
3527 |
msgid "No code was given to check."
|
3528 |
msgstr ""
|
3529 |
|
3530 |
+
#: includes/functions.php:1152 includes/functions.php:1050
|
3531 |
#: includes/functions.php:1072 includes/functions.php:1088
|
3532 |
#: includes/functions.php:1099 includes/functions.php:1102
|
3533 |
#: includes/functions.php:1109 includes/functions.php:1110
|
3534 |
#: includes/functions.php:1112 includes/functions.php:1113
|
3535 |
+
#: includes/functions.php:1127 includes/functions.php:1151
|
3536 |
msgid "The discount code could not be found."
|
3537 |
msgstr ""
|
3538 |
|
3539 |
+
#: includes/functions.php:1167 includes/functions.php:1066
|
3540 |
#: includes/functions.php:1088 includes/functions.php:1104
|
3541 |
#: includes/functions.php:1115 includes/functions.php:1118
|
3542 |
#: includes/functions.php:1124 includes/functions.php:1125
|
3543 |
#: includes/functions.php:1128 includes/functions.php:1129
|
3544 |
+
#: includes/functions.php:1142 includes/functions.php:1166
|
3545 |
#, php-format
|
3546 |
msgid "This discount code goes into effect on %s."
|
3547 |
msgstr ""
|
3548 |
|
3549 |
+
#: includes/functions.php:1174 includes/functions.php:1075
|
3550 |
#: includes/functions.php:1097 includes/functions.php:1113
|
3551 |
#: includes/functions.php:1124 includes/functions.php:1127
|
3552 |
#: includes/functions.php:1131 includes/functions.php:1132
|
3553 |
#: includes/functions.php:1137 includes/functions.php:1138
|
3554 |
+
#: includes/functions.php:1149 includes/functions.php:1173
|
3555 |
#, php-format
|
3556 |
msgid "This discount code expired on %s."
|
3557 |
msgstr ""
|
3558 |
|
3559 |
+
#: includes/functions.php:1184 includes/functions.php:1087
|
3560 |
#: includes/functions.php:1109 includes/functions.php:1125
|
3561 |
#: includes/functions.php:1136 includes/functions.php:1139
|
3562 |
#: includes/functions.php:1141 includes/functions.php:1142
|
3563 |
#: includes/functions.php:1149 includes/functions.php:1150
|
3564 |
+
#: includes/functions.php:1159 includes/functions.php:1183
|
3565 |
msgid "This discount code is no longer valid."
|
3566 |
msgstr ""
|
3567 |
|
3568 |
+
#: includes/functions.php:1197 includes/functions.php:1102
|
3569 |
#: includes/functions.php:1124 includes/functions.php:1140
|
3570 |
#: includes/functions.php:1151 includes/functions.php:1154
|
3571 |
#: includes/functions.php:1155 includes/functions.php:1164
|
3572 |
#: includes/functions.php:1165 includes/functions.php:1172
|
3573 |
+
#: includes/functions.php:1196
|
3574 |
msgid "This discount code does not apply to this membership level."
|
3575 |
msgstr ""
|
3576 |
|
3577 |
+
#: includes/functions.php:1223 includes/functions.php:1110
|
3578 |
#: includes/functions.php:1132 includes/functions.php:1148
|
3579 |
#: includes/functions.php:1159 includes/functions.php:1162
|
3580 |
#: includes/functions.php:1172 includes/functions.php:1180
|
3581 |
#: includes/functions.php:1181 includes/functions.php:1182
|
3582 |
+
#: includes/functions.php:1198 includes/functions.php:1222
|
3583 |
msgid "This discount code is okay."
|
3584 |
msgstr ""
|
3585 |
|
3586 |
+
#: includes/functions.php:1248 includes/functions.php:1134
|
3587 |
#: includes/functions.php:1156 includes/functions.php:1172
|
3588 |
#: includes/functions.php:1183 includes/functions.php:1186
|
3589 |
#: includes/functions.php:1196 includes/functions.php:1205
|
3590 |
#: includes/functions.php:1206 includes/functions.php:1223
|
3591 |
+
#: includes/functions.php:1247
|
3592 |
msgid "and"
|
3593 |
msgstr ""
|
3594 |
|
3595 |
+
#: includes/functions.php:1437 includes/functions.php:1319
|
3596 |
#: includes/functions.php:1341 includes/functions.php:1361
|
3597 |
#: includes/functions.php:1372 includes/functions.php:1375
|
3598 |
#: includes/functions.php:1385 includes/functions.php:1394
|
3599 |
#: includes/functions.php:1395 includes/functions.php:1412
|
3600 |
+
#: includes/functions.php:1436
|
3601 |
msgid "Sign Up for !!name!! Now"
|
3602 |
msgstr ""
|
3603 |
|
3604 |
+
#: includes/functions.php:1443 includes/functions.php:1325
|
3605 |
#: includes/functions.php:1347 includes/functions.php:1367
|
3606 |
#: includes/functions.php:1378 includes/functions.php:1381
|
3607 |
#: includes/functions.php:1391 includes/functions.php:1400
|
3608 |
#: includes/functions.php:1401 includes/functions.php:1418
|
3609 |
+
#: includes/functions.php:1442
|
3610 |
msgid "Please specify a level id."
|
3611 |
msgstr ""
|
3612 |
|
3939 |
"been applied to your order.</p>"
|
3940 |
msgstr ""
|
3941 |
|
3942 |
+
#: pages/checkout.php:62 services/applydiscountcode.php:89
|
3943 |
#: pages/checkout.php:62 pages/checkout.php:63 pages/checkout.php:64
|
3944 |
#: services/applydiscountcode.php:74 services/applydiscountcode.php:75
|
3945 |
#: services/applydiscountcode.php:78
|
4050 |
msgstr ""
|
4051 |
|
4052 |
#: pages/confirmation.php:43 pages/invoice.php:24 pages/confirmation.php:43
|
4053 |
+
#: pages/invoice.php:24
|
4054 |
msgid "Print"
|
4055 |
msgstr ""
|
4056 |
|
4301 |
msgid "That email address is already taken. Please try another."
|
4302 |
msgstr ""
|
4303 |
|
4304 |
+
#: preheaders/checkout.php:397 preheaders/checkout.php:397
|
4305 |
+
#: preheaders/checkout.php:399 preheaders/checkout.php:525
|
4306 |
+
#: preheaders/checkout.php:532 preheaders/checkout.php:537
|
4307 |
+
#: preheaders/checkout.php:544 preheaders/checkout.php:561
|
4308 |
+
#: preheaders/checkout.php:562
|
4309 |
#, php-format
|
4310 |
msgid "reCAPTCHA failed. (%s) Please try again."
|
4311 |
msgstr ""
|
4312 |
|
4313 |
+
#: preheaders/checkout.php:482 preheaders/checkout.php:482
|
4314 |
+
#: preheaders/checkout.php:484 preheaders/checkout.php:647
|
4315 |
+
#: preheaders/checkout.php:654 preheaders/checkout.php:659
|
4316 |
+
#: preheaders/checkout.php:683 preheaders/checkout.php:701
|
4317 |
+
#: preheaders/checkout.php:702
|
4318 |
msgid "Payment accepted."
|
4319 |
msgstr ""
|
4320 |
|
4321 |
+
#: preheaders/checkout.php:490 preheaders/checkout.php:490
|
4322 |
+
#: preheaders/checkout.php:492 preheaders/checkout.php:653
|
4323 |
+
#: preheaders/checkout.php:660 preheaders/checkout.php:665
|
4324 |
+
#: preheaders/checkout.php:691 preheaders/checkout.php:709
|
4325 |
+
#: preheaders/checkout.php:710
|
4326 |
msgid ""
|
4327 |
"Unknown error generating account. Please contact us to setup your membership."
|
4328 |
msgstr ""
|
4329 |
|
4330 |
+
#: preheaders/checkout.php:550 preheaders/checkout.php:550
|
4331 |
+
#: preheaders/checkout.php:552 preheaders/checkout.php:785
|
4332 |
+
#: preheaders/checkout.php:792 preheaders/checkout.php:797
|
4333 |
+
#: preheaders/checkout.php:825 preheaders/checkout.php:844
|
4334 |
+
#: preheaders/checkout.php:859 preheaders/checkout.php:860
|
4335 |
msgid ""
|
4336 |
"Your payment was accepted, but there was an error setting up your account. "
|
4337 |
"Please contact us."
|
4338 |
msgstr ""
|
4339 |
|
4340 |
+
#: preheaders/checkout.php:691 preheaders/checkout.php:691
|
4341 |
+
#: preheaders/checkout.php:693 preheaders/checkout.php:953
|
4342 |
+
#: preheaders/checkout.php:960 preheaders/checkout.php:970
|
4343 |
+
#: preheaders/checkout.php:983 preheaders/checkout.php:1030
|
4344 |
+
#: preheaders/checkout.php:1045 preheaders/checkout.php:1046
|
4345 |
msgid ""
|
4346 |
"IMPORTANT: Something went wrong during membership creation. Your credit card "
|
4347 |
"authorized, but we cancelled the order immediately. You should not try to "
|
4348 |
"submit this form again. Please contact the site owner to fix this issue."
|
4349 |
msgstr ""
|
4350 |
|
4351 |
+
#: preheaders/checkout.php:694 preheaders/checkout.php:694
|
4352 |
+
#: preheaders/checkout.php:696 preheaders/checkout.php:956
|
4353 |
+
#: preheaders/checkout.php:963 preheaders/checkout.php:973
|
4354 |
+
#: preheaders/checkout.php:988 preheaders/checkout.php:1035
|
4355 |
+
#: preheaders/checkout.php:1050 preheaders/checkout.php:1051
|
4356 |
msgid ""
|
4357 |
"IMPORTANT: Something went wrong during membership creation. Your credit card "
|
4358 |
"was charged, but we couldn't assign your membership. You should not submit "
|
4359 |
"this form again. Please contact the site owner to fix this issue."
|
4360 |
msgstr ""
|
4361 |
|
4362 |
+
#: preheaders/checkout.php:705 preheaders/checkout.php:705
|
4363 |
+
#: preheaders/checkout.php:707 preheaders/checkout.php:967
|
4364 |
+
#: preheaders/checkout.php:974 preheaders/checkout.php:984
|
4365 |
+
#: preheaders/checkout.php:1001 preheaders/checkout.php:1048
|
4366 |
+
#: preheaders/checkout.php:1063 preheaders/checkout.php:1064
|
4367 |
#, php-format
|
4368 |
msgid ""
|
4369 |
"You must <a href=\"%s\">setup a Payment Gateway</a> before any payments will "
|
4370 |
"be processed."
|
4371 |
msgstr ""
|
4372 |
|
4373 |
+
#: preheaders/checkout.php:707 preheaders/checkout.php:707
|
4374 |
+
#: preheaders/checkout.php:709 preheaders/checkout.php:969
|
4375 |
+
#: preheaders/checkout.php:976 preheaders/checkout.php:986
|
4376 |
+
#: preheaders/checkout.php:1003 preheaders/checkout.php:1050
|
4377 |
+
#: preheaders/checkout.php:1065 preheaders/checkout.php:1066
|
4378 |
msgid "A Payment Gateway must be setup before any payments will be processed."
|
4379 |
msgstr ""
|
4380 |
|
4408 |
msgid "The %s code has been applied to your order. "
|
4409 |
msgstr ""
|
4410 |
|
4411 |
+
#: services/applydiscountcode.php:97 services/applydiscountcode.php:82
|
4412 |
#: services/applydiscountcode.php:83 services/applydiscountcode.php:86
|
4413 |
#, php-format
|
4414 |
msgid "The <strong>%s</strong> code has been applied to your order."
|
languages/pmpro.pot
CHANGED
@@ -5,8 +5,7 @@
|
|
5 |
msgid ""
|
6 |
msgstr ""
|
7 |
"Project-Id-Version: pmpro\n"
|
8 |
-
"POT-Creation-Date: 2015-
|
9 |
-
"POT-Creation-Date: 2015-03-10 11:13-0400\n"
|
10 |
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
11 |
"Last-Translator: \n"
|
12 |
"Language-Team: Stranger Studios <jason@strangerstudios.com>\n"
|
@@ -500,7 +499,7 @@ msgid "Start Date"
|
|
500 |
msgstr ""
|
501 |
|
502 |
#: adminpages/discountcodes.php:371
|
503 |
-
#: classes/gateways/class.pmprogateway_braintree.php:
|
504 |
#: classes/gateways/class.pmprogateway_stripe.php:454 pages/billing.php:253
|
505 |
#: pages/checkout.php:553 adminpages/discountcodes.php:367
|
506 |
#: adminpages/discountcodes.php:370 adminpages/discountcodes.php:371
|
@@ -1429,7 +1428,7 @@ msgid "e.g. PayPal Express, PayPal Standard, Credit Card."
|
|
1429 |
msgstr ""
|
1430 |
|
1431 |
#: adminpages/orders.php:389
|
1432 |
-
#: classes/gateways/class.pmprogateway_braintree.php:
|
1433 |
#: classes/gateways/class.pmprogateway_stripe.php:408 pages/billing.php:238
|
1434 |
#: pages/checkout.php:507 adminpages/orders.php:339 adminpages/orders.php:389
|
1435 |
#: classes/gateways/class.pmprogateway_braintree.php:291
|
@@ -2156,7 +2155,7 @@ msgstr ""
|
|
2156 |
#: classes/class.pmproemail.php:231 classes/class.pmproemail.php:240
|
2157 |
#: classes/class.pmproemail.php:249 classes/class.pmproemail.php:328
|
2158 |
#: classes/class.pmproemail.php:337 classes/class.pmproemail.php:648
|
2159 |
-
#: classes/gateways/class.pmprogateway_braintree.php:
|
2160 |
#: classes/gateways/class.pmprogateway_stripe.php:495 pages/checkout.php:66
|
2161 |
#: pages/checkout.php:76 pages/checkout.php:594 pages/confirmation.php:52
|
2162 |
#: pages/invoice.php:33 classes/class.pmproemail.php:216
|
@@ -2453,19 +2452,19 @@ msgstr ""
|
|
2453 |
msgid "Could not connect to Authorize.net"
|
2454 |
msgstr ""
|
2455 |
|
2456 |
-
#: classes/gateways/class.pmprogateway_braintree.php:
|
2457 |
#: paid-memberships-pro.php:123
|
2458 |
#: classes/gateways/class.pmprogateway_braintree.php:63
|
2459 |
#: paid-memberships-pro.php:123
|
2460 |
msgid "Braintree Payments"
|
2461 |
msgstr ""
|
2462 |
|
2463 |
-
#: classes/gateways/class.pmprogateway_braintree.php:
|
2464 |
#: classes/gateways/class.pmprogateway_braintree.php:119
|
2465 |
msgid "Braintree Settings"
|
2466 |
msgstr ""
|
2467 |
|
2468 |
-
#: classes/gateways/class.pmprogateway_braintree.php:
|
2469 |
#: classes/gateways/class.pmprogateway_cybersource.php:106
|
2470 |
#: adminpages/paymentsettings.php:294 adminpages/paymentsettings.php:298
|
2471 |
#: adminpages/paymentsettings.php:303 adminpages/paymentsettings.php:364
|
@@ -2475,28 +2474,28 @@ msgstr ""
|
|
2475 |
msgid "Merchant ID"
|
2476 |
msgstr ""
|
2477 |
|
2478 |
-
#: classes/gateways/class.pmprogateway_braintree.php:
|
2479 |
#: adminpages/paymentsettings.php:302 adminpages/paymentsettings.php:306
|
2480 |
#: adminpages/paymentsettings.php:311
|
2481 |
#: classes/gateways/class.pmprogateway_braintree.php:132
|
2482 |
msgid "Public Key"
|
2483 |
msgstr ""
|
2484 |
|
2485 |
-
#: classes/gateways/class.pmprogateway_braintree.php:
|
2486 |
#: adminpages/paymentsettings.php:310 adminpages/paymentsettings.php:314
|
2487 |
#: adminpages/paymentsettings.php:319
|
2488 |
#: classes/gateways/class.pmprogateway_braintree.php:140
|
2489 |
msgid "Private Key"
|
2490 |
msgstr ""
|
2491 |
|
2492 |
-
#: classes/gateways/class.pmprogateway_braintree.php:
|
2493 |
#: adminpages/paymentsettings.php:318 adminpages/paymentsettings.php:322
|
2494 |
#: adminpages/paymentsettings.php:327
|
2495 |
#: classes/gateways/class.pmprogateway_braintree.php:148
|
2496 |
msgid "Client-Side Encryption Key"
|
2497 |
msgstr ""
|
2498 |
|
2499 |
-
#: classes/gateways/class.pmprogateway_braintree.php:
|
2500 |
#: classes/gateways/class.pmprogateway_stripe.php:181
|
2501 |
#: adminpages/paymentsettings.php:462 adminpages/paymentsettings.php:470
|
2502 |
#: adminpages/paymentsettings.php:503 adminpages/paymentsettings.php:509
|
@@ -2507,14 +2506,14 @@ msgstr ""
|
|
2507 |
msgid "Web Hook URL"
|
2508 |
msgstr ""
|
2509 |
|
2510 |
-
#: classes/gateways/class.pmprogateway_braintree.php:
|
2511 |
#: adminpages/paymentsettings.php:474 adminpages/paymentsettings.php:515
|
2512 |
#: adminpages/paymentsettings.php:521 adminpages/paymentsettings.php:523
|
2513 |
#: classes/gateways/class.pmprogateway_braintree.php:160
|
2514 |
msgid "To fully integrate with Braintree, be sure to set your Web Hook URL to"
|
2515 |
msgstr ""
|
2516 |
|
2517 |
-
#: classes/gateways/class.pmprogateway_braintree.php:
|
2518 |
#: classes/gateways/class.pmprogateway_stripe.php:387 pages/checkout.php:485
|
2519 |
#: classes/gateways/class.pmprogateway_braintree.php:270
|
2520 |
#: classes/gateways/class.pmprogateway_stripe.php:387 pages/checkout.php:476
|
@@ -2523,7 +2522,7 @@ msgstr ""
|
|
2523 |
msgid "Payment Information"
|
2524 |
msgstr ""
|
2525 |
|
2526 |
-
#: classes/gateways/class.pmprogateway_braintree.php:
|
2527 |
#: classes/gateways/class.pmprogateway_stripe.php:387 pages/checkout.php:485
|
2528 |
#: classes/gateways/class.pmprogateway_braintree.php:270
|
2529 |
#: classes/gateways/class.pmprogateway_stripe.php:387 pages/checkout.php:476
|
@@ -2533,7 +2532,7 @@ msgstr ""
|
|
2533 |
msgid "We Accept %s"
|
2534 |
msgstr ""
|
2535 |
|
2536 |
-
#: classes/gateways/class.pmprogateway_braintree.php:
|
2537 |
#: classes/gateways/class.pmprogateway_stripe.php:449 pages/billing.php:248
|
2538 |
#: pages/checkout.php:548
|
2539 |
#: classes/gateways/class.pmprogateway_braintree.php:303
|
@@ -2543,7 +2542,7 @@ msgstr ""
|
|
2543 |
msgid "Card Number"
|
2544 |
msgstr ""
|
2545 |
|
2546 |
-
#: classes/gateways/class.pmprogateway_braintree.php:
|
2547 |
#: classes/gateways/class.pmprogateway_stripe.php:486 pages/billing.php:285
|
2548 |
#: pages/checkout.php:585
|
2549 |
#: classes/gateways/class.pmprogateway_braintree.php:340
|
@@ -2553,7 +2552,7 @@ msgstr ""
|
|
2553 |
msgid "CVV"
|
2554 |
msgstr ""
|
2555 |
|
2556 |
-
#: classes/gateways/class.pmprogateway_braintree.php:
|
2557 |
#: classes/gateways/class.pmprogateway_stripe.php:487 pages/billing.php:286
|
2558 |
#: pages/checkout.php:586
|
2559 |
#: classes/gateways/class.pmprogateway_braintree.php:341
|
@@ -2563,7 +2562,7 @@ msgstr ""
|
|
2563 |
msgid "what's this?"
|
2564 |
msgstr ""
|
2565 |
|
2566 |
-
#: classes/gateways/class.pmprogateway_braintree.php:
|
2567 |
#: classes/gateways/class.pmprogateway_stripe.php:497 pages/checkout.php:78
|
2568 |
#: pages/checkout.php:596
|
2569 |
#: classes/gateways/class.pmprogateway_braintree.php:351
|
@@ -2574,7 +2573,7 @@ msgstr ""
|
|
2574 |
msgid "Apply"
|
2575 |
msgstr ""
|
2576 |
|
2577 |
-
#: classes/gateways/class.pmprogateway_braintree.php:
|
2578 |
#: classes/gateways/class.pmprogateway_stripe.php:1011
|
2579 |
#: classes/gateways/class.pmprogateway_braintree.php:61
|
2580 |
#: classes/gateways/class.pmprogateway_braintree.php:406
|
@@ -2583,40 +2582,40 @@ msgstr ""
|
|
2583 |
msgid "Unknown error: Initial payment failed."
|
2584 |
msgstr ""
|
2585 |
|
2586 |
-
#: classes/gateways/class.pmprogateway_braintree.php:
|
2587 |
#: classes/gateways/class.pmprogateway_braintree.php:120
|
2588 |
#: classes/gateways/class.pmprogateway_braintree.php:465
|
2589 |
msgid "Error during settlement:"
|
2590 |
msgstr ""
|
2591 |
|
2592 |
-
#: classes/gateways/class.pmprogateway_braintree.php:
|
2593 |
#: classes/gateways/class.pmprogateway_braintree.php:129
|
2594 |
#: classes/gateways/class.pmprogateway_braintree.php:474
|
2595 |
msgid "Error during charge:"
|
2596 |
msgstr ""
|
2597 |
|
2598 |
-
#: classes/gateways/class.pmprogateway_braintree.php:
|
2599 |
#: classes/gateways/class.pmprogateway_braintree.php:198
|
2600 |
#: classes/gateways/class.pmprogateway_braintree.php:221
|
2601 |
#: classes/gateways/class.pmprogateway_braintree.php:566
|
2602 |
msgid "Failed to update customer."
|
2603 |
msgstr ""
|
2604 |
|
2605 |
-
#: classes/gateways/class.pmprogateway_braintree.php:
|
2606 |
#: classes/gateways/class.pmprogateway_braintree.php:246
|
2607 |
#: classes/gateways/class.pmprogateway_braintree.php:269
|
2608 |
#: classes/gateways/class.pmprogateway_braintree.php:614
|
2609 |
msgid "Failed to create customer."
|
2610 |
msgstr ""
|
2611 |
|
2612 |
-
#: classes/gateways/class.pmprogateway_braintree.php:
|
2613 |
#: classes/gateways/class.pmprogateway_braintree.php:253
|
2614 |
#: classes/gateways/class.pmprogateway_braintree.php:276
|
2615 |
#: classes/gateways/class.pmprogateway_braintree.php:621
|
2616 |
msgid "Error creating customer record with Braintree:"
|
2617 |
msgstr ""
|
2618 |
|
2619 |
-
#: classes/gateways/class.pmprogateway_braintree.php:
|
2620 |
#: classes/gateways/class.pmprogateway_braintree.php:344
|
2621 |
#: classes/gateways/class.pmprogateway_braintree.php:345
|
2622 |
#: classes/gateways/class.pmprogateway_braintree.php:376
|
@@ -2624,7 +2623,7 @@ msgstr ""
|
|
2624 |
msgid "Error subscribing customer to plan with Braintree:"
|
2625 |
msgstr ""
|
2626 |
|
2627 |
-
#: classes/gateways/class.pmprogateway_braintree.php:
|
2628 |
#: classes/gateways/class.pmprogateway_braintree.php:359
|
2629 |
#: classes/gateways/class.pmprogateway_braintree.php:360
|
2630 |
#: classes/gateways/class.pmprogateway_braintree.php:391
|
@@ -2632,9 +2631,9 @@ msgstr ""
|
|
2632 |
msgid "Failed to subscribe with Braintree:"
|
2633 |
msgstr ""
|
2634 |
|
2635 |
-
#: classes/gateways/class.pmprogateway_braintree.php:774
|
2636 |
#: classes/gateways/class.pmprogateway_braintree.php:787
|
2637 |
-
#: classes/gateways/class.pmprogateway_braintree.php:
|
|
|
2638 |
#: classes/gateways/class.pmprogateway_braintree.php:397
|
2639 |
#: classes/gateways/class.pmprogateway_braintree.php:398
|
2640 |
#: classes/gateways/class.pmprogateway_braintree.php:410
|
@@ -3051,6 +3050,7 @@ msgstr ""
|
|
3051 |
#: classes/gateways/class.pmprogateway_stripe.php:199
|
3052 |
#: classes/gateways/class.pmprogateway_stripe.php:201
|
3053 |
#: classes/gateways/class.pmprogateway_stripe.php:1187
|
|
|
3054 |
msgid "Error creating customer record with Stripe:"
|
3055 |
msgstr ""
|
3056 |
|
@@ -3063,11 +3063,13 @@ msgstr ""
|
|
3063 |
#: classes/gateways/class.pmprogateway_stripe.php:308
|
3064 |
#: classes/gateways/class.pmprogateway_stripe.php:311
|
3065 |
#: classes/gateways/class.pmprogateway_stripe.php:1244
|
|
|
3066 |
#: classes/gateways/class.pmprogateway_stripe.php:1390
|
|
|
3067 |
msgid "Error creating plan with Stripe:"
|
3068 |
msgstr ""
|
3069 |
|
3070 |
-
#: classes/gateways/class.pmprogateway_stripe.php:
|
3071 |
#: classes/gateways/class.pmprogateway_stripe.php:294
|
3072 |
#: classes/gateways/class.pmprogateway_stripe.php:295
|
3073 |
#: classes/gateways/class.pmprogateway_stripe.php:302
|
@@ -3075,19 +3077,22 @@ msgstr ""
|
|
3075 |
#: classes/gateways/class.pmprogateway_stripe.php:324
|
3076 |
#: classes/gateways/class.pmprogateway_stripe.php:330
|
3077 |
#: classes/gateways/class.pmprogateway_stripe.php:1420
|
|
|
3078 |
msgid "Error subscribing customer to plan with Stripe:"
|
3079 |
msgstr ""
|
3080 |
|
3081 |
-
#: classes/gateways/class.pmprogateway_stripe.php:
|
3082 |
#: classes/gateways/class.pmprogateway_stripe.php:383
|
3083 |
#: classes/gateways/class.pmprogateway_stripe.php:389
|
3084 |
#: classes/gateways/class.pmprogateway_stripe.php:410
|
3085 |
#: classes/gateways/class.pmprogateway_stripe.php:1516
|
|
|
3086 |
msgid "Could not cancel old subscription."
|
3087 |
msgstr ""
|
3088 |
|
3089 |
-
#: classes/gateways/class.pmprogateway_stripe.php:
|
3090 |
#: classes/gateways/class.pmprogateway_stripe.php:1533
|
|
|
3091 |
msgid "Could not find the customer."
|
3092 |
msgstr ""
|
3093 |
|
@@ -3183,21 +3188,21 @@ msgstr ""
|
|
3183 |
msgid "Visit Customer Support Forum"
|
3184 |
msgstr ""
|
3185 |
|
3186 |
-
#: includes/currencies.php:7 includes/currencies.php:
|
3187 |
#: includes/currencies.php:7 includes/currencies.php:37
|
3188 |
#: includes/currencies.php:44 includes/currencies.php:64
|
3189 |
#: includes/currencies.php:68
|
3190 |
msgid "US Dollars ($)"
|
3191 |
msgstr ""
|
3192 |
|
3193 |
-
#: includes/currencies.php:9 includes/currencies.php:
|
3194 |
#: includes/currencies.php:8 includes/currencies.php:9
|
3195 |
#: includes/currencies.php:40 includes/currencies.php:47
|
3196 |
#: includes/currencies.php:67 includes/currencies.php:71
|
3197 |
msgid "Euros (€)"
|
3198 |
msgstr ""
|
3199 |
|
3200 |
-
#: includes/currencies.php:14 includes/currencies.php:
|
3201 |
#: includes/currencies.php:9 includes/currencies.php:14
|
3202 |
#: includes/currencies.php:39 includes/currencies.php:46
|
3203 |
#: includes/currencies.php:66 includes/currencies.php:70
|
@@ -3213,7 +3218,7 @@ msgstr ""
|
|
3213 |
msgid "Brazilian Real (R$)"
|
3214 |
msgstr ""
|
3215 |
|
3216 |
-
#: includes/currencies.php:24 includes/currencies.php:
|
3217 |
#: includes/currencies.php:12 includes/currencies.php:24
|
3218 |
#: includes/currencies.php:38 includes/currencies.php:45
|
3219 |
#: includes/currencies.php:65 includes/currencies.php:69
|
@@ -3225,120 +3230,120 @@ msgstr ""
|
|
3225 |
msgid "Chinese Yuan"
|
3226 |
msgstr ""
|
3227 |
|
3228 |
-
#: includes/currencies.php:
|
3229 |
#: includes/currencies.php:14 includes/currencies.php:26
|
3230 |
msgid "Czech Koruna"
|
3231 |
msgstr ""
|
3232 |
|
3233 |
-
#: includes/currencies.php:
|
3234 |
#: includes/currencies.php:15 includes/currencies.php:27
|
3235 |
msgid "Danish Krone"
|
3236 |
msgstr ""
|
3237 |
|
3238 |
-
#: includes/currencies.php:
|
3239 |
#: includes/currencies.php:16 includes/currencies.php:28
|
3240 |
msgid "Hong Kong Dollar ($)"
|
3241 |
msgstr ""
|
3242 |
|
3243 |
-
#: includes/currencies.php:
|
3244 |
#: includes/currencies.php:17 includes/currencies.php:29
|
3245 |
msgid "Hungarian Forint"
|
3246 |
msgstr ""
|
3247 |
|
3248 |
-
#: includes/currencies.php:
|
3249 |
#: includes/currencies.php:30
|
3250 |
msgid "Indian Rupee"
|
3251 |
msgstr ""
|
3252 |
|
3253 |
-
#: includes/currencies.php:
|
3254 |
#: includes/currencies.php:31
|
3255 |
msgid "Indonesia Rupiah"
|
3256 |
msgstr ""
|
3257 |
|
3258 |
-
#: includes/currencies.php:
|
3259 |
#: includes/currencies.php:20 includes/currencies.php:32
|
3260 |
msgid "Israeli Shekel"
|
3261 |
msgstr ""
|
3262 |
|
3263 |
-
#: includes/currencies.php:
|
3264 |
#: includes/currencies.php:21 includes/currencies.php:34
|
3265 |
msgid "Japanese Yen (¥)"
|
3266 |
msgstr ""
|
3267 |
|
3268 |
-
#: includes/currencies.php:
|
3269 |
#: includes/currencies.php:22 includes/currencies.php:38
|
3270 |
msgid "Malaysian Ringgits"
|
3271 |
msgstr ""
|
3272 |
|
3273 |
-
#: includes/currencies.php:
|
3274 |
#: includes/currencies.php:23 includes/currencies.php:39
|
3275 |
msgid "Mexican Peso ($)"
|
3276 |
msgstr ""
|
3277 |
|
3278 |
-
#: includes/currencies.php:
|
3279 |
#: includes/currencies.php:24 includes/currencies.php:40
|
3280 |
msgid "New Zealand Dollar ($)"
|
3281 |
msgstr ""
|
3282 |
|
3283 |
-
#: includes/currencies.php:
|
3284 |
#: includes/currencies.php:25 includes/currencies.php:41
|
3285 |
msgid "Norwegian Krone"
|
3286 |
msgstr ""
|
3287 |
|
3288 |
-
#: includes/currencies.php:
|
3289 |
#: includes/currencies.php:26 includes/currencies.php:42
|
3290 |
msgid "Philippine Pesos"
|
3291 |
msgstr ""
|
3292 |
|
3293 |
-
#: includes/currencies.php:
|
3294 |
#: includes/currencies.php:27 includes/currencies.php:43
|
3295 |
msgid "Polish Zloty"
|
3296 |
msgstr ""
|
3297 |
|
3298 |
-
#: includes/currencies.php:
|
3299 |
#: includes/currencies.php:28 includes/currencies.php:45
|
3300 |
msgid "Singapore Dollar ($)"
|
3301 |
msgstr ""
|
3302 |
|
3303 |
-
#: includes/currencies.php:
|
3304 |
msgid "South African Rand (R)"
|
3305 |
msgstr ""
|
3306 |
|
3307 |
-
#: includes/currencies.php:
|
3308 |
#: includes/currencies.php:50 includes/currencies.php:54
|
3309 |
msgid "South Korean Won"
|
3310 |
msgstr ""
|
3311 |
|
3312 |
-
#: includes/currencies.php:
|
3313 |
#: includes/currencies.php:31 includes/currencies.php:51
|
3314 |
#: includes/currencies.php:55
|
3315 |
msgid "Swedish Krona"
|
3316 |
msgstr ""
|
3317 |
|
3318 |
-
#: includes/currencies.php:
|
3319 |
#: includes/currencies.php:32 includes/currencies.php:52
|
3320 |
#: includes/currencies.php:56
|
3321 |
msgid "Swiss Franc"
|
3322 |
msgstr ""
|
3323 |
|
3324 |
-
#: includes/currencies.php:
|
3325 |
#: includes/currencies.php:33 includes/currencies.php:53
|
3326 |
#: includes/currencies.php:57
|
3327 |
msgid "Taiwan New Dollars"
|
3328 |
msgstr ""
|
3329 |
|
3330 |
-
#: includes/currencies.php:
|
3331 |
#: includes/currencies.php:34 includes/currencies.php:54
|
3332 |
#: includes/currencies.php:58
|
3333 |
msgid "Thai Baht"
|
3334 |
msgstr ""
|
3335 |
|
3336 |
-
#: includes/currencies.php:
|
3337 |
#: includes/currencies.php:55 includes/currencies.php:59
|
3338 |
msgid "Turkish Lira"
|
3339 |
msgstr ""
|
3340 |
|
3341 |
-
#: includes/currencies.php:
|
3342 |
#: includes/currencies.php:56 includes/currencies.php:60
|
3343 |
msgid "Vietnamese Dong"
|
3344 |
msgstr ""
|
@@ -3463,29 +3468,32 @@ msgstr ""
|
|
3463 |
msgid "Membership expires after %d %s."
|
3464 |
msgstr ""
|
3465 |
|
3466 |
-
#: includes/functions.php:
|
3467 |
#: includes/functions.php:514 includes/functions.php:525
|
3468 |
#: includes/functions.php:536 includes/functions.php:537
|
3469 |
#: includes/functions.php:538 includes/functions.php:545
|
|
|
3470 |
msgid "User ID not found."
|
3471 |
msgstr ""
|
3472 |
|
3473 |
-
#: includes/functions.php:
|
3474 |
#: includes/functions.php:531 includes/functions.php:542
|
3475 |
#: includes/functions.php:553 includes/functions.php:554
|
3476 |
#: includes/functions.php:555 includes/functions.php:562
|
|
|
3477 |
msgid "Invalid level."
|
3478 |
msgstr ""
|
3479 |
|
3480 |
-
#: includes/functions.php:
|
3481 |
#: includes/functions.php:542 includes/functions.php:553
|
3482 |
#: includes/functions.php:564 includes/functions.php:565
|
3483 |
#: includes/functions.php:566 includes/functions.php:573
|
|
|
3484 |
msgid "not changing?"
|
3485 |
msgstr ""
|
3486 |
|
3487 |
-
#: includes/functions.php:
|
3488 |
-
#: includes/functions.php:
|
3489 |
#: includes/functions.php:559 includes/functions.php:570
|
3490 |
#: includes/functions.php:581 includes/functions.php:582
|
3491 |
#: includes/functions.php:583 includes/functions.php:590
|
@@ -3496,11 +3504,11 @@ msgstr ""
|
|
3496 |
#: includes/functions.php:633 includes/functions.php:637
|
3497 |
#: includes/functions.php:640 includes/functions.php:649
|
3498 |
#: includes/functions.php:656 includes/functions.php:657
|
3499 |
-
#: includes/functions.php:673
|
3500 |
msgid "Error interacting with database"
|
3501 |
msgstr ""
|
3502 |
|
3503 |
-
#: includes/functions.php:
|
3504 |
#: includes/functions.php:629 includes/functions.php:651
|
3505 |
#: includes/functions.php:667 includes/functions.php:668
|
3506 |
#: includes/functions.php:678 includes/functions.php:681
|
@@ -3508,91 +3516,97 @@ msgstr ""
|
|
3508 |
#: includes/functions.php:698 includes/functions.php:706
|
3509 |
#: includes/functions.php:714 includes/functions.php:717
|
3510 |
#: includes/functions.php:720 includes/functions.php:736
|
3511 |
-
#: includes/functions.php:737 includes/functions.php:
|
|
|
3512 |
msgid "Membership level not found."
|
3513 |
msgstr ""
|
3514 |
|
3515 |
-
#: includes/functions.php:
|
3516 |
#: includes/functions.php:1101 includes/functions.php:1118
|
|
|
3517 |
msgid "No code was given to check."
|
3518 |
msgstr ""
|
3519 |
|
3520 |
-
#: includes/functions.php:
|
3521 |
#: includes/functions.php:1072 includes/functions.php:1088
|
3522 |
#: includes/functions.php:1099 includes/functions.php:1102
|
3523 |
#: includes/functions.php:1109 includes/functions.php:1110
|
3524 |
#: includes/functions.php:1112 includes/functions.php:1113
|
3525 |
-
#: includes/functions.php:1127
|
3526 |
msgid "The discount code could not be found."
|
3527 |
msgstr ""
|
3528 |
|
3529 |
-
#: includes/functions.php:
|
3530 |
#: includes/functions.php:1088 includes/functions.php:1104
|
3531 |
#: includes/functions.php:1115 includes/functions.php:1118
|
3532 |
#: includes/functions.php:1124 includes/functions.php:1125
|
3533 |
#: includes/functions.php:1128 includes/functions.php:1129
|
3534 |
-
#: includes/functions.php:1142
|
3535 |
#, php-format
|
3536 |
msgid "This discount code goes into effect on %s."
|
3537 |
msgstr ""
|
3538 |
|
3539 |
-
#: includes/functions.php:
|
3540 |
#: includes/functions.php:1097 includes/functions.php:1113
|
3541 |
#: includes/functions.php:1124 includes/functions.php:1127
|
3542 |
#: includes/functions.php:1131 includes/functions.php:1132
|
3543 |
#: includes/functions.php:1137 includes/functions.php:1138
|
3544 |
-
#: includes/functions.php:1149
|
3545 |
#, php-format
|
3546 |
msgid "This discount code expired on %s."
|
3547 |
msgstr ""
|
3548 |
|
3549 |
-
#: includes/functions.php:
|
3550 |
#: includes/functions.php:1109 includes/functions.php:1125
|
3551 |
#: includes/functions.php:1136 includes/functions.php:1139
|
3552 |
#: includes/functions.php:1141 includes/functions.php:1142
|
3553 |
#: includes/functions.php:1149 includes/functions.php:1150
|
3554 |
-
#: includes/functions.php:1159
|
3555 |
msgid "This discount code is no longer valid."
|
3556 |
msgstr ""
|
3557 |
|
3558 |
-
#: includes/functions.php:
|
3559 |
#: includes/functions.php:1124 includes/functions.php:1140
|
3560 |
#: includes/functions.php:1151 includes/functions.php:1154
|
3561 |
#: includes/functions.php:1155 includes/functions.php:1164
|
3562 |
#: includes/functions.php:1165 includes/functions.php:1172
|
|
|
3563 |
msgid "This discount code does not apply to this membership level."
|
3564 |
msgstr ""
|
3565 |
|
3566 |
-
#: includes/functions.php:
|
3567 |
#: includes/functions.php:1132 includes/functions.php:1148
|
3568 |
#: includes/functions.php:1159 includes/functions.php:1162
|
3569 |
#: includes/functions.php:1172 includes/functions.php:1180
|
3570 |
#: includes/functions.php:1181 includes/functions.php:1182
|
3571 |
-
#: includes/functions.php:1198
|
3572 |
msgid "This discount code is okay."
|
3573 |
msgstr ""
|
3574 |
|
3575 |
-
#: includes/functions.php:
|
3576 |
#: includes/functions.php:1156 includes/functions.php:1172
|
3577 |
#: includes/functions.php:1183 includes/functions.php:1186
|
3578 |
#: includes/functions.php:1196 includes/functions.php:1205
|
3579 |
#: includes/functions.php:1206 includes/functions.php:1223
|
|
|
3580 |
msgid "and"
|
3581 |
msgstr ""
|
3582 |
|
3583 |
-
#: includes/functions.php:
|
3584 |
#: includes/functions.php:1341 includes/functions.php:1361
|
3585 |
#: includes/functions.php:1372 includes/functions.php:1375
|
3586 |
#: includes/functions.php:1385 includes/functions.php:1394
|
3587 |
#: includes/functions.php:1395 includes/functions.php:1412
|
|
|
3588 |
msgid "Sign Up for !!name!! Now"
|
3589 |
msgstr ""
|
3590 |
|
3591 |
-
#: includes/functions.php:
|
3592 |
#: includes/functions.php:1347 includes/functions.php:1367
|
3593 |
#: includes/functions.php:1378 includes/functions.php:1381
|
3594 |
#: includes/functions.php:1391 includes/functions.php:1400
|
3595 |
#: includes/functions.php:1401 includes/functions.php:1418
|
|
|
3596 |
msgid "Please specify a level id."
|
3597 |
msgstr ""
|
3598 |
|
@@ -3925,7 +3939,7 @@ msgid ""
|
|
3925 |
"been applied to your order.</p>"
|
3926 |
msgstr ""
|
3927 |
|
3928 |
-
#: pages/checkout.php:62 services/applydiscountcode.php:
|
3929 |
#: pages/checkout.php:62 pages/checkout.php:63 pages/checkout.php:64
|
3930 |
#: services/applydiscountcode.php:74 services/applydiscountcode.php:75
|
3931 |
#: services/applydiscountcode.php:78
|
@@ -4036,6 +4050,7 @@ msgid "Invoice #%s on %s"
|
|
4036 |
msgstr ""
|
4037 |
|
4038 |
#: pages/confirmation.php:43 pages/invoice.php:24 pages/confirmation.php:43
|
|
|
4039 |
msgid "Print"
|
4040 |
msgstr ""
|
4041 |
|
@@ -4286,77 +4301,80 @@ msgstr ""
|
|
4286 |
msgid "That email address is already taken. Please try another."
|
4287 |
msgstr ""
|
4288 |
|
4289 |
-
#: preheaders/checkout.php:397 preheaders/checkout.php:
|
4290 |
-
#: preheaders/checkout.php:
|
4291 |
-
#: preheaders/checkout.php:
|
4292 |
-
#: preheaders/checkout.php:
|
|
|
4293 |
#, php-format
|
4294 |
msgid "reCAPTCHA failed. (%s) Please try again."
|
4295 |
msgstr ""
|
4296 |
|
4297 |
-
#: preheaders/checkout.php:482 preheaders/checkout.php:
|
4298 |
-
#: preheaders/checkout.php:
|
4299 |
-
#: preheaders/checkout.php:
|
4300 |
-
#: preheaders/checkout.php:
|
|
|
4301 |
msgid "Payment accepted."
|
4302 |
msgstr ""
|
4303 |
|
4304 |
-
#: preheaders/checkout.php:490 preheaders/checkout.php:
|
4305 |
-
#: preheaders/checkout.php:
|
4306 |
-
#: preheaders/checkout.php:
|
4307 |
-
#: preheaders/checkout.php:
|
|
|
4308 |
msgid ""
|
4309 |
"Unknown error generating account. Please contact us to setup your membership."
|
4310 |
msgstr ""
|
4311 |
|
4312 |
-
#: preheaders/checkout.php:550 preheaders/checkout.php:
|
4313 |
-
#: preheaders/checkout.php:
|
4314 |
-
#: preheaders/checkout.php:
|
4315 |
-
#: preheaders/checkout.php:
|
4316 |
-
#: preheaders/checkout.php:860
|
4317 |
msgid ""
|
4318 |
"Your payment was accepted, but there was an error setting up your account. "
|
4319 |
"Please contact us."
|
4320 |
msgstr ""
|
4321 |
|
4322 |
-
#: preheaders/checkout.php:691 preheaders/checkout.php:
|
4323 |
-
#: preheaders/checkout.php:
|
4324 |
-
#: preheaders/checkout.php:
|
4325 |
-
#: preheaders/checkout.php:
|
4326 |
-
#: preheaders/checkout.php:1046
|
4327 |
msgid ""
|
4328 |
"IMPORTANT: Something went wrong during membership creation. Your credit card "
|
4329 |
"authorized, but we cancelled the order immediately. You should not try to "
|
4330 |
"submit this form again. Please contact the site owner to fix this issue."
|
4331 |
msgstr ""
|
4332 |
|
4333 |
-
#: preheaders/checkout.php:694 preheaders/checkout.php:
|
4334 |
-
#: preheaders/checkout.php:
|
4335 |
-
#: preheaders/checkout.php:
|
4336 |
-
#: preheaders/checkout.php:
|
4337 |
-
#: preheaders/checkout.php:1051
|
4338 |
msgid ""
|
4339 |
"IMPORTANT: Something went wrong during membership creation. Your credit card "
|
4340 |
"was charged, but we couldn't assign your membership. You should not submit "
|
4341 |
"this form again. Please contact the site owner to fix this issue."
|
4342 |
msgstr ""
|
4343 |
|
4344 |
-
#: preheaders/checkout.php:705 preheaders/checkout.php:
|
4345 |
-
#: preheaders/checkout.php:
|
4346 |
-
#: preheaders/checkout.php:
|
4347 |
-
#: preheaders/checkout.php:
|
4348 |
-
#: preheaders/checkout.php:1064
|
4349 |
#, php-format
|
4350 |
msgid ""
|
4351 |
"You must <a href=\"%s\">setup a Payment Gateway</a> before any payments will "
|
4352 |
"be processed."
|
4353 |
msgstr ""
|
4354 |
|
4355 |
-
#: preheaders/checkout.php:707 preheaders/checkout.php:
|
4356 |
-
#: preheaders/checkout.php:
|
4357 |
-
#: preheaders/checkout.php:
|
4358 |
-
#: preheaders/checkout.php:
|
4359 |
-
#: preheaders/checkout.php:1066
|
4360 |
msgid "A Payment Gateway must be setup before any payments will be processed."
|
4361 |
msgstr ""
|
4362 |
|
@@ -4390,7 +4408,7 @@ msgstr ""
|
|
4390 |
msgid "The %s code has been applied to your order. "
|
4391 |
msgstr ""
|
4392 |
|
4393 |
-
#: services/applydiscountcode.php:
|
4394 |
#: services/applydiscountcode.php:83 services/applydiscountcode.php:86
|
4395 |
#, php-format
|
4396 |
msgid "The <strong>%s</strong> code has been applied to your order."
|
5 |
msgid ""
|
6 |
msgstr ""
|
7 |
"Project-Id-Version: pmpro\n"
|
8 |
+
"POT-Creation-Date: 2015-03-17 09:49-0400\n"
|
|
|
9 |
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
10 |
"Last-Translator: \n"
|
11 |
"Language-Team: Stranger Studios <jason@strangerstudios.com>\n"
|
499 |
msgstr ""
|
500 |
|
501 |
#: adminpages/discountcodes.php:371
|
502 |
+
#: classes/gateways/class.pmprogateway_braintree.php:321
|
503 |
#: classes/gateways/class.pmprogateway_stripe.php:454 pages/billing.php:253
|
504 |
#: pages/checkout.php:553 adminpages/discountcodes.php:367
|
505 |
#: adminpages/discountcodes.php:370 adminpages/discountcodes.php:371
|
1428 |
msgstr ""
|
1429 |
|
1430 |
#: adminpages/orders.php:389
|
1431 |
+
#: classes/gateways/class.pmprogateway_braintree.php:304
|
1432 |
#: classes/gateways/class.pmprogateway_stripe.php:408 pages/billing.php:238
|
1433 |
#: pages/checkout.php:507 adminpages/orders.php:339 adminpages/orders.php:389
|
1434 |
#: classes/gateways/class.pmprogateway_braintree.php:291
|
2155 |
#: classes/class.pmproemail.php:231 classes/class.pmproemail.php:240
|
2156 |
#: classes/class.pmproemail.php:249 classes/class.pmproemail.php:328
|
2157 |
#: classes/class.pmproemail.php:337 classes/class.pmproemail.php:648
|
2158 |
+
#: classes/gateways/class.pmprogateway_braintree.php:362
|
2159 |
#: classes/gateways/class.pmprogateway_stripe.php:495 pages/checkout.php:66
|
2160 |
#: pages/checkout.php:76 pages/checkout.php:594 pages/confirmation.php:52
|
2161 |
#: pages/invoice.php:33 classes/class.pmproemail.php:216
|
2452 |
msgid "Could not connect to Authorize.net"
|
2453 |
msgstr ""
|
2454 |
|
2455 |
+
#: classes/gateways/class.pmprogateway_braintree.php:76
|
2456 |
#: paid-memberships-pro.php:123
|
2457 |
#: classes/gateways/class.pmprogateway_braintree.php:63
|
2458 |
#: paid-memberships-pro.php:123
|
2459 |
msgid "Braintree Payments"
|
2460 |
msgstr ""
|
2461 |
|
2462 |
+
#: classes/gateways/class.pmprogateway_braintree.php:132
|
2463 |
#: classes/gateways/class.pmprogateway_braintree.php:119
|
2464 |
msgid "Braintree Settings"
|
2465 |
msgstr ""
|
2466 |
|
2467 |
+
#: classes/gateways/class.pmprogateway_braintree.php:137
|
2468 |
#: classes/gateways/class.pmprogateway_cybersource.php:106
|
2469 |
#: adminpages/paymentsettings.php:294 adminpages/paymentsettings.php:298
|
2470 |
#: adminpages/paymentsettings.php:303 adminpages/paymentsettings.php:364
|
2474 |
msgid "Merchant ID"
|
2475 |
msgstr ""
|
2476 |
|
2477 |
+
#: classes/gateways/class.pmprogateway_braintree.php:145
|
2478 |
#: adminpages/paymentsettings.php:302 adminpages/paymentsettings.php:306
|
2479 |
#: adminpages/paymentsettings.php:311
|
2480 |
#: classes/gateways/class.pmprogateway_braintree.php:132
|
2481 |
msgid "Public Key"
|
2482 |
msgstr ""
|
2483 |
|
2484 |
+
#: classes/gateways/class.pmprogateway_braintree.php:153
|
2485 |
#: adminpages/paymentsettings.php:310 adminpages/paymentsettings.php:314
|
2486 |
#: adminpages/paymentsettings.php:319
|
2487 |
#: classes/gateways/class.pmprogateway_braintree.php:140
|
2488 |
msgid "Private Key"
|
2489 |
msgstr ""
|
2490 |
|
2491 |
+
#: classes/gateways/class.pmprogateway_braintree.php:161
|
2492 |
#: adminpages/paymentsettings.php:318 adminpages/paymentsettings.php:322
|
2493 |
#: adminpages/paymentsettings.php:327
|
2494 |
#: classes/gateways/class.pmprogateway_braintree.php:148
|
2495 |
msgid "Client-Side Encryption Key"
|
2496 |
msgstr ""
|
2497 |
|
2498 |
+
#: classes/gateways/class.pmprogateway_braintree.php:169
|
2499 |
#: classes/gateways/class.pmprogateway_stripe.php:181
|
2500 |
#: adminpages/paymentsettings.php:462 adminpages/paymentsettings.php:470
|
2501 |
#: adminpages/paymentsettings.php:503 adminpages/paymentsettings.php:509
|
2506 |
msgid "Web Hook URL"
|
2507 |
msgstr ""
|
2508 |
|
2509 |
+
#: classes/gateways/class.pmprogateway_braintree.php:173
|
2510 |
#: adminpages/paymentsettings.php:474 adminpages/paymentsettings.php:515
|
2511 |
#: adminpages/paymentsettings.php:521 adminpages/paymentsettings.php:523
|
2512 |
#: classes/gateways/class.pmprogateway_braintree.php:160
|
2513 |
msgid "To fully integrate with Braintree, be sure to set your Web Hook URL to"
|
2514 |
msgstr ""
|
2515 |
|
2516 |
+
#: classes/gateways/class.pmprogateway_braintree.php:283
|
2517 |
#: classes/gateways/class.pmprogateway_stripe.php:387 pages/checkout.php:485
|
2518 |
#: classes/gateways/class.pmprogateway_braintree.php:270
|
2519 |
#: classes/gateways/class.pmprogateway_stripe.php:387 pages/checkout.php:476
|
2522 |
msgid "Payment Information"
|
2523 |
msgstr ""
|
2524 |
|
2525 |
+
#: classes/gateways/class.pmprogateway_braintree.php:283
|
2526 |
#: classes/gateways/class.pmprogateway_stripe.php:387 pages/checkout.php:485
|
2527 |
#: classes/gateways/class.pmprogateway_braintree.php:270
|
2528 |
#: classes/gateways/class.pmprogateway_stripe.php:387 pages/checkout.php:476
|
2532 |
msgid "We Accept %s"
|
2533 |
msgstr ""
|
2534 |
|
2535 |
+
#: classes/gateways/class.pmprogateway_braintree.php:316
|
2536 |
#: classes/gateways/class.pmprogateway_stripe.php:449 pages/billing.php:248
|
2537 |
#: pages/checkout.php:548
|
2538 |
#: classes/gateways/class.pmprogateway_braintree.php:303
|
2542 |
msgid "Card Number"
|
2543 |
msgstr ""
|
2544 |
|
2545 |
+
#: classes/gateways/class.pmprogateway_braintree.php:353
|
2546 |
#: classes/gateways/class.pmprogateway_stripe.php:486 pages/billing.php:285
|
2547 |
#: pages/checkout.php:585
|
2548 |
#: classes/gateways/class.pmprogateway_braintree.php:340
|
2552 |
msgid "CVV"
|
2553 |
msgstr ""
|
2554 |
|
2555 |
+
#: classes/gateways/class.pmprogateway_braintree.php:354
|
2556 |
#: classes/gateways/class.pmprogateway_stripe.php:487 pages/billing.php:286
|
2557 |
#: pages/checkout.php:586
|
2558 |
#: classes/gateways/class.pmprogateway_braintree.php:341
|
2562 |
msgid "what's this?"
|
2563 |
msgstr ""
|
2564 |
|
2565 |
+
#: classes/gateways/class.pmprogateway_braintree.php:364
|
2566 |
#: classes/gateways/class.pmprogateway_stripe.php:497 pages/checkout.php:78
|
2567 |
#: pages/checkout.php:596
|
2568 |
#: classes/gateways/class.pmprogateway_braintree.php:351
|
2573 |
msgid "Apply"
|
2574 |
msgstr ""
|
2575 |
|
2576 |
+
#: classes/gateways/class.pmprogateway_braintree.php:419
|
2577 |
#: classes/gateways/class.pmprogateway_stripe.php:1011
|
2578 |
#: classes/gateways/class.pmprogateway_braintree.php:61
|
2579 |
#: classes/gateways/class.pmprogateway_braintree.php:406
|
2582 |
msgid "Unknown error: Initial payment failed."
|
2583 |
msgstr ""
|
2584 |
|
2585 |
+
#: classes/gateways/class.pmprogateway_braintree.php:478
|
2586 |
#: classes/gateways/class.pmprogateway_braintree.php:120
|
2587 |
#: classes/gateways/class.pmprogateway_braintree.php:465
|
2588 |
msgid "Error during settlement:"
|
2589 |
msgstr ""
|
2590 |
|
2591 |
+
#: classes/gateways/class.pmprogateway_braintree.php:487
|
2592 |
#: classes/gateways/class.pmprogateway_braintree.php:129
|
2593 |
#: classes/gateways/class.pmprogateway_braintree.php:474
|
2594 |
msgid "Error during charge:"
|
2595 |
msgstr ""
|
2596 |
|
2597 |
+
#: classes/gateways/class.pmprogateway_braintree.php:579
|
2598 |
#: classes/gateways/class.pmprogateway_braintree.php:198
|
2599 |
#: classes/gateways/class.pmprogateway_braintree.php:221
|
2600 |
#: classes/gateways/class.pmprogateway_braintree.php:566
|
2601 |
msgid "Failed to update customer."
|
2602 |
msgstr ""
|
2603 |
|
2604 |
+
#: classes/gateways/class.pmprogateway_braintree.php:627
|
2605 |
#: classes/gateways/class.pmprogateway_braintree.php:246
|
2606 |
#: classes/gateways/class.pmprogateway_braintree.php:269
|
2607 |
#: classes/gateways/class.pmprogateway_braintree.php:614
|
2608 |
msgid "Failed to create customer."
|
2609 |
msgstr ""
|
2610 |
|
2611 |
+
#: classes/gateways/class.pmprogateway_braintree.php:634
|
2612 |
#: classes/gateways/class.pmprogateway_braintree.php:253
|
2613 |
#: classes/gateways/class.pmprogateway_braintree.php:276
|
2614 |
#: classes/gateways/class.pmprogateway_braintree.php:621
|
2615 |
msgid "Error creating customer record with Braintree:"
|
2616 |
msgstr ""
|
2617 |
|
2618 |
+
#: classes/gateways/class.pmprogateway_braintree.php:734
|
2619 |
#: classes/gateways/class.pmprogateway_braintree.php:344
|
2620 |
#: classes/gateways/class.pmprogateway_braintree.php:345
|
2621 |
#: classes/gateways/class.pmprogateway_braintree.php:376
|
2623 |
msgid "Error subscribing customer to plan with Braintree:"
|
2624 |
msgstr ""
|
2625 |
|
2626 |
+
#: classes/gateways/class.pmprogateway_braintree.php:749
|
2627 |
#: classes/gateways/class.pmprogateway_braintree.php:359
|
2628 |
#: classes/gateways/class.pmprogateway_braintree.php:360
|
2629 |
#: classes/gateways/class.pmprogateway_braintree.php:391
|
2631 |
msgid "Failed to subscribe with Braintree:"
|
2632 |
msgstr ""
|
2633 |
|
|
|
2634 |
#: classes/gateways/class.pmprogateway_braintree.php:787
|
2635 |
+
#: classes/gateways/class.pmprogateway_braintree.php:800
|
2636 |
+
#: classes/gateways/class.pmprogateway_braintree.php:807
|
2637 |
#: classes/gateways/class.pmprogateway_braintree.php:397
|
2638 |
#: classes/gateways/class.pmprogateway_braintree.php:398
|
2639 |
#: classes/gateways/class.pmprogateway_braintree.php:410
|
3050 |
#: classes/gateways/class.pmprogateway_stripe.php:199
|
3051 |
#: classes/gateways/class.pmprogateway_stripe.php:201
|
3052 |
#: classes/gateways/class.pmprogateway_stripe.php:1187
|
3053 |
+
#: classes/gateways/class.pmprogateway_stripe.php:1188
|
3054 |
msgid "Error creating customer record with Stripe:"
|
3055 |
msgstr ""
|
3056 |
|
3063 |
#: classes/gateways/class.pmprogateway_stripe.php:308
|
3064 |
#: classes/gateways/class.pmprogateway_stripe.php:311
|
3065 |
#: classes/gateways/class.pmprogateway_stripe.php:1244
|
3066 |
+
#: classes/gateways/class.pmprogateway_stripe.php:1245
|
3067 |
#: classes/gateways/class.pmprogateway_stripe.php:1390
|
3068 |
+
#: classes/gateways/class.pmprogateway_stripe.php:1391
|
3069 |
msgid "Error creating plan with Stripe:"
|
3070 |
msgstr ""
|
3071 |
|
3072 |
+
#: classes/gateways/class.pmprogateway_stripe.php:1422
|
3073 |
#: classes/gateways/class.pmprogateway_stripe.php:294
|
3074 |
#: classes/gateways/class.pmprogateway_stripe.php:295
|
3075 |
#: classes/gateways/class.pmprogateway_stripe.php:302
|
3077 |
#: classes/gateways/class.pmprogateway_stripe.php:324
|
3078 |
#: classes/gateways/class.pmprogateway_stripe.php:330
|
3079 |
#: classes/gateways/class.pmprogateway_stripe.php:1420
|
3080 |
+
#: classes/gateways/class.pmprogateway_stripe.php:1421
|
3081 |
msgid "Error subscribing customer to plan with Stripe:"
|
3082 |
msgstr ""
|
3083 |
|
3084 |
+
#: classes/gateways/class.pmprogateway_stripe.php:1518
|
3085 |
#: classes/gateways/class.pmprogateway_stripe.php:383
|
3086 |
#: classes/gateways/class.pmprogateway_stripe.php:389
|
3087 |
#: classes/gateways/class.pmprogateway_stripe.php:410
|
3088 |
#: classes/gateways/class.pmprogateway_stripe.php:1516
|
3089 |
+
#: classes/gateways/class.pmprogateway_stripe.php:1517
|
3090 |
msgid "Could not cancel old subscription."
|
3091 |
msgstr ""
|
3092 |
|
3093 |
+
#: classes/gateways/class.pmprogateway_stripe.php:1535
|
3094 |
#: classes/gateways/class.pmprogateway_stripe.php:1533
|
3095 |
+
#: classes/gateways/class.pmprogateway_stripe.php:1534
|
3096 |
msgid "Could not find the customer."
|
3097 |
msgstr ""
|
3098 |
|
3188 |
msgid "Visit Customer Support Forum"
|
3189 |
msgstr ""
|
3190 |
|
3191 |
+
#: includes/currencies.php:7 includes/currencies.php:75
|
3192 |
#: includes/currencies.php:7 includes/currencies.php:37
|
3193 |
#: includes/currencies.php:44 includes/currencies.php:64
|
3194 |
#: includes/currencies.php:68
|
3195 |
msgid "US Dollars ($)"
|
3196 |
msgstr ""
|
3197 |
|
3198 |
+
#: includes/currencies.php:9 includes/currencies.php:78
|
3199 |
#: includes/currencies.php:8 includes/currencies.php:9
|
3200 |
#: includes/currencies.php:40 includes/currencies.php:47
|
3201 |
#: includes/currencies.php:67 includes/currencies.php:71
|
3202 |
msgid "Euros (€)"
|
3203 |
msgstr ""
|
3204 |
|
3205 |
+
#: includes/currencies.php:14 includes/currencies.php:77
|
3206 |
#: includes/currencies.php:9 includes/currencies.php:14
|
3207 |
#: includes/currencies.php:39 includes/currencies.php:46
|
3208 |
#: includes/currencies.php:66 includes/currencies.php:70
|
3218 |
msgid "Brazilian Real (R$)"
|
3219 |
msgstr ""
|
3220 |
|
3221 |
+
#: includes/currencies.php:24 includes/currencies.php:76
|
3222 |
#: includes/currencies.php:12 includes/currencies.php:24
|
3223 |
#: includes/currencies.php:38 includes/currencies.php:45
|
3224 |
#: includes/currencies.php:65 includes/currencies.php:69
|
3230 |
msgid "Chinese Yuan"
|
3231 |
msgstr ""
|
3232 |
|
3233 |
+
#: includes/currencies.php:27 includes/currencies.php:13
|
3234 |
#: includes/currencies.php:14 includes/currencies.php:26
|
3235 |
msgid "Czech Koruna"
|
3236 |
msgstr ""
|
3237 |
|
3238 |
+
#: includes/currencies.php:34 includes/currencies.php:14
|
3239 |
#: includes/currencies.php:15 includes/currencies.php:27
|
3240 |
msgid "Danish Krone"
|
3241 |
msgstr ""
|
3242 |
|
3243 |
+
#: includes/currencies.php:35 includes/currencies.php:15
|
3244 |
#: includes/currencies.php:16 includes/currencies.php:28
|
3245 |
msgid "Hong Kong Dollar ($)"
|
3246 |
msgstr ""
|
3247 |
|
3248 |
+
#: includes/currencies.php:36 includes/currencies.php:16
|
3249 |
#: includes/currencies.php:17 includes/currencies.php:29
|
3250 |
msgid "Hungarian Forint"
|
3251 |
msgstr ""
|
3252 |
|
3253 |
+
#: includes/currencies.php:37 includes/currencies.php:18
|
3254 |
#: includes/currencies.php:30
|
3255 |
msgid "Indian Rupee"
|
3256 |
msgstr ""
|
3257 |
|
3258 |
+
#: includes/currencies.php:38 includes/currencies.php:19
|
3259 |
#: includes/currencies.php:31
|
3260 |
msgid "Indonesia Rupiah"
|
3261 |
msgstr ""
|
3262 |
|
3263 |
+
#: includes/currencies.php:39 includes/currencies.php:17
|
3264 |
#: includes/currencies.php:20 includes/currencies.php:32
|
3265 |
msgid "Israeli Shekel"
|
3266 |
msgstr ""
|
3267 |
|
3268 |
+
#: includes/currencies.php:41 includes/currencies.php:18
|
3269 |
#: includes/currencies.php:21 includes/currencies.php:34
|
3270 |
msgid "Japanese Yen (¥)"
|
3271 |
msgstr ""
|
3272 |
|
3273 |
+
#: includes/currencies.php:45 includes/currencies.php:19
|
3274 |
#: includes/currencies.php:22 includes/currencies.php:38
|
3275 |
msgid "Malaysian Ringgits"
|
3276 |
msgstr ""
|
3277 |
|
3278 |
+
#: includes/currencies.php:46 includes/currencies.php:20
|
3279 |
#: includes/currencies.php:23 includes/currencies.php:39
|
3280 |
msgid "Mexican Peso ($)"
|
3281 |
msgstr ""
|
3282 |
|
3283 |
+
#: includes/currencies.php:47 includes/currencies.php:21
|
3284 |
#: includes/currencies.php:24 includes/currencies.php:40
|
3285 |
msgid "New Zealand Dollar ($)"
|
3286 |
msgstr ""
|
3287 |
|
3288 |
+
#: includes/currencies.php:48 includes/currencies.php:22
|
3289 |
#: includes/currencies.php:25 includes/currencies.php:41
|
3290 |
msgid "Norwegian Krone"
|
3291 |
msgstr ""
|
3292 |
|
3293 |
+
#: includes/currencies.php:49 includes/currencies.php:23
|
3294 |
#: includes/currencies.php:26 includes/currencies.php:42
|
3295 |
msgid "Philippine Pesos"
|
3296 |
msgstr ""
|
3297 |
|
3298 |
+
#: includes/currencies.php:50 includes/currencies.php:24
|
3299 |
#: includes/currencies.php:27 includes/currencies.php:43
|
3300 |
msgid "Polish Zloty"
|
3301 |
msgstr ""
|
3302 |
|
3303 |
+
#: includes/currencies.php:52 includes/currencies.php:25
|
3304 |
#: includes/currencies.php:28 includes/currencies.php:45
|
3305 |
msgid "Singapore Dollar ($)"
|
3306 |
msgstr ""
|
3307 |
|
3308 |
+
#: includes/currencies.php:57 includes/currencies.php:50
|
3309 |
msgid "South African Rand (R)"
|
3310 |
msgstr ""
|
3311 |
|
3312 |
+
#: includes/currencies.php:61 includes/currencies.php:30
|
3313 |
#: includes/currencies.php:50 includes/currencies.php:54
|
3314 |
msgid "South Korean Won"
|
3315 |
msgstr ""
|
3316 |
|
3317 |
+
#: includes/currencies.php:62 includes/currencies.php:26
|
3318 |
#: includes/currencies.php:31 includes/currencies.php:51
|
3319 |
#: includes/currencies.php:55
|
3320 |
msgid "Swedish Krona"
|
3321 |
msgstr ""
|
3322 |
|
3323 |
+
#: includes/currencies.php:63 includes/currencies.php:27
|
3324 |
#: includes/currencies.php:32 includes/currencies.php:52
|
3325 |
#: includes/currencies.php:56
|
3326 |
msgid "Swiss Franc"
|
3327 |
msgstr ""
|
3328 |
|
3329 |
+
#: includes/currencies.php:64 includes/currencies.php:28
|
3330 |
#: includes/currencies.php:33 includes/currencies.php:53
|
3331 |
#: includes/currencies.php:57
|
3332 |
msgid "Taiwan New Dollars"
|
3333 |
msgstr ""
|
3334 |
|
3335 |
+
#: includes/currencies.php:65 includes/currencies.php:29
|
3336 |
#: includes/currencies.php:34 includes/currencies.php:54
|
3337 |
#: includes/currencies.php:58
|
3338 |
msgid "Thai Baht"
|
3339 |
msgstr ""
|
3340 |
|
3341 |
+
#: includes/currencies.php:66 includes/currencies.php:35
|
3342 |
#: includes/currencies.php:55 includes/currencies.php:59
|
3343 |
msgid "Turkish Lira"
|
3344 |
msgstr ""
|
3345 |
|
3346 |
+
#: includes/currencies.php:67 includes/currencies.php:36
|
3347 |
#: includes/currencies.php:56 includes/currencies.php:60
|
3348 |
msgid "Vietnamese Dong"
|
3349 |
msgstr ""
|
3468 |
msgid "Membership expires after %d %s."
|
3469 |
msgstr ""
|
3470 |
|
3471 |
+
#: includes/functions.php:570 includes/functions.php:491
|
3472 |
#: includes/functions.php:514 includes/functions.php:525
|
3473 |
#: includes/functions.php:536 includes/functions.php:537
|
3474 |
#: includes/functions.php:538 includes/functions.php:545
|
3475 |
+
#: includes/functions.php:569
|
3476 |
msgid "User ID not found."
|
3477 |
msgstr ""
|
3478 |
|
3479 |
+
#: includes/functions.php:587 includes/functions.php:508
|
3480 |
#: includes/functions.php:531 includes/functions.php:542
|
3481 |
#: includes/functions.php:553 includes/functions.php:554
|
3482 |
#: includes/functions.php:555 includes/functions.php:562
|
3483 |
+
#: includes/functions.php:586
|
3484 |
msgid "Invalid level."
|
3485 |
msgstr ""
|
3486 |
|
3487 |
+
#: includes/functions.php:598 includes/functions.php:520
|
3488 |
#: includes/functions.php:542 includes/functions.php:553
|
3489 |
#: includes/functions.php:564 includes/functions.php:565
|
3490 |
#: includes/functions.php:566 includes/functions.php:573
|
3491 |
+
#: includes/functions.php:597
|
3492 |
msgid "not changing?"
|
3493 |
msgstr ""
|
3494 |
|
3495 |
+
#: includes/functions.php:615 includes/functions.php:674
|
3496 |
+
#: includes/functions.php:698 includes/functions.php:537
|
3497 |
#: includes/functions.php:559 includes/functions.php:570
|
3498 |
#: includes/functions.php:581 includes/functions.php:582
|
3499 |
#: includes/functions.php:583 includes/functions.php:590
|
3504 |
#: includes/functions.php:633 includes/functions.php:637
|
3505 |
#: includes/functions.php:640 includes/functions.php:649
|
3506 |
#: includes/functions.php:656 includes/functions.php:657
|
3507 |
+
#: includes/functions.php:673 includes/functions.php:697
|
3508 |
msgid "Error interacting with database"
|
3509 |
msgstr ""
|
3510 |
|
3511 |
+
#: includes/functions.php:739 includes/functions.php:778
|
3512 |
#: includes/functions.php:629 includes/functions.php:651
|
3513 |
#: includes/functions.php:667 includes/functions.php:668
|
3514 |
#: includes/functions.php:678 includes/functions.php:681
|
3516 |
#: includes/functions.php:698 includes/functions.php:706
|
3517 |
#: includes/functions.php:714 includes/functions.php:717
|
3518 |
#: includes/functions.php:720 includes/functions.php:736
|
3519 |
+
#: includes/functions.php:737 includes/functions.php:738
|
3520 |
+
#: includes/functions.php:753 includes/functions.php:777
|
3521 |
msgid "Membership level not found."
|
3522 |
msgstr ""
|
3523 |
|
3524 |
+
#: includes/functions.php:1143 includes/functions.php:1100
|
3525 |
#: includes/functions.php:1101 includes/functions.php:1118
|
3526 |
+
#: includes/functions.php:1142
|
3527 |
msgid "No code was given to check."
|
3528 |
msgstr ""
|
3529 |
|
3530 |
+
#: includes/functions.php:1152 includes/functions.php:1050
|
3531 |
#: includes/functions.php:1072 includes/functions.php:1088
|
3532 |
#: includes/functions.php:1099 includes/functions.php:1102
|
3533 |
#: includes/functions.php:1109 includes/functions.php:1110
|
3534 |
#: includes/functions.php:1112 includes/functions.php:1113
|
3535 |
+
#: includes/functions.php:1127 includes/functions.php:1151
|
3536 |
msgid "The discount code could not be found."
|
3537 |
msgstr ""
|
3538 |
|
3539 |
+
#: includes/functions.php:1167 includes/functions.php:1066
|
3540 |
#: includes/functions.php:1088 includes/functions.php:1104
|
3541 |
#: includes/functions.php:1115 includes/functions.php:1118
|
3542 |
#: includes/functions.php:1124 includes/functions.php:1125
|
3543 |
#: includes/functions.php:1128 includes/functions.php:1129
|
3544 |
+
#: includes/functions.php:1142 includes/functions.php:1166
|
3545 |
#, php-format
|
3546 |
msgid "This discount code goes into effect on %s."
|
3547 |
msgstr ""
|
3548 |
|
3549 |
+
#: includes/functions.php:1174 includes/functions.php:1075
|
3550 |
#: includes/functions.php:1097 includes/functions.php:1113
|
3551 |
#: includes/functions.php:1124 includes/functions.php:1127
|
3552 |
#: includes/functions.php:1131 includes/functions.php:1132
|
3553 |
#: includes/functions.php:1137 includes/functions.php:1138
|
3554 |
+
#: includes/functions.php:1149 includes/functions.php:1173
|
3555 |
#, php-format
|
3556 |
msgid "This discount code expired on %s."
|
3557 |
msgstr ""
|
3558 |
|
3559 |
+
#: includes/functions.php:1184 includes/functions.php:1087
|
3560 |
#: includes/functions.php:1109 includes/functions.php:1125
|
3561 |
#: includes/functions.php:1136 includes/functions.php:1139
|
3562 |
#: includes/functions.php:1141 includes/functions.php:1142
|
3563 |
#: includes/functions.php:1149 includes/functions.php:1150
|
3564 |
+
#: includes/functions.php:1159 includes/functions.php:1183
|
3565 |
msgid "This discount code is no longer valid."
|
3566 |
msgstr ""
|
3567 |
|
3568 |
+
#: includes/functions.php:1197 includes/functions.php:1102
|
3569 |
#: includes/functions.php:1124 includes/functions.php:1140
|
3570 |
#: includes/functions.php:1151 includes/functions.php:1154
|
3571 |
#: includes/functions.php:1155 includes/functions.php:1164
|
3572 |
#: includes/functions.php:1165 includes/functions.php:1172
|
3573 |
+
#: includes/functions.php:1196
|
3574 |
msgid "This discount code does not apply to this membership level."
|
3575 |
msgstr ""
|
3576 |
|
3577 |
+
#: includes/functions.php:1223 includes/functions.php:1110
|
3578 |
#: includes/functions.php:1132 includes/functions.php:1148
|
3579 |
#: includes/functions.php:1159 includes/functions.php:1162
|
3580 |
#: includes/functions.php:1172 includes/functions.php:1180
|
3581 |
#: includes/functions.php:1181 includes/functions.php:1182
|
3582 |
+
#: includes/functions.php:1198 includes/functions.php:1222
|
3583 |
msgid "This discount code is okay."
|
3584 |
msgstr ""
|
3585 |
|
3586 |
+
#: includes/functions.php:1248 includes/functions.php:1134
|
3587 |
#: includes/functions.php:1156 includes/functions.php:1172
|
3588 |
#: includes/functions.php:1183 includes/functions.php:1186
|
3589 |
#: includes/functions.php:1196 includes/functions.php:1205
|
3590 |
#: includes/functions.php:1206 includes/functions.php:1223
|
3591 |
+
#: includes/functions.php:1247
|
3592 |
msgid "and"
|
3593 |
msgstr ""
|
3594 |
|
3595 |
+
#: includes/functions.php:1437 includes/functions.php:1319
|
3596 |
#: includes/functions.php:1341 includes/functions.php:1361
|
3597 |
#: includes/functions.php:1372 includes/functions.php:1375
|
3598 |
#: includes/functions.php:1385 includes/functions.php:1394
|
3599 |
#: includes/functions.php:1395 includes/functions.php:1412
|
3600 |
+
#: includes/functions.php:1436
|
3601 |
msgid "Sign Up for !!name!! Now"
|
3602 |
msgstr ""
|
3603 |
|
3604 |
+
#: includes/functions.php:1443 includes/functions.php:1325
|
3605 |
#: includes/functions.php:1347 includes/functions.php:1367
|
3606 |
#: includes/functions.php:1378 includes/functions.php:1381
|
3607 |
#: includes/functions.php:1391 includes/functions.php:1400
|
3608 |
#: includes/functions.php:1401 includes/functions.php:1418
|
3609 |
+
#: includes/functions.php:1442
|
3610 |
msgid "Please specify a level id."
|
3611 |
msgstr ""
|
3612 |
|
3939 |
"been applied to your order.</p>"
|
3940 |
msgstr ""
|
3941 |
|
3942 |
+
#: pages/checkout.php:62 services/applydiscountcode.php:89
|
3943 |
#: pages/checkout.php:62 pages/checkout.php:63 pages/checkout.php:64
|
3944 |
#: services/applydiscountcode.php:74 services/applydiscountcode.php:75
|
3945 |
#: services/applydiscountcode.php:78
|
4050 |
msgstr ""
|
4051 |
|
4052 |
#: pages/confirmation.php:43 pages/invoice.php:24 pages/confirmation.php:43
|
4053 |
+
#: pages/invoice.php:24
|
4054 |
msgid "Print"
|
4055 |
msgstr ""
|
4056 |
|
4301 |
msgid "That email address is already taken. Please try another."
|
4302 |
msgstr ""
|
4303 |
|
4304 |
+
#: preheaders/checkout.php:397 preheaders/checkout.php:397
|
4305 |
+
#: preheaders/checkout.php:399 preheaders/checkout.php:525
|
4306 |
+
#: preheaders/checkout.php:532 preheaders/checkout.php:537
|
4307 |
+
#: preheaders/checkout.php:544 preheaders/checkout.php:561
|
4308 |
+
#: preheaders/checkout.php:562
|
4309 |
#, php-format
|
4310 |
msgid "reCAPTCHA failed. (%s) Please try again."
|
4311 |
msgstr ""
|
4312 |
|
4313 |
+
#: preheaders/checkout.php:482 preheaders/checkout.php:482
|
4314 |
+
#: preheaders/checkout.php:484 preheaders/checkout.php:647
|
4315 |
+
#: preheaders/checkout.php:654 preheaders/checkout.php:659
|
4316 |
+
#: preheaders/checkout.php:683 preheaders/checkout.php:701
|
4317 |
+
#: preheaders/checkout.php:702
|
4318 |
msgid "Payment accepted."
|
4319 |
msgstr ""
|
4320 |
|
4321 |
+
#: preheaders/checkout.php:490 preheaders/checkout.php:490
|
4322 |
+
#: preheaders/checkout.php:492 preheaders/checkout.php:653
|
4323 |
+
#: preheaders/checkout.php:660 preheaders/checkout.php:665
|
4324 |
+
#: preheaders/checkout.php:691 preheaders/checkout.php:709
|
4325 |
+
#: preheaders/checkout.php:710
|
4326 |
msgid ""
|
4327 |
"Unknown error generating account. Please contact us to setup your membership."
|
4328 |
msgstr ""
|
4329 |
|
4330 |
+
#: preheaders/checkout.php:550 preheaders/checkout.php:550
|
4331 |
+
#: preheaders/checkout.php:552 preheaders/checkout.php:785
|
4332 |
+
#: preheaders/checkout.php:792 preheaders/checkout.php:797
|
4333 |
+
#: preheaders/checkout.php:825 preheaders/checkout.php:844
|
4334 |
+
#: preheaders/checkout.php:859 preheaders/checkout.php:860
|
4335 |
msgid ""
|
4336 |
"Your payment was accepted, but there was an error setting up your account. "
|
4337 |
"Please contact us."
|
4338 |
msgstr ""
|
4339 |
|
4340 |
+
#: preheaders/checkout.php:691 preheaders/checkout.php:691
|
4341 |
+
#: preheaders/checkout.php:693 preheaders/checkout.php:953
|
4342 |
+
#: preheaders/checkout.php:960 preheaders/checkout.php:970
|
4343 |
+
#: preheaders/checkout.php:983 preheaders/checkout.php:1030
|
4344 |
+
#: preheaders/checkout.php:1045 preheaders/checkout.php:1046
|
4345 |
msgid ""
|
4346 |
"IMPORTANT: Something went wrong during membership creation. Your credit card "
|
4347 |
"authorized, but we cancelled the order immediately. You should not try to "
|
4348 |
"submit this form again. Please contact the site owner to fix this issue."
|
4349 |
msgstr ""
|
4350 |
|
4351 |
+
#: preheaders/checkout.php:694 preheaders/checkout.php:694
|
4352 |
+
#: preheaders/checkout.php:696 preheaders/checkout.php:956
|
4353 |
+
#: preheaders/checkout.php:963 preheaders/checkout.php:973
|
4354 |
+
#: preheaders/checkout.php:988 preheaders/checkout.php:1035
|
4355 |
+
#: preheaders/checkout.php:1050 preheaders/checkout.php:1051
|
4356 |
msgid ""
|
4357 |
"IMPORTANT: Something went wrong during membership creation. Your credit card "
|
4358 |
"was charged, but we couldn't assign your membership. You should not submit "
|
4359 |
"this form again. Please contact the site owner to fix this issue."
|
4360 |
msgstr ""
|
4361 |
|
4362 |
+
#: preheaders/checkout.php:705 preheaders/checkout.php:705
|
4363 |
+
#: preheaders/checkout.php:707 preheaders/checkout.php:967
|
4364 |
+
#: preheaders/checkout.php:974 preheaders/checkout.php:984
|
4365 |
+
#: preheaders/checkout.php:1001 preheaders/checkout.php:1048
|
4366 |
+
#: preheaders/checkout.php:1063 preheaders/checkout.php:1064
|
4367 |
#, php-format
|
4368 |
msgid ""
|
4369 |
"You must <a href=\"%s\">setup a Payment Gateway</a> before any payments will "
|
4370 |
"be processed."
|
4371 |
msgstr ""
|
4372 |
|
4373 |
+
#: preheaders/checkout.php:707 preheaders/checkout.php:707
|
4374 |
+
#: preheaders/checkout.php:709 preheaders/checkout.php:969
|
4375 |
+
#: preheaders/checkout.php:976 preheaders/checkout.php:986
|
4376 |
+
#: preheaders/checkout.php:1003 preheaders/checkout.php:1050
|
4377 |
+
#: preheaders/checkout.php:1065 preheaders/checkout.php:1066
|
4378 |
msgid "A Payment Gateway must be setup before any payments will be processed."
|
4379 |
msgstr ""
|
4380 |
|
4408 |
msgid "The %s code has been applied to your order. "
|
4409 |
msgstr ""
|
4410 |
|
4411 |
+
#: services/applydiscountcode.php:97 services/applydiscountcode.php:82
|
4412 |
#: services/applydiscountcode.php:83 services/applydiscountcode.php:86
|
4413 |
#, php-format
|
4414 |
msgid "The <strong>%s</strong> code has been applied to your order."
|
pages/account.php
CHANGED
@@ -63,7 +63,7 @@
|
|
63 |
<div class="pmpro_actionlinks">
|
64 |
<a href="<?php echo pmpro_url("levels")?>"><?php _e("View all Membership Options", "pmpro");?></a>
|
65 |
</div>
|
66 |
-
|
67 |
</div> <!-- end pmpro_account-membership -->
|
68 |
|
69 |
<div id="pmpro_account-profile" class="pmpro_box">
|
@@ -78,7 +78,7 @@
|
|
78 |
</ul>
|
79 |
<div class="pmpro_actionlinks">
|
80 |
<a href="<?php echo admin_url('profile.php')?>"><?php _e("Edit Profile", "pmpro");?></a>
|
81 |
-
<a href="<?php echo admin_url('profile.php')?>"><?php
|
82 |
</div>
|
83 |
</div> <!-- end pmpro_account-profile -->
|
84 |
|
@@ -106,14 +106,14 @@
|
|
106 |
$invoice = new MemberOrder;
|
107 |
$invoice->getMemberOrderByID($invoice_id);
|
108 |
$invoice->getMembershipLevel();
|
109 |
-
?>
|
110 |
<tr id="pmpro_account-invoice-<?php echo $invoice->code; ?>">
|
111 |
<td><a href="<?php echo pmpro_url("invoice", "?invoice=" . $invoice->code)?>"><?php echo date(get_option("date_format"), $invoice->timestamp)?></td>
|
112 |
<td><?php echo $invoice->membership_level->name?></td>
|
113 |
<td><?php echo pmpro_formatPrice($invoice->total)?></td>
|
114 |
</tr>
|
115 |
<?php
|
116 |
-
}
|
117 |
?>
|
118 |
</tbody>
|
119 |
</table>
|
63 |
<div class="pmpro_actionlinks">
|
64 |
<a href="<?php echo pmpro_url("levels")?>"><?php _e("View all Membership Options", "pmpro");?></a>
|
65 |
</div>
|
66 |
+
|
67 |
</div> <!-- end pmpro_account-membership -->
|
68 |
|
69 |
<div id="pmpro_account-profile" class="pmpro_box">
|
78 |
</ul>
|
79 |
<div class="pmpro_actionlinks">
|
80 |
<a href="<?php echo admin_url('profile.php')?>"><?php _e("Edit Profile", "pmpro");?></a>
|
81 |
+
<a href="<?php echo admin_url('profile.php')?>"><?php _e('Change Password', 'pmpro');?></a>
|
82 |
</div>
|
83 |
</div> <!-- end pmpro_account-profile -->
|
84 |
|
106 |
$invoice = new MemberOrder;
|
107 |
$invoice->getMemberOrderByID($invoice_id);
|
108 |
$invoice->getMembershipLevel();
|
109 |
+
?>
|
110 |
<tr id="pmpro_account-invoice-<?php echo $invoice->code; ?>">
|
111 |
<td><a href="<?php echo pmpro_url("invoice", "?invoice=" . $invoice->code)?>"><?php echo date(get_option("date_format"), $invoice->timestamp)?></td>
|
112 |
<td><?php echo $invoice->membership_level->name?></td>
|
113 |
<td><?php echo pmpro_formatPrice($invoice->total)?></td>
|
114 |
</tr>
|
115 |
<?php
|
116 |
+
}
|
117 |
?>
|
118 |
</tbody>
|
119 |
</table>
|
pages/checkout.php
CHANGED
@@ -1,6 +1,6 @@
|
|
1 |
<?php
|
2 |
global $gateway, $pmpro_review, $skip_account_fields, $pmpro_paypal_token, $wpdb, $current_user, $pmpro_msg, $pmpro_msgt, $pmpro_requirebilling, $pmpro_level, $pmpro_levels, $tospage, $pmpro_show_discount_code, $pmpro_error_fields;
|
3 |
-
global $discount_code, $username, $password, $password2, $bfirstname, $blastname, $baddress1, $baddress2, $bcity, $bstate, $bzipcode, $bcountry, $bphone, $bemail, $bconfirmemail, $CardType, $AccountNumber, $ExpirationMonth,$ExpirationYear;
|
4 |
?>
|
5 |
<div id="pmpro_level-<?php echo $pmpro_level->id; ?>">
|
6 |
<form id="pmpro_form" class="pmpro_form" action="<?php if(!empty($_REQUEST['review'])) echo pmpro_url("checkout", "?level=" . $pmpro_level->id); ?>" method="post">
|
@@ -488,10 +488,10 @@
|
|
488 |
<tbody>
|
489 |
<tr valign="top">
|
490 |
<td>
|
491 |
-
<?php
|
492 |
$sslseal = pmpro_getOption("sslseal");
|
493 |
if($sslseal)
|
494 |
-
{
|
495 |
?>
|
496 |
<div class="pmpro_sslseal"><?php echo stripslashes($sslseal)?></div>
|
497 |
<?php
|
@@ -502,7 +502,7 @@
|
|
502 |
$pmpro_include_cardtype_field = apply_filters('pmpro_include_cardtype_field', false);
|
503 |
if($pmpro_include_cardtype_field)
|
504 |
{
|
505 |
-
?>
|
506 |
<div class="pmpro_payment-card-type">
|
507 |
<label for="CardType"><?php _e('Card Type', 'pmpro');?></label>
|
508 |
<select id="CardType" name="CardType" class=" <?php echo pmpro_getClassForField("CardType");?>">
|
@@ -542,7 +542,7 @@
|
|
542 |
</script>
|
543 |
<?php
|
544 |
}
|
545 |
-
?>
|
546 |
|
547 |
<div class="pmpro_payment-account-number">
|
548 |
<label for="AccountNumber"><?php _e('Card Number', 'pmpro');?></label>
|
@@ -646,7 +646,7 @@
|
|
646 |
</script>
|
647 |
|
648 |
<?php
|
649 |
-
if($gateway == "check")
|
650 |
{
|
651 |
$instructions = pmpro_getOption("instructions");
|
652 |
echo '<div class="pmpro_check_instructions">' . wpautop($instructions) . '</div>';
|
@@ -783,4 +783,4 @@
|
|
783 |
<script>
|
784 |
//add javascriptok hidden field to checkout
|
785 |
jQuery("input[name=submit-checkout]").after('<input type="hidden" name="javascriptok" value="1" />');
|
786 |
-
</script>
|
1 |
<?php
|
2 |
global $gateway, $pmpro_review, $skip_account_fields, $pmpro_paypal_token, $wpdb, $current_user, $pmpro_msg, $pmpro_msgt, $pmpro_requirebilling, $pmpro_level, $pmpro_levels, $tospage, $pmpro_show_discount_code, $pmpro_error_fields;
|
3 |
+
global $discount_code, $username, $password, $password2, $bfirstname, $blastname, $baddress1, $baddress2, $bcity, $bstate, $bzipcode, $bcountry, $bphone, $bemail, $bconfirmemail, $CardType, $AccountNumber, $ExpirationMonth,$ExpirationYear;
|
4 |
?>
|
5 |
<div id="pmpro_level-<?php echo $pmpro_level->id; ?>">
|
6 |
<form id="pmpro_form" class="pmpro_form" action="<?php if(!empty($_REQUEST['review'])) echo pmpro_url("checkout", "?level=" . $pmpro_level->id); ?>" method="post">
|
488 |
<tbody>
|
489 |
<tr valign="top">
|
490 |
<td>
|
491 |
+
<?php
|
492 |
$sslseal = pmpro_getOption("sslseal");
|
493 |
if($sslseal)
|
494 |
+
{
|
495 |
?>
|
496 |
<div class="pmpro_sslseal"><?php echo stripslashes($sslseal)?></div>
|
497 |
<?php
|
502 |
$pmpro_include_cardtype_field = apply_filters('pmpro_include_cardtype_field', false);
|
503 |
if($pmpro_include_cardtype_field)
|
504 |
{
|
505 |
+
?>
|
506 |
<div class="pmpro_payment-card-type">
|
507 |
<label for="CardType"><?php _e('Card Type', 'pmpro');?></label>
|
508 |
<select id="CardType" name="CardType" class=" <?php echo pmpro_getClassForField("CardType");?>">
|
542 |
</script>
|
543 |
<?php
|
544 |
}
|
545 |
+
?>
|
546 |
|
547 |
<div class="pmpro_payment-account-number">
|
548 |
<label for="AccountNumber"><?php _e('Card Number', 'pmpro');?></label>
|
646 |
</script>
|
647 |
|
648 |
<?php
|
649 |
+
if($gateway == "check" && !pmpro_isLevelFree($pmpro_level))
|
650 |
{
|
651 |
$instructions = pmpro_getOption("instructions");
|
652 |
echo '<div class="pmpro_check_instructions">' . wpautop($instructions) . '</div>';
|
783 |
<script>
|
784 |
//add javascriptok hidden field to checkout
|
785 |
jQuery("input[name=submit-checkout]").after('<input type="hidden" name="javascriptok" value="1" />');
|
786 |
+
</script>
|
paid-memberships-pro.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
Plugin Name: Paid Memberships Pro
|
4 |
Plugin URI: http://www.paidmembershipspro.com
|
5 |
Description: Plugin to Handle Memberships
|
6 |
-
Version: 1.8
|
7 |
Author: Stranger Studios
|
8 |
Author URI: http://www.strangerstudios.com
|
9 |
*/
|
@@ -13,7 +13,7 @@ Author URI: http://www.strangerstudios.com
|
|
13 |
*/
|
14 |
|
15 |
//version constant
|
16 |
-
define("PMPRO_VERSION", "1.8");
|
17 |
|
18 |
//if the session has been started yet, start it (ignore if running from command line)
|
19 |
if(defined('STDIN') )
|
@@ -158,7 +158,7 @@ function pmpro_activation()
|
|
158 |
$role->add_cap( 'pmpro_advancedsettings' );
|
159 |
$role->add_cap( 'pmpro_addons' );
|
160 |
$role->add_cap( 'pmpro_memberslist' );
|
161 |
-
$role->add_cap( '
|
162 |
$role->add_cap( 'pmpro_reports' );
|
163 |
$role->add_cap( 'pmpro_orders' );
|
164 |
$role->add_cap( 'pmpro_orderscsv' );
|
3 |
Plugin Name: Paid Memberships Pro
|
4 |
Plugin URI: http://www.paidmembershipspro.com
|
5 |
Description: Plugin to Handle Memberships
|
6 |
+
Version: 1.8.1
|
7 |
Author: Stranger Studios
|
8 |
Author URI: http://www.strangerstudios.com
|
9 |
*/
|
13 |
*/
|
14 |
|
15 |
//version constant
|
16 |
+
define("PMPRO_VERSION", "1.8.1");
|
17 |
|
18 |
//if the session has been started yet, start it (ignore if running from command line)
|
19 |
if(defined('STDIN') )
|
158 |
$role->add_cap( 'pmpro_advancedsettings' );
|
159 |
$role->add_cap( 'pmpro_addons' );
|
160 |
$role->add_cap( 'pmpro_memberslist' );
|
161 |
+
$role->add_cap( 'pmpro_memberslistcsv' );
|
162 |
$role->add_cap( 'pmpro_reports' );
|
163 |
$role->add_cap( 'pmpro_orders' );
|
164 |
$role->add_cap( 'pmpro_orderscsv' );
|
readme.txt
CHANGED
@@ -3,7 +3,7 @@ Contributors: strangerstudios
|
|
3 |
Tags: memberships, membership, authorize.net, ecommerce, paypal, stripe, braintree, restrict access, restrict content, directory site, payflow
|
4 |
Requires at least: 3.5
|
5 |
Tested up to: 4.1.1
|
6 |
-
Stable tag: 1.8
|
7 |
|
8 |
The easiest way to GET PAID with your WordPress site. Flexible content control by Membership Level, Reports, Affiliates and Discounts
|
9 |
|
@@ -102,6 +102,15 @@ Not sure? You can find out by doing a bit a research.
|
|
102 |
4. Offer Membership Discounts with specific price rules (restricted by level, unique pricing for each level, # of uses, expiration date.)
|
103 |
|
104 |
== Changelog ==
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
105 |
|
106 |
= 1.8 =
|
107 |
* ENHANCEMENT: Payment gateway classes updated so all settings and checkout fields are processed via the gateway class file. This will make it easier to maintain, update, and add new gateways.
|
3 |
Tags: memberships, membership, authorize.net, ecommerce, paypal, stripe, braintree, restrict access, restrict content, directory site, payflow
|
4 |
Requires at least: 3.5
|
5 |
Tested up to: 4.1.1
|
6 |
+
Stable tag: 1.8.1
|
7 |
|
8 |
The easiest way to GET PAID with your WordPress site. Flexible content control by Membership Level, Reports, Affiliates and Discounts
|
9 |
|
102 |
4. Offer Membership Discounts with specific price rules (restricted by level, unique pricing for each level, # of uses, expiration date.)
|
103 |
|
104 |
== Changelog ==
|
105 |
+
= 1.8.1 =
|
106 |
+
* BUG: Fixed typos in pmpro_memberslist_csv and pmpro_orderscsv capabilities. (Thanks, Arnaud Devic)
|
107 |
+
* BUG: Only loading the Braintree API when using it now.
|
108 |
+
* BUG: Fixed fatal error that would occur at checkout if PayPal Standard were used with a discount code. (Thanks, John Zeiger)
|
109 |
+
* BUG: Fixed issue where discount codes would not work if billing address fields were hidden. (e.g. paying by PayPal or check)
|
110 |
+
* BUG: Fixed issue with the logic around sending emails when admin's change a member's level or expiration date. Admins will always get an email. Members will only get an email if the checkbox is checked.
|
111 |
+
* ENHANCEMENT: No longer showing check instructions at checkout if the level is free.
|
112 |
+
* ENHANCEMENT: Added pmpro_stripe_create_subscription filter. (Thanks, nickd32 on GitHub)
|
113 |
+
* ENHANCEMENT: Added Czech (cs_CZ) language files and support for using decimals as separators. (Thanks, Martin "shr3k" Kokeš on GitHub)
|
114 |
|
115 |
= 1.8 =
|
116 |
* ENHANCEMENT: Payment gateway classes updated so all settings and checkout fields are processed via the gateway class file. This will make it easier to maintain, update, and add new gateways.
|
services/applydiscountcode.php
CHANGED
@@ -73,6 +73,17 @@
|
|
73 |
jQuery('#<?php echo $msgfield?>').removeClass('pmpro_error');
|
74 |
jQuery('#<?php echo $msgfield?>').addClass('pmpro_success');
|
75 |
jQuery('#<?php echo $msgfield?>').addClass('pmpro_discount_code_msg');
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
76 |
|
77 |
jQuery('#other_discount_code_tr').hide();
|
78 |
jQuery('#other_discount_code_p').html('<a id="other_discount_code_a" href="javascript:void(0);"><?php _e('Click here to change your discount code', 'pmpro');?></a>.');
|
73 |
jQuery('#<?php echo $msgfield?>').removeClass('pmpro_error');
|
74 |
jQuery('#<?php echo $msgfield?>').addClass('pmpro_success');
|
75 |
jQuery('#<?php echo $msgfield?>').addClass('pmpro_discount_code_msg');
|
76 |
+
|
77 |
+
if (jQuery("#discount_code").length) {
|
78 |
+
jQuery('#discount_code').val('<?php echo $discount_code?>');
|
79 |
+
} else {
|
80 |
+
jQuery('<input>').attr({
|
81 |
+
type: 'hidden',
|
82 |
+
id: 'discount_code',
|
83 |
+
name: 'discount_code',
|
84 |
+
value: '<?php echo $discount_code?>'
|
85 |
+
}).appendTo('#pmpro_form');
|
86 |
+
}
|
87 |
|
88 |
jQuery('#other_discount_code_tr').hide();
|
89 |
jQuery('#other_discount_code_p').html('<a id="other_discount_code_a" href="javascript:void(0);"><?php _e('Click here to change your discount code', 'pmpro');?></a>.');
|