Easy Digital Downloads - Version 2.6.4

Version Description

Download this release

Release Info

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

Code changes from version 2.6.3 to 2.6.4

easy-digital-downloads.php CHANGED
@@ -5,7 +5,7 @@
5
  * Description: The easiest way to sell digital products with WordPress.
6
  * Author: Pippin Williamson and Company
7
  * Author URI: https://easydigitaldownloads.com
8
- * Version: 2.6.3
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.6.3
29
  */
30
 
31
  // Exit if accessed directly.
@@ -195,7 +195,7 @@ final class Easy_Digital_Downloads {
195
 
196
  // Plugin version.
197
  if ( ! defined( 'EDD_VERSION' ) ) {
198
- define( 'EDD_VERSION', '2.6.3' );
199
  }
200
 
201
  // Plugin Folder Path.
5
  * Description: The easiest way to sell digital products with WordPress.
6
  * Author: Pippin Williamson and Company
7
  * Author URI: https://easydigitaldownloads.com
8
+ * Version: 2.6.4
9
  * Text Domain: easy-digital-downloads
10
  * Domain Path: languages
11
  *
25
  * @package EDD
26
  * @category Core
27
  * @author Pippin Williamson
28
+ * @version 2.6.4
29
  */
30
 
31
  // Exit if accessed directly.
195
 
196
  // Plugin version.
197
  if ( ! defined( 'EDD_VERSION' ) ) {
198
+ define( 'EDD_VERSION', '2.6.4' );
199
  }
200
 
201
  // Plugin Folder Path.
includes/admin/import/class-batch-import-downloads.php CHANGED
@@ -106,6 +106,38 @@ class EDD_Batch_Downloads_Import extends EDD_Batch_Import {
106
  }
107
  }
108
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
109
  $download_id = wp_insert_post( $args );
110
 
111
  // setup categories
@@ -475,4 +507,4 @@ class EDD_Batch_Downloads_Import extends EDD_Batch_Import {
475
  return edd_get_label_plural( true );
476
  }
477
 
478
- }
106
  }
107
  }
108
 
109
+ // Format the date properly
110
+ if ( ! empty( $args['post_date'] ) ) {
111
+
112
+ $timestamp = strtotime( $args['post_date'], current_time( 'timestamp' ) );
113
+ $date = date( 'Y-n-d H:i:s', $timestamp );
114
+
115
+ // If the date provided results in a date string, use it, or just default to today so it imports
116
+ if ( ! empty( $date ) ) {
117
+ $args['post_date'] = $date;
118
+ } else {
119
+ $date = '';
120
+ }
121
+
122
+ }
123
+
124
+
125
+ // Detect any status that could map to `publish`
126
+ if ( ! empty( $args['post_status'] ) ) {
127
+
128
+ $published_statuses = array(
129
+ 'live',
130
+ 'published',
131
+ );
132
+
133
+ $current_status = strtolower( $args['post_status'] );
134
+
135
+ if ( in_array( $current_status, $published_statuses ) ) {
136
+ $args['post_status'] = 'publish';
137
+ }
138
+
139
+ }
140
+
141
  $download_id = wp_insert_post( $args );
142
 
143
  // setup categories
507
  return edd_get_label_plural( true );
508
  }
509
 
510
+ }
includes/admin/import/class-batch-import-payments.php CHANGED
@@ -151,6 +151,10 @@ class EDD_Batch_Payments_Import extends EDD_Batch_Import {
151
 
152
  $date = date( 'Y-n-d H:i:s', current_time( 'timestamp' ) );
153
 
 
 
 
 
154
  }
155
 
156
  $payment->date = $date;
151
 
152
  $date = date( 'Y-n-d H:i:s', current_time( 'timestamp' ) );
153
 
154
+ } else {
155
+
156
+ $date = date( 'Y-n-d H:i:s', strtotime( $date ) );
157
+
158
  }
159
 
160
  $payment->date = $date;
includes/admin/settings/register-settings.php CHANGED
@@ -280,6 +280,15 @@ function edd_get_registered_settings() {
280
  'chosen' => true,
281
  'placeholder' => __( 'Select a page', 'easy-digital-downloads' ),
282
  ),
 
 
 
 
 
 
 
 
 
283
  'locale_settings' => array(
284
  'id' => 'locale_settings',
285
  'name' => '<h3>' . __( 'Store Location', 'easy-digital-downloads' ) . '</h3>',
280
  'chosen' => true,
281
  'placeholder' => __( 'Select a page', 'easy-digital-downloads' ),
282
  ),
283
+ 'login_redirect_page' => array(
284
+ 'id' => 'login_redirect_page',
285
+ 'name' => __( 'Login Redirect Page', 'easy-digital-downloads' ),
286
+ 'desc' => __( 'This is the page where buyers will be redirected by default once they log in. The [edd_login redirect="'.trailingslashit( home_url() ).'"] short code with the redirect attribute can override this setting.', 'easy-digital-downloads' ),
287
+ 'type' => 'select',
288
+ 'options' => edd_get_pages(),
289
+ 'chosen' => true,
290
+ 'placeholder' => __( 'Select a page', 'easy-digital-downloads' ),
291
+ ),
292
  'locale_settings' => array(
293
  'id' => 'locale_settings',
294
  'name' => '<h3>' . __( 'Store Location', 'easy-digital-downloads' ) . '</h3>',
includes/cart/functions.php CHANGED
@@ -22,6 +22,23 @@ function edd_get_cart_contents() {
22
  $cart = EDD()->session->get( 'edd_cart' );
23
  $cart = ! empty( $cart ) ? array_values( $cart ) : array();
24
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
25
  return apply_filters( 'edd_cart_contents', $cart );
26
  }
27
 
@@ -139,12 +156,13 @@ function edd_get_cart_quantity() {
139
  * @return string Cart key of the new item
140
  */
141
  function edd_add_to_cart( $download_id, $options = array() ) {
142
- $download = get_post( $download_id );
143
 
144
- if( 'download' != $download->post_type )
145
  return; // Not a download product
 
146
 
147
- if ( ! current_user_can( 'edit_post', $download->ID ) && $download->post_status != 'publish' ) {
148
  return; // Do not allow draft/pending to be purchased if can't edit. Fixes #1056
149
  }
150
 
22
  $cart = EDD()->session->get( 'edd_cart' );
23
  $cart = ! empty( $cart ) ? array_values( $cart ) : array();
24
 
25
+ $cart_count = count( $cart );
26
+
27
+ foreach ( $cart as $key => $item ) {
28
+ $download = new EDD_Download( $item['id'] );
29
+
30
+ // If the item is not a download or it's status has changed since it was added to the cart.
31
+ if ( empty( $download->ID ) || ! $download->can_purchase() ) {
32
+ unset( $cart[ $key ] );
33
+ }
34
+
35
+ }
36
+
37
+ // We've removed items, reset the cart session
38
+ if ( count( $cart ) < $cart_count ) {
39
+ EDD()->session->set( 'edd_cart', $cart );
40
+ }
41
+
42
  return apply_filters( 'edd_cart_contents', $cart );
43
  }
44
 
156
  * @return string Cart key of the new item
157
  */
158
  function edd_add_to_cart( $download_id, $options = array() ) {
159
+ $download = new EDD_Download( $download_id );
160
 
161
+ if( empty( $download->ID ) ) {
162
  return; // Not a download product
163
+ }
164
 
165
+ if ( ! $download->can_purchase() ) {
166
  return; // Do not allow draft/pending to be purchased if can't edit. Fixes #1056
167
  }
168
 
includes/class-edd-download.php CHANGED
@@ -827,4 +827,22 @@ class EDD_Download {
827
  return false;
828
  }
829
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
830
  }
827
  return false;
828
  }
829
 
830
+ /**
831
+ * Checks if the download can be purchased
832
+ *
833
+ * NOTE: Currently only checks on edd_get_cart_contents() and edd_add_to_cart()
834
+ *
835
+ * @since 2.6.4
836
+ * @return bool If the current user can purcahse the download ID
837
+ */
838
+ public function can_purchase() {
839
+ $can_purchase = true;
840
+
841
+ if ( ! current_user_can( 'edit_post', $this->ID ) && $this->post_status != 'publish' ) {
842
+ $can_purchase = false;
843
+ }
844
+
845
+ return (bool) apply_filters( 'edd_can_purchase_download', $can_purchase, $this );
846
+ }
847
+
848
  }
includes/gateways/paypal-standard.php CHANGED
@@ -262,8 +262,9 @@ function edd_process_paypal_purchase( $purchase_data ) {
262
  $paypal_args['quantity_' . $i ] = '1';
263
  $paypal_args['amount_' . $i ] = edd_sanitize_amount( $fee['amount'] );
264
  $i++;
265
- } else {
266
- // This is a negative fee (discount)
 
267
  $discounted_amount += abs( $fee['amount'] );
268
  }
269
  }
262
  $paypal_args['quantity_' . $i ] = '1';
263
  $paypal_args['amount_' . $i ] = edd_sanitize_amount( $fee['amount'] );
264
  $i++;
265
+ } else if ( empty( $fee['download_id'] ) ) {
266
+
267
+ // This is a negative fee (discount) not assigned to a specific Download
268
  $discounted_amount += abs( $fee['amount'] );
269
  }
270
  }
includes/install.php CHANGED
@@ -331,8 +331,9 @@ function edd_install_roles_on_network() {
331
  if( ! is_object( $wp_roles ) ) {
332
  return;
333
  }
 
334
 
335
- if( ! array_key_exists( 'shop_manager', $wp_roles->roles ) ) {
336
 
337
  // Create EDD shop roles
338
  $roles = new EDD_Roles;
331
  if( ! is_object( $wp_roles ) ) {
332
  return;
333
  }
334
+
335
 
336
+ if( empty( $wp_roles->roles ) || ! array_key_exists( 'shop_manager', $wp_roles->roles ) ) {
337
 
338
  // Create EDD shop roles
339
  $roles = new EDD_Roles;
includes/misc-functions.php CHANGED
@@ -173,7 +173,12 @@ function edd_get_ip() {
173
  } elseif( ! empty( $_SERVER['REMOTE_ADDR'] ) ) {
174
  $ip = $_SERVER['REMOTE_ADDR'];
175
  }
176
- return apply_filters( 'edd_get_ip', $ip );
 
 
 
 
 
177
  }
178
 
179
 
173
  } elseif( ! empty( $_SERVER['REMOTE_ADDR'] ) ) {
174
  $ip = $_SERVER['REMOTE_ADDR'];
175
  }
176
+
177
+ // Fix potential CSV returned from $_SERVER variables
178
+ $ip_array = explode( ',', $ip );
179
+ $ip_array = array_map( 'trim', $ip_array );
180
+
181
+ return apply_filters( 'edd_get_ip', $ip_array[0] );
182
  }
183
 
184
 
includes/payments/class-edd-payment.php CHANGED
@@ -1928,20 +1928,16 @@ class EDD_Payment {
1928
  * @return int The User ID
1929
  */
1930
  private function setup_user_id() {
1931
- $user_id = $this->get_meta( '_edd_payment_user_id', true );
 
1932
 
1933
- if( empty( $user_id ) ) {
 
1934
 
1935
- $customer = new EDD_Customer( $this->customer_id );
1936
-
1937
- if( ! empty( $customer->user_id ) ) {
1938
-
1939
- $user_id = $customer->user_id;
1940
 
1941
- // Backfill the user ID
1942
- $this->update_meta( '_edd_payment_user_id', $user_id );
1943
-
1944
- }
1945
 
1946
  }
1947
 
1928
  * @return int The User ID
1929
  */
1930
  private function setup_user_id() {
1931
+ $user_id = $this->get_meta( '_edd_payment_user_id', true );
1932
+ $customer = new EDD_Customer( $this->customer_id );
1933
 
1934
+ // Make sure it exists, and that it matches that of the associted customer record
1935
+ if( empty( $user_id ) || ( ! empty( $customer->user_id ) && (int) $user_id !== (int) $customer->user_id ) ) {
1936
 
1937
+ $user_id = $customer->user_id;
 
 
 
 
1938
 
1939
+ // Backfill the user ID, or reset it to be correct in the event of data corruption
1940
+ $this->update_meta( '_edd_payment_user_id', $user_id );
 
 
1941
 
1942
  }
1943
 
includes/shortcodes.php CHANGED
@@ -58,7 +58,10 @@ function edd_download_shortcode( $atts, $content = null ) {
58
  if( ! empty( $atts['sku'] ) ) {
59
 
60
  $download = edd_get_download_by( 'sku', $atts['sku'] );
61
- $atts['download_id'] = $download->ID;
 
 
 
62
 
63
  } elseif( isset( $atts['id'] ) ) {
64
 
@@ -181,6 +184,11 @@ function edd_login_form_shortcode( $atts, $content = null ) {
181
  'redirect' => $redirect
182
  ), $atts, 'edd_login' )
183
  );
 
 
 
 
 
184
  return edd_login_form( $redirect );
185
  }
186
  add_shortcode( 'edd_login', 'edd_login_form_shortcode' );
58
  if( ! empty( $atts['sku'] ) ) {
59
 
60
  $download = edd_get_download_by( 'sku', $atts['sku'] );
61
+
62
+ if ( $download ) {
63
+ $atts['download_id'] = $download->ID;
64
+ }
65
 
66
  } elseif( isset( $atts['id'] ) ) {
67
 
184
  'redirect' => $redirect
185
  ), $atts, 'edd_login' )
186
  );
187
+
188
+ if ( empty( $redirect ) ) {
189
+ $redirect = get_permalink( edd_get_option( 'login_redirect_page', '' ) );
190
+ }
191
+
192
  return edd_login_form( $redirect );
193
  }
194
  add_shortcode( 'edd_login', 'edd_login_form_shortcode' );
languages/easy-digital-downloads.pot CHANGED
@@ -2,16 +2,16 @@
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.6.2\n"
6
  "Report-Msgid-Bugs-To: https://easydigitaldownloads.com/\n"
7
- "POT-Creation-Date: 2016-06-30 21:21:21+00:00\n"
8
  "MIME-Version: 1.0\n"
9
  "Content-Type: text/plain; charset=utf-8\n"
10
  "Content-Transfer-Encoding: 8bit\n"
11
  "PO-Revision-Date: 2016-MO-DA HO:MI+ZONE\n"
12
  "Last-Translator: WP-Translations (http://wp-translations.org/)\n"
13
  "Language-Team: WP-Translations <wpt@wp-translations.org>\n"
14
- "X-Generator: grunt-wp-i18n 0.5.0\n"
15
  "X-Poedit-KeywordsList: "
16
  "__;_e;_x:1,2c;_ex:1,2c;_n:1,2;_nx:1,2,4c;_n_noop:1,2;_nx_noop:1,2,3c;esc_"
17
  "attr__;esc_html__;esc_attr_e;esc_html_e;esc_attr_x:1,2c;esc_html_x:1,2c;\n"
@@ -91,7 +91,7 @@ msgstr ""
91
  #: includes/admin/upgrades/upgrade-functions.php:1103
92
  #: includes/api/class-edd-api.php:1836 includes/api/class-edd-api.php:1841
93
  #: includes/api/class-edd-api.php:1853 includes/api/class-edd-api.php:1855
94
- #: includes/cart/functions.php:1178 includes/cart/functions.php:1195
95
  #: includes/class-edd-license-handler.php:304
96
  #: includes/deprecated-functions.php:517 includes/deprecated-functions.php:532
97
  #: includes/deprecated-functions.php:542 includes/download-functions.php:1228
@@ -174,7 +174,7 @@ msgstr ""
174
 
175
  #: includes/admin/admin-pages.php:43 includes/admin/plugins.php:58
176
  #: includes/admin/settings/contextual-help.php:87
177
- #: includes/admin/settings/register-settings.php:1142
178
  msgid "Extensions"
179
  msgstr ""
180
 
@@ -594,7 +594,7 @@ msgid "City"
594
  msgstr ""
595
 
596
  #: includes/admin/customers/customers.php:247
597
- #: includes/admin/settings/register-settings.php:1832
598
  #: includes/admin/tools.php:573 includes/checkout/template.php:417
599
  #: templates/shortcode-profile-editor.php:145
600
  msgid "State / Province"
@@ -685,7 +685,7 @@ msgstr ""
685
 
686
  #: includes/admin/customers/customers.php:379
687
  #: includes/admin/payments/view-order-details.php:360
688
- #: includes/admin/settings/register-settings.php:1835 includes/scripts.php:216
689
  #: templates/checkout_cart.php:57 templates/checkout_cart.php:75
