Easy Digital Downloads - Version 2.8.6

Version Description

Download this release

Release Info

Developer cklosows
Plugin Icon 128x128 Easy Digital Downloads
Version 2.8.6
Comparing to
See all releases

Code changes from version 2.8.5 to 2.8.6

easy-digital-downloads.php CHANGED
@@ -5,7 +5,7 @@
5
  * Description: The easiest way to sell digital products with WordPress.
6
  * Author: Easy Digital Downloads
7
  * Author URI: https://easydigitaldownloads.com
8
- * Version: 2.8.5
9
  * Text Domain: easy-digital-downloads
10
  * Domain Path: languages
11
  *
@@ -25,7 +25,7 @@
25
  * @package EDD
26
  * @category Core
27
  * @author Pippin Williamson
28
- * @version 2.8.4
29
  */
30
 
31
  // Exit if accessed directly.
@@ -206,7 +206,7 @@ final class Easy_Digital_Downloads {
206
 
207
  // Plugin version.
208
  if ( ! defined( 'EDD_VERSION' ) ) {
209
- define( 'EDD_VERSION', '2.8.5' );
210
  }
211
 
212
  // Plugin Folder Path.
5
  * Description: The easiest way to sell digital products with WordPress.
6
  * Author: Easy Digital Downloads
7
  * Author URI: https://easydigitaldownloads.com
8
+ * Version: 2.8.6
9
  * Text Domain: easy-digital-downloads
10
  * Domain Path: languages
11
  *
25
  * @package EDD
26
  * @category Core
27
  * @author Pippin Williamson
28
+ * @version 2.8.6
29
  */
30
 
31
  // Exit if accessed directly.
206
 
207
  // Plugin version.
208
  if ( ! defined( 'EDD_VERSION' ) ) {
209
+ define( 'EDD_VERSION', '2.8.6' );
210
  }
211
 
212
  // Plugin Folder Path.
includes/admin/settings/register-settings.php CHANGED
@@ -85,6 +85,7 @@ function edd_update_option( $key = '', $value = false ) {
85
  * @return boolean True if removed, false if not.
86
  */
87
  function edd_delete_option( $key = '' ) {
 
88
 
89
  // If no key, exit
90
  if ( empty( $key ) ){
@@ -101,6 +102,13 @@ function edd_delete_option( $key = '' ) {
101
 
102
  }
103
 
 
 
 
 
 
 
 
104
  $did_update = update_option( 'edd_settings', $options );
105
 
106
  // If it updated, let's update the global variable
85
  * @return boolean True if removed, false if not.
86
  */
87
  function edd_delete_option( $key = '' ) {
88
+ global $edd_options;
89
 
90
  // If no key, exit
91
  if ( empty( $key ) ){
102
 
103
  }
104
 
105
+ // Remove this option from the global EDD settings to the array_merge in edd_settings_sanitize() doesn't re-add it.
106
+ if( isset( $edd_options[ $key ] ) ) {
107
+
108
+ unset( $edd_options[ $key ] );
109
+
110
+ }
111
+
112
  $did_update = update_option( 'edd_settings', $options );
113
 
114
  // If it updated, let's update the global variable
includes/class-edd-discount.php CHANGED
@@ -1181,6 +1181,12 @@ class EDD_Discount {
1181
  * @return mixed bool|int false if data isn't passed and class not instantiated for creation, or post ID for the new discount.
1182
  */
1183
  public function add( $args ) {
 
 
 
 
 
 
1184
  $meta = $this->build_meta( $args );
1185
 
1186
  if ( ! empty( $this->ID ) && $this->exists() ) {
1181
  * @return mixed bool|int false if data isn't passed and class not instantiated for creation, or post ID for the new discount.
1182
  */
1183
  public function add( $args ) {
1184
+
1185
+ // If no code is provided, return early with false
1186
+ if ( empty( $args['code'] ) ) {
1187
+ return false;
1188
+ }
1189
+
1190
  $meta = $this->build_meta( $args );
1191
 
1192
  if ( ! empty( $this->ID ) && $this->exists() ) {
includes/discount-functions.php CHANGED
@@ -186,7 +186,10 @@ function edd_store_discount( $details, $discount_id = null ) {
186
  if ( null == $discount_id ) {
187
  $discount = new EDD_Discount;
188
  $discount->add( $details );
189
- return $discount->ID;
 
 
 
190
  } else {
191
  $discount = new EDD_Discount( $discount_id );
192
  $discount->update( $details );
186
  if ( null == $discount_id ) {
187
  $discount = new EDD_Discount;
188
  $discount->add( $details );
189
+
190
+ if ( ! empty( $discount->ID ) ) {
191
+ return $discount->ID;
192
+ }
193
  } else {
194
  $discount = new EDD_Discount( $discount_id );
195
  $discount->update( $details );
includes/gateways/amazon-payments.php CHANGED
@@ -161,6 +161,9 @@ final class EDD_Amazon_Payments {
161
  add_filter( 'edd_accepted_payment_icons', array( $this, 'register_payment_icon' ), 10, 1 );
162
  add_filter( 'edd_show_gateways', array( $this, 'maybe_hide_gateway_select' ) );
163
 
 
 
 
164
  if ( is_admin() ) {
165
  add_filter( 'edd_settings_sections_gateways', array( $this, 'register_gateway_section' ), 1, 1 );
166
  add_filter( 'edd_settings_gateways', array( $this, 'register_gateway_settings' ), 1, 1 );
161
  add_filter( 'edd_accepted_payment_icons', array( $this, 'register_payment_icon' ), 10, 1 );
162
  add_filter( 'edd_show_gateways', array( $this, 'maybe_hide_gateway_select' ) );
163
 
164
+ // Since the Amazon Gateway loads scripts on page, it needs the scripts to load in the header.
165
+ add_filter( 'edd_load_scripts_in_footer', '__return_false' );
166
+
167
  if ( is_admin() ) {
168
  add_filter( 'edd_settings_sections_gateways', array( $this, 'register_gateway_section' ), 1, 1 );
169
  add_filter( 'edd_settings_gateways', array( $this, 'register_gateway_settings' ), 1, 1 );
includes/payments/functions.php CHANGED
@@ -1591,7 +1591,7 @@ function edd_get_payment_note_html( $note, $payment_id = 0 ) {
1591
  $note_html = '<div class="edd-payment-note" id="edd-payment-note-' . $note->comment_ID . '">';
1592
  $note_html .='<p>';
1593
  $note_html .= '<strong>' . $user . '</strong>&nbsp;&ndash;&nbsp;' . date_i18n( $date_format, strtotime( $note->comment_date ) ) . '<br/>';
1594
- $note_html .= $note->comment_content;
1595
  $note_html .= '&nbsp;&ndash;&nbsp;<a href="' . esc_url( $delete_note_url ) . '" class="edd-delete-payment-note" data-note-id="' . absint( $note->comment_ID ) . '" data-payment-id="' . absint( $payment_id ) . '">' . __( 'Delete', 'easy-digital-downloads' ) . '</a>';
1596
  $note_html .= '</p>';
1597
  $note_html .= '</div>';
1591
  $note_html = '<div class="edd-payment-note" id="edd-payment-note-' . $note->comment_ID . '">';
1592
  $note_html .='<p>';
1593
  $note_html .= '<strong>' . $user . '</strong>&nbsp;&ndash;&nbsp;' . date_i18n( $date_format, strtotime( $note->comment_date ) ) . '<br/>';
1594
+ $note_html .= make_clickable( $note->comment_content );
1595
  $note_html .= '&nbsp;&ndash;&nbsp;<a href="' . esc_url( $delete_note_url ) . '" class="edd-delete-payment-note" data-note-id="' . absint( $note->comment_ID ) . '" data-payment-id="' . absint( $payment_id ) . '">' . __( 'Delete', 'easy-digital-downloads' ) . '</a>';
1596
  $note_html .= '</p>';
1597
  $note_html .= '</div>';
includes/process-purchase.php CHANGED
@@ -847,12 +847,12 @@ function edd_get_purchase_form_user( $valid_data = array() ) {
847
 
848
  // Get the user's billing address details
849
  $user['address'] = array();
850
- $user['address']['line1'] = ! empty( $_POST['card_address'] ) ? sanitize_text_field( $_POST['card_address'] ) : false;
851
- $user['address']['line2'] = ! empty( $_POST['card_address_2'] ) ? sanitize_text_field( $_POST['card_address_2'] ) : false;
852
- $user['address']['city'] = ! empty( $_POST['card_city'] ) ? sanitize_text_field( $_POST['card_city'] ) : false;
853
- $user['address']['state'] = ! empty( $_POST['card_state'] ) ? sanitize_text_field( $_POST['card_state'] ) : false;
854
- $user['address']['country'] = ! empty( $_POST['billing_country'] ) ? sanitize_text_field( $_POST['billing_country'] ) : false;
855
- $user['address']['zip'] = ! empty( $_POST['card_zip'] ) ? sanitize_text_field( $_POST['card_zip'] ) : false;
856
 
857
  if ( empty( $user['address']['country'] ) )
858
  $user['address'] = false; // Country will always be set if address fields are present
847
 
848
  // Get the user's billing address details
849
  $user['address'] = array();
850
+ $user['address']['line1'] = ! empty( $_POST['card_address'] ) ? sanitize_text_field( $_POST['card_address'] ) : '';
851
+ $user['address']['line2'] = ! empty( $_POST['card_address_2'] ) ? sanitize_text_field( $_POST['card_address_2'] ) : '';
852
+ $user['address']['city'] = ! empty( $_POST['card_city'] ) ? sanitize_text_field( $_POST['card_city'] ) : '';
853
+ $user['address']['state'] = ! empty( $_POST['card_state'] ) ? sanitize_text_field( $_POST['card_state'] ) : '';
854
+ $user['address']['country'] = ! empty( $_POST['billing_country'] ) ? sanitize_text_field( $_POST['billing_country'] ) : '';
855
+ $user['address']['zip'] = ! empty( $_POST['card_zip'] ) ? sanitize_text_field( $_POST['card_zip'] ) : '';
856
 
857
  if ( empty( $user['address']['country'] ) )
858
  $user['address'] = false; // Country will always be set if address fields are present
includes/scripts.php CHANGED
@@ -39,17 +39,19 @@ function edd_load_scripts() {
39
  $has_purchase_links = true;
40
  }
41
 
 
 
42
  if ( edd_is_checkout() ) {
43
  if ( edd_is_cc_verify_enabled() ) {
44
- wp_register_script( 'creditCardValidator', $js_dir . 'jquery.creditCardValidator' . $suffix . '.js', array( 'jquery' ), EDD_VERSION, true );
45
 
46
  // Registered so gateways can enqueue it when they support the space formatting. wp_enqueue_script( 'jQuery.payment' );
47
- wp_register_script( 'jQuery.payment', $js_dir . 'jquery.payment.min.js', array( 'jquery' ), EDD_VERSION, true );
48
 
49
  wp_enqueue_script( 'creditCardValidator' );
50
  }
51
 
52
- wp_register_script( 'edd-checkout-global', $js_dir . 'edd-checkout-global' . $suffix . '.js', array( 'jquery' ), EDD_VERSION, true );
53
  wp_enqueue_script( 'edd-checkout-global' );
54
 
55
  wp_localize_script( 'edd-checkout-global', 'edd_global_vars', apply_filters( 'edd_global_checkout_script_vars', array(
@@ -75,7 +77,7 @@ function edd_load_scripts() {
75
 
76
  // Load AJAX scripts, if enabled
77
  if ( ! edd_is_ajax_disabled() ) {
78
- wp_register_script( 'edd-ajax', $js_dir . 'edd-ajax' . $suffix . '.js', array( 'jquery' ), EDD_VERSION, true );
79
  wp_enqueue_script( 'edd-ajax' );
80
 
81
  wp_localize_script( 'edd-ajax', 'edd_scripts', apply_filters( 'edd_ajax_script_vars', array(
@@ -366,3 +368,13 @@ function edd_load_head_styles() {
366
  <?php
367
  }
368
  add_action( 'wp_head', 'edd_load_head_styles' );
 
 
 
 
 
 
 
 
 
 
39
  $has_purchase_links = true;
40
  }
41
 
42
+ $in_footer = edd_scripts_in_footer();
43
+
44
  if ( edd_is_checkout() ) {
45
  if ( edd_is_cc_verify_enabled() ) {
46
+ wp_register_script( 'creditCardValidator', $js_dir . 'jquery.creditCardValidator' . $suffix . '.js', array( 'jquery' ), EDD_VERSION, $in_footer );
47
 
48
  // Registered so gateways can enqueue it when they support the space formatting. wp_enqueue_script( 'jQuery.payment' );
49
+ wp_register_script( 'jQuery.payment', $js_dir . 'jquery.payment.min.js', array( 'jquery' ), EDD_VERSION, $in_footer );
50
 
51
  wp_enqueue_script( 'creditCardValidator' );
52
  }
53
 
54
+ wp_register_script( 'edd-checkout-global', $js_dir . 'edd-checkout-global' . $suffix . '.js', array( 'jquery' ), EDD_VERSION, $in_footer );
55
  wp_enqueue_script( 'edd-checkout-global' );
56
 
57
  wp_localize_script( 'edd-checkout-global', 'edd_global_vars', apply_filters( 'edd_global_checkout_script_vars', array(
77
 
78
  // Load AJAX scripts, if enabled
79
  if ( ! edd_is_ajax_disabled() ) {
80
+ wp_register_script( 'edd-ajax', $js_dir . 'edd-ajax' . $suffix . '.js', array( 'jquery' ), EDD_VERSION, $in_footer );
81
  wp_enqueue_script( 'edd-ajax' );
82
 
83
  wp_localize_script( 'edd-ajax', 'edd_scripts', apply_filters( 'edd_ajax_script_vars', array(
368
  <?php
369
  }
370
  add_action( 'wp_head', 'edd_load_head_styles' );
371
+
372
+ /**
373
+ * Determine if the frontend scripts should be loaded in the footer or header (default: footer)
374
+ *
375
+ * @since 2.8.6
376
+ * @return mixed
377
+ */
378
+ function edd_scripts_in_footer() {
379
+ return apply_filters( 'edd_load_scripts_in_footer', true );
380
+ }
languages/easy-digital-downloads.pot CHANGED
@@ -2,9 +2,9 @@
2
  # This file is distributed under the same license as the Easy Digital Downloads package.
3
  msgid ""
4
  msgstr ""
5
- "Project-Id-Version: Easy Digital Downloads 2.8.5\n"
6
  "Report-Msgid-Bugs-To: https://easydigitaldownloads.com/\n"
7
- "POT-Creation-Date: 2017-09-07 22:01:41+00:00\n"
8
  "MIME-Version: 1.0\n"
9
  "Content-Type: text/plain; charset=utf-8\n"
10
  "Content-Transfer-Encoding: 8bit\n"
@@ -173,7 +173,7 @@ msgstr ""
173
 
174
  #: includes/admin/admin-pages.php:43 includes/admin/plugins.php:57
175
  #: includes/admin/settings/contextual-help.php:87
176
- #: includes/admin/settings/register-settings.php:1202
177
  msgid "Extensions"
178
  msgstr ""
179
 
@@ -598,7 +598,7 @@ msgid "City"
598
  msgstr ""
599
 
600
  #: includes/admin/customers/customers.php:269
601
- #: includes/admin/settings/register-settings.php:2000
602
  #: includes/admin/tools.php:690 includes/checkout/template.php:435
603
  #: templates/shortcode-profile-editor.php:171
604
  msgid "State / Province"
@@ -700,7 +700,7 @@ msgstr ""
700
  #: includes/admin/downloads/metabox.php:698
701
  #: includes/admin/downloads/metabox.php:823
702
  #: includes/admin/payments/view-order-details.php:490
703
- #: includes/admin/settings/register-settings.php:2003 includes/scripts.php:224
704
  #: templates/checkout_cart.php:57 templates/checkout_cart.php:75
705
  #: templates/shortcode-profile-editor.php:123
706
  msgid "Remove"
@@ -1169,12 +1169,12 @@ msgstr ""
1169
 
1170
  #: includes/admin/discounts/contextual-help.php:38
1171
  #: includes/admin/settings/contextual-help.php:42
1172
- #: includes/admin/settings/register-settings.php:1195
1173
- #: includes/admin/settings/register-settings.php:1250
1174
- #: includes/admin/settings/register-settings.php:1255
1175
- #: includes/admin/settings/register-settings.php:1259
1176
- #: includes/admin/settings/register-settings.php:1264
1177
  #: includes/admin/settings/register-settings.php:1267
 
 
1178
  #: includes/admin/tools.php:68
1179
  msgid "General"
1180
  msgstr ""
@@ -1518,7 +1518,7 @@ msgstr ""
1518
  msgid "Price ID: %s"
1519
  msgstr ""
1520
 
1521
- #: includes/admin/downloads/metabox.php:433 includes/scripts.php:231
1522
  msgid "Show advanced settings"
1523
  msgstr ""
1524
 
@@ -1678,7 +1678,7 @@ msgid ""
1678
  msgstr ""
1679
 
1680
  #: includes/admin/downloads/metabox.php:1017
1681
- #: includes/admin/settings/register-settings.php:719
1682
  #: includes/admin/thickbox.php:59 includes/checkout/template.php:891
1683
  #: includes/shortcodes.php:49 includes/template-functions.php:67
1684
  msgid "Purchase"
@@ -1719,13 +1719,13 @@ msgid ""
1719
  msgstr ""
1720
 
1721
  #: includes/admin/downloads/metabox.php:1091
1722
- #: includes/admin/settings/register-settings.php:733
1723
  #: includes/admin/thickbox.php:97
1724
  msgid "Add to Cart"
1725
  msgstr ""
1726
 
1727
  #: includes/admin/downloads/metabox.php:1092
1728
- #: includes/admin/settings/register-settings.php:740 includes/shortcodes.php:47
1729
  #: includes/template-functions.php:67
1730
  msgid "Buy Now"
1731
  msgstr ""
@@ -2156,7 +2156,7 @@ msgstr[0] ""
2156
  msgstr[1] ""
2157
 
2158
  #: includes/admin/payments/view-order-details.php:152
2159
- #: includes/admin/settings/register-settings.php:695
2160
  msgid "None"
2161
  msgstr ""
2162
 
@@ -2323,7 +2323,7 @@ msgid "Street Address Line 2:"
2323
  msgstr ""
2324
 
2325
  #: includes/admin/payments/view-order-details.php:732
2326
- #: includes/admin/settings/register-settings.php:311
2327
  msgid "Select a country"
2328
  msgstr ""
2329
 
@@ -2332,7 +2332,7 @@ msgid "Type to search all Countries"
2332
  msgstr ""
2333
 
2334
  #: includes/admin/payments/view-order-details.php:753
2335
- #: includes/admin/settings/register-settings.php:319
2336
  msgid "Select a state"
2337
  msgstr ""
2338
 
@@ -2519,7 +2519,7 @@ msgstr ""
2519
 
2520
  #: includes/admin/reporting/class-export-payments.php:70
2521
  #: includes/admin/reporting/export/class-batch-export-payments.php:50
2522
- #: includes/admin/settings/register-settings.php:1999
2523
  #: includes/admin/tools.php:708 templates/shortcode-profile-editor.php:162
2524
  msgid "Country"
2525
  msgstr ""
@@ -2735,7 +2735,7 @@ msgid "Files"
2735
  msgstr ""
2736
 
2737
  #: includes/admin/reporting/export/class-batch-export-downloads.php:54
2738
- #: includes/admin/settings/register-settings.php:764
2739
  #: includes/admin/tools.php:891
2740
  msgid "File Download Limit"
2741
  msgstr ""
@@ -2785,8 +2785,8 @@ msgid "Products (Verbose)"
2785
  msgstr ""
2786
 
2787
  #: includes/admin/reporting/export/class-batch-export-payments.php:63
2788
- #: includes/admin/settings/register-settings.php:340
2789
- #: includes/admin/settings/register-settings.php:1251
2790
  msgid "Currency"
2791
  msgstr ""
2792
 
@@ -2910,7 +2910,7 @@ msgid "Refresh Reports"
2910
  msgstr ""
2911
 
2912
  #: includes/admin/reporting/logs.php:144
2913
- #: includes/admin/settings/register-settings.php:1277
2914
  msgid "File Downloads"
2915
  msgstr ""
2916
 
@@ -2940,7 +2940,7 @@ msgstr ""
2940
 
2941
  #: includes/admin/reporting/reports.php:59
2942
  #: includes/admin/settings/contextual-help.php:71
2943
- #: includes/admin/settings/register-settings.php:1199
2944
  msgid "Taxes"
2945
  msgstr ""
2946
 
@@ -3082,8 +3082,8 @@ msgid ""
3082
  msgstr ""
3083
 
3084
  #: includes/admin/settings/contextual-help.php:48
3085
- #: includes/admin/settings/register-settings.php:408
3086
- #: includes/admin/settings/register-settings.php:1196
3087
  msgid "Payment Gateways"
3088
  msgstr ""
3089
 
@@ -3112,7 +3112,7 @@ msgid ""
3112
  msgstr ""
3113
 
3114
  #: includes/admin/settings/contextual-help.php:57
3115
- #: includes/admin/settings/register-settings.php:1197
3116
  msgid "Emails"
3117
  msgstr ""
3118
 
@@ -3132,7 +3132,7 @@ msgid ""
3132
  msgstr ""
3133
 
3134
  #: includes/admin/settings/contextual-help.php:65
3135
- #: includes/admin/settings/register-settings.php:1198
3136
  msgid "Styles"
3137
  msgstr ""
3138
 
@@ -3215,7 +3215,7 @@ msgid ""
3215
  msgstr ""
3216
 
3217
  #: includes/admin/settings/contextual-help.php:93
3218
- #: includes/admin/settings/register-settings.php:1274
3219
  msgid "Miscellaneous"
3220
  msgstr ""
3221
 
@@ -3229,15 +3229,15 @@ msgstr ""
3229
  msgid "A description of all the options are provided beside their input boxes."
3230
  msgstr ""
3231
 
3232
- #: includes/admin/settings/register-settings.php:243
3233
  msgid "Pages"
3234
  msgstr ""
3235
 
3236
- #: includes/admin/settings/register-settings.php:246
3237
  msgid "Page Settings"
3238
  msgstr ""
3239
 
3240
- #: includes/admin/settings/register-settings.php:247
3241
  msgid ""
3242
  "Easy Digital Downloads uses the pages below for handling the display of "
3243
  "checkout, purchase confirmation, purchase history, and purchase failures. "
@@ -3246,105 +3246,105 @@ msgid ""
3246
  "in the page content area."
3247
  msgstr ""
3248
 
3249
- #: includes/admin/settings/register-settings.php:251
3250
  msgid "Checkout Page"
3251
  msgstr ""
3252
 
3253
- #: includes/admin/settings/register-settings.php:252
3254
  msgid ""
3255
  "This is the checkout page where buyers will complete their purchases. The "
3256
  "[download_checkout] shortcode must be on this page."
3257
  msgstr ""
3258
 
3259
- #: includes/admin/settings/register-settings.php:256
3260
- #: includes/admin/settings/register-settings.php:265
3261
- #: includes/admin/settings/register-settings.php:274
3262
- #: includes/admin/settings/register-settings.php:283
3263
- #: includes/admin/settings/register-settings.php:294
3264
  msgid "Select a page"
3265
  msgstr ""
3266
 
3267
- #: includes/admin/settings/register-settings.php:260
3268
  msgid "Success Page"
3269
  msgstr ""
3270
 
3271
- #: includes/admin/settings/register-settings.php:261
3272
  msgid ""
3273
  "This is the page buyers are sent to after completing their purchases. The "
3274
  "[edd_receipt] shortcode should be on this page."
3275
  msgstr ""
3276
 
3277
- #: includes/admin/settings/register-settings.php:269
3278
  msgid "Failed Transaction Page"
3279
  msgstr ""
3280
 
3281
- #: includes/admin/settings/register-settings.php:270
3282
  msgid ""
3283
  "This is the page buyers are sent to if their transaction is cancelled or "
3284
  "fails."
3285
  msgstr ""
3286
 
3287
- #: includes/admin/settings/register-settings.php:278
3288
  msgid "Purchase History Page"
3289
  msgstr ""
3290
 
3291
- #: includes/admin/settings/register-settings.php:279
3292
  msgid ""
3293
  "This page shows a complete purchase history for the current user, including "
3294
  "download links. The [purchase_history] shortcode should be on this page."
3295
  msgstr ""
3296
 
3297
- #: includes/admin/settings/register-settings.php:287
3298
  msgid "Login Redirect Page"
3299
  msgstr ""
3300
 
3301
- #: includes/admin/settings/register-settings.php:289
3302
  msgid ""
3303
  "If a customer logs in using the [edd_login] shortcode, this is the page "
3304
  "they will be redirected to. Note, this can be overridden using the redirect "
3305
  "attribute in the shortcode like this: [edd_login redirect=\"%s\"]."
3306
  msgstr ""
3307
 
3308
- #: includes/admin/settings/register-settings.php:298
3309
  msgid "Store Location"
3310
  msgstr ""
3311
 
3312
- #: includes/admin/settings/register-settings.php:301
3313
  msgid "Store Location Settings"
3314
  msgstr ""
3315
 
3316
- #: includes/admin/settings/register-settings.php:302
3317
  msgid ""
3318
  "Easy Digital Downloads will use the following Country and State to pre-fill "
3319
  "fields at checkout. This will also pre-calculate any taxes defined if the "
3320
  "location below has taxes enabled."
3321
  msgstr ""
3322
 
3323
- #: includes/admin/settings/register-settings.php:306
3324
  msgid "Base Country"
3325
  msgstr ""
3326
 
3327
- #: includes/admin/settings/register-settings.php:307
3328
  msgid "Where does your store operate from?"
3329
  msgstr ""
3330
 
3331
- #: includes/admin/settings/register-settings.php:315
3332
  msgid "Base State / Province"
3333
  msgstr ""
3334
 
3335
- #: includes/admin/settings/register-settings.php:316
3336
  msgid "What state / province does your store operate from?"
3337
  msgstr ""
3338
 
3339
- #: includes/admin/settings/register-settings.php:323
3340
  msgid "Tracking"
3341
  msgstr ""
3342
 
3343
- #: includes/admin/settings/register-settings.php:329
3344
  msgid "Allow Usage Tracking?"
3345
  msgstr ""
3346
 
3347
- #: includes/admin/settings/register-settings.php:331
3348
  msgid ""
3349
  "Allow Easy Digital Downloads to anonymously track how this plugin is used "
3350
  "and help us make the plugin better. Opt-in to tracking and our newsletter "
@@ -3353,357 +3353,357 @@ msgid ""
3353
  "sensitive data is tracked."
3354
  msgstr ""
3355
 
3356
- #: includes/admin/settings/register-settings.php:341
3357
  msgid ""
3358
  "Choose your currency. Note that some payment gateways have currency "
3359
  "restrictions."
3360
  msgstr ""
3361
 
3362
- #: includes/admin/settings/register-settings.php:348
3363
  msgid "Currency Position"
3364
  msgstr ""
3365
 
3366
- #: includes/admin/settings/register-settings.php:349
3367
  msgid "Choose the location of the currency sign."
3368
  msgstr ""
3369
 
3370
- #: includes/admin/settings/register-settings.php:352
3371
  msgid "Before - $10"
3372
  msgstr ""
3373
 
3374
- #: includes/admin/settings/register-settings.php:353
3375
  msgid "After - 10$"
3376
  msgstr ""
3377
 
3378
- #: includes/admin/settings/register-settings.php:358
3379
  msgid "Thousands Separator"
3380
  msgstr ""
3381
 
3382
- #: includes/admin/settings/register-settings.php:359
3383
  msgid "The symbol (usually , or .) to separate thousands."
3384
  msgstr ""
3385
 
3386
- #: includes/admin/settings/register-settings.php:366
3387
  msgid "Decimal Separator"
3388
  msgstr ""
3389
 
3390
- #: includes/admin/settings/register-settings.php:367
3391
  msgid "The symbol (usually , or .) to separate decimal points."
3392
  msgstr ""
3393
 
3394
- #: includes/admin/settings/register-settings.php:376
3395
- #: includes/admin/settings/register-settings.php:1252
3396
  msgid "API"
3397
  msgstr ""
3398
 
3399
- #: includes/admin/settings/register-settings.php:379
3400
  msgid "API Settings"
3401
  msgstr ""
3402
 
3403
- #: includes/admin/settings/register-settings.php:380
3404
  msgid ""
3405
  "The Easy Digital Downloads REST API provides access to store data through "
3406
  "our API endpoints. Enable this setting if you would like all user accounts "
3407
  "to be able to generate their own API keys."
3408
  msgstr ""
3409
 
3410
- #: includes/admin/settings/register-settings.php:384
3411
  msgid "Allow User Keys"
3412
  msgstr ""
3413
 
3414
- #: includes/admin/settings/register-settings.php:385
3415
  msgid ""
3416
  "Check this box to allow all users to generate API keys. Users with the "
3417
  "'manage_shop_settings' capability are always allowed to generate keys."
3418
  msgstr ""
3419
 
3420
- #: includes/admin/settings/register-settings.php:390
3421
  msgid ""
3422
  "Visit the <a href=\"%s\" target=\"_blank\">REST API documentation</a> for "
3423
  "further information."
3424
  msgstr ""
3425
 
3426
- #: includes/admin/settings/register-settings.php:402
3427
  msgid "Test Mode"
3428
  msgstr ""
3429
 
3430
- #: includes/admin/settings/register-settings.php:403
3431
  msgid ""
3432
  "While in test mode no live transactions are processed. To fully use test "
3433
  "mode, you must have a sandbox (test) account for the payment gateway you "
3434
  "are testing."
3435
  msgstr ""
3436
 
3437
- #: includes/admin/settings/register-settings.php:409
3438
  msgid "Choose the payment gateways you want to enable."
3439
  msgstr ""
3440
 
3441
- #: includes/admin/settings/register-settings.php:415
3442
  msgid "Default Gateway"
3443
  msgstr ""
3444
 
3445
- #: includes/admin/settings/register-settings.php:416
3446
  msgid "This gateway will be loaded automatically with the checkout page."
3447
  msgstr ""
3448
 
3449
- #: includes/admin/settings/register-settings.php:422
3450
  msgid "Accepted Payment Method Icons"
3451
  msgstr ""
3452
 
3453
- #: includes/admin/settings/register-settings.php:423
3454
  msgid "Display icons for the selected payment methods."
3455
  msgstr ""
3456
 
3457
- #: includes/admin/settings/register-settings.php:423
3458
  msgid ""
3459
  "You will also need to configure your gateway settings if you are accepting "
3460
  "credit cards."
3461
  msgstr ""
3462
 
3463
- #: includes/admin/settings/register-settings.php:443
3464
  msgid "Email Template"
3465
  msgstr ""
3466
 
3467
- #: includes/admin/settings/register-settings.php:444
3468
  msgid ""
3469
  "Choose a template. Click \"Save Changes\" then \"Preview Purchase Receipt\" "
3470
  "to see the new template."
3471
  msgstr ""
3472
 
3473
- #: includes/admin/settings/register-settings.php:450
3474
  msgid "Logo"
3475
  msgstr ""
3476
 
3477
- #: includes/admin/settings/register-settings.php:451
3478
  msgid ""
3479
  "Upload or choose a logo to be displayed at the top of the purchase receipt "
3480
  "emails. Displayed on HTML emails only."
3481
  msgstr ""
3482
 
3483
- #: includes/admin/settings/register-settings.php:456
3484
  msgid "From Name"
3485
  msgstr ""
3486
 
3487
- #: includes/admin/settings/register-settings.php:457
3488
  msgid ""
3489
  "The name purchase receipts are said to come from. This should probably be "
3490
  "your site or shop name."
3491
  msgstr ""
3492
 
3493
- #: includes/admin/settings/register-settings.php:463
3494
  msgid "From Email"
3495
  msgstr ""
3496
 
3497
- #: includes/admin/settings/register-settings.php:464
3498
  msgid ""
3499
  "Email to send purchase receipts from. This will act as the \"from\" and "
3500
  "\"reply-to\" address."
3501
  msgstr ""
3502
 
3503
- #: includes/admin/settings/register-settings.php:484
3504
  msgid "Purchase Email Subject"
3505
  msgstr ""
3506
 
3507
- #: includes/admin/settings/register-settings.php:485
3508
  msgid "Enter the subject line for the purchase receipt email."
3509
  msgstr ""
3510
 
3511
- #: includes/admin/settings/register-settings.php:487
3512
- #: includes/admin/settings/register-settings.php:494
3513
- #: includes/admin/settings/register-settings.php:498
3514
  #: includes/emails/functions.php:45 includes/emails/functions.php:49
3515
  #: includes/emails/functions.php:87 includes/emails/functions.php:91
3516
  #: includes/emails/template.php:141
3517
  msgid "Purchase Receipt"
3518
  msgstr ""
3519
 
3520
- #: includes/admin/settings/register-settings.php:491
3521
  msgid "Purchase Email Heading"
3522
  msgstr ""
3523
 
3524
- #: includes/admin/settings/register-settings.php:492
3525
  msgid "Enter the heading for the purchase receipt email."
3526
  msgstr ""
3527
 
3528
- #: includes/admin/settings/register-settings.php:499
3529
  msgid ""
3530
  "Enter the text that is sent as purchase receipt email to users after "
3531
  "completion of a successful purchase. HTML is accepted. Available template "
3532
  "tags:"
3533
  msgstr ""
3534
 
3535
- #: includes/admin/settings/register-settings.php:501
3536
  #: includes/emails/template.php:159
3537
  msgid "Dear"
3538
  msgstr ""
3539
 
3540
- #: includes/admin/settings/register-settings.php:501
3541
  #: includes/emails/template.php:160
3542
  msgid ""
3543
  "Thank you for your purchase. Please click on the link(s) below to download "
3544
  "your files."
3545
  msgstr ""
3546
 
3547
- #: includes/admin/settings/register-settings.php:507
3548
  msgid "Sale Notification Subject"
3549
  msgstr ""
3550
 
3551
- #: includes/admin/settings/register-settings.php:508
3552
  msgid "Enter the subject line for the sale notification email."
3553
  msgstr ""
3554
 
3555
- #: includes/admin/settings/register-settings.php:514
3556
  msgid "Sale Notification"
3557
  msgstr ""
3558
 
3559
- #: includes/admin/settings/register-settings.php:515
3560
  msgid ""
3561
  "Enter the text that is sent as sale notification email after completion of "
3562
  "a purchase. HTML is accepted. Available template tags:"
3563
  msgstr ""
3564
 
3565
- #: includes/admin/settings/register-settings.php:521
3566
  msgid "Sale Notification Emails"
3567
  msgstr ""
3568
 
3569
- #: includes/admin/settings/register-settings.php:522
3570
  msgid ""
3571
  "Enter the email address(es) that should receive a notification anytime a "
3572
  "sale is made, one per line."
3573
  msgstr ""
3574
 
3575
- #: includes/admin/settings/register-settings.php:528
3576
  msgid "Disable Admin Notifications"
3577
  msgstr ""
3578
 
3579
- #: includes/admin/settings/register-settings.php:529
3580
  msgid "Check this box if you do not want to receive sales notification emails."
3581
  msgstr ""
3582
 
3583
- #: includes/admin/settings/register-settings.php:541
3584
  msgid "Disable Styles"
3585
  msgstr ""
3586
 
3587
- #: includes/admin/settings/register-settings.php:542
3588
  msgid ""
3589
  "Check this to disable all included styling of buttons, checkout fields, and "
3590
  "all other elements."
3591
  msgstr ""
3592
 
3593
- #: includes/admin/settings/register-settings.php:544
3594
  msgid "Disabling Styles"
3595
  msgstr ""
3596
 
3597
- #: includes/admin/settings/register-settings.php:545
3598
  msgid ""
3599
  "If your theme has a complete custom CSS file for Easy Digital Downloads, "
3600
  "you may wish to disable our default styles. This is not recommended unless "
3601
  "your sure your theme has a complete custom CSS."
3602
  msgstr ""
3603
 
3604
- #: includes/admin/settings/register-settings.php:549
3605
  msgid "Buttons"
3606
  msgstr ""
3607
 
3608
- #: includes/admin/settings/register-settings.php:550
3609
  msgid "Options for add to cart and purchase buttons"
3610
  msgstr ""
3611
 
3612
- #: includes/admin/settings/register-settings.php:555
3613
  msgid "Default Button Style"
3614
  msgstr ""
3615
 
3616
- #: includes/admin/settings/register-settings.php:556
3617
  msgid "Choose the style you want to use for the buttons."
3618
  msgstr ""
3619
 
3620
- #: includes/admin/settings/register-settings.php:562
3621
  msgid "Default Button Color"
3622
  msgstr ""
3623
 
3624
- #: includes/admin/settings/register-settings.php:563
3625
  msgid "Choose the color you want to use for the buttons."
3626
  msgstr ""
3627
 
3628
- #: includes/admin/settings/register-settings.php:576
3629
  msgid "Need help?"
3630
  msgstr ""
3631
 
3632
- #: includes/admin/settings/register-settings.php:577
3633
  msgid ""
3634
  "Visit the <a href=\"%s\" target=\"_blank\">Tax setup documentation</a> for "
3635
  "further information. If you need VAT support, there are options listed on "
3636
  "the documentation page."
3637
  msgstr ""
3638
 
3639
- #: includes/admin/settings/register-settings.php:582
3640
  msgid "Enable Taxes"
3641
  msgstr ""
3642
 
3643
- #: includes/admin/settings/register-settings.php:583
3644
  msgid "Check this to enable taxes on purchases."
3645
  msgstr ""
3646
 
3647
- #: includes/admin/settings/register-settings.php:585
3648
  msgid "Enabling Taxes"
3649
  msgstr ""
3650
 
3651
- #: includes/admin/settings/register-settings.php:586
3652
  msgid ""
3653
  "With taxes enabled, Easy Digital Downloads will use the rules below to "
3654
  "charge tax to customers. With taxes enabled, customers are required to "
3655
  "input their address on checkout so that taxes can be properly calculated."
3656
  msgstr ""
3657
 
3658
- #: includes/admin/settings/register-settings.php:590
3659
  msgid "Tax Rates"
3660
  msgstr ""
3661
 
3662
- #: includes/admin/settings/register-settings.php:591
3663
  msgid ""
3664
  "Add tax rates for specific regions. Enter a percentage, such as 6.5 for "
3665
  "6.5%."
3666
  msgstr ""
3667
 
3668
- #: includes/admin/settings/register-settings.php:596
3669
- #: includes/admin/settings/register-settings.php:600
3670
  msgid "Fallback Tax Rate"
3671
  msgstr ""
3672
 
3673
- #: includes/admin/settings/register-settings.php:597
3674
  msgid ""
3675
  "Customers not in a specific rate will be charged this tax rate. Enter a "
3676
  "percentage, such as 6.5 for 6.5%. "
3677
  msgstr ""
3678
 
3679
- #: includes/admin/settings/register-settings.php:601
3680
  msgid ""
3681
  "If the customer's address fails to meet the above tax rules, you can define "
3682
  "a `default` tax rate to be applied to all other customers. Enter a "
3683
  "percentage, such as 6.5 for 6.5%."
3684
  msgstr ""
3685
 
3686
- #: includes/admin/settings/register-settings.php:605
3687
  msgid "Prices entered with tax"
3688
  msgstr ""
3689
 
3690
- #: includes/admin/settings/register-settings.php:606
3691
  msgid "This option affects how you enter prices."
3692
  msgstr ""
3693
 
3694
- #: includes/admin/settings/register-settings.php:610
3695
  msgid "Yes, I will enter prices inclusive of tax"
3696
  msgstr ""
3697
 
3698
- #: includes/admin/settings/register-settings.php:611
3699
  msgid "No, I will enter prices exclusive of tax"
3700
  msgstr ""
3701
 
3702
- #: includes/admin/settings/register-settings.php:613
3703
  msgid "Prices Inclusive of Tax"
3704
  msgstr ""
3705
 
3706
- #: includes/admin/settings/register-settings.php:614
3707
  msgid ""
3708
  "When using prices inclusive of tax, you will be entering your prices as the "
3709
  "total amount you want a customer to pay for the download, including tax. "
@@ -3711,197 +3711,197 @@ msgid ""
3711
  "for the defined total price."
3712
  msgstr ""
3713
 
3714
- #: includes/admin/settings/register-settings.php:618
3715
  msgid "Display Tax Rate on Prices"
3716
  msgstr ""
3717
 
3718
- #: includes/admin/settings/register-settings.php:619
3719
  msgid "Some countries require a notice when product prices include tax."
3720
  msgstr ""
3721
 
3722
- #: includes/admin/settings/register-settings.php:624
3723
  msgid "Display during checkout"
3724
  msgstr ""
3725
 
3726
- #: includes/admin/settings/register-settings.php:625
3727
  msgid "Should prices on the checkout page be shown with or without tax?"
3728
  msgstr ""
3729
 
3730
- #: includes/admin/settings/register-settings.php:629
3731
  msgid "Including tax"
3732
  msgstr ""
3733
 
3734
- #: includes/admin/settings/register-settings.php:630
3735
  msgid "Excluding tax"
3736
  msgstr ""
3737
 
3738
- #: includes/admin/settings/register-settings.php:632
3739
  msgid "Taxes Displayed for Products on Checkout"
3740
  msgstr ""
3741
 
3742
- #: includes/admin/settings/register-settings.php:633
3743
  msgid ""
3744
  "This option will determine whether the product price displays with or "
3745
  "without tax on checkout."
3746
  msgstr ""
3747
 
3748
- #: includes/admin/settings/register-settings.php:651
3749
- #: includes/admin/settings/register-settings.php:654
3750
  msgid "Redirect to Checkout"
3751
  msgstr ""
3752
 
3753
- #: includes/admin/settings/register-settings.php:652
3754
  msgid "Immediately redirect to checkout after adding an item to the cart?"
3755
  msgstr ""
3756
 
3757
- #: includes/admin/settings/register-settings.php:655
3758
  msgid ""
3759
  "When enabled, once an item has been added to the cart, the customer will be "
3760
  "redirected directly to your checkout page. This is useful for stores that "
3761
  "sell single items."
3762
  msgstr ""
3763
 
3764
- #: includes/admin/settings/register-settings.php:659
3765
  msgid "Cart Item Quantities"
3766
  msgstr ""
3767
 
3768
- #: includes/admin/settings/register-settings.php:660
3769
  msgid ""
3770
  "Allow quantities to be adjusted when adding %s to the cart, and while "
3771
  "viewing the checkout cart."
3772
  msgstr ""
3773
 
3774
- #: includes/admin/settings/register-settings.php:665
3775
  msgid "Remove Data on Uninstall?"
3776
  msgstr ""
3777
 
3778
- #: includes/admin/settings/register-settings.php:666
3779
  msgid ""
3780
  "Check this box if you would like EDD to completely remove all of its data "
3781
  "when the plugin is deleted."
3782
  msgstr ""
3783
 
3784
- #: includes/admin/settings/register-settings.php:673
3785
  msgid "Enforce SSL on Checkout"
3786
  msgstr ""
3787
 
3788
- #: includes/admin/settings/register-settings.php:674
3789
  msgid ""
3790
  "Check this to force users to be redirected to the secure checkout page. You "
3791
  "must have an SSL certificate installed to use this option."
3792
  msgstr ""
3793
 
3794
- #: includes/admin/settings/register-settings.php:679
3795
- #: includes/admin/settings/register-settings.php:682
3796
  msgid "Require Login"
3797
  msgstr ""
3798
 
3799
- #: includes/admin/settings/register-settings.php:680
3800
  msgid "Require that users be logged-in to purchase files."
3801
  msgstr ""
3802
 
3803
- #: includes/admin/settings/register-settings.php:683
3804
  msgid ""
3805
  "You can require that customers create and login to user accounts prior to "
3806
  "purchasing from your store by enabling this option. When unchecked, users "
3807
  "can purchase without being logged in by using their name and email address."
3808
  msgstr ""
3809
 
3810
- #: includes/admin/settings/register-settings.php:687
3811
  msgid "Show Register / Login Form?"
3812
  msgstr ""
3813
 
3814
- #: includes/admin/settings/register-settings.php:688
3815
  msgid ""
3816
  "Display the registration and login forms on the checkout page for "
3817
  "non-logged-in users."
3818
  msgstr ""
3819
 
3820
- #: includes/admin/settings/register-settings.php:692
3821
  msgid "Registration and Login Forms"
3822
  msgstr ""
3823
 
3824
- #: includes/admin/settings/register-settings.php:693
3825
  msgid "Registration Form Only"
3826
  msgstr ""
3827
 
3828
- #: includes/admin/settings/register-settings.php:694
3829
  msgid "Login Form Only"
3830
  msgstr ""
3831
 
3832
- #: includes/admin/settings/register-settings.php:700
3833
  msgid "Multiple Discounts"
3834
  msgstr ""
3835
 
3836
- #: includes/admin/settings/register-settings.php:701
3837
  msgid "Allow customers to use multiple discounts on the same purchase?"
3838
  msgstr ""
3839
 
3840
- #: includes/admin/settings/register-settings.php:706
3841
  msgid "Enable Cart Saving"
3842
  msgstr ""
3843
 
3844
- #: includes/admin/settings/register-settings.php:707
3845
  msgid "Check this to enable cart saving on the checkout."
3846
  msgstr ""
3847
 
3848
- #: includes/admin/settings/register-settings.php:709
3849
  msgid "Cart Saving"
3850
  msgstr ""
3851
 
3852
- #: includes/admin/settings/register-settings.php:710
3853
  msgid ""
3854
  "Cart saving allows shoppers to create a temporary link to their current "
3855
  "shopping cart so they can come back to it later, or share it with someone."
3856
  msgstr ""
3857
 
3858
- #: includes/admin/settings/register-settings.php:716
3859
  msgid "Complete Purchase Text"
3860
  msgstr ""
3861
 
3862
- #: includes/admin/settings/register-settings.php:717
3863
  msgid "The button label for completing a purchase."
3864
  msgstr ""
3865
 
3866
- #: includes/admin/settings/register-settings.php:723
3867
  msgid "Register Text"
3868
  msgstr ""
3869
 
3870
- #: includes/admin/settings/register-settings.php:724
3871
  msgid "The button label for completing a free purchase."
3872
  msgstr ""
3873
 
3874
- #: includes/admin/settings/register-settings.php:726
3875
  #: includes/checkout/template.php:894
3876
  msgid "Free Download"
3877
  msgstr ""
3878
 
3879
- #: includes/admin/settings/register-settings.php:730
3880
  msgid "Add to Cart Text"
3881
  msgstr ""
3882
 
3883
- #: includes/admin/settings/register-settings.php:731
3884
  msgid "Text shown on the Add to Cart Buttons."
3885
  msgstr ""
3886
 
3887
- #: includes/admin/settings/register-settings.php:737
3888
  msgid "Buy Now Text"
3889
  msgstr ""
3890
 
3891
- #: includes/admin/settings/register-settings.php:738
3892
  msgid "Text shown on the Buy Now Buttons."
3893
  msgstr ""
3894
 
3895
- #: includes/admin/settings/register-settings.php:746
3896
- #: includes/admin/settings/register-settings.php:749
3897
  msgid "Download Method"
3898
  msgstr ""
3899
 
3900
- #: includes/admin/settings/register-settings.php:747
3901
  msgid "Select the file download method. Note, not all methods work on all servers."
3902
  msgstr ""
3903
 
3904
- #: includes/admin/settings/register-settings.php:750
3905
  msgid ""
3906
  "Due to its consistency in multiple platforms and better file protection, "
3907
  "'forced' is the default method. Because Easy Digital Downloads uses PHP to "
@@ -3912,35 +3912,35 @@ msgid ""
3912
  "method can help resolve this."
3913
  msgstr ""
3914
 
3915
- #: includes/admin/settings/register-settings.php:752
3916
  msgid "Forced"
3917
  msgstr ""
3918
 
3919
- #: includes/admin/settings/register-settings.php:753
3920
  msgid "Redirect"
3921
  msgstr ""
3922
 
3923
- #: includes/admin/settings/register-settings.php:758
3924
  msgid "Symlink File Downloads?"
3925
  msgstr ""
3926
 
3927
- #: includes/admin/settings/register-settings.php:759
3928
  msgid ""
3929
  "Check this if you are delivering really large files or having problems with "
3930
  "file downloads completing."
3931
  msgstr ""
3932
 
3933
- #: includes/admin/settings/register-settings.php:765
3934
  msgid ""
3935
  "The maximum number of times files can be downloaded for purchases. Can be "
3936
  "overwritten for each %s."
3937
  msgstr ""
3938
 
3939
- #: includes/admin/settings/register-settings.php:768
3940
  msgid "File Download Limits"
3941
  msgstr ""
3942
 
3943
- #: includes/admin/settings/register-settings.php:769
3944
  msgid ""
3945
  "Set the global default for the number of times a customer can download "
3946
  "items they purchase. Using a value of 0 is unlimited. This can be defined "
@@ -3948,18 +3948,18 @@ msgid ""
3948
  "individual purchase."
3949
  msgstr ""
3950
 
3951
- #: includes/admin/settings/register-settings.php:773
3952
- #: includes/admin/settings/register-settings.php:775
3953
  msgid "Download Link Expiration"
3954
  msgstr ""
3955
 
3956
- #: includes/admin/settings/register-settings.php:774
3957
  msgid ""
3958
  "How long should download links be valid for? Default is 24 hours from the "
3959
  "time they are generated. Enter a time in hours."
3960
  msgstr ""
3961
 
3962
- #: includes/admin/settings/register-settings.php:776
3963
  msgid ""
3964
  "When a customer receives a link to their downloads via email, in their "
3965
  "receipt, or in their purchase history, the link will only be valid for the "
@@ -3968,271 +3968,271 @@ msgid ""
3968
  "customer."
3969
  msgstr ""
3970
 
3971
- #: includes/admin/settings/register-settings.php:784
3972
  msgid "Disable Redownload?"
3973
  msgstr ""
3974
 
3975
- #: includes/admin/settings/register-settings.php:785
3976
  msgid ""
3977
  "Check this if you do not want to allow users to redownload items from their "
3978
  "purchase history."
3979
  msgstr ""
3980
 
3981
- #: includes/admin/settings/register-settings.php:792
3982
  msgid "Enable SKU Entry"
3983
  msgstr ""
3984
 
3985
- #: includes/admin/settings/register-settings.php:793
3986
  msgid ""
3987
  "Check this box to allow entry of product SKUs. SKUs will be shown on "
3988
  "purchase receipt and exported purchase histories."
3989
  msgstr ""
3990
 
3991
- #: includes/admin/settings/register-settings.php:798
3992
  msgid "Sequential Order Numbers"
3993
  msgstr ""
3994
 
3995
- #: includes/admin/settings/register-settings.php:799
3996
  msgid "Check this box to enable sequential order numbers."
3997
  msgstr ""
3998
 
3999
- #: includes/admin/settings/register-settings.php:804
4000
  msgid "Sequential Starting Number"
4001
  msgstr ""
4002
 
4003
- #: includes/admin/settings/register-settings.php:805
4004
  msgid "The number at which the sequence should begin."
4005
  msgstr ""
4006
 
4007
- #: includes/admin/settings/register-settings.php:812
4008
  msgid "Sequential Number Prefix"
4009
  msgstr ""
4010
 
4011
- #: includes/admin/settings/register-settings.php:813
4012
  msgid "A prefix to prepend to all sequential order numbers."
4013
  msgstr ""
4014
 
4015
- #: includes/admin/settings/register-settings.php:818
4016
  msgid "Sequential Number Postfix"
4017
  msgstr ""
4018
 
4019
- #: includes/admin/settings/register-settings.php:819
4020
  msgid "A postfix to append to all sequential order numbers."
4021
  msgstr ""
4022
 
4023
- #: includes/admin/settings/register-settings.php:826
4024
  msgid "Agree to Terms"
4025
  msgstr ""
4026
 
4027
- #: includes/admin/settings/register-settings.php:827
4028
  msgid ""
4029
  "Check this to show an agree to terms on the checkout that users must agree "
4030
  "to before purchasing."
4031
  msgstr ""
4032
 
4033
- #: includes/admin/settings/register-settings.php:832
4034
  msgid "Agree to Terms Label"
4035
  msgstr ""
4036
 
4037
- #: includes/admin/settings/register-settings.php:833
4038
  msgid "Label shown next to the agree to terms check box."
4039
  msgstr ""
4040
 
4041
- #: includes/admin/settings/register-settings.php:839
4042
  msgid "Agreement Text"
4043
  msgstr ""
4044
 
4045
- #: includes/admin/settings/register-settings.php:840
4046
  msgid "If Agree to Terms is checked, enter the agreement terms here."
4047
  msgstr ""
4048
 
4049
- #: includes/admin/settings/register-settings.php:850
4050
  msgid "Buy Now Disabled"
4051
  msgstr ""
4052
 
4053
- #: includes/admin/settings/register-settings.php:851
4054
  msgid ""
4055
  "Buy Now buttons are only available for stores that have a single supported "
4056
  "gateway active and that do not use taxes."
4057
  msgstr ""
4058
 
4059
- #: includes/admin/settings/register-settings.php:949
4060
  msgid "Settings updated."
4061
  msgstr ""
4062
 
4063
- #: includes/admin/settings/register-settings.php:1089
4064
  msgid "Error setting default gateway. No gateways are enabled."
4065
  msgstr ""
4066
 
4067
- #: includes/admin/settings/register-settings.php:1102
4068
  msgid "%s could not be set as the default gateway. It must first be enabled."
4069
  msgstr ""
4070
 
4071
- #: includes/admin/settings/register-settings.php:1205
4072
  msgid "Licenses"
4073
  msgstr ""
4074
 
4075
- #: includes/admin/settings/register-settings.php:1208
4076
  msgid "Misc"
4077
  msgstr ""
4078
 
4079
- #: includes/admin/settings/register-settings.php:1256
4080
  #: includes/gateways/functions.php:25 includes/gateways/paypal-standard.php:33
4081
  msgid "PayPal Standard"
4082
  msgstr ""
4083
 
4084
- #: includes/admin/settings/register-settings.php:1260
4085
  msgid "Purchase Receipts"
4086
  msgstr ""
4087
 
4088
- #: includes/admin/settings/register-settings.php:1261
4089
  msgid "New Sale Notifications"
4090
  msgstr ""
4091
 
4092
- #: includes/admin/settings/register-settings.php:1270
4093
  msgid "Main"
4094
  msgstr ""
4095
 
4096
- #: includes/admin/settings/register-settings.php:1275 includes/install.php:92
4097
  #: includes/template-functions.php:182 templates/widget-cart-checkout.php:6
4098
  #: templates/widget-cart-empty.php:7
4099
  msgid "Checkout"
4100
  msgstr ""
4101
 
4102
- #: includes/admin/settings/register-settings.php:1276
4103
  msgid "Button Text"
4104
  msgstr ""
4105
 
4106
- #: includes/admin/settings/register-settings.php:1278
4107
  msgid "Accounting"
4108
  msgstr ""
4109
 
4110
- #: includes/admin/settings/register-settings.php:1279
4111
  msgid "Terms of Agreement"
4112
  msgstr ""
4113
 
4114
- #: includes/admin/settings/register-settings.php:1521
4115
  msgid ""
4116
  "Don't see what you need? More Payment Gateway options are available <a "
4117
  "href=\"%s\">here</a>."
4118
  msgstr ""
4119
 
4120
- #: includes/admin/settings/register-settings.php:1742
4121
  msgid "The callback function used for the %s setting is missing."
4122
  msgstr ""
4123
 
4124
- #: includes/admin/settings/register-settings.php:1900
4125
  msgid "Upload File"
4126
  msgstr ""
4127
 
4128
- #: includes/admin/settings/register-settings.php:2001
4129
  msgid "Country Wide"
4130
  msgstr ""
4131
 
4132
- #: includes/admin/settings/register-settings.php:2002
4133
  msgid "Rate"
4134
  msgstr ""
4135
 
4136
- #: includes/admin/settings/register-settings.php:2002
4137
  msgid ""
4138
  "<strong>Regional tax rates: </strong>When a customer enters an address on "
4139
  "checkout that matches the specified region for this tax rate, the cart tax "
4140
  "will adjust automatically. Enter a percentage, such as 6.5 for 6.5%."
4141
  msgstr ""
4142
 
4143
- #: includes/admin/settings/register-settings.php:2019
4144
- #: includes/admin/settings/register-settings.php:2064
4145
  msgid "Choose a country"
4146
  msgstr ""
4147
 
4148
- #: includes/admin/settings/register-settings.php:2034
4149
  msgid "Choose a state"
4150
  msgstr ""
4151
 
4152
- #: includes/admin/settings/register-settings.php:2046
4153
- #: includes/admin/settings/register-settings.php:2074
4154
  msgid "Apply to whole country"
4155
  msgstr ""
4156
 
4157
- #: includes/admin/settings/register-settings.php:2049
4158
- #: includes/admin/settings/register-settings.php:2077
4159
  msgid "Remove Rate"
4160
  msgstr ""
4161
 
4162
- #: includes/admin/settings/register-settings.php:2082
4163
  msgid "Add Tax Rate"
4164
  msgstr ""
4165
 
4166
- #: includes/admin/settings/register-settings.php:2135
4167
  msgid ""
4168
  "Your license key expired on %s. Please <a href=\"%s\" "
4169
  "target=\"_blank\">renew your license key</a>."
4170
  msgstr ""
4171
 
4172
- #: includes/admin/settings/register-settings.php:2148
4173
  msgid ""
4174
  "Your license key has been disabled. Please <a href=\"%s\" "
4175
  "target=\"_blank\">contact support</a> for more information."
4176
  msgstr ""
4177
 
4178
- #: includes/admin/settings/register-settings.php:2160
4179
  msgid ""
4180
  "Invalid license. Please <a href=\"%s\" target=\"_blank\">visit your account "
4181
  "page</a> and verify it."
4182
  msgstr ""
4183
 
4184
- #: includes/admin/settings/register-settings.php:2173
4185
  msgid ""
4186
  "Your %s is not active for this URL. Please <a href=\"%s\" "
4187
  "target=\"_blank\">visit your account page</a> to manage your license key "
4188
  "URLs."
4189
  msgstr ""
4190
 
4191
- #: includes/admin/settings/register-settings.php:2185
4192
  msgid "This appears to be an invalid license key for %s."
4193
  msgstr ""
4194
 
4195
- #: includes/admin/settings/register-settings.php:2194
4196
  msgid ""
4197
  "Your license key has reached its activation limit. <a href=\"%s\">View "
4198
  "possible upgrades</a> now."
4199
  msgstr ""
4200
 
4201
- #: includes/admin/settings/register-settings.php:2203
4202
  msgid ""
4203
  "The key you entered belongs to a bundle, please use the product specific "
4204
  "license key."
4205
  msgstr ""
4206
 
4207
- #: includes/admin/settings/register-settings.php:2211
4208
  msgid "unknown_error"
4209
  msgstr ""
4210
 
4211
- #: includes/admin/settings/register-settings.php:2212
4212
  msgid ""
4213
  "There was an error with this license key: %s. Please <a href=\"%s\">contact "
4214
  "our support team</a>."
4215
  msgstr ""
4216
 
4217
- #: includes/admin/settings/register-settings.php:2232
4218
  msgid "License key never expires."
4219
  msgstr ""
4220
 
4221
- #: includes/admin/settings/register-settings.php:2239
4222
  msgid ""
4223
  "Your license key expires soon! It expires on %s. <a href=\"%s\" "
4224
  "target=\"_blank\">Renew your license key</a>."
4225
  msgstr ""
4226
 
4227
- #: includes/admin/settings/register-settings.php:2249
4228
  msgid "Your license key expires on %s."
4229
  msgstr ""
4230
 
4231
- #: includes/admin/settings/register-settings.php:2267
4232
  msgid "To receive updates, please enter your valid %s license key."
4233
  msgstr ""
4234
 
4235
- #: includes/admin/settings/register-settings.php:2280
4236
  msgid "Deactivate License"
4237
  msgstr ""
4238
 
@@ -4331,7 +4331,7 @@ msgstr ""
4331
  msgid "Use these tools to recount / reset store stats."
4332
  msgstr ""
4333
 
4334
- #: includes/admin/tools.php:144 includes/scripts.php:88
4335
  msgid "Please select an option"
4336
  msgstr ""
4337
 
@@ -5139,7 +5139,7 @@ msgid "Enter a coupon code if you have one."
5139
  msgstr ""
5140
 
5141
  #: includes/checkout/template.php:748 includes/process-purchase.php:350
5142
- #: includes/scripts.php:65
5143
  msgid "Enter discount"
5144
  msgstr ""
5145
 
@@ -5494,31 +5494,31 @@ msgstr ""
5494
  msgid "Can't get property %s"
5495
  msgstr ""
5496
 
5497
- #: includes/class-edd-discount.php:1502
5498
  msgid "This discount has reached its maximum usage."
5499
  msgstr ""
5500
 
5501
- #: includes/class-edd-discount.php:1536
5502
  msgid "Minimum order of %s not met."
5503
  msgstr ""
5504
 
5505
- #: includes/class-edd-discount.php:1624 includes/class-edd-discount.php:1653
5506
  msgid "The product requirements for this discount are not met."
5507
  msgstr ""
5508
 
5509
- #: includes/class-edd-discount.php:1671
5510
  msgid "This discount is not valid for the cart contents."
5511
  msgstr ""
5512
 
5513
- #: includes/class-edd-discount.php:1761
5514
  msgid "This discount has already been redeemed."
5515
  msgstr ""
5516
 
5517
- #: includes/class-edd-discount.php:1842
5518
  msgid "This discount is expired."
5519
  msgstr ""
5520
 
5521
- #: includes/class-edd-discount.php:1847
5522
  msgid "This discount is not active."
5523
  msgstr ""
5524
 
@@ -5526,7 +5526,7 @@ msgstr ""
5526
  msgid "New Download Product"
5527
  msgstr ""
5528
 
5529
- #: includes/class-edd-html-elements.php:44 includes/scripts.php:212
5530
  msgid "Choose a %s"
5531
  msgstr ""
5532
 
@@ -6119,113 +6119,113 @@ msgstr ""
6119
  msgid "You must enable a payment gateway to use Easy Digital Downloads"
6120
  msgstr ""
6121
 
6122
- #: includes/gateways/amazon-payments.php:211
6123
  msgid "There is an error with the Amazon Payments configuration."
6124
  msgstr ""
6125
 
6126
- #: includes/gateways/amazon-payments.php:283
6127
- #: includes/gateways/amazon-payments.php:284
6128
  msgid "Amazon"
6129
  msgstr ""
6130
 
6131
- #: includes/gateways/amazon-payments.php:336
6132
  msgid "Amazon Payments"
6133
  msgstr ""
6134
 
6135
- #: includes/gateways/amazon-payments.php:354
6136
  msgid "Amazon Payments Settings"
6137
  msgstr ""
6138
 
6139
- #: includes/gateways/amazon-payments.php:359
6140
  msgid "Register with Amazon"
6141
  msgstr ""
6142
 
6143
- #: includes/gateways/amazon-payments.php:361
6144
  msgid "Connect Easy Digital Downloads to Amazon"
6145
  msgstr ""
6146
 
6147
- #: includes/gateways/amazon-payments.php:364
6148
  msgid "Once registration is complete, enter your API credentials below."
6149
  msgstr ""
6150
 
6151
- #: includes/gateways/amazon-payments.php:370
6152
  msgid "Seller ID"
6153
  msgstr ""
6154
 
6155
- #: includes/gateways/amazon-payments.php:371
6156
  msgid "Found in the Integration settings. Also called a Merchant ID"
6157
  msgstr ""
6158
 
6159
- #: includes/gateways/amazon-payments.php:377
6160
  msgid "MWS Access Key"
6161
  msgstr ""
6162
 
6163
- #: includes/gateways/amazon-payments.php:378
6164
- #: includes/gateways/amazon-payments.php:385
6165
  msgid "Found on Seller Central in the MWS Keys section"
6166
  msgstr ""
6167
 
6168
- #: includes/gateways/amazon-payments.php:384
6169
  msgid "MWS Secret Key"
6170
  msgstr ""
6171
 
6172
- #: includes/gateways/amazon-payments.php:391
6173
  msgid "Client ID"
6174
  msgstr ""
6175
 
6176
- #: includes/gateways/amazon-payments.php:392
6177
  msgid "The Amazon Client ID. Should look like `amzn1.application-oa2...`"
6178
  msgstr ""
6179
 
6180
- #: includes/gateways/amazon-payments.php:398
6181
  msgid "Amazon MWS Callback URL"
6182
  msgstr ""
6183
 
6184
- #: includes/gateways/amazon-payments.php:399
6185
  msgid ""
6186
  "The Return URL to provide in your MWS Application. Enter this under your "
6187
  "Login and Pay &rarr; Web Settings"
6188
  msgstr ""
6189
 
6190
- #: includes/gateways/amazon-payments.php:407
6191
  msgid "Amazon Merchant IPN URL"
6192
  msgstr ""
6193
 
6194
- #: includes/gateways/amazon-payments.php:408
6195
  msgid ""
6196
  "The IPN URL to provide in your MWS account. Enter this under your <a "
6197
  "href=\"%s\">Integration Settings</a>"
6198
  msgstr ""
6199
 
6200
- #: includes/gateways/amazon-payments.php:718
6201
  msgid "Currently logged into Amazon as"
6202
  msgstr ""
6203
 
6204
- #: includes/gateways/amazon-payments.php:719
6205
  msgid "Logout"
6206
  msgstr ""
6207
 
6208
- #: includes/gateways/amazon-payments.php:876
6209
- #: includes/gateways/amazon-payments.php:891
6210
  msgid "Missing Reference ID, please try again"
6211
  msgstr ""
6212
 
6213
- #: includes/gateways/amazon-payments.php:927
6214
  msgid ""
6215
  "Your payment could not be authorized, please try a different payment "
6216
  "method. Reason: %s"
6217
  msgstr ""
6218
 
6219
- #: includes/gateways/amazon-payments.php:974
6220
  msgid "There was an issue processing your payment. Amazon error: %s"
6221
  msgstr ""
6222
 
6223
- #: includes/gateways/amazon-payments.php:1110
6224
  msgid "Invalid Amazon seller ID"
6225
  msgstr ""
6226
 
6227
- #: includes/gateways/amazon-payments.php:1110
6228
- #: includes/gateways/amazon-payments.php:1164
6229
  #: includes/gateways/paypal-standard.php:404
6230
  #: includes/gateways/paypal-standard.php:410
6231
  #: includes/gateways/paypal-standard.php:484
@@ -6235,24 +6235,24 @@ msgstr ""
6235
  msgid "IPN Error"
6236
  msgstr ""
6237
 
6238
- #: includes/gateways/amazon-payments.php:1134
6239
  msgid "Capture declined in Amazon"
6240
  msgstr ""
6241
 
6242
- #: includes/gateways/amazon-payments.php:1152
6243
- #: includes/gateways/amazon-payments.php:1240
6244
  msgid "Refund completed in Amazon. Refund ID: %s"
6245
  msgstr ""
6246
 
6247
- #: includes/gateways/amazon-payments.php:1233
6248
  msgid "Refund declined in Amazon. Refund ID: %s"
6249
  msgstr ""
6250
 
6251
- #: includes/gateways/amazon-payments.php:1246
6252
  msgid "Refund initiated in Amazon. Reference ID: %s"
6253
  msgstr ""
6254
 
6255
- #: includes/gateways/amazon-payments.php:1255
6256
  msgid "Refund request failed in Amazon."
6257
  msgstr ""
6258
 
@@ -7045,7 +7045,7 @@ msgstr ""
7045
  msgid "File not found"
7046
  msgstr ""
7047
 
7048
- #: includes/process-purchase.php:31 includes/scripts.php:86
7049
  msgid "Your cart is empty"
7050
  msgstr ""
7051
 
@@ -7147,151 +7147,151 @@ msgstr ""
7147
  msgid "You do not have permission to view this file."
7148
  msgstr ""
7149
 
7150
- #: includes/scripts.php:63
7151
  msgid "Please select a payment method"
7152
  msgstr ""
7153
 
7154
- #: includes/scripts.php:64
7155
  msgid "Please enter a discount code"
7156
  msgstr ""
7157
 
7158
- #: includes/scripts.php:66
7159
  msgid "Discount Applied"
7160
  msgstr ""
7161
 
7162
- #: includes/scripts.php:67
7163
  msgid "Please enter an email address before applying a discount code"
7164
  msgstr ""
7165
 
7166
- #: includes/scripts.php:68
7167
  msgid "Please enter a username before applying a discount code"
7168
  msgstr ""
7169
 
7170
- #: includes/scripts.php:69
7171
  msgid "Please Wait..."
7172
  msgstr ""
7173
 
7174
- #: includes/scripts.php:85
7175
  msgid "You have already added this item to your cart"
7176
  msgstr ""
7177
 
7178
- #: includes/scripts.php:87 includes/template-functions.php:177
7179
  msgid "Loading"
7180
  msgstr ""
7181
 
7182
- #: includes/scripts.php:198
7183
  msgid "Add New Download"
7184
  msgstr ""
7185
 
7186
- #: includes/scripts.php:199
7187
  msgid "Use This File"
7188
  msgstr ""
7189
 
7190
- #: includes/scripts.php:200
7191
  msgid "Sorry, not available for variable priced products."
7192
  msgstr ""
7193
 
7194
- #: includes/scripts.php:201
7195
  msgid "Are you sure you wish to delete this payment?"
7196
  msgstr ""
7197
 
7198
- #: includes/scripts.php:202
7199
  msgid "Are you sure you wish to delete this note?"
7200
  msgstr ""
7201
 
7202
- #: includes/scripts.php:203
7203
  msgid "Are you sure you wish to delete this tax rate?"
7204
  msgstr ""
7205
 
7206
- #: includes/scripts.php:204
7207
  msgid "Are you sure you wish to revoke this API key?"
7208
  msgstr ""
7209
 
7210
- #: includes/scripts.php:205
7211
  msgid "Are you sure you wish to regenerate this API key?"
7212
  msgstr ""
7213
 
7214
- #: includes/scripts.php:206
7215
  msgid "Are you sure you wish to resend the purchase receipt?"
7216
  msgstr ""
7217
 
7218
- #: includes/scripts.php:207
7219
  msgid "Copy these links to your clipboard and give them to your customer"
7220
  msgstr ""
7221
 
7222
- #: includes/scripts.php:208
7223
  msgid "Are you sure you wish to delete this %s?"
7224
  msgstr ""
7225
 
7226
- #: includes/scripts.php:209
7227
  msgid "You must have at least one price"
7228
  msgstr ""
7229
 
7230
- #: includes/scripts.php:210
7231
  msgid "You must have at least one field"
7232
  msgstr ""
7233
 
7234
- #: includes/scripts.php:211
7235
  msgid "Payments must contain at least one item"
7236
  msgstr ""
7237
 
7238
- #: includes/scripts.php:213
7239
  msgid "Choose one or more %s"
7240
  msgstr ""
7241
 
7242
- #: includes/scripts.php:214
7243
  msgid "Item price must be numeric"
7244
  msgstr ""
7245
 
7246
- #: includes/scripts.php:215
7247
  msgid "Item tax must be numeric"
7248
  msgstr ""
7249
 
7250
- #: includes/scripts.php:216
7251
  msgid "Quantity must be numeric"
7252
  msgstr ""
7253
 
7254
- #: includes/scripts.php:225
7255
  msgid "Type to search %s"
7256
  msgstr ""
7257
 
7258
- #: includes/scripts.php:227
7259
  msgid "You must choose a method."
7260
  msgstr ""
7261
 
7262
- #: includes/scripts.php:228
7263
  msgid "Required fields not completed."
7264
  msgstr ""
7265
 
7266
- #: includes/scripts.php:229
7267
  msgid ""
7268
  "Are you sure you want to reset your store? This process is <strong><em>not "
7269
  "reversible</em></strong>. Please be sure you have a recent backup."
7270
  msgstr ""
7271
 
7272
- #: includes/scripts.php:230
7273
  msgid ""
7274
  "We are sorry but your browser is not compatible with this kind of file "
7275
  "upload. Please upgrade your browser."
7276
  msgstr ""
7277
 
7278
- #: includes/scripts.php:232
7279
  msgid "Hide advanced settings"
7280
  msgstr ""
7281
 
7282
- #: includes/scripts.php:243
7283
  msgid "Purchase Limit Settings"
7284
  msgstr ""
7285
 
7286
- #: includes/scripts.php:244
7287
  msgid "Simple Shipping Settings"
7288
  msgstr ""
7289
 
7290
- #: includes/scripts.php:245
7291
  msgid "Software Licensing Settings"
7292
  msgstr ""
7293
 
7294
- #: includes/scripts.php:246
7295
  msgid "Recurring Payments Settings"
7296
  msgstr ""
7297
 
@@ -7850,12 +7850,12 @@ msgctxt "Apply discount at checkout"
7850
  msgid "Apply"
7851
  msgstr ""
7852
 
7853
- #: includes/class-edd-discount.php:1433
7854
  msgctxt "error shown when attempting to use a discount before its start date"
7855
  msgid "This discount is invalid."
7856
  msgstr ""
7857
 
7858
- #: includes/class-edd-discount.php:1810
7859
  msgctxt "error for when a discount is invalid based on its configuration"
7860
  msgid "This discount is invalid."
7861
  msgstr ""
2
  # This file is distributed under the same license as the Easy Digital Downloads package.
3
  msgid ""
4
  msgstr ""
5
+ "Project-Id-Version: Easy Digital Downloads 2.8.6\n"
6
  "Report-Msgid-Bugs-To: https://easydigitaldownloads.com/\n"
7
+ "POT-Creation-Date: 2017-09-11 22:19:04+00:00\n"
8
  "MIME-Version: 1.0\n"
9
  "Content-Type: text/plain; charset=utf-8\n"
10
  "Content-Transfer-Encoding: 8bit\n"
173
 
174
  #: includes/admin/admin-pages.php:43 includes/admin/plugins.php:57
175
  #: includes/admin/settings/contextual-help.php:87
176
+ #: includes/admin/settings/register-settings.php:1210
177
  msgid "Extensions"
178
  msgstr ""
179
 
598
  msgstr ""
599
 
600
  #: includes/admin/customers/customers.php:269
601
+ #: includes/admin/settings/register-settings.php:2008
602
  #: includes/admin/tools.php:690 includes/checkout/template.php:435
603
  #: templates/shortcode-profile-editor.php:171
604
  msgid "State / Province"
700
  #: includes/admin/downloads/metabox.php:698
701
  #: includes/admin/downloads/metabox.php:823
702
  #: includes/admin/payments/view-order-details.php:490
703
+ #: includes/admin/settings/register-settings.php:2011 includes/scripts.php:226
704
  #: templates/checkout_cart.php:57 templates/checkout_cart.php:75
705
  #: templates/shortcode-profile-editor.php:123
706
  msgid "Remove"
1169
 
1170
  #: includes/admin/discounts/contextual-help.php:38
1171
  #: includes/admin/settings/contextual-help.php:42
1172
+ #: includes/admin/settings/register-settings.php:1203
1173
+ #: includes/admin/settings/register-settings.php:1258
1174
+ #: includes/admin/settings/register-settings.php:1263
 
 
1175
  #: includes/admin/settings/register-settings.php:1267
1176
+ #: includes/admin/settings/register-settings.php:1272
1177
+ #: includes/admin/settings/register-settings.php:1275
1178
  #: includes/admin/tools.php:68
1179
  msgid "General"
1180
  msgstr ""
1518
  msgid "Price ID: %s"
1519
  msgstr ""
1520
 
1521
+ #: includes/admin/downloads/metabox.php:433 includes/scripts.php:233
1522
  msgid "Show advanced settings"
1523
  msgstr ""
1524
 
1678
  msgstr ""
1679
 
1680
  #: includes/admin/downloads/metabox.php:1017
1681
+ #: includes/admin/settings/register-settings.php:727
1682
  #: includes/admin/thickbox.php:59 includes/checkout/template.php:891
1683
  #: includes/shortcodes.php:49 includes/template-functions.php:67
1684
  msgid "Purchase"
1719
  msgstr ""
1720
 
1721
  #: includes/admin/downloads/metabox.php:1091
1722
+ #: includes/admin/settings/register-settings.php:741
1723
  #: includes/admin/thickbox.php:97
1724
  msgid "Add to Cart"
1725
  msgstr ""
1726
 
1727
  #: includes/admin/downloads/metabox.php:1092
1728
+ #: includes/admin/settings/register-settings.php:748 includes/shortcodes.php:47
1729
  #: includes/template-functions.php:67
1730
  msgid "Buy Now"
1731
  msgstr ""
2156
  msgstr[1] ""
2157
 
2158
  #: includes/admin/payments/view-order-details.php:152
2159
+ #: includes/admin/settings/register-settings.php:703
2160
  msgid "None"
2161
  msgstr ""
2162
 
2323
  msgstr ""
2324
 
2325
  #: includes/admin/payments/view-order-details.php:732
2326
+ #: includes/admin/settings/register-settings.php:319
2327
  msgid "Select a country"
2328
  msgstr ""
2329
 
2332
  msgstr ""
2333
 
2334
  #: includes/admin/payments/view-order-details.php:753
2335
+ #: includes/admin/settings/register-settings.php:327
2336
  msgid "Select a state"
2337
  msgstr ""
2338
 
2519
 
2520
  #: includes/admin/reporting/class-export-payments.php:70
2521
  #: includes/admin/reporting/export/class-batch-export-payments.php:50
2522
+ #: includes/admin/settings/register-settings.php:2007
2523
  #: includes/admin/tools.php:708 templates/shortcode-profile-editor.php:162
2524
  msgid "Country"
2525
  msgstr ""
2735
  msgstr ""
2736
 
2737
  #: includes/admin/reporting/export/class-batch-export-downloads.php:54
2738
+ #: includes/admin/settings/register-settings.php:772
2739
  #: includes/admin/tools.php:891
2740
  msgid "File Download Limit"
2741
  msgstr ""
2785
  msgstr ""
2786
 
2787
  #: includes/admin/reporting/export/class-batch-export-payments.php:63
2788
+ #: includes/admin/settings/register-settings.php:348
2789
+ #: includes/admin/settings/register-settings.php:1259
2790
  msgid "Currency"
2791
  msgstr ""
2792
 
2910
  msgstr ""
2911
 
2912
  #: includes/admin/reporting/logs.php:144
2913
+ #: includes/admin/settings/register-settings.php:1285
2914
  msgid "File Downloads"
2915
  msgstr ""
2916
 
2940
 
2941
  #: includes/admin/reporting/reports.php:59
2942
  #: includes/admin/settings/contextual-help.php:71
2943
+ #: includes/admin/settings/register-settings.php:1207
2944
  msgid "Taxes"
2945
  msgstr ""
2946
 
3082
  msgstr ""
3083
 
3084
  #: includes/admin/settings/contextual-help.php:48
3085
+ #: includes/admin/settings/register-settings.php:416
3086
+ #: includes/admin/settings/register-settings.php:1204
3087
  msgid "Payment Gateways"
3088
  msgstr ""
3089
 
3112
  msgstr ""
3113
 
3114
  #: includes/admin/settings/contextual-help.php:57
3115
+ #: includes/admin/settings/register-settings.php:1205
3116
  msgid "Emails"
3117
  msgstr ""
3118
 
3132
  msgstr ""
3133
 
3134
  #: includes/admin/settings/contextual-help.php:65
3135
+ #: includes/admin/settings/register-settings.php:1206
3136
  msgid "Styles"
3137
  msgstr ""
3138
 
3215
  msgstr ""
3216
 
3217
  #: includes/admin/settings/contextual-help.php:93
3218
+ #: includes/admin/settings/register-settings.php:1282
3219
  msgid "Miscellaneous"
3220
  msgstr ""
3221
 
3229
  msgid "A description of all the options are provided beside their input boxes."
3230
  msgstr ""
3231
 
3232
+ #: includes/admin/settings/register-settings.php:251
3233
  msgid "Pages"
3234
  msgstr ""
3235
 
3236
+ #: includes/admin/settings/register-settings.php:254
3237
  msgid "Page Settings"
3238
  msgstr ""
3239
 
3240
+ #: includes/admin/settings/register-settings.php:255
3241
  msgid ""
3242
  "Easy Digital Downloads uses the pages below for handling the display of "
3243
  "checkout, purchase confirmation, purchase history, and purchase failures. "
3246
  "in the page content area."
3247
  msgstr ""
3248
 
3249
+ #: includes/admin/settings/register-settings.php:259
3250
  msgid "Checkout Page"
3251
  msgstr ""
3252
 
3253
+ #: includes/admin/settings/register-settings.php:260
3254
  msgid ""
3255
  "This is the checkout page where buyers will complete their purchases. The "
3256
  "[download_checkout] shortcode must be on this page."
3257
  msgstr ""
3258
 
3259
+ #: includes/admin/settings/register-settings.php:264
3260
+ #: includes/admin/settings/register-settings.php:273
3261
+ #: includes/admin/settings/register-settings.php:282
3262
+ #: includes/admin/settings/register-settings.php:291
3263
+ #: includes/admin/settings/register-settings.php:302
3264
  msgid "Select a page"
3265
  msgstr ""
3266
 
3267
+ #: includes/admin/settings/register-settings.php:268
3268
  msgid "Success Page"
3269
  msgstr ""
3270
 
3271
+ #: includes/admin/settings/register-settings.php:269
3272
  msgid ""
3273
  "This is the page buyers are sent to after completing their purchases. The "
3274
  "[edd_receipt] shortcode should be on this page."
3275
  msgstr ""
3276
 
3277
+ #: includes/admin/settings/register-settings.php:277
3278
  msgid "Failed Transaction Page"
3279
  msgstr ""
3280
 
3281
+ #: includes/admin/settings/register-settings.php:278
3282
  msgid ""
3283
  "This is the page buyers are sent to if their transaction is cancelled or "
3284
  "fails."
3285
  msgstr ""
3286
 
3287
+ #: includes/admin/settings/register-settings.php:286
3288
  msgid "Purchase History Page"
3289
  msgstr ""
3290
 
3291
+ #: includes/admin/settings/register-settings.php:287
3292
  msgid ""
3293
  "This page shows a complete purchase history for the current user, including "
3294
  "download links. The [purchase_history] shortcode should be on this page."
3295
  msgstr ""
3296
 
3297
+ #: includes/admin/settings/register-settings.php:295
3298
  msgid "Login Redirect Page"
3299
  msgstr ""
3300
 
3301
+ #: includes/admin/settings/register-settings.php:297
3302
  msgid ""
3303
  "If a customer logs in using the [edd_login] shortcode, this is the page "
3304
  "they will be redirected to. Note, this can be overridden using the redirect "
3305
  "attribute in the shortcode like this: [edd_login redirect=\"%s\"]."
3306
  msgstr ""
3307
 
3308
+ #: includes/admin/settings/register-settings.php:306
3309
  msgid "Store Location"
3310
  msgstr ""
3311
 
3312
+ #: includes/admin/settings/register-settings.php:309
3313
  msgid "Store Location Settings"
3314
  msgstr ""
3315
 
3316
+ #: includes/admin/settings/register-settings.php:310
3317
  msgid ""
3318
  "Easy Digital Downloads will use the following Country and State to pre-fill "
3319
  "fields at checkout. This will also pre-calculate any taxes defined if the "
3320
  "location below has taxes enabled."
3321
  msgstr ""
3322
 
3323
+ #: includes/admin/settings/register-settings.php:314
3324
  msgid "Base Country"
3325
  msgstr ""
3326
 
3327
+ #: includes/admin/settings/register-settings.php:315
3328
  msgid "Where does your store operate from?"
3329
  msgstr ""
3330
 
3331
+ #: includes/admin/settings/register-settings.php:323
3332
  msgid "Base State / Province"
3333
  msgstr ""
3334
 
3335
+ #: includes/admin/settings/register-settings.php:324
3336
  msgid "What state / province does your store operate from?"
3337
  msgstr ""
3338
 
3339
+ #: includes/admin/settings/register-settings.php:331
3340
  msgid "Tracking"
3341
  msgstr ""
3342
 
3343
+ #: includes/admin/settings/register-settings.php:337
3344
  msgid "Allow Usage Tracking?"
3345
  msgstr ""
3346
 
3347
+ #: includes/admin/settings/register-settings.php:339
3348
  msgid ""
3349
  "Allow Easy Digital Downloads to anonymously track how this plugin is used "
3350
  "and help us make the plugin better. Opt-in to tracking and our newsletter "
3353
  "sensitive data is tracked."
3354
  msgstr ""
3355
 
3356
+ #: includes/admin/settings/register-settings.php:349
3357
  msgid ""
3358
  "Choose your currency. Note that some payment gateways have currency "
3359
  "restrictions."
3360
  msgstr ""
3361
 
3362
+ #: includes/admin/settings/register-settings.php:356
3363
  msgid "Currency Position"
3364
  msgstr ""
3365
 
3366
+ #: includes/admin/settings/register-settings.php:357
3367
  msgid "Choose the location of the currency sign."
3368
  msgstr ""
3369
 
3370
+ #: includes/admin/settings/register-settings.php:360
3371
  msgid "Before - $10"
3372
  msgstr ""
3373
 
3374
+ #: includes/admin/settings/register-settings.php:361
3375
  msgid "After - 10$"
3376
  msgstr ""
3377
 
3378
+ #: includes/admin/settings/register-settings.php:366
3379
  msgid "Thousands Separator"
3380
  msgstr ""
3381
 
3382
+ #: includes/admin/settings/register-settings.php:367
3383
  msgid "The symbol (usually , or .) to separate thousands."
3384
  msgstr ""
3385
 
3386
+ #: includes/admin/settings/register-settings.php:374
3387
  msgid "Decimal Separator"
3388
  msgstr ""
3389
 
3390
+ #: includes/admin/settings/register-settings.php:375
3391
  msgid "The symbol (usually , or .) to separate decimal points."
3392
  msgstr ""
3393
 
3394
+ #: includes/admin/settings/register-settings.php:384
3395
+ #: includes/admin/settings/register-settings.php:1260
3396
  msgid "API"
3397
  msgstr ""
3398
 
3399
+ #: includes/admin/settings/register-settings.php:387
3400
  msgid "API Settings"
3401
  msgstr ""
3402
 
3403
+ #: includes/admin/settings/register-settings.php:388
3404
  msgid ""
3405
  "The Easy Digital Downloads REST API provides access to store data through "
3406
  "our API endpoints. Enable this setting if you would like all user accounts "
3407
  "to be able to generate their own API keys."
3408
  msgstr ""
3409
 
3410
+ #: includes/admin/settings/register-settings.php:392
3411
  msgid "Allow User Keys"
3412
  msgstr ""
3413
 
3414
+ #: includes/admin/settings/register-settings.php:393
3415
  msgid ""
3416
  "Check this box to allow all users to generate API keys. Users with the "
3417
  "'manage_shop_settings' capability are always allowed to generate keys."
3418
  msgstr ""
3419
 
3420
+ #: includes/admin/settings/register-settings.php:398
3421
  msgid ""
3422
  "Visit the <a href=\"%s\" target=\"_blank\">REST API documentation</a> for "
3423
  "further information."
3424
  msgstr ""
3425
 
3426
+ #: includes/admin/settings/register-settings.php:410
3427
  msgid "Test Mode"
3428
  msgstr ""
3429
 
3430
+ #: includes/admin/settings/register-settings.php:411
3431
  msgid ""
3432
  "While in test mode no live transactions are processed. To fully use test "
3433
  "mode, you must have a sandbox (test) account for the payment gateway you "
3434
  "are testing."
3435
  msgstr ""
3436
 
3437
+ #: includes/admin/settings/register-settings.php:417
3438
  msgid "Choose the payment gateways you want to enable."
3439
  msgstr ""
3440
 
3441
+ #: includes/admin/settings/register-settings.php:423
3442
  msgid "Default Gateway"
3443
  msgstr ""
3444
 
3445
+ #: includes/admin/settings/register-settings.php:424
3446
  msgid "This gateway will be loaded automatically with the checkout page."
3447
  msgstr ""
3448
 
3449
+ #: includes/admin/settings/register-settings.php:430
3450
  msgid "Accepted Payment Method Icons"
3451
  msgstr ""
3452
 
3453
+ #: includes/admin/settings/register-settings.php:431
3454
  msgid "Display icons for the selected payment methods."
3455
  msgstr ""
3456
 
3457
+ #: includes/admin/settings/register-settings.php:431
3458
  msgid ""
3459
  "You will also need to configure your gateway settings if you are accepting "
3460
  "credit cards."
3461
  msgstr ""
3462
 
3463
+ #: includes/admin/settings/register-settings.php:451
3464
  msgid "Email Template"
3465
  msgstr ""
3466
 
3467
+ #: includes/admin/settings/register-settings.php:452
3468
  msgid ""
3469
  "Choose a template. Click \"Save Changes\" then \"Preview Purchase Receipt\" "
3470
  "to see the new template."
3471
  msgstr ""
3472
 
3473
+ #: includes/admin/settings/register-settings.php:458
3474
  msgid "Logo"
3475
  msgstr ""
3476
 
3477
+ #: includes/admin/settings/register-settings.php:459
3478
  msgid ""
3479
  "Upload or choose a logo to be displayed at the top of the purchase receipt "
3480
  "emails. Displayed on HTML emails only."
3481
  msgstr ""
3482
 
3483
+ #: includes/admin/settings/register-settings.php:464
3484
  msgid "From Name"
3485
  msgstr ""
3486
 
3487
+ #: includes/admin/settings/register-settings.php:465
3488
  msgid ""
3489
  "The name purchase receipts are said to come from. This should probably be "
3490
  "your site or shop name."
3491
  msgstr ""
3492
 
3493
+ #: includes/admin/settings/register-settings.php:471
3494
  msgid "From Email"
3495
  msgstr ""
3496
 
3497
+ #: includes/admin/settings/register-settings.php:472
3498
  msgid ""
3499
  "Email to send purchase receipts from. This will act as the \"from\" and "
3500
  "\"reply-to\" address."
3501
  msgstr ""
3502
 
3503
+ #: includes/admin/settings/register-settings.php:492
3504
  msgid "Purchase Email Subject"
3505
  msgstr ""
3506
 
3507
+ #: includes/admin/settings/register-settings.php:493
3508
  msgid "Enter the subject line for the purchase receipt email."
3509
  msgstr ""
3510
 
3511
+ #: includes/admin/settings/register-settings.php:495
3512
+ #: includes/admin/settings/register-settings.php:502
3513
+ #: includes/admin/settings/register-settings.php:506
3514
  #: includes/emails/functions.php:45 includes/emails/functions.php:49
3515
  #: includes/emails/functions.php:87 includes/emails/functions.php:91
3516
  #: includes/emails/template.php:141
3517
  msgid "Purchase Receipt"
3518
  msgstr ""
3519
 
3520
+ #: includes/admin/settings/register-settings.php:499
3521
  msgid "Purchase Email Heading"
3522
  msgstr ""
3523
 
3524
+ #: includes/admin/settings/register-settings.php:500
3525
  msgid "Enter the heading for the purchase receipt email."
3526
  msgstr ""
3527
 
3528
+ #: includes/admin/settings/register-settings.php:507
3529
  msgid ""
3530
  "Enter the text that is sent as purchase receipt email to users after "
3531
  "completion of a successful purchase. HTML is accepted. Available template "
3532
  "tags:"
3533
  msgstr ""
3534
 
3535
+ #: includes/admin/settings/register-settings.php:509
3536
  #: includes/emails/template.php:159
3537
  msgid "Dear"
3538
  msgstr ""
3539
 
3540
+ #: includes/admin/settings/register-settings.php:509
3541
  #: includes/emails/template.php:160
3542
  msgid ""
3543
  "Thank you for your purchase. Please click on the link(s) below to download "
3544
  "your files."
3545
  msgstr ""
3546
 
3547
+ #: includes/admin/settings/register-settings.php:515
3548
  msgid "Sale Notification Subject"
3549
  msgstr ""
3550
 
3551
+ #: includes/admin/settings/register-settings.php:516
3552
  msgid "Enter the subject line for the sale notification email."
3553
  msgstr ""
3554
 
3555
+ #: includes/admin/settings/register-settings.php:522
3556
  msgid "Sale Notification"
3557
  msgstr ""
3558
 
3559
+ #: includes/admin/settings/register-settings.php:523
3560
  msgid ""
3561
  "Enter the text that is sent as sale notification email after completion of "
3562
  "a purchase. HTML is accepted. Available template tags:"
3563
  msgstr ""
3564
 
3565
+ #: includes/admin/settings/register-settings.php:529
3566
  msgid "Sale Notification Emails"
3567
  msgstr ""
3568
 
3569
+ #: includes/admin/settings/register-settings.php:530
3570
  msgid ""
3571
  "Enter the email address(es) that should receive a notification anytime a "
3572
  "sale is made, one per line."
3573
  msgstr ""
3574
 
3575
+ #: includes/admin/settings/register-settings.php:536
3576
  msgid "Disable Admin Notifications"
3577
  msgstr ""
3578
 
3579
+ #: includes/admin/settings/register-settings.php:537
3580
  msgid "Check this box if you do not want to receive sales notification emails."
3581
  msgstr ""
3582
 
3583
+ #: includes/admin/settings/register-settings.php:549
3584
  msgid "Disable Styles"
3585
  msgstr ""
3586
 
3587
+ #: includes/admin/settings/register-settings.php:550
3588
  msgid ""
3589
  "Check this to disable all included styling of buttons, checkout fields, and "
3590
  "all other elements."
3591
  msgstr ""
3592
 
3593
+ #: includes/admin/settings/register-settings.php:552
3594
  msgid "Disabling Styles"
3595
  msgstr ""
3596
 
3597
+ #: includes/admin/settings/register-settings.php:553
3598
  msgid ""
3599
  "If your theme has a complete custom CSS file for Easy Digital Downloads, "
3600
  "you may wish to disable our default styles. This is not recommended unless "
3601
  "your sure your theme has a complete custom CSS."
3602
  msgstr ""
3603
 
3604
+ #: includes/admin/settings/register-settings.php:557
3605
  msgid "Buttons"
3606
  msgstr ""
3607
 
3608
+ #: includes/admin/settings/register-settings.php:558
3609
  msgid "Options for add to cart and purchase buttons"
3610
  msgstr ""
3611
 
3612
+ #: includes/admin/settings/register-settings.php:563
3613
  msgid "Default Button Style"
3614
  msgstr ""
3615
 
3616
+ #: includes/admin/settings/register-settings.php:564
3617
  msgid "Choose the style you want to use for the buttons."
3618
  msgstr ""
3619
 
3620
+ #: includes/admin/settings/register-settings.php:570
3621
  msgid "Default Button Color"
3622
  msgstr ""
3623
 
3624
+ #: includes/admin/settings/register-settings.php:571
3625
  msgid "Choose the color you want to use for the buttons."
3626
  msgstr ""
3627
 
3628
+ #: includes/admin/settings/register-settings.php:584
3629
  msgid "Need help?"
3630
  msgstr ""
3631
 
3632
+ #: includes/admin/settings/register-settings.php:585
3633
  msgid ""
3634
  "Visit the <a href=\"%s\" target=\"_blank\">Tax setup documentation</a> for "
3635
  "further information. If you need VAT support, there are options listed on "
3636
  "the documentation page."
3637
  msgstr ""
3638
 
3639
+ #: includes/admin/settings/register-settings.php:590
3640
  msgid "Enable Taxes"
3641
  msgstr ""
3642
 
3643
+ #: includes/admin/settings/register-settings.php:591
3644
  msgid "Check this to enable taxes on purchases."
3645
  msgstr ""
3646
 
3647
+ #: includes/admin/settings/register-settings.php:593
3648
  msgid "Enabling Taxes"
3649
  msgstr ""
3650
 
3651
+ #: includes/admin/settings/register-settings.php:594
3652
  msgid ""
3653
  "With taxes enabled, Easy Digital Downloads will use the rules below to "
3654
  "charge tax to customers. With taxes enabled, customers are required to "
3655
  "input their address on checkout so that taxes can be properly calculated."
3656
  msgstr ""
3657
 
3658
+ #: includes/admin/settings/register-settings.php:598
3659
  msgid "Tax Rates"
3660
  msgstr ""
3661
 
3662
+ #: includes/admin/settings/register-settings.php:599
3663
  msgid ""
3664
  "Add tax rates for specific regions. Enter a percentage, such as 6.5 for "
3665
  "6.5%."
3666
  msgstr ""
3667
 
3668
+ #: includes/admin/settings/register-settings.php:604
3669
+ #: includes/admin/settings/register-settings.php:608
3670
  msgid "Fallback Tax Rate"
3671
  msgstr ""
3672
 
3673
+ #: includes/admin/settings/register-settings.php:605
3674
  msgid ""
3675
  "Customers not in a specific rate will be charged this tax rate. Enter a "
3676
  "percentage, such as 6.5 for 6.5%. "
3677
  msgstr ""
3678
 
3679
+ #: includes/admin/settings/register-settings.php:609
3680
  msgid ""
3681
  "If the customer's address fails to meet the above tax rules, you can define "
3682
  "a `default` tax rate to be applied to all other customers. Enter a "
3683
  "percentage, such as 6.5 for 6.5%."
3684
  msgstr ""
3685
 
3686
+ #: includes/admin/settings/register-settings.php:613
3687
  msgid "Prices entered with tax"
3688
  msgstr ""
3689
 
3690
+ #: includes/admin/settings/register-settings.php:614
3691
  msgid "This option affects how you enter prices."
3692
  msgstr ""
3693
 
3694
+ #: includes/admin/settings/register-settings.php:618
3695
  msgid "Yes, I will enter prices inclusive of tax"
3696
  msgstr ""
3697
 
3698
+ #: includes/admin/settings/register-settings.php:619
3699
  msgid "No, I will enter prices exclusive of tax"
3700
  msgstr ""
3701
 
3702
+ #: includes/admin/settings/register-settings.php:621
3703
  msgid "Prices Inclusive of Tax"
3704
  msgstr ""
3705
 
3706
+ #: includes/admin/settings/register-settings.php:622
3707
  msgid ""
3708
  "When using prices inclusive of tax, you will be entering your prices as the "
3709
  "total amount you want a customer to pay for the download, including tax. "
3711
  "for the defined total price."
3712
  msgstr ""
3713
 
3714
+ #: includes/admin/settings/register-settings.php:626
3715
  msgid "Display Tax Rate on Prices"
3716
  msgstr ""
3717
 
3718
+ #: includes/admin/settings/register-settings.php:627
3719
  msgid "Some countries require a notice when product prices include tax."
3720
  msgstr ""
3721
 
3722
+ #: includes/admin/settings/register-settings.php:632
3723
  msgid "Display during checkout"
3724
  msgstr ""
3725
 
3726
+ #: includes/admin/settings/register-settings.php:633
3727
  msgid "Should prices on the checkout page be shown with or without tax?"
3728
  msgstr ""
3729
 
3730
+ #: includes/admin/settings/register-settings.php:637
3731
  msgid "Including tax"
3732
  msgstr ""
3733
 
3734
+ #: includes/admin/settings/register-settings.php:638
3735
  msgid "Excluding tax"
3736
  msgstr ""
3737
 
3738
+ #: includes/admin/settings/register-settings.php:640
3739
  msgid "Taxes Displayed for Products on Checkout"
3740
  msgstr ""
3741
 
3742
+ #: includes/admin/settings/register-settings.php:641
3743
  msgid ""
3744
  "This option will determine whether the product price displays with or "
3745
  "without tax on checkout."
3746
  msgstr ""
3747
 
3748
+ #: includes/admin/settings/register-settings.php:659
3749
+ #: includes/admin/settings/register-settings.php:662
3750
  msgid "Redirect to Checkout"
3751
  msgstr ""
3752
 
3753
+ #: includes/admin/settings/register-settings.php:660
3754
  msgid "Immediately redirect to checkout after adding an item to the cart?"
3755
  msgstr ""
3756
 
3757
+ #: includes/admin/settings/register-settings.php:663
3758
  msgid ""
3759
  "When enabled, once an item has been added to the cart, the customer will be "
3760
  "redirected directly to your checkout page. This is useful for stores that "
3761
  "sell single items."
3762
  msgstr ""
3763
 
3764
+ #: includes/admin/settings/register-settings.php:667
3765
  msgid "Cart Item Quantities"
3766
  msgstr ""
3767
 
3768
+ #: includes/admin/settings/register-settings.php:668
3769
  msgid ""
3770
  "Allow quantities to be adjusted when adding %s to the cart, and while "
3771
  "viewing the checkout cart."
3772
  msgstr ""
3773
 
3774
+ #: includes/admin/settings/register-settings.php:673
3775
  msgid "Remove Data on Uninstall?"
3776
  msgstr ""
3777
 
3778
+ #: includes/admin/settings/register-settings.php:674
3779
  msgid ""
3780
  "Check this box if you would like EDD to completely remove all of its data "
3781
  "when the plugin is deleted."
3782
  msgstr ""
3783
 
3784
+ #: includes/admin/settings/register-settings.php:681
3785
  msgid "Enforce SSL on Checkout"
3786
  msgstr ""
3787
 
3788
+ #: includes/admin/settings/register-settings.php:682
3789
  msgid ""
3790
  "Check this to force users to be redirected to the secure checkout page. You "
3791
  "must have an SSL certificate installed to use this option."
3792
  msgstr ""
3793
 
3794
+ #: includes/admin/settings/register-settings.php:687
3795
+ #: includes/admin/settings/register-settings.php:690
3796
  msgid "Require Login"
3797
  msgstr ""
3798
 
3799
+ #: includes/admin/settings/register-settings.php:688
3800
  msgid "Require that users be logged-in to purchase files."
3801
  msgstr ""
3802
 
3803
+ #: includes/admin/settings/register-settings.php:691
3804
  msgid ""
3805
  "You can require that customers create and login to user accounts prior to "
3806
  "purchasing from your store by enabling this option. When unchecked, users "
3807
  "can purchase without being logged in by using their name and email address."
3808
  msgstr ""
3809
 
3810
+ #: includes/admin/settings/register-settings.php:695
3811
  msgid "Show Register / Login Form?"
3812
  msgstr ""
3813
 
3814
+ #: includes/admin/settings/register-settings.php:696
3815
  msgid ""
3816
  "Display the registration and login forms on the checkout page for "
3817
  "non-logged-in users."
3818
  msgstr ""
3819
 
3820
+ #: includes/admin/settings/register-settings.php:700
3821
  msgid "Registration and Login Forms"
3822
  msgstr ""
3823
 
3824
+ #: includes/admin/settings/register-settings.php:701
3825
  msgid "Registration Form Only"
3826
  msgstr ""
3827
 
3828
+ #: includes/admin/settings/register-settings.php:702
3829
  msgid "Login Form Only"
3830
  msgstr ""
3831
 
3832
+ #: includes/admin/settings/register-settings.php:708
3833
  msgid "Multiple Discounts"
3834
  msgstr ""
3835
 
3836
+ #: includes/admin/settings/register-settings.php:709
3837
  msgid "Allow customers to use multiple discounts on the same purchase?"
3838
  msgstr ""
3839
 
3840
+ #: includes/admin/settings/register-settings.php:714
3841
  msgid "Enable Cart Saving"
3842
  msgstr ""
3843
 
3844
+ #: includes/admin/settings/register-settings.php:715
3845
  msgid "Check this to enable cart saving on the checkout."
3846
  msgstr ""
3847
 
3848
+ #: includes/admin/settings/register-settings.php:717
3849
  msgid "Cart Saving"
3850
  msgstr ""
3851
 
3852
+ #: includes/admin/settings/register-settings.php:718
3853
  msgid ""
3854
  "Cart saving allows shoppers to create a temporary link to their current "
3855
  "shopping cart so they can come back to it later, or share it with someone."
3856
  msgstr ""
3857
 
3858
+ #: includes/admin/settings/register-settings.php:724
3859
  msgid "Complete Purchase Text"
3860
  msgstr ""
3861
 
3862
+ #: includes/admin/settings/register-settings.php:725
3863
  msgid "The button label for completing a purchase."
3864
  msgstr ""
3865
 
3866
+ #: includes/admin/settings/register-settings.php:731
3867
  msgid "Register Text"
3868
  msgstr ""
3869
 
3870
+ #: includes/admin/settings/register-settings.php:732
3871
  msgid "The button label for completing a free purchase."
3872
  msgstr ""
3873
 
3874
+ #: includes/admin/settings/register-settings.php:734
3875
  #: includes/checkout/template.php:894
3876
  msgid "Free Download"
3877
  msgstr ""
3878
 
3879
+ #: includes/admin/settings/register-settings.php:738
3880
  msgid "Add to Cart Text"
3881
  msgstr ""
3882
 
3883
+ #: includes/admin/settings/register-settings.php:739
3884
  msgid "Text shown on the Add to Cart Buttons."
3885
  msgstr ""
3886
 
3887
+ #: includes/admin/settings/register-settings.php:745
3888
  msgid "Buy Now Text"
3889
  msgstr ""
3890
 
3891
+ #: includes/admin/settings/register-settings.php:746
3892
  msgid "Text shown on the Buy Now Buttons."
3893
  msgstr ""
3894
 
3895
+ #: includes/admin/settings/register-settings.php:754
3896
+ #: includes/admin/settings/register-settings.php:757
3897
  msgid "Download Method"
3898
  msgstr ""
3899
 
3900
+ #: includes/admin/settings/register-settings.php:755
3901
  msgid "Select the file download method. Note, not all methods work on all servers."
3902
  msgstr ""
3903
 
3904
+ #: includes/admin/settings/register-settings.php:758
3905
  msgid ""
3906
  "Due to its consistency in multiple platforms and better file protection, "
3907
  "'forced' is the default method. Because Easy Digital Downloads uses PHP to "
3912
  "method can help resolve this."
3913
  msgstr ""
3914
 
3915
+ #: includes/admin/settings/register-settings.php:760
3916
  msgid "Forced"
3917
  msgstr ""
3918
 
3919
+ #: includes/admin/settings/register-settings.php:761
3920
  msgid "Redirect"
3921
  msgstr ""
3922
 
3923
+ #: includes/admin/settings/register-settings.php:766
3924
  msgid "Symlink File Downloads?"
3925
  msgstr ""
3926
 
3927
+ #: includes/admin/settings/register-settings.php:767
3928
  msgid ""
3929
  "Check this if you are delivering really large files or having problems with "
3930
  "file downloads completing."
3931
  msgstr ""
3932
 
3933
+ #: includes/admin/settings/register-settings.php:773
3934
  msgid ""
3935
  "The maximum number of times files can be downloaded for purchases. Can be "
3936
  "overwritten for each %s."
3937
  msgstr ""
3938
 
3939
+ #: includes/admin/settings/register-settings.php:776
3940
  msgid "File Download Limits"
3941
  msgstr ""
3942
 
3943
+ #: includes/admin/settings/register-settings.php:777
3944
  msgid ""
3945
  "Set the global default for the number of times a customer can download "
3946
  "items they purchase. Using a value of 0 is unlimited. This can be defined "
3948
  "individual purchase."
3949
  msgstr ""
3950
 
3951
+ #: includes/admin/settings/register-settings.php:781
3952
+ #: includes/admin/settings/register-settings.php:783
3953
  msgid "Download Link Expiration"
3954
  msgstr ""
3955
 
3956
+ #: includes/admin/settings/register-settings.php:782
3957
  msgid ""
3958
  "How long should download links be valid for? Default is 24 hours from the "
3959
  "time they are generated. Enter a time in hours."
3960
  msgstr ""
3961
 
3962
+ #: includes/admin/settings/register-settings.php:784
3963
  msgid ""
3964
  "When a customer receives a link to their downloads via email, in their "
3965
  "receipt, or in their purchase history, the link will only be valid for the "
3968
  "customer."
3969
  msgstr ""
3970
 
3971
+ #: includes/admin/settings/register-settings.php:792
3972
  msgid "Disable Redownload?"
3973
  msgstr ""
3974
 
3975
+ #: includes/admin/settings/register-settings.php:793
3976
  msgid ""
3977
  "Check this if you do not want to allow users to redownload items from their "
3978
  "purchase history."
3979
  msgstr ""
3980
 
3981
+ #: includes/admin/settings/register-settings.php:800
3982
  msgid "Enable SKU Entry"
3983
  msgstr ""
3984
 
3985
+ #: includes/admin/settings/register-settings.php:801
3986
  msgid ""
3987
  "Check this box to allow entry of product SKUs. SKUs will be shown on "
3988
  "purchase receipt and exported purchase histories."
3989
  msgstr ""
3990
 
3991
+ #: includes/admin/settings/register-settings.php:806
3992
  msgid "Sequential Order Numbers"
3993
  msgstr ""
3994
 
3995
+ #: includes/admin/settings/register-settings.php:807
3996
  msgid "Check this box to enable sequential order numbers."
3997
  msgstr ""
3998
 
3999
+ #: includes/admin/settings/register-settings.php:812
4000
  msgid "Sequential Starting Number"
4001
  msgstr ""
4002
 
4003
+ #: includes/admin/settings/register-settings.php:813
4004
  msgid "The number at which the sequence should begin."
4005
  msgstr ""
4006
 
4007
+ #: includes/admin/settings/register-settings.php:820
4008
  msgid "Sequential Number Prefix"
4009
  msgstr ""
4010
 
4011
+ #: includes/admin/settings/register-settings.php:821
4012
  msgid "A prefix to prepend to all sequential order numbers."
4013
  msgstr ""
4014
 
4015
+ #: includes/admin/settings/register-settings.php:826
4016
  msgid "Sequential Number Postfix"
4017
  msgstr ""
4018
 
4019
+ #: includes/admin/settings/register-settings.php:827
4020
  msgid "A postfix to append to all sequential order numbers."
4021
  msgstr ""
4022
 
4023
+ #: includes/admin/settings/register-settings.php:834
4024
  msgid "Agree to Terms"
4025
  msgstr ""
4026
 
4027
+ #: includes/admin/settings/register-settings.php:835
4028
  msgid ""
4029
  "Check this to show an agree to terms on the checkout that users must agree "
4030
  "to before purchasing."
4031
  msgstr ""
4032
 
4033
+ #: includes/admin/settings/register-settings.php:840
4034
  msgid "Agree to Terms Label"
4035
  msgstr ""
4036
 
4037
+ #: includes/admin/settings/register-settings.php:841
4038
  msgid "Label shown next to the agree to terms check box."
4039
  msgstr ""
4040
 
4041
+ #: includes/admin/settings/register-settings.php:847
4042
  msgid "Agreement Text"
4043
  msgstr ""
4044
 
4045
+ #: includes/admin/settings/register-settings.php:848
4046
  msgid "If Agree to Terms is checked, enter the agreement terms here."
4047
  msgstr ""
4048
 
4049
+ #: includes/admin/settings/register-settings.php:858
4050
  msgid "Buy Now Disabled"
4051
  msgstr ""
4052
 
4053
+ #: includes/admin/settings/register-settings.php:859
4054
  msgid ""
4055
  "Buy Now buttons are only available for stores that have a single supported "
4056
  "gateway active and that do not use taxes."
4057
  msgstr ""
4058
 
4059
+ #: includes/admin/settings/register-settings.php:957
4060
  msgid "Settings updated."
4061
  msgstr ""
4062
 
4063
+ #: includes/admin/settings/register-settings.php:1097
4064
  msgid "Error setting default gateway. No gateways are enabled."
4065
  msgstr ""
4066
 
4067
+ #: includes/admin/settings/register-settings.php:1110
4068
  msgid "%s could not be set as the default gateway. It must first be enabled."
4069
  msgstr ""
4070
 
4071
+ #: includes/admin/settings/register-settings.php:1213
4072
  msgid "Licenses"
4073
  msgstr ""
4074
 
4075
+ #: includes/admin/settings/register-settings.php:1216
4076
  msgid "Misc"
4077
  msgstr ""
4078
 
4079
+ #: includes/admin/settings/register-settings.php:1264
4080
  #: includes/gateways/functions.php:25 includes/gateways/paypal-standard.php:33
4081
  msgid "PayPal Standard"
4082
  msgstr ""
4083
 
4084
+ #: includes/admin/settings/register-settings.php:1268
4085
  msgid "Purchase Receipts"
4086
  msgstr ""
4087
 
4088
+ #: includes/admin/settings/register-settings.php:1269
4089
  msgid "New Sale Notifications"
4090
  msgstr ""
4091
 
4092
+ #: includes/admin/settings/register-settings.php:1278
4093
  msgid "Main"
4094
  msgstr ""
4095
 
4096
+ #: includes/admin/settings/register-settings.php:1283 includes/install.php:92
4097
  #: includes/template-functions.php:182 templates/widget-cart-checkout.php:6
4098
  #: templates/widget-cart-empty.php:7
4099
  msgid "Checkout"
4100
  msgstr ""
4101
 
4102
+ #: includes/admin/settings/register-settings.php:1284
4103
  msgid "Button Text"
4104
  msgstr ""
4105
 
4106
+ #: includes/admin/settings/register-settings.php:1286
4107
  msgid "Accounting"
4108
  msgstr ""
4109
 
4110
+ #: includes/admin/settings/register-settings.php:1287
4111
  msgid "Terms of Agreement"
4112
  msgstr ""
4113
 
4114
+ #: includes/admin/settings/register-settings.php:1529
4115
  msgid ""
4116
  "Don't see what you need? More Payment Gateway options are available <a "
4117
  "href=\"%s\">here</a>."
4118
  msgstr ""
4119
 
4120
+ #: includes/admin/settings/register-settings.php:1750
4121
  msgid "The callback function used for the %s setting is missing."
4122
  msgstr ""
4123
 
4124
+ #: includes/admin/settings/register-settings.php:1908
4125
  msgid "Upload File"
4126
  msgstr ""
4127
 
4128
+ #: includes/admin/settings/register-settings.php:2009
4129
  msgid "Country Wide"
4130
  msgstr ""
4131
 
4132
+ #: includes/admin/settings/register-settings.php:2010
4133
  msgid "Rate"
4134
  msgstr ""
4135
 
4136
+ #: includes/admin/settings/register-settings.php:2010
4137
  msgid ""
4138
  "<strong>Regional tax rates: </strong>When a customer enters an address on "
4139
  "checkout that matches the specified region for this tax rate, the cart tax "
4140
  "will adjust automatically. Enter a percentage, such as 6.5 for 6.5%."
4141
  msgstr ""
4142
 
4143
+ #: includes/admin/settings/register-settings.php:2027
4144
+ #: includes/admin/settings/register-settings.php:2072
4145
  msgid "Choose a country"
4146
  msgstr ""
4147
 
4148
+ #: includes/admin/settings/register-settings.php:2042
4149
  msgid "Choose a state"
4150
  msgstr ""
4151
 
4152
+ #: includes/admin/settings/register-settings.php:2054
4153
+ #: includes/admin/settings/register-settings.php:2082
4154
  msgid "Apply to whole country"
4155
  msgstr ""
4156
 
4157
+ #: includes/admin/settings/register-settings.php:2057
4158
+ #: includes/admin/settings/register-settings.php:2085
4159
  msgid "Remove Rate"
4160
  msgstr ""
4161
 
4162
+ #: includes/admin/settings/register-settings.php:2090
4163
  msgid "Add Tax Rate"
4164
  msgstr ""
4165
 
4166
+ #: includes/admin/settings/register-settings.php:2143
4167
  msgid ""
4168
  "Your license key expired on %s. Please <a href=\"%s\" "
4169
  "target=\"_blank\">renew your license key</a>."
4170
  msgstr ""
4171
 
4172
+ #: includes/admin/settings/register-settings.php:2156
4173
  msgid ""
4174
  "Your license key has been disabled. Please <a href=\"%s\" "
4175
  "target=\"_blank\">contact support</a> for more information."
4176
  msgstr ""
4177
 
4178
+ #: includes/admin/settings/register-settings.php:2168
4179
  msgid ""
4180
  "Invalid license. Please <a href=\"%s\" target=\"_blank\">visit your account "
4181
  "page</a> and verify it."
4182
  msgstr ""
4183
 
4184
+ #: includes/admin/settings/register-settings.php:2181
4185
  msgid ""
4186
  "Your %s is not active for this URL. Please <a href=\"%s\" "
4187
  "target=\"_blank\">visit your account page</a> to manage your license key "
4188
  "URLs."
4189
  msgstr ""
4190
 
4191
+ #: includes/admin/settings/register-settings.php:2193
4192
  msgid "This appears to be an invalid license key for %s."
4193
  msgstr ""
4194
 
4195
+ #: includes/admin/settings/register-settings.php:2202
4196
  msgid ""
4197
  "Your license key has reached its activation limit. <a href=\"%s\">View "
4198
  "possible upgrades</a> now."
4199
  msgstr ""
4200
 
4201
+ #: includes/admin/settings/register-settings.php:2211
4202
  msgid ""
4203
  "The key you entered belongs to a bundle, please use the product specific "
4204
  "license key."
4205
  msgstr ""
4206
 
4207
+ #: includes/admin/settings/register-settings.php:2219
4208
  msgid "unknown_error"
4209
  msgstr ""
4210
 
4211
+ #: includes/admin/settings/register-settings.php:2220
4212
  msgid ""
4213
  "There was an error with this license key: %s. Please <a href=\"%s\">contact "
4214
  "our support team</a>."
4215
  msgstr ""
4216
 
4217
+ #: includes/admin/settings/register-settings.php:2240
4218
  msgid "License key never expires."
4219
  msgstr ""
4220
 
4221
+ #: includes/admin/settings/register-settings.php:2247
4222
  msgid ""
4223
  "Your license key expires soon! It expires on %s. <a href=\"%s\" "
4224
  "target=\"_blank\">Renew your license key</a>."
4225
  msgstr ""
4226
 
4227
+ #: includes/admin/settings/register-settings.php:2257
4228
  msgid "Your license key expires on %s."
4229
  msgstr ""
4230
 
4231
+ #: includes/admin/settings/register-settings.php:2275
4232
  msgid "To receive updates, please enter your valid %s license key."
4233
  msgstr ""
4234
 
4235
+ #: includes/admin/settings/register-settings.php:2288
4236
  msgid "Deactivate License"
4237
  msgstr ""
4238
 
4331
  msgid "Use these tools to recount / reset store stats."
4332
  msgstr ""
4333
 
4334
+ #: includes/admin/tools.php:144 includes/scripts.php:90
4335
  msgid "Please select an option"
4336
  msgstr ""
4337
 
5139
  msgstr ""
5140
 
5141
  #: includes/checkout/template.php:748 includes/process-purchase.php:350
5142
+ #: includes/scripts.php:67
5143
  msgid "Enter discount"
5144
  msgstr ""
5145
 
5494
  msgid "Can't get property %s"
5495
  msgstr ""
5496
 
5497
+ #: includes/class-edd-discount.php:1508
5498
  msgid "This discount has reached its maximum usage."
5499
  msgstr ""
5500
 
5501
+ #: includes/class-edd-discount.php:1542
5502
  msgid "Minimum order of %s not met."
5503
  msgstr ""
5504
 
5505
+ #: includes/class-edd-discount.php:1630 includes/class-edd-discount.php:1659
5506
  msgid "The product requirements for this discount are not met."
5507
  msgstr ""
5508
 
5509
+ #: includes/class-edd-discount.php:1677
5510
  msgid "This discount is not valid for the cart contents."
5511
  msgstr ""
5512
 
5513
+ #: includes/class-edd-discount.php:1767
5514
  msgid "This discount has already been redeemed."
5515
  msgstr ""
5516
 
5517
+ #: includes/class-edd-discount.php:1848
5518
  msgid "This discount is expired."
5519
  msgstr ""
5520
 
5521
+ #: includes/class-edd-discount.php:1853
5522
  msgid "This discount is not active."
5523
  msgstr ""
5524
 
5526
  msgid "New Download Product"
5527
  msgstr ""
5528
 
5529
+ #: includes/class-edd-html-elements.php:44 includes/scripts.php:214
5530
  msgid "Choose a %s"
5531
  msgstr ""
5532
 
6119
  msgid "You must enable a payment gateway to use Easy Digital Downloads"
6120
  msgstr ""
6121
 
6122
+ #: includes/gateways/amazon-payments.php:214
6123
  msgid "There is an error with the Amazon Payments configuration."
6124
  msgstr ""
6125
 
6126
+ #: includes/gateways/amazon-payments.php:286
6127
+ #: includes/gateways/amazon-payments.php:287
6128
  msgid "Amazon"
6129
  msgstr ""
6130
 
6131
+ #: includes/gateways/amazon-payments.php:339
6132
  msgid "Amazon Payments"
6133
  msgstr ""
6134
 
6135
+ #: includes/gateways/amazon-payments.php:357
6136
  msgid "Amazon Payments Settings"
6137
  msgstr ""
6138
 
6139
+ #: includes/gateways/amazon-payments.php:362
6140
  msgid "Register with Amazon"
6141
  msgstr ""
6142
 
6143
+ #: includes/gateways/amazon-payments.php:364
6144
  msgid "Connect Easy Digital Downloads to Amazon"
6145
  msgstr ""
6146
 
6147
+ #: includes/gateways/amazon-payments.php:367
6148
  msgid "Once registration is complete, enter your API credentials below."
6149
  msgstr ""
6150
 
6151
+ #: includes/gateways/amazon-payments.php:373
6152
  msgid "Seller ID"
6153
  msgstr ""
6154
 
6155
+ #: includes/gateways/amazon-payments.php:374
6156
  msgid "Found in the Integration settings. Also called a Merchant ID"
6157
  msgstr ""
6158
 
6159
+ #: includes/gateways/amazon-payments.php:380
6160
  msgid "MWS Access Key"
6161
  msgstr ""
6162
 
6163
+ #: includes/gateways/amazon-payments.php:381
6164
+ #: includes/gateways/amazon-payments.php:388
6165
  msgid "Found on Seller Central in the MWS Keys section"
6166
  msgstr ""
6167
 
6168
+ #: includes/gateways/amazon-payments.php:387
6169
  msgid "MWS Secret Key"
6170
  msgstr ""
6171
 
6172
+ #: includes/gateways/amazon-payments.php:394
6173
  msgid "Client ID"
6174
  msgstr ""
6175
 
6176
+ #: includes/gateways/amazon-payments.php:395
6177
  msgid "The Amazon Client ID. Should look like `amzn1.application-oa2...`"
6178
  msgstr ""
6179
 
6180
+ #: includes/gateways/amazon-payments.php:401
6181
  msgid "Amazon MWS Callback URL"
6182
  msgstr ""
6183
 
6184
+ #: includes/gateways/amazon-payments.php:402
6185
  msgid ""
6186
  "The Return URL to provide in your MWS Application. Enter this under your "
6187
  "Login and Pay &rarr; Web Settings"
6188
  msgstr ""
6189
 
6190
+ #: includes/gateways/amazon-payments.php:410
6191
  msgid "Amazon Merchant IPN URL"
6192
  msgstr ""
6193
 
6194
+ #: includes/gateways/amazon-payments.php:411
6195
  msgid ""
6196
  "The IPN URL to provide in your MWS account. Enter this under your <a "
6197
  "href=\"%s\">Integration Settings</a>"
6198
  msgstr ""
6199
 
6200
+ #: includes/gateways/amazon-payments.php:721
6201
  msgid "Currently logged into Amazon as"
6202
  msgstr ""
6203
 
6204
+ #: includes/gateways/amazon-payments.php:722
6205
  msgid "Logout"
6206
  msgstr ""
6207
 
6208
+ #: includes/gateways/amazon-payments.php:879
6209
+ #: includes/gateways/amazon-payments.php:894
6210
  msgid "Missing Reference ID, please try again"
6211
  msgstr ""
6212
 
6213
+ #: includes/gateways/amazon-payments.php:930
6214
  msgid ""
6215
  "Your payment could not be authorized, please try a different payment "
6216
  "method. Reason: %s"
6217
  msgstr ""
6218
 
6219
+ #: includes/gateways/amazon-payments.php:977
6220
  msgid "There was an issue processing your payment. Amazon error: %s"
6221
  msgstr ""
6222
 
6223
+ #: includes/gateways/amazon-payments.php:1113
6224
  msgid "Invalid Amazon seller ID"
6225
  msgstr ""
6226
 
6227
+ #: includes/gateways/amazon-payments.php:1113
6228
+ #: includes/gateways/amazon-payments.php:1167
6229
  #: includes/gateways/paypal-standard.php:404
6230
  #: includes/gateways/paypal-standard.php:410
6231
  #: includes/gateways/paypal-standard.php:484
6235
  msgid "IPN Error"
6236
  msgstr ""
6237
 
6238
+ #: includes/gateways/amazon-payments.php:1137
6239
  msgid "Capture declined in Amazon"
6240
  msgstr ""
6241
 
6242
+ #: includes/gateways/amazon-payments.php:1155
6243
+ #: includes/gateways/amazon-payments.php:1243
6244
  msgid "Refund completed in Amazon. Refund ID: %s"
6245
  msgstr ""
6246
 
6247
+ #: includes/gateways/amazon-payments.php:1236
6248
  msgid "Refund declined in Amazon. Refund ID: %s"
6249
  msgstr ""
6250
 
6251
+ #: includes/gateways/amazon-payments.php:1249
6252
  msgid "Refund initiated in Amazon. Reference ID: %s"
6253
  msgstr ""
6254
 
6255
+ #: includes/gateways/amazon-payments.php:1258
6256
  msgid "Refund request failed in Amazon."
6257
  msgstr ""
6258
 
7045
  msgid "File not found"
7046
  msgstr ""
7047
 
7048
+ #: includes/process-purchase.php:31 includes/scripts.php:88
7049
  msgid "Your cart is empty"
7050
  msgstr ""
7051
 
7147
  msgid "You do not have permission to view this file."
7148
  msgstr ""
7149
 
7150
+ #: includes/scripts.php:65
7151
  msgid "Please select a payment method"
7152
  msgstr ""
7153
 
7154
+ #: includes/scripts.php:66
7155
  msgid "Please enter a discount code"
7156
  msgstr ""
7157
 
7158
+ #: includes/scripts.php:68
7159
  msgid "Discount Applied"
7160
  msgstr ""
7161
 
7162
+ #: includes/scripts.php:69
7163
  msgid "Please enter an email address before applying a discount code"
7164
  msgstr ""
7165
 
7166
+ #: includes/scripts.php:70
7167
  msgid "Please enter a username before applying a discount code"
7168
  msgstr ""
7169
 
7170
+ #: includes/scripts.php:71
7171
  msgid "Please Wait..."
7172
  msgstr ""
7173
 
7174
+ #: includes/scripts.php:87
7175
  msgid "You have already added this item to your cart"
7176
  msgstr ""
7177
 
7178
+ #: includes/scripts.php:89 includes/template-functions.php:177
7179
  msgid "Loading"
7180
  msgstr ""
7181
 
7182
+ #: includes/scripts.php:200
7183
  msgid "Add New Download"
7184
  msgstr ""
7185
 
7186
+ #: includes/scripts.php:201
7187
  msgid "Use This File"
7188
  msgstr ""
7189
 
7190
+ #: includes/scripts.php:202
7191
  msgid "Sorry, not available for variable priced products."
7192
  msgstr ""
7193
 
7194
+ #: includes/scripts.php:203
7195
  msgid "Are you sure you wish to delete this payment?"
7196
  msgstr ""
7197
 
7198
+ #: includes/scripts.php:204
7199
  msgid "Are you sure you wish to delete this note?"
7200
  msgstr ""
7201
 
7202
+ #: includes/scripts.php:205
7203
  msgid "Are you sure you wish to delete this tax rate?"
7204
  msgstr ""
7205
 
7206
+ #: includes/scripts.php:206
7207
  msgid "Are you sure you wish to revoke this API key?"
7208
  msgstr ""
7209
 
7210
+ #: includes/scripts.php:207
7211
  msgid "Are you sure you wish to regenerate this API key?"
7212
  msgstr ""
7213
 
7214
+ #: includes/scripts.php:208
7215
  msgid "Are you sure you wish to resend the purchase receipt?"
7216
  msgstr ""
7217
 
7218
+ #: includes/scripts.php:209
7219
  msgid "Copy these links to your clipboard and give them to your customer"
7220
  msgstr ""
7221
 
7222
+ #: includes/scripts.php:210
7223
  msgid "Are you sure you wish to delete this %s?"
7224
  msgstr ""
7225
 
7226
+ #: includes/scripts.php:211
7227
  msgid "You must have at least one price"
7228
  msgstr ""
7229
 
7230
+ #: includes/scripts.php:212
7231
  msgid "You must have at least one field"
7232
  msgstr ""
7233
 
7234
+ #: includes/scripts.php:213
7235
  msgid "Payments must contain at least one item"
7236
  msgstr ""
7237
 
7238
+ #: includes/scripts.php:215
7239
  msgid "Choose one or more %s"
7240
  msgstr ""
7241
 
7242
+ #: includes/scripts.php:216
7243
  msgid "Item price must be numeric"
7244
  msgstr ""
7245
 
7246
+ #: includes/scripts.php:217
7247
  msgid "Item tax must be numeric"
7248
  msgstr ""
7249
 
7250
+ #: includes/scripts.php:218
7251
  msgid "Quantity must be numeric"
7252
  msgstr ""
7253
 
7254
+ #: includes/scripts.php:227
7255
  msgid "Type to search %s"
7256
  msgstr ""
7257
 
7258
+ #: includes/scripts.php:229
7259
  msgid "You must choose a method."
7260
  msgstr ""
7261
 
7262
+ #: includes/scripts.php:230
7263
  msgid "Required fields not completed."
7264
  msgstr ""
7265
 
7266
+ #: includes/scripts.php:231
7267
  msgid ""
7268
  "Are you sure you want to reset your store? This process is <strong><em>not "
7269
  "reversible</em></strong>. Please be sure you have a recent backup."
7270
  msgstr ""
7271
 
7272
+ #: includes/scripts.php:232
7273
  msgid ""
7274
  "We are sorry but your browser is not compatible with this kind of file "
7275
  "upload. Please upgrade your browser."
7276
  msgstr ""
7277
 
7278
+ #: includes/scripts.php:234
7279
  msgid "Hide advanced settings"
7280
  msgstr ""
7281
 
7282
+ #: includes/scripts.php:245
7283
  msgid "Purchase Limit Settings"
7284
  msgstr ""
7285
 
7286
+ #: includes/scripts.php:246
7287
  msgid "Simple Shipping Settings"
7288
  msgstr ""
7289
 
7290
+ #: includes/scripts.php:247
7291
  msgid "Software Licensing Settings"
7292
  msgstr ""
7293
 
7294
+ #: includes/scripts.php:248
7295
  msgid "Recurring Payments Settings"
7296
  msgstr ""
7297
 
7850
  msgid "Apply"
7851
  msgstr ""
7852
 
7853
+ #: includes/class-edd-discount.php:1439
7854
  msgctxt "error shown when attempting to use a discount before its start date"
7855
  msgid "This discount is invalid."
7856
  msgstr ""
7857
 
7858
+ #: includes/class-edd-discount.php:1816
7859
  msgctxt "error for when a discount is invalid based on its configuration"
7860
  msgid "This discount is invalid."
7861
  msgstr ""
readme.txt CHANGED
@@ -6,7 +6,7 @@ Donate link: https://easydigitaldownloads.com/donate/
6
  Tags: download, downloads, e-store, eshop, digital downloads, e-commerce, wp-ecommerce, wp ecommerce, ecommerce, ebook
7
  Requires at least: 4.4
8
  Tested up to: 4.9
9
- Stable Tag: 2.8.5
10
  License: GNU Version 2 or Any Later Version
11
 
12
  The easiest way to sell digital products with WordPress.
@@ -213,6 +213,15 @@ Yes. Easy Digital Downloads also includes default support for Amazon Payments an
213
 
214
  == Changelog ==
215
 
 
 
 
 
 
 
 
 
 
216
  = 2.8.5, September 7, 2017 =
217
 
218
  * Fix: The Product Dropdown helper function included products in the trash.
6
  Tags: download, downloads, e-store, eshop, digital downloads, e-commerce, wp-ecommerce, wp ecommerce, ecommerce, ebook
7
  Requires at least: 4.4
8
  Tested up to: 4.9
9
+ Stable Tag: 2.8.6
10
  License: GNU Version 2 or Any Later Version
11
 
12
  The easiest way to sell digital products with WordPress.
213
 
214
  == Changelog ==
215
 
216
+ = 2.8.6, September 11, 2017 =
217
+
218
+ * Fix: Amazon Payments could cause Javascript error on checkout.
219
+ * Fix: edd_delete_option() helper function failed to fully remove option.
220
+ * Fix: It was possible to create a discount using edd_store_discount() without specifying a discount code.
221
+ * Fix: User Address information could be stored with boolean 'false' instead of an empty string.
222
+ * New: Made URLs included in payment notes clickable links.
223
+ * New: Added filter edd_load_scripts_in_footer to allow programmatic modifications of where frontend scripts are loaded.
224
+
225
  = 2.8.5, September 7, 2017 =
226
 
227
  * Fix: The Product Dropdown helper function included products in the trash.