690
  #: templates/shortcode-profile-editor.php:114
691
  msgid "Remove"
@@ -1154,7 +1154,7 @@ msgstr ""
1154
 
1155
  #: includes/admin/discounts/contextual-help.php:38
1156
  #: includes/admin/settings/contextual-help.php:42
1157
- #: includes/admin/settings/register-settings.php:1135
1158
  #: includes/admin/tools.php:68
1159
  msgid "General"
1160
  msgstr ""
@@ -1595,7 +1595,7 @@ msgid "Mark this product as exclusive of tax"
1595
  msgstr ""
1596
 
1597
  #: includes/admin/downloads/metabox.php:847
1598
- #: includes/admin/settings/register-settings.php:759
1599
  #: includes/admin/thickbox.php:58 includes/checkout/template.php:844
1600
  #: includes/scripts.php:60 includes/shortcodes.php:49
1601
  #: includes/template-functions.php:67
@@ -1637,13 +1637,13 @@ msgid ""
1637
  msgstr ""
1638
 
1639
  #: includes/admin/downloads/metabox.php:920
1640
- #: includes/admin/settings/register-settings.php:766
1641
  #: includes/admin/thickbox.php:96
1642
  msgid "Add to Cart"
1643
  msgstr ""
1644
 
1645
  #: includes/admin/downloads/metabox.php:921
1646
- #: includes/admin/settings/register-settings.php:773 includes/shortcodes.php:47
1647
  #: includes/template-functions.php:67
1648
  msgid "Buy Now"
1649
  msgstr ""
@@ -1684,12 +1684,12 @@ msgstr ""
1684
  msgid "You do not have permission to import data."
1685
  msgstr ""
1686
 
1687
- #: includes/admin/import/class-batch-import-payments.php:269
1688
  #: includes/admin/reporting/export/class-batch-export-payments.php:53
1689
  msgid "Products (Raw)"
1690
  msgstr ""
1691
 
1692
- #: includes/admin/import/class-batch-import-payments.php:580
1693
  msgid "payments"
1694
  msgstr ""
1695
 
@@ -2024,7 +2024,7 @@ msgid "Discount Code"
2024
  msgstr ""
2025
 
2026
  #: includes/admin/payments/view-order-details.php:115
2027
- #: includes/admin/settings/register-settings.php:730
2028
  msgid "None"
2029
  msgstr ""
2030
 
@@ -2184,12 +2184,12 @@ msgid "Street Address Line 2:"
2184
  msgstr ""
2185
 
2186
  #: includes/admin/payments/view-order-details.php:514
2187
- #: includes/admin/settings/register-settings.php:298
2188
  msgid "Select a country"
2189
  msgstr ""
2190
 
2191
  #: includes/admin/payments/view-order-details.php:530
2192
- #: includes/admin/settings/register-settings.php:306
2193
  msgid "Select a state"
2194
  msgstr ""
2195
 
@@ -2206,7 +2206,7 @@ msgid "Add Note"
2206
  msgstr ""
2207
 
2208
  #: includes/admin/plugins.php:27
2209
- #: includes/admin/settings/register-settings.php:1190
2210
  msgid "General Settings"
2211
  msgstr ""
2212
 
@@ -2368,7 +2368,7 @@ msgstr ""
2368
 
2369
  #: includes/admin/reporting/class-export-payments.php:70
2370
  #: includes/admin/reporting/export/class-batch-export-payments.php:50
2371
- #: includes/admin/settings/register-settings.php:1831
2372
  #: includes/admin/tools.php:591 templates/shortcode-profile-editor.php:138
2373
  msgid "Country"
2374
  msgstr ""
@@ -2575,7 +2575,7 @@ msgid "Files"
2575
  msgstr ""
2576
 
2577
  #: includes/admin/reporting/export/class-batch-export-downloads.php:54
2578
- #: includes/admin/settings/register-settings.php:802
2579
  #: includes/admin/tools.php:774
2580
  msgid "File Download Limit"
2581
  msgstr ""
@@ -2601,7 +2601,7 @@ msgid "Products (Verbose)"
2601
  msgstr ""
2602
 
2603
  #: includes/admin/reporting/export/class-batch-export-payments.php:63
2604
- #: includes/admin/settings/register-settings.php:333
2605
  msgid "Currency"
2606
  msgstr ""
2607
 
@@ -2713,7 +2713,7 @@ msgid "Filter"
2713
  msgstr ""
2714
 
2715
  #: includes/admin/reporting/logs.php:144
2716
- #: includes/admin/settings/register-settings.php:1217
2717
  msgid "File Downloads"
2718
  msgstr ""
2719
 
@@ -2832,7 +2832,7 @@ msgstr ""
2832
 
2833
  #: includes/admin/reporting/reports.php:58
2834
  #: includes/admin/settings/contextual-help.php:71
2835
- #: includes/admin/settings/register-settings.php:1139
2836
  msgid "Taxes"
2837
  msgstr ""
2838
 
@@ -2968,8 +2968,8 @@ msgid ""
2968
  msgstr ""
2969
 
2970
  #: includes/admin/settings/contextual-help.php:48
2971
- #: includes/admin/settings/register-settings.php:407
2972
- #: includes/admin/settings/register-settings.php:1136
2973
  msgid "Payment Gateways"
2974
  msgstr ""
2975
 
@@ -2998,7 +2998,7 @@ msgid ""
2998
  msgstr ""
2999
 
3000
  #: includes/admin/settings/contextual-help.php:57
3001
- #: includes/admin/settings/register-settings.php:1137
3002
  msgid "Emails"
3003
  msgstr ""
3004
 
@@ -3018,7 +3018,7 @@ msgid ""
3018
  msgstr ""
3019
 
3020
  #: includes/admin/settings/contextual-help.php:65
3021
- #: includes/admin/settings/register-settings.php:1138
3022
  msgid "Styles"
3023
  msgstr ""
3024
 
@@ -3142,6 +3142,7 @@ msgstr ""
3142
  #: includes/admin/settings/register-settings.php:263
3143
  #: includes/admin/settings/register-settings.php:272
3144
  #: includes/admin/settings/register-settings.php:281
 
3145
  msgid "Select a page"
3146
  msgstr ""
3147
 
@@ -3176,45 +3177,49 @@ msgid ""
3176
  msgstr ""
3177
 
3178
  #: includes/admin/settings/register-settings.php:285
 
 
 
 
3179
  msgid "Store Location"
3180
  msgstr ""
3181
 
3182
- #: includes/admin/settings/register-settings.php:288
3183
  msgid "Store Location Settings"
3184
  msgstr ""
3185
 
3186
- #: includes/admin/settings/register-settings.php:289
3187
  msgid ""
3188
  "Easy Digital Downloads will use the following Country and State to pre-fill "
3189
  "fields at checkout. This will also pre-calculate any taxes defined if the "
3190
  "location below has taxes enabled."
3191
  msgstr ""
3192
 
3193
- #: includes/admin/settings/register-settings.php:293
3194
  msgid "Base Country"
3195
  msgstr ""
3196
 
3197
- #: includes/admin/settings/register-settings.php:294
3198
  msgid "Where does your store operate from?"
3199
  msgstr ""
3200
 
3201
- #: includes/admin/settings/register-settings.php:302
3202
  msgid "Base State / Province"
3203
  msgstr ""
3204
 
3205
- #: includes/admin/settings/register-settings.php:303
3206
  msgid "What state / province does your store operate from?"
3207
  msgstr ""
3208
 
3209
- #: includes/admin/settings/register-settings.php:310
3210
  msgid "Tracking Settings"
3211
  msgstr ""
3212
 
3213
- #: includes/admin/settings/register-settings.php:316
3214
  msgid "Allow Usage Tracking?"
3215
  msgstr ""
3216
 
3217
- #: includes/admin/settings/register-settings.php:318
3218
  msgid ""
3219
  "Allow Easy Digital Downloads to anonymously track how this plugin is used "
3220
  "and help us make the plugin better. Opt-in to tracking and our newsletter "
@@ -3223,385 +3228,385 @@ msgid ""
3223
  "sensitive data is tracked."
3224
  msgstr ""
3225
 
3226
- #: includes/admin/settings/register-settings.php:327
3227
- #: includes/admin/settings/register-settings.php:1191
3228
  msgid "Currency Settings"
3229
  msgstr ""
3230
 
3231
- #: includes/admin/settings/register-settings.php:334
3232
  msgid ""
3233
  "Choose your currency. Note that some payment gateways have currency "
3234
  "restrictions."
3235
  msgstr ""
3236
 
3237
- #: includes/admin/settings/register-settings.php:341
3238
  msgid "Currency Position"
3239
  msgstr ""
3240
 
3241
- #: includes/admin/settings/register-settings.php:342
3242
  msgid "Choose the location of the currency sign."
3243
  msgstr ""
3244
 
3245
- #: includes/admin/settings/register-settings.php:345
3246
  msgid "Before - $10"
3247
  msgstr ""
3248
 
3249
- #: includes/admin/settings/register-settings.php:346
3250
  msgid "After - 10$"
3251
  msgstr ""
3252
 
3253
- #: includes/admin/settings/register-settings.php:351
3254
  msgid "Thousands Separator"
3255
  msgstr ""
3256
 
3257
- #: includes/admin/settings/register-settings.php:352
3258
  msgid "The symbol (usually , or .) to separate thousands"
3259
  msgstr ""
3260
 
3261
- #: includes/admin/settings/register-settings.php:359
3262
  msgid "Decimal Separator"
3263
  msgstr ""
3264
 
3265
- #: includes/admin/settings/register-settings.php:360
3266
  msgid "The symbol (usually , or .) to separate decimal points"
3267
  msgstr ""
3268
 
3269
- #: includes/admin/settings/register-settings.php:369
3270
- #: includes/admin/settings/register-settings.php:372
3271
- #: includes/admin/settings/register-settings.php:1192
3272
  msgid "API Settings"
3273
  msgstr ""
3274
 
3275
- #: includes/admin/settings/register-settings.php:373
3276
  msgid ""
3277
  "The Easy Digital Downloads REST API provides access to store data through "
3278
  "our API endpoints. Enable this setting if you would like all user accounts "
3279
  "to be able to generate their own API keys."
3280
  msgstr ""
3281
 
3282
- #: includes/admin/settings/register-settings.php:377
3283
  msgid "Allow User Keys"
3284
  msgstr ""
3285
 
3286
- #: includes/admin/settings/register-settings.php:378
3287
  msgid ""
3288
  "Check this box to allow all users to generate API keys. Users with the "
3289
  "'manage_shop_settings' capability are always allowed to generate keys."
3290
  msgstr ""
3291
 
3292
- #: includes/admin/settings/register-settings.php:383
3293
  msgid ""
3294
  "Visit the <a href=\"%s\" target=\"_blank\">REST API documentation</a> for "
3295
  "further information."
3296
  msgstr ""
3297
 
3298
- #: includes/admin/settings/register-settings.php:395
3299
- #: includes/admin/settings/register-settings.php:1195
3300
  msgid "Gateway Settings"
3301
  msgstr ""
3302
 
3303
- #: includes/admin/settings/register-settings.php:401
3304
  msgid "Test Mode"
3305
  msgstr ""
3306
 
3307
- #: includes/admin/settings/register-settings.php:402
3308
  msgid ""
3309
  "While in test mode no live transactions are processed. To fully use test "
3310
  "mode, you must have a sandbox (test) account for the payment gateway you "
3311
  "are testing."
3312
  msgstr ""
3313
 
3314
- #: includes/admin/settings/register-settings.php:408
3315
  msgid "Choose the payment gateways you want to enable."
3316
  msgstr ""
3317
 
3318
- #: includes/admin/settings/register-settings.php:414
3319
  msgid "Default Gateway"
3320
  msgstr ""
3321
 
3322
- #: includes/admin/settings/register-settings.php:415
3323
  msgid "This gateway will be loaded automatically with the checkout page."
3324
  msgstr ""
3325
 
3326
- #: includes/admin/settings/register-settings.php:421
3327
  msgid "Accepted Payment Method Icons"
3328
  msgstr ""
3329
 
3330
- #: includes/admin/settings/register-settings.php:422
3331
  msgid "Display icons for the selected payment methods"
3332
  msgstr ""
3333
 
3334
- #: includes/admin/settings/register-settings.php:422
3335
  msgid ""
3336
  "You will also need to configure your gateway settings if you are accepting "
3337
  "credit cards"
3338
  msgstr ""
3339
 
3340
- #: includes/admin/settings/register-settings.php:442
3341
- #: includes/admin/settings/register-settings.php:1199
3342
  msgid "Email Settings"
3343
  msgstr ""
3344
 
3345
- #: includes/admin/settings/register-settings.php:447
3346
  msgid "Email Template"
3347
  msgstr ""
3348
 
3349
- #: includes/admin/settings/register-settings.php:448
3350
  msgid ""
3351
  "Choose a template. Click \"Save Changes\" then \"Preview Purchase Receipt\" "
3352
  "to see the new template."
3353
  msgstr ""
3354
 
3355
- #: includes/admin/settings/register-settings.php:454
3356
  msgid "Logo"
3357
  msgstr ""
3358
 
3359
- #: includes/admin/settings/register-settings.php:455
3360
  msgid ""
3361
  "Upload or choose a logo to be displayed at the top of the purchase receipt "
3362
  "emails. Displayed on HTML emails only."
3363
  msgstr ""
3364
 
3365
- #: includes/admin/settings/register-settings.php:468
3366
- #: includes/admin/settings/register-settings.php:1200
3367
  msgid "Purchase Receipts"
3368
  msgstr ""
3369
 
3370
- #: includes/admin/settings/register-settings.php:473
3371
  msgid "From Name"
3372
  msgstr ""
3373
 
3374
- #: includes/admin/settings/register-settings.php:474
3375
  msgid ""
3376
  "The name purchase receipts are said to come from. This should probably be "
3377
  "your site or shop name."
3378
  msgstr ""
3379
 
3380
- #: includes/admin/settings/register-settings.php:480
3381
  msgid "From Email"
3382
  msgstr ""
3383
 
3384
- #: includes/admin/settings/register-settings.php:481
3385
  msgid ""
3386
  "Email to send purchase receipts from. This will act as the \"from\" and "
3387
  "\"reply-to\" address."
3388
  msgstr ""
3389
 
3390
- #: includes/admin/settings/register-settings.php:487
3391
  msgid "Purchase Email Subject"
3392
  msgstr ""
3393
 
3394
- #: includes/admin/settings/register-settings.php:488
3395
  msgid "Enter the subject line for the purchase receipt email"
3396
  msgstr ""
3397
 
3398
- #: includes/admin/settings/register-settings.php:490
3399
- #: includes/admin/settings/register-settings.php:497
3400
- #: includes/admin/settings/register-settings.php:501
3401
  #: includes/emails/functions.php:36 includes/emails/functions.php:40
3402
  #: includes/emails/functions.php:77 includes/emails/functions.php:81
3403
  #: includes/emails/template.php:141
3404
  msgid "Purchase Receipt"
3405
  msgstr ""
3406
 
3407
- #: includes/admin/settings/register-settings.php:494
3408
  msgid "Purchase Email Heading"
3409
  msgstr ""
3410
 
3411
- #: includes/admin/settings/register-settings.php:495
3412
  msgid "Enter the heading for the purchase receipt email"
3413
  msgstr ""
3414
 
3415
- #: includes/admin/settings/register-settings.php:502
3416
  msgid ""
3417
  "Enter the text that is sent as purchase receipt email to users after "
3418
  "completion of a successful purchase. HTML is accepted. Available template "
3419
  "tags:"
3420
  msgstr ""
3421
 
3422
- #: includes/admin/settings/register-settings.php:504
3423
  #: includes/emails/template.php:159
3424
  msgid "Dear"
3425
  msgstr ""
3426
 
3427
- #: includes/admin/settings/register-settings.php:504
3428
  #: includes/emails/template.php:160
3429
  msgid ""
3430
  "Thank you for your purchase. Please click on the link(s) below to download "
3431
  "your files."
3432
  msgstr ""
3433
 
3434
- #: includes/admin/settings/register-settings.php:510
3435
  msgid "Sale Notifications"
3436
  msgstr ""
3437
 
3438
- #: includes/admin/settings/register-settings.php:515
3439
  msgid "Sale Notification Subject"
3440
  msgstr ""
3441
 
3442
- #: includes/admin/settings/register-settings.php:516
3443
  msgid "Enter the subject line for the sale notification email"
3444
  msgstr ""
3445
 
3446
- #: includes/admin/settings/register-settings.php:522
3447
  msgid "Sale Notification"
3448
  msgstr ""
3449
 
3450
- #: includes/admin/settings/register-settings.php:523
3451
  msgid ""
3452
  "Enter the text that is sent as sale notification email after completion of "
3453
  "a purchase. HTML is accepted. Available template tags:"
3454
  msgstr ""
3455
 
3456
- #: includes/admin/settings/register-settings.php:529
3457
  msgid "Sale Notification Emails"
3458
  msgstr ""
3459
 
3460
- #: includes/admin/settings/register-settings.php:530
3461
  msgid ""
3462
  "Enter the email address(es) that should receive a notification anytime a "
3463
  "sale is made, one per line"
3464
  msgstr ""
3465
 
3466
- #: includes/admin/settings/register-settings.php:536
3467
  msgid "Disable Admin Notifications"
3468
  msgstr ""
3469
 
3470
- #: includes/admin/settings/register-settings.php:537
3471
  msgid "Check this box if you do not want to receive sales notification emails."
3472
  msgstr ""
3473
 
3474
- #: includes/admin/settings/register-settings.php:549
3475
- #: includes/admin/settings/register-settings.php:1204
3476
  msgid "Style Settings"
3477
  msgstr ""
3478
 
3479
- #: includes/admin/settings/register-settings.php:554
3480
  msgid "Disable Styles"
3481
  msgstr ""
3482
 
3483
- #: includes/admin/settings/register-settings.php:555
3484
  msgid ""
3485
  "Check this to disable all included styling of buttons, checkout fields, and "
3486
  "all other elements."
3487
  msgstr ""
3488
 
3489
- #: includes/admin/settings/register-settings.php:557
3490
  msgid "Disabling Styles"
3491
  msgstr ""
3492
 
3493
- #: includes/admin/settings/register-settings.php:558
3494
  msgid ""
3495
  "If your theme has a complete custom CSS file for Easy Digital Downloads, "
3496
  "you may wish to disable our default styles. This is not recommended unless "
3497
  "your sure your theme has a complete custom CSS."
3498
  msgstr ""
3499
 
3500
- #: includes/admin/settings/register-settings.php:562
3501
  msgid "Buttons"
3502
  msgstr ""
3503
 
3504
- #: includes/admin/settings/register-settings.php:563
3505
  msgid "Options for add to cart and purchase buttons"
3506
  msgstr ""
3507
 
3508
- #: includes/admin/settings/register-settings.php:568
3509
  msgid "Default Button Style"
3510
  msgstr ""
3511
 
3512
- #: includes/admin/settings/register-settings.php:569
3513
  msgid "Choose the style you want to use for the buttons."
3514
  msgstr ""
3515
 
3516
- #: includes/admin/settings/register-settings.php:575
3517
  msgid "Default Button Color"
3518
  msgstr ""
3519
 
3520
- #: includes/admin/settings/register-settings.php:576
3521
  msgid "Choose the color you want to use for the buttons."
3522
  msgstr ""
3523
 
3524
- #: includes/admin/settings/register-settings.php:589
3525
- #: includes/admin/settings/register-settings.php:1207
3526
  msgid "Tax Settings"
3527
  msgstr ""
3528
 
3529
- #: includes/admin/settings/register-settings.php:594
3530
  msgid "Need help?"
3531
  msgstr ""
3532
 
3533
- #: includes/admin/settings/register-settings.php:595
3534
  msgid ""
3535
  "Visit the <a href=\"%s\" target=\"_blank\">Tax setup documentation</a> for "
3536
  "further information. If you need VAT support, there are options listed on "
3537
  "the documentation page."
3538
  msgstr ""
3539
 
3540
- #: includes/admin/settings/register-settings.php:600
3541
  msgid "Enable Taxes"
3542
  msgstr ""
3543
 
3544
- #: includes/admin/settings/register-settings.php:601
3545
  msgid "Check this to enable taxes on purchases."
3546
  msgstr ""
3547
 
3548
- #: includes/admin/settings/register-settings.php:603
3549
  msgid "Enabling Taxes"
3550
  msgstr ""
3551
 
3552
- #: includes/admin/settings/register-settings.php:604
3553
  msgid ""
3554
  "With taxes enabled, Easy Digital Downloads will use the rules below to "
3555
  "charge tax to customers. With taxes enabled, customers are required to "
3556
  "input their address on checkout so that taxes can be properly calculated."
3557
  msgstr ""
3558
 
3559
- #: includes/admin/settings/register-settings.php:608
3560
  msgid "Tax Rates"
3561
  msgstr ""
3562
 
3563
- #: includes/admin/settings/register-settings.php:609
3564
  msgid "Enter tax rates for specific regions."
3565
  msgstr ""
3566
 
3567
- #: includes/admin/settings/register-settings.php:614
3568
- #: includes/admin/settings/register-settings.php:618
3569
  msgid "Fallback Tax Rate"
3570
  msgstr ""
3571
 
3572
- #: includes/admin/settings/register-settings.php:615
3573
  msgid ""
3574
  "Enter a percentage, such as 6.5. Customers not in a specific rate will be "
3575
  "charged this rate."
3576
  msgstr ""
3577
 
3578
- #: includes/admin/settings/register-settings.php:619
3579
  msgid ""
3580
  "If the customer's address fails to meet the above tax rules, you can define "
3581
  "a `default` tax rate to be applied to all other customers."
3582
  msgstr ""
3583
 
3584
- #: includes/admin/settings/register-settings.php:623
3585
  msgid "Prices entered with tax"
3586
  msgstr ""
3587
 
3588
- #: includes/admin/settings/register-settings.php:624
3589
  msgid "This option affects how you enter prices."
3590
  msgstr ""
3591
 
3592
- #: includes/admin/settings/register-settings.php:628
3593
  msgid "Yes, I will enter prices inclusive of tax"
3594
  msgstr ""
3595
 
3596
- #: includes/admin/settings/register-settings.php:629
3597
  msgid "No, I will enter prices exclusive of tax"
3598
  msgstr ""
3599
 
3600
- #: includes/admin/settings/register-settings.php:631
3601
  msgid "Prices Inclusive of Tax"
3602
  msgstr ""
3603
 
3604
- #: includes/admin/settings/register-settings.php:632
3605
  msgid ""
3606
  "When using prices inclusive of tax, you will be entering your prices as the "
3607
  "total amount you want a customer to pay for the download, including tax. "
@@ -3609,213 +3614,213 @@ msgid ""
3609
  "for the defined total price."
3610
  msgstr ""
3611
 
3612
- #: includes/admin/settings/register-settings.php:636
3613
  msgid "Display Tax Rate on Prices"
3614
  msgstr ""
3615
 
3616
- #: includes/admin/settings/register-settings.php:637
3617
  msgid "Some countries require a notice when product prices include tax."
3618
  msgstr ""
3619
 
3620
- #: includes/admin/settings/register-settings.php:642
3621
  msgid "Display during checkout"
3622
  msgstr ""
3623
 
3624
- #: includes/admin/settings/register-settings.php:643
3625
  msgid "Should prices on the checkout page be shown with or without tax?"
3626
  msgstr ""
3627
 
3628
- #: includes/admin/settings/register-settings.php:647
3629
  msgid "Including tax"
3630
  msgstr ""
3631
 
3632
- #: includes/admin/settings/register-settings.php:648
3633
  msgid "Excluding tax"
3634
  msgstr ""
3635
 
3636
- #: includes/admin/settings/register-settings.php:667
3637
- #: includes/admin/settings/register-settings.php:1214
3638
  msgid "Misc Settings"
3639
  msgstr ""
3640
 
3641
- #: includes/admin/settings/register-settings.php:672
3642
  msgid "Enable AJAX"
3643
  msgstr ""
3644
 
3645
- #: includes/admin/settings/register-settings.php:673
3646
  msgid "Check this to enable AJAX for the shopping cart."
3647
  msgstr ""
3648
 
3649
- #: includes/admin/settings/register-settings.php:676
3650
  msgid "Enabling AJAX"
3651
  msgstr ""
3652
 
3653
- #: includes/admin/settings/register-settings.php:677
3654
  msgid ""
3655
  "With AJAX enabled, customers can perform cart actions like adding and "
3656
  "removing items from their shopping cart without pages having to be "
3657
  "reloaded. This also creates fewer steps during the checkout process."
3658
  msgstr ""
3659
 
3660
- #: includes/admin/settings/register-settings.php:681
3661
- #: includes/admin/settings/register-settings.php:684
3662
  msgid "Redirect to Checkout"
3663
  msgstr ""
3664
 
3665
- #: includes/admin/settings/register-settings.php:682
3666
  msgid "Immediately redirect to checkout after adding an item to the cart?"
3667
  msgstr ""
3668
 
3669
- #: includes/admin/settings/register-settings.php:685
3670
  msgid ""
3671
  "When enabled, once an item has been added to the cart, the customer will be "
3672
  "redirected directly to your checkout page. This is useful for stores that "
3673
  "sell single items."
3674
  msgstr ""
3675
 
3676
- #: includes/admin/settings/register-settings.php:689
3677
  msgid "Item Quantities"
3678
  msgstr ""
3679
 
3680
- #: includes/admin/settings/register-settings.php:690
3681
  msgid "Allow item quantities to be changed."
3682
  msgstr ""
3683
 
3684
- #: includes/admin/settings/register-settings.php:695
3685
  msgid "Remove Data on Uninstall?"
3686
  msgstr ""
3687
 
3688
- #: includes/admin/settings/register-settings.php:696
3689
  msgid ""
3690
  "Check this box if you would like EDD to completely remove all of its data "
3691
  "when the plugin is deleted."
3692
  msgstr ""
3693
 
3694
- #: includes/admin/settings/register-settings.php:703
3695
- #: includes/admin/settings/register-settings.php:1215
3696
  msgid "Checkout Settings"
3697
  msgstr ""
3698
 
3699
- #: includes/admin/settings/register-settings.php:708
3700
  msgid "Enforce SSL on Checkout"
3701
  msgstr ""
3702
 
3703
- #: includes/admin/settings/register-settings.php:709
3704
  msgid ""
3705
  "Check this to force users to be redirected to the secure checkout page. You "
3706
  "must have an SSL certificate installed to use this option."
3707
  msgstr ""
3708
 
3709
- #: includes/admin/settings/register-settings.php:714
3710
  msgid "Disable Guest Checkout"
3711
  msgstr ""
3712
 
3713
- #: includes/admin/settings/register-settings.php:715
3714
  msgid "Require that users be logged-in to purchase files."
3715
  msgstr ""
3716
 
3717
- #: includes/admin/settings/register-settings.php:717
3718
  msgid "Disabling Guest Checkout"
3719
  msgstr ""
3720
 
3721
- #: includes/admin/settings/register-settings.php:718
3722
  msgid ""
3723
  "You can require that customers create and login to user accounts prior to "
3724
  "purchasing from your store by enabling this option. When unchecked, users "
3725
  "can purchase without being logged in by using their name and email address."
3726
  msgstr ""
3727
 
3728
- #: includes/admin/settings/register-settings.php:722
3729
  msgid "Show Register / Login Form?"
3730
  msgstr ""
3731
 
3732
- #: includes/admin/settings/register-settings.php:723
3733
  msgid ""
3734
  "Display the registration and login forms on the checkout page for "
3735
  "non-logged-in users."
3736
  msgstr ""
3737
 
3738
- #: includes/admin/settings/register-settings.php:727
3739
  msgid "Registration and Login Forms"
3740
  msgstr ""
3741
 
3742
- #: includes/admin/settings/register-settings.php:728
3743
  msgid "Registration Form Only"
3744
  msgstr ""
3745
 
3746
- #: includes/admin/settings/register-settings.php:729
3747
  msgid "Login Form Only"
3748
  msgstr ""
3749
 
3750
- #: includes/admin/settings/register-settings.php:735
3751
  msgid "Multiple Discounts"
3752
  msgstr ""
3753
 
3754
- #: includes/admin/settings/register-settings.php:736
3755
  msgid "Allow customers to use multiple discounts on the same purchase?"
3756
  msgstr ""
3757
 
3758
- #: includes/admin/settings/register-settings.php:741
3759
  msgid "Enable Cart Saving"
3760
  msgstr ""
3761
 
3762
- #: includes/admin/settings/register-settings.php:742
3763
  msgid "Check this to enable cart saving on the checkout."
3764
  msgstr ""
3765
 
3766
- #: includes/admin/settings/register-settings.php:744
3767
  msgid "Cart Saving"
3768
  msgstr ""
3769
 
3770
- #: includes/admin/settings/register-settings.php:745
3771
  msgid ""
3772
  "Cart saving allows shoppers to create a temporary link to their current "
3773
  "shopping cart so they can come back to it later, or share it with someone."
3774
  msgstr ""
3775
 
3776
- #: includes/admin/settings/register-settings.php:751
3777
- #: includes/admin/settings/register-settings.php:1216
3778
  msgid "Button Text"
3779
  msgstr ""
3780
 
3781
- #: includes/admin/settings/register-settings.php:756
3782
  msgid "Complete Purchase Text"
3783
  msgstr ""
3784
 
3785
- #: includes/admin/settings/register-settings.php:757
3786
  msgid "The button label for completing a purchase."
3787
  msgstr ""
3788
 
3789
- #: includes/admin/settings/register-settings.php:763
3790
  msgid "Add to Cart Text"
3791
  msgstr ""
3792
 
3793
- #: includes/admin/settings/register-settings.php:764
3794
  msgid "Text shown on the Add to Cart Buttons."
3795
  msgstr ""
3796
 
3797
- #: includes/admin/settings/register-settings.php:770
3798
  msgid "Buy Now Text"
3799
  msgstr ""
3800
 
3801
- #: includes/admin/settings/register-settings.php:771
3802
  msgid "Text shown on the Buy Now Buttons."
3803
  msgstr ""
3804
 
3805
- #: includes/admin/settings/register-settings.php:779
3806
  msgid "File Download Settings"
3807
  msgstr ""
3808
 
3809
- #: includes/admin/settings/register-settings.php:784
3810
- #: includes/admin/settings/register-settings.php:787
3811
  msgid "Download Method"
3812
  msgstr ""
3813
 
3814
- #: includes/admin/settings/register-settings.php:785
3815
  msgid "Select the file download method. Note, not all methods work on all servers."
3816
  msgstr ""
3817
 
3818
- #: includes/admin/settings/register-settings.php:788
3819
  msgid ""
3820
  "Due to its consistency in multiple platforms and better file protection, "
3821
  "'forced' is the default method. Because Easy Digital Downloads uses PHP to "
@@ -3826,35 +3831,35 @@ msgid ""
3826
  "method can help resolve this."
3827
  msgstr ""
3828
 
3829
- #: includes/admin/settings/register-settings.php:790
3830
  msgid "Forced"
3831
  msgstr ""
3832
 
3833
- #: includes/admin/settings/register-settings.php:791
3834
  msgid "Redirect"
3835
  msgstr ""
3836
 
3837
- #: includes/admin/settings/register-settings.php:796
3838
  msgid "Symlink File Downloads?"
3839
  msgstr ""
3840
 
3841
- #: includes/admin/settings/register-settings.php:797
3842
  msgid ""
3843
  "Check this if you are delivering really large files or having problems with "
3844
  "file downloads completing."
3845
  msgstr ""
3846
 
3847
- #: includes/admin/settings/register-settings.php:803
3848
  msgid ""
3849
  "The maximum number of times files can be downloaded for purchases. Can be "
3850
  "overwritten for each %s."
3851
  msgstr ""
3852
 
3853
- #: includes/admin/settings/register-settings.php:806
3854
  msgid "File Download Limits"
3855
  msgstr ""
3856
 
3857
- #: includes/admin/settings/register-settings.php:807
3858
  msgid ""
3859
  "Set the global default for the number of times a customer can download "
3860
  "items they purchase. Using a value of 0 is unlimited. This can be defined "
@@ -3862,18 +3867,18 @@ msgid ""
3862
  "individual purchase."
3863
  msgstr ""
3864
 
3865
- #: includes/admin/settings/register-settings.php:811
3866
- #: includes/admin/settings/register-settings.php:813
3867
  msgid "Download Link Expiration"
3868
  msgstr ""
3869
 
3870
- #: includes/admin/settings/register-settings.php:812
3871
  msgid ""
3872
  "How long should download links be valid for? Default is 24 hours from the "
3873
  "time they are generated. Enter a time in hours."
3874
  msgstr ""
3875
 
3876
- #: includes/admin/settings/register-settings.php:814
3877
  msgid ""
3878
  "When a customer receives a link to their downloads via email, in their "
3879
  "receipt, or in their purchase history, the link will only be valid for the "
@@ -3882,215 +3887,215 @@ msgid ""
3882
  "customer."
3883
  msgstr ""
3884
 
3885
- #: includes/admin/settings/register-settings.php:822
3886
  msgid "Disable Redownload?"
3887
  msgstr ""
3888
 
3889
- #: includes/admin/settings/register-settings.php:823
3890
  msgid ""
3891
  "Check this if you do not want to allow users to redownload items from their "
3892
  "purchase history."
3893
  msgstr ""
3894
 
3895
- #: includes/admin/settings/register-settings.php:830
3896
- #: includes/admin/settings/register-settings.php:1218
3897
  msgid "Accounting Settings"
3898
  msgstr ""
3899
 
3900
- #: includes/admin/settings/register-settings.php:835
3901
  msgid "Enable SKU Entry"
3902
  msgstr ""
3903
 
3904
- #: includes/admin/settings/register-settings.php:836
3905
  msgid ""
3906
  "Check this box to allow entry of product SKUs. SKUs will be shown on "
3907
  "purchase receipt and exported purchase histories."
3908
  msgstr ""
3909
 
3910
- #: includes/admin/settings/register-settings.php:841
3911
  msgid "Sequential Order Numbers"
3912
  msgstr ""
3913
 
3914
- #: includes/admin/settings/register-settings.php:842
3915
  msgid "Check this box to enable sequential order numbers."
3916
  msgstr ""
3917
 
3918
- #: includes/admin/settings/register-settings.php:847
3919
  msgid "Sequential Starting Number"
3920
  msgstr ""
3921
 
3922
- #: includes/admin/settings/register-settings.php:848
3923
  msgid "The number at which the sequence should begin."
3924
  msgstr ""
3925
 
3926
- #: includes/admin/settings/register-settings.php:855
3927
  msgid "Sequential Number Prefix"
3928
  msgstr ""
3929
 
3930
- #: includes/admin/settings/register-settings.php:856
3931
  msgid "A prefix to prepend to all sequential order numbers."
3932
  msgstr ""
3933
 
3934
- #: includes/admin/settings/register-settings.php:861
3935
  msgid "Sequential Number Postfix"
3936
  msgstr ""
3937
 
3938
- #: includes/admin/settings/register-settings.php:862
3939
  msgid "A postfix to append to all sequential order numbers."
3940
  msgstr ""
3941
 
3942
- #: includes/admin/settings/register-settings.php:869
3943
  msgid "Agreement Settings"
3944
  msgstr ""
3945
 
3946
- #: includes/admin/settings/register-settings.php:874
3947
  msgid "Agree to Terms"
3948
  msgstr ""
3949
 
3950
- #: includes/admin/settings/register-settings.php:875
3951
  msgid ""
3952
  "Check this to show an agree to terms on the checkout that users must agree "
3953
  "to before purchasing."
3954
  msgstr ""
3955
 
3956
- #: includes/admin/settings/register-settings.php:880
3957
  msgid "Agree to Terms Label"
3958
  msgstr ""
3959
 
3960
- #: includes/admin/settings/register-settings.php:881
3961
  msgid "Label shown next to the agree to terms check box."
3962
  msgstr ""
3963
 
3964
- #: includes/admin/settings/register-settings.php:887
3965
  msgid "Agreement Text"
3966
  msgstr ""
3967
 
3968
- #: includes/admin/settings/register-settings.php:888
3969
  msgid "If Agree to Terms is checked, enter the agreement terms here."
3970
  msgstr ""
3971
 
3972
- #: includes/admin/settings/register-settings.php:992
3973
  msgid "Settings updated."
3974
  msgstr ""
3975
 
3976
- #: includes/admin/settings/register-settings.php:1145
3977
  msgid "Licenses"
3978
  msgstr ""
3979
 
3980
- #: includes/admin/settings/register-settings.php:1148
3981
  msgid "Misc"
3982
  msgstr ""
3983
 
3984
- #: includes/admin/settings/register-settings.php:1196
3985
  #: includes/gateways/functions.php:25 includes/gateways/paypal-standard.php:33
3986
  msgid "PayPal Standard"
3987
  msgstr ""
3988
 
3989
- #: includes/admin/settings/register-settings.php:1201
3990
  msgid "New Sale Notifications"
3991
  msgstr ""
3992
 
3993
- #: includes/admin/settings/register-settings.php:1210
3994
  msgid "Main"
3995
  msgstr ""
3996
 
3997
- #: includes/admin/settings/register-settings.php:1219
3998
  msgid "Terms of Agreement"
3999
  msgstr ""
4000
 
4001
- #: includes/admin/settings/register-settings.php:1610
4002
  msgid "The callback function used for the %s setting is missing."
4003
  msgstr ""
4004
 
4005
- #: includes/admin/settings/register-settings.php:1745
4006
  msgid "Upload File"
4007
  msgstr ""
4008
 
4009
- #: includes/admin/settings/register-settings.php:1833
4010
  msgid "Country Wide"
4011
  msgstr ""
4012
 
4013
- #: includes/admin/settings/register-settings.php:1834
4014
  msgid "Rate"
4015
  msgstr ""
4016
 
4017
- #: includes/admin/settings/register-settings.php:1851
4018
- #: includes/admin/settings/register-settings.php:1895
4019
  msgid "Choose a country"
4020
  msgstr ""
4021
 
4022
- #: includes/admin/settings/register-settings.php:1866
4023
  msgid "Choose a state"
4024
  msgstr ""
4025
 
4026
- #: includes/admin/settings/register-settings.php:1878
4027
- #: includes/admin/settings/register-settings.php:1905
4028
  msgid "Apply to whole country"
4029
  msgstr ""
4030
 
4031
- #: includes/admin/settings/register-settings.php:1881
4032
- #: includes/admin/settings/register-settings.php:1908
4033
  msgid "Remove Rate"
4034
  msgstr ""
4035
 
4036
- #: includes/admin/settings/register-settings.php:1913
4037
  msgid "Add Tax Rate"
4038
  msgstr ""
4039
 
4040
- #: includes/admin/settings/register-settings.php:1966
4041
  msgid ""
4042
  "Your license key expired on %s. Please <a href=\"%s\" "
4043
  "target=\"_blank\">renew your license key</a>."
4044
  msgstr ""
4045
 
4046
- #: includes/admin/settings/register-settings.php:1979
4047
  msgid ""
4048
  "Your license key has been disabled. Please <a href=\"%s\" "
4049
  "target=\"_blank\">contact support</a> for more information."
4050
  msgstr ""
4051
 
4052
- #: includes/admin/settings/register-settings.php:1991
4053
  msgid ""
4054
  "Invalid license. Please <a href=\"%s\" target=\"_blank\">visit your account "
4055
  "page</a> and verify it."
4056
  msgstr ""
4057
 
4058
- #: includes/admin/settings/register-settings.php:2004
4059
  msgid ""
4060
  "Your %s is not active for this URL. Please <a href=\"%s\" "
4061
  "target=\"_blank\">visit your account page</a> to manage your license key "
4062
  "URLs."
4063
  msgstr ""
4064
 
4065
- #: includes/admin/settings/register-settings.php:2016
4066
  msgid "This appears to be an invalid license key for %s."
4067
  msgstr ""
4068
 
4069
- #: includes/admin/settings/register-settings.php:2025
4070
  msgid ""
4071
  "Your license key has reached its activation limit. <a href=\"%s\">View "
4072
  "possible upgrades</a> now."
4073
  msgstr ""
4074
 
4075
- #: includes/admin/settings/register-settings.php:2051
4076
  msgid "License key never expires."
4077
  msgstr ""
4078
 
4079
- #: includes/admin/settings/register-settings.php:2058
4080
  msgid ""
4081
  "Your license key expires soon! It expires on %s. <a href=\"%s\" "
4082
  "target=\"_blank\">Renew your license key</a>."
4083
  msgstr ""
4084
 
4085
- #: includes/admin/settings/register-settings.php:2068
4086
  msgid "Your license key expires on %s."
4087
  msgstr ""
4088
 
4089
- #: includes/admin/settings/register-settings.php:2086
4090
  msgid "To receive updates, please enter your valid %s license key."
4091
  msgstr ""
4092
 
4093
- #: includes/admin/settings/register-settings.php:2097
4094
  msgid "Deactivate License"
4095
  msgstr ""
4096
 
@@ -5102,32 +5107,32 @@ msgstr ""
5102
  msgid "You do not have permission to %s API keys for this user"
5103
  msgstr ""
5104
 
5105
- #: includes/cart/functions.php:431
5106
  msgid "includes %s tax"
5107
  msgstr ""
5108
 
5109
- #: includes/cart/functions.php:433
5110
  msgid "excludes %s tax"
5111
  msgstr ""
5112
 
5113
- #: includes/cart/functions.php:1140 includes/cart/functions.php:1208
5114
  #: templates/shortcode-profile-editor.php:22
5115
  msgid "Success"
5116
  msgstr ""
5117
 
5118
- #: includes/cart/functions.php:1141
5119
  msgid "Cart saved successfully. You can restore your cart using this URL:"
5120
  msgstr ""
5121
 
5122
- #: includes/cart/functions.php:1178 includes/cart/functions.php:1195
5123
  msgid "Cart restoration failed. Invalid token."
5124
  msgstr ""
5125
 
5126
- #: includes/cart/functions.php:1186 includes/cart/functions.php:1198
5127
  msgid "The cart cannot be restored. Invalid token."
5128
  msgstr ""
5129
 
5130
- #: includes/cart/functions.php:1208
5131
  msgid "Cart restored successfully."
5132
  msgstr ""
5133
 
@@ -5644,7 +5649,7 @@ msgid " Product: %s - %s"
5644
  msgstr ""
5645
 
5646
  #: includes/class-edd-cli.php:419 includes/class-edd-html-elements.php:208
5647
- #: includes/shortcodes.php:251
5648
  msgid "No discounts found"
5649
  msgstr ""
5650
 
@@ -6363,12 +6368,12 @@ msgstr ""
6363
 
6364
  #: includes/gateways/amazon-payments.php:1017
6365
  #: includes/gateways/amazon-payments.php:1071
6366
- #: includes/gateways/paypal-standard.php:407
6367
- #: includes/gateways/paypal-standard.php:412
6368
- #: includes/gateways/paypal-standard.php:475
6369
- #: includes/gateways/paypal-standard.php:484
6370
- #: includes/gateways/paypal-standard.php:543
6371
- #: includes/gateways/paypal-standard.php:550
6372
  msgid "IPN Error"
6373
  msgstr ""
6374
 
@@ -6514,44 +6519,44 @@ msgstr ""
6514
  msgid "Payment creation failed before sending buyer to PayPal. Payment data: %s"
6515
  msgstr ""
6516
 
6517
- #: includes/gateways/paypal-standard.php:407
6518
- #: includes/gateways/paypal-standard.php:412
6519
  msgid "Invalid IPN verification response. IPN data: %s"
6520
  msgstr ""
6521
 
6522
- #: includes/gateways/paypal-standard.php:475
6523
  msgid "Invalid business email in IPN response. IPN data: %s"
6524
  msgstr ""
6525
 
6526
- #: includes/gateways/paypal-standard.php:477
6527
  msgid "Payment failed due to invalid PayPal business email."
6528
  msgstr ""
6529
 
6530
- #: includes/gateways/paypal-standard.php:484
6531
  msgid "Invalid currency in IPN response. IPN data: %s"
6532
  msgstr ""
6533
 
6534
- #: includes/gateways/paypal-standard.php:486
6535
  msgid "Payment failed due to invalid currency in PayPal IPN."
6536
  msgstr ""
6537
 
6538
- #: includes/gateways/paypal-standard.php:543
6539
  msgid "Invalid payment amount in IPN response. IPN data: %s"
6540
  msgstr ""
6541
 
6542
- #: includes/gateways/paypal-standard.php:545
6543
  msgid "Payment failed due to invalid amount in PayPal IPN."
6544
  msgstr ""
6545
 
6546
- #: includes/gateways/paypal-standard.php:550
6547
  msgid "Invalid purchase key in IPN response. IPN data: %s"
6548
  msgstr ""
6549
 
6550
- #: includes/gateways/paypal-standard.php:552
6551
  msgid "Payment failed due to invalid purchase key in PayPal IPN."
6552
  msgstr ""
6553
 
6554
- #: includes/gateways/paypal-standard.php:558
6555
  #: tests/helpers/class-helper-payment.php:131
6556
  #: tests/helpers/class-helper-payment.php:234
6557
  #: tests/helpers/class-helper-payment.php:342
@@ -6561,79 +6566,79 @@ msgstr ""
6561
  msgid "PayPal Transaction ID: %s"
6562
  msgstr ""
6563
 
6564
- #: includes/gateways/paypal-standard.php:572
6565
  msgid "Payment made via eCheck and will clear automatically in 5-8 days"
6566
  msgstr ""
6567
 
6568
- #: includes/gateways/paypal-standard.php:578
6569
  msgid ""
6570
  "Payment requires a confirmed customer address and must be accepted manually "
6571
  "through PayPal"
6572
  msgstr ""
6573
 
6574
- #: includes/gateways/paypal-standard.php:584
6575
  msgid ""
6576
  "Payment must be accepted manually through PayPal due to international "
6577
  "account regulations"
6578
  msgstr ""
6579
 
6580
- #: includes/gateways/paypal-standard.php:590
6581
  msgid ""
6582
  "Payment received in non-shop currency and must be accepted manually through "
6583
  "PayPal"
6584
  msgstr ""
6585
 
6586
- #: includes/gateways/paypal-standard.php:597
6587
  msgid ""
6588
  "Payment is being reviewed by PayPal staff as high-risk or in possible "
6589
  "violation of government regulations"
6590
  msgstr ""
6591
 
6592
- #: includes/gateways/paypal-standard.php:603
6593
  msgid "Payment was sent to non-confirmed or non-registered email address."
6594
  msgstr ""
6595
 
6596
- #: includes/gateways/paypal-standard.php:609
6597
  msgid "PayPal account must be upgraded before this payment can be accepted"
6598
  msgstr ""
6599
 
6600
- #: includes/gateways/paypal-standard.php:615
6601
  msgid ""
6602
  "PayPal account is not verified. Verify account in order to accept this "
6603
  "payment"
6604
  msgstr ""
6605
 
6606
- #: includes/gateways/paypal-standard.php:621
6607
  msgid ""
6608
  "Payment is pending for unknown reasons. Contact PayPal support for "
6609
  "assistance"
6610
  msgstr ""
6611
 
6612
- #: includes/gateways/paypal-standard.php:662
6613
  msgid "Partial PayPal refund processed: %s"
6614
  msgstr ""
6615
 
6616
- #: includes/gateways/paypal-standard.php:667
6617
  msgid "PayPal Payment #%s Refunded for reason: %s"
6618
  msgstr ""
6619
 
6620
- #: includes/gateways/paypal-standard.php:668
6621
  msgid "PayPal Refund Transaction ID: %s"
6622
  msgstr ""
6623
 
6624
- #: includes/gateways/paypal-standard.php:817
6625
  msgid "Refund Payment in PayPal"
6626
  msgstr ""
6627
 
6628
- #: includes/gateways/paypal-standard.php:966
6629
  msgid "PayPal refund failed for unknown reason."
6630
  msgstr ""
6631
 
6632
- #: includes/gateways/paypal-standard.php:976
6633
  msgid "PayPal refund transaction ID: %s"
6634
  msgstr ""
6635
 
6636
- #: includes/gateways/paypal-standard.php:980
6637
  msgid "PayPal refund failed: %s"
6638
  msgstr ""
6639
 
@@ -6692,133 +6697,133 @@ msgstr ""
6692
  msgid "Passwords do not match"
6693
  msgstr ""
6694
 
6695
- #: includes/misc-functions.php:299 tests/tests-misc.php:56
6696
  msgid "US Dollars (&#36;)"
6697
  msgstr ""
6698
 
6699
- #: includes/misc-functions.php:300 tests/tests-misc.php:57
6700
  msgid "Euros (&euro;)"
6701
  msgstr ""
6702
 
6703
- #: includes/misc-functions.php:301 tests/tests-misc.php:58
6704
  msgid "Pounds Sterling (&pound;)"
6705
  msgstr ""
6706
 
6707
- #: includes/misc-functions.php:302 tests/tests-misc.php:59
6708
  msgid "Australian Dollars (&#36;)"
6709
  msgstr ""
6710
 
6711
- #: includes/misc-functions.php:303 tests/tests-misc.php:60
6712
  msgid "Brazilian Real (R&#36;)"
6713
  msgstr ""
6714
 
6715
- #: includes/misc-functions.php:304 tests/tests-misc.php:61
6716
  msgid "Canadian Dollars (&#36;)"
6717
  msgstr ""
6718
 
6719
- #: includes/misc-functions.php:305 tests/tests-misc.php:62
6720
  msgid "Czech Koruna"
6721
  msgstr ""
6722
 
6723
- #: includes/misc-functions.php:306 tests/tests-misc.php:63
6724
  msgid "Danish Krone"
6725
  msgstr ""
6726
 
6727
- #: includes/misc-functions.php:307 tests/tests-misc.php:64
6728
  msgid "Hong Kong Dollar (&#36;)"
6729
  msgstr ""
6730
 
6731
- #: includes/misc-functions.php:308 tests/tests-misc.php:65
6732
  msgid "Hungarian Forint"
6733
  msgstr ""
6734
 
6735
- #: includes/misc-functions.php:309 tests/tests-misc.php:66
6736
  msgid "Israeli Shekel (&#8362;)"
6737
  msgstr ""
6738
 
6739
- #: includes/misc-functions.php:310 tests/tests-misc.php:67
6740
  msgid "Japanese Yen (&yen;)"
6741
  msgstr ""
6742
 
6743
- #: includes/misc-functions.php:311 tests/tests-misc.php:68
6744
  msgid "Malaysian Ringgits"
6745
  msgstr ""
6746
 
6747
- #: includes/misc-functions.php:312 tests/tests-misc.php:69
6748
  msgid "Mexican Peso (&#36;)"
6749
  msgstr ""
6750
 
6751
- #: includes/misc-functions.php:313 tests/tests-misc.php:70
6752
  msgid "New Zealand Dollar (&#36;)"
6753
  msgstr ""
6754
 
6755
- #: includes/misc-functions.php:314 tests/tests-misc.php:71
6756
  msgid "Norwegian Krone"
6757
  msgstr ""
6758
 
6759
- #: includes/misc-functions.php:315 tests/tests-misc.php:72
6760
  msgid "Philippine Pesos"
6761
  msgstr ""
6762
 
6763
- #: includes/misc-functions.php:316 tests/tests-misc.php:73
6764
  msgid "Polish Zloty"
6765
  msgstr ""
6766
 
6767
- #: includes/misc-functions.php:317 tests/tests-misc.php:74
6768
  msgid "Singapore Dollar (&#36;)"
6769
  msgstr ""
6770
 
6771
- #: includes/misc-functions.php:318 tests/tests-misc.php:75
6772
  msgid "Swedish Krona"
6773
  msgstr ""
6774
 
6775
- #: includes/misc-functions.php:319 tests/tests-misc.php:76
6776
  msgid "Swiss Franc"
6777
  msgstr ""
6778
 
6779
- #: includes/misc-functions.php:320 tests/tests-misc.php:77
6780
  msgid "Taiwan New Dollars"
6781
  msgstr ""
6782
 
6783
- #: includes/misc-functions.php:321 tests/tests-misc.php:78
6784
  msgid "Thai Baht (&#3647;)"
6785
  msgstr ""
6786
 
6787
- #: includes/misc-functions.php:322 tests/tests-misc.php:79
6788
  msgid "Indian Rupee (&#8377;)"
6789
  msgstr ""
6790
 
6791
- #: includes/misc-functions.php:323 tests/tests-misc.php:80
6792
  msgid "Turkish Lira (&#8378;)"
6793
  msgstr ""
6794
 
6795
- #: includes/misc-functions.php:324 tests/tests-misc.php:81
6796
  msgid "Iranian Rial (&#65020;)"
6797
  msgstr ""
6798
 
6799
- #: includes/misc-functions.php:325 tests/tests-misc.php:82
6800
  msgid "Russian Rubles"
6801
  msgstr ""
6802
 
6803
- #: includes/misc-functions.php:511
6804
  msgid ""
6805
  "%1$s is <strong>deprecated</strong> since Easy Digital Downloads version "
6806
  "%2$s! Use %3$s instead."
6807
  msgstr ""
6808
 
6809
- #: includes/misc-functions.php:515
6810
  msgid ""
6811
  "%1$s is <strong>deprecated</strong> since Easy Digital Downloads version "
6812
  "%2$s with no alternative available."
6813
  msgstr ""
6814
 
6815
- #: includes/misc-functions.php:552
6816
  msgid ""
6817
  "The %1$s argument of %2$s is <strong>deprecated</strong> since Easy Digital "
6818
  "Downloads version %3$s! Please use %4$s instead."
6819
  msgstr ""
6820
 
6821
- #: includes/misc-functions.php:556
6822
  msgid ""
6823
  "The %1$s argument of %2$s is <strong>deprecated</strong> since Easy Digital "
6824
  "Downloads version %3$s with no alternative available."
@@ -7356,31 +7361,31 @@ msgid ""
7356
  "upload. Please upgrade your browser."
7357
  msgstr ""
7358
 
7359
- #: includes/shortcodes.php:275
7360
  msgid "Purchase All Items"
7361
  msgstr ""
7362
 
7363
- #: includes/shortcodes.php:665
7364
  msgid "Sorry, trouble retrieving payment receipt."
7365
  msgstr ""
7366
 
7367
- #: includes/shortcodes.php:700
7368
  msgid "You must be logged in to view this payment receipt."
7369
  msgstr ""
7370
 
7371
- #: includes/shortcodes.php:835
7372
  msgid "The passwords you entered do not match. Please try again."
7373
  msgstr ""
7374
 
7375
- #: includes/shortcodes.php:845
7376
  msgid "The email you entered is invalid. Please enter a valid email."
7377
  msgstr ""
7378
 
7379
- #: includes/shortcodes.php:850
7380
  msgid "The email you entered belongs to another user. Please use another."
7381
  msgstr ""
7382
 
7383
- #: includes/shortcodes.php:925
7384
  msgid "Error removing email address from profile. Please try again later."
7385
  msgstr ""
7386
 
@@ -7821,7 +7826,7 @@ msgctxt "download post type name"
7821
  msgid "%2$s"
7822
  msgstr ""
7823
 
7824
- #: includes/shortcodes.php:619
7825
  msgctxt "download post type name"
7826
  msgid "No %s found"
7827
  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.6.4\n"
6
  "Report-Msgid-Bugs-To: https://easydigitaldownloads.com/\n"
7
+ "POT-Creation-Date: 2016-07-06 22:59:38+00:00\n"
8
  "MIME-Version: 1.0\n"
9
  "Content-Type: text/plain; charset=utf-8\n"
10
  "Content-Transfer-Encoding: 8bit\n"
11
  "PO-Revision-Date: 2016-MO-DA HO:MI+ZONE\n"
12
  "Last-Translator: WP-Translations (http://wp-translations.org/)\n"
13
  "Language-Team: WP-Translations <wpt@wp-translations.org>\n"
14
+ "X-Generator: grunt-wp-i18n 0.5.2\n"
15
  "X-Poedit-KeywordsList: "
16
  "__;_e;_x:1,2c;_ex:1,2c;_n:1,2;_nx:1,2,4c;_n_noop:1,2;_nx_noop:1,2,3c;esc_"
17
  "attr__;esc_html__;esc_attr_e;esc_html_e;esc_attr_x:1,2c;esc_html_x:1,2c;\n"
91
  #: includes/admin/upgrades/upgrade-functions.php:1103
92
  #: includes/api/class-edd-api.php:1836 includes/api/class-edd-api.php:1841
93
  #: includes/api/class-edd-api.php:1853 includes/api/class-edd-api.php:1855
94
+ #: includes/cart/functions.php:1196 includes/cart/functions.php:1213
95
  #: includes/class-edd-license-handler.php:304
96
  #: includes/deprecated-functions.php:517 includes/deprecated-functions.php:532
97
  #: includes/deprecated-functions.php:542 includes/download-functions.php:1228
174
 
175
  #: includes/admin/admin-pages.php:43 includes/admin/plugins.php:58
176
  #: includes/admin/settings/contextual-help.php:87
177
+ #: includes/admin/settings/register-settings.php:1151
178
  msgid "Extensions"
179
  msgstr ""
180
 
594
  msgstr ""
595
 
596
  #: includes/admin/customers/customers.php:247
597
+ #: includes/admin/settings/register-settings.php:1841
598
  #: includes/admin/tools.php:573 includes/checkout/template.php:417
599
  #: templates/shortcode-profile-editor.php:145
600
  msgid "State / Province"
685
 
686
  #: includes/admin/customers/customers.php:379
687
  #: includes/admin/payments/view-order-details.php:360
688
+ #: includes/admin/settings/register-settings.php:1844 includes/scripts.php:216
689
  #: templates/checkout_cart.php:57 templates/checkout_cart.php:75
690
  #: templates/shortcode-profile-editor.php:114
691
  msgid "Remove"
1154
 
1155
  #: includes/admin/discounts/contextual-help.php:38
1156
  #: includes/admin/settings/contextual-help.php:42
1157
+ #: includes/admin/settings/register-settings.php:1144
1158
  #: includes/admin/tools.php:68
1159
  msgid "General"
1160
  msgstr ""
1595
  msgstr ""
1596
 
1597
  #: includes/admin/downloads/metabox.php:847
1598
+ #: includes/admin/settings/register-settings.php:768
1599
  #: includes/admin/thickbox.php:58 includes/checkout/template.php:844
1600
  #: includes/scripts.php:60 includes/shortcodes.php:49
1601
  #: includes/template-functions.php:67
1637
  msgstr ""
1638
 
1639
  #: includes/admin/downloads/metabox.php:920
1640
+ #: includes/admin/settings/register-settings.php:775
1641
  #: includes/admin/thickbox.php:96
1642
  msgid "Add to Cart"
1643
  msgstr ""
1644
 
1645
  #: includes/admin/downloads/metabox.php:921
1646
+ #: includes/admin/settings/register-settings.php:782 includes/shortcodes.php:47
1647
  #: includes/template-functions.php:67
1648
  msgid "Buy Now"
1649
  msgstr ""
1684
  msgid "You do not have permission to import data."
1685
  msgstr ""
1686
 
1687
+ #: includes/admin/import/class-batch-import-payments.php:273
1688
  #: includes/admin/reporting/export/class-batch-export-payments.php:53
1689
  msgid "Products (Raw)"
1690
  msgstr ""
1691
 
1692
+ #: includes/admin/import/class-batch-import-payments.php:584
1693
  msgid "payments"
1694
  msgstr ""
1695
 
2024
  msgstr ""
2025
 
2026
  #: includes/admin/payments/view-order-details.php:115
2027
+ #: includes/admin/settings/register-settings.php:739
2028
  msgid "None"
2029
  msgstr ""
2030
 
2184
  msgstr ""
2185
 
2186
  #: includes/admin/payments/view-order-details.php:514
2187
+ #: includes/admin/settings/register-settings.php:307
2188
  msgid "Select a country"
2189
  msgstr ""
2190
 
2191
  #: includes/admin/payments/view-order-details.php:530
2192
+ #: includes/admin/settings/register-settings.php:315
2193
  msgid "Select a state"
2194
  msgstr ""
2195
 
2206
  msgstr ""
2207
 
2208
  #: includes/admin/plugins.php:27
2209
+ #: includes/admin/settings/register-settings.php:1199
2210
  msgid "General Settings"
2211
  msgstr ""
2212
 
2368
 
2369
  #: includes/admin/reporting/class-export-payments.php:70
2370
  #: includes/admin/reporting/export/class-batch-export-payments.php:50
2371
+ #: includes/admin/settings/register-settings.php:1840
2372
  #: includes/admin/tools.php:591 templates/shortcode-profile-editor.php:138
2373
  msgid "Country"
2374
  msgstr ""
2575
  msgstr ""
2576
 
2577
  #: includes/admin/reporting/export/class-batch-export-downloads.php:54
2578
+ #: includes/admin/settings/register-settings.php:811
2579
  #: includes/admin/tools.php:774
2580
  msgid "File Download Limit"
2581
  msgstr ""
2601
  msgstr ""
2602
 
2603
  #: includes/admin/reporting/export/class-batch-export-payments.php:63
2604
+ #: includes/admin/settings/register-settings.php:342
2605
  msgid "Currency"
2606
  msgstr ""
2607
 
2713
  msgstr ""
2714
 
2715
  #: includes/admin/reporting/logs.php:144
2716
+ #: includes/admin/settings/register-settings.php:1226
2717
  msgid "File Downloads"
2718
  msgstr ""
2719
 
2832
 
2833
  #: includes/admin/reporting/reports.php:58
2834
  #: includes/admin/settings/contextual-help.php:71
2835
+ #: includes/admin/settings/register-settings.php:1148
2836
  msgid "Taxes"
2837
  msgstr ""
2838
 
2968
  msgstr ""
2969
 
2970
  #: includes/admin/settings/contextual-help.php:48
2971
+ #: includes/admin/settings/register-settings.php:416
2972
+ #: includes/admin/settings/register-settings.php:1145
2973
  msgid "Payment Gateways"
2974
  msgstr ""
2975
 
2998
  msgstr ""
2999
 
3000
  #: includes/admin/settings/contextual-help.php:57
3001
+ #: includes/admin/settings/register-settings.php:1146
3002
  msgid "Emails"
3003
  msgstr ""
3004
 
3018
  msgstr ""
3019
 
3020
  #: includes/admin/settings/contextual-help.php:65
3021
+ #: includes/admin/settings/register-settings.php:1147
3022
  msgid "Styles"
3023
  msgstr ""
3024
 
3142
  #: includes/admin/settings/register-settings.php:263
3143
  #: includes/admin/settings/register-settings.php:272
3144
  #: includes/admin/settings/register-settings.php:281
3145
+ #: includes/admin/settings/register-settings.php:290
3146
  msgid "Select a page"
3147
  msgstr ""
3148
 
3177
  msgstr ""
3178
 
3179
  #: includes/admin/settings/register-settings.php:285
3180
+ msgid "Login Redirect Page"
3181
+ msgstr ""
3182
+
3183
+ #: includes/admin/settings/register-settings.php:294
3184
  msgid "Store Location"
3185
  msgstr ""
3186
 
3187
+ #: includes/admin/settings/register-settings.php:297
3188
  msgid "Store Location Settings"
3189
  msgstr ""
3190
 
3191
+ #: includes/admin/settings/register-settings.php:298
3192
  msgid ""
3193
  "Easy Digital Downloads will use the following Country and State to pre-fill "
3194
  "fields at checkout. This will also pre-calculate any taxes defined if the "
3195
  "location below has taxes enabled."
3196
  msgstr ""
3197
 
3198
+ #: includes/admin/settings/register-settings.php:302
3199
  msgid "Base Country"
3200
  msgstr ""
3201
 
3202
+ #: includes/admin/settings/register-settings.php:303
3203
  msgid "Where does your store operate from?"
3204
  msgstr ""
3205
 
3206
+ #: includes/admin/settings/register-settings.php:311
3207
  msgid "Base State / Province"
3208
  msgstr ""
3209
 
3210
+ #: includes/admin/settings/register-settings.php:312
3211
  msgid "What state / province does your store operate from?"
3212
  msgstr ""
3213
 
3214
+ #: includes/admin/settings/register-settings.php:319
3215
  msgid "Tracking Settings"
3216
  msgstr ""
3217
 
3218
+ #: includes/admin/settings/register-settings.php:325
3219
  msgid "Allow Usage Tracking?"
3220
  msgstr ""
3221
 
3222
+ #: includes/admin/settings/register-settings.php:327
3223
  msgid ""
3224
  "Allow Easy Digital Downloads to anonymously track how this plugin is used "
3225
  "and help us make the plugin better. Opt-in to tracking and our newsletter "
3228
  "sensitive data is tracked."
3229
  msgstr ""
3230
 
3231
+ #: includes/admin/settings/register-settings.php:336
3232
+ #: includes/admin/settings/register-settings.php:1200
3233
  msgid "Currency Settings"
3234
  msgstr ""
3235
 
3236
+ #: includes/admin/settings/register-settings.php:343
3237
  msgid ""
3238
  "Choose your currency. Note that some payment gateways have currency "
3239
  "restrictions."
3240
  msgstr ""
3241
 
3242
+ #: includes/admin/settings/register-settings.php:350
3243
  msgid "Currency Position"
3244
  msgstr ""
3245
 
3246
+ #: includes/admin/settings/register-settings.php:351
3247
  msgid "Choose the location of the currency sign."
3248
  msgstr ""
3249
 
3250
+ #: includes/admin/settings/register-settings.php:354
3251
  msgid "Before - $10"
3252
  msgstr ""
3253
 
3254
+ #: includes/admin/settings/register-settings.php:355
3255
  msgid "After - 10$"
3256
  msgstr ""
3257
 
3258
+ #: includes/admin/settings/register-settings.php:360
3259
  msgid "Thousands Separator"
3260
  msgstr ""
3261
 
3262
+ #: includes/admin/settings/register-settings.php:361
3263
  msgid "The symbol (usually , or .) to separate thousands"
3264
  msgstr ""
3265
 
3266
+ #: includes/admin/settings/register-settings.php:368
3267
  msgid "Decimal Separator"
3268
  msgstr ""
3269
 
3270
+ #: includes/admin/settings/register-settings.php:369
3271
  msgid "The symbol (usually , or .) to separate decimal points"
3272
  msgstr ""
3273
 
3274
+ #: includes/admin/settings/register-settings.php:378
3275
+ #: includes/admin/settings/register-settings.php:381
3276
+ #: includes/admin/settings/register-settings.php:1201
3277
  msgid "API Settings"
3278
  msgstr ""
3279
 
3280
+ #: includes/admin/settings/register-settings.php:382
3281
  msgid ""
3282
  "The Easy Digital Downloads REST API provides access to store data through "
3283
  "our API endpoints. Enable this setting if you would like all user accounts "
3284
  "to be able to generate their own API keys."
3285
  msgstr ""
3286
 
3287
+ #: includes/admin/settings/register-settings.php:386
3288
  msgid "Allow User Keys"
3289
  msgstr ""
3290
 
3291
+ #: includes/admin/settings/register-settings.php:387
3292
  msgid ""
3293
  "Check this box to allow all users to generate API keys. Users with the "
3294
  "'manage_shop_settings' capability are always allowed to generate keys."
3295
  msgstr ""
3296
 
3297
+ #: includes/admin/settings/register-settings.php:392
3298
  msgid ""
3299
  "Visit the <a href=\"%s\" target=\"_blank\">REST API documentation</a> for "
3300
  "further information."
3301
  msgstr ""
3302
 
3303
+ #: includes/admin/settings/register-settings.php:404
3304
+ #: includes/admin/settings/register-settings.php:1204
3305
  msgid "Gateway Settings"
3306
  msgstr ""
3307
 
3308
+ #: includes/admin/settings/register-settings.php:410
3309
  msgid "Test Mode"
3310
  msgstr ""
3311
 
3312
+ #: includes/admin/settings/register-settings.php:411
3313
  msgid ""
3314
  "While in test mode no live transactions are processed. To fully use test "
3315
  "mode, you must have a sandbox (test) account for the payment gateway you "
3316
  "are testing."
3317
  msgstr ""
3318
 
3319
+ #: includes/admin/settings/register-settings.php:417
3320
  msgid "Choose the payment gateways you want to enable."
3321
  msgstr ""
3322
 
3323
+ #: includes/admin/settings/register-settings.php:423
3324
  msgid "Default Gateway"
3325
  msgstr ""
3326
 
3327
+ #: includes/admin/settings/register-settings.php:424
3328
  msgid "This gateway will be loaded automatically with the checkout page."
3329
  msgstr ""
3330
 
3331
+ #: includes/admin/settings/register-settings.php:430
3332
  msgid "Accepted Payment Method Icons"
3333
  msgstr ""
3334
 
3335
+ #: includes/admin/settings/register-settings.php:431
3336
  msgid "Display icons for the selected payment methods"
3337
  msgstr ""
3338
 
3339
+ #: includes/admin/settings/register-settings.php:431
3340
  msgid ""
3341
  "You will also need to configure your gateway settings if you are accepting "
3342
  "credit cards"
3343
  msgstr ""
3344
 
3345
+ #: includes/admin/settings/register-settings.php:451
3346
+ #: includes/admin/settings/register-settings.php:1208
3347
  msgid "Email Settings"
3348
  msgstr ""
3349
 
3350
+ #: includes/admin/settings/register-settings.php:456
3351
  msgid "Email Template"
3352
  msgstr ""
3353
 
3354
+ #: includes/admin/settings/register-settings.php:457
3355
  msgid ""
3356
  "Choose a template. Click \"Save Changes\" then \"Preview Purchase Receipt\" "
3357
  "to see the new template."
3358
  msgstr ""
3359
 
3360
+ #: includes/admin/settings/register-settings.php:463
3361
  msgid "Logo"
3362
  msgstr ""
3363
 
3364
+ #: includes/admin/settings/register-settings.php:464
3365
  msgid ""
3366
  "Upload or choose a logo to be displayed at the top of the purchase receipt "
3367
  "emails. Displayed on HTML emails only."
3368
  msgstr ""
3369
 
3370
+ #: includes/admin/settings/register-settings.php:477
3371
+ #: includes/admin/settings/register-settings.php:1209
3372
  msgid "Purchase Receipts"
3373
  msgstr ""
3374
 
3375
+ #: includes/admin/settings/register-settings.php:482
3376
  msgid "From Name"
3377
  msgstr ""
3378
 
3379
+ #: includes/admin/settings/register-settings.php:483
3380
  msgid ""
3381
  "The name purchase receipts are said to come from. This should probably be "
3382
  "your site or shop name."
3383
  msgstr ""
3384
 
3385
+ #: includes/admin/settings/register-settings.php:489
3386
  msgid "From Email"
3387
  msgstr ""
3388
 
3389
+ #: includes/admin/settings/register-settings.php:490
3390
  msgid ""
3391
  "Email to send purchase receipts from. This will act as the \"from\" and "
3392
  "\"reply-to\" address."
3393
  msgstr ""
3394
 
3395
+ #: includes/admin/settings/register-settings.php:496
3396
  msgid "Purchase Email Subject"
3397
  msgstr ""
3398
 
3399
+ #: includes/admin/settings/register-settings.php:497
3400
  msgid "Enter the subject line for the purchase receipt email"
3401
  msgstr ""
3402
 
3403
+ #: includes/admin/settings/register-settings.php:499
3404
+ #: includes/admin/settings/register-settings.php:506
3405
+ #: includes/admin/settings/register-settings.php:510
3406
  #: includes/emails/functions.php:36 includes/emails/functions.php:40
3407
  #: includes/emails/functions.php:77 includes/emails/functions.php:81
3408
  #: includes/emails/template.php:141
3409
  msgid "Purchase Receipt"
3410
  msgstr ""
3411
 
3412
+ #: includes/admin/settings/register-settings.php:503
3413
  msgid "Purchase Email Heading"
3414
  msgstr ""
3415
 
3416
+ #: includes/admin/settings/register-settings.php:504
3417
  msgid "Enter the heading for the purchase receipt email"
3418
  msgstr ""
3419
 
3420
+ #: includes/admin/settings/register-settings.php:511
3421
  msgid ""
3422
  "Enter the text that is sent as purchase receipt email to users after "
3423
  "completion of a successful purchase. HTML is accepted. Available template "
3424
  "tags:"
3425
  msgstr ""
3426
 
3427
+ #: includes/admin/settings/register-settings.php:513
3428
  #: includes/emails/template.php:159
3429
  msgid "Dear"
3430
  msgstr ""
3431
 
3432
+ #: includes/admin/settings/register-settings.php:513
3433
  #: includes/emails/template.php:160
3434
  msgid ""
3435
  "Thank you for your purchase. Please click on the link(s) below to download "
3436
  "your files."
3437
  msgstr ""
3438
 
3439
+ #: includes/admin/settings/register-settings.php:519
3440
  msgid "Sale Notifications"
3441
  msgstr ""
3442
 
3443
+ #: includes/admin/settings/register-settings.php:524
3444
  msgid "Sale Notification Subject"
3445
  msgstr ""
3446
 
3447
+ #: includes/admin/settings/register-settings.php:525
3448
  msgid "Enter the subject line for the sale notification email"
3449
  msgstr ""
3450
 
3451
+ #: includes/admin/settings/register-settings.php:531
3452
  msgid "Sale Notification"
3453
  msgstr ""
3454
 
3455
+ #: includes/admin/settings/register-settings.php:532
3456
  msgid ""
3457
  "Enter the text that is sent as sale notification email after completion of "
3458
  "a purchase. HTML is accepted. Available template tags:"
3459
  msgstr ""
3460
 
3461
+ #: includes/admin/settings/register-settings.php:538
3462
  msgid "Sale Notification Emails"
3463
  msgstr ""
3464
 
3465
+ #: includes/admin/settings/register-settings.php:539
3466
  msgid ""
3467
  "Enter the email address(es) that should receive a notification anytime a "
3468
  "sale is made, one per line"
3469
  msgstr ""
3470
 
3471
+ #: includes/admin/settings/register-settings.php:545
3472
  msgid "Disable Admin Notifications"
3473
  msgstr ""
3474
 
3475
+ #: includes/admin/settings/register-settings.php:546
3476
  msgid "Check this box if you do not want to receive sales notification emails."
3477
  msgstr ""
3478
 
3479
+ #: includes/admin/settings/register-settings.php:558
3480
+ #: includes/admin/settings/register-settings.php:1213
3481
  msgid "Style Settings"
3482
  msgstr ""
3483
 
3484
+ #: includes/admin/settings/register-settings.php:563
3485
  msgid "Disable Styles"
3486
  msgstr ""
3487
 
3488
+ #: includes/admin/settings/register-settings.php:564
3489
  msgid ""
3490
  "Check this to disable all included styling of buttons, checkout fields, and "
3491
  "all other elements."
3492
  msgstr ""
3493
 
3494
+ #: includes/admin/settings/register-settings.php:566
3495
  msgid "Disabling Styles"
3496
  msgstr ""
3497
 
3498
+ #: includes/admin/settings/register-settings.php:567
3499
  msgid ""
3500
  "If your theme has a complete custom CSS file for Easy Digital Downloads, "
3501
  "you may wish to disable our default styles. This is not recommended unless "
3502
  "your sure your theme has a complete custom CSS."
3503
  msgstr ""
3504
 
3505
+ #: includes/admin/settings/register-settings.php:571
3506
  msgid "Buttons"
3507
  msgstr ""
3508
 
3509
+ #: includes/admin/settings/register-settings.php:572
3510
  msgid "Options for add to cart and purchase buttons"
3511
  msgstr ""
3512
 
3513
+ #: includes/admin/settings/register-settings.php:577
3514
  msgid "Default Button Style"
3515
  msgstr ""
3516
 
3517
+ #: includes/admin/settings/register-settings.php:578
3518
  msgid "Choose the style you want to use for the buttons."
3519
  msgstr ""
3520
 
3521
+ #: includes/admin/settings/register-settings.php:584
3522
  msgid "Default Button Color"
3523
  msgstr ""
3524
 
3525
+ #: includes/admin/settings/register-settings.php:585
3526
  msgid "Choose the color you want to use for the buttons."
3527
  msgstr ""
3528
 
3529
+ #: includes/admin/settings/register-settings.php:598
3530
+ #: includes/admin/settings/register-settings.php:1216
3531
  msgid "Tax Settings"
3532
  msgstr ""
3533
 
3534
+ #: includes/admin/settings/register-settings.php:603
3535
  msgid "Need help?"
3536
  msgstr ""
3537
 
3538
+ #: includes/admin/settings/register-settings.php:604
3539
  msgid ""
3540
  "Visit the <a href=\"%s\" target=\"_blank\">Tax setup documentation</a> for "
3541
  "further information. If you need VAT support, there are options listed on "
3542
  "the documentation page."
3543
  msgstr ""
3544
 
3545
+ #: includes/admin/settings/register-settings.php:609
3546
  msgid "Enable Taxes"
3547
  msgstr ""
3548
 
3549
+ #: includes/admin/settings/register-settings.php:610
3550
  msgid "Check this to enable taxes on purchases."
3551
  msgstr ""
3552
 
3553
+ #: includes/admin/settings/register-settings.php:612
3554
  msgid "Enabling Taxes"
3555
  msgstr ""
3556
 
3557
+ #: includes/admin/settings/register-settings.php:613
3558
  msgid ""
3559
  "With taxes enabled, Easy Digital Downloads will use the rules below to "
3560
  "charge tax to customers. With taxes enabled, customers are required to "
3561
  "input their address on checkout so that taxes can be properly calculated."
3562
  msgstr ""
3563
 
3564
+ #: includes/admin/settings/register-settings.php:617
3565
  msgid "Tax Rates"
3566
  msgstr ""
3567
 
3568
+ #: includes/admin/settings/register-settings.php:618
3569
  msgid "Enter tax rates for specific regions."
3570
  msgstr ""
3571
 
3572
+ #: includes/admin/settings/register-settings.php:623
3573
+ #: includes/admin/settings/register-settings.php:627
3574
  msgid "Fallback Tax Rate"
3575
  msgstr ""
3576
 
3577
+ #: includes/admin/settings/register-settings.php:624
3578
  msgid ""
3579
  "Enter a percentage, such as 6.5. Customers not in a specific rate will be "
3580
  "charged this rate."
3581
  msgstr ""
3582
 
3583
+ #: includes/admin/settings/register-settings.php:628
3584
  msgid ""
3585
  "If the customer's address fails to meet the above tax rules, you can define "
3586
  "a `default` tax rate to be applied to all other customers."
3587
  msgstr ""
3588
 
3589
+ #: includes/admin/settings/register-settings.php:632
3590
  msgid "Prices entered with tax"
3591
  msgstr ""
3592
 
3593
+ #: includes/admin/settings/register-settings.php:633
3594
  msgid "This option affects how you enter prices."
3595
  msgstr ""
3596
 
3597
+ #: includes/admin/settings/register-settings.php:637
3598
  msgid "Yes, I will enter prices inclusive of tax"
3599
  msgstr ""
3600
 
3601
+ #: includes/admin/settings/register-settings.php:638
3602
  msgid "No, I will enter prices exclusive of tax"
3603
  msgstr ""
3604
 
3605
+ #: includes/admin/settings/register-settings.php:640
3606
  msgid "Prices Inclusive of Tax"
3607
  msgstr ""
3608
 
3609
+ #: includes/admin/settings/register-settings.php:641
3610
  msgid ""
3611
  "When using prices inclusive of tax, you will be entering your prices as the "
3612
  "total amount you want a customer to pay for the download, including tax. "
3614
  "for the defined total price."
3615
  msgstr ""
3616
 
3617
+ #: includes/admin/settings/register-settings.php:645
3618
  msgid "Display Tax Rate on Prices"
3619
  msgstr ""
3620
 
3621
+ #: includes/admin/settings/register-settings.php:646
3622
  msgid "Some countries require a notice when product prices include tax."
3623
  msgstr ""
3624
 
3625
+ #: includes/admin/settings/register-settings.php:651
3626
  msgid "Display during checkout"
3627
  msgstr ""
3628
 
3629
+ #: includes/admin/settings/register-settings.php:652
3630
  msgid "Should prices on the checkout page be shown with or without tax?"
3631
  msgstr ""
3632
 
3633
+ #: includes/admin/settings/register-settings.php:656
3634
  msgid "Including tax"
3635
  msgstr ""
3636
 
3637
+ #: includes/admin/settings/register-settings.php:657
3638
  msgid "Excluding tax"
3639
  msgstr ""
3640
 
3641
+ #: includes/admin/settings/register-settings.php:676
3642
+ #: includes/admin/settings/register-settings.php:1223
3643
  msgid "Misc Settings"
3644
  msgstr ""
3645
 
3646
+ #: includes/admin/settings/register-settings.php:681
3647
  msgid "Enable AJAX"
3648
  msgstr ""
3649
 
3650
+ #: includes/admin/settings/register-settings.php:682
3651
  msgid "Check this to enable AJAX for the shopping cart."
3652
  msgstr ""
3653
 
3654
+ #: includes/admin/settings/register-settings.php:685
3655
  msgid "Enabling AJAX"
3656
  msgstr ""
3657
 
3658
+ #: includes/admin/settings/register-settings.php:686
3659
  msgid ""
3660
  "With AJAX enabled, customers can perform cart actions like adding and "
3661
  "removing items from their shopping cart without pages having to be "
3662
  "reloaded. This also creates fewer steps during the checkout process."
3663
  msgstr ""
3664
 
3665
+ #: includes/admin/settings/register-settings.php:690
3666
+ #: includes/admin/settings/register-settings.php:693
3667
  msgid "Redirect to Checkout"
3668
  msgstr ""
3669
 
3670
+ #: includes/admin/settings/register-settings.php:691
3671
  msgid "Immediately redirect to checkout after adding an item to the cart?"
3672
  msgstr ""
3673
 
3674
+ #: includes/admin/settings/register-settings.php:694
3675
  msgid ""
3676
  "When enabled, once an item has been added to the cart, the customer will be "
3677
  "redirected directly to your checkout page. This is useful for stores that "
3678
  "sell single items."
3679
  msgstr ""
3680
 
3681
+ #: includes/admin/settings/register-settings.php:698
3682
  msgid "Item Quantities"
3683
  msgstr ""
3684
 
3685
+ #: includes/admin/settings/register-settings.php:699
3686
  msgid "Allow item quantities to be changed."
3687
  msgstr ""
3688
 
3689
+ #: includes/admin/settings/register-settings.php:704
3690
  msgid "Remove Data on Uninstall?"
3691
  msgstr ""
3692
 
3693
+ #: includes/admin/settings/register-settings.php:705
3694
  msgid ""
3695
  "Check this box if you would like EDD to completely remove all of its data "
3696
  "when the plugin is deleted."
3697
  msgstr ""
3698
 
3699
+ #: includes/admin/settings/register-settings.php:712
3700
+ #: includes/admin/settings/register-settings.php:1224
3701
  msgid "Checkout Settings"
3702
  msgstr ""
3703
 
3704
+ #: includes/admin/settings/register-settings.php:717
3705
  msgid "Enforce SSL on Checkout"
3706
  msgstr ""
3707
 
3708
+ #: includes/admin/settings/register-settings.php:718
3709
  msgid ""
3710
  "Check this to force users to be redirected to the secure checkout page. You "
3711
  "must have an SSL certificate installed to use this option."
3712
  msgstr ""
3713
 
3714
+ #: includes/admin/settings/register-settings.php:723
3715
  msgid "Disable Guest Checkout"
3716
  msgstr ""
3717
 
3718
+ #: includes/admin/settings/register-settings.php:724
3719
  msgid "Require that users be logged-in to purchase files."
3720
  msgstr ""
3721
 
3722
+ #: includes/admin/settings/register-settings.php:726
3723
  msgid "Disabling Guest Checkout"
3724
  msgstr ""
3725
 
3726
+ #: includes/admin/settings/register-settings.php:727
3727
  msgid ""
3728
  "You can require that customers create and login to user accounts prior to "
3729
  "purchasing from your store by enabling this option. When unchecked, users "
3730
  "can purchase without being logged in by using their name and email address."
3731
  msgstr ""
3732
 
3733
+ #: includes/admin/settings/register-settings.php:731
3734
  msgid "Show Register / Login Form?"
3735
  msgstr ""
3736
 
3737
+ #: includes/admin/settings/register-settings.php:732
3738
  msgid ""
3739
  "Display the registration and login forms on the checkout page for "
3740
  "non-logged-in users."
3741
  msgstr ""
3742
 
3743
+ #: includes/admin/settings/register-settings.php:736
3744
  msgid "Registration and Login Forms"
3745
  msgstr ""
3746
 
3747
+ #: includes/admin/settings/register-settings.php:737
3748
  msgid "Registration Form Only"
3749
  msgstr ""
3750
 
3751
+ #: includes/admin/settings/register-settings.php:738
3752
  msgid "Login Form Only"
3753
  msgstr ""
3754
 
3755
+ #: includes/admin/settings/register-settings.php:744
3756
  msgid "Multiple Discounts"
3757
  msgstr ""
3758
 
3759
+ #: includes/admin/settings/register-settings.php:745
3760
  msgid "Allow customers to use multiple discounts on the same purchase?"
3761
  msgstr ""
3762
 
3763
+ #: includes/admin/settings/register-settings.php:750
3764
  msgid "Enable Cart Saving"
3765
  msgstr ""
3766
 
3767
+ #: includes/admin/settings/register-settings.php:751
3768
  msgid "Check this to enable cart saving on the checkout."
3769
  msgstr ""
3770
 
3771
+ #: includes/admin/settings/register-settings.php:753
3772
  msgid "Cart Saving"
3773
  msgstr ""
3774
 
3775
+ #: includes/admin/settings/register-settings.php:754
3776
  msgid ""
3777
  "Cart saving allows shoppers to create a temporary link to their current "
3778
  "shopping cart so they can come back to it later, or share it with someone."
3779
  msgstr ""
3780
 
3781
+ #: includes/admin/settings/register-settings.php:760
3782
+ #: includes/admin/settings/register-settings.php:1225
3783
  msgid "Button Text"
3784
  msgstr ""
3785
 
3786
+ #: includes/admin/settings/register-settings.php:765
3787
  msgid "Complete Purchase Text"
3788
  msgstr ""
3789
 
3790
+ #: includes/admin/settings/register-settings.php:766
3791
  msgid "The button label for completing a purchase."
3792
  msgstr ""
3793
 
3794
+ #: includes/admin/settings/register-settings.php:772
3795
  msgid "Add to Cart Text"
3796
  msgstr ""
3797
 
3798
+ #: includes/admin/settings/register-settings.php:773
3799
  msgid "Text shown on the Add to Cart Buttons."
3800
  msgstr ""
3801
 
3802
+ #: includes/admin/settings/register-settings.php:779
3803
  msgid "Buy Now Text"
3804
  msgstr ""
3805
 
3806
+ #: includes/admin/settings/register-settings.php:780
3807
  msgid "Text shown on the Buy Now Buttons."
3808
  msgstr ""
3809
 
3810
+ #: includes/admin/settings/register-settings.php:788
3811
  msgid "File Download Settings"
3812
  msgstr ""
3813
 
3814
+ #: includes/admin/settings/register-settings.php:793
3815
+ #: includes/admin/settings/register-settings.php:796
3816
  msgid "Download Method"
3817
  msgstr ""
3818
 
3819
+ #: includes/admin/settings/register-settings.php:794
3820
  msgid "Select the file download method. Note, not all methods work on all servers."
3821
  msgstr ""
3822
 
3823
+ #: includes/admin/settings/register-settings.php:797
3824
  msgid ""
3825
  "Due to its consistency in multiple platforms and better file protection, "
3826
  "'forced' is the default method. Because Easy Digital Downloads uses PHP to "
3831
  "method can help resolve this."
3832
  msgstr ""
3833
 
3834
+ #: includes/admin/settings/register-settings.php:799
3835
  msgid "Forced"
3836
  msgstr ""
3837
 
3838
+ #: includes/admin/settings/register-settings.php:800
3839
  msgid "Redirect"
3840
  msgstr ""
3841
 
3842
+ #: includes/admin/settings/register-settings.php:805
3843
  msgid "Symlink File Downloads?"
3844
  msgstr ""
3845
 
3846
+ #: includes/admin/settings/register-settings.php:806
3847
  msgid ""
3848
  "Check this if you are delivering really large files or having problems with "
3849
  "file downloads completing."
3850
  msgstr ""
3851
 
3852
+ #: includes/admin/settings/register-settings.php:812
3853
  msgid ""
3854
  "The maximum number of times files can be downloaded for purchases. Can be "
3855
  "overwritten for each %s."
3856
  msgstr ""
3857
 
3858
+ #: includes/admin/settings/register-settings.php:815
3859
  msgid "File Download Limits"
3860
  msgstr ""
3861
 
3862
+ #: includes/admin/settings/register-settings.php:816
3863
  msgid ""
3864
  "Set the global default for the number of times a customer can download "
3865
  "items they purchase. Using a value of 0 is unlimited. This can be defined "
3867
  "individual purchase."
3868
  msgstr ""
3869
 
3870
+ #: includes/admin/settings/register-settings.php:820
3871
+ #: includes/admin/settings/register-settings.php:822
3872
  msgid "Download Link Expiration"
3873
  msgstr ""
3874
 
3875
+ #: includes/admin/settings/register-settings.php:821
3876
  msgid ""
3877
  "How long should download links be valid for? Default is 24 hours from the "
3878
  "time they are generated. Enter a time in hours."
3879
  msgstr ""
3880
 
3881
+ #: includes/admin/settings/register-settings.php:823
3882
  msgid ""
3883
  "When a customer receives a link to their downloads via email, in their "
3884
  "receipt, or in their purchase history, the link will only be valid for the "
3887
  "customer."
3888
  msgstr ""
3889
 
3890
+ #: includes/admin/settings/register-settings.php:831
3891
  msgid "Disable Redownload?"
3892
  msgstr ""
3893
 
3894
+ #: includes/admin/settings/register-settings.php:832
3895
  msgid ""
3896
  "Check this if you do not want to allow users to redownload items from their "
3897
  "purchase history."
3898
  msgstr ""
3899
 
3900
+ #: includes/admin/settings/register-settings.php:839
3901
+ #: includes/admin/settings/register-settings.php:1227
3902
  msgid "Accounting Settings"
3903
  msgstr ""
3904
 
3905
+ #: includes/admin/settings/register-settings.php:844
3906
  msgid "Enable SKU Entry"
3907
  msgstr ""
3908
 
3909
+ #: includes/admin/settings/register-settings.php:845
3910
  msgid ""
3911
  "Check this box to allow entry of product SKUs. SKUs will be shown on "
3912
  "purchase receipt and exported purchase histories."
3913
  msgstr ""
3914
 
3915
+ #: includes/admin/settings/register-settings.php:850
3916
  msgid "Sequential Order Numbers"
3917
  msgstr ""
3918
 
3919
+ #: includes/admin/settings/register-settings.php:851
3920
  msgid "Check this box to enable sequential order numbers."
3921
  msgstr ""
3922
 
3923
+ #: includes/admin/settings/register-settings.php:856
3924
  msgid "Sequential Starting Number"
3925
  msgstr ""
3926
 
3927
+ #: includes/admin/settings/register-settings.php:857
3928
  msgid "The number at which the sequence should begin."
3929
  msgstr ""
3930
 
3931
+ #: includes/admin/settings/register-settings.php:864
3932
  msgid "Sequential Number Prefix"
3933
  msgstr ""
3934
 
3935
+ #: includes/admin/settings/register-settings.php:865
3936
  msgid "A prefix to prepend to all sequential order numbers."
3937
  msgstr ""
3938
 
3939
+ #: includes/admin/settings/register-settings.php:870
3940
  msgid "Sequential Number Postfix"
3941
  msgstr ""
3942
 
3943
+ #: includes/admin/settings/register-settings.php:871
3944
  msgid "A postfix to append to all sequential order numbers."
3945
  msgstr ""
3946
 
3947
+ #: includes/admin/settings/register-settings.php:878
3948
  msgid "Agreement Settings"
3949
  msgstr ""
3950
 
3951
+ #: includes/admin/settings/register-settings.php:883
3952
  msgid "Agree to Terms"
3953
  msgstr ""
3954
 
3955
+ #: includes/admin/settings/register-settings.php:884
3956
  msgid ""
3957
  "Check this to show an agree to terms on the checkout that users must agree "
3958
  "to before purchasing."
3959
  msgstr ""
3960
 
3961
+ #: includes/admin/settings/register-settings.php:889
3962
  msgid "Agree to Terms Label"
3963
  msgstr ""
3964
 
3965
+ #: includes/admin/settings/register-settings.php:890
3966
  msgid "Label shown next to the agree to terms check box."
3967
  msgstr ""
3968
 
3969
+ #: includes/admin/settings/register-settings.php:896
3970
  msgid "Agreement Text"
3971
  msgstr ""
3972
 
3973
+ #: includes/admin/settings/register-settings.php:897
3974
  msgid "If Agree to Terms is checked, enter the agreement terms here."
3975
  msgstr ""
3976
 
3977
+ #: includes/admin/settings/register-settings.php:1001
3978
  msgid "Settings updated."
3979
  msgstr ""
3980
 
3981
+ #: includes/admin/settings/register-settings.php:1154
3982
  msgid "Licenses"
3983
  msgstr ""
3984
 
3985
+ #: includes/admin/settings/register-settings.php:1157
3986
  msgid "Misc"
3987
  msgstr ""
3988
 
3989
+ #: includes/admin/settings/register-settings.php:1205
3990
  #: includes/gateways/functions.php:25 includes/gateways/paypal-standard.php:33
3991
  msgid "PayPal Standard"
3992
  msgstr ""
3993
 
3994
+ #: includes/admin/settings/register-settings.php:1210
3995
  msgid "New Sale Notifications"
3996
  msgstr ""
3997
 
3998
+ #: includes/admin/settings/register-settings.php:1219
3999
  msgid "Main"
4000
  msgstr ""
4001
 
4002
+ #: includes/admin/settings/register-settings.php:1228
4003
  msgid "Terms of Agreement"
4004
  msgstr ""
4005
 
4006
+ #: includes/admin/settings/register-settings.php:1619
4007
  msgid "The callback function used for the %s setting is missing."
4008
  msgstr ""
4009
 
4010
+ #: includes/admin/settings/register-settings.php:1754
4011
  msgid "Upload File"
4012
  msgstr ""
4013
 
4014
+ #: includes/admin/settings/register-settings.php:1842
4015
  msgid "Country Wide"
4016
  msgstr ""
4017
 
4018
+ #: includes/admin/settings/register-settings.php:1843
4019
  msgid "Rate"
4020
  msgstr ""
4021
 
4022
+ #: includes/admin/settings/register-settings.php:1860
4023
+ #: includes/admin/settings/register-settings.php:1904
4024
  msgid "Choose a country"
4025
  msgstr ""
4026
 
4027
+ #: includes/admin/settings/register-settings.php:1875
4028
  msgid "Choose a state"
4029
  msgstr ""
4030
 
4031
+ #: includes/admin/settings/register-settings.php:1887
4032
+ #: includes/admin/settings/register-settings.php:1914
4033
  msgid "Apply to whole country"
4034
  msgstr ""
4035
 
4036
+ #: includes/admin/settings/register-settings.php:1890
4037
+ #: includes/admin/settings/register-settings.php:1917
4038
  msgid "Remove Rate"
4039
  msgstr ""
4040
 
4041
+ #: includes/admin/settings/register-settings.php:1922
4042
  msgid "Add Tax Rate"
4043
  msgstr ""
4044
 
4045
+ #: includes/admin/settings/register-settings.php:1975
4046
  msgid ""
4047
  "Your license key expired on %s. Please <a href=\"%s\" "
4048
  "target=\"_blank\">renew your license key</a>."
4049
  msgstr ""
4050
 
4051
+ #: includes/admin/settings/register-settings.php:1988
4052
  msgid ""
4053
  "Your license key has been disabled. Please <a href=\"%s\" "
4054
  "target=\"_blank\">contact support</a> for more information."
4055
  msgstr ""
4056
 
4057
+ #: includes/admin/settings/register-settings.php:2000
4058
  msgid ""
4059
  "Invalid license. Please <a href=\"%s\" target=\"_blank\">visit your account "
4060
  "page</a> and verify it."
4061
  msgstr ""
4062
 
4063
+ #: includes/admin/settings/register-settings.php:2013
4064
  msgid ""
4065
  "Your %s is not active for this URL. Please <a href=\"%s\" "
4066
  "target=\"_blank\">visit your account page</a> to manage your license key "
4067
  "URLs."
4068
  msgstr ""
4069
 
4070
+ #: includes/admin/settings/register-settings.php:2025
4071
  msgid "This appears to be an invalid license key for %s."
4072
  msgstr ""
4073
 
4074
+ #: includes/admin/settings/register-settings.php:2034
4075
  msgid ""
4076
  "Your license key has reached its activation limit. <a href=\"%s\">View "
4077
  "possible upgrades</a> now."
4078
  msgstr ""
4079
 
4080
+ #: includes/admin/settings/register-settings.php:2060
4081
  msgid "License key never expires."
4082
  msgstr ""
4083
 
4084
+ #: includes/admin/settings/register-settings.php:2067
4085
  msgid ""
4086
  "Your license key expires soon! It expires on %s. <a href=\"%s\" "
4087
  "target=\"_blank\">Renew your license key</a>."
4088
  msgstr ""
4089
 
4090
+ #: includes/admin/settings/register-settings.php:2077
4091
  msgid "Your license key expires on %s."
4092
  msgstr ""
4093
 
4094
+ #: includes/admin/settings/register-settings.php:2095
4095
  msgid "To receive updates, please enter your valid %s license key."
4096
  msgstr ""
4097
 
4098
+ #: includes/admin/settings/register-settings.php:2106
4099
  msgid "Deactivate License"
4100
  msgstr ""
4101
 
5107
  msgid "You do not have permission to %s API keys for this user"
5108
  msgstr ""
5109
 
5110
+ #: includes/cart/functions.php:449
5111
  msgid "includes %s tax"
5112
  msgstr ""
5113
 
5114
+ #: includes/cart/functions.php:451
5115
  msgid "excludes %s tax"
5116
  msgstr ""
5117
 
5118
+ #: includes/cart/functions.php:1158 includes/cart/functions.php:1226
5119
  #: templates/shortcode-profile-editor.php:22
5120
  msgid "Success"
5121
  msgstr ""
5122
 
5123
+ #: includes/cart/functions.php:1159
5124
  msgid "Cart saved successfully. You can restore your cart using this URL:"
5125
  msgstr ""
5126
 
5127
+ #: includes/cart/functions.php:1196 includes/cart/functions.php:1213
5128
  msgid "Cart restoration failed. Invalid token."
5129
  msgstr ""
5130
 
5131
+ #: includes/cart/functions.php:1204 includes/cart/functions.php:1216
5132
  msgid "The cart cannot be restored. Invalid token."
5133
  msgstr ""
5134
 
5135
+ #: includes/cart/functions.php:1226
5136
  msgid "Cart restored successfully."
5137
  msgstr ""
5138
 
5649
  msgstr ""
5650
 
5651
  #: includes/class-edd-cli.php:419 includes/class-edd-html-elements.php:208
5652
+ #: includes/shortcodes.php:259
5653
  msgid "No discounts found"
5654
  msgstr ""
5655
 
6368
 
6369
  #: includes/gateways/amazon-payments.php:1017
6370
  #: includes/gateways/amazon-payments.php:1071
6371
+ #: includes/gateways/paypal-standard.php:408
6372
+ #: includes/gateways/paypal-standard.php:413
6373
+ #: includes/gateways/paypal-standard.php:476
6374
+ #: includes/gateways/paypal-standard.php:485
6375
+ #: includes/gateways/paypal-standard.php:544
6376
+ #: includes/gateways/paypal-standard.php:551
6377
  msgid "IPN Error"
6378
  msgstr ""
6379
 
6519
  msgid "Payment creation failed before sending buyer to PayPal. Payment data: %s"
6520
  msgstr ""
6521
 
6522
+ #: includes/gateways/paypal-standard.php:408
6523
+ #: includes/gateways/paypal-standard.php:413
6524
  msgid "Invalid IPN verification response. IPN data: %s"
6525
  msgstr ""
6526
 
6527
+ #: includes/gateways/paypal-standard.php:476
6528
  msgid "Invalid business email in IPN response. IPN data: %s"
6529
  msgstr ""
6530
 
6531
+ #: includes/gateways/paypal-standard.php:478
6532
  msgid "Payment failed due to invalid PayPal business email."
6533
  msgstr ""
6534
 
6535
+ #: includes/gateways/paypal-standard.php:485
6536
  msgid "Invalid currency in IPN response. IPN data: %s"
6537
  msgstr ""
6538
 
6539
+ #: includes/gateways/paypal-standard.php:487
6540
  msgid "Payment failed due to invalid currency in PayPal IPN."
6541
  msgstr ""
6542
 
6543
+ #: includes/gateways/paypal-standard.php:544
6544
  msgid "Invalid payment amount in IPN response. IPN data: %s"
6545
  msgstr ""
6546
 
6547
+ #: includes/gateways/paypal-standard.php:546
6548
  msgid "Payment failed due to invalid amount in PayPal IPN."
6549
  msgstr ""
6550
 
6551
+ #: includes/gateways/paypal-standard.php:551
6552
  msgid "Invalid purchase key in IPN response. IPN data: %s"
6553
  msgstr ""
6554
 
6555
+ #: includes/gateways/paypal-standard.php:553
6556
  msgid "Payment failed due to invalid purchase key in PayPal IPN."
6557
  msgstr ""
6558
 
6559
+ #: includes/gateways/paypal-standard.php:559
6560
  #: tests/helpers/class-helper-payment.php:131
6561
  #: tests/helpers/class-helper-payment.php:234
6562
  #: tests/helpers/class-helper-payment.php:342
6566
  msgid "PayPal Transaction ID: %s"
6567
  msgstr ""
6568
 
6569
+ #: includes/gateways/paypal-standard.php:573
6570
  msgid "Payment made via eCheck and will clear automatically in 5-8 days"
6571
  msgstr ""
6572
 
6573
+ #: includes/gateways/paypal-standard.php:579
6574
  msgid ""
6575
  "Payment requires a confirmed customer address and must be accepted manually "
6576
  "through PayPal"
6577
  msgstr ""
6578
 
6579
+ #: includes/gateways/paypal-standard.php:585
6580
  msgid ""
6581
  "Payment must be accepted manually through PayPal due to international "
6582
  "account regulations"
6583
  msgstr ""
6584
 
6585
+ #: includes/gateways/paypal-standard.php:591
6586
  msgid ""
6587
  "Payment received in non-shop currency and must be accepted manually through "
6588
  "PayPal"
6589
  msgstr ""
6590
 
6591
+ #: includes/gateways/paypal-standard.php:598
6592
  msgid ""
6593
  "Payment is being reviewed by PayPal staff as high-risk or in possible "
6594
  "violation of government regulations"
6595
  msgstr ""
6596
 
6597
+ #: includes/gateways/paypal-standard.php:604
6598
  msgid "Payment was sent to non-confirmed or non-registered email address."
6599
  msgstr ""
6600
 
6601
+ #: includes/gateways/paypal-standard.php:610
6602
  msgid "PayPal account must be upgraded before this payment can be accepted"
6603
  msgstr ""
6604
 
6605
+ #: includes/gateways/paypal-standard.php:616
6606
  msgid ""
6607
  "PayPal account is not verified. Verify account in order to accept this "
6608
  "payment"
6609
  msgstr ""
6610
 
6611
+ #: includes/gateways/paypal-standard.php:622
6612
  msgid ""
6613
  "Payment is pending for unknown reasons. Contact PayPal support for "
6614
  "assistance"
6615
  msgstr ""
6616
 
6617
+ #: includes/gateways/paypal-standard.php:663
6618
  msgid "Partial PayPal refund processed: %s"
6619
  msgstr ""
6620
 
6621
+ #: includes/gateways/paypal-standard.php:668
6622
  msgid "PayPal Payment #%s Refunded for reason: %s"
6623
  msgstr ""
6624
 
6625
+ #: includes/gateways/paypal-standard.php:669
6626
  msgid "PayPal Refund Transaction ID: %s"
6627
  msgstr ""
6628
 
6629
+ #: includes/gateways/paypal-standard.php:818
6630
  msgid "Refund Payment in PayPal"
6631
  msgstr ""
6632
 
6633
+ #: includes/gateways/paypal-standard.php:967
6634
  msgid "PayPal refund failed for unknown reason."
6635
  msgstr ""
6636
 
6637
+ #: includes/gateways/paypal-standard.php:977
6638
  msgid "PayPal refund transaction ID: %s"
6639
  msgstr ""
6640
 
6641
+ #: includes/gateways/paypal-standard.php:981
6642
  msgid "PayPal refund failed: %s"
6643
  msgstr ""
6644
 
6697
  msgid "Passwords do not match"
6698
  msgstr ""
6699
 
6700
+ #: includes/misc-functions.php:304 tests/tests-misc.php:61
6701
  msgid "US Dollars (&#36;)"
6702
  msgstr ""
6703
 
6704
+ #: includes/misc-functions.php:305 tests/tests-misc.php:62
6705
  msgid "Euros (&euro;)"
6706
  msgstr ""
6707
 
6708
+ #: includes/misc-functions.php:306 tests/tests-misc.php:63
6709
  msgid "Pounds Sterling (&pound;)"
6710
  msgstr ""
6711
 
6712
+ #: includes/misc-functions.php:307 tests/tests-misc.php:64
6713
  msgid "Australian Dollars (&#36;)"
6714
  msgstr ""
6715
 
6716
+ #: includes/misc-functions.php:308 tests/tests-misc.php:65
6717
  msgid "Brazilian Real (R&#36;)"
6718
  msgstr ""
6719
 
6720
+ #: includes/misc-functions.php:309 tests/tests-misc.php:66
6721
  msgid "Canadian Dollars (&#36;)"
6722
  msgstr ""
6723
 
6724
+ #: includes/misc-functions.php:310 tests/tests-misc.php:67
6725
  msgid "Czech Koruna"
6726
  msgstr ""
6727
 
6728
+ #: includes/misc-functions.php:311 tests/tests-misc.php:68
6729
  msgid "Danish Krone"
6730
  msgstr ""
6731
 
6732
+ #: includes/misc-functions.php:312 tests/tests-misc.php:69
6733
  msgid "Hong Kong Dollar (&#36;)"
6734
  msgstr ""
6735
 
6736
+ #: includes/misc-functions.php:313 tests/tests-misc.php:70
6737
  msgid "Hungarian Forint"
6738
  msgstr ""
6739
 
6740
+ #: includes/misc-functions.php:314 tests/tests-misc.php:71
6741
  msgid "Israeli Shekel (&#8362;)"
6742
  msgstr ""
6743
 
6744
+ #: includes/misc-functions.php:315 tests/tests-misc.php:72
6745
  msgid "Japanese Yen (&yen;)"
6746
  msgstr ""
6747
 
6748
+ #: includes/misc-functions.php:316 tests/tests-misc.php:73
6749
  msgid "Malaysian Ringgits"
6750
  msgstr ""
6751
 
6752
+ #: includes/misc-functions.php:317 tests/tests-misc.php:74
6753
  msgid "Mexican Peso (&#36;)"
6754
  msgstr ""
6755
 
6756
+ #: includes/misc-functions.php:318 tests/tests-misc.php:75
6757
  msgid "New Zealand Dollar (&#36;)"
6758
  msgstr ""
6759
 
6760
+ #: includes/misc-functions.php:319 tests/tests-misc.php:76
6761
  msgid "Norwegian Krone"
6762
  msgstr ""
6763
 
6764
+ #: includes/misc-functions.php:320 tests/tests-misc.php:77
6765
  msgid "Philippine Pesos"
6766
  msgstr ""
6767
 
6768
+ #: includes/misc-functions.php:321 tests/tests-misc.php:78
6769
  msgid "Polish Zloty"
6770
  msgstr ""
6771
 
6772
+ #: includes/misc-functions.php:322 tests/tests-misc.php:79
6773
  msgid "Singapore Dollar (&#36;)"
6774
  msgstr ""
6775
 
6776
+ #: includes/misc-functions.php:323 tests/tests-misc.php:80
6777
  msgid "Swedish Krona"
6778
  msgstr ""
6779
 
6780
+ #: includes/misc-functions.php:324 tests/tests-misc.php:81
6781
  msgid "Swiss Franc"
6782
  msgstr ""
6783
 
6784
+ #: includes/misc-functions.php:325 tests/tests-misc.php:82
6785
  msgid "Taiwan New Dollars"
6786
  msgstr ""
6787
 
6788
+ #: includes/misc-functions.php:326 tests/tests-misc.php:83
6789
  msgid "Thai Baht (&#3647;)"
6790
  msgstr ""
6791
 
6792
+ #: includes/misc-functions.php:327 tests/tests-misc.php:84
6793
  msgid "Indian Rupee (&#8377;)"
6794
  msgstr ""
6795
 
6796
+ #: includes/misc-functions.php:328 tests/tests-misc.php:85
6797
  msgid "Turkish Lira (&#8378;)"
6798
  msgstr ""
6799
 
6800
+ #: includes/misc-functions.php:329 tests/tests-misc.php:86
6801
  msgid "Iranian Rial (&#65020;)"
6802
  msgstr ""
6803
 
6804
+ #: includes/misc-functions.php:330 tests/tests-misc.php:87
6805
  msgid "Russian Rubles"
6806
  msgstr ""
6807
 
6808
+ #: includes/misc-functions.php:516
6809
  msgid ""
6810
  "%1$s is <strong>deprecated</strong> since Easy Digital Downloads version "
6811
  "%2$s! Use %3$s instead."
6812
  msgstr ""
6813
 
6814
+ #: includes/misc-functions.php:520
6815
  msgid ""
6816
  "%1$s is <strong>deprecated</strong> since Easy Digital Downloads version "
6817
  "%2$s with no alternative available."
6818
  msgstr ""
6819
 
6820
+ #: includes/misc-functions.php:557
6821
  msgid ""
6822
  "The %1$s argument of %2$s is <strong>deprecated</strong> since Easy Digital "
6823
  "Downloads version %3$s! Please use %4$s instead."
6824
  msgstr ""
6825
 
6826
+ #: includes/misc-functions.php:561
6827
  msgid ""
6828
  "The %1$s argument of %2$s is <strong>deprecated</strong> since Easy Digital "
6829
  "Downloads version %3$s with no alternative available."
7361
  "upload. Please upgrade your browser."
7362
  msgstr ""
7363
 
7364
+ #: includes/shortcodes.php:283
7365
  msgid "Purchase All Items"
7366
  msgstr ""
7367
 
7368
+ #: includes/shortcodes.php:673
7369
  msgid "Sorry, trouble retrieving payment receipt."
7370
  msgstr ""
7371
 
7372
+ #: includes/shortcodes.php:708
7373
  msgid "You must be logged in to view this payment receipt."
7374
  msgstr ""
7375
 
7376
+ #: includes/shortcodes.php:843
7377
  msgid "The passwords you entered do not match. Please try again."
7378
  msgstr ""
7379
 
7380
+ #: includes/shortcodes.php:853
7381
  msgid "The email you entered is invalid. Please enter a valid email."
7382
  msgstr ""
7383
 
7384
+ #: includes/shortcodes.php:858
7385
  msgid "The email you entered belongs to another user. Please use another."
7386
  msgstr ""
7387
 
7388
+ #: includes/shortcodes.php:933
7389
  msgid "Error removing email address from profile. Please try again later."
7390
  msgstr ""
7391
 
7826
  msgid "%2$s"
7827
  msgstr ""
7828
 
7829
+ #: includes/shortcodes.php:627
7830
  msgctxt "download post type name"
7831
  msgid "No %s found"
7832
  msgstr ""
readme.txt CHANGED
@@ -6,7 +6,7 @@ Donate link: https://pippinsplugins.com/support-the-site
6
  Tags: download, downloads, e-store, eshop, digital downloads, e-commerce, wp-ecommerce, wp ecommerce
7
  Requires at least: 4.0
8
  Tested up to: 4.6
9
- Stable Tag: 2.6.3
10
 
11
  License: GNU Version 2 or Any Later Version
12
 
@@ -214,6 +214,16 @@ Yes, through the addition of one or more of the add-on payment gateways, you can
214
 
215
  == Changelog ==
216
 
 
 
 
 
 
 
 
 
 
 
217
  = 2.6.3, June 30, 2016 =
218
 
219
  * Fix: Product name needs to be trimmed during payment import to prevent duplicate products being created
6
  Tags: download, downloads, e-store, eshop, digital downloads, e-commerce, wp-ecommerce, wp ecommerce
7
  Requires at least: 4.0
8
  Tested up to: 4.6
9
+ Stable Tag: 2.6.4
10
 
11
  License: GNU Version 2 or Any Later Version
12
 
214
 
215
  == Changelog ==
216
 
217
+ = 2.6.4, July 6, 2016 =
218
+ * Fix: Negative fees getting included twice with PayPal Standard
219
+ * Fix: Non-standard status in the product import caused silent failure.
220
+ * Fix: Rely on Customer's User ID when EDD_Payment::setup_user_id has incorrect data.
221
+ * Fix: Date strings are not properly parsed in product import.
222
+ * Fix: PHP notice is triggered when using purchase_link shortcode with an invalid SKU attribute.
223
+ * Fix: PHP warning when activating on Multisite due to roles not being correcly instantiated.
224
+ * Fix: It is possible for edd_get_ip() to return a CSV of IP addresses.
225
+ * Fix: Products deleted after being added to the cart creates invalid cart data.
226
+
227
  = 2.6.3, June 30, 2016 =
228
 
229
  * Fix: Product name needs to be trimmed during payment import to prevent duplicate products being created