WooCommerce Services - Version 1.25.13

Version Description

  • 2021-05-20 =
  • Fix - Prevent new sites from retrying failed connections.
  • Fix - Data encoding when entities are part of order meta.
  • Tweak - Update WC version support in headers.
  • Fix - Plugin deletion when WooCommerce core is not present.
  • Tweak - Rename automatic tax names for US.
  • Fix - Check Jetpack constant defined by name.
  • Fix - Sometimes taxes charged on shipping when they should not.
Download this release

Release Info

Developer waclawjacek
Plugin Icon 128x128 WooCommerce Services
Version 1.25.13
Comparing to
See all releases

Code changes from version 1.25.12 to 1.25.13

Files changed (37) hide show
  1. classes/class-wc-connect-jetpack.php +2 -2
  2. classes/class-wc-connect-nux.php +1 -1
  3. classes/class-wc-connect-service-settings-store.php +7 -2
  4. classes/class-wc-connect-taxjar-integration.php +89 -39
  5. dist/{woocommerce-services-1.25.12.css → woocommerce-services-1.25.13.css} +0 -0
  6. dist/{woocommerce-services-1.25.12.js → woocommerce-services-1.25.13.js} +0 -0
  7. dist/{woocommerce-services-admin-pointers-1.25.12.js → woocommerce-services-admin-pointers-1.25.13.js} +0 -0
  8. dist/{woocommerce-services-banner-1.25.12.css → woocommerce-services-banner-1.25.13.css} +0 -0
  9. dist/{woocommerce-services-banner-1.25.12.js → woocommerce-services-banner-1.25.13.js} +0 -0
  10. dist/{woocommerce-services-new-order-taxjar-1.25.12.js → woocommerce-services-new-order-taxjar-1.25.13.js} +0 -0
  11. i18n/languages/woocommerce-services-ar.json +1 -1
  12. i18n/languages/woocommerce-services-ar.po +128 -132
  13. i18n/languages/woocommerce-services-es_ES.json +1 -1
  14. i18n/languages/woocommerce-services-es_ES.mo +0 -0
  15. i18n/languages/woocommerce-services-es_ES.po +128 -132
  16. i18n/languages/woocommerce-services-es_MX.json +1 -1
  17. i18n/languages/woocommerce-services-es_MX.mo +0 -0
  18. i18n/languages/woocommerce-services-es_MX.po +128 -132
  19. i18n/languages/woocommerce-services-es_VE.json +1 -1
  20. i18n/languages/woocommerce-services-es_VE.mo +0 -0
  21. i18n/languages/woocommerce-services-es_VE.po +128 -132
  22. i18n/languages/woocommerce-services-fr_CA.json +1 -1
  23. i18n/languages/woocommerce-services-fr_CA.mo +0 -0
  24. i18n/languages/woocommerce-services-fr_CA.po +128 -132
  25. i18n/languages/woocommerce-services-ja.json +1 -1
  26. i18n/languages/woocommerce-services-ja.mo +0 -0
  27. i18n/languages/woocommerce-services-ja.po +128 -132
  28. i18n/languages/woocommerce-services-nl_NL.json +1 -1
  29. i18n/languages/woocommerce-services-nl_NL.po +128 -132
  30. i18n/languages/woocommerce-services-pt_BR.json +1 -1
  31. i18n/languages/woocommerce-services-pt_BR.po +128 -132
  32. i18n/languages/woocommerce-services-ro_RO.json +1 -1
  33. i18n/languages/woocommerce-services-ro_RO.mo +0 -0
  34. i18n/languages/woocommerce-services-ro_RO.po +128 -132
  35. i18n/languages/woocommerce-services-ru.json +1 -1
  36. i18n/languages/woocommerce-services-ru.po +128 -132
  37. i18n/languages/woocommerce-services-sv_SE.json +1 -1
classes/class-wc-connect-jetpack.php CHANGED
@@ -165,7 +165,7 @@ if ( ! class_exists( 'WC_Connect_Jetpack' ) ) {
165
  return $connection->is_user_connected();
166
  }
167
 
168
- if ( defined( JETPACK_MASTER_USER ) ) {
169
  $user_token = self::get_master_user_access_token( JETPACK_MASTER_USER );
170
 
171
  return ( isset( $user_token->external_user_id ) && get_current_user_id() === $user_token->external_user_id );
@@ -186,7 +186,7 @@ if ( ! class_exists( 'WC_Connect_Jetpack' ) ) {
186
  return $connection->is_connected();
187
  }
188
 
189
- if ( defined( JETPACK_MASTER_USER ) ) {
190
  $user_token = self::get_master_user_access_token( JETPACK_MASTER_USER );
191
 
192
  return isset( $user_token->external_user_id );
165
  return $connection->is_user_connected();
166
  }
167
 
168
+ if ( defined( 'JETPACK_MASTER_USER' ) ) {
169
  $user_token = self::get_master_user_access_token( JETPACK_MASTER_USER );
170
 
171
  return ( isset( $user_token->external_user_id ) && get_current_user_id() === $user_token->external_user_id );
186
  return $connection->is_connected();
187
  }
188
 
189
+ if ( defined( 'JETPACK_MASTER_USER' ) ) {
190
  $user_token = self::get_master_user_access_token( JETPACK_MASTER_USER );
191
 
192
  return isset( $user_token->external_user_id );
classes/class-wc-connect-nux.php CHANGED
@@ -297,7 +297,7 @@ if ( ! class_exists( 'WC_Connect_Nux' ) ) {
297
  }
298
 
299
  // check if Jetpack is activated
300
- if ( ! class_exists( '\Automattic\Jetpack\Connection\Manager' ) && ! class_exists( '\Automattic\Jetpack\Connection\Tokens' ) ) {
301
  return self::JETPACK_INSTALLED_NOT_ACTIVATED;
302
  }
303
 
297
  }
298
 
299
  // check if Jetpack is activated
300
+ if ( ! is_plugin_active( 'jetpack/jetpack.php' ) ) {
301
  return self::JETPACK_INSTALLED_NOT_ACTIVATED;
302
  }
303
 
classes/class-wc-connect-service-settings-store.php CHANGED
@@ -393,8 +393,13 @@ if ( ! class_exists( 'WC_Connect_Service_Settings_Store' ) ) {
393
  * Checks if the shipping method ids have been migrated to the "wc_services_*" format and migrates them
394
  */
395
  public function migrate_legacy_services() {
396
- if ( WC_Connect_Options::get_option( 'shipping_methods_migrated', false ) // check if the method have already been migrated.
397
- || ! $this->service_schemas_store->fetch_service_schemas_from_connect_server() ) { // ensure the latest schemas are fetched.
 
 
 
 
 
398
  return;
399
  }
400
 
393
  * Checks if the shipping method ids have been migrated to the "wc_services_*" format and migrates them
394
  */
395
  public function migrate_legacy_services() {
396
+ if ( WC_Connect_Options::get_option( 'shipping_methods_migrated', false ) ) { // check if the method have already been migrated.
397
+ return;
398
+ }
399
+
400
+ if ( ! $this->service_schemas_store->fetch_service_schemas_from_connect_server() ) { // ensure the latest schemas are fetched.
401
+ // No schemes exist this is a site that has nothing to migrate.
402
+ WC_Connect_Options::update_option( 'shipping_methods_migrated', true );
403
  return;
404
  }
405
 
classes/class-wc-connect-taxjar-integration.php CHANGED
@@ -50,6 +50,51 @@ class WC_Connect_TaxJar_Integration {
50
  $this->cache_time = HOUR_IN_SECONDS;
51
  }
52
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
53
  public function init() {
54
  // Only enable WCS TaxJar integration if the official TaxJar plugin isn't active.
55
  if ( class_exists( 'WC_Taxjar' ) ) {
@@ -831,7 +876,7 @@ class WC_Connect_TaxJar_Integration {
831
  * Direct from the TaxJar plugin, without Nexus check.
832
  * See: https://github.com/taxjar/taxjar-woocommerce-plugin/blob/96b5d57/includes/class-wc-taxjar-integration.php#L247
833
  *
834
- * @return void
835
  */
836
  public function calculate_tax( $options = array() ) {
837
  $this->_log( ':::: TaxJar Plugin requested ::::' );
@@ -909,34 +954,36 @@ class WC_Connect_TaxJar_Integration {
909
 
910
  $response = $this->smartcalcs_cache_request( wp_json_encode( $body ) );
911
 
912
- if ( isset( $response ) ) {
913
- // Log the response
914
- $this->_log( 'Received: ' . $response['body'] );
915
 
916
- // Decode Response
917
- $taxjar_response = json_decode( $response['body'] );
918
- $taxjar_response = $taxjar_response->tax;
919
 
920
- // Update Properties based on Response
921
- $taxes['freight_taxable'] = (int) $taxjar_response->freight_taxable;
922
- $taxes['has_nexus'] = (int) $taxjar_response->has_nexus;
923
- $taxes['tax_rate'] = $taxjar_response->rate;
924
 
925
- if ( ! empty( $taxjar_response->breakdown ) ) {
926
- if ( ! empty( $taxjar_response->breakdown->line_items ) ) {
927
- $line_items = array();
928
- foreach ( $taxjar_response->breakdown->line_items as $line_item ) {
929
- $line_items[ $line_item->id ] = $line_item;
930
- }
931
- $taxes['line_items'] = $line_items;
 
 
 
 
 
 
 
932
  }
 
933
  }
934
  }
935
 
936
- // Remove taxes if they are set somehow and customer is exempt
937
- if ( WC()->customer->is_vat_exempt() ) {
938
- $wc_cart_object->remove_taxes();
939
- } elseif ( $taxes['has_nexus'] ) {
940
  // Use Woo core to find matching rates for taxable address
941
  $location = array(
942
  'to_country' => $to_country,
@@ -945,10 +992,6 @@ class WC_Connect_TaxJar_Integration {
945
  'to_city' => $to_city,
946
  );
947
 
948
- if ( 'GB' === $to_country ) {
949
- $location['to_state'] = '';
950
- }
951
-
952
  // Add line item tax rates
953
  foreach ( $taxes['line_items'] as $line_item_key => $line_item ) {
954
  $line_item_key_chunks = explode( '-', $line_item_key );
@@ -965,6 +1008,7 @@ class WC_Connect_TaxJar_Integration {
965
 
966
  if ( $line_item->combined_tax_rate ) {
967
  $taxes['rate_ids'][ $line_item_key ] = $this->create_or_update_tax_rate(
 
968
  $location,
969
  $line_item->combined_tax_rate * 100,
970
  $tax_class,
@@ -974,14 +1018,13 @@ class WC_Connect_TaxJar_Integration {
974
  }
975
 
976
  // Add shipping tax rate
977
- if ( $taxes['tax_rate'] ) {
978
- $taxes['rate_ids']['shipping'] = $this->create_or_update_tax_rate(
979
- $location,
980
- $taxes['tax_rate'] * 100,
981
- '',
982
- $taxes['freight_taxable']
983
- );
984
- }
985
  } // End if().
986
 
987
  return $taxes;
@@ -993,13 +1036,20 @@ class WC_Connect_TaxJar_Integration {
993
  * Unchanged from the TaxJar plugin.
994
  * See: https://github.com/taxjar/taxjar-woocommerce-plugin/blob/9d8e725/includes/class-wc-taxjar-integration.php#L396
995
  *
996
- * @return void
997
  */
998
- public function create_or_update_tax_rate( $location, $rate, $tax_class = '', $freight_taxable = 1 ) {
 
 
 
 
999
  $tax_rate = array(
1000
  'tax_rate_country' => $location['to_country'],
1001
- 'tax_rate_state' => $location['to_state'],
1002
- 'tax_rate_name' => sprintf( '%s Tax', $location['to_state'] ),
 
 
 
1003
  'tax_rate_priority' => 1,
1004
  'tax_rate_compound' => false,
1005
  'tax_rate_shipping' => $freight_taxable,
@@ -1010,7 +1060,7 @@ class WC_Connect_TaxJar_Integration {
1010
  $wc_rate = WC_Tax::find_rates(
1011
  array(
1012
  'country' => $location['to_country'],
1013
- 'state' => $location['to_state'],
1014
  'postcode' => $location['to_zip'],
1015
  'city' => $location['to_city'],
1016
  'tax_class' => $tax_class,
50
  $this->cache_time = HOUR_IN_SECONDS;
51
  }
52
 
53
+ /**
54
+ * @param mixed $taxjar_response
55
+ * @param string $to_country
56
+ * @param string $to_state
57
+ *
58
+ * @return string
59
+ */
60
+ private static function generate_tax_rate_name( $taxjar_response, $to_country, $to_state ) {
61
+ if ( 'US' !== $to_country ) {
62
+ return $to_state;
63
+ }
64
+
65
+ // for a list of possible attributes in the `jurisdictions` attribute, see:
66
+ // https://developers.taxjar.com/api/reference/#post-calculate-sales-tax-for-an-order
67
+ $jurisdiction_pieces = array_merge(
68
+ [
69
+ 'city' => '',
70
+ 'county' => '',
71
+ 'state' => $to_state,
72
+ 'country' => $to_country,
73
+ ],
74
+ (array) $taxjar_response->jurisdictions
75
+ );
76
+
77
+ // sometimes TaxJar returns a string with the value 'FALSE' for `state`.
78
+ if ( rest_is_boolean( $to_state ) ) {
79
+ $jurisdiction_pieces['state'] = '';
80
+ }
81
+
82
+ return join(
83
+ '-',
84
+ array_filter(
85
+ [
86
+ // the `$jurisdiction_pieces` is not really sorted
87
+ // so let's sort it with COUNTRY-STATE-COUNTY-CITY
88
+ // `array_filter` will take care of filtering out the "falsy" entries
89
+ $jurisdiction_pieces['country'],
90
+ $jurisdiction_pieces['state'],
91
+ $jurisdiction_pieces['county'],
92
+ $jurisdiction_pieces['city'],
93
+ ]
94
+ )
95
+ );
96
+ }
97
+
98
  public function init() {
99
  // Only enable WCS TaxJar integration if the official TaxJar plugin isn't active.
100
  if ( class_exists( 'WC_Taxjar' ) ) {
876
  * Direct from the TaxJar plugin, without Nexus check.
877
  * See: https://github.com/taxjar/taxjar-woocommerce-plugin/blob/96b5d57/includes/class-wc-taxjar-integration.php#L247
878
  *
879
+ * @return array|boolean
880
  */
881
  public function calculate_tax( $options = array() ) {
882
  $this->_log( ':::: TaxJar Plugin requested ::::' );
954
 
955
  $response = $this->smartcalcs_cache_request( wp_json_encode( $body ) );
956
 
957
+ // if no response, no need to keep going - bail early
958
+ if ( ! isset( $response ) ) {
959
+ $this->_log( 'Received: none.' );
960
 
961
+ return $taxes;
962
+ }
 
963
 
964
+ // Log the response
965
+ $this->_log( 'Received: ' . $response['body'] );
 
 
966
 
967
+ // Decode Response
968
+ $taxjar_response = json_decode( $response['body'] );
969
+ $taxjar_response = $taxjar_response->tax;
970
+
971
+ // Update Properties based on Response
972
+ $taxes['freight_taxable'] = (int) $taxjar_response->freight_taxable;
973
+ $taxes['has_nexus'] = (int) $taxjar_response->has_nexus;
974
+ $taxes['tax_rate'] = $taxjar_response->rate;
975
+
976
+ if ( ! empty( $taxjar_response->breakdown ) ) {
977
+ if ( ! empty( $taxjar_response->breakdown->line_items ) ) {
978
+ $line_items = array();
979
+ foreach ( $taxjar_response->breakdown->line_items as $line_item ) {
980
+ $line_items[ $line_item->id ] = $line_item;
981
  }
982
+ $taxes['line_items'] = $line_items;
983
  }
984
  }
985
 
986
+ if ( $taxes['has_nexus'] ) {
 
 
 
987
  // Use Woo core to find matching rates for taxable address
988
  $location = array(
989
  'to_country' => $to_country,
992
  'to_city' => $to_city,
993
  );
994
 
 
 
 
 
995
  // Add line item tax rates
996
  foreach ( $taxes['line_items'] as $line_item_key => $line_item ) {
997
  $line_item_key_chunks = explode( '-', $line_item_key );
1008
 
1009
  if ( $line_item->combined_tax_rate ) {
1010
  $taxes['rate_ids'][ $line_item_key ] = $this->create_or_update_tax_rate(
1011
+ $taxjar_response,
1012
  $location,
1013
  $line_item->combined_tax_rate * 100,
1014
  $tax_class,
1018
  }
1019
 
1020
  // Add shipping tax rate
1021
+ $taxes['rate_ids']['shipping'] = $this->create_or_update_tax_rate(
1022
+ $taxjar_response,
1023
+ $location,
1024
+ $taxes['tax_rate'] * 100,
1025
+ '',
1026
+ $taxes['freight_taxable']
1027
+ );
 
1028
  } // End if().
1029
 
1030
  return $taxes;
1036
  * Unchanged from the TaxJar plugin.
1037
  * See: https://github.com/taxjar/taxjar-woocommerce-plugin/blob/9d8e725/includes/class-wc-taxjar-integration.php#L396
1038
  *
1039
+ * @return int
1040
  */
1041
+ public function create_or_update_tax_rate( $taxjar_response, $location, $rate, $tax_class = '', $freight_taxable = 1 ) {
1042
+ // all the states in GB have the same tax rate
1043
+ // prevents from saving a "state" column value for GB
1044
+ $to_state = 'GB' === $location['to_country'] ? '' : $location['to_state'];
1045
+
1046
  $tax_rate = array(
1047
  'tax_rate_country' => $location['to_country'],
1048
+ 'tax_rate_state' => $to_state,
1049
+ // For the US, we're going to modify the name of the tax rate to simplify the reporting and distinguish between the tax rates at the counties level.
1050
+ // I would love to do this for other locations, but it looks like that would create issues.
1051
+ // For example, for the UK it would continuously rename the rate name with an updated `state` "piece", each time a request is made
1052
+ 'tax_rate_name' => sprintf( '%s Tax', self::generate_tax_rate_name( $taxjar_response, $location['to_country'], $to_state ) ),
1053
  'tax_rate_priority' => 1,
1054
  'tax_rate_compound' => false,
1055
  'tax_rate_shipping' => $freight_taxable,
1060
  $wc_rate = WC_Tax::find_rates(
1061
  array(
1062
  'country' => $location['to_country'],
1063
+ 'state' => $to_state,
1064
  'postcode' => $location['to_zip'],
1065
  'city' => $location['to_city'],
1066
  'tax_class' => $tax_class,
dist/{woocommerce-services-1.25.12.css → woocommerce-services-1.25.13.css} RENAMED
File without changes
dist/{woocommerce-services-1.25.12.js → woocommerce-services-1.25.13.js} RENAMED
File without changes
dist/{woocommerce-services-admin-pointers-1.25.12.js → woocommerce-services-admin-pointers-1.25.13.js} RENAMED
File without changes
dist/{woocommerce-services-banner-1.25.12.css → woocommerce-services-banner-1.25.13.css} RENAMED
File without changes
dist/{woocommerce-services-banner-1.25.12.js → woocommerce-services-banner-1.25.13.js} RENAMED
File without changes
dist/{woocommerce-services-new-order-taxjar-1.25.12.js → woocommerce-services-new-order-taxjar-1.25.13.js} RENAMED
File without changes
i18n/languages/woocommerce-services-ar.json CHANGED
@@ -1 +1 @@
1
- {"0":[null,""],"":{"po-revision-date":"+0000","mime-version":"1.0","content-type":"text/plain; charset=UTF-8","content-transfer-encoding":"8bit","plural-forms":"nplurals=6; plural=(n == 0) ? 0 : ((n == 1) ? 1 : ((n == 2) ? 2 : ((n % 100 >= 3 && n % 100 <= 10) ? 3 : ((n % 100 >= 11 && n % 100 <= 99) ? 4 : 5))));","x-generator":"GlotPress/3.0.0-alpha.2","language":"ar","project-id-version":"Plugins - WooCommerce Shipping &amp; Tax - Stable (latest release)"},"Features":[null,""],"Carrier":[null,""],"Express delivery from the experts in international shipping":[null,""],"Live rates for %(carrierName)s at checkout":[null,""],"Ship with the largest delivery network in the United States":[null,""],"Discounted %(carrierName)s shipping labels":[null,""],"To be displayed at checkout, this carrier must be added as a shipping method to selected shipping zones":[null,""],"Add to shipping zones":[null,""],"Show live rates directly on your store - never under or overcharge for shipping again":[null,""],"Live rates at checkout":[null,""],"Last updated %s.":[null,""],"At least one of the new predefined packages has the same name as existing packages.":[null,""],"The new predefined package names are not unique.":[null,""],"At least one of the new custom packages has the same name as existing packages.":[null,""],"The new custom package names are not unique.":[null,""],"Go to shipping zones":[null,""],"Add DHL Express as a shipping method to selected shipping zones to display live rates at checkout.":[null,""],"DHL Express live rates are now available":[null,""],"State %1$s is invalid for %2$s.":[null,""],"%1$s %2$s is invalid for %3$s.":[null,""],"A %1$s is required for %2$s.":[null,""],"A country is required":[null,""],"Your store is over the limit for rate calls this month and your account will be charged for overages. To prevent future overage charges you can upgrade your plan.":[null,""],"There was an error trying to activate your subscription.":[null,""],"Your subscription was succesfully activated.":[null,""],"Manage":[null,""],"Usage":[null,""],"View and manage your subscription usage":[null,""],"Shipping method":[null,""],"The subscription is already active.":[null,""],"Set up your own carrier account to compare rates and print labels from multiple carriers in WooCommerce Shipping. Learn more about adding {{a}}carrier accounts{{/a}}.":[null,""],"There was an error connecting to your %(carrierName)s account. Please check that all of the information entered matches your %(carrierName)s account and try to connect again.":[null,""],"Your carrier account was connected successfully.":[null,""],"The date must be a valid date in the format YYYY-MM-DD":[null,""],"The invoice number needs to be 9 or 13 letters and digits in length":[null,""],"The company website format is not valid":[null,""],"The email format is not valid":[null,""],"The ZIP/Postal code needs to be 5 digits in length":[null,""],"The phone number needs to be 10 digits in length":[null,""],"The UPS account number needs to be 6 letters and digits in length":[null,""],"This will remove the connection with %(carrier_name)s. All of your %(carrier_name)s account information will be deleted and you won\\u2019t see %(carrier_name)s rates.":[null,""],"Disconnect your %(carrier_name)s account":[null,""],"There was an error trying to disconnect your carrier account":[null,""],"Your carrier account was disconnected succesfully.":[null,""],"DHL Express":[null,""],"Powered by WooCommerce Tax. If automated taxes are enabled, you'll need to enter prices exclusive of tax.":[null,""],"WooCommerce Helper auth is missing":[null,""],"USPS labels without tracking are not eligible for refund.":[null,""],"General Information":[null,""],"Connect your %(carrierName)s account":[null,""],"%(carrierName)s not supported.":[null,""],"Loading":[null,""],"WooCommerce Shipping & Tax Data":[null,""],"Print customs form":[null,""],"Test your WooCommerce Shipping & Tax connection":[null,""],"WooCommerce Shipping & Tax Status":[null,""],"Connect your store to activate WooCommerce Shipping & Tax":[null,""],"Connect Jetpack to activate WooCommerce Shipping & Tax":[null,""],"WooCommerce Shipping now supports DHL labels for international shipments. Purchase and print discounted labels from DHL and USPS right here.":[null,""],"Discounted DHL Shipping Labels":[null,""],"WooCommerce Shipping":[null,""],"Invalid WooCommerce Shipping & Tax service slug provided":[null,""],"WooCommerce Shipping & Tax":[null,""],"ZIP/Postal code":[null,""],"This action will delete any information entered on the form.":[null,""],"Cancel connection":[null,""],"Ok":[null,""],"UPS invoice control id":[null,""],"UPS invoice currency":[null,""],"UPS invoice amount":[null,""],"UPS invoice date":[null,""],"UPS invoice number":[null,""],"I have been issued an invoice from UPS within the past 90 days":[null,""],"UPS account information":[null,""],"Company website":[null,""],"Job title":[null,""],"Company name":[null,""],"This is the company info you used to create your UPS account":[null,""],"Company information":[null,""],"Email":[null,""],"Address 2 (optional)":[null,""],"Account number":[null,""],"This is the account number and address from your UPS profile":[null,""],"General information":[null,""],"If you need a UPS account number, go to {{a}}UPS.com{{/a}} to create a new account.":[null,""],"Set up your own UPS carrier account to compare rates and print labels from multiple carriers in WooCommerce Shipping. Learn more about adding {{a}}carrier accounts{{/a}}.":[null,""],"Connect your UPS account":[null,""],"Set up your own carrier account by adding your credentials here":[null,""],"Carrier account":[null,""],"Credentials":[null,""],"Adult signature required":[null,""],"Signature required":[null,""],"Other\\u2026":[null,""],"Select one\\u2026":[null,""],"Validating address\\u2026":[null,""],"Purchasing\\u2026":[null,""],"Your UPS account will be charged":[null,""],"Package %(index)s \\u2013 %(title)s":[null,""],"Saving\\u2026":[null,""],"Your tax rates and settings will be automatically configured for %1$s. <a href=\"https://docs.woocommerce.com/document/setting-up-taxes-in-woocommerce/#section-12\">Learn more about setting up tax rates for additional nexuses</a>":[null,""],"Your tax rates and settings will be automatically configured for %1$s, %2$s. <a href=\"https://docs.woocommerce.com/document/setting-up-taxes-in-woocommerce/#section-12\">Learn more about setting up tax rates for additional nexuses</a>":[null,""],"%(itemCount)d item is ready to be fulfilled":["%(itemCount)d items are ready to be fulfilled","","","","","",""],"%(itemCount)d item was fulfilled on {{span}}%(createdDate)s{{/span}}":["%(itemCount)d items were fulfilled on {{span}}%(createdDate)s{{/span}}","","","","","",""],"Schedule a pickup":[null,""],"Label images older than 180 days are deleted by our technology partners for general security and data privacy concerns.":[null,""],"Labels older than 30 days cannot be refunded.":[null,""],"Mark this order as complete and notify the customer":[null,""],"Notify the customer with shipment details":[null,""],"You save %s with WooCommerce Shipping":[null,""],"WooCommerce Shipping & Tax requires the WooCommerce plugin to be installed and active. You can download %s here.":[null,""],"No tracking information available at this time":[null,""],"Connection error: unable to create label at this time":[null,""],"Track Package":["Track Packages","","","","","",""],"Which package would you like to track?":[null,""],"%(service)s label (#%(labelIndex)d)":[null,""],"To print this shipping label, {{a}}add a credit card to your account{{/a}}.":[null,""],"Add credit card":[null,""],"To print this shipping label, {{a}}choose a credit card to add to your account{{/a}}.":[null,""],"Choose credit card":[null,""],"Buy shipping label":["Buy shipping labels","","","","","",""],"shipping label ready":["shipping labels ready","","","","","",""],"Shipping from":[null,""],"Shipping summary":[null,""],"Customer paid a {{shippingMethod/}} of {{shippingCost/}} for shipping":[null,""],"Shipping rates":[null,""],"HS Tariff number":[null,""],"Submit":[null,""],"Total Weight (with package)":[null,""],"QTY":[null,""],"Weight":[null,""],"Items to fulfill":[null,""],"Select a package type":[null,""],"Package details":[null,""],"Your shipping packages have been saved.":[null,""],"0.0":[null,""],"Shipment Tracking":[null,""],"Customs information valid":[null,""],"Customs information incomplete":[null,""],"Packing Log:":[null,""],"Chosen Rate:":[null,""],"Shipping Method ID:":[null,""],"Shipping Method Name:":[null,""],"Shipping Debug":[null,""],"<strong>\"%2$s\" is missing weight, length, width, or height.</strong><br />Shipping rates cannot be calculated. <a href=\"%1$s\">Enter dimensions and weight for %2$s</a> so your customers can purchase this item.":[null,""],"Unable to send request to WooCommerce Shipping & Tax server. The timestamp generated for the signature is too old.":[null,""],"Unable to send request to WooCommerce Shipping & Tax server. Jetpack Token is malformed.":[null,""],"Unable to send request to WooCommerce Shipping & Tax server. Jetpack Token is missing":[null,""],"Error: The WooCommerce Shipping & Tax server returned: %1$s %2$s ( %3$d )":[null,""],"Error: The WooCommerce Shipping & Tax server returned ( %d ) and an empty response body.":[null,""],"Error: The WooCommerce Shipping & Tax server returned HTTP code: %d":[null,""],"Unable to encode body for request to WooCommerce Shipping & Tax server.":[null,""],"Unable to send request to WooCommerce Shipping & Tax server. Body must be an array.":[null,""],"Unable to send request to WooCommerce Shipping & Tax server. Jetpack connection does not implement get_access_token.":[null,""],"Unable to send request to WooCommerce Shipping & Tax server. Jetpack_Data was not found.":[null,""],"No shipping rate could be calculated. No items in the package are shippable.":[null,""],"Product ( ID: %d ) is missing a dimension value. Shipping rates cannot be calculated.":[null,""],"Product ( ID: %d ) did not include a weight. Shipping rates cannot be calculated.":[null,""],"Packing log:":[null,""],"Received rate: %1$s (%2$s)":[null,""],"Your customer selected {{shippingMethod/}}":[null,""],"Total rate: %(total)s":[null,""],"%(serviceName)s: %(rate)s":[null,""],"No rates found":[null,""],"WooCommerce Shipping gives you access to USPS Commercial Pricing, which is discounted over Retail rates.":[null,""],"more info":[null,""],"ITN":[null,""],"Sanitary / Phytosanitary inspection":[null,""],"Quarantine":[null,""],"None":[null,""],"Restriction type":[null,""],"Details":[null,""],"Sample":[null,""],"Gift":[null,""],"Documents":[null,""],"Merchandise":[null,""],"Contents type":[null,""],"Return to sender if package is unable to be delivered":[null,""],"Value (per unit)":[null,""],"Weight (per unit)":[null,""],"Save customs form":[null,""],"Customs":[null,""],"Use address as entered":[null,""],"View on Google Maps":[null,""],"Verify with USPS":[null,""],"Automatic verification failed for this address. It may still be a valid address \\u2014 use the tools below to manually verify.":[null,""],"We were unable to automatically verify the address.":[null,""],"We were unable to automatically verify the address \\u2014 %(error)s.":[null,""],"You've edited the address, please revalidate it for accurate rates":[null,""],"Verify address":[null,""],"%(message)s. Please modify the address and try again.":[null,""],"View details":[null,""],"Items":[null,""],"Package":[null,""],"Receipt":[null,""],"Label #%(labelIndex)s details":[null,""],"{{icon/}} Delete this package":[null,""],"Done":[null,""],"Add boxes, envelopes, and other packages you use most frequently":[null,""],"Remove":[null,""],"Edit":[null,""],"Weight of empty package":[null,""],"Unique package name":[null,""],"Envelope":[null,""],"Box":[null,""],"This field is required.":[null,""],"Payment":[null,""],"Email the label purchase receipts to %(ownerName)s (%(ownerLogin)s) at %(ownerEmail)s":[null,""],"Email Receipts":[null,""],"To purchase shipping labels, choose a credit card you have on file or add a new card.":[null,""],"Choose a different card":[null,""],"To purchase shipping labels, add a credit card.":[null,""],"We'll charge the credit card on your account (%(card)s) to pay for the labels you print":[null,""],"Credit cards are retrieved from the following WordPress.com account: %(wpcomLogin)s <%(wpcomEmail)s>":[null,""],"Only the site owner can change these settings. Please contact %(ownerName)s (%(ownerLogin)s) to change the shipping label settings.":[null,""],"Only the site owner can manage shipping label payment methods. Please contact %(ownerName)s (%(ownerLogin)s) to manage payment methods.":[null,""],"%(card)s ****%(digits)s":[null,""],"Print shipping labels yourself and save a trip to the post office":[null,""],"H":[null,""],"W":[null,""],"L":[null,""],"Disconnect":[null,""],"Activate":[null,""],"No activity yet":[null,""],"Note":[null,""],"Refunded %(amount)s":[null,""],"%(service)s label (#%(labelNum)d) refund rejected":[null,""],"%(service)s label (#%(labelNum)d) refunded (%(amount)s)":[null,""],"%(service)s label (#%(labelNum)d) refund requested (%(amount)s)":[null,""],"Note sent to customer":[null,""],"Internal note":[null,""],"Show notes from %(date)s":[null,""],"%(count)s event":["%(count)s events","","","","","",""],"WeChat Pay":[null,""],"Toggle menu":[null,""],"Return to Order #%(orderId)s":[null,""],"Our team is here for you. View our {{docsA}}support docs{{/docsA}} or {{ticketA}}open a support ticket{{/ticketA}}.":[null,""],"Logging":[null,""],"No services configured. {{a}}Add a shipping service{{/a}}":[null,""],"Edit service settings":[null,""],"Request was made %s - check logs below or {{a}}edit service settings{{/a}}":[null,""],"Copy for support":[null,""],"Last %s entry. {{a}}Show full log{{/a}}":["Last %s entries. {{a}}Show full log{{/a}}","","","","","",""],"Log tail copied to clipboard":[null,""],"You have unsaved changes. Are you sure you want to leave this page?":[null,""],"Value ($ per unit)":[null,""],"Weight (%s per unit)":[null,""],"Description":[null,""],"Country where the product was manufactured or assembled":[null,""],"Origin country":[null,""],"USPS":[null,""],"Optional":[null,""],"Retry":[null,""],"shipping label printing":[null,""],"shipping label printing and smoother payment setup":[null,""],"automated tax calculation and shipping label printing":[null,""],"automated tax calculation, shipping label printing, and smoother payment setup":[null,""],"Data resource description.":[null,""],"Data resource ID.":[null,""],"List of supported currencies.":[null,""],"List of supported states in a given country.":[null,""],"List of supported continents, countries, and states.":[null,""],"Sorry, you cannot view this resource.":[null,""],"Sorry, you cannot list resources.":[null,""],"The unit weights are defined in for this country.":[null,""],"Thousands separator for displayed prices in this country.":[null,""],"Full name of state.":[null,""],"State code.":[null,""],"List of states in this country.":[null,""],"Number of decimal points shown in displayed prices for this country.":[null,""],"Full name of country.":[null,""],"The unit lengths are defined in for this country.":[null,""],"Decimal separator for displayed prices for this country.":[null,""],"Currency symbol position for this country.":[null,""],"Default ISO4127 alpha-3 currency code for the country.":[null,""],"ISO3166 alpha-2 country code.":[null,""],"List of countries on this continent.":[null,""],"Full name of continent.":[null,""],"There are no locations matching these parameters.":[null,""],"2 character continent code.":[null,""],"Shipping label tracking number":[null,""],"Shipping label service":[null,""],"Warning: Erasing personal data will cause the ability to reprint or refund WooCommerce Shipping & Tax shipping labels to be lost on the affected orders.":[null,""],"By using this extension, you may be storing personal data or sharing data with external services. <a href=\"%s\" target=\"_blank\">Learn more about how this works, including what you may want to include in your privacy policy.</a>":[null,""],"There was a problem updating your saved credit cards.":[null,""],"No labels found for this period":[null,""],"Total":[null,""],"Refund":[null,""],"Price":[null,""],"Order":[null,""],"Time":[null,""],"Requested":[null,""],"Last 7 days":[null,""],"This month":[null,""],"Last month":[null,""],"Year":[null,""],"Export CSV":[null,""],"Other Log":[null,""],"Taxes Log":[null,""],"Shipping Log":[null,""],"Display troubleshooting information on the Cart and Checkout pages.":[null,""],"Write diagnostic messages to log files. Helpful when contacting support.":[null,""],"Enter your email address at which to accept payments. You'll need to link your own account in order to perform anything other than \"sale\" transactions.":[null,""],"Payment Email":[null,""],"To authenticate payments with WooCommerce Shipping & Tax, <a href=\"%s\">click here</a>.":[null,""],"Payments will be authenticated by WooCommerce Shipping & Tax and directed to the following email address. To disable this feature and link a PayPal account, <a href=\"%s\">click here</a>.":[null,""],"%s (Note that \"authorizing payment only\" requires linking a PayPal account.)":[null,""],"Link account":[null,""],"Link a new or existing PayPal account to make sure future orders are marked “Processing” instead of “On hold”, and so refunds can be issued without leaving WooCommerce.":[null,""],"Link your PayPal account":[null,""],"To issue refunds via PayPal Checkout, you will need to <a href=\"%s\">link a PayPal account</a> with the email address that received this payment.":[null,""],"Link a PayPal account":[null,""],"Refresh":[null,""],"Tracking number":[null,""],"Provider":[null,""],"WooCommerce Shipping & Tax is almost ready to go! Once you connect Jetpack you'll have access to %s.":[null,""],"Hosted services for WooCommerce: automated tax calculation, shipping label printing, and smoother payment setup.":[null,""],"Tax Class":[null,""],"Shipping":[null,""],"Compound":[null,""],"Priority":[null,""],"Tax Name":[null,""],"Rate %":[null,""],"ZIP/Postcode":[null,""],"State Code":[null,""],"Country Code":[null,""],"Enable automated taxes":[null,""],"Disable automated taxes":[null,""],"Automated taxes":[null,""],"By clicking \"%1$s\", you agree to the <a href=\"%2$s\">Terms of Service</a> and to <a href=\"%3$s\">share certain data and settings</a> with WordPress.com and/or third parties.":[null,""],"Setup complete.":[null,""],"You can now enjoy %s.":[null,""],"WooCommerce Shipping & Tax is almost ready to go! Once you connect your store you'll have access to %s.":[null,""],"automated tax calculation":[null,""],"smoother payment setup":[null,""],"automated tax calculation and smoother payment setup":[null,""],"Required":[null,""],"Your shipping settings have been saved.":[null,""],"Unable to save your shipping settings. Please try again.":[null,""],"Dimensions":[null,""],"Close":[null,""],"Packages to be Shipped":[null,""],"Add to a New Package":[null,""],"Add items":[null,""],"Individually Shipped Item":[null,""],"Item Dimensions":[null,""],"Please select a package":[null,""],"Service schemas were not loaded":[null,""],"Bad request":[null,""],"Order not found":[null,""],"Got it, thanks!":[null,""],"Activate Jetpack and connect":[null,""],"Install Jetpack and connect":[null,""],"Something went wrong. Please try connecting to Jetpack manually, or contact support on the WordPress.org forums.":[null,""],"Connecting...":[null,""],"Activating...":[null,""],"When you're ready, purchase and print discounted labels from %s right here.":[null,""],"Discounted Shipping Labels":[null,""],"American Express":[null,""],"Discover":[null,""],"MasterCard":[null,""],"VISA":[null,""],"PayPal":[null,""],"Add another credit card":[null,""],"%(selectedCount)d package selected":["%(selectedCount)d packages selected","","","","","",""],"Unable to get your settings. Please refresh the page to try again.":[null,""],"%(numSelected)d service selected":["%(numSelected)d services selected","","","","","",""],"Add and edit saved packages using the {{a}}Packaging Manager{{/a}}.":[null,""],"Tracking #: {{trackingLink/}}":[null,""],"%(item)s from {{pckg/}}":[null,""],"Which items would you like to add to {{pckg/}}?":[null,""],"1 item in 1 package: %(weight)s %(unit)s total":[null,""],"%(itemsCount)d items in 1 package: %(weight)s %(unit)s total":[null,""],"%(itemsCount)d items in %(packageCount)d packages: %(weight)s %(unit)s total":[null,""],"{{itemLink/}} is currently saved for a later shipment.":[null,""],"{{itemLink/}} is currently shipped in its original packaging.":[null,""],"{{itemLink/}} is currently in {{pckg/}}.":[null,""],"Choose rate: %(pckg)s":[null,""],"Refund label (-%(amount)s)":[null,""],"Where would you like to move it?":[null,""],"Unsaved changes made to packages":[null,""],"There are no items in this package.":[null,""],"Ship in original packaging":[null,""],"Request refund":[null,""],"Reprint":[null,""],"Paper size":[null,""],"No packages selected":[null,""],"Move":[null,""],"Move item":[null,""],"Increase the rates calculated by the carrier to account for packaging and handling costs. You can also add a negative amount to save your customers money.":[null,""],"Create new label":[null,""],"All packages selected":[null,""],"Add":[null,""],"Add item":[null,""],"Add a credit card":[null,""],"#%d - [Deleted product]":[null,""],"#%1$d - %2$s":[null,""],"<a href=\"%s\">Support</a>":[null,""],"There was an error installing Jetpack. Please try installing it manually.":[null,""],"Shipping Labels":[null,""],"Automattic":[null,""],"https://woocommerce.com/":[null,""],"Phone":[null,""],"Connect":[null,""],"Save Settings":[null,""],"Your changes have been saved.":[null,""],"There was a problem with one or more entries. Please fix the errors below and try saving again.":[null,""],"Expand":[null,""],"Dismiss":[null,""],"You have unsaved changes.":[null,""],"Type of package":[null,""],"Add package":["Add packages","","","","","",""],"Invalid value.":[null,""],"This field is required":[null,""],"Package name":[null,""],"This field must be unique":[null,""],"Unable to save your shipping packages. Please try again.":[null,""],"Save changes":[null,""],"Untitled":[null,""],"Dimensions (L x W x H)":[null,""],"All services selected":[null,""],"Expand Services":[null,""],"Service":[null,""],"Price adjustment":[null,""],"Saved Packages":[null,""],"Tracking":[null,""],"Create shipping label":["Create shipping labels","","","","","",""],"Name":[null,""],"Company":[null,""],"Address":[null,""],"City":[null,""],"State":[null,""],"Country":[null,""],"Invalid address":[null,""],"Origin address":[null,""],"Destination address":[null,""],"We have slightly modified the address entered. If correct, please use the suggested address to ensure accurate delivery.":[null,""],"Address entered":[null,""],"Edit address":[null,""],"Suggested address":[null,""],"Use selected address":[null,""],"Use these packages":[null,""],"The service and rate chosen by the customer at checkout is not available. Please choose another.":[null,""],"Request a refund":[null,""],"You can request a refund for a shipping label that has not been used to ship a package. It will take at least %(days)s days to process.":[null,""],"Purchase date":[null,""],"Amount eligible for refund":[null,""],"Reprint shipping label":[null,""],"If there was a printing error when you purchased the label, you can print it again.":[null,""],"NOTE: If you already used the label in a package, printing and using it again is a violation of our terms of service and may result in criminal charges.":[null,""],"Print":[null,""],"Cancel":[null,""],"N/A":[null,""],"More":[null,""],"Invalid PDF request.":[null,""],"Unknown package":[null,""],"Individual packaging":[null,""],"Unable to update service settings. Validation failed. %s":[null,""],"Unable to update service settings. The form data could not be read.":[null,""],"Unable to update service settings. Form data is missing service ID.":[null,""],"Unable to update settings. The form data could not be read.":[null,""],"Unable to update settings. %s":[null,""],"Packaging":[null,""],"Section not loading? Visit the <a href=\"%s\">status page</a> for troubleshooting steps.":[null,""],"Note: Jetpack development mode is enabled on this site. This site will not be able to obtain payment methods from WooCommerce Shipping & Tax production servers.":[null,""],"Note: Jetpack is connected, but development mode is also enabled on this site. Please disable development mode.":[null,""],"Shipping Label":[null,""],"yd":[null,""],"in":[null,""],"mm":[null,""],"cm":[null,""],"m":[null,""],"oz":[null,""],"lbs":[null,""],"g":[null,""],"kg":[null,""],"An invalid service ID was received.":[null,""],"An invalid service instance was received.":[null,""],"Rest of the World":[null,""],"Support":[null,""],"Debug":[null,""],"Services":[null,""],"Need help?":[null,""],"Log is empty":[null,""],"Disabled":[null,""],"Enabled":[null,""],"%s Shipping Zone":[null,""],"The most recent rate request failed":[null,""],"The most recent rate request was successful":[null,""],"No rate requests have yet been made for this service":[null,""],"Setup for this service has not yet been completed":[null,""],"Service data is up-to-date":[null,""],"Service data was found, but is more than one day old":[null,""],"Service data was found, but is more than three days old":[null,""],"Service data found, but may be out of date":[null,""],"No service data available":[null,""],"Jetpack":[null,""],"Jetpack %s is connected and working correctly":[null,""],"This is a Jetpack staging site":[null,""],"Jetpack is not connected to WordPress.com. Make sure the Jetpack plugin is installed, activated, and connected.":[null,""],"Jetpack %1$s or higher is required (You are running %2$s)":[null,""],"Please install and activate the Jetpack plugin, version %s or higher":[null,""],"WooCommerce":[null,""],"WooCommerce %s is configured correctly":[null,""],"Please set Base Location in WooCommerce Settings > General":[null,""],"WooCommerce %1$s or higher is required (You are running %2$s)":[null,""],"Dismiss this notice":[null,""],"ERROR: Your site has a problem connecting to the WooCommerce Shipping & Tax API. Please make sure your Jetpack connection is working.":[null,""],"Your site is succesfully communicating to the WooCommerce Shipping & Tax API.":[null,""],"This will test your WooCommerce Shipping & Tax connection to ensure everything is working correctly":[null,""],"Test Connection":[null,""],"The WooCommerce Shipping & Tax brandname\u0004WooCommerce Shipping & Tax":[null,""],"The WooCommerce Shipping & Tax brandname\u0004WooCommerce Shipping":[null,""],"%s - ZIP/Postal code checkout field label\u0004Invalid %s entered.":[null,""],"%s - ZIP/Postal code checkout field label\u0004%s does not match the selected state.":[null,""],"date is of the form MM/YY\u0004Expires %(date)s":[null,""],"A service with an unknown title and unknown method_title\u0004Unknown":[null,""],"This section displays the overall health of WooCommerce Shipping & Tax and the things it depends on\u0004Health":[null,""]}
1
+ {"0":[null,""],"":{"po-revision-date":"+0000","mime-version":"1.0","content-type":"text/plain; charset=UTF-8","content-transfer-encoding":"8bit","plural-forms":"nplurals=6; plural=(n == 0) ? 0 : ((n == 1) ? 1 : ((n == 2) ? 2 : ((n % 100 >= 3 && n % 100 <= 10) ? 3 : ((n % 100 >= 11 && n % 100 <= 99) ? 4 : 5))));","x-generator":"GlotPress/3.0.0-alpha.2","language":"ar","project-id-version":"Plugins - WooCommerce Shipping &amp; Tax - Stable (latest release)"},"Features":[null,""],"Carrier":[null,""],"Express delivery from the experts in international shipping":[null,""],"Live rates for %(carrierName)s at checkout":[null,""],"Ship with the largest delivery network in the United States":[null,""],"Discounted %(carrierName)s shipping labels":[null,""],"To be displayed at checkout, this carrier must be added as a shipping method to selected shipping zones":[null,""],"Add to shipping zones":[null,""],"Show live rates directly on your store - never under or overcharge for shipping again":[null,""],"Live rates at checkout":[null,""],"Last updated %s.":[null,""],"At least one of the new predefined packages has the same name as existing packages.":[null,""],"The new predefined package names are not unique.":[null,""],"At least one of the new custom packages has the same name as existing packages.":[null,""],"The new custom package names are not unique.":[null,""],"Go to shipping zones":[null,""],"Add DHL Express as a shipping method to selected shipping zones to display live rates at checkout.":[null,""],"DHL Express live rates are now available":[null,""],"State %1$s is invalid for %2$s.":[null,""],"%1$s %2$s is invalid for %3$s.":[null,""],"A %1$s is required for %2$s.":[null,""],"A country is required":[null,""],"Your store is over the limit for rate calls this month and your account will be charged for overages. To prevent future overage charges you can upgrade your plan.":[null,""],"There was an error trying to activate your subscription.":[null,""],"Your subscription was succesfully activated.":[null,""],"Manage":[null,""],"Usage":[null,""],"View and manage your subscription usage":[null,""],"Shipping method":[null,""],"The subscription is already active.":[null,""],"Set up your own carrier account to compare rates and print labels from multiple carriers in WooCommerce Shipping. Learn more about adding {{a}}carrier accounts{{/a}}.":[null,""],"There was an error connecting to your %(carrierName)s account. Please check that all of the information entered matches your %(carrierName)s account and try to connect again.":[null,""],"Your carrier account was connected successfully.":[null,""],"The date must be a valid date in the format YYYY-MM-DD":[null,""],"The invoice number needs to be 9 or 13 letters and digits in length":[null,""],"The company website format is not valid":[null,""],"The email format is not valid":[null,""],"The ZIP/Postal code needs to be 5 digits in length":[null,""],"The phone number needs to be 10 digits in length":[null,""],"The UPS account number needs to be 6 letters and digits in length":[null,""],"This will remove the connection with %(carrier_name)s. All of your %(carrier_name)s account information will be deleted and you won\\u2019t see %(carrier_name)s rates.":[null,""],"Disconnect your %(carrier_name)s account":[null,""],"There was an error trying to disconnect your carrier account":[null,""],"Your carrier account was disconnected succesfully.":[null,""],"DHL Express":[null,""],"Powered by WooCommerce Tax. If automated taxes are enabled, you'll need to enter prices exclusive of tax.":[null,""],"WooCommerce Helper auth is missing":[null,""],"USPS labels without tracking are not eligible for refund.":[null,""],"General Information":[null,""],"Connect your %(carrierName)s account":[null,""],"%(carrierName)s not supported.":[null,""],"Loading":[null,""],"WooCommerce Shipping & Tax Data":[null,""],"Print customs form":[null,""],"Test your WooCommerce Shipping & Tax connection":[null,""],"WooCommerce Shipping & Tax Status":[null,""],"Connect your store to activate WooCommerce Shipping & Tax":[null,""],"Connect Jetpack to activate WooCommerce Shipping & Tax":[null,""],"WooCommerce Shipping now supports DHL labels for international shipments. Purchase and print discounted labels from DHL and USPS right here.":[null,""],"Discounted DHL Shipping Labels":[null,""],"WooCommerce Shipping":[null,""],"Invalid WooCommerce Shipping & Tax service slug provided":[null,""],"WooCommerce Shipping & Tax":[null,""],"ZIP/Postal code":[null,""],"This action will delete any information entered on the form.":[null,""],"Cancel connection":[null,""],"Ok":[null,""],"UPS invoice control id":[null,""],"UPS invoice currency":[null,""],"UPS invoice amount":[null,""],"UPS invoice date":[null,""],"UPS invoice number":[null,""],"I have been issued an invoice from UPS within the past 90 days":[null,""],"UPS account information":[null,""],"Company website":[null,""],"Job title":[null,""],"Company name":[null,""],"This is the company info you used to create your UPS account":[null,""],"Company information":[null,""],"Email":[null,""],"Address 2 (optional)":[null,""],"Account number":[null,""],"This is the account number and address from your UPS profile":[null,""],"General information":[null,""],"If you need a UPS account number, go to {{a}}UPS.com{{/a}} to create a new account.":[null,""],"Set up your own UPS carrier account to compare rates and print labels from multiple carriers in WooCommerce Shipping. Learn more about adding {{a}}carrier accounts{{/a}}.":[null,""],"Connect your UPS account":[null,""],"Set up your own carrier account by adding your credentials here":[null,""],"Carrier account":[null,""],"Credentials":[null,""],"Adult signature required":[null,""],"Signature required":[null,""],"Other\\u2026":[null,""],"Select one\\u2026":[null,""],"Validating address\\u2026":[null,""],"Purchasing\\u2026":[null,""],"Your UPS account will be charged":[null,""],"Package %(index)s \\u2013 %(title)s":[null,""],"Saving\\u2026":[null,""],"Your tax rates and settings will be automatically configured for %1$s. <a href=\"https://docs.woocommerce.com/document/setting-up-taxes-in-woocommerce/#section-12\">Learn more about setting up tax rates for additional nexuses</a>":[null,""],"Your tax rates and settings will be automatically configured for %1$s, %2$s. <a href=\"https://docs.woocommerce.com/document/setting-up-taxes-in-woocommerce/#section-12\">Learn more about setting up tax rates for additional nexuses</a>":[null,""],"%(itemCount)d item is ready to be fulfilled":["%(itemCount)d items are ready to be fulfilled","","","","","",""],"%(itemCount)d item was fulfilled on {{span}}%(createdDate)s{{/span}}":["%(itemCount)d items were fulfilled on {{span}}%(createdDate)s{{/span}}","","","","","",""],"Schedule a pickup":[null,""],"Label images older than 180 days are deleted by our technology partners for general security and data privacy concerns.":[null,""],"Labels older than 30 days cannot be refunded.":[null,""],"Mark this order as complete and notify the customer":[null,""],"Notify the customer with shipment details":[null,""],"You save %s with WooCommerce Shipping":[null,""],"WooCommerce Shipping & Tax requires the WooCommerce plugin to be installed and active. You can download %s here.":[null,""],"No tracking information available at this time":[null,""],"Connection error: unable to create label at this time":[null,""],"Track Package":["Track Packages","","","","","",""],"Which package would you like to track?":[null,""],"%(service)s label (#%(labelIndex)d)":[null,""],"To print this shipping label, {{a}}add a credit card to your account{{/a}}.":[null,""],"Add credit card":[null,""],"To print this shipping label, {{a}}choose a credit card to add to your account{{/a}}.":[null,""],"Choose credit card":[null,""],"Buy shipping label":["Buy shipping labels","","","","","",""],"shipping label ready":["shipping labels ready","","","","","",""],"Shipping from":[null,""],"Shipping summary":[null,""],"Customer paid a {{shippingMethod/}} of {{shippingCost/}} for shipping":[null,""],"Shipping rates":[null,""],"HS Tariff number":[null,""],"Submit":[null,""],"Total Weight (with package)":[null,""],"QTY":[null,""],"Weight":[null,""],"Items to fulfill":[null,""],"Select a package type":[null,""],"Package details":[null,""],"Your shipping packages have been saved.":[null,""],"0.0":[null,""],"Shipment Tracking":[null,""],"Customs information valid":[null,""],"Customs information incomplete":[null,""],"Packing Log:":[null,""],"Chosen Rate:":[null,""],"Shipping Method ID:":[null,""],"Shipping Method Name:":[null,""],"Shipping Debug":[null,""],"<strong>\"%2$s\" is missing weight, length, width, or height.</strong><br />Shipping rates cannot be calculated. <a href=\"%1$s\">Enter dimensions and weight for %2$s</a> so your customers can purchase this item.":[null,""],"Unable to send request to WooCommerce Shipping & Tax server. The timestamp generated for the signature is too old.":[null,""],"Unable to send request to WooCommerce Shipping & Tax server. Jetpack Token is malformed.":[null,""],"Unable to send request to WooCommerce Shipping & Tax server. Jetpack Token is missing":[null,""],"Error: The WooCommerce Shipping & Tax server returned: %1$s %2$s ( %3$d )":[null,""],"Error: The WooCommerce Shipping & Tax server returned ( %d ) and an empty response body.":[null,""],"Error: The WooCommerce Shipping & Tax server returned HTTP code: %d":[null,""],"Unable to encode body for request to WooCommerce Shipping & Tax server.":[null,""],"Unable to send request to WooCommerce Shipping & Tax server. Body must be an array.":[null,""],"Unable to send request to WooCommerce Shipping & Tax server. Jetpack connection does not implement get_access_token.":[null,""],"Unable to send request to WooCommerce Shipping & Tax server. Jetpack_Data was not found.":[null,""],"No shipping rate could be calculated. No items in the package are shippable.":[null,""],"Product ( ID: %d ) is missing a dimension value. Shipping rates cannot be calculated.":[null,""],"Product ( ID: %d ) did not include a weight. Shipping rates cannot be calculated.":[null,""],"Packing log:":[null,""],"Received rate: %1$s (%2$s)":[null,""],"Your customer selected {{shippingMethod/}}":[null,""],"Total rate: %(total)s":[null,""],"%(serviceName)s: %(rate)s":[null,""],"No rates found":[null,""],"WooCommerce Shipping gives you access to USPS Commercial Pricing, which is discounted over Retail rates.":[null,""],"more info":[null,""],"ITN":[null,""],"Sanitary / Phytosanitary inspection":[null,""],"Quarantine":[null,""],"None":[null,""],"Restriction type":[null,""],"Details":[null,""],"Sample":[null,""],"Gift":[null,""],"Documents":[null,""],"Merchandise":[null,""],"Contents type":[null,""],"Return to sender if package is unable to be delivered":[null,""],"Value (per unit)":[null,""],"Weight (per unit)":[null,""],"Save customs form":[null,""],"Customs":[null,""],"Use address as entered":[null,""],"View on Google Maps":[null,""],"Verify with USPS":[null,""],"Automatic verification failed for this address. It may still be a valid address \\u2014 use the tools below to manually verify.":[null,""],"We were unable to automatically verify the address.":[null,""],"We were unable to automatically verify the address \\u2014 %(error)s.":[null,""],"You've edited the address, please revalidate it for accurate rates":[null,""],"Verify address":[null,""],"%(message)s. Please modify the address and try again.":[null,""],"View details":[null,""],"Items":[null,""],"Package":[null,""],"Receipt":[null,""],"Label #%(labelIndex)s details":[null,""],"{{icon/}} Delete this package":[null,""],"Done":[null,""],"Add boxes, envelopes, and other packages you use most frequently":[null,""],"Remove":[null,""],"Edit":[null,""],"Weight of empty package":[null,""],"Unique package name":[null,""],"Envelope":[null,""],"Box":[null,""],"This field is required.":[null,""],"Payment":[null,""],"Email the label purchase receipts to %(ownerName)s (%(ownerLogin)s) at %(ownerEmail)s":[null,""],"Email Receipts":[null,""],"To purchase shipping labels, choose a credit card you have on file or add a new card.":[null,""],"Choose a different card":[null,""],"To purchase shipping labels, add a credit card.":[null,""],"We'll charge the credit card on your account (%(card)s) to pay for the labels you print":[null,""],"Credit cards are retrieved from the following WordPress.com account: %(wpcomLogin)s <%(wpcomEmail)s>":[null,""],"Only the site owner can change these settings. Please contact %(ownerName)s (%(ownerLogin)s) to change the shipping label settings.":[null,""],"Only the site owner can manage shipping label payment methods. Please contact %(ownerName)s (%(ownerLogin)s) to manage payment methods.":[null,""],"%(card)s ****%(digits)s":[null,""],"Print shipping labels yourself and save a trip to the post office":[null,""],"H":[null,""],"W":[null,""],"L":[null,""],"Disconnect":[null,""],"Activate":[null,""],"No activity yet":[null,""],"Note":[null,""],"Refunded %(amount)s":[null,""],"%(service)s label (#%(labelNum)d) refund rejected":[null,""],"%(service)s label (#%(labelNum)d) refunded (%(amount)s)":[null,""],"%(service)s label (#%(labelNum)d) refund requested (%(amount)s)":[null,""],"Note sent to customer":[null,""],"Internal note":[null,""],"Show notes from %(date)s":[null,""],"%(count)s event":["%(count)s events","","","","","",""],"WeChat Pay":[null,""],"Toggle menu":[null,""],"Return to Order #%(orderId)s":[null,""],"Our team is here for you. View our {{docsA}}support docs{{/docsA}} or {{ticketA}}open a support ticket{{/ticketA}}.":[null,""],"Logging":[null,""],"No services configured. {{a}}Add a shipping service{{/a}}":[null,""],"Edit service settings":[null,""],"Request was made %s - check logs below or {{a}}edit service settings{{/a}}":[null,""],"Copy for support":[null,""],"Last %s entry. {{a}}Show full log{{/a}}":["Last %s entries. {{a}}Show full log{{/a}}","","","","","",""],"Log tail copied to clipboard":[null,""],"You have unsaved changes. Are you sure you want to leave this page?":[null,""],"Value ($ per unit)":[null,""],"Weight (%s per unit)":[null,""],"Description":[null,""],"Country where the product was manufactured or assembled":[null,""],"Origin country":[null,""],"USPS":[null,""],"Optional":[null,""],"Retry":[null,""],"shipping label printing":[null,""],"shipping label printing and smoother payment setup":[null,""],"automated tax calculation and shipping label printing":[null,""],"automated tax calculation, shipping label printing, and smoother payment setup":[null,""],"Data resource description.":[null,""],"Data resource ID.":[null,""],"List of supported currencies.":[null,""],"List of supported states in a given country.":[null,""],"List of supported continents, countries, and states.":[null,""],"Sorry, you cannot view this resource.":[null,""],"Sorry, you cannot list resources.":[null,""],"The unit weights are defined in for this country.":[null,""],"Thousands separator for displayed prices in this country.":[null,""],"Full name of state.":[null,""],"State code.":[null,""],"List of states in this country.":[null,""],"Number of decimal points shown in displayed prices for this country.":[null,""],"Full name of country.":[null,""],"The unit lengths are defined in for this country.":[null,""],"Decimal separator for displayed prices for this country.":[null,""],"Currency symbol position for this country.":[null,""],"Default ISO4127 alpha-3 currency code for the country.":[null,""],"ISO3166 alpha-2 country code.":[null,""],"List of countries on this continent.":[null,""],"Full name of continent.":[null,""],"There are no locations matching these parameters.":[null,""],"2 character continent code.":[null,""],"Shipping label tracking number":[null,""],"Shipping label service":[null,""],"Warning: Erasing personal data will cause the ability to reprint or refund WooCommerce Shipping & Tax shipping labels to be lost on the affected orders.":[null,""],"By using this extension, you may be storing personal data or sharing data with external services. <a href=\"%s\" target=\"_blank\">Learn more about how this works, including what you may want to include in your privacy policy.</a>":[null,""],"There was a problem updating your saved credit cards.":[null,""],"No labels found for this period":[null,""],"Total":[null,""],"Refund":[null,""],"Price":[null,""],"Order":[null,""],"Time":[null,""],"Requested":[null,""],"Last 7 days":[null,""],"This month":[null,""],"Last month":[null,""],"Year":[null,""],"Export CSV":[null,""],"Other Log":[null,""],"Taxes Log":[null,""],"Shipping Log":[null,""],"Display troubleshooting information on the Cart and Checkout pages.":[null,""],"Write diagnostic messages to log files. Helpful when contacting support.":[null,""],"Enter your email address at which to accept payments. You'll need to link your own account in order to perform anything other than \"sale\" transactions.":[null,""],"Payment Email":[null,""],"To authenticate payments with WooCommerce Shipping & Tax, <a href=\"%s\">click here</a>.":[null,""],"Payments will be authenticated by WooCommerce Shipping & Tax and directed to the following email address. To disable this feature and link a PayPal account, <a href=\"%s\">click here</a>.":[null,""],"%s (Note that \"authorizing payment only\" requires linking a PayPal account.)":[null,""],"Link account":[null,""],"Link a new or existing PayPal account to make sure future orders are marked “Processing” instead of “On hold”, and so refunds can be issued without leaving WooCommerce.":[null,""],"Link your PayPal account":[null,""],"To issue refunds via PayPal Checkout, you will need to <a href=\"%s\">link a PayPal account</a> with the email address that received this payment.":[null,""],"Link a PayPal account":[null,""],"Refresh":[null,""],"Tracking number":[null,""],"Provider":[null,""],"WooCommerce Shipping & Tax is almost ready to go! Once you connect Jetpack you'll have access to %s.":[null,""],"Hosted services for WooCommerce: automated tax calculation, shipping label printing, and smoother payment setup.":[null,""],"Tax Class":[null,""],"Shipping":[null,""],"Compound":[null,""],"Priority":[null,""],"Tax Name":[null,""],"Rate %":[null,""],"ZIP/Postcode":[null,""],"State Code":[null,""],"Country Code":[null,""],"Enable automated taxes":[null,""],"Disable automated taxes":[null,""],"Automated taxes":[null,""],"By clicking \"%1$s\", you agree to the <a href=\"%2$s\">Terms of Service</a> and to <a href=\"%3$s\">share certain data and settings</a> with WordPress.com and/or third parties.":[null,""],"Setup complete.":[null,""],"You can now enjoy %s.":[null,""],"WooCommerce Shipping & Tax is almost ready to go! Once you connect your store you'll have access to %s.":[null,""],"automated tax calculation":[null,""],"smoother payment setup":[null,""],"automated tax calculation and smoother payment setup":[null,""],"Required":[null,""],"Your shipping settings have been saved.":[null,""],"Unable to save your shipping settings. Please try again.":[null,""],"Dimensions":[null,""],"Close":[null,""],"Packages to be Shipped":[null,""],"Add to a New Package":[null,""],"Add items":[null,""],"Individually Shipped Item":[null,""],"Item Dimensions":[null,""],"Please select a package":[null,""],"Service schemas were not loaded":[null,""],"Bad request":[null,""],"Order not found":[null,""],"Got it, thanks!":[null,""],"Activate Jetpack and connect":[null,""],"Install Jetpack and connect":[null,""],"Something went wrong. Please try connecting to Jetpack manually, or contact support on the WordPress.org forums.":[null,""],"Connecting...":[null,""],"Activating...":[null,""],"When you're ready, purchase and print discounted labels from %s right here.":[null,""],"Discounted Shipping Labels":[null,""],"American Express":[null,""],"Discover":[null,""],"MasterCard":[null,""],"VISA":[null,""],"PayPal":[null,""],"Add another credit card":[null,""],"%(selectedCount)d package selected":["%(selectedCount)d packages selected","","","","","",""],"Unable to get your settings. Please refresh the page to try again.":[null,""],"%(numSelected)d service selected":["%(numSelected)d services selected","","","","","",""],"Add and edit saved packages using the {{a}}Packaging Manager{{/a}}.":[null,""],"Tracking #: {{trackingLink/}}":[null,""],"%(item)s from {{pckg/}}":[null,""],"Which items would you like to add to {{pckg/}}?":[null,""],"1 item in 1 package: %(weight)s %(unit)s total":[null,""],"%(itemsCount)d items in 1 package: %(weight)s %(unit)s total":[null,""],"%(itemsCount)d items in %(packageCount)d packages: %(weight)s %(unit)s total":[null,""],"{{itemLink/}} is currently saved for a later shipment.":[null,""],"{{itemLink/}} is currently shipped in its original packaging.":[null,""],"{{itemLink/}} is currently in {{pckg/}}.":[null,""],"Choose rate: %(pckg)s":[null,""],"Refund label (-%(amount)s)":[null,""],"Where would you like to move it?":[null,""],"Unsaved changes made to packages":[null,""],"There are no items in this package.":[null,""],"Ship in original packaging":[null,""],"Request refund":[null,""],"Reprint":[null,""],"Paper size":[null,""],"No packages selected":[null,""],"Move":[null,""],"Move item":[null,""],"Increase the rates calculated by the carrier to account for packaging and handling costs. You can also add a negative amount to save your customers money.":[null,""],"Create new label":[null,""],"All packages selected":[null,""],"Add":[null,""],"Add item":[null,""],"Add a credit card":[null,""],"#%d - [Deleted product]":[null,""],"#%1$d - %2$s":[null,""],"<a href=\"%s\">Support</a>":[null,""],"There was an error installing Jetpack. Please try installing it manually.":[null,""],"Shipping Labels":[null,""],"https://woocommerce.com/":[null,""],"Phone":[null,""],"Connect":[null,""],"Save Settings":[null,""],"Your changes have been saved.":[null,""],"There was a problem with one or more entries. Please fix the errors below and try saving again.":[null,""],"Expand":[null,""],"Dismiss":[null,""],"You have unsaved changes.":[null,""],"Type of package":[null,""],"Add package":["Add packages","","","","","",""],"Invalid value.":[null,""],"This field is required":[null,""],"Package name":[null,""],"This field must be unique":[null,""],"Unable to save your shipping packages. Please try again.":[null,""],"Save changes":[null,""],"Untitled":[null,""],"Dimensions (L x W x H)":[null,""],"All services selected":[null,""],"Expand Services":[null,""],"Service":[null,""],"Price adjustment":[null,""],"Saved Packages":[null,""],"Tracking":[null,""],"Create shipping label":["Create shipping labels","","","","","",""],"Name":[null,""],"Company":[null,""],"Address":[null,""],"City":[null,""],"State":[null,""],"Country":[null,""],"Invalid address":[null,""],"Origin address":[null,""],"Destination address":[null,""],"We have slightly modified the address entered. If correct, please use the suggested address to ensure accurate delivery.":[null,""],"Address entered":[null,""],"Edit address":[null,""],"Suggested address":[null,""],"Use selected address":[null,""],"Use these packages":[null,""],"The service and rate chosen by the customer at checkout is not available. Please choose another.":[null,""],"Request a refund":[null,""],"You can request a refund for a shipping label that has not been used to ship a package. It will take at least %(days)s days to process.":[null,""],"Purchase date":[null,""],"Amount eligible for refund":[null,""],"Reprint shipping label":[null,""],"If there was a printing error when you purchased the label, you can print it again.":[null,""],"NOTE: If you already used the label in a package, printing and using it again is a violation of our terms of service and may result in criminal charges.":[null,""],"Print":[null,""],"Cancel":[null,""],"N/A":[null,""],"More":[null,""],"Invalid PDF request.":[null,""],"Unknown package":[null,""],"Individual packaging":[null,""],"Unable to update service settings. Validation failed. %s":[null,""],"Unable to update service settings. The form data could not be read.":[null,""],"Unable to update service settings. Form data is missing service ID.":[null,""],"Unable to update settings. The form data could not be read.":[null,""],"Unable to update settings. %s":[null,""],"Packaging":[null,""],"Section not loading? Visit the <a href=\"%s\">status page</a> for troubleshooting steps.":[null,""],"Note: Jetpack development mode is enabled on this site. This site will not be able to obtain payment methods from WooCommerce Shipping & Tax production servers.":[null,""],"Note: Jetpack is connected, but development mode is also enabled on this site. Please disable development mode.":[null,""],"Shipping Label":[null,""],"yd":[null,""],"in":[null,""],"mm":[null,""],"cm":[null,""],"m":[null,""],"oz":[null,""],"lbs":[null,""],"g":[null,""],"kg":[null,""],"An invalid service ID was received.":[null,""],"An invalid service instance was received.":[null,""],"Rest of the World":[null,""],"Support":[null,""],"Debug":[null,""],"Services":[null,""],"Need help?":[null,""],"Log is empty":[null,""],"Disabled":[null,""],"Enabled":[null,""],"%s Shipping Zone":[null,""],"The most recent rate request failed":[null,""],"The most recent rate request was successful":[null,""],"No rate requests have yet been made for this service":[null,""],"Setup for this service has not yet been completed":[null,""],"Service data is up-to-date":[null,""],"Service data was found, but is more than one day old":[null,""],"Service data was found, but is more than three days old":[null,""],"Service data found, but may be out of date":[null,""],"No service data available":[null,""],"Jetpack":[null,""],"Jetpack %s is connected and working correctly":[null,""],"This is a Jetpack staging site":[null,""],"Jetpack is not connected to WordPress.com. Make sure the Jetpack plugin is installed, activated, and connected.":[null,""],"Jetpack %1$s or higher is required (You are running %2$s)":[null,""],"Please install and activate the Jetpack plugin, version %s or higher":[null,""],"WooCommerce":[null,""],"WooCommerce %s is configured correctly":[null,""],"Please set Base Location in WooCommerce Settings > General":[null,""],"WooCommerce %1$s or higher is required (You are running %2$s)":[null,""],"Dismiss this notice":[null,""],"ERROR: Your site has a problem connecting to the WooCommerce Shipping & Tax API. Please make sure your Jetpack connection is working.":[null,""],"Your site is succesfully communicating to the WooCommerce Shipping & Tax API.":[null,""],"This will test your WooCommerce Shipping & Tax connection to ensure everything is working correctly":[null,""],"Test Connection":[null,""],"The WooCommerce Shipping & Tax brandname\u0004WooCommerce Shipping & Tax":[null,""],"The WooCommerce Shipping & Tax brandname\u0004WooCommerce Shipping":[null,""],"%s - ZIP/Postal code checkout field label\u0004Invalid %s entered.":[null,""],"%s - ZIP/Postal code checkout field label\u0004%s does not match the selected state.":[null,""],"date is of the form MM/YY\u0004Expires %(date)s":[null,""],"A service with an unknown title and unknown method_title\u0004Unknown":[null,""],"This section displays the overall health of WooCommerce Shipping & Tax and the things it depends on\u0004Health":[null,""]}
i18n/languages/woocommerce-services-ar.po CHANGED
@@ -51,7 +51,7 @@ msgstr ""
51
  msgid "Live rates at checkout"
52
  msgstr ""
53
 
54
- #: i18n/strings.php:354
55
  msgid "Last updated %s."
56
  msgstr ""
57
 
@@ -206,7 +206,7 @@ msgstr ""
206
  msgid "WooCommerce Helper auth is missing"
207
  msgstr ""
208
 
209
- #: i18n/strings.php:364 i18n/strings.php:428
210
  msgid "USPS labels without tracking are not eligible for refund."
211
  msgstr ""
212
 
@@ -226,11 +226,11 @@ msgstr ""
226
  msgid "Loading"
227
  msgstr ""
228
 
229
- #: i18n/strings.php:353
230
  msgid "WooCommerce Shipping & Tax Data"
231
  msgstr ""
232
 
233
- #: i18n/strings.php:372 i18n/strings.php:436
234
  msgid "Print customs form"
235
  msgstr ""
236
 
@@ -277,8 +277,8 @@ msgid "Invalid WooCommerce Shipping & Tax service slug provided"
277
  msgstr ""
278
 
279
  #. Plugin Name of the plugin
280
- #: classes/class-wc-connect-privacy.php:36
281
  #: classes/class-wc-connect-settings-pages.php:123
 
282
  msgid "WooCommerce Shipping & Tax"
283
  msgstr ""
284
 
@@ -411,7 +411,7 @@ msgstr ""
411
  msgid "Validating address\\u2026"
412
  msgstr ""
413
 
414
- #: i18n/strings.php:326 i18n/strings.php:405 i18n/strings.php:469
415
  msgid "Purchasing\\u2026"
416
  msgstr ""
417
 
@@ -423,7 +423,7 @@ msgstr ""
423
  msgid "Package %(index)s \\u2013 %(title)s"
424
  msgstr ""
425
 
426
- #: i18n/strings.php:6 i18n/strings.php:170 i18n/strings.php:482
427
  msgid "Saving\\u2026"
428
  msgstr ""
429
 
@@ -437,7 +437,7 @@ msgstr ""
437
  msgid "Your tax rates and settings will be automatically configured for %1$s, %2$s. <a href=\"https://docs.woocommerce.com/document/setting-up-taxes-in-woocommerce/#section-12\">Learn more about setting up tax rates for additional nexuses</a>"
438
  msgstr ""
439
 
440
- #: i18n/strings.php:480
441
  msgid "%(itemCount)d item is ready to be fulfilled"
442
  msgid_plural "%(itemCount)d items are ready to be fulfilled"
443
  msgstr[0] ""
@@ -447,7 +447,7 @@ msgstr[3] ""
447
  msgstr[4] ""
448
  msgstr[5] ""
449
 
450
- #: i18n/strings.php:479
451
  msgid "%(itemCount)d item was fulfilled on {{span}}%(createdDate)s{{/span}}"
452
  msgid_plural "%(itemCount)d items were fulfilled on {{span}}%(createdDate)s{{/span}}"
453
  msgstr[0] ""
@@ -457,15 +457,15 @@ msgstr[3] ""
457
  msgstr[4] ""
458
  msgstr[5] ""
459
 
460
- #: i18n/strings.php:371 i18n/strings.php:435
461
  msgid "Schedule a pickup"
462
  msgstr ""
463
 
464
- #: i18n/strings.php:367 i18n/strings.php:431
465
  msgid "Label images older than 180 days are deleted by our technology partners for general security and data privacy concerns."
466
  msgstr ""
467
 
468
- #: i18n/strings.php:363 i18n/strings.php:427
469
  msgid "Labels older than 30 days cannot be refunded."
470
  msgstr ""
471
 
@@ -486,15 +486,15 @@ msgstr ""
486
  msgid "WooCommerce Shipping & Tax requires the WooCommerce plugin to be installed and active. You can download %s here."
487
  msgstr ""
488
 
489
- #: i18n/strings.php:408
490
  msgid "No tracking information available at this time"
491
  msgstr ""
492
 
493
- #: i18n/strings.php:478
494
  msgid "Connection error: unable to create label at this time"
495
  msgstr ""
496
 
497
- #: i18n/strings.php:474 i18n/strings.php:476
498
  msgid "Track Package"
499
  msgid_plural "Track Packages"
500
  msgstr[0] ""
@@ -504,12 +504,12 @@ msgstr[3] ""
504
  msgstr[4] ""
505
  msgstr[5] ""
506
 
507
- #: i18n/strings.php:426
508
  msgid "Which package would you like to track?"
509
  msgstr ""
510
 
511
- #: i18n/strings.php:373 i18n/strings.php:404 i18n/strings.php:437
512
- #: i18n/strings.php:468
513
  msgid "%(service)s label (#%(labelIndex)d)"
514
  msgstr ""
515
 
@@ -605,7 +605,7 @@ msgstr ""
605
  msgid "0.0"
606
  msgstr ""
607
 
608
- #: woocommerce-services.php:1449
609
  msgid "Shipment Tracking"
610
  msgstr ""
611
 
@@ -617,23 +617,23 @@ msgstr ""
617
  msgid "Customs information incomplete"
618
  msgstr ""
619
 
620
- #: woocommerce-services.php:1492
621
  msgid "Packing Log:"
622
  msgstr ""
623
 
624
- #: woocommerce-services.php:1479
625
  msgid "Chosen Rate:"
626
  msgstr ""
627
 
628
- #: woocommerce-services.php:1475
629
  msgid "Shipping Method ID:"
630
  msgstr ""
631
 
632
- #: woocommerce-services.php:1471
633
  msgid "Shipping Method Name:"
634
  msgstr ""
635
 
636
- #: woocommerce-services.php:1455
637
  msgid "Shipping Debug"
638
  msgstr ""
639
 
@@ -641,15 +641,15 @@ msgstr ""
641
  msgid "<strong>\"%2$s\" is missing weight, length, width, or height.</strong><br />Shipping rates cannot be calculated. <a href=\"%1$s\">Enter dimensions and weight for %2$s</a> so your customers can purchase this item."
642
  msgstr ""
643
 
644
- #: classes/class-wc-connect-api-client.php:595
645
  msgid "Unable to send request to WooCommerce Shipping & Tax server. The timestamp generated for the signature is too old."
646
  msgstr ""
647
 
648
- #: classes/class-wc-connect-api-client.php:534
649
  msgid "Unable to send request to WooCommerce Shipping & Tax server. Jetpack Token is malformed."
650
  msgstr ""
651
 
652
- #: classes/class-wc-connect-api-client.php:527
653
  msgid "Unable to send request to WooCommerce Shipping & Tax server. Jetpack Token is missing"
654
  msgstr ""
655
 
@@ -683,7 +683,6 @@ msgid "Unable to send request to WooCommerce Shipping & Tax server. Jetpack_Data
683
  msgstr ""
684
 
685
  #: classes/class-wc-connect-api-client.php:160
686
- #: classes/class-wc-connect-api-client.php:187
687
  msgid "No shipping rate could be calculated. No items in the package are shippable."
688
  msgstr ""
689
 
@@ -832,23 +831,23 @@ msgstr ""
832
  msgid "%(message)s. Please modify the address and try again."
833
  msgstr ""
834
 
835
- #: i18n/strings.php:370 i18n/strings.php:434
836
  msgid "View details"
837
  msgstr ""
838
 
839
- #: i18n/strings.php:402 i18n/strings.php:466
840
  msgid "Items"
841
  msgstr ""
842
 
843
- #: i18n/strings.php:401 i18n/strings.php:465
844
  msgid "Package"
845
  msgstr ""
846
 
847
- #: i18n/strings.php:399 i18n/strings.php:463
848
  msgid "Receipt"
849
  msgstr ""
850
 
851
- #: i18n/strings.php:398 i18n/strings.php:462
852
  msgid "Label #%(labelIndex)s details"
853
  msgstr ""
854
 
@@ -963,43 +962,43 @@ msgstr ""
963
  msgid "Activate"
964
  msgstr ""
965
 
966
- #: i18n/strings.php:375 i18n/strings.php:439
967
  msgid "No activity yet"
968
  msgstr ""
969
 
970
- #: i18n/strings.php:383 i18n/strings.php:447
971
  msgid "Note"
972
  msgstr ""
973
 
974
- #: i18n/strings.php:382 i18n/strings.php:446
975
  msgid "Refunded %(amount)s"
976
  msgstr ""
977
 
978
- #: i18n/strings.php:380 i18n/strings.php:444
979
  msgid "%(service)s label (#%(labelNum)d) refund rejected"
980
  msgstr ""
981
 
982
- #: i18n/strings.php:379 i18n/strings.php:443
983
  msgid "%(service)s label (#%(labelNum)d) refunded (%(amount)s)"
984
  msgstr ""
985
 
986
- #: i18n/strings.php:378 i18n/strings.php:442
987
  msgid "%(service)s label (#%(labelNum)d) refund requested (%(amount)s)"
988
  msgstr ""
989
 
990
- #: i18n/strings.php:377 i18n/strings.php:441
991
  msgid "Note sent to customer"
992
  msgstr ""
993
 
994
- #: i18n/strings.php:376 i18n/strings.php:440
995
  msgid "Internal note"
996
  msgstr ""
997
 
998
- #: i18n/strings.php:407 i18n/strings.php:471
999
  msgid "Show notes from %(date)s"
1000
  msgstr ""
1001
 
1002
- #: i18n/strings.php:406 i18n/strings.php:470
1003
  msgid "%(count)s event"
1004
  msgid_plural "%(count)s events"
1005
  msgstr[0] ""
@@ -1014,7 +1013,7 @@ msgstr[5] ""
1014
  msgid "WeChat Pay"
1015
  msgstr ""
1016
 
1017
- #: i18n/strings.php:384 i18n/strings.php:448
1018
  msgid "Toggle menu"
1019
  msgstr ""
1020
 
@@ -1022,31 +1021,31 @@ msgstr ""
1022
  msgid "Return to Order #%(orderId)s"
1023
  msgstr ""
1024
 
1025
- #: i18n/strings.php:344
1026
  msgid "Our team is here for you. View our {{docsA}}support docs{{/docsA}} or {{ticketA}}open a support ticket{{/ticketA}}."
1027
  msgstr ""
1028
 
1029
- #: i18n/strings.php:335
1030
  msgid "Logging"
1031
  msgstr ""
1032
 
1033
- #: i18n/strings.php:362
1034
  msgid "No services configured. {{a}}Add a shipping service{{/a}}"
1035
  msgstr ""
1036
 
1037
- #: i18n/strings.php:360
1038
  msgid "Edit service settings"
1039
  msgstr ""
1040
 
1041
- #: i18n/strings.php:359
1042
  msgid "Request was made %s - check logs below or {{a}}edit service settings{{/a}}"
1043
  msgstr ""
1044
 
1045
- #: i18n/strings.php:358
1046
  msgid "Copy for support"
1047
  msgstr ""
1048
 
1049
- #: i18n/strings.php:357
1050
  msgid "Last %s entry. {{a}}Show full log{{/a}}"
1051
  msgid_plural "Last %s entries. {{a}}Show full log{{/a}}"
1052
  msgstr[0] ""
@@ -1056,11 +1055,11 @@ msgstr[3] ""
1056
  msgstr[4] ""
1057
  msgstr[5] ""
1058
 
1059
- #: i18n/strings.php:356
1060
  msgid "Log tail copied to clipboard"
1061
  msgstr ""
1062
 
1063
- #: i18n/strings.php:11 i18n/strings.php:414
1064
  msgid "You have unsaved changes. Are you sure you want to leave this page?"
1065
  msgstr ""
1066
 
@@ -1089,7 +1088,7 @@ msgid "USPS"
1089
  msgstr ""
1090
 
1091
  #: i18n/strings.php:5 i18n/strings.php:169 i18n/strings.php:295
1092
- #: i18n/strings.php:329 i18n/strings.php:410
1093
  msgid "Optional"
1094
  msgstr ""
1095
 
@@ -1244,8 +1243,8 @@ msgstr ""
1244
  msgid "Total"
1245
  msgstr ""
1246
 
1247
- #: classes/class-wc-connect-label-reports.php:170 i18n/strings.php:381
1248
- #: i18n/strings.php:445
1249
  msgid "Refund"
1250
  msgstr ""
1251
 
@@ -1285,23 +1284,23 @@ msgstr ""
1285
  msgid "Export CSV"
1286
  msgstr ""
1287
 
1288
- #: i18n/strings.php:341
1289
  msgid "Other Log"
1290
  msgstr ""
1291
 
1292
- #: i18n/strings.php:340
1293
  msgid "Taxes Log"
1294
  msgstr ""
1295
 
1296
- #: i18n/strings.php:339
1297
  msgid "Shipping Log"
1298
  msgstr ""
1299
 
1300
- #: i18n/strings.php:332
1301
  msgid "Display troubleshooting information on the Cart and Checkout pages."
1302
  msgstr ""
1303
 
1304
- #: i18n/strings.php:336
1305
  msgid "Write diagnostic messages to log files. Helpful when contacting support."
1306
  msgstr ""
1307
 
@@ -1345,15 +1344,15 @@ msgstr ""
1345
  msgid "Link a PayPal account"
1346
  msgstr ""
1347
 
1348
- #: i18n/strings.php:355
1349
  msgid "Refresh"
1350
  msgstr ""
1351
 
1352
- #: woocommerce-services.php:1230
1353
  msgid "Tracking number"
1354
  msgstr ""
1355
 
1356
- #: woocommerce-services.php:1229
1357
  msgid "Provider"
1358
  msgstr ""
1359
 
@@ -1445,7 +1444,7 @@ msgid "automated tax calculation and smoother payment setup"
1445
  msgstr ""
1446
 
1447
  #: classes/class-wc-connect-paypal-ec.php:323 i18n/strings.php:4
1448
- #: i18n/strings.php:168 i18n/strings.php:328 i18n/strings.php:409
1449
  msgid "Required"
1450
  msgstr ""
1451
 
@@ -1461,7 +1460,7 @@ msgstr ""
1461
  msgid "Dimensions"
1462
  msgstr ""
1463
 
1464
- #: i18n/strings.php:270 i18n/strings.php:397 i18n/strings.php:461
1465
  msgid "Close"
1466
  msgstr ""
1467
 
@@ -1576,7 +1575,7 @@ msgstr[5] ""
1576
  msgid "Unable to get your settings. Please refresh the page to try again."
1577
  msgstr ""
1578
 
1579
- #: i18n/strings.php:421
1580
  msgid "%(numSelected)d service selected"
1581
  msgid_plural "%(numSelected)d services selected"
1582
  msgstr[0] ""
@@ -1586,11 +1585,11 @@ msgstr[3] ""
1586
  msgstr[4] ""
1587
  msgstr[5] ""
1588
 
1589
- #: i18n/strings.php:419
1590
  msgid "Add and edit saved packages using the {{a}}Packaging Manager{{/a}}."
1591
  msgstr ""
1592
 
1593
- #: i18n/strings.php:374 i18n/strings.php:438
1594
  msgid "Tracking #: {{trackingLink/}}"
1595
  msgstr ""
1596
 
@@ -1630,7 +1629,7 @@ msgstr ""
1630
  msgid "Choose rate: %(pckg)s"
1631
  msgstr ""
1632
 
1633
- #: i18n/strings.php:386 i18n/strings.php:450
1634
  msgid "Refund label (-%(amount)s)"
1635
  msgstr ""
1636
 
@@ -1650,17 +1649,17 @@ msgstr ""
1650
  msgid "Ship in original packaging"
1651
  msgstr ""
1652
 
1653
- #: i18n/strings.php:365 i18n/strings.php:366 i18n/strings.php:429
1654
- #: i18n/strings.php:430
1655
  msgid "Request refund"
1656
  msgstr ""
1657
 
1658
- #: i18n/strings.php:368 i18n/strings.php:432
1659
  msgid "Reprint"
1660
  msgstr ""
1661
 
1662
- #: i18n/strings.php:58 i18n/strings.php:309 i18n/strings.php:396
1663
- #: i18n/strings.php:460
1664
  msgid "Paper size"
1665
  msgstr ""
1666
 
@@ -1676,11 +1675,11 @@ msgstr ""
1676
  msgid "Move item"
1677
  msgstr ""
1678
 
1679
- #: i18n/strings.php:425
1680
  msgid "Increase the rates calculated by the carrier to account for packaging and handling costs. You can also add a negative amount to save your customers money."
1681
  msgstr ""
1682
 
1683
- #: i18n/strings.php:475
1684
  msgid "Create new label"
1685
  msgstr ""
1686
 
@@ -1701,19 +1700,19 @@ msgid "Add a credit card"
1701
  msgstr ""
1702
 
1703
  #. translators: %d: Deleted Product ID
1704
- #: classes/class-wc-connect-compatibility-wc30.php:130
1705
  #: classes/class-wc-connect-compatibility-wc26.php:116
 
1706
  msgid "#%d - [Deleted product]"
1707
  msgstr ""
1708
 
1709
  #. translators: %1$d: Product ID, %2$s: Product Name
1710
- #: classes/class-wc-connect-compatibility-wc30.php:125
1711
  #: classes/class-wc-connect-compatibility-wc26.php:111
 
1712
  msgid "#%1$d - %2$s"
1713
  msgstr ""
1714
 
1715
  #. translators: %s Support url
1716
- #: woocommerce-services.php:1565
1717
  msgid "<a href=\"%s\">Support</a>"
1718
  msgstr ""
1719
 
@@ -1721,22 +1720,18 @@ msgstr ""
1721
  msgid "There was an error installing Jetpack. Please try installing it manually."
1722
  msgstr ""
1723
 
1724
- #: woocommerce-services.php:1066 woocommerce-services.php:1069
1725
- #: i18n/strings.php:43
1726
  msgid "Shipping Labels"
1727
  msgstr ""
1728
 
1729
- #. Author of the plugin
1730
- msgid "Automattic"
1731
- msgstr ""
1732
-
1733
  #. Plugin URI of the plugin
1734
  #. Author URI of the plugin
1735
  msgid "https://woocommerce.com/"
1736
  msgstr ""
1737
 
1738
- #: woocommerce-services.php:1515 woocommerce-services.php:1543
1739
- #: i18n/strings.php:143 i18n/strings.php:215
1740
  msgid "Phone"
1741
  msgstr ""
1742
 
@@ -1745,15 +1740,15 @@ msgstr ""
1745
  msgid "Connect"
1746
  msgstr ""
1747
 
1748
- #: i18n/strings.php:7 i18n/strings.php:171 i18n/strings.php:483
1749
  msgid "Save Settings"
1750
  msgstr ""
1751
 
1752
- #: i18n/strings.php:415
1753
  msgid "Your changes have been saved."
1754
  msgstr ""
1755
 
1756
- #: i18n/strings.php:416
1757
  msgid "There was a problem with one or more entries. Please fix the errors below and try saving again."
1758
  msgstr ""
1759
 
@@ -1761,11 +1756,11 @@ msgstr ""
1761
  msgid "Expand"
1762
  msgstr ""
1763
 
1764
- #: i18n/strings.php:411 i18n/strings.php:481
1765
  msgid "Dismiss"
1766
  msgstr ""
1767
 
1768
- #: i18n/strings.php:10 i18n/strings.php:413
1769
  msgid "You have unsaved changes."
1770
  msgstr ""
1771
 
@@ -1804,7 +1799,7 @@ msgstr ""
1804
  msgid "Unable to save your shipping packages. Please try again."
1805
  msgstr ""
1806
 
1807
- #: i18n/strings.php:41 i18n/strings.php:417
1808
  msgid "Save changes"
1809
  msgstr ""
1810
 
@@ -1816,32 +1811,32 @@ msgstr ""
1816
  msgid "Dimensions (L x W x H)"
1817
  msgstr ""
1818
 
1819
- #: i18n/strings.php:420
1820
  msgid "All services selected"
1821
  msgstr ""
1822
 
1823
- #: i18n/strings.php:37 i18n/strings.php:199 i18n/strings.php:422
1824
  msgid "Expand Services"
1825
  msgstr ""
1826
 
1827
- #: classes/class-wc-connect-label-reports.php:167 i18n/strings.php:400
1828
- #: i18n/strings.php:423 i18n/strings.php:464
1829
  msgid "Service"
1830
  msgstr ""
1831
 
1832
- #: i18n/strings.php:424
1833
  msgid "Price adjustment"
1834
  msgstr ""
1835
 
1836
- #: i18n/strings.php:418
1837
  msgid "Saved Packages"
1838
  msgstr ""
1839
 
1840
- #: woocommerce-services.php:1218 woocommerce-services.php:1225
1841
  msgid "Tracking"
1842
  msgstr ""
1843
 
1844
- #: i18n/strings.php:207 i18n/strings.php:473 i18n/strings.php:477
1845
  msgid "Create shipping label"
1846
  msgid_plural "Create shipping labels"
1847
  msgstr[0] ""
@@ -1918,51 +1913,51 @@ msgstr ""
1918
  msgid "The service and rate chosen by the customer at checkout is not available. Please choose another."
1919
  msgstr ""
1920
 
1921
- #: i18n/strings.php:387 i18n/strings.php:451
1922
  msgid "Request a refund"
1923
  msgstr ""
1924
 
1925
- #: i18n/strings.php:388 i18n/strings.php:452
1926
  msgid "You can request a refund for a shipping label that has not been used to ship a package. It will take at least %(days)s days to process."
1927
  msgstr ""
1928
 
1929
- #: i18n/strings.php:389 i18n/strings.php:453
1930
  msgid "Purchase date"
1931
  msgstr ""
1932
 
1933
- #: i18n/strings.php:390 i18n/strings.php:454
1934
  msgid "Amount eligible for refund"
1935
  msgstr ""
1936
 
1937
- #: i18n/strings.php:369 i18n/strings.php:393 i18n/strings.php:433
1938
- #: i18n/strings.php:457
1939
  msgid "Reprint shipping label"
1940
  msgstr ""
1941
 
1942
- #: i18n/strings.php:394 i18n/strings.php:458
1943
  msgid "If there was a printing error when you purchased the label, you can print it again."
1944
  msgstr ""
1945
 
1946
- #: i18n/strings.php:395 i18n/strings.php:459
1947
  msgid "NOTE: If you already used the label in a package, printing and using it again is a violation of our terms of service and may result in criminal charges."
1948
  msgstr ""
1949
 
1950
- #: i18n/strings.php:325 i18n/strings.php:392 i18n/strings.php:456
1951
  msgid "Print"
1952
  msgstr ""
1953
 
1954
  #: i18n/strings.php:16 i18n/strings.php:82 i18n/strings.php:122
1955
  #: i18n/strings.php:158 i18n/strings.php:167 i18n/strings.php:178
1956
- #: i18n/strings.php:263 i18n/strings.php:385 i18n/strings.php:391
1957
- #: i18n/strings.php:449 i18n/strings.php:455
1958
  msgid "Cancel"
1959
  msgstr ""
1960
 
1961
- #: i18n/strings.php:403 i18n/strings.php:467
1962
  msgid "N/A"
1963
  msgstr ""
1964
 
1965
- #: i18n/strings.php:8 i18n/strings.php:412 i18n/strings.php:472
1966
  msgid "More"
1967
  msgstr ""
1968
 
@@ -2005,7 +2000,7 @@ msgstr ""
2005
  msgid "Packaging"
2006
  msgstr ""
2007
 
2008
- #: woocommerce-services.php:1598
2009
  msgid "Section not loading? Visit the <a href=\"%s\">status page</a> for troubleshooting steps."
2010
  msgstr ""
2011
 
@@ -2017,7 +2012,7 @@ msgstr ""
2017
  msgid "Note: Jetpack is connected, but development mode is also enabled on this site. Please disable development mode."
2018
  msgstr ""
2019
 
2020
- #: woocommerce-services.php:1451
2021
  msgid "Shipping Label"
2022
  msgstr ""
2023
 
@@ -2074,24 +2069,24 @@ msgctxt "A service with an unknown title and unknown method_title"
2074
  msgid "Unknown"
2075
  msgstr ""
2076
 
2077
- #: i18n/strings.php:342
2078
  msgid "Support"
2079
  msgstr ""
2080
 
2081
- #: i18n/strings.php:330 i18n/strings.php:331
2082
  msgid "Debug"
2083
  msgstr ""
2084
 
2085
- #: i18n/strings.php:361
2086
  msgid "Services"
2087
  msgstr ""
2088
 
2089
- #: i18n/strings.php:345
2090
  msgctxt "This section displays the overall health of WooCommerce Shipping & Tax and the things it depends on"
2091
  msgid "Health"
2092
  msgstr ""
2093
 
2094
- #: i18n/strings.php:343
2095
  msgid "Need help?"
2096
  msgstr ""
2097
 
@@ -2099,11 +2094,11 @@ msgstr ""
2099
  msgid "Log is empty"
2100
  msgstr ""
2101
 
2102
- #: i18n/strings.php:334 i18n/strings.php:338
2103
  msgid "Disabled"
2104
  msgstr ""
2105
 
2106
- #: i18n/strings.php:333 i18n/strings.php:337
2107
  msgid "Enabled"
2108
  msgstr ""
2109
 
@@ -2127,27 +2122,27 @@ msgstr ""
2127
  msgid "Setup for this service has not yet been completed"
2128
  msgstr ""
2129
 
2130
- #: i18n/strings.php:350
2131
  msgid "Service data is up-to-date"
2132
  msgstr ""
2133
 
2134
- #: i18n/strings.php:349
2135
  msgid "Service data was found, but is more than one day old"
2136
  msgstr ""
2137
 
2138
- #: i18n/strings.php:348
2139
  msgid "Service data was found, but is more than three days old"
2140
  msgstr ""
2141
 
2142
- #: i18n/strings.php:351
2143
  msgid "Service data found, but may be out of date"
2144
  msgstr ""
2145
 
2146
- #: i18n/strings.php:352
2147
  msgid "No service data available"
2148
  msgstr ""
2149
 
2150
- #: i18n/strings.php:347
2151
  msgid "Jetpack"
2152
  msgstr ""
2153
 
@@ -2171,7 +2166,8 @@ msgstr ""
2171
  msgid "Please install and activate the Jetpack plugin, version %s or higher"
2172
  msgstr ""
2173
 
2174
- #: i18n/strings.php:346
 
2175
  msgid "WooCommerce"
2176
  msgstr ""
2177
 
@@ -2187,7 +2183,7 @@ msgstr ""
2187
  msgid "WooCommerce %1$s or higher is required (You are running %2$s)"
2188
  msgstr ""
2189
 
2190
- #: classes/class-wc-connect-error-notice.php:104 woocommerce-services.php:1634
2191
  msgid "Dismiss this notice"
2192
  msgstr ""
2193
 
51
  msgid "Live rates at checkout"
52
  msgstr ""
53
 
54
+ #: i18n/strings.php:403
55
  msgid "Last updated %s."
56
  msgstr ""
57
 
206
  msgid "WooCommerce Helper auth is missing"
207
  msgstr ""
208
 
209
+ #: i18n/strings.php:331 i18n/strings.php:422
210
  msgid "USPS labels without tracking are not eligible for refund."
211
  msgstr ""
212
 
226
  msgid "Loading"
227
  msgstr ""
228
 
229
+ #: i18n/strings.php:402
230
  msgid "WooCommerce Shipping & Tax Data"
231
  msgstr ""
232
 
233
+ #: i18n/strings.php:339 i18n/strings.php:430
234
  msgid "Print customs form"
235
  msgstr ""
236
 
277
  msgstr ""
278
 
279
  #. Plugin Name of the plugin
 
280
  #: classes/class-wc-connect-settings-pages.php:123
281
+ #: classes/class-wc-connect-privacy.php:36
282
  msgid "WooCommerce Shipping & Tax"
283
  msgstr ""
284
 
411
  msgid "Validating address\\u2026"
412
  msgstr ""
413
 
414
+ #: i18n/strings.php:326 i18n/strings.php:372 i18n/strings.php:463
415
  msgid "Purchasing\\u2026"
416
  msgstr ""
417
 
423
  msgid "Package %(index)s \\u2013 %(title)s"
424
  msgstr ""
425
 
426
+ #: i18n/strings.php:6 i18n/strings.php:170 i18n/strings.php:375
427
  msgid "Saving\\u2026"
428
  msgstr ""
429
 
437
  msgid "Your tax rates and settings will be automatically configured for %1$s, %2$s. <a href=\"https://docs.woocommerce.com/document/setting-up-taxes-in-woocommerce/#section-12\">Learn more about setting up tax rates for additional nexuses</a>"
438
  msgstr ""
439
 
440
+ #: i18n/strings.php:419
441
  msgid "%(itemCount)d item is ready to be fulfilled"
442
  msgid_plural "%(itemCount)d items are ready to be fulfilled"
443
  msgstr[0] ""
447
  msgstr[4] ""
448
  msgstr[5] ""
449
 
450
+ #: i18n/strings.php:418
451
  msgid "%(itemCount)d item was fulfilled on {{span}}%(createdDate)s{{/span}}"
452
  msgid_plural "%(itemCount)d items were fulfilled on {{span}}%(createdDate)s{{/span}}"
453
  msgstr[0] ""
457
  msgstr[4] ""
458
  msgstr[5] ""
459
 
460
+ #: i18n/strings.php:338 i18n/strings.php:429
461
  msgid "Schedule a pickup"
462
  msgstr ""
463
 
464
+ #: i18n/strings.php:334 i18n/strings.php:425
465
  msgid "Label images older than 180 days are deleted by our technology partners for general security and data privacy concerns."
466
  msgstr ""
467
 
468
+ #: i18n/strings.php:330 i18n/strings.php:421
469
  msgid "Labels older than 30 days cannot be refunded."
470
  msgstr ""
471
 
486
  msgid "WooCommerce Shipping & Tax requires the WooCommerce plugin to be installed and active. You can download %s here."
487
  msgstr ""
488
 
489
+ #: i18n/strings.php:466
490
  msgid "No tracking information available at this time"
491
  msgstr ""
492
 
493
+ #: i18n/strings.php:417
494
  msgid "Connection error: unable to create label at this time"
495
  msgstr ""
496
 
497
+ #: i18n/strings.php:413 i18n/strings.php:415
498
  msgid "Track Package"
499
  msgid_plural "Track Packages"
500
  msgstr[0] ""
504
  msgstr[4] ""
505
  msgstr[5] ""
506
 
507
+ #: i18n/strings.php:329
508
  msgid "Which package would you like to track?"
509
  msgstr ""
510
 
511
+ #: i18n/strings.php:340 i18n/strings.php:371 i18n/strings.php:431
512
+ #: i18n/strings.php:462
513
  msgid "%(service)s label (#%(labelIndex)d)"
514
  msgstr ""
515
 
605
  msgid "0.0"
606
  msgstr ""
607
 
608
+ #: woocommerce-services.php:1453
609
  msgid "Shipment Tracking"
610
  msgstr ""
611
 
617
  msgid "Customs information incomplete"
618
  msgstr ""
619
 
620
+ #: woocommerce-services.php:1496
621
  msgid "Packing Log:"
622
  msgstr ""
623
 
624
+ #: woocommerce-services.php:1483
625
  msgid "Chosen Rate:"
626
  msgstr ""
627
 
628
+ #: woocommerce-services.php:1479
629
  msgid "Shipping Method ID:"
630
  msgstr ""
631
 
632
+ #: woocommerce-services.php:1475
633
  msgid "Shipping Method Name:"
634
  msgstr ""
635
 
636
+ #: woocommerce-services.php:1459
637
  msgid "Shipping Debug"
638
  msgstr ""
639
 
641
  msgid "<strong>\"%2$s\" is missing weight, length, width, or height.</strong><br />Shipping rates cannot be calculated. <a href=\"%1$s\">Enter dimensions and weight for %2$s</a> so your customers can purchase this item."
642
  msgstr ""
643
 
644
+ #: classes/class-wc-connect-api-client.php:588
645
  msgid "Unable to send request to WooCommerce Shipping & Tax server. The timestamp generated for the signature is too old."
646
  msgstr ""
647
 
648
+ #: classes/class-wc-connect-api-client.php:527
649
  msgid "Unable to send request to WooCommerce Shipping & Tax server. Jetpack Token is malformed."
650
  msgstr ""
651
 
652
+ #: classes/class-wc-connect-api-client.php:520
653
  msgid "Unable to send request to WooCommerce Shipping & Tax server. Jetpack Token is missing"
654
  msgstr ""
655
 
683
  msgstr ""
684
 
685
  #: classes/class-wc-connect-api-client.php:160
 
686
  msgid "No shipping rate could be calculated. No items in the package are shippable."
687
  msgstr ""
688
 
831
  msgid "%(message)s. Please modify the address and try again."
832
  msgstr ""
833
 
834
+ #: i18n/strings.php:337 i18n/strings.php:428
835
  msgid "View details"
836
  msgstr ""
837
 
838
+ #: i18n/strings.php:369 i18n/strings.php:460
839
  msgid "Items"
840
  msgstr ""
841
 
842
+ #: i18n/strings.php:368 i18n/strings.php:459
843
  msgid "Package"
844
  msgstr ""
845
 
846
+ #: i18n/strings.php:366 i18n/strings.php:457
847
  msgid "Receipt"
848
  msgstr ""
849
 
850
+ #: i18n/strings.php:365 i18n/strings.php:456
851
  msgid "Label #%(labelIndex)s details"
852
  msgstr ""
853
 
962
  msgid "Activate"
963
  msgstr ""
964
 
965
+ #: i18n/strings.php:342 i18n/strings.php:433
966
  msgid "No activity yet"
967
  msgstr ""
968
 
969
+ #: i18n/strings.php:350 i18n/strings.php:441
970
  msgid "Note"
971
  msgstr ""
972
 
973
+ #: i18n/strings.php:349 i18n/strings.php:440
974
  msgid "Refunded %(amount)s"
975
  msgstr ""
976
 
977
+ #: i18n/strings.php:347 i18n/strings.php:438
978
  msgid "%(service)s label (#%(labelNum)d) refund rejected"
979
  msgstr ""
980
 
981
+ #: i18n/strings.php:346 i18n/strings.php:437
982
  msgid "%(service)s label (#%(labelNum)d) refunded (%(amount)s)"
983
  msgstr ""
984
 
985
+ #: i18n/strings.php:345 i18n/strings.php:436
986
  msgid "%(service)s label (#%(labelNum)d) refund requested (%(amount)s)"
987
  msgstr ""
988
 
989
+ #: i18n/strings.php:344 i18n/strings.php:435
990
  msgid "Note sent to customer"
991
  msgstr ""
992
 
993
+ #: i18n/strings.php:343 i18n/strings.php:434
994
  msgid "Internal note"
995
  msgstr ""
996
 
997
+ #: i18n/strings.php:374 i18n/strings.php:465
998
  msgid "Show notes from %(date)s"
999
  msgstr ""
1000
 
1001
+ #: i18n/strings.php:373 i18n/strings.php:464
1002
  msgid "%(count)s event"
1003
  msgid_plural "%(count)s events"
1004
  msgstr[0] ""
1013
  msgid "WeChat Pay"
1014
  msgstr ""
1015
 
1016
+ #: i18n/strings.php:351 i18n/strings.php:442
1017
  msgid "Toggle menu"
1018
  msgstr ""
1019
 
1021
  msgid "Return to Order #%(orderId)s"
1022
  msgstr ""
1023
 
1024
+ #: i18n/strings.php:393
1025
  msgid "Our team is here for you. View our {{docsA}}support docs{{/docsA}} or {{ticketA}}open a support ticket{{/ticketA}}."
1026
  msgstr ""
1027
 
1028
+ #: i18n/strings.php:384
1029
  msgid "Logging"
1030
  msgstr ""
1031
 
1032
+ #: i18n/strings.php:411
1033
  msgid "No services configured. {{a}}Add a shipping service{{/a}}"
1034
  msgstr ""
1035
 
1036
+ #: i18n/strings.php:409
1037
  msgid "Edit service settings"
1038
  msgstr ""
1039
 
1040
+ #: i18n/strings.php:408
1041
  msgid "Request was made %s - check logs below or {{a}}edit service settings{{/a}}"
1042
  msgstr ""
1043
 
1044
+ #: i18n/strings.php:407
1045
  msgid "Copy for support"
1046
  msgstr ""
1047
 
1048
+ #: i18n/strings.php:406
1049
  msgid "Last %s entry. {{a}}Show full log{{/a}}"
1050
  msgid_plural "Last %s entries. {{a}}Show full log{{/a}}"
1051
  msgstr[0] ""
1055
  msgstr[4] ""
1056
  msgstr[5] ""
1057
 
1058
+ #: i18n/strings.php:405
1059
  msgid "Log tail copied to clipboard"
1060
  msgstr ""
1061
 
1062
+ #: i18n/strings.php:11 i18n/strings.php:472
1063
  msgid "You have unsaved changes. Are you sure you want to leave this page?"
1064
  msgstr ""
1065
 
1088
  msgstr ""
1089
 
1090
  #: i18n/strings.php:5 i18n/strings.php:169 i18n/strings.php:295
1091
+ #: i18n/strings.php:378 i18n/strings.php:468
1092
  msgid "Optional"
1093
  msgstr ""
1094
 
1243
  msgid "Total"
1244
  msgstr ""
1245
 
1246
+ #: classes/class-wc-connect-label-reports.php:170 i18n/strings.php:348
1247
+ #: i18n/strings.php:439
1248
  msgid "Refund"
1249
  msgstr ""
1250
 
1284
  msgid "Export CSV"
1285
  msgstr ""
1286
 
1287
+ #: i18n/strings.php:390
1288
  msgid "Other Log"
1289
  msgstr ""
1290
 
1291
+ #: i18n/strings.php:389
1292
  msgid "Taxes Log"
1293
  msgstr ""
1294
 
1295
+ #: i18n/strings.php:388
1296
  msgid "Shipping Log"
1297
  msgstr ""
1298
 
1299
+ #: i18n/strings.php:381
1300
  msgid "Display troubleshooting information on the Cart and Checkout pages."
1301
  msgstr ""
1302
 
1303
+ #: i18n/strings.php:385
1304
  msgid "Write diagnostic messages to log files. Helpful when contacting support."
1305
  msgstr ""
1306
 
1344
  msgid "Link a PayPal account"
1345
  msgstr ""
1346
 
1347
+ #: i18n/strings.php:404
1348
  msgid "Refresh"
1349
  msgstr ""
1350
 
1351
+ #: woocommerce-services.php:1234
1352
  msgid "Tracking number"
1353
  msgstr ""
1354
 
1355
+ #: woocommerce-services.php:1233
1356
  msgid "Provider"
1357
  msgstr ""
1358
 
1444
  msgstr ""
1445
 
1446
  #: classes/class-wc-connect-paypal-ec.php:323 i18n/strings.php:4
1447
+ #: i18n/strings.php:168 i18n/strings.php:377 i18n/strings.php:467
1448
  msgid "Required"
1449
  msgstr ""
1450
 
1460
  msgid "Dimensions"
1461
  msgstr ""
1462
 
1463
+ #: i18n/strings.php:270 i18n/strings.php:364 i18n/strings.php:455
1464
  msgid "Close"
1465
  msgstr ""
1466
 
1575
  msgid "Unable to get your settings. Please refresh the page to try again."
1576
  msgstr ""
1577
 
1578
+ #: i18n/strings.php:479
1579
  msgid "%(numSelected)d service selected"
1580
  msgid_plural "%(numSelected)d services selected"
1581
  msgstr[0] ""
1585
  msgstr[4] ""
1586
  msgstr[5] ""
1587
 
1588
+ #: i18n/strings.php:477
1589
  msgid "Add and edit saved packages using the {{a}}Packaging Manager{{/a}}."
1590
  msgstr ""
1591
 
1592
+ #: i18n/strings.php:341 i18n/strings.php:432
1593
  msgid "Tracking #: {{trackingLink/}}"
1594
  msgstr ""
1595
 
1629
  msgid "Choose rate: %(pckg)s"
1630
  msgstr ""
1631
 
1632
+ #: i18n/strings.php:353 i18n/strings.php:444
1633
  msgid "Refund label (-%(amount)s)"
1634
  msgstr ""
1635
 
1649
  msgid "Ship in original packaging"
1650
  msgstr ""
1651
 
1652
+ #: i18n/strings.php:332 i18n/strings.php:333 i18n/strings.php:423
1653
+ #: i18n/strings.php:424
1654
  msgid "Request refund"
1655
  msgstr ""
1656
 
1657
+ #: i18n/strings.php:335 i18n/strings.php:426
1658
  msgid "Reprint"
1659
  msgstr ""
1660
 
1661
+ #: i18n/strings.php:58 i18n/strings.php:309 i18n/strings.php:363
1662
+ #: i18n/strings.php:454
1663
  msgid "Paper size"
1664
  msgstr ""
1665
 
1675
  msgid "Move item"
1676
  msgstr ""
1677
 
1678
+ #: i18n/strings.php:483
1679
  msgid "Increase the rates calculated by the carrier to account for packaging and handling costs. You can also add a negative amount to save your customers money."
1680
  msgstr ""
1681
 
1682
+ #: i18n/strings.php:414
1683
  msgid "Create new label"
1684
  msgstr ""
1685
 
1700
  msgstr ""
1701
 
1702
  #. translators: %d: Deleted Product ID
 
1703
  #: classes/class-wc-connect-compatibility-wc26.php:116
1704
+ #: classes/class-wc-connect-compatibility-wc30.php:130
1705
  msgid "#%d - [Deleted product]"
1706
  msgstr ""
1707
 
1708
  #. translators: %1$d: Product ID, %2$s: Product Name
 
1709
  #: classes/class-wc-connect-compatibility-wc26.php:111
1710
+ #: classes/class-wc-connect-compatibility-wc30.php:125
1711
  msgid "#%1$d - %2$s"
1712
  msgstr ""
1713
 
1714
  #. translators: %s Support url
1715
+ #: woocommerce-services.php:1569
1716
  msgid "<a href=\"%s\">Support</a>"
1717
  msgstr ""
1718
 
1720
  msgid "There was an error installing Jetpack. Please try installing it manually."
1721
  msgstr ""
1722
 
1723
+ #: i18n/strings.php:43 woocommerce-services.php:1066
1724
+ #: woocommerce-services.php:1069
1725
  msgid "Shipping Labels"
1726
  msgstr ""
1727
 
 
 
 
 
1728
  #. Plugin URI of the plugin
1729
  #. Author URI of the plugin
1730
  msgid "https://woocommerce.com/"
1731
  msgstr ""
1732
 
1733
+ #: i18n/strings.php:143 i18n/strings.php:215 woocommerce-services.php:1519
1734
+ #: woocommerce-services.php:1547
1735
  msgid "Phone"
1736
  msgstr ""
1737
 
1740
  msgid "Connect"
1741
  msgstr ""
1742
 
1743
+ #: i18n/strings.php:7 i18n/strings.php:171 i18n/strings.php:376
1744
  msgid "Save Settings"
1745
  msgstr ""
1746
 
1747
+ #: i18n/strings.php:473
1748
  msgid "Your changes have been saved."
1749
  msgstr ""
1750
 
1751
+ #: i18n/strings.php:474
1752
  msgid "There was a problem with one or more entries. Please fix the errors below and try saving again."
1753
  msgstr ""
1754
 
1756
  msgid "Expand"
1757
  msgstr ""
1758
 
1759
+ #: i18n/strings.php:328 i18n/strings.php:469
1760
  msgid "Dismiss"
1761
  msgstr ""
1762
 
1763
+ #: i18n/strings.php:10 i18n/strings.php:471
1764
  msgid "You have unsaved changes."
1765
  msgstr ""
1766
 
1799
  msgid "Unable to save your shipping packages. Please try again."
1800
  msgstr ""
1801
 
1802
+ #: i18n/strings.php:41 i18n/strings.php:475
1803
  msgid "Save changes"
1804
  msgstr ""
1805
 
1811
  msgid "Dimensions (L x W x H)"
1812
  msgstr ""
1813
 
1814
+ #: i18n/strings.php:478
1815
  msgid "All services selected"
1816
  msgstr ""
1817
 
1818
+ #: i18n/strings.php:37 i18n/strings.php:199 i18n/strings.php:480
1819
  msgid "Expand Services"
1820
  msgstr ""
1821
 
1822
+ #: classes/class-wc-connect-label-reports.php:167 i18n/strings.php:367
1823
+ #: i18n/strings.php:458 i18n/strings.php:481
1824
  msgid "Service"
1825
  msgstr ""
1826
 
1827
+ #: i18n/strings.php:482
1828
  msgid "Price adjustment"
1829
  msgstr ""
1830
 
1831
+ #: i18n/strings.php:476
1832
  msgid "Saved Packages"
1833
  msgstr ""
1834
 
1835
+ #: woocommerce-services.php:1222 woocommerce-services.php:1229
1836
  msgid "Tracking"
1837
  msgstr ""
1838
 
1839
+ #: i18n/strings.php:207 i18n/strings.php:412 i18n/strings.php:416
1840
  msgid "Create shipping label"
1841
  msgid_plural "Create shipping labels"
1842
  msgstr[0] ""
1913
  msgid "The service and rate chosen by the customer at checkout is not available. Please choose another."
1914
  msgstr ""
1915
 
1916
+ #: i18n/strings.php:354 i18n/strings.php:445
1917
  msgid "Request a refund"
1918
  msgstr ""
1919
 
1920
+ #: i18n/strings.php:355 i18n/strings.php:446
1921
  msgid "You can request a refund for a shipping label that has not been used to ship a package. It will take at least %(days)s days to process."
1922
  msgstr ""
1923
 
1924
+ #: i18n/strings.php:356 i18n/strings.php:447
1925
  msgid "Purchase date"
1926
  msgstr ""
1927
 
1928
+ #: i18n/strings.php:357 i18n/strings.php:448
1929
  msgid "Amount eligible for refund"
1930
  msgstr ""
1931
 
1932
+ #: i18n/strings.php:336 i18n/strings.php:360 i18n/strings.php:427
1933
+ #: i18n/strings.php:451
1934
  msgid "Reprint shipping label"
1935
  msgstr ""
1936
 
1937
+ #: i18n/strings.php:361 i18n/strings.php:452
1938
  msgid "If there was a printing error when you purchased the label, you can print it again."
1939
  msgstr ""
1940
 
1941
+ #: i18n/strings.php:362 i18n/strings.php:453
1942
  msgid "NOTE: If you already used the label in a package, printing and using it again is a violation of our terms of service and may result in criminal charges."
1943
  msgstr ""
1944
 
1945
+ #: i18n/strings.php:325 i18n/strings.php:359 i18n/strings.php:450
1946
  msgid "Print"
1947
  msgstr ""
1948
 
1949
  #: i18n/strings.php:16 i18n/strings.php:82 i18n/strings.php:122
1950
  #: i18n/strings.php:158 i18n/strings.php:167 i18n/strings.php:178
1951
+ #: i18n/strings.php:263 i18n/strings.php:352 i18n/strings.php:358
1952
+ #: i18n/strings.php:443 i18n/strings.php:449
1953
  msgid "Cancel"
1954
  msgstr ""
1955
 
1956
+ #: i18n/strings.php:370 i18n/strings.php:461
1957
  msgid "N/A"
1958
  msgstr ""
1959
 
1960
+ #: i18n/strings.php:8 i18n/strings.php:420 i18n/strings.php:470
1961
  msgid "More"
1962
  msgstr ""
1963
 
2000
  msgid "Packaging"
2001
  msgstr ""
2002
 
2003
+ #: woocommerce-services.php:1602
2004
  msgid "Section not loading? Visit the <a href=\"%s\">status page</a> for troubleshooting steps."
2005
  msgstr ""
2006
 
2012
  msgid "Note: Jetpack is connected, but development mode is also enabled on this site. Please disable development mode."
2013
  msgstr ""
2014
 
2015
+ #: woocommerce-services.php:1455
2016
  msgid "Shipping Label"
2017
  msgstr ""
2018
 
2069
  msgid "Unknown"
2070
  msgstr ""
2071
 
2072
+ #: i18n/strings.php:391
2073
  msgid "Support"
2074
  msgstr ""
2075
 
2076
+ #: i18n/strings.php:379 i18n/strings.php:380
2077
  msgid "Debug"
2078
  msgstr ""
2079
 
2080
+ #: i18n/strings.php:410
2081
  msgid "Services"
2082
  msgstr ""
2083
 
2084
+ #: i18n/strings.php:394
2085
  msgctxt "This section displays the overall health of WooCommerce Shipping & Tax and the things it depends on"
2086
  msgid "Health"
2087
  msgstr ""
2088
 
2089
+ #: i18n/strings.php:392
2090
  msgid "Need help?"
2091
  msgstr ""
2092
 
2094
  msgid "Log is empty"
2095
  msgstr ""
2096
 
2097
+ #: i18n/strings.php:383 i18n/strings.php:387
2098
  msgid "Disabled"
2099
  msgstr ""
2100
 
2101
+ #: i18n/strings.php:382 i18n/strings.php:386
2102
  msgid "Enabled"
2103
  msgstr ""
2104
 
2122
  msgid "Setup for this service has not yet been completed"
2123
  msgstr ""
2124
 
2125
+ #: i18n/strings.php:399
2126
  msgid "Service data is up-to-date"
2127
  msgstr ""
2128
 
2129
+ #: i18n/strings.php:398
2130
  msgid "Service data was found, but is more than one day old"
2131
  msgstr ""
2132
 
2133
+ #: i18n/strings.php:397
2134
  msgid "Service data was found, but is more than three days old"
2135
  msgstr ""
2136
 
2137
+ #: i18n/strings.php:400
2138
  msgid "Service data found, but may be out of date"
2139
  msgstr ""
2140
 
2141
+ #: i18n/strings.php:401
2142
  msgid "No service data available"
2143
  msgstr ""
2144
 
2145
+ #: i18n/strings.php:396
2146
  msgid "Jetpack"
2147
  msgstr ""
2148
 
2166
  msgid "Please install and activate the Jetpack plugin, version %s or higher"
2167
  msgstr ""
2168
 
2169
+ #. Author of the plugin
2170
+ #: i18n/strings.php:395
2171
  msgid "WooCommerce"
2172
  msgstr ""
2173
 
2183
  msgid "WooCommerce %1$s or higher is required (You are running %2$s)"
2184
  msgstr ""
2185
 
2186
+ #: classes/class-wc-connect-error-notice.php:104 woocommerce-services.php:1638
2187
  msgid "Dismiss this notice"
2188
  msgstr ""
2189
 
i18n/languages/woocommerce-services-es_ES.json CHANGED
@@ -1 +1 @@
1
- {"0":[null,"0"],"":{"po-revision-date":"2021-03-18 08:35:19+0000","mime-version":"1.0","content-type":"text/plain; charset=UTF-8","content-transfer-encoding":"8bit","plural-forms":"nplurals=2; plural=n != 1;","x-generator":"GlotPress/3.0.0-alpha.2","language":"es","project-id-version":"Plugins - WooCommerce Shipping &amp; Tax - Stable (latest release)"},"Features":[null,"Características"],"Carrier":[null,"Transportista"],"Express delivery from the experts in international shipping":[null,"Entrega exprés de los expertos en envíos internacionales"],"Live rates for %(carrierName)s at checkout":[null,"Tarifas en vivo de %(carrierName)s al finalizar la compra"],"Ship with the largest delivery network in the United States":[null,"Envía con la mayor red de entrega de Estados Unidos"],"Discounted %(carrierName)s shipping labels":[null,"Etiquetas de envío con descuento de %(carrierName)s"],"To be displayed at checkout, this carrier must be added as a shipping method to selected shipping zones":[null,"Para que se muestre al finalizar la compra, este transportista tiene que ser añadido como método de envío a las zonas de envío seleccionadas"],"Add to shipping zones":[null,"Añadir a las zonas de envío"],"Show live rates directly on your store - never under or overcharge for shipping again":[null,"Muestra las tarifas en vivo directamente en tu tienda - nunca vuelvas a cobrar de menos o de más en el envío"],"Live rates at checkout":[null,"Tarifas en vivo al finalizar la compra"],"Last updated %s.":[null,"Última actualización %s."],"At least one of the new predefined packages has the same name as existing packages.":[null,"Al menos uno de los nuevos paquetes predefinidos tiene el mismo nombre que los paquetes existentes."],"The new predefined package names are not unique.":[null,"Los nombres del paquete predefinido no son únicos."],"At least one of the new custom packages has the same name as existing packages.":[null,"Al menos uno de los nuevos paquetes personalizados tiene el mismo nombre que los paquetes existentes."],"The new custom package names are not unique.":[null,"Los nombres del nuevo paquete personalizado no son únicos."],"Go to shipping zones":[null,"Ir a las zonas de envío"],"Add DHL Express as a shipping method to selected shipping zones to display live rates at checkout.":[null,"Añade DHL Express como un método de envío para zonas de envío seleccionadas para mostrar las tarifas en vivo al finalizar la compra."],"DHL Express live rates are now available":[null,"Ahora están disponibles las tarifas en vivo de DHL Express"],"State %1$s is invalid for %2$s.":[null,"La provincia %1$s no es válida para %2$s."],"%1$s %2$s is invalid for %3$s.":[null,"%1$s %2$s no es válido para %3$s."],"A %1$s is required for %2$s.":[null,"Se necesita un %1$s para %2$s."],"A country is required":[null,"Se necesita un país"],"Your store is over the limit for rate calls this month and your account will be charged for overages. To prevent future overage charges you can upgrade your plan.":[null,"Tu tienda ha superado este mes el límite para la tarifa de llamadas y se cobrará el exceso en tu cuenta. Para evitar futuros cargos por exceso, puedes actualizar tu plan."],"There was an error trying to activate your subscription.":[null,"Ha habido un error al intentar activar tu suscripción."],"Your subscription was succesfully activated.":[null,"Tu suscripción se ha activado correctamente."],"Manage":[null,"Gestionar"],"Usage":[null,"Uso"],"View and manage your subscription usage":[null,"Ver y gestionar el uso de tu suscripción"],"Shipping method":[null,"Método de envío"],"The subscription is already active.":[null,"La suscripción ya está activa."],"Set up your own carrier account to compare rates and print labels from multiple carriers in WooCommerce Shipping. Learn more about adding {{a}}carrier accounts{{/a}}.":[null,"Configura tu propia cuenta de transportista para comparar tarifas e imprimir etiquetas de varios transportistas en WooCommerce Shipping. Aprende más sobre cómo añadir {{a}}cuentas de transportista{{{/a}}."],"There was an error connecting to your %(carrierName)s account. Please check that all of the information entered matches your %(carrierName)s account and try to connect again.":[null,"Ha habido un error al conectar con tu cuenta %(carrierName)s. Por favor, comprueba que toda la información introducida coincide con la de tu cuenta %(carrierName)s e intenta conectar de nuevo."],"Your carrier account was connected successfully.":[null,"Tu cuenta de transportista ha sido conectada correctamente."],"The date must be a valid date in the format YYYY-MM-DD":[null,"La fecha debe ser una fecha válida en el formato AAAA-MM-DD"],"The invoice number needs to be 9 or 13 letters and digits in length":[null,"El número de la factura tiene que ser de 9 o 13 letras y dígitos de longitud"],"The company website format is not valid":[null,"El formato de la web de la empresa no es válido"],"The email format is not valid":[null,"El formato del correo electrónico no es válido"],"The ZIP/Postal code needs to be 5 digits in length":[null,"El código postal tiene que ser de 5 dígitos de longitud"],"The phone number needs to be 10 digits in length":[null,"El número de teléfono tiene que ser de 10 dígitos de longitud"],"The UPS account number needs to be 6 letters and digits in length":[null,"El número de la cuenta de UPS tiene que ser de 6 letras y dígitos de longitud"],"This will remove the connection with %(carrier_name)s. All of your %(carrier_name)s account information will be deleted and you won\\u2019t see %(carrier_name)s rates.":[null,"Esto eliminará la conexión con %(carrier_name)s. Toda la información de tu cuenta %(carrier_name)s será borrada y no verás las tarifas de %(carrier_name)s."],"Disconnect your %(carrier_name)s account":[null,"Desconectar tu cuenta %(carrier_name)s"],"There was an error trying to disconnect your carrier account":[null,"Ha habido un error al intentar desconectar tu cuenta de transportista"],"Your carrier account was disconnected succesfully.":[null,"Tu cuenta de transportista ha sido desconectada correctamente."],"DHL Express":[null,"DHL Express"],"Powered by WooCommerce Tax. If automated taxes are enabled, you'll need to enter prices exclusive of tax.":[null,"Funciona con WooCommerce Tax. Si están activados los impuestos automáticos, tendrás que introducir los precios sin impuestos."],"WooCommerce Helper auth is missing":[null,"Falta la identificación de WooCommerce Helper"],"USPS labels without tracking are not eligible for refund.":[null,"Las etiquetas de USPS sin seguimiento no son elegibles para reembolso."],"General Information":[null,"Información general"],"Connect your %(carrierName)s account":[null,"Conecta tu cuenta de %(carrierName)s"],"%(carrierName)s not supported.":[null,"%(carrierName)s no es compatible."],"Loading":[null,"Cargando"],"WooCommerce Shipping & Tax Data":[null,"WooCommerce Shipping & Tax Data"],"Print customs form":[null,"Imprimir impreso de aduanas"],"Test your WooCommerce Shipping & Tax connection":[null,"Prueba tu conexión a WooCommerce Shipping & Tax"],"WooCommerce Shipping & Tax Status":[null,"Estado de WooCommerce Shipping & Tax"],"Connect your store to activate WooCommerce Shipping & Tax":[null,"Conecta tu tienda para usar WooCommerce Shipping & Tax"],"Connect Jetpack to activate WooCommerce Shipping & Tax":[null,"Conecta Jetpack para activar WooCommerce Shipping & Tax"],"WooCommerce Shipping now supports DHL labels for international shipments. Purchase and print discounted labels from DHL and USPS right here.":[null,"WooCommerce Shipping ahora es compatible con la etiquetas de DHL para envíos internacionales. Compra desde aquí etiquetas de DHL y USPS."],"Discounted DHL Shipping Labels":[null,"Discounted DHL Shipping Labels"],"WooCommerce Shipping":[null,"WooCommerce Shipping"],"Invalid WooCommerce Shipping & Tax service slug provided":[null,"Slug de servicio de WooCommerce Shipping & Tax no válido proporcionado"],"WooCommerce Shipping & Tax":[null,"WooCommerce Shipping & Tax"],"ZIP/Postal code":[null,"Código postal"],"This action will delete any information entered on the form.":[null,"Esta acción borrará cualquier información introducida en el formulario."],"Cancel connection":[null,"Cancelar conexión"],"Ok":[null,"Aceptar"],"UPS invoice control id":[null,"ID de control de factura de UPS"],"UPS invoice currency":[null,"Moneda de factura de UPS"],"UPS invoice amount":[null,"Cantidad de factura de UPS"],"UPS invoice date":[null,"Fecha de factura de UPS"],"UPS invoice number":[null,"Número de factura de UPS"],"I have been issued an invoice from UPS within the past 90 days":[null,"Se me ha emitido una factura de UPS en los últimos 90 días."],"UPS account information":[null,"Información de cuenta de UPS"],"Company website":[null,"Web de la empresa"],"Job title":[null,"Título profesional"],"Company name":[null,"Nombre de la empresa"],"This is the company info you used to create your UPS account":[null,"Esta es la información de la empresa que utilizaste para crear tu cuenta UPS"],"Company information":[null,"Información de la empresa"],"Email":[null,"Correo electrónico"],"Address 2 (optional)":[null,"Dirección 2 (opcional)"],"Account number":[null,"Número de cuenta"],"This is the account number and address from your UPS profile":[null,"Este es el número de cuenta y dirección de tu perfil de UPS"],"General information":[null,"Información general"],"If you need a UPS account number, go to {{a}}UPS.com{{/a}} to create a new account.":[null,"Si necesitas un número de cuenta de UPS ve a {{a}}UPS.com{{/a}} para crear una nueva cuenta."],"Set up your own UPS carrier account to compare rates and print labels from multiple carriers in WooCommerce Shipping. Learn more about adding {{a}}carrier accounts{{/a}}.":[null,"Configura tu propia cuenta de transportista de UPS para comparar tarifas e imprimir etiquetas de varios transportistas en WooCommerce Shipping. Aprende más sobre cómo añadir {{a}}cuentas de transportistas{{{/a}}."],"Connect your UPS account":[null,"Conecta a tu cuenta de UPS"],"Set up your own carrier account by adding your credentials here":[null,"Configura tu propia cuenta de transportista añadiendo aquí tus credenciales"],"Carrier account":[null,"Cuenta de transportista"],"Credentials":[null,"Credenciales"],"Adult signature required":[null,"Es obligatoria la firma de un adulto"],"Signature required":[null,"Firma obligatoria"],"Other\\u2026":[null,"Otros\\u2026"],"Select one\\u2026":[null,"Seleccionar uno\\u2026"],"Validating address\\u2026":[null,"Validando dirección\\u2026"],"Purchasing\\u2026":[null,"Comprando\\u2026"],"Your UPS account will be charged":[null,"Se cargará tu cuenta de UPS"],"Package %(index)s \\u2013 %(title)s":[null,"Paquete %(index)s \\u2013 %(title)s"],"Saving\\u2026":[null,"Guardando\\u2026"],"Your tax rates and settings will be automatically configured for %1$s. <a href=\"https://docs.woocommerce.com/document/setting-up-taxes-in-woocommerce/#section-12\">Learn more about setting up tax rates for additional nexuses</a>":[null,"Tus tarifas de impuestos y ajustes se configurarán automáticamente para %1$s. <a href=\"https://docs.woocommerce.com/document/setting-up-taxes-in-woocommerce/#section-12\">Aprende más sobre cómo configurar tarifas de impuestos para nexos adicionales</a>"],"Your tax rates and settings will be automatically configured for %1$s, %2$s. <a href=\"https://docs.woocommerce.com/document/setting-up-taxes-in-woocommerce/#section-12\">Learn more about setting up tax rates for additional nexuses</a>":[null,"Tus tarifas de impuestos y ajustes se configurarán automáticamente para %1$s, %2$s. <a href=\"https://docs.woocommerce.com/document/setting-up-taxes-in-woocommerce/#section-12\">Aprende más sobre cómo configurar tarifas de impuestos para nexos adicionales</a>"],"%(itemCount)d item is ready to be fulfilled":["%(itemCount)d items are ready to be fulfilled","%(itemCount)d elemento está listo para completar","%(itemCount)d elementos están listos para completar"],"%(itemCount)d item was fulfilled on {{span}}%(createdDate)s{{/span}}":["%(itemCount)d items were fulfilled on {{span}}%(createdDate)s{{/span}}","%(itemCount)d elemento se completó el {{span}}%(createdDate)s{{/span}}","%(itemCount)d elementos se completaron el {{span}}%(createdDate)s{{/span}}"],"Schedule a pickup":[null,"Programa una recogida"],"Label images older than 180 days are deleted by our technology partners for general security and data privacy concerns.":[null,"Las imágenes de las etiquetas de más de 180 días las borran nuestros colaboradores tecnológicos por cuestiones de seguridad y privacidad de datos."],"Labels older than 30 days cannot be refunded.":[null,"Las etiquetas de más de 30 días no se pueden reembolsar."],"Mark this order as complete and notify the customer":[null,"Marcar este pedido como completo y avisar al cliente"],"Notify the customer with shipment details":[null,"Avisar el cliente con los detalles del envío"],"You save %s with WooCommerce Shipping":[null,"Ahorras %s con WooCommerce Shipping"],"WooCommerce Shipping & Tax requires the WooCommerce plugin to be installed and active. You can download %s here.":[null,"WooCommerce Shipping & Tax necesita que esté instalado y activado el plugin WooCommerce. Puedes descargarlo aquí: %s."],"No tracking information available at this time":[null,"En este momento no hay disponible información de seguimiento"],"Connection error: unable to create label at this time":[null,"Error de conexión: en este momento no se puede crear la etiqueta"],"Track Package":["Track Packages","Seguimiento de paquete","Seguimiento de paquetes"],"Which package would you like to track?":[null,"¿Qué paquete te gustaría seguir?"],"%(service)s label (#%(labelIndex)d)":[null,"%(service)s etiqueta (#%(labelIndex)d)"],"To print this shipping label, {{a}}add a credit card to your account{{/a}}.":[null,"Para imprimir esta etiqueta de envío, {{a}}añade una tarjeta de crédito a tu cuenta{{/a}}."],"Add credit card":[null,"Añadir una tarjeta de crédito"],"To print this shipping label, {{a}}choose a credit card to add to your account{{/a}}.":[null,"Para imprimir esta etiqueta de envío, {{a}}elige una tarjeta de crédito para añadirla a tu cuenta{{/a}}."],"Choose credit card":[null,"Elegir una tarjeta de crédito"],"Buy shipping label":["Buy shipping labels","Comprar etiqueta de envío","Comprar etiquetas de envío"],"shipping label ready":["shipping labels ready","etiqueta de envío lista","etiquetas de envío listas"],"Shipping from":[null,"Envío desde"],"Shipping summary":[null,"Resumen del envío"],"Customer paid a {{shippingMethod/}} of {{shippingCost/}} for shipping":[null,"El cliente ha pagado un {{shippingMethod/}} de {{shippingCost/}} por el envío"],"Shipping rates":[null,"Tarifas de envío"],"HS Tariff number":[null,"Número del arancel del HS"],"Submit":[null,"Enviar"],"Total Weight (with package)":[null,"Peso total (con el paquete)"],"QTY":[null,"Cantidad"],"Weight":[null,"Peso"],"Items to fulfill":[null,"Elementos para rellenar"],"Select a package type":[null,"Selecciona un tipo de paquete"],"Package details":[null,"Detalles del paquete"],"Your shipping packages have been saved.":[null,"Han sido guardados tus paquetes de envío."],"0.0":[null,"0.0"],"Shipment Tracking":[null,"Seguimiento de envíos"],"Customs information valid":[null,"Información de aduanas válida"],"Customs information incomplete":[null,"Información de aduanas incompleta"],"Packing Log:":[null,"Registro de paquetería:"],"Chosen Rate:":[null,"Tarifa elegida:"],"Shipping Method ID:":[null,"ID del método de envío:"],"Shipping Method Name:":[null,"Nombre del método de envío:"],"Shipping Debug":[null,"Depuración de envíos"],"<strong>\"%2$s\" is missing weight, length, width, or height.</strong><br />Shipping rates cannot be calculated. <a href=\"%1$s\">Enter dimensions and weight for %2$s</a> so your customers can purchase this item.":[null,"<strong>A \"%2$s\" le falta el peso, largo, ancho o la altura.</strong><br />No se pueden calcular las tarifas de envío. <a href=\"%1$s\">Introduce las dimensiones y el peso de %2$s</a> para que tus clientes puedan comprar este artículo."],"Unable to send request to WooCommerce Shipping & Tax server. The timestamp generated for the signature is too old.":[null,"No ha sido posible enviar la solicitud al servidor de WooCommerce Shipping & Tax. La marca temporal generada para la firma es demasiado antigua."],"Unable to send request to WooCommerce Shipping & Tax server. Jetpack Token is malformed.":[null,"No ha sido posible enviar la solicitud al servidor de WooCommerce Shipping & Tax. El token de JetPack está mal formado."],"Unable to send request to WooCommerce Shipping & Tax server. Jetpack Token is missing":[null,"No ha sido posible enviar la solicitud al servidor de WooCommerce Shipping & Tax. Falta el token de JetPack."],"Error: The WooCommerce Shipping & Tax server returned: %1$s %2$s ( %3$d )":[null,"Error: El servidor de WooCommerce Shipping & Tax ha devuelto: %1$s %2$s (%3$d)"],"Error: The WooCommerce Shipping & Tax server returned ( %d ) and an empty response body.":[null,"Error: El servidor de WooCommerce Shipping & Tax ha devuelto (%d) y un cuerpo de respuesta vacío."],"Error: The WooCommerce Shipping & Tax server returned HTTP code: %d":[null,"Error: El servidor de WooCommerce Shipping & Tax ha devuelto un código HTTP: %d"],"Unable to encode body for request to WooCommerce Shipping & Tax server.":[null,"No ha sido posible cifrar el cuerpo para la solicitud al servidor de WooCommerce Shipping & Tax."],"Unable to send request to WooCommerce Shipping & Tax server. Body must be an array.":[null,"No ha sido posible enviar la solicitud al servidor de WooCommerce Shipping & Tax. El cuerpo debe ser un array."],"Unable to send request to WooCommerce Shipping & Tax server. Jetpack connection does not implement get_access_token.":[null,"No ha sido posible enviar la solicitud al servidor de WooCommerce Shipping & Tax. La conexión de Jetpack no implementa `get_access_token`."],"Unable to send request to WooCommerce Shipping & Tax server. Jetpack_Data was not found.":[null,"No ha sido posible enviar la solicitud al servidor de WooCommerce Shipping & Tax. No se ha encontrado Jetpack_Data."],"No shipping rate could be calculated. No items in the package are shippable.":[null,"No se ha podido calcular la tarifa de envío. Ningún artículo del paquete se puede enviar."],"Product ( ID: %d ) is missing a dimension value. Shipping rates cannot be calculated.":[null,"Al producto ( ID: %d ) le falta un valor de dimensión. No se pueden calcular las tarifas de envío."],"Product ( ID: %d ) did not include a weight. Shipping rates cannot be calculated.":[null,"El producto ( ID: %d ) no incluye peso. No se pueden calcular las tarifas de envío."],"Packing log:":[null,"Registro de paquetería:"],"Received rate: %1$s (%2$s)":[null,"Tarifa recibida: %1$s (%2$s)"],"Your customer selected {{shippingMethod/}}":[null,"Tu cliente ha elegido {{shippingMethod/}}"],"Total rate: %(total)s":[null,"Tasa total: %(total)s"],"%(serviceName)s: %(rate)s":[null,"%(serviceName)s: %(rate)s"],"No rates found":[null,"No se han encontrado tarifas"],"WooCommerce Shipping gives you access to USPS Commercial Pricing, which is discounted over Retail rates.":[null,"WooCommerce Shipping te da acceso a USPS Commercial Pricing, que tienen descuento sobre las tarifas minoristas."],"more info":[null,"más información"],"ITN":[null,"ITN"],"Sanitary / Phytosanitary inspection":[null,"Inspección sanitaria / fitosanitaria"],"Quarantine":[null,"Cuarentena"],"None":[null,"Ninguno"],"Restriction type":[null,"Tipo de restricción"],"Details":[null,"Detalles"],"Sample":[null,"Muestra"],"Gift":[null,"Regalo"],"Documents":[null,"Documentos"],"Merchandise":[null,"Mercancía"],"Contents type":[null,"Tipo de contenido"],"Return to sender if package is unable to be delivered":[null,"Devolver al remitente si el paquete no puede ser entregado"],"Value (per unit)":[null,"Valor (por unidad)"],"Weight (per unit)":[null,"Peso (por unidad)"],"Save customs form":[null,"Guardar el formulario de aduanas"],"Customs":[null,"Aduanas"],"Use address as entered":[null,"Utilizar la dirección tal y como se ha introducido"],"View on Google Maps":[null,"Ver en Google Maps"],"Verify with USPS":[null,"Verificar con USPS"],"Automatic verification failed for this address. It may still be a valid address \\u2014 use the tools below to manually verify.":[null,"Ha fallado la verificación automática para esta dirección. Aún puede ser una dirección válida: usa las siguientes herramientas para verificarla manualmente."],"We were unable to automatically verify the address.":[null,"No hemos podido verificar automáticamente la dirección."],"We were unable to automatically verify the address \\u2014 %(error)s.":[null,"No hemos podido verificar automáticamente la dirección: %(error)s."],"You've edited the address, please revalidate it for accurate rates":[null,"Has editado la dirección, vuelve a validarla para obtener tarifas precisas."],"Verify address":[null,"Verificar dirección"],"%(message)s. Please modify the address and try again.":[null,"%(message)s. Modifica la dirección y vuelve a intentarlo."],"View details":[null,"Ver detalles"],"Items":[null,"Artículos"],"Package":[null,"Paquete"],"Receipt":[null,"Recibo"],"Label #%(labelIndex)s details":[null,"Detalles de la etiqueta #%(labelIndex)s"],"{{icon/}} Delete this package":[null,"{{icon/}}} Borrar este paquete"],"Done":[null,"Hecho"],"Add boxes, envelopes, and other packages you use most frequently":[null,"Añade las cajas, sobres y otros paquetes que uses más frecuentemente"],"Remove":[null,"Quitar"],"Edit":[null,"Editar"],"Weight of empty package":[null,"Peso del paquete vacío"],"Unique package name":[null,"Nombre único del paquete"],"Envelope":[null,"Sobre"],"Box":[null,"Caja"],"This field is required.":[null,"Este campo es obligatorio."],"Payment":[null,"Pago"],"Email the label purchase receipts to %(ownerName)s (%(ownerLogin)s) at %(ownerEmail)s":[null,"Envía por correo electrónico los recibos de compra de etiquetas a %(ownerName)s (%(ownerLogin)s) a %(ownerEmail)s"],"Email Receipts":[null,"Recibos por correo electrónico"],"To purchase shipping labels, choose a credit card you have on file or add a new card.":[null,"Para comprar etiquetas de envío elige una tarjeta de crédito que tengas guardada o añade una nueva tarjeta."],"Choose a different card":[null,"Elige una tarjeta diferente"],"To purchase shipping labels, add a credit card.":[null,"Para comprar etiquetas de envío, añade una tarjeta de crédito."],"We'll charge the credit card on your account (%(card)s) to pay for the labels you print":[null,"Haremos un cargo en la tarjeta de crédito de tu cuenta (%(card)s) para pagar las etiquetas que imprimas"],"Credit cards are retrieved from the following WordPress.com account: %(wpcomLogin)s <%(wpcomEmail)s>":[null,"Las tarjetas de crédito se obtienen de la siguiente dirección de WordPress.com: %(wpcomLogin)s <%(wpcomEmail)s>"],"Only the site owner can change these settings. Please contact %(ownerName)s (%(ownerLogin)s) to change the shipping label settings.":[null,"Solo el propietario del sitio puede cambiar estos ajustes. Por favor, contacta con %(ownerName)s (%(ownerLogin)s) para cambiar los ajustes de etiquetas de envío."],"Only the site owner can manage shipping label payment methods. Please contact %(ownerName)s (%(ownerLogin)s) to manage payment methods.":[null,"Solo el propietario del sitio puede administrar los métodos de pago de etiquetas de envío. Por favor, contactda con %(ownerName)s (%(ownerLogin)s) para que administre los métodos de pago."],"%(card)s ****%(digits)s":[null,"%(tarjeta)s ****%(digits)s"],"Print shipping labels yourself and save a trip to the post office":[null,"Imprime tú mismo las etiquetas de envío y ahórrate un viaje a la oficina de correos"],"H":[null,"Al"],"W":[null,"An"],"L":[null,"L"],"Disconnect":[null,"Desconectar"],"Activate":[null,"Activar"],"No activity yet":[null,"Todavía no hay actividad"],"Note":[null,"Nota"],"Refunded %(amount)s":[null,"Reembolsado %(amount)s"],"%(service)s label (#%(labelNum)d) refund rejected":[null,"reembolso de etiqueta de %(service)s (#%(labelNum)d) rechazado"],"%(service)s label (#%(labelNum)d) refunded (%(amount)s)":[null,"reembolsado (%(amount)s) de etiqueta de %(service)s (#%(labelNum)d) rechazado"],"%(service)s label (#%(labelNum)d) refund requested (%(amount)s)":[null,"%(service)s etiqueta (#%(labelNum)d) solicitud de reembolso (%(amount)s)"],"Note sent to customer":[null,"Nota enviada al cliente"],"Internal note":[null,"Nota interna"],"Show notes from %(date)s":[null,"Mostrar notas desde %(date)s"],"%(count)s event":["%(count)s events","%(count)s evento","%(count)s eventos"],"WeChat Pay":[null,"WeChat Pay"],"Toggle menu":[null,"Alternar menú"],"Return to Order #%(orderId)s":[null,"Volver al pedido #%(orderId)s"],"Our team is here for you. View our {{docsA}}support docs{{/docsA}} or {{ticketA}}open a support ticket{{/ticketA}}.":[null,"Nuestro equipo está aquí para ti. Ve nuestros {{docsA}}documentos de soporte{{/docsA}} o {{ticketA}}abre un ticket de soporte{{/ticketA}}."],"Logging":[null,"Registro"],"No services configured. {{a}}Add a shipping service{{/a}}":[null,"No hay configurado ningún servicio. {{a}}Añade un servicio de envío{{/a}}"],"Edit service settings":[null,"Editar ajustes del servicio"],"Request was made %s - check logs below or {{a}}edit service settings{{/a}}":[null,"La solicitud la hizo %s - revisa los registros abajo o {{a}}edita los ajustes del servicio{{/a}}"],"Copy for support":[null,"Copiar para soporte"],"Last %s entry. {{a}}Show full log{{/a}}":["Last %s entries. {{a}}Show full log{{/a}}","Última %s entrada. {{a}}Mostrar registro completo{{/a}}","Últimas %s entradas. {{a}}Mostrar registro completo{{/a}}"],"Log tail copied to clipboard":[null,"Cola del registro copiada al portapapeles"],"You have unsaved changes. Are you sure you want to leave this page?":[null,"Tienes cambios sin guardar. ¿Estás seguro de querer abandonar esta página?"],"Value ($ per unit)":[null,"Value ($ per unit)"],"Weight (%s per unit)":[null,"Weight (%s per unit)"],"Description":[null,"Descripción"],"Country where the product was manufactured or assembled":[null,"País donde se fabricó o ensambló el producto"],"Origin country":[null,"País de origen"],"USPS":[null,"USPS"],"Optional":[null,"Opcional"],"Retry":[null,"Reintentar"],"shipping label printing":[null,"impresión de etiquetas de envío"],"shipping label printing and smoother payment setup":[null,"impresión de etiquetas de envío y una configuración de pago más sencilla"],"automated tax calculation and shipping label printing":[null,"cálculo automático de impuestos e impresión de etiquetas de envío"],"automated tax calculation, shipping label printing, and smoother payment setup":[null,"cálculo automático de impuestos, impresión de etiquetas de envío y configuración de pagos más sencilla"],"Data resource description.":[null,"Descripción del recurso de datos."],"Data resource ID.":[null,"ID del recurso de datos."],"List of supported currencies.":[null,"Lista de monedas disponibles."],"List of supported states in a given country.":[null,"Lista de provincias incluidas para un país dado."],"List of supported continents, countries, and states.":[null,"Lista de continentes, países y provincias incluidos."],"Sorry, you cannot view this resource.":[null,"Lo siento, no puedes ver este recurso."],"Sorry, you cannot list resources.":[null,"Lo siento, no puedes listar recursos."],"The unit weights are defined in for this country.":[null,"Las unidades de peso definidas para este país."],"Thousands separator for displayed prices in this country.":[null,"Separador de miles para los precios mostrados en este país."],"Full name of state.":[null,"Nombre completo de la provincia."],"State code.":[null,"Código de la provincia."],"List of states in this country.":[null,"Lista de provincias de este país."],"Number of decimal points shown in displayed prices for this country.":[null,"Número de decimales mostrados en los precios visibles para este país."],"Full name of country.":[null,"Nombre completo del país."],"The unit lengths are defined in for this country.":[null,"Las unidades de medida definidas para este país."],"Decimal separator for displayed prices for this country.":[null,"Separador decimal para los precios mostrados para este país."],"Currency symbol position for this country.":[null,"Posición del símbolo de moneda para este país."],"Default ISO4127 alpha-3 currency code for the country.":[null,"Código de moneda ISO4127 alpha-3 por defecto para el país."],"ISO3166 alpha-2 country code.":[null,"Código ISO3166 alpha-2 del país."],"List of countries on this continent.":[null,"Lista de países de este continente."],"Full name of continent.":[null,"Nombre completo del continente."],"There are no locations matching these parameters.":[null,"No hay ubicaciones que coincidan con estos parámetros."],"2 character continent code.":[null,"Código de 2 caracteres del continente."],"Shipping label tracking number":[null,"Número de seguimiento de la etiqueta de envío"],"Shipping label service":[null,"Servicio de etiquetas de envío"],"Warning: Erasing personal data will cause the ability to reprint or refund WooCommerce Shipping & Tax shipping labels to be lost on the affected orders.":[null,"Advertencia: El borrado de datos personales provocará la posibilidad de volver a imprimir o reembolsar etiquetas de envío de WooCommerce Shipping & Tax que hayan desaparecido en los pedidos afectados."],"By using this extension, you may be storing personal data or sharing data with external services. <a href=\"%s\" target=\"_blank\">Learn more about how this works, including what you may want to include in your privacy policy.</a>":[null,"Al usar esta extensión puede que estés almacenando datos personales o compartiendo datos con servicios externos. <a href=\"%s\" target=\"_blank\">Aprende más sobre cómo funciona esto, incluyendo lo que quieras incluir en tu política de privacidad.</a>"],"There was a problem updating your saved credit cards.":[null,"Hubo un problema al actualizar tus tarjetas de crédito guardadas."],"No labels found for this period":[null,"No se han encontrado etiquetas en este periodo"],"Total":[null,"Total"],"Refund":[null,"Reembolso"],"Price":[null,"Precio"],"Order":[null,"Pedido"],"Time":[null,"Hora"],"Requested":[null,"Solicitado"],"Last 7 days":[null,"Últimos 7 días"],"This month":[null,"Este mes"],"Last month":[null,"El mes pasado"],"Year":[null,"Año"],"Export CSV":[null,"Exportar CSV"],"Other Log":[null,"Otros registros"],"Taxes Log":[null,"Registro de impuestos"],"Shipping Log":[null,"Registro de envíos"],"Display troubleshooting information on the Cart and Checkout pages.":[null,"Muestra información para resolución de problemas en las páginas de carrito y finalizar compra."],"Write diagnostic messages to log files. Helpful when contacting support.":[null,"Escribe mensajes de diagnóstico en los archivos de registro. Útil al contactar con soporte."],"Enter your email address at which to accept payments. You'll need to link your own account in order to perform anything other than \"sale\" transactions.":[null,"Introduce tu dirección de correo electrónico en la que aceptas pagos. Tendrás que enlazar a tu cuenta para realizar cualquier otra cosa además de las transacciones de \"ofertas\"."],"Payment Email":[null,"Correo electrónico de pagos"],"To authenticate payments with WooCommerce Shipping & Tax, <a href=\"%s\">click here</a>.":[null,"Para identificar pagos con WooCommerce Shipping & Tax, <a href=\"%s\">haz clic aquí</a>."],"Payments will be authenticated by WooCommerce Shipping & Tax and directed to the following email address. To disable this feature and link a PayPal account, <a href=\"%s\">click here</a>.":[null,"Los pagos los identificará WooCommerce Shipping & Tax y se dirigirán a la siguiente dirección de correo electrónico. Para desactivar esta característica y enlazar a una cuenta de PayPal, <a href=\"%s\">haz clic aquí</a>."],"%s (Note that \"authorizing payment only\" requires linking a PayPal account.)":[null,"%s (Date cuenta que \"autorizar solo pagos\" requiere enlazar con una cuenta de PayPal.)"],"Link account":[null,"Enlazar cuenta"],"Link a new or existing PayPal account to make sure future orders are marked “Processing” instead of “On hold”, and so refunds can be issued without leaving WooCommerce.":[null,"Enlaza una cuenta de PayPal nueva o existente para asegurar que los pedidos futuros se marquen como \"Procesando\" en vez de \"En espera\", y para emitir reembolsos sin tener que salir de WooCommerce."],"Link your PayPal account":[null,"Enlaza a tu cuenta de PayPal"],"To issue refunds via PayPal Checkout, you will need to <a href=\"%s\">link a PayPal account</a> with the email address that received this payment.":[null,"Para enviar reembolsos a través de PayPal Exprés tendrás que <a href=\"%s\">enlazar a una cuenta de PayPal</a> con la dirección de correo electrónico que recibió este pago."],"Link a PayPal account":[null,"Enlaza a una cuenta PayPal"],"Refresh":[null,"Recargar"],"Tracking number":[null,"Número de seguimiento"],"Provider":[null,"Proveedor"],"WooCommerce Shipping & Tax is almost ready to go! Once you connect Jetpack you'll have access to %s.":[null,"¡WooCommerce Shipping & Tax está casi listo! Una vez que conectes con Jetpack, tendrás acceso a %s."],"Hosted services for WooCommerce: automated tax calculation, shipping label printing, and smoother payment setup.":[null,"Servicios alojados para WooCommerce: cálculos automáticos de impuestos, tarifas de envío en directo, impresión de etiquetas de envío y una configuración de pago más sencilla."],"Tax Class":[null,"Clase de impuesto"],"Shipping":[null,"Envío"],"Compound":[null,"Compuesto"],"Priority":[null,"Prioridad"],"Tax Name":[null,"Nombre de impuesto"],"Rate %":[null,"Tarifa %"],"ZIP/Postcode":[null,"Código postal"],"State Code":[null,"Código de provincia"],"Country Code":[null,"Código de país"],"Enable automated taxes":[null,"Activar impuestos automáticos"],"Disable automated taxes":[null,"Desactivar impuestos automáticos"],"Automated taxes":[null,"Impuestos automáticos"],"By clicking \"%1$s\", you agree to the <a href=\"%2$s\">Terms of Service</a> and to <a href=\"%3$s\">share certain data and settings</a> with WordPress.com and/or third parties.":[null,"Haciendo clic en \"%1$s\" aceptas los <a href=\"%2$s\">términos del servicio</a> y a <a href=\"%3$s\">compartir ciertos datos y ajustes</a> con WordPress.com y/o otros."],"Setup complete.":[null,"Configuración completa."],"You can now enjoy %s.":[null,"Ya puedes disfrutar %s."],"WooCommerce Shipping & Tax is almost ready to go! Once you connect your store you'll have access to %s.":[null,"¡WooCommerce Shipping & Tax está casi listo! Una vez que conectes tu tienda tendrás acceso a %s."],"automated tax calculation":[null,"cálculo automático de impuestos"],"smoother payment setup":[null,"configuración de pago más sencilla"],"automated tax calculation and smoother payment setup":[null,"cálculo automático de impuestos y configuración de pago más sencilla"],"Required":[null,"Requerido"],"Your shipping settings have been saved.":[null,"Tus ajustes de envío se han guardado."],"Unable to save your shipping settings. Please try again.":[null,"No ha sido posible guardar tus ajustes de envío. Por favor, inténtalo de nuevo."],"Dimensions":[null,"Dimensiones"],"Close":[null,"Cerrar"],"Packages to be Shipped":[null,"Paquetes a enviar"],"Add to a New Package":[null,"Añadir a un nuevo paquete"],"Add items":[null,"Añadir artículos"],"Individually Shipped Item":[null,"Artículo enviado individualmente"],"Item Dimensions":[null,"Dimensiones del artículo"],"Please select a package":[null,"Por favor, elige un paquete"],"Service schemas were not loaded":[null,"No se cargaron los esquemas del servicio"],"Bad request":[null,"Petición errónea"],"Order not found":[null,"Pedido no encontrado"],"Got it, thanks!":[null,"¡Entendido, gracias!"],"Activate Jetpack and connect":[null,"Activa Jetpack y conecta"],"Install Jetpack and connect":[null,"Instala Jetpack y conecta"],"Something went wrong. Please try connecting to Jetpack manually, or contact support on the WordPress.org forums.":[null,"Algo fue mal. Por favor, trata de conectar manualmente con Jetpack, o contacta con soporte en los foros de WordPress.org."],"Connecting...":[null,"Conectando…"],"Activating...":[null,"Activando…"],"When you're ready, purchase and print discounted labels from %s right here.":[null,"Cuando estés listo, compra e imprime etiquetas de %s con descuento aquí mismo."],"Discounted Shipping Labels":[null,"Etiquetas de envío con descuento"],"American Express":[null,"American Express"],"Discover":[null,"Descubre"],"MasterCard":[null,"MasterCard"],"VISA":[null,"VISA"],"PayPal":[null,"PayPal"],"Add another credit card":[null,"Añadir otra tarjeta de créditoi"],"%(selectedCount)d package selected":["%(selectedCount)d packages selected","%(selectedCount)d paquete seleccionado","%(selectedCount)d paquetes seleccionados"],"Unable to get your settings. Please refresh the page to try again.":[null,"No ha sido posible recuperar tus ajustes. Por favor, recarga la página para intentarlo de nuevo."],"%(numSelected)d service selected":["%(numSelected)d services selected","%(numSelected)d servicio seleccionado","%(numSelected)d servicios seleccionados"],"Add and edit saved packages using the {{a}}Packaging Manager{{/a}}.":[null,"Añade y edita los paquetes guardados usando el {{a}}Gestor de paquetería{{/a}}."],"Tracking #: {{trackingLink/}}":[null,"Seguimiento #: {{trackingLink/}}"],"%(item)s from {{pckg/}}":[null,"%(item)s desde {{pckg/}}"],"Which items would you like to add to {{pckg/}}?":[null,"¿Qué artículos te gustaría añadir a {{pckg/}}?"],"1 item in 1 package: %(weight)s %(unit)s total":[null,"1 artículo en 1 paquete: %(weight)s %(unit)s en total"],"%(itemsCount)d items in 1 package: %(weight)s %(unit)s total":[null,"%(itemsCount)d artículos en 1 paquete: %(weight)s %(unit)s en total"],"%(itemsCount)d items in %(packageCount)d packages: %(weight)s %(unit)s total":[null,"%(itemsCount)d artículos en %(packageCount)d paquetes: %(weight)s %(unit)s en total"],"{{itemLink/}} is currently saved for a later shipment.":[null,"{{itemLink/}} está actualmente guardado para un envío posterior."],"{{itemLink/}} is currently shipped in its original packaging.":[null,"{{itemLink/}} está actualmente enviado en su paquete original."],"{{itemLink/}} is currently in {{pckg/}}.":[null,"{{itemLink/}} está en actualmente en {{pckg/}}."],"Choose rate: %(pckg)s":[null,"Elegir tarifa: %(pckg)s"],"Refund label (-%(amount)s)":[null,"Etiqueta de reembolso (-%(amount)s)"],"Where would you like to move it?":[null,"¿A dónde te gustaría moverlo?"],"Unsaved changes made to packages":[null,"Los cambios realizados a los paquetes no se han guardado"],"There are no items in this package.":[null,"No existen artículos en este paquete."],"Ship in original packaging":[null,"Enviar en su paquete original"],"Request refund":[null,"Solicitar reembolso"],"Reprint":[null,"Volver a imprimir"],"Paper size":[null,"Tamaño del papel"],"No packages selected":[null,"No hay paquetes seleccionados"],"Move":[null,"Mover"],"Move item":[null,"Mover artículo"],"Increase the rates calculated by the carrier to account for packaging and handling costs. You can also add a negative amount to save your customers money.":[null,"Incrementa las tarifas calculadas por el transportista a la cantidad de los costes de empaquetado y manipulado. También puedes añadir una cantidad negativa para ahorrar dinero a tus clientes."],"Create new label":[null,"Crear nueva etiqueta"],"All packages selected":[null,"Seleccionados todos los paquetes"],"Add":[null,"Añadir"],"Add item":[null,"Añadir artículo"],"Add a credit card":[null,"Añadir una tarjeta de crédito"],"#%d - [Deleted product]":[null,"#%d - [producto borrado]"],"#%1$d - %2$s":[null,"#%1$d - %2$s"],"<a href=\"%s\">Support</a>":[null,"<a href=\"%s\">Soporte</a>"],"There was an error installing Jetpack. Please try installing it manually.":[null,"Hubo un error al instalar Jetpack. Por favor, trata de instalarlo manualmente."],"Shipping Labels":[null,"Etiquetas de envío"],"Automattic":[null,"Automattic"],"https://woocommerce.com/":[null,"https://woocommerce.com/"],"Phone":[null,"Teléfono"],"Connect":[null,"Conectar"],"Save Settings":[null,"Guardar ajustes"],"Your changes have been saved.":[null,"Tus cambios se han guardado."],"There was a problem with one or more entries. Please fix the errors below and try saving again.":[null,"Hubo un problema con una o más entradas. Por favor, soluciona los errores de abajo y trata de guardar de nuevo."],"Expand":[null,"Ampliar"],"Dismiss":[null,"Descartar"],"You have unsaved changes.":[null,"Tienes cambios sin guardar."],"Type of package":[null,"Tipo de paquete"],"Add package":["Add packages","Añadir paquete",""],"Invalid value.":[null,"Valor no válido."],"This field is required":[null,"Este campo es obligatorio"],"Package name":[null,"Nombre del paquete"],"This field must be unique":[null,"Este campo debe ser único"],"Unable to save your shipping packages. Please try again.":[null,"No se han podido guardar tus paquetes de envío. Por favor, inténtalo de nuevo."],"Save changes":[null,"Guardar cambios"],"Untitled":[null,"Sin título"],"Dimensions (L x W x H)":[null,"Dimensiones (L x An x Al)"],"All services selected":[null,"Seleccionados todos los servicios"],"Expand Services":[null,"Expandir servicios"],"Service":[null,"Servicio"],"Price adjustment":[null,"Ajuste de precio"],"Saved Packages":[null,"Paquetes guardados"],"Tracking":[null,"Seguimiento"],"Create shipping label":["Create shipping labels","Crear etiqueta de envío",""],"Name":[null,"Nombre"],"Company":[null,"Empresa"],"Address":[null,"Dirección"],"City":[null,"Ciudad"],"State":[null,"Provincia"],"Country":[null,"País"],"Invalid address":[null,"Dirección no válida"],"Origin address":[null,"Dirección de origen"],"Destination address":[null,"Dirección de destino"],"We have slightly modified the address entered. If correct, please use the suggested address to ensure accurate delivery.":[null,"Hemos modificado ligeramente la dirección introducida. Si es correcta, por favor, utiliza la dirección sugerida para asegurar una entrega precisa."],"Address entered":[null,"Dirección introducida"],"Edit address":[null,"Editar dirección"],"Suggested address":[null,"Dirección sugerida"],"Use selected address":[null,"Usar la dirección seleccionada"],"Use these packages":[null,"Utilizar estos paquetes"],"The service and rate chosen by the customer at checkout is not available. Please choose another.":[null,"El servicio y la tarifa elegidos por el cliente en el pago no están disponibles. Por favor, elige otro."],"Request a refund":[null,"Solicitar un reembolso"],"You can request a refund for a shipping label that has not been used to ship a package. It will take at least %(days)s days to process.":[null,"Puedes solicitar un reembolso de una etiqueta de envío que no se haya utilizado para enviar un paquete. Tardará al menos %(días)s en procesarse."],"Purchase date":[null,"Fecha de compra"],"Amount eligible for refund":[null,"Cantidad elegible para el reembolso"],"Reprint shipping label":[null,"Volver a imprimir la etiqueta de envío"],"If there was a printing error when you purchased the label, you can print it again.":[null,"Si hay un problema de impresión cuando compres la etiqueta puedes imprimirla de nuevo."],"NOTE: If you already used the label in a package, printing and using it again is a violation of our terms of service and may result in criminal charges.":[null,"NOTA: Si ya has usado la etiqueta en un paquete, imprimirla y usarla de nuevo es una violación de nuestros términos del servicio y podría resultar en cargos criminales."],"Print":[null,"Imprimir"],"Cancel":[null,"Cancelar"],"N/A":[null,"N/D"],"More":[null,"Más"],"Invalid PDF request.":[null,"Petición de PDF no válida."],"Unknown package":[null,"Paquete desconocido"],"Individual packaging":[null,"Empaquetado individual"],"Unable to update service settings. Validation failed. %s":[null,"No ha sido posible actualizar los ajustes del servicio. Falló la validación. %s"],"Unable to update service settings. The form data could not be read.":[null,"No ha sido posible actualizar los ajustes del servicio. Los datos del formulario no pudieron leerse."],"Unable to update service settings. Form data is missing service ID.":[null,"No ha sido posible actualizar los ajustes del servicio. Los datos del formulario son de un ID de servicio no disponible."],"Unable to update settings. The form data could not be read.":[null,"No fue posible actualizar los ajustes. Los datos del formulario no se han podido leer."],"Unable to update settings. %s":[null,"No ha sido posible actualizar los ajustes. %s"],"Packaging":[null,"Paquetería"],"Section not loading? Visit the <a href=\"%s\">status page</a> for troubleshooting steps.":[null,"¿No carga la sección? Visita la <a href=\"%s\">página de estado</a> para ver los pasos de solución de problemas."],"Note: Jetpack development mode is enabled on this site. This site will not be able to obtain payment methods from WooCommerce Shipping & Tax production servers.":[null,"Nota: El modo de desarrollo de Jetpack está activo en este sitio. Este sitio no podrá obtener métodos de pago de los servidores de producción de WooCommerce Shipping & Tax."],"Note: Jetpack is connected, but development mode is also enabled on this site. Please disable development mode.":[null,"Nota: Jetpack está conectado, pero también está activo el modo de desarrollo en este sitio. Por favor, desactiva el modo de desarrollo."],"Shipping Label":[null,"Etiqueta de envío"],"yd":[null,"yd"],"in":[null,"en"],"mm":[null,"mm"],"cm":[null,"cm"],"m":[null,"m"],"oz":[null,"oz"],"lbs":[null,"lbs"],"g":[null,"g"],"kg":[null,"kg"],"An invalid service ID was received.":[null,"Se ha recibido un ID de servicio no válido."],"An invalid service instance was received.":[null,"Se ha recibido una instancia de servicio no válida."],"Rest of the World":[null,"Resto del mundo"],"Support":[null,"Soporte"],"Debug":[null,"Depuración"],"Services":[null,"Servicios"],"Need help?":[null,"¿Necesitas ayuda?"],"Log is empty":[null,"El registro está vacío"],"Disabled":[null,"Desactivado"],"Enabled":[null,"Activo"],"%s Shipping Zone":[null,"%s zona de envío"],"The most recent rate request failed":[null,"La reciente petición de tarifas más reciente falló"],"The most recent rate request was successful":[null,"La petición de tarifas más reciente tuvo éxito"],"No rate requests have yet been made for this service":[null,"Aún no han habido peticiones de tarifas para este servicio"],"Setup for this service has not yet been completed":[null,"La configuración de este servició aún no se ha completado"],"Service data is up-to-date":[null,"Los datos del servicio están al día"],"Service data was found, but is more than one day old":[null,"Se encontaron datos del servicio, pero son de hace más de un día"],"Service data was found, but is more than three days old":[null,"Se encontraron datos del servicio, pero son de hace más de tres días"],"Service data found, but may be out of date":[null,"Se han encontrado datos del servicio, pero podrían ser obsoletos"],"No service data available":[null,"No hay disponibles datos del servicio"],"Jetpack":[null,"Jetpack"],"Jetpack %s is connected and working correctly":[null,"Jetpack %s está conectado y funcionando correctamente"],"This is a Jetpack staging site":[null,"Este es un sitio en pruebas de Jetpack"],"Jetpack is not connected to WordPress.com. Make sure the Jetpack plugin is installed, activated, and connected.":[null,"Jetpack no está conectado a WordPress.com. Asegúrate de que el plugin Jetpack está instalado, activo y conectado."],"Jetpack %1$s or higher is required (You are running %2$s)":[null,"Se necesita Jetpack %1$s o superior (estás ejecutando la versión %2$s)"],"Please install and activate the Jetpack plugin, version %s or higher":[null,"Por favor, instala y activa el plugin Jetpack, en su versión %s o superior"],"WooCommerce":[null,"WooCommerce"],"WooCommerce %s is configured correctly":[null,"WooCommerce %s está configurado correctamente"],"Please set Base Location in WooCommerce Settings > General":[null,"Por favor, establece la ubicación base en Ajustes de WooCommerce > General"],"WooCommerce %1$s or higher is required (You are running %2$s)":[null,"Se necesita WooCommerce %1$s o superior (estás ejecutando la versión %2$s)"],"Dismiss this notice":[null,"Descartar este aviso"],"ERROR: Your site has a problem connecting to the WooCommerce Shipping & Tax API. Please make sure your Jetpack connection is working.":[null,"ERROR: Tu sitio tiene un problema al conectar con la API de WooCommerce Shipping & Tax. Por favor, aségurate de que está funcionando tu conexión de Jetpack."],"Your site is succesfully communicating to the WooCommerce Shipping & Tax API.":[null,"Tu sitio se está comunicando correctamente con la API de WooCommerce Shipping & Tax."],"This will test your WooCommerce Shipping & Tax connection to ensure everything is working correctly":[null,"Esto probará tu conexión de WooCommerce Shipping & Tax para asegurar que todo funciona correctamente"],"Test Connection":[null,"Probar conexión"],"The WooCommerce Shipping & Tax brandname\u0004WooCommerce Shipping & Tax":[null,"WooCommerce Shipping & Tax"],"The WooCommerce Shipping & Tax brandname\u0004WooCommerce Shipping":[null,"WooCommerce Shipping"],"%s - ZIP/Postal code checkout field label\u0004Invalid %s entered.":[null,"%s introducido no válido."],"%s - ZIP/Postal code checkout field label\u0004%s does not match the selected state.":[null,"%s no coincide con la provincia seleccionada."],"date is of the form MM/YY\u0004Expires %(date)s":[null,"Caduca %(date)s"],"A service with an unknown title and unknown method_title\u0004Unknown":[null,"Desconocido"],"This section displays the overall health of WooCommerce Shipping & Tax and the things it depends on\u0004Health":[null,"Salud"]}
1
+ {"0":[null,"0"],"":{"po-revision-date":"2021-03-18 08:35:19+0000","mime-version":"1.0","content-type":"text/plain; charset=UTF-8","content-transfer-encoding":"8bit","plural-forms":"nplurals=2; plural=n != 1;","x-generator":"GlotPress/3.0.0-alpha.2","language":"es","project-id-version":"Plugins - WooCommerce Shipping &amp; Tax - Stable (latest release)"},"Features":[null,"Características"],"Carrier":[null,"Transportista"],"Express delivery from the experts in international shipping":[null,"Entrega exprés de los expertos en envíos internacionales"],"Live rates for %(carrierName)s at checkout":[null,"Tarifas en vivo de %(carrierName)s al finalizar la compra"],"Ship with the largest delivery network in the United States":[null,"Envía con la mayor red de entrega de Estados Unidos"],"Discounted %(carrierName)s shipping labels":[null,"Etiquetas de envío con descuento de %(carrierName)s"],"To be displayed at checkout, this carrier must be added as a shipping method to selected shipping zones":[null,"Para que se muestre al finalizar la compra, este transportista tiene que ser añadido como método de envío a las zonas de envío seleccionadas"],"Add to shipping zones":[null,"Añadir a las zonas de envío"],"Show live rates directly on your store - never under or overcharge for shipping again":[null,"Muestra las tarifas en vivo directamente en tu tienda - nunca vuelvas a cobrar de menos o de más en el envío"],"Live rates at checkout":[null,"Tarifas en vivo al finalizar la compra"],"Last updated %s.":[null,"Última actualización %s."],"At least one of the new predefined packages has the same name as existing packages.":[null,"Al menos uno de los nuevos paquetes predefinidos tiene el mismo nombre que los paquetes existentes."],"The new predefined package names are not unique.":[null,"Los nombres del paquete predefinido no son únicos."],"At least one of the new custom packages has the same name as existing packages.":[null,"Al menos uno de los nuevos paquetes personalizados tiene el mismo nombre que los paquetes existentes."],"The new custom package names are not unique.":[null,"Los nombres del nuevo paquete personalizado no son únicos."],"Go to shipping zones":[null,"Ir a las zonas de envío"],"Add DHL Express as a shipping method to selected shipping zones to display live rates at checkout.":[null,"Añade DHL Express como un método de envío para zonas de envío seleccionadas para mostrar las tarifas en vivo al finalizar la compra."],"DHL Express live rates are now available":[null,"Ahora están disponibles las tarifas en vivo de DHL Express"],"State %1$s is invalid for %2$s.":[null,"La provincia %1$s no es válida para %2$s."],"%1$s %2$s is invalid for %3$s.":[null,"%1$s %2$s no es válido para %3$s."],"A %1$s is required for %2$s.":[null,"Se necesita un %1$s para %2$s."],"A country is required":[null,"Se necesita un país"],"Your store is over the limit for rate calls this month and your account will be charged for overages. To prevent future overage charges you can upgrade your plan.":[null,"Tu tienda ha superado este mes el límite para la tarifa de llamadas y se cobrará el exceso en tu cuenta. Para evitar futuros cargos por exceso, puedes actualizar tu plan."],"There was an error trying to activate your subscription.":[null,"Ha habido un error al intentar activar tu suscripción."],"Your subscription was succesfully activated.":[null,"Tu suscripción se ha activado correctamente."],"Manage":[null,"Gestionar"],"Usage":[null,"Uso"],"View and manage your subscription usage":[null,"Ver y gestionar el uso de tu suscripción"],"Shipping method":[null,"Método de envío"],"The subscription is already active.":[null,"La suscripción ya está activa."],"Set up your own carrier account to compare rates and print labels from multiple carriers in WooCommerce Shipping. Learn more about adding {{a}}carrier accounts{{/a}}.":[null,"Configura tu propia cuenta de transportista para comparar tarifas e imprimir etiquetas de varios transportistas en WooCommerce Shipping. Aprende más sobre cómo añadir {{a}}cuentas de transportista{{{/a}}."],"There was an error connecting to your %(carrierName)s account. Please check that all of the information entered matches your %(carrierName)s account and try to connect again.":[null,"Ha habido un error al conectar con tu cuenta %(carrierName)s. Por favor, comprueba que toda la información introducida coincide con la de tu cuenta %(carrierName)s e intenta conectar de nuevo."],"Your carrier account was connected successfully.":[null,"Tu cuenta de transportista ha sido conectada correctamente."],"The date must be a valid date in the format YYYY-MM-DD":[null,"La fecha debe ser una fecha válida en el formato AAAA-MM-DD"],"The invoice number needs to be 9 or 13 letters and digits in length":[null,"El número de la factura tiene que ser de 9 o 13 letras y dígitos de longitud"],"The company website format is not valid":[null,"El formato de la web de la empresa no es válido"],"The email format is not valid":[null,"El formato del correo electrónico no es válido"],"The ZIP/Postal code needs to be 5 digits in length":[null,"El código postal tiene que ser de 5 dígitos de longitud"],"The phone number needs to be 10 digits in length":[null,"El número de teléfono tiene que ser de 10 dígitos de longitud"],"The UPS account number needs to be 6 letters and digits in length":[null,"El número de la cuenta de UPS tiene que ser de 6 letras y dígitos de longitud"],"This will remove the connection with %(carrier_name)s. All of your %(carrier_name)s account information will be deleted and you won\\u2019t see %(carrier_name)s rates.":[null,"Esto eliminará la conexión con %(carrier_name)s. Toda la información de tu cuenta %(carrier_name)s será borrada y no verás las tarifas de %(carrier_name)s."],"Disconnect your %(carrier_name)s account":[null,"Desconectar tu cuenta %(carrier_name)s"],"There was an error trying to disconnect your carrier account":[null,"Ha habido un error al intentar desconectar tu cuenta de transportista"],"Your carrier account was disconnected succesfully.":[null,"Tu cuenta de transportista ha sido desconectada correctamente."],"DHL Express":[null,"DHL Express"],"Powered by WooCommerce Tax. If automated taxes are enabled, you'll need to enter prices exclusive of tax.":[null,"Funciona con WooCommerce Tax. Si están activados los impuestos automáticos, tendrás que introducir los precios sin impuestos."],"WooCommerce Helper auth is missing":[null,"Falta la identificación de WooCommerce Helper"],"USPS labels without tracking are not eligible for refund.":[null,"Las etiquetas de USPS sin seguimiento no son elegibles para reembolso."],"General Information":[null,"Información general"],"Connect your %(carrierName)s account":[null,"Conecta tu cuenta de %(carrierName)s"],"%(carrierName)s not supported.":[null,"%(carrierName)s no es compatible."],"Loading":[null,"Cargando"],"WooCommerce Shipping & Tax Data":[null,"WooCommerce Shipping & Tax Data"],"Print customs form":[null,"Imprimir impreso de aduanas"],"Test your WooCommerce Shipping & Tax connection":[null,"Prueba tu conexión a WooCommerce Shipping & Tax"],"WooCommerce Shipping & Tax Status":[null,"Estado de WooCommerce Shipping & Tax"],"Connect your store to activate WooCommerce Shipping & Tax":[null,"Conecta tu tienda para usar WooCommerce Shipping & Tax"],"Connect Jetpack to activate WooCommerce Shipping & Tax":[null,"Conecta Jetpack para activar WooCommerce Shipping & Tax"],"WooCommerce Shipping now supports DHL labels for international shipments. Purchase and print discounted labels from DHL and USPS right here.":[null,"WooCommerce Shipping ahora es compatible con la etiquetas de DHL para envíos internacionales. Compra desde aquí etiquetas de DHL y USPS."],"Discounted DHL Shipping Labels":[null,"Discounted DHL Shipping Labels"],"WooCommerce Shipping":[null,"WooCommerce Shipping"],"Invalid WooCommerce Shipping & Tax service slug provided":[null,"Slug de servicio de WooCommerce Shipping & Tax no válido proporcionado"],"WooCommerce Shipping & Tax":[null,"WooCommerce Shipping & Tax"],"ZIP/Postal code":[null,"Código postal"],"This action will delete any information entered on the form.":[null,"Esta acción borrará cualquier información introducida en el formulario."],"Cancel connection":[null,"Cancelar conexión"],"Ok":[null,"Aceptar"],"UPS invoice control id":[null,"ID de control de factura de UPS"],"UPS invoice currency":[null,"Moneda de factura de UPS"],"UPS invoice amount":[null,"Cantidad de factura de UPS"],"UPS invoice date":[null,"Fecha de factura de UPS"],"UPS invoice number":[null,"Número de factura de UPS"],"I have been issued an invoice from UPS within the past 90 days":[null,"Se me ha emitido una factura de UPS en los últimos 90 días."],"UPS account information":[null,"Información de cuenta de UPS"],"Company website":[null,"Web de la empresa"],"Job title":[null,"Título profesional"],"Company name":[null,"Nombre de la empresa"],"This is the company info you used to create your UPS account":[null,"Esta es la información de la empresa que utilizaste para crear tu cuenta UPS"],"Company information":[null,"Información de la empresa"],"Email":[null,"Correo electrónico"],"Address 2 (optional)":[null,"Dirección 2 (opcional)"],"Account number":[null,"Número de cuenta"],"This is the account number and address from your UPS profile":[null,"Este es el número de cuenta y dirección de tu perfil de UPS"],"General information":[null,"Información general"],"If you need a UPS account number, go to {{a}}UPS.com{{/a}} to create a new account.":[null,"Si necesitas un número de cuenta de UPS ve a {{a}}UPS.com{{/a}} para crear una nueva cuenta."],"Set up your own UPS carrier account to compare rates and print labels from multiple carriers in WooCommerce Shipping. Learn more about adding {{a}}carrier accounts{{/a}}.":[null,"Configura tu propia cuenta de transportista de UPS para comparar tarifas e imprimir etiquetas de varios transportistas en WooCommerce Shipping. Aprende más sobre cómo añadir {{a}}cuentas de transportistas{{{/a}}."],"Connect your UPS account":[null,"Conecta a tu cuenta de UPS"],"Set up your own carrier account by adding your credentials here":[null,"Configura tu propia cuenta de transportista añadiendo aquí tus credenciales"],"Carrier account":[null,"Cuenta de transportista"],"Credentials":[null,"Credenciales"],"Adult signature required":[null,"Es obligatoria la firma de un adulto"],"Signature required":[null,"Firma obligatoria"],"Other\\u2026":[null,"Otros\\u2026"],"Select one\\u2026":[null,"Seleccionar uno\\u2026"],"Validating address\\u2026":[null,"Validando dirección\\u2026"],"Purchasing\\u2026":[null,"Comprando\\u2026"],"Your UPS account will be charged":[null,"Se cargará tu cuenta de UPS"],"Package %(index)s \\u2013 %(title)s":[null,"Paquete %(index)s \\u2013 %(title)s"],"Saving\\u2026":[null,"Guardando\\u2026"],"Your tax rates and settings will be automatically configured for %1$s. <a href=\"https://docs.woocommerce.com/document/setting-up-taxes-in-woocommerce/#section-12\">Learn more about setting up tax rates for additional nexuses</a>":[null,"Tus tarifas de impuestos y ajustes se configurarán automáticamente para %1$s. <a href=\"https://docs.woocommerce.com/document/setting-up-taxes-in-woocommerce/#section-12\">Aprende más sobre cómo configurar tarifas de impuestos para nexos adicionales</a>"],"Your tax rates and settings will be automatically configured for %1$s, %2$s. <a href=\"https://docs.woocommerce.com/document/setting-up-taxes-in-woocommerce/#section-12\">Learn more about setting up tax rates for additional nexuses</a>":[null,"Tus tarifas de impuestos y ajustes se configurarán automáticamente para %1$s, %2$s. <a href=\"https://docs.woocommerce.com/document/setting-up-taxes-in-woocommerce/#section-12\">Aprende más sobre cómo configurar tarifas de impuestos para nexos adicionales</a>"],"%(itemCount)d item is ready to be fulfilled":["%(itemCount)d items are ready to be fulfilled","%(itemCount)d elemento está listo para completar","%(itemCount)d elementos están listos para completar"],"%(itemCount)d item was fulfilled on {{span}}%(createdDate)s{{/span}}":["%(itemCount)d items were fulfilled on {{span}}%(createdDate)s{{/span}}","%(itemCount)d elemento se completó el {{span}}%(createdDate)s{{/span}}","%(itemCount)d elementos se completaron el {{span}}%(createdDate)s{{/span}}"],"Schedule a pickup":[null,"Programa una recogida"],"Label images older than 180 days are deleted by our technology partners for general security and data privacy concerns.":[null,"Las imágenes de las etiquetas de más de 180 días las borran nuestros colaboradores tecnológicos por cuestiones de seguridad y privacidad de datos."],"Labels older than 30 days cannot be refunded.":[null,"Las etiquetas de más de 30 días no se pueden reembolsar."],"Mark this order as complete and notify the customer":[null,"Marcar este pedido como completo y avisar al cliente"],"Notify the customer with shipment details":[null,"Avisar el cliente con los detalles del envío"],"You save %s with WooCommerce Shipping":[null,"Ahorras %s con WooCommerce Shipping"],"WooCommerce Shipping & Tax requires the WooCommerce plugin to be installed and active. You can download %s here.":[null,"WooCommerce Shipping & Tax necesita que esté instalado y activado el plugin WooCommerce. Puedes descargarlo aquí: %s."],"No tracking information available at this time":[null,"En este momento no hay disponible información de seguimiento"],"Connection error: unable to create label at this time":[null,"Error de conexión: en este momento no se puede crear la etiqueta"],"Track Package":["Track Packages","Seguimiento de paquete","Seguimiento de paquetes"],"Which package would you like to track?":[null,"¿Qué paquete te gustaría seguir?"],"%(service)s label (#%(labelIndex)d)":[null,"%(service)s etiqueta (#%(labelIndex)d)"],"To print this shipping label, {{a}}add a credit card to your account{{/a}}.":[null,"Para imprimir esta etiqueta de envío, {{a}}añade una tarjeta de crédito a tu cuenta{{/a}}."],"Add credit card":[null,"Añadir una tarjeta de crédito"],"To print this shipping label, {{a}}choose a credit card to add to your account{{/a}}.":[null,"Para imprimir esta etiqueta de envío, {{a}}elige una tarjeta de crédito para añadirla a tu cuenta{{/a}}."],"Choose credit card":[null,"Elegir una tarjeta de crédito"],"Buy shipping label":["Buy shipping labels","Comprar etiqueta de envío","Comprar etiquetas de envío"],"shipping label ready":["shipping labels ready","etiqueta de envío lista","etiquetas de envío listas"],"Shipping from":[null,"Envío desde"],"Shipping summary":[null,"Resumen del envío"],"Customer paid a {{shippingMethod/}} of {{shippingCost/}} for shipping":[null,"El cliente ha pagado un {{shippingMethod/}} de {{shippingCost/}} por el envío"],"Shipping rates":[null,"Tarifas de envío"],"HS Tariff number":[null,"Número del arancel del HS"],"Submit":[null,"Enviar"],"Total Weight (with package)":[null,"Peso total (con el paquete)"],"QTY":[null,"Cantidad"],"Weight":[null,"Peso"],"Items to fulfill":[null,"Elementos para rellenar"],"Select a package type":[null,"Selecciona un tipo de paquete"],"Package details":[null,"Detalles del paquete"],"Your shipping packages have been saved.":[null,"Han sido guardados tus paquetes de envío."],"0.0":[null,"0.0"],"Shipment Tracking":[null,"Seguimiento de envíos"],"Customs information valid":[null,"Información de aduanas válida"],"Customs information incomplete":[null,"Información de aduanas incompleta"],"Packing Log:":[null,"Registro de paquetería:"],"Chosen Rate:":[null,"Tarifa elegida:"],"Shipping Method ID:":[null,"ID del método de envío:"],"Shipping Method Name:":[null,"Nombre del método de envío:"],"Shipping Debug":[null,"Depuración de envíos"],"<strong>\"%2$s\" is missing weight, length, width, or height.</strong><br />Shipping rates cannot be calculated. <a href=\"%1$s\">Enter dimensions and weight for %2$s</a> so your customers can purchase this item.":[null,"<strong>A \"%2$s\" le falta el peso, largo, ancho o la altura.</strong><br />No se pueden calcular las tarifas de envío. <a href=\"%1$s\">Introduce las dimensiones y el peso de %2$s</a> para que tus clientes puedan comprar este artículo."],"Unable to send request to WooCommerce Shipping & Tax server. The timestamp generated for the signature is too old.":[null,"No ha sido posible enviar la solicitud al servidor de WooCommerce Shipping & Tax. La marca temporal generada para la firma es demasiado antigua."],"Unable to send request to WooCommerce Shipping & Tax server. Jetpack Token is malformed.":[null,"No ha sido posible enviar la solicitud al servidor de WooCommerce Shipping & Tax. El token de JetPack está mal formado."],"Unable to send request to WooCommerce Shipping & Tax server. Jetpack Token is missing":[null,"No ha sido posible enviar la solicitud al servidor de WooCommerce Shipping & Tax. Falta el token de JetPack."],"Error: The WooCommerce Shipping & Tax server returned: %1$s %2$s ( %3$d )":[null,"Error: El servidor de WooCommerce Shipping & Tax ha devuelto: %1$s %2$s (%3$d)"],"Error: The WooCommerce Shipping & Tax server returned ( %d ) and an empty response body.":[null,"Error: El servidor de WooCommerce Shipping & Tax ha devuelto (%d) y un cuerpo de respuesta vacío."],"Error: The WooCommerce Shipping & Tax server returned HTTP code: %d":[null,"Error: El servidor de WooCommerce Shipping & Tax ha devuelto un código HTTP: %d"],"Unable to encode body for request to WooCommerce Shipping & Tax server.":[null,"No ha sido posible cifrar el cuerpo para la solicitud al servidor de WooCommerce Shipping & Tax."],"Unable to send request to WooCommerce Shipping & Tax server. Body must be an array.":[null,"No ha sido posible enviar la solicitud al servidor de WooCommerce Shipping & Tax. El cuerpo debe ser un array."],"Unable to send request to WooCommerce Shipping & Tax server. Jetpack connection does not implement get_access_token.":[null,"No ha sido posible enviar la solicitud al servidor de WooCommerce Shipping & Tax. La conexión de Jetpack no implementa `get_access_token`."],"Unable to send request to WooCommerce Shipping & Tax server. Jetpack_Data was not found.":[null,"No ha sido posible enviar la solicitud al servidor de WooCommerce Shipping & Tax. No se ha encontrado Jetpack_Data."],"No shipping rate could be calculated. No items in the package are shippable.":[null,"No se ha podido calcular la tarifa de envío. Ningún artículo del paquete se puede enviar."],"Product ( ID: %d ) is missing a dimension value. Shipping rates cannot be calculated.":[null,"Al producto ( ID: %d ) le falta un valor de dimensión. No se pueden calcular las tarifas de envío."],"Product ( ID: %d ) did not include a weight. Shipping rates cannot be calculated.":[null,"El producto ( ID: %d ) no incluye peso. No se pueden calcular las tarifas de envío."],"Packing log:":[null,"Registro de paquetería:"],"Received rate: %1$s (%2$s)":[null,"Tarifa recibida: %1$s (%2$s)"],"Your customer selected {{shippingMethod/}}":[null,"Tu cliente ha elegido {{shippingMethod/}}"],"Total rate: %(total)s":[null,"Tasa total: %(total)s"],"%(serviceName)s: %(rate)s":[null,"%(serviceName)s: %(rate)s"],"No rates found":[null,"No se han encontrado tarifas"],"WooCommerce Shipping gives you access to USPS Commercial Pricing, which is discounted over Retail rates.":[null,"WooCommerce Shipping te da acceso a USPS Commercial Pricing, que tienen descuento sobre las tarifas minoristas."],"more info":[null,"más información"],"ITN":[null,"ITN"],"Sanitary / Phytosanitary inspection":[null,"Inspección sanitaria / fitosanitaria"],"Quarantine":[null,"Cuarentena"],"None":[null,"Ninguno"],"Restriction type":[null,"Tipo de restricción"],"Details":[null,"Detalles"],"Sample":[null,"Muestra"],"Gift":[null,"Regalo"],"Documents":[null,"Documentos"],"Merchandise":[null,"Mercancía"],"Contents type":[null,"Tipo de contenido"],"Return to sender if package is unable to be delivered":[null,"Devolver al remitente si el paquete no puede ser entregado"],"Value (per unit)":[null,"Valor (por unidad)"],"Weight (per unit)":[null,"Peso (por unidad)"],"Save customs form":[null,"Guardar el formulario de aduanas"],"Customs":[null,"Aduanas"],"Use address as entered":[null,"Utilizar la dirección tal y como se ha introducido"],"View on Google Maps":[null,"Ver en Google Maps"],"Verify with USPS":[null,"Verificar con USPS"],"Automatic verification failed for this address. It may still be a valid address \\u2014 use the tools below to manually verify.":[null,"Ha fallado la verificación automática para esta dirección. Aún puede ser una dirección válida: usa las siguientes herramientas para verificarla manualmente."],"We were unable to automatically verify the address.":[null,"No hemos podido verificar automáticamente la dirección."],"We were unable to automatically verify the address \\u2014 %(error)s.":[null,"No hemos podido verificar automáticamente la dirección: %(error)s."],"You've edited the address, please revalidate it for accurate rates":[null,"Has editado la dirección, vuelve a validarla para obtener tarifas precisas."],"Verify address":[null,"Verificar dirección"],"%(message)s. Please modify the address and try again.":[null,"%(message)s. Modifica la dirección y vuelve a intentarlo."],"View details":[null,"Ver detalles"],"Items":[null,"Artículos"],"Package":[null,"Paquete"],"Receipt":[null,"Recibo"],"Label #%(labelIndex)s details":[null,"Detalles de la etiqueta #%(labelIndex)s"],"{{icon/}} Delete this package":[null,"{{icon/}}} Borrar este paquete"],"Done":[null,"Hecho"],"Add boxes, envelopes, and other packages you use most frequently":[null,"Añade las cajas, sobres y otros paquetes que uses más frecuentemente"],"Remove":[null,"Quitar"],"Edit":[null,"Editar"],"Weight of empty package":[null,"Peso del paquete vacío"],"Unique package name":[null,"Nombre único del paquete"],"Envelope":[null,"Sobre"],"Box":[null,"Caja"],"This field is required.":[null,"Este campo es obligatorio."],"Payment":[null,"Pago"],"Email the label purchase receipts to %(ownerName)s (%(ownerLogin)s) at %(ownerEmail)s":[null,"Envía por correo electrónico los recibos de compra de etiquetas a %(ownerName)s (%(ownerLogin)s) a %(ownerEmail)s"],"Email Receipts":[null,"Recibos por correo electrónico"],"To purchase shipping labels, choose a credit card you have on file or add a new card.":[null,"Para comprar etiquetas de envío elige una tarjeta de crédito que tengas guardada o añade una nueva tarjeta."],"Choose a different card":[null,"Elige una tarjeta diferente"],"To purchase shipping labels, add a credit card.":[null,"Para comprar etiquetas de envío, añade una tarjeta de crédito."],"We'll charge the credit card on your account (%(card)s) to pay for the labels you print":[null,"Haremos un cargo en la tarjeta de crédito de tu cuenta (%(card)s) para pagar las etiquetas que imprimas"],"Credit cards are retrieved from the following WordPress.com account: %(wpcomLogin)s <%(wpcomEmail)s>":[null,"Las tarjetas de crédito se obtienen de la siguiente dirección de WordPress.com: %(wpcomLogin)s <%(wpcomEmail)s>"],"Only the site owner can change these settings. Please contact %(ownerName)s (%(ownerLogin)s) to change the shipping label settings.":[null,"Solo el propietario del sitio puede cambiar estos ajustes. Por favor, contacta con %(ownerName)s (%(ownerLogin)s) para cambiar los ajustes de etiquetas de envío."],"Only the site owner can manage shipping label payment methods. Please contact %(ownerName)s (%(ownerLogin)s) to manage payment methods.":[null,"Solo el propietario del sitio puede administrar los métodos de pago de etiquetas de envío. Por favor, contactda con %(ownerName)s (%(ownerLogin)s) para que administre los métodos de pago."],"%(card)s ****%(digits)s":[null,"%(tarjeta)s ****%(digits)s"],"Print shipping labels yourself and save a trip to the post office":[null,"Imprime tú mismo las etiquetas de envío y ahórrate un viaje a la oficina de correos"],"H":[null,"Al"],"W":[null,"An"],"L":[null,"L"],"Disconnect":[null,"Desconectar"],"Activate":[null,"Activar"],"No activity yet":[null,"Todavía no hay actividad"],"Note":[null,"Nota"],"Refunded %(amount)s":[null,"Reembolsado %(amount)s"],"%(service)s label (#%(labelNum)d) refund rejected":[null,"reembolso de etiqueta de %(service)s (#%(labelNum)d) rechazado"],"%(service)s label (#%(labelNum)d) refunded (%(amount)s)":[null,"reembolsado (%(amount)s) de etiqueta de %(service)s (#%(labelNum)d) rechazado"],"%(service)s label (#%(labelNum)d) refund requested (%(amount)s)":[null,"%(service)s etiqueta (#%(labelNum)d) solicitud de reembolso (%(amount)s)"],"Note sent to customer":[null,"Nota enviada al cliente"],"Internal note":[null,"Nota interna"],"Show notes from %(date)s":[null,"Mostrar notas desde %(date)s"],"%(count)s event":["%(count)s events","%(count)s evento","%(count)s eventos"],"WeChat Pay":[null,"WeChat Pay"],"Toggle menu":[null,"Alternar menú"],"Return to Order #%(orderId)s":[null,"Volver al pedido #%(orderId)s"],"Our team is here for you. View our {{docsA}}support docs{{/docsA}} or {{ticketA}}open a support ticket{{/ticketA}}.":[null,"Nuestro equipo está aquí para ti. Ve nuestros {{docsA}}documentos de soporte{{/docsA}} o {{ticketA}}abre un ticket de soporte{{/ticketA}}."],"Logging":[null,"Registro"],"No services configured. {{a}}Add a shipping service{{/a}}":[null,"No hay configurado ningún servicio. {{a}}Añade un servicio de envío{{/a}}"],"Edit service settings":[null,"Editar ajustes del servicio"],"Request was made %s - check logs below or {{a}}edit service settings{{/a}}":[null,"La solicitud la hizo %s - revisa los registros abajo o {{a}}edita los ajustes del servicio{{/a}}"],"Copy for support":[null,"Copiar para soporte"],"Last %s entry. {{a}}Show full log{{/a}}":["Last %s entries. {{a}}Show full log{{/a}}","Última %s entrada. {{a}}Mostrar registro completo{{/a}}","Últimas %s entradas. {{a}}Mostrar registro completo{{/a}}"],"Log tail copied to clipboard":[null,"Cola del registro copiada al portapapeles"],"You have unsaved changes. Are you sure you want to leave this page?":[null,"Tienes cambios sin guardar. ¿Estás seguro de querer abandonar esta página?"],"Value ($ per unit)":[null,"Value ($ per unit)"],"Weight (%s per unit)":[null,"Weight (%s per unit)"],"Description":[null,"Descripción"],"Country where the product was manufactured or assembled":[null,"País donde se fabricó o ensambló el producto"],"Origin country":[null,"País de origen"],"USPS":[null,"USPS"],"Optional":[null,"Opcional"],"Retry":[null,"Reintentar"],"shipping label printing":[null,"impresión de etiquetas de envío"],"shipping label printing and smoother payment setup":[null,"impresión de etiquetas de envío y una configuración de pago más sencilla"],"automated tax calculation and shipping label printing":[null,"cálculo automático de impuestos e impresión de etiquetas de envío"],"automated tax calculation, shipping label printing, and smoother payment setup":[null,"cálculo automático de impuestos, impresión de etiquetas de envío y configuración de pagos más sencilla"],"Data resource description.":[null,"Descripción del recurso de datos."],"Data resource ID.":[null,"ID del recurso de datos."],"List of supported currencies.":[null,"Lista de monedas disponibles."],"List of supported states in a given country.":[null,"Lista de provincias incluidas para un país dado."],"List of supported continents, countries, and states.":[null,"Lista de continentes, países y provincias incluidos."],"Sorry, you cannot view this resource.":[null,"Lo siento, no puedes ver este recurso."],"Sorry, you cannot list resources.":[null,"Lo siento, no puedes listar recursos."],"The unit weights are defined in for this country.":[null,"Las unidades de peso definidas para este país."],"Thousands separator for displayed prices in this country.":[null,"Separador de miles para los precios mostrados en este país."],"Full name of state.":[null,"Nombre completo de la provincia."],"State code.":[null,"Código de la provincia."],"List of states in this country.":[null,"Lista de provincias de este país."],"Number of decimal points shown in displayed prices for this country.":[null,"Número de decimales mostrados en los precios visibles para este país."],"Full name of country.":[null,"Nombre completo del país."],"The unit lengths are defined in for this country.":[null,"Las unidades de medida definidas para este país."],"Decimal separator for displayed prices for this country.":[null,"Separador decimal para los precios mostrados para este país."],"Currency symbol position for this country.":[null,"Posición del símbolo de moneda para este país."],"Default ISO4127 alpha-3 currency code for the country.":[null,"Código de moneda ISO4127 alpha-3 por defecto para el país."],"ISO3166 alpha-2 country code.":[null,"Código ISO3166 alpha-2 del país."],"List of countries on this continent.":[null,"Lista de países de este continente."],"Full name of continent.":[null,"Nombre completo del continente."],"There are no locations matching these parameters.":[null,"No hay ubicaciones que coincidan con estos parámetros."],"2 character continent code.":[null,"Código de 2 caracteres del continente."],"Shipping label tracking number":[null,"Número de seguimiento de la etiqueta de envío"],"Shipping label service":[null,"Servicio de etiquetas de envío"],"Warning: Erasing personal data will cause the ability to reprint or refund WooCommerce Shipping & Tax shipping labels to be lost on the affected orders.":[null,"Advertencia: El borrado de datos personales provocará la posibilidad de volver a imprimir o reembolsar etiquetas de envío de WooCommerce Shipping & Tax que hayan desaparecido en los pedidos afectados."],"By using this extension, you may be storing personal data or sharing data with external services. <a href=\"%s\" target=\"_blank\">Learn more about how this works, including what you may want to include in your privacy policy.</a>":[null,"Al usar esta extensión puede que estés almacenando datos personales o compartiendo datos con servicios externos. <a href=\"%s\" target=\"_blank\">Aprende más sobre cómo funciona esto, incluyendo lo que quieras incluir en tu política de privacidad.</a>"],"There was a problem updating your saved credit cards.":[null,"Hubo un problema al actualizar tus tarjetas de crédito guardadas."],"No labels found for this period":[null,"No se han encontrado etiquetas en este periodo"],"Total":[null,"Total"],"Refund":[null,"Reembolso"],"Price":[null,"Precio"],"Order":[null,"Pedido"],"Time":[null,"Hora"],"Requested":[null,"Solicitado"],"Last 7 days":[null,"Últimos 7 días"],"This month":[null,"Este mes"],"Last month":[null,"El mes pasado"],"Year":[null,"Año"],"Export CSV":[null,"Exportar CSV"],"Other Log":[null,"Otros registros"],"Taxes Log":[null,"Registro de impuestos"],"Shipping Log":[null,"Registro de envíos"],"Display troubleshooting information on the Cart and Checkout pages.":[null,"Muestra información para resolución de problemas en las páginas de carrito y finalizar compra."],"Write diagnostic messages to log files. Helpful when contacting support.":[null,"Escribe mensajes de diagnóstico en los archivos de registro. Útil al contactar con soporte."],"Enter your email address at which to accept payments. You'll need to link your own account in order to perform anything other than \"sale\" transactions.":[null,"Introduce tu dirección de correo electrónico en la que aceptas pagos. Tendrás que enlazar a tu cuenta para realizar cualquier otra cosa además de las transacciones de \"ofertas\"."],"Payment Email":[null,"Correo electrónico de pagos"],"To authenticate payments with WooCommerce Shipping & Tax, <a href=\"%s\">click here</a>.":[null,"Para identificar pagos con WooCommerce Shipping & Tax, <a href=\"%s\">haz clic aquí</a>."],"Payments will be authenticated by WooCommerce Shipping & Tax and directed to the following email address. To disable this feature and link a PayPal account, <a href=\"%s\">click here</a>.":[null,"Los pagos los identificará WooCommerce Shipping & Tax y se dirigirán a la siguiente dirección de correo electrónico. Para desactivar esta característica y enlazar a una cuenta de PayPal, <a href=\"%s\">haz clic aquí</a>."],"%s (Note that \"authorizing payment only\" requires linking a PayPal account.)":[null,"%s (Date cuenta que \"autorizar solo pagos\" requiere enlazar con una cuenta de PayPal.)"],"Link account":[null,"Enlazar cuenta"],"Link a new or existing PayPal account to make sure future orders are marked “Processing” instead of “On hold”, and so refunds can be issued without leaving WooCommerce.":[null,"Enlaza una cuenta de PayPal nueva o existente para asegurar que los pedidos futuros se marquen como \"Procesando\" en vez de \"En espera\", y para emitir reembolsos sin tener que salir de WooCommerce."],"Link your PayPal account":[null,"Enlaza a tu cuenta de PayPal"],"To issue refunds via PayPal Checkout, you will need to <a href=\"%s\">link a PayPal account</a> with the email address that received this payment.":[null,"Para enviar reembolsos a través de PayPal Exprés tendrás que <a href=\"%s\">enlazar a una cuenta de PayPal</a> con la dirección de correo electrónico que recibió este pago."],"Link a PayPal account":[null,"Enlaza a una cuenta PayPal"],"Refresh":[null,"Recargar"],"Tracking number":[null,"Número de seguimiento"],"Provider":[null,"Proveedor"],"WooCommerce Shipping & Tax is almost ready to go! Once you connect Jetpack you'll have access to %s.":[null,"¡WooCommerce Shipping & Tax está casi listo! Una vez que conectes con Jetpack, tendrás acceso a %s."],"Hosted services for WooCommerce: automated tax calculation, shipping label printing, and smoother payment setup.":[null,"Servicios alojados para WooCommerce: cálculos automáticos de impuestos, tarifas de envío en directo, impresión de etiquetas de envío y una configuración de pago más sencilla."],"Tax Class":[null,"Clase de impuesto"],"Shipping":[null,"Envío"],"Compound":[null,"Compuesto"],"Priority":[null,"Prioridad"],"Tax Name":[null,"Nombre de impuesto"],"Rate %":[null,"Tarifa %"],"ZIP/Postcode":[null,"Código postal"],"State Code":[null,"Código de provincia"],"Country Code":[null,"Código de país"],"Enable automated taxes":[null,"Activar impuestos automáticos"],"Disable automated taxes":[null,"Desactivar impuestos automáticos"],"Automated taxes":[null,"Impuestos automáticos"],"By clicking \"%1$s\", you agree to the <a href=\"%2$s\">Terms of Service</a> and to <a href=\"%3$s\">share certain data and settings</a> with WordPress.com and/or third parties.":[null,"Haciendo clic en \"%1$s\" aceptas los <a href=\"%2$s\">términos del servicio</a> y a <a href=\"%3$s\">compartir ciertos datos y ajustes</a> con WordPress.com y/o otros."],"Setup complete.":[null,"Configuración completa."],"You can now enjoy %s.":[null,"Ya puedes disfrutar %s."],"WooCommerce Shipping & Tax is almost ready to go! Once you connect your store you'll have access to %s.":[null,"¡WooCommerce Shipping & Tax está casi listo! Una vez que conectes tu tienda tendrás acceso a %s."],"automated tax calculation":[null,"cálculo automático de impuestos"],"smoother payment setup":[null,"configuración de pago más sencilla"],"automated tax calculation and smoother payment setup":[null,"cálculo automático de impuestos y configuración de pago más sencilla"],"Required":[null,"Requerido"],"Your shipping settings have been saved.":[null,"Tus ajustes de envío se han guardado."],"Unable to save your shipping settings. Please try again.":[null,"No ha sido posible guardar tus ajustes de envío. Por favor, inténtalo de nuevo."],"Dimensions":[null,"Dimensiones"],"Close":[null,"Cerrar"],"Packages to be Shipped":[null,"Paquetes a enviar"],"Add to a New Package":[null,"Añadir a un nuevo paquete"],"Add items":[null,"Añadir artículos"],"Individually Shipped Item":[null,"Artículo enviado individualmente"],"Item Dimensions":[null,"Dimensiones del artículo"],"Please select a package":[null,"Por favor, elige un paquete"],"Service schemas were not loaded":[null,"No se cargaron los esquemas del servicio"],"Bad request":[null,"Petición errónea"],"Order not found":[null,"Pedido no encontrado"],"Got it, thanks!":[null,"¡Entendido, gracias!"],"Activate Jetpack and connect":[null,"Activa Jetpack y conecta"],"Install Jetpack and connect":[null,"Instala Jetpack y conecta"],"Something went wrong. Please try connecting to Jetpack manually, or contact support on the WordPress.org forums.":[null,"Algo fue mal. Por favor, trata de conectar manualmente con Jetpack, o contacta con soporte en los foros de WordPress.org."],"Connecting...":[null,"Conectando…"],"Activating...":[null,"Activando…"],"When you're ready, purchase and print discounted labels from %s right here.":[null,"Cuando estés listo, compra e imprime etiquetas de %s con descuento aquí mismo."],"Discounted Shipping Labels":[null,"Etiquetas de envío con descuento"],"American Express":[null,"American Express"],"Discover":[null,"Descubre"],"MasterCard":[null,"MasterCard"],"VISA":[null,"VISA"],"PayPal":[null,"PayPal"],"Add another credit card":[null,"Añadir otra tarjeta de créditoi"],"%(selectedCount)d package selected":["%(selectedCount)d packages selected","%(selectedCount)d paquete seleccionado","%(selectedCount)d paquetes seleccionados"],"Unable to get your settings. Please refresh the page to try again.":[null,"No ha sido posible recuperar tus ajustes. Por favor, recarga la página para intentarlo de nuevo."],"%(numSelected)d service selected":["%(numSelected)d services selected","%(numSelected)d servicio seleccionado","%(numSelected)d servicios seleccionados"],"Add and edit saved packages using the {{a}}Packaging Manager{{/a}}.":[null,"Añade y edita los paquetes guardados usando el {{a}}Gestor de paquetería{{/a}}."],"Tracking #: {{trackingLink/}}":[null,"Seguimiento #: {{trackingLink/}}"],"%(item)s from {{pckg/}}":[null,"%(item)s desde {{pckg/}}"],"Which items would you like to add to {{pckg/}}?":[null,"¿Qué artículos te gustaría añadir a {{pckg/}}?"],"1 item in 1 package: %(weight)s %(unit)s total":[null,"1 artículo en 1 paquete: %(weight)s %(unit)s en total"],"%(itemsCount)d items in 1 package: %(weight)s %(unit)s total":[null,"%(itemsCount)d artículos en 1 paquete: %(weight)s %(unit)s en total"],"%(itemsCount)d items in %(packageCount)d packages: %(weight)s %(unit)s total":[null,"%(itemsCount)d artículos en %(packageCount)d paquetes: %(weight)s %(unit)s en total"],"{{itemLink/}} is currently saved for a later shipment.":[null,"{{itemLink/}} está actualmente guardado para un envío posterior."],"{{itemLink/}} is currently shipped in its original packaging.":[null,"{{itemLink/}} está actualmente enviado en su paquete original."],"{{itemLink/}} is currently in {{pckg/}}.":[null,"{{itemLink/}} está en actualmente en {{pckg/}}."],"Choose rate: %(pckg)s":[null,"Elegir tarifa: %(pckg)s"],"Refund label (-%(amount)s)":[null,"Etiqueta de reembolso (-%(amount)s)"],"Where would you like to move it?":[null,"¿A dónde te gustaría moverlo?"],"Unsaved changes made to packages":[null,"Los cambios realizados a los paquetes no se han guardado"],"There are no items in this package.":[null,"No existen artículos en este paquete."],"Ship in original packaging":[null,"Enviar en su paquete original"],"Request refund":[null,"Solicitar reembolso"],"Reprint":[null,"Volver a imprimir"],"Paper size":[null,"Tamaño del papel"],"No packages selected":[null,"No hay paquetes seleccionados"],"Move":[null,"Mover"],"Move item":[null,"Mover artículo"],"Increase the rates calculated by the carrier to account for packaging and handling costs. You can also add a negative amount to save your customers money.":[null,"Incrementa las tarifas calculadas por el transportista a la cantidad de los costes de empaquetado y manipulado. También puedes añadir una cantidad negativa para ahorrar dinero a tus clientes."],"Create new label":[null,"Crear nueva etiqueta"],"All packages selected":[null,"Seleccionados todos los paquetes"],"Add":[null,"Añadir"],"Add item":[null,"Añadir artículo"],"Add a credit card":[null,"Añadir una tarjeta de crédito"],"#%d - [Deleted product]":[null,"#%d - [producto borrado]"],"#%1$d - %2$s":[null,"#%1$d - %2$s"],"<a href=\"%s\">Support</a>":[null,"<a href=\"%s\">Soporte</a>"],"There was an error installing Jetpack. Please try installing it manually.":[null,"Hubo un error al instalar Jetpack. Por favor, trata de instalarlo manualmente."],"Shipping Labels":[null,"Etiquetas de envío"],"https://woocommerce.com/":[null,"https://woocommerce.com/"],"Phone":[null,"Teléfono"],"Connect":[null,"Conectar"],"Save Settings":[null,"Guardar ajustes"],"Your changes have been saved.":[null,"Tus cambios se han guardado."],"There was a problem with one or more entries. Please fix the errors below and try saving again.":[null,"Hubo un problema con una o más entradas. Por favor, soluciona los errores de abajo y trata de guardar de nuevo."],"Expand":[null,"Ampliar"],"Dismiss":[null,"Descartar"],"You have unsaved changes.":[null,"Tienes cambios sin guardar."],"Type of package":[null,"Tipo de paquete"],"Add package":["Add packages","Añadir paquete",""],"Invalid value.":[null,"Valor no válido."],"This field is required":[null,"Este campo es obligatorio"],"Package name":[null,"Nombre del paquete"],"This field must be unique":[null,"Este campo debe ser único"],"Unable to save your shipping packages. Please try again.":[null,"No se han podido guardar tus paquetes de envío. Por favor, inténtalo de nuevo."],"Save changes":[null,"Guardar cambios"],"Untitled":[null,"Sin título"],"Dimensions (L x W x H)":[null,"Dimensiones (L x An x Al)"],"All services selected":[null,"Seleccionados todos los servicios"],"Expand Services":[null,"Expandir servicios"],"Service":[null,"Servicio"],"Price adjustment":[null,"Ajuste de precio"],"Saved Packages":[null,"Paquetes guardados"],"Tracking":[null,"Seguimiento"],"Create shipping label":["Create shipping labels","Crear etiqueta de envío",""],"Name":[null,"Nombre"],"Company":[null,"Empresa"],"Address":[null,"Dirección"],"City":[null,"Ciudad"],"State":[null,"Provincia"],"Country":[null,"País"],"Invalid address":[null,"Dirección no válida"],"Origin address":[null,"Dirección de origen"],"Destination address":[null,"Dirección de destino"],"We have slightly modified the address entered. If correct, please use the suggested address to ensure accurate delivery.":[null,"Hemos modificado ligeramente la dirección introducida. Si es correcta, por favor, utiliza la dirección sugerida para asegurar una entrega precisa."],"Address entered":[null,"Dirección introducida"],"Edit address":[null,"Editar dirección"],"Suggested address":[null,"Dirección sugerida"],"Use selected address":[null,"Usar la dirección seleccionada"],"Use these packages":[null,"Utilizar estos paquetes"],"The service and rate chosen by the customer at checkout is not available. Please choose another.":[null,"El servicio y la tarifa elegidos por el cliente en el pago no están disponibles. Por favor, elige otro."],"Request a refund":[null,"Solicitar un reembolso"],"You can request a refund for a shipping label that has not been used to ship a package. It will take at least %(days)s days to process.":[null,"Puedes solicitar un reembolso de una etiqueta de envío que no se haya utilizado para enviar un paquete. Tardará al menos %(días)s en procesarse."],"Purchase date":[null,"Fecha de compra"],"Amount eligible for refund":[null,"Cantidad elegible para el reembolso"],"Reprint shipping label":[null,"Volver a imprimir la etiqueta de envío"],"If there was a printing error when you purchased the label, you can print it again.":[null,"Si hay un problema de impresión cuando compres la etiqueta puedes imprimirla de nuevo."],"NOTE: If you already used the label in a package, printing and using it again is a violation of our terms of service and may result in criminal charges.":[null,"NOTA: Si ya has usado la etiqueta en un paquete, imprimirla y usarla de nuevo es una violación de nuestros términos del servicio y podría resultar en cargos criminales."],"Print":[null,"Imprimir"],"Cancel":[null,"Cancelar"],"N/A":[null,"N/D"],"More":[null,"Más"],"Invalid PDF request.":[null,"Petición de PDF no válida."],"Unknown package":[null,"Paquete desconocido"],"Individual packaging":[null,"Empaquetado individual"],"Unable to update service settings. Validation failed. %s":[null,"No ha sido posible actualizar los ajustes del servicio. Falló la validación. %s"],"Unable to update service settings. The form data could not be read.":[null,"No ha sido posible actualizar los ajustes del servicio. Los datos del formulario no pudieron leerse."],"Unable to update service settings. Form data is missing service ID.":[null,"No ha sido posible actualizar los ajustes del servicio. Los datos del formulario son de un ID de servicio no disponible."],"Unable to update settings. The form data could not be read.":[null,"No fue posible actualizar los ajustes. Los datos del formulario no se han podido leer."],"Unable to update settings. %s":[null,"No ha sido posible actualizar los ajustes. %s"],"Packaging":[null,"Paquetería"],"Section not loading? Visit the <a href=\"%s\">status page</a> for troubleshooting steps.":[null,"¿No carga la sección? Visita la <a href=\"%s\">página de estado</a> para ver los pasos de solución de problemas."],"Note: Jetpack development mode is enabled on this site. This site will not be able to obtain payment methods from WooCommerce Shipping & Tax production servers.":[null,"Nota: El modo de desarrollo de Jetpack está activo en este sitio. Este sitio no podrá obtener métodos de pago de los servidores de producción de WooCommerce Shipping & Tax."],"Note: Jetpack is connected, but development mode is also enabled on this site. Please disable development mode.":[null,"Nota: Jetpack está conectado, pero también está activo el modo de desarrollo en este sitio. Por favor, desactiva el modo de desarrollo."],"Shipping Label":[null,"Etiqueta de envío"],"yd":[null,"yd"],"in":[null,"en"],"mm":[null,"mm"],"cm":[null,"cm"],"m":[null,"m"],"oz":[null,"oz"],"lbs":[null,"lbs"],"g":[null,"g"],"kg":[null,"kg"],"An invalid service ID was received.":[null,"Se ha recibido un ID de servicio no válido."],"An invalid service instance was received.":[null,"Se ha recibido una instancia de servicio no válida."],"Rest of the World":[null,"Resto del mundo"],"Support":[null,"Soporte"],"Debug":[null,"Depuración"],"Services":[null,"Servicios"],"Need help?":[null,"¿Necesitas ayuda?"],"Log is empty":[null,"El registro está vacío"],"Disabled":[null,"Desactivado"],"Enabled":[null,"Activo"],"%s Shipping Zone":[null,"%s zona de envío"],"The most recent rate request failed":[null,"La reciente petición de tarifas más reciente falló"],"The most recent rate request was successful":[null,"La petición de tarifas más reciente tuvo éxito"],"No rate requests have yet been made for this service":[null,"Aún no han habido peticiones de tarifas para este servicio"],"Setup for this service has not yet been completed":[null,"La configuración de este servició aún no se ha completado"],"Service data is up-to-date":[null,"Los datos del servicio están al día"],"Service data was found, but is more than one day old":[null,"Se encontaron datos del servicio, pero son de hace más de un día"],"Service data was found, but is more than three days old":[null,"Se encontraron datos del servicio, pero son de hace más de tres días"],"Service data found, but may be out of date":[null,"Se han encontrado datos del servicio, pero podrían ser obsoletos"],"No service data available":[null,"No hay disponibles datos del servicio"],"Jetpack":[null,"Jetpack"],"Jetpack %s is connected and working correctly":[null,"Jetpack %s está conectado y funcionando correctamente"],"This is a Jetpack staging site":[null,"Este es un sitio en pruebas de Jetpack"],"Jetpack is not connected to WordPress.com. Make sure the Jetpack plugin is installed, activated, and connected.":[null,"Jetpack no está conectado a WordPress.com. Asegúrate de que el plugin Jetpack está instalado, activo y conectado."],"Jetpack %1$s or higher is required (You are running %2$s)":[null,"Se necesita Jetpack %1$s o superior (estás ejecutando la versión %2$s)"],"Please install and activate the Jetpack plugin, version %s or higher":[null,"Por favor, instala y activa el plugin Jetpack, en su versión %s o superior"],"WooCommerce":[null,"WooCommerce"],"WooCommerce %s is configured correctly":[null,"WooCommerce %s está configurado correctamente"],"Please set Base Location in WooCommerce Settings > General":[null,"Por favor, establece la ubicación base en Ajustes de WooCommerce > General"],"WooCommerce %1$s or higher is required (You are running %2$s)":[null,"Se necesita WooCommerce %1$s o superior (estás ejecutando la versión %2$s)"],"Dismiss this notice":[null,"Descartar este aviso"],"ERROR: Your site has a problem connecting to the WooCommerce Shipping & Tax API. Please make sure your Jetpack connection is working.":[null,"ERROR: Tu sitio tiene un problema al conectar con la API de WooCommerce Shipping & Tax. Por favor, aségurate de que está funcionando tu conexión de Jetpack."],"Your site is succesfully communicating to the WooCommerce Shipping & Tax API.":[null,"Tu sitio se está comunicando correctamente con la API de WooCommerce Shipping & Tax."],"This will test your WooCommerce Shipping & Tax connection to ensure everything is working correctly":[null,"Esto probará tu conexión de WooCommerce Shipping & Tax para asegurar que todo funciona correctamente"],"Test Connection":[null,"Probar conexión"],"The WooCommerce Shipping & Tax brandname\u0004WooCommerce Shipping & Tax":[null,"WooCommerce Shipping & Tax"],"The WooCommerce Shipping & Tax brandname\u0004WooCommerce Shipping":[null,"WooCommerce Shipping"],"%s - ZIP/Postal code checkout field label\u0004Invalid %s entered.":[null,"%s introducido no válido."],"%s - ZIP/Postal code checkout field label\u0004%s does not match the selected state.":[null,"%s no coincide con la provincia seleccionada."],"date is of the form MM/YY\u0004Expires %(date)s":[null,"Caduca %(date)s"],"A service with an unknown title and unknown method_title\u0004Unknown":[null,"Desconocido"],"This section displays the overall health of WooCommerce Shipping & Tax and the things it depends on\u0004Health":[null,"Salud"]}
i18n/languages/woocommerce-services-es_ES.mo CHANGED
Binary file
i18n/languages/woocommerce-services-es_ES.po CHANGED
@@ -51,7 +51,7 @@ msgstr "Muestra las tarifas en vivo directamente en tu tienda - nunca vuelvas a
51
  msgid "Live rates at checkout"
52
  msgstr "Tarifas en vivo al finalizar la compra"
53
 
54
- #: i18n/strings.php:354
55
  msgid "Last updated %s."
56
  msgstr "Última actualización %s."
57
 
@@ -206,7 +206,7 @@ msgstr "Funciona con WooCommerce Tax. Si están activados los impuestos automát
206
  msgid "WooCommerce Helper auth is missing"
207
  msgstr "Falta la identificación de WooCommerce Helper"
208
 
209
- #: i18n/strings.php:364 i18n/strings.php:428
210
  msgid "USPS labels without tracking are not eligible for refund."
211
  msgstr "Las etiquetas de USPS sin seguimiento no son elegibles para reembolso."
212
 
@@ -226,11 +226,11 @@ msgstr "%(carrierName)s no es compatible."
226
  msgid "Loading"
227
  msgstr "Cargando"
228
 
229
- #: i18n/strings.php:353
230
  msgid "WooCommerce Shipping & Tax Data"
231
  msgstr "WooCommerce Shipping & Tax Data"
232
 
233
- #: i18n/strings.php:372 i18n/strings.php:436
234
  msgid "Print customs form"
235
  msgstr "Imprimir impreso de aduanas"
236
 
@@ -277,8 +277,8 @@ msgid "Invalid WooCommerce Shipping & Tax service slug provided"
277
  msgstr "Slug de servicio de WooCommerce Shipping & Tax no válido proporcionado"
278
 
279
  #. Plugin Name of the plugin
280
- #: classes/class-wc-connect-privacy.php:36
281
  #: classes/class-wc-connect-settings-pages.php:123
 
282
  msgid "WooCommerce Shipping & Tax"
283
  msgstr "WooCommerce Shipping & Tax"
284
 
@@ -411,7 +411,7 @@ msgstr "Seleccionar uno\\u2026"
411
  msgid "Validating address\\u2026"
412
  msgstr "Validando dirección\\u2026"
413
 
414
- #: i18n/strings.php:326 i18n/strings.php:405 i18n/strings.php:469
415
  msgid "Purchasing\\u2026"
416
  msgstr "Comprando\\u2026"
417
 
@@ -423,7 +423,7 @@ msgstr "Se cargará tu cuenta de UPS"
423
  msgid "Package %(index)s \\u2013 %(title)s"
424
  msgstr "Paquete %(index)s \\u2013 %(title)s"
425
 
426
- #: i18n/strings.php:6 i18n/strings.php:170 i18n/strings.php:482
427
  msgid "Saving\\u2026"
428
  msgstr "Guardando\\u2026"
429
 
@@ -437,27 +437,27 @@ msgstr "Tus tarifas de impuestos y ajustes se configurarán automáticamente par
437
  msgid "Your tax rates and settings will be automatically configured for %1$s, %2$s. <a href=\"https://docs.woocommerce.com/document/setting-up-taxes-in-woocommerce/#section-12\">Learn more about setting up tax rates for additional nexuses</a>"
438
  msgstr "Tus tarifas de impuestos y ajustes se configurarán automáticamente para %1$s, %2$s. <a href=\"https://docs.woocommerce.com/document/setting-up-taxes-in-woocommerce/#section-12\">Aprende más sobre cómo configurar tarifas de impuestos para nexos adicionales</a>"
439
 
440
- #: i18n/strings.php:480
441
  msgid "%(itemCount)d item is ready to be fulfilled"
442
  msgid_plural "%(itemCount)d items are ready to be fulfilled"
443
  msgstr[0] "%(itemCount)d elemento está listo para completar"
444
  msgstr[1] "%(itemCount)d elementos están listos para completar"
445
 
446
- #: i18n/strings.php:479
447
  msgid "%(itemCount)d item was fulfilled on {{span}}%(createdDate)s{{/span}}"
448
  msgid_plural "%(itemCount)d items were fulfilled on {{span}}%(createdDate)s{{/span}}"
449
  msgstr[0] "%(itemCount)d elemento se completó el {{span}}%(createdDate)s{{/span}}"
450
  msgstr[1] "%(itemCount)d elementos se completaron el {{span}}%(createdDate)s{{/span}}"
451
 
452
- #: i18n/strings.php:371 i18n/strings.php:435
453
  msgid "Schedule a pickup"
454
  msgstr "Programa una recogida"
455
 
456
- #: i18n/strings.php:367 i18n/strings.php:431
457
  msgid "Label images older than 180 days are deleted by our technology partners for general security and data privacy concerns."
458
  msgstr "Las imágenes de las etiquetas de más de 180 días las borran nuestros colaboradores tecnológicos por cuestiones de seguridad y privacidad de datos."
459
 
460
- #: i18n/strings.php:363 i18n/strings.php:427
461
  msgid "Labels older than 30 days cannot be refunded."
462
  msgstr "Las etiquetas de más de 30 días no se pueden reembolsar."
463
 
@@ -478,26 +478,26 @@ msgstr "Ahorras %s con WooCommerce Shipping"
478
  msgid "WooCommerce Shipping & Tax requires the WooCommerce plugin to be installed and active. You can download %s here."
479
  msgstr "WooCommerce Shipping & Tax necesita que esté instalado y activado el plugin WooCommerce. Puedes descargarlo aquí: %s."
480
 
481
- #: i18n/strings.php:408
482
  msgid "No tracking information available at this time"
483
  msgstr "En este momento no hay disponible información de seguimiento"
484
 
485
- #: i18n/strings.php:478
486
  msgid "Connection error: unable to create label at this time"
487
  msgstr "Error de conexión: en este momento no se puede crear la etiqueta"
488
 
489
- #: i18n/strings.php:474 i18n/strings.php:476
490
  msgid "Track Package"
491
  msgid_plural "Track Packages"
492
  msgstr[0] "Seguimiento de paquete"
493
  msgstr[1] "Seguimiento de paquetes"
494
 
495
- #: i18n/strings.php:426
496
  msgid "Which package would you like to track?"
497
  msgstr "¿Qué paquete te gustaría seguir?"
498
 
499
- #: i18n/strings.php:373 i18n/strings.php:404 i18n/strings.php:437
500
- #: i18n/strings.php:468
501
  msgid "%(service)s label (#%(labelIndex)d)"
502
  msgstr "%(service)s etiqueta (#%(labelIndex)d)"
503
 
@@ -585,7 +585,7 @@ msgstr "Han sido guardados tus paquetes de envío."
585
  msgid "0.0"
586
  msgstr "0.0"
587
 
588
- #: woocommerce-services.php:1449
589
  msgid "Shipment Tracking"
590
  msgstr "Seguimiento de envíos"
591
 
@@ -597,23 +597,23 @@ msgstr "Información de aduanas válida"
597
  msgid "Customs information incomplete"
598
  msgstr "Información de aduanas incompleta"
599
 
600
- #: woocommerce-services.php:1492
601
  msgid "Packing Log:"
602
  msgstr "Registro de paquetería:"
603
 
604
- #: woocommerce-services.php:1479
605
  msgid "Chosen Rate:"
606
  msgstr "Tarifa elegida:"
607
 
608
- #: woocommerce-services.php:1475
609
  msgid "Shipping Method ID:"
610
  msgstr "ID del método de envío:"
611
 
612
- #: woocommerce-services.php:1471
613
  msgid "Shipping Method Name:"
614
  msgstr "Nombre del método de envío:"
615
 
616
- #: woocommerce-services.php:1455
617
  msgid "Shipping Debug"
618
  msgstr "Depuración de envíos"
619
 
@@ -621,15 +621,15 @@ msgstr "Depuración de envíos"
621
  msgid "<strong>\"%2$s\" is missing weight, length, width, or height.</strong><br />Shipping rates cannot be calculated. <a href=\"%1$s\">Enter dimensions and weight for %2$s</a> so your customers can purchase this item."
622
  msgstr "<strong>A \"%2$s\" le falta el peso, largo, ancho o la altura.</strong><br />No se pueden calcular las tarifas de envío. <a href=\"%1$s\">Introduce las dimensiones y el peso de %2$s</a> para que tus clientes puedan comprar este artículo."
623
 
624
- #: classes/class-wc-connect-api-client.php:595
625
  msgid "Unable to send request to WooCommerce Shipping & Tax server. The timestamp generated for the signature is too old."
626
  msgstr "No ha sido posible enviar la solicitud al servidor de WooCommerce Shipping & Tax. La marca temporal generada para la firma es demasiado antigua."
627
 
628
- #: classes/class-wc-connect-api-client.php:534
629
  msgid "Unable to send request to WooCommerce Shipping & Tax server. Jetpack Token is malformed."
630
  msgstr "No ha sido posible enviar la solicitud al servidor de WooCommerce Shipping & Tax. El token de JetPack está mal formado."
631
 
632
- #: classes/class-wc-connect-api-client.php:527
633
  msgid "Unable to send request to WooCommerce Shipping & Tax server. Jetpack Token is missing"
634
  msgstr "No ha sido posible enviar la solicitud al servidor de WooCommerce Shipping & Tax. Falta el token de JetPack."
635
 
@@ -663,7 +663,6 @@ msgid "Unable to send request to WooCommerce Shipping & Tax server. Jetpack_Data
663
  msgstr "No ha sido posible enviar la solicitud al servidor de WooCommerce Shipping & Tax. No se ha encontrado Jetpack_Data."
664
 
665
  #: classes/class-wc-connect-api-client.php:160
666
- #: classes/class-wc-connect-api-client.php:187
667
  msgid "No shipping rate could be calculated. No items in the package are shippable."
668
  msgstr "No se ha podido calcular la tarifa de envío. Ningún artículo del paquete se puede enviar."
669
 
@@ -812,23 +811,23 @@ msgstr "Verificar dirección"
812
  msgid "%(message)s. Please modify the address and try again."
813
  msgstr "%(message)s. Modifica la dirección y vuelve a intentarlo."
814
 
815
- #: i18n/strings.php:370 i18n/strings.php:434
816
  msgid "View details"
817
  msgstr "Ver detalles"
818
 
819
- #: i18n/strings.php:402 i18n/strings.php:466
820
  msgid "Items"
821
  msgstr "Artículos"
822
 
823
- #: i18n/strings.php:401 i18n/strings.php:465
824
  msgid "Package"
825
  msgstr "Paquete"
826
 
827
- #: i18n/strings.php:399 i18n/strings.php:463
828
  msgid "Receipt"
829
  msgstr "Recibo"
830
 
831
- #: i18n/strings.php:398 i18n/strings.php:462
832
  msgid "Label #%(labelIndex)s details"
833
  msgstr "Detalles de la etiqueta #%(labelIndex)s"
834
 
@@ -943,43 +942,43 @@ msgstr "Desconectar"
943
  msgid "Activate"
944
  msgstr "Activar"
945
 
946
- #: i18n/strings.php:375 i18n/strings.php:439
947
  msgid "No activity yet"
948
  msgstr "Todavía no hay actividad"
949
 
950
- #: i18n/strings.php:383 i18n/strings.php:447
951
  msgid "Note"
952
  msgstr "Nota"
953
 
954
- #: i18n/strings.php:382 i18n/strings.php:446
955
  msgid "Refunded %(amount)s"
956
  msgstr "Reembolsado %(amount)s"
957
 
958
- #: i18n/strings.php:380 i18n/strings.php:444
959
  msgid "%(service)s label (#%(labelNum)d) refund rejected"
960
  msgstr "reembolso de etiqueta de %(service)s (#%(labelNum)d) rechazado"
961
 
962
- #: i18n/strings.php:379 i18n/strings.php:443
963
  msgid "%(service)s label (#%(labelNum)d) refunded (%(amount)s)"
964
  msgstr "reembolsado (%(amount)s) de etiqueta de %(service)s (#%(labelNum)d) rechazado"
965
 
966
- #: i18n/strings.php:378 i18n/strings.php:442
967
  msgid "%(service)s label (#%(labelNum)d) refund requested (%(amount)s)"
968
  msgstr "%(service)s etiqueta (#%(labelNum)d) solicitud de reembolso (%(amount)s)"
969
 
970
- #: i18n/strings.php:377 i18n/strings.php:441
971
  msgid "Note sent to customer"
972
  msgstr "Nota enviada al cliente"
973
 
974
- #: i18n/strings.php:376 i18n/strings.php:440
975
  msgid "Internal note"
976
  msgstr "Nota interna"
977
 
978
- #: i18n/strings.php:407 i18n/strings.php:471
979
  msgid "Show notes from %(date)s"
980
  msgstr "Mostrar notas desde %(date)s"
981
 
982
- #: i18n/strings.php:406 i18n/strings.php:470
983
  msgid "%(count)s event"
984
  msgid_plural "%(count)s events"
985
  msgstr[0] "%(count)s evento"
@@ -990,7 +989,7 @@ msgstr[1] "%(count)s eventos"
990
  msgid "WeChat Pay"
991
  msgstr "WeChat Pay"
992
 
993
- #: i18n/strings.php:384 i18n/strings.php:448
994
  msgid "Toggle menu"
995
  msgstr "Alternar menú"
996
 
@@ -998,41 +997,41 @@ msgstr "Alternar menú"
998
  msgid "Return to Order #%(orderId)s"
999
  msgstr "Volver al pedido #%(orderId)s"
1000
 
1001
- #: i18n/strings.php:344
1002
  msgid "Our team is here for you. View our {{docsA}}support docs{{/docsA}} or {{ticketA}}open a support ticket{{/ticketA}}."
1003
  msgstr "Nuestro equipo está aquí para ti. Ve nuestros {{docsA}}documentos de soporte{{/docsA}} o {{ticketA}}abre un ticket de soporte{{/ticketA}}."
1004
 
1005
- #: i18n/strings.php:335
1006
  msgid "Logging"
1007
  msgstr "Registro"
1008
 
1009
- #: i18n/strings.php:362
1010
  msgid "No services configured. {{a}}Add a shipping service{{/a}}"
1011
  msgstr "No hay configurado ningún servicio. {{a}}Añade un servicio de envío{{/a}}"
1012
 
1013
- #: i18n/strings.php:360
1014
  msgid "Edit service settings"
1015
  msgstr "Editar ajustes del servicio"
1016
 
1017
- #: i18n/strings.php:359
1018
  msgid "Request was made %s - check logs below or {{a}}edit service settings{{/a}}"
1019
  msgstr "La solicitud la hizo %s - revisa los registros abajo o {{a}}edita los ajustes del servicio{{/a}}"
1020
 
1021
- #: i18n/strings.php:358
1022
  msgid "Copy for support"
1023
  msgstr "Copiar para soporte"
1024
 
1025
- #: i18n/strings.php:357
1026
  msgid "Last %s entry. {{a}}Show full log{{/a}}"
1027
  msgid_plural "Last %s entries. {{a}}Show full log{{/a}}"
1028
  msgstr[0] "Última %s entrada. {{a}}Mostrar registro completo{{/a}}"
1029
  msgstr[1] "Últimas %s entradas. {{a}}Mostrar registro completo{{/a}}"
1030
 
1031
- #: i18n/strings.php:356
1032
  msgid "Log tail copied to clipboard"
1033
  msgstr "Cola del registro copiada al portapapeles"
1034
 
1035
- #: i18n/strings.php:11 i18n/strings.php:414
1036
  msgid "You have unsaved changes. Are you sure you want to leave this page?"
1037
  msgstr "Tienes cambios sin guardar. ¿Estás seguro de querer abandonar esta página?"
1038
 
@@ -1061,7 +1060,7 @@ msgid "USPS"
1061
  msgstr "USPS"
1062
 
1063
  #: i18n/strings.php:5 i18n/strings.php:169 i18n/strings.php:295
1064
- #: i18n/strings.php:329 i18n/strings.php:410
1065
  msgid "Optional"
1066
  msgstr "Opcional"
1067
 
@@ -1216,8 +1215,8 @@ msgstr "No se han encontrado etiquetas en este periodo"
1216
  msgid "Total"
1217
  msgstr "Total"
1218
 
1219
- #: classes/class-wc-connect-label-reports.php:170 i18n/strings.php:381
1220
- #: i18n/strings.php:445
1221
  msgid "Refund"
1222
  msgstr "Reembolso"
1223
 
@@ -1257,23 +1256,23 @@ msgstr "Año"
1257
  msgid "Export CSV"
1258
  msgstr "Exportar CSV"
1259
 
1260
- #: i18n/strings.php:341
1261
  msgid "Other Log"
1262
  msgstr "Otros registros"
1263
 
1264
- #: i18n/strings.php:340
1265
  msgid "Taxes Log"
1266
  msgstr "Registro de impuestos"
1267
 
1268
- #: i18n/strings.php:339
1269
  msgid "Shipping Log"
1270
  msgstr "Registro de envíos"
1271
 
1272
- #: i18n/strings.php:332
1273
  msgid "Display troubleshooting information on the Cart and Checkout pages."
1274
  msgstr "Muestra información para resolución de problemas en las páginas de carrito y finalizar compra."
1275
 
1276
- #: i18n/strings.php:336
1277
  msgid "Write diagnostic messages to log files. Helpful when contacting support."
1278
  msgstr "Escribe mensajes de diagnóstico en los archivos de registro. Útil al contactar con soporte."
1279
 
@@ -1317,15 +1316,15 @@ msgstr "Para enviar reembolsos a través de PayPal Exprés tendrás que <a href=
1317
  msgid "Link a PayPal account"
1318
  msgstr "Enlaza a una cuenta PayPal"
1319
 
1320
- #: i18n/strings.php:355
1321
  msgid "Refresh"
1322
  msgstr "Recargar"
1323
 
1324
- #: woocommerce-services.php:1230
1325
  msgid "Tracking number"
1326
  msgstr "Número de seguimiento"
1327
 
1328
- #: woocommerce-services.php:1229
1329
  msgid "Provider"
1330
  msgstr "Proveedor"
1331
 
@@ -1417,7 +1416,7 @@ msgid "automated tax calculation and smoother payment setup"
1417
  msgstr "cálculo automático de impuestos y configuración de pago más sencilla"
1418
 
1419
  #: classes/class-wc-connect-paypal-ec.php:323 i18n/strings.php:4
1420
- #: i18n/strings.php:168 i18n/strings.php:328 i18n/strings.php:409
1421
  msgid "Required"
1422
  msgstr "Requerido"
1423
 
@@ -1433,7 +1432,7 @@ msgstr "No ha sido posible guardar tus ajustes de envío. Por favor, inténtalo
1433
  msgid "Dimensions"
1434
  msgstr "Dimensiones"
1435
 
1436
- #: i18n/strings.php:270 i18n/strings.php:397 i18n/strings.php:461
1437
  msgid "Close"
1438
  msgstr "Cerrar"
1439
 
@@ -1544,17 +1543,17 @@ msgstr[1] "%(selectedCount)d paquetes seleccionados"
1544
  msgid "Unable to get your settings. Please refresh the page to try again."
1545
  msgstr "No ha sido posible recuperar tus ajustes. Por favor, recarga la página para intentarlo de nuevo."
1546
 
1547
- #: i18n/strings.php:421
1548
  msgid "%(numSelected)d service selected"
1549
  msgid_plural "%(numSelected)d services selected"
1550
  msgstr[0] "%(numSelected)d servicio seleccionado"
1551
  msgstr[1] "%(numSelected)d servicios seleccionados"
1552
 
1553
- #: i18n/strings.php:419
1554
  msgid "Add and edit saved packages using the {{a}}Packaging Manager{{/a}}."
1555
  msgstr "Añade y edita los paquetes guardados usando el {{a}}Gestor de paquetería{{/a}}."
1556
 
1557
- #: i18n/strings.php:374 i18n/strings.php:438
1558
  msgid "Tracking #: {{trackingLink/}}"
1559
  msgstr "Seguimiento #: {{trackingLink/}}"
1560
 
@@ -1594,7 +1593,7 @@ msgstr "{{itemLink/}} está en actualmente en {{pckg/}}."
1594
  msgid "Choose rate: %(pckg)s"
1595
  msgstr "Elegir tarifa: %(pckg)s"
1596
 
1597
- #: i18n/strings.php:386 i18n/strings.php:450
1598
  msgid "Refund label (-%(amount)s)"
1599
  msgstr "Etiqueta de reembolso (-%(amount)s)"
1600
 
@@ -1614,17 +1613,17 @@ msgstr "No existen artículos en este paquete."
1614
  msgid "Ship in original packaging"
1615
  msgstr "Enviar en su paquete original"
1616
 
1617
- #: i18n/strings.php:365 i18n/strings.php:366 i18n/strings.php:429
1618
- #: i18n/strings.php:430
1619
  msgid "Request refund"
1620
  msgstr "Solicitar reembolso"
1621
 
1622
- #: i18n/strings.php:368 i18n/strings.php:432
1623
  msgid "Reprint"
1624
  msgstr "Volver a imprimir"
1625
 
1626
- #: i18n/strings.php:58 i18n/strings.php:309 i18n/strings.php:396
1627
- #: i18n/strings.php:460
1628
  msgid "Paper size"
1629
  msgstr "Tamaño del papel"
1630
 
@@ -1640,11 +1639,11 @@ msgstr "Mover"
1640
  msgid "Move item"
1641
  msgstr "Mover artículo"
1642
 
1643
- #: i18n/strings.php:425
1644
  msgid "Increase the rates calculated by the carrier to account for packaging and handling costs. You can also add a negative amount to save your customers money."
1645
  msgstr "Incrementa las tarifas calculadas por el transportista a la cantidad de los costes de empaquetado y manipulado. También puedes añadir una cantidad negativa para ahorrar dinero a tus clientes."
1646
 
1647
- #: i18n/strings.php:475
1648
  msgid "Create new label"
1649
  msgstr "Crear nueva etiqueta"
1650
 
@@ -1665,19 +1664,19 @@ msgid "Add a credit card"
1665
  msgstr "Añadir una tarjeta de crédito"
1666
 
1667
  #. translators: %d: Deleted Product ID
1668
- #: classes/class-wc-connect-compatibility-wc30.php:130
1669
  #: classes/class-wc-connect-compatibility-wc26.php:116
 
1670
  msgid "#%d - [Deleted product]"
1671
  msgstr "#%d - [producto borrado]"
1672
 
1673
  #. translators: %1$d: Product ID, %2$s: Product Name
1674
- #: classes/class-wc-connect-compatibility-wc30.php:125
1675
  #: classes/class-wc-connect-compatibility-wc26.php:111
 
1676
  msgid "#%1$d - %2$s"
1677
  msgstr "#%1$d - %2$s"
1678
 
1679
  #. translators: %s Support url
1680
- #: woocommerce-services.php:1565
1681
  msgid "<a href=\"%s\">Support</a>"
1682
  msgstr "<a href=\"%s\">Soporte</a>"
1683
 
@@ -1685,22 +1684,18 @@ msgstr "<a href=\"%s\">Soporte</a>"
1685
  msgid "There was an error installing Jetpack. Please try installing it manually."
1686
  msgstr "Hubo un error al instalar Jetpack. Por favor, trata de instalarlo manualmente."
1687
 
1688
- #: woocommerce-services.php:1066 woocommerce-services.php:1069
1689
- #: i18n/strings.php:43
1690
  msgid "Shipping Labels"
1691
  msgstr "Etiquetas de envío"
1692
 
1693
- #. Author of the plugin
1694
- msgid "Automattic"
1695
- msgstr "Automattic"
1696
-
1697
  #. Plugin URI of the plugin
1698
  #. Author URI of the plugin
1699
  msgid "https://woocommerce.com/"
1700
  msgstr "https://woocommerce.com/"
1701
 
1702
- #: woocommerce-services.php:1515 woocommerce-services.php:1543
1703
- #: i18n/strings.php:143 i18n/strings.php:215
1704
  msgid "Phone"
1705
  msgstr "Teléfono"
1706
 
@@ -1709,15 +1704,15 @@ msgstr "Teléfono"
1709
  msgid "Connect"
1710
  msgstr "Conectar"
1711
 
1712
- #: i18n/strings.php:7 i18n/strings.php:171 i18n/strings.php:483
1713
  msgid "Save Settings"
1714
  msgstr "Guardar ajustes"
1715
 
1716
- #: i18n/strings.php:415
1717
  msgid "Your changes have been saved."
1718
  msgstr "Tus cambios se han guardado."
1719
 
1720
- #: i18n/strings.php:416
1721
  msgid "There was a problem with one or more entries. Please fix the errors below and try saving again."
1722
  msgstr "Hubo un problema con una o más entradas. Por favor, soluciona los errores de abajo y trata de guardar de nuevo."
1723
 
@@ -1725,11 +1720,11 @@ msgstr "Hubo un problema con una o más entradas. Por favor, soluciona los error
1725
  msgid "Expand"
1726
  msgstr "Ampliar"
1727
 
1728
- #: i18n/strings.php:411 i18n/strings.php:481
1729
  msgid "Dismiss"
1730
  msgstr "Descartar"
1731
 
1732
- #: i18n/strings.php:10 i18n/strings.php:413
1733
  msgid "You have unsaved changes."
1734
  msgstr "Tienes cambios sin guardar."
1735
 
@@ -1764,7 +1759,7 @@ msgstr "Este campo debe ser único"
1764
  msgid "Unable to save your shipping packages. Please try again."
1765
  msgstr "No se han podido guardar tus paquetes de envío. Por favor, inténtalo de nuevo."
1766
 
1767
- #: i18n/strings.php:41 i18n/strings.php:417
1768
  msgid "Save changes"
1769
  msgstr "Guardar cambios"
1770
 
@@ -1776,32 +1771,32 @@ msgstr "Sin título"
1776
  msgid "Dimensions (L x W x H)"
1777
  msgstr "Dimensiones (L x An x Al)"
1778
 
1779
- #: i18n/strings.php:420
1780
  msgid "All services selected"
1781
  msgstr "Seleccionados todos los servicios"
1782
 
1783
- #: i18n/strings.php:37 i18n/strings.php:199 i18n/strings.php:422
1784
  msgid "Expand Services"
1785
  msgstr "Expandir servicios"
1786
 
1787
- #: classes/class-wc-connect-label-reports.php:167 i18n/strings.php:400
1788
- #: i18n/strings.php:423 i18n/strings.php:464
1789
  msgid "Service"
1790
  msgstr "Servicio"
1791
 
1792
- #: i18n/strings.php:424
1793
  msgid "Price adjustment"
1794
  msgstr "Ajuste de precio"
1795
 
1796
- #: i18n/strings.php:418
1797
  msgid "Saved Packages"
1798
  msgstr "Paquetes guardados"
1799
 
1800
- #: woocommerce-services.php:1218 woocommerce-services.php:1225
1801
  msgid "Tracking"
1802
  msgstr "Seguimiento"
1803
 
1804
- #: i18n/strings.php:207 i18n/strings.php:473 i18n/strings.php:477
1805
  msgid "Create shipping label"
1806
  msgid_plural "Create shipping labels"
1807
  msgstr[0] "Crear etiqueta de envío"
@@ -1874,51 +1869,51 @@ msgstr "Utilizar estos paquetes"
1874
  msgid "The service and rate chosen by the customer at checkout is not available. Please choose another."
1875
  msgstr "El servicio y la tarifa elegidos por el cliente en el pago no están disponibles. Por favor, elige otro."
1876
 
1877
- #: i18n/strings.php:387 i18n/strings.php:451
1878
  msgid "Request a refund"
1879
  msgstr "Solicitar un reembolso"
1880
 
1881
- #: i18n/strings.php:388 i18n/strings.php:452
1882
  msgid "You can request a refund for a shipping label that has not been used to ship a package. It will take at least %(days)s days to process."
1883
  msgstr "Puedes solicitar un reembolso de una etiqueta de envío que no se haya utilizado para enviar un paquete. Tardará al menos %(días)s en procesarse."
1884
 
1885
- #: i18n/strings.php:389 i18n/strings.php:453
1886
  msgid "Purchase date"
1887
  msgstr "Fecha de compra"
1888
 
1889
- #: i18n/strings.php:390 i18n/strings.php:454
1890
  msgid "Amount eligible for refund"
1891
  msgstr "Cantidad elegible para el reembolso"
1892
 
1893
- #: i18n/strings.php:369 i18n/strings.php:393 i18n/strings.php:433
1894
- #: i18n/strings.php:457
1895
  msgid "Reprint shipping label"
1896
  msgstr "Volver a imprimir la etiqueta de envío"
1897
 
1898
- #: i18n/strings.php:394 i18n/strings.php:458
1899
  msgid "If there was a printing error when you purchased the label, you can print it again."
1900
  msgstr "Si hay un problema de impresión cuando compres la etiqueta puedes imprimirla de nuevo."
1901
 
1902
- #: i18n/strings.php:395 i18n/strings.php:459
1903
  msgid "NOTE: If you already used the label in a package, printing and using it again is a violation of our terms of service and may result in criminal charges."
1904
  msgstr "NOTA: Si ya has usado la etiqueta en un paquete, imprimirla y usarla de nuevo es una violación de nuestros términos del servicio y podría resultar en cargos criminales."
1905
 
1906
- #: i18n/strings.php:325 i18n/strings.php:392 i18n/strings.php:456
1907
  msgid "Print"
1908
  msgstr "Imprimir"
1909
 
1910
  #: i18n/strings.php:16 i18n/strings.php:82 i18n/strings.php:122
1911
  #: i18n/strings.php:158 i18n/strings.php:167 i18n/strings.php:178
1912
- #: i18n/strings.php:263 i18n/strings.php:385 i18n/strings.php:391
1913
- #: i18n/strings.php:449 i18n/strings.php:455
1914
  msgid "Cancel"
1915
  msgstr "Cancelar"
1916
 
1917
- #: i18n/strings.php:403 i18n/strings.php:467
1918
  msgid "N/A"
1919
  msgstr "N/D"
1920
 
1921
- #: i18n/strings.php:8 i18n/strings.php:412 i18n/strings.php:472
1922
  msgid "More"
1923
  msgstr "Más"
1924
 
@@ -1961,7 +1956,7 @@ msgstr "No ha sido posible actualizar los ajustes. %s"
1961
  msgid "Packaging"
1962
  msgstr "Paquetería"
1963
 
1964
- #: woocommerce-services.php:1598
1965
  msgid "Section not loading? Visit the <a href=\"%s\">status page</a> for troubleshooting steps."
1966
  msgstr "¿No carga la sección? Visita la <a href=\"%s\">página de estado</a> para ver los pasos de solución de problemas."
1967
 
@@ -1973,7 +1968,7 @@ msgstr "Nota: El modo de desarrollo de Jetpack está activo en este sitio. Este
1973
  msgid "Note: Jetpack is connected, but development mode is also enabled on this site. Please disable development mode."
1974
  msgstr "Nota: Jetpack está conectado, pero también está activo el modo de desarrollo en este sitio. Por favor, desactiva el modo de desarrollo."
1975
 
1976
- #: woocommerce-services.php:1451
1977
  msgid "Shipping Label"
1978
  msgstr "Etiqueta de envío"
1979
 
@@ -2030,24 +2025,24 @@ msgctxt "A service with an unknown title and unknown method_title"
2030
  msgid "Unknown"
2031
  msgstr "Desconocido"
2032
 
2033
- #: i18n/strings.php:342
2034
  msgid "Support"
2035
  msgstr "Soporte"
2036
 
2037
- #: i18n/strings.php:330 i18n/strings.php:331
2038
  msgid "Debug"
2039
  msgstr "Depuración"
2040
 
2041
- #: i18n/strings.php:361
2042
  msgid "Services"
2043
  msgstr "Servicios"
2044
 
2045
- #: i18n/strings.php:345
2046
  msgctxt "This section displays the overall health of WooCommerce Shipping & Tax and the things it depends on"
2047
  msgid "Health"
2048
  msgstr "Salud"
2049
 
2050
- #: i18n/strings.php:343
2051
  msgid "Need help?"
2052
  msgstr "¿Necesitas ayuda?"
2053
 
@@ -2055,11 +2050,11 @@ msgstr "¿Necesitas ayuda?"
2055
  msgid "Log is empty"
2056
  msgstr "El registro está vacío"
2057
 
2058
- #: i18n/strings.php:334 i18n/strings.php:338
2059
  msgid "Disabled"
2060
  msgstr "Desactivado"
2061
 
2062
- #: i18n/strings.php:333 i18n/strings.php:337
2063
  msgid "Enabled"
2064
  msgstr "Activo"
2065
 
@@ -2083,27 +2078,27 @@ msgstr "Aún no han habido peticiones de tarifas para este servicio"
2083
  msgid "Setup for this service has not yet been completed"
2084
  msgstr "La configuración de este servició aún no se ha completado"
2085
 
2086
- #: i18n/strings.php:350
2087
  msgid "Service data is up-to-date"
2088
  msgstr "Los datos del servicio están al día"
2089
 
2090
- #: i18n/strings.php:349
2091
  msgid "Service data was found, but is more than one day old"
2092
  msgstr "Se encontaron datos del servicio, pero son de hace más de un día"
2093
 
2094
- #: i18n/strings.php:348
2095
  msgid "Service data was found, but is more than three days old"
2096
  msgstr "Se encontraron datos del servicio, pero son de hace más de tres días"
2097
 
2098
- #: i18n/strings.php:351
2099
  msgid "Service data found, but may be out of date"
2100
  msgstr "Se han encontrado datos del servicio, pero podrían ser obsoletos"
2101
 
2102
- #: i18n/strings.php:352
2103
  msgid "No service data available"
2104
  msgstr "No hay disponibles datos del servicio"
2105
 
2106
- #: i18n/strings.php:347
2107
  msgid "Jetpack"
2108
  msgstr "Jetpack"
2109
 
@@ -2127,7 +2122,8 @@ msgstr "Se necesita Jetpack %1$s o superior (estás ejecutando la versión %2$s)
2127
  msgid "Please install and activate the Jetpack plugin, version %s or higher"
2128
  msgstr "Por favor, instala y activa el plugin Jetpack, en su versión %s o superior"
2129
 
2130
- #: i18n/strings.php:346
 
2131
  msgid "WooCommerce"
2132
  msgstr "WooCommerce"
2133
 
@@ -2143,7 +2139,7 @@ msgstr "Por favor, establece la ubicación base en Ajustes de WooCommerce > Gene
2143
  msgid "WooCommerce %1$s or higher is required (You are running %2$s)"
2144
  msgstr "Se necesita WooCommerce %1$s o superior (estás ejecutando la versión %2$s)"
2145
 
2146
- #: classes/class-wc-connect-error-notice.php:104 woocommerce-services.php:1634
2147
  msgid "Dismiss this notice"
2148
  msgstr "Descartar este aviso"
2149
 
51
  msgid "Live rates at checkout"
52
  msgstr "Tarifas en vivo al finalizar la compra"
53
 
54
+ #: i18n/strings.php:403
55
  msgid "Last updated %s."
56
  msgstr "Última actualización %s."
57
 
206
  msgid "WooCommerce Helper auth is missing"
207
  msgstr "Falta la identificación de WooCommerce Helper"
208
 
209
+ #: i18n/strings.php:331 i18n/strings.php:422
210
  msgid "USPS labels without tracking are not eligible for refund."
211
  msgstr "Las etiquetas de USPS sin seguimiento no son elegibles para reembolso."
212
 
226
  msgid "Loading"
227
  msgstr "Cargando"
228
 
229
+ #: i18n/strings.php:402
230
  msgid "WooCommerce Shipping & Tax Data"
231
  msgstr "WooCommerce Shipping & Tax Data"
232
 
233
+ #: i18n/strings.php:339 i18n/strings.php:430
234
  msgid "Print customs form"
235
  msgstr "Imprimir impreso de aduanas"
236
 
277
  msgstr "Slug de servicio de WooCommerce Shipping & Tax no válido proporcionado"
278
 
279
  #. Plugin Name of the plugin
 
280
  #: classes/class-wc-connect-settings-pages.php:123
281
+ #: classes/class-wc-connect-privacy.php:36
282
  msgid "WooCommerce Shipping & Tax"
283
  msgstr "WooCommerce Shipping & Tax"
284
 
411
  msgid "Validating address\\u2026"
412
  msgstr "Validando dirección\\u2026"
413
 
414
+ #: i18n/strings.php:326 i18n/strings.php:372 i18n/strings.php:463
415
  msgid "Purchasing\\u2026"
416
  msgstr "Comprando\\u2026"
417
 
423
  msgid "Package %(index)s \\u2013 %(title)s"
424
  msgstr "Paquete %(index)s \\u2013 %(title)s"
425
 
426
+ #: i18n/strings.php:6 i18n/strings.php:170 i18n/strings.php:375
427
  msgid "Saving\\u2026"
428
  msgstr "Guardando\\u2026"
429
 
437
  msgid "Your tax rates and settings will be automatically configured for %1$s, %2$s. <a href=\"https://docs.woocommerce.com/document/setting-up-taxes-in-woocommerce/#section-12\">Learn more about setting up tax rates for additional nexuses</a>"
438
  msgstr "Tus tarifas de impuestos y ajustes se configurarán automáticamente para %1$s, %2$s. <a href=\"https://docs.woocommerce.com/document/setting-up-taxes-in-woocommerce/#section-12\">Aprende más sobre cómo configurar tarifas de impuestos para nexos adicionales</a>"
439
 
440
+ #: i18n/strings.php:419
441
  msgid "%(itemCount)d item is ready to be fulfilled"
442
  msgid_plural "%(itemCount)d items are ready to be fulfilled"
443
  msgstr[0] "%(itemCount)d elemento está listo para completar"
444
  msgstr[1] "%(itemCount)d elementos están listos para completar"
445
 
446
+ #: i18n/strings.php:418
447
  msgid "%(itemCount)d item was fulfilled on {{span}}%(createdDate)s{{/span}}"
448
  msgid_plural "%(itemCount)d items were fulfilled on {{span}}%(createdDate)s{{/span}}"
449
  msgstr[0] "%(itemCount)d elemento se completó el {{span}}%(createdDate)s{{/span}}"
450
  msgstr[1] "%(itemCount)d elementos se completaron el {{span}}%(createdDate)s{{/span}}"
451
 
452
+ #: i18n/strings.php:338 i18n/strings.php:429
453
  msgid "Schedule a pickup"
454
  msgstr "Programa una recogida"
455
 
456
+ #: i18n/strings.php:334 i18n/strings.php:425
457
  msgid "Label images older than 180 days are deleted by our technology partners for general security and data privacy concerns."
458
  msgstr "Las imágenes de las etiquetas de más de 180 días las borran nuestros colaboradores tecnológicos por cuestiones de seguridad y privacidad de datos."
459
 
460
+ #: i18n/strings.php:330 i18n/strings.php:421
461
  msgid "Labels older than 30 days cannot be refunded."
462
  msgstr "Las etiquetas de más de 30 días no se pueden reembolsar."
463
 
478
  msgid "WooCommerce Shipping & Tax requires the WooCommerce plugin to be installed and active. You can download %s here."
479
  msgstr "WooCommerce Shipping & Tax necesita que esté instalado y activado el plugin WooCommerce. Puedes descargarlo aquí: %s."
480
 
481
+ #: i18n/strings.php:466
482
  msgid "No tracking information available at this time"
483
  msgstr "En este momento no hay disponible información de seguimiento"
484
 
485
+ #: i18n/strings.php:417
486
  msgid "Connection error: unable to create label at this time"
487
  msgstr "Error de conexión: en este momento no se puede crear la etiqueta"
488
 
489
+ #: i18n/strings.php:413 i18n/strings.php:415
490
  msgid "Track Package"
491
  msgid_plural "Track Packages"
492
  msgstr[0] "Seguimiento de paquete"
493
  msgstr[1] "Seguimiento de paquetes"
494
 
495
+ #: i18n/strings.php:329
496
  msgid "Which package would you like to track?"
497
  msgstr "¿Qué paquete te gustaría seguir?"
498
 
499
+ #: i18n/strings.php:340 i18n/strings.php:371 i18n/strings.php:431
500
+ #: i18n/strings.php:462
501
  msgid "%(service)s label (#%(labelIndex)d)"
502
  msgstr "%(service)s etiqueta (#%(labelIndex)d)"
503
 
585
  msgid "0.0"
586
  msgstr "0.0"
587
 
588
+ #: woocommerce-services.php:1453
589
  msgid "Shipment Tracking"
590
  msgstr "Seguimiento de envíos"
591
 
597
  msgid "Customs information incomplete"
598
  msgstr "Información de aduanas incompleta"
599
 
600
+ #: woocommerce-services.php:1496
601
  msgid "Packing Log:"
602
  msgstr "Registro de paquetería:"
603
 
604
+ #: woocommerce-services.php:1483
605
  msgid "Chosen Rate:"
606
  msgstr "Tarifa elegida:"
607
 
608
+ #: woocommerce-services.php:1479
609
  msgid "Shipping Method ID:"
610
  msgstr "ID del método de envío:"
611
 
612
+ #: woocommerce-services.php:1475
613
  msgid "Shipping Method Name:"
614
  msgstr "Nombre del método de envío:"
615
 
616
+ #: woocommerce-services.php:1459
617
  msgid "Shipping Debug"
618
  msgstr "Depuración de envíos"
619
 
621
  msgid "<strong>\"%2$s\" is missing weight, length, width, or height.</strong><br />Shipping rates cannot be calculated. <a href=\"%1$s\">Enter dimensions and weight for %2$s</a> so your customers can purchase this item."
622
  msgstr "<strong>A \"%2$s\" le falta el peso, largo, ancho o la altura.</strong><br />No se pueden calcular las tarifas de envío. <a href=\"%1$s\">Introduce las dimensiones y el peso de %2$s</a> para que tus clientes puedan comprar este artículo."
623
 
624
+ #: classes/class-wc-connect-api-client.php:588
625
  msgid "Unable to send request to WooCommerce Shipping & Tax server. The timestamp generated for the signature is too old."
626
  msgstr "No ha sido posible enviar la solicitud al servidor de WooCommerce Shipping & Tax. La marca temporal generada para la firma es demasiado antigua."
627
 
628
+ #: classes/class-wc-connect-api-client.php:527
629
  msgid "Unable to send request to WooCommerce Shipping & Tax server. Jetpack Token is malformed."
630
  msgstr "No ha sido posible enviar la solicitud al servidor de WooCommerce Shipping & Tax. El token de JetPack está mal formado."
631
 
632
+ #: classes/class-wc-connect-api-client.php:520
633
  msgid "Unable to send request to WooCommerce Shipping & Tax server. Jetpack Token is missing"
634
  msgstr "No ha sido posible enviar la solicitud al servidor de WooCommerce Shipping & Tax. Falta el token de JetPack."
635
 
663
  msgstr "No ha sido posible enviar la solicitud al servidor de WooCommerce Shipping & Tax. No se ha encontrado Jetpack_Data."
664
 
665
  #: classes/class-wc-connect-api-client.php:160
 
666
  msgid "No shipping rate could be calculated. No items in the package are shippable."
667
  msgstr "No se ha podido calcular la tarifa de envío. Ningún artículo del paquete se puede enviar."
668
 
811
  msgid "%(message)s. Please modify the address and try again."
812
  msgstr "%(message)s. Modifica la dirección y vuelve a intentarlo."
813
 
814
+ #: i18n/strings.php:337 i18n/strings.php:428
815
  msgid "View details"
816
  msgstr "Ver detalles"
817
 
818
+ #: i18n/strings.php:369 i18n/strings.php:460
819
  msgid "Items"
820
  msgstr "Artículos"
821
 
822
+ #: i18n/strings.php:368 i18n/strings.php:459
823
  msgid "Package"
824
  msgstr "Paquete"
825
 
826
+ #: i18n/strings.php:366 i18n/strings.php:457
827
  msgid "Receipt"
828
  msgstr "Recibo"
829
 
830
+ #: i18n/strings.php:365 i18n/strings.php:456
831
  msgid "Label #%(labelIndex)s details"
832
  msgstr "Detalles de la etiqueta #%(labelIndex)s"
833
 
942
  msgid "Activate"
943
  msgstr "Activar"
944
 
945
+ #: i18n/strings.php:342 i18n/strings.php:433
946
  msgid "No activity yet"
947
  msgstr "Todavía no hay actividad"
948
 
949
+ #: i18n/strings.php:350 i18n/strings.php:441
950
  msgid "Note"
951
  msgstr "Nota"
952
 
953
+ #: i18n/strings.php:349 i18n/strings.php:440
954
  msgid "Refunded %(amount)s"
955
  msgstr "Reembolsado %(amount)s"
956
 
957
+ #: i18n/strings.php:347 i18n/strings.php:438
958
  msgid "%(service)s label (#%(labelNum)d) refund rejected"
959
  msgstr "reembolso de etiqueta de %(service)s (#%(labelNum)d) rechazado"
960
 
961
+ #: i18n/strings.php:346 i18n/strings.php:437
962
  msgid "%(service)s label (#%(labelNum)d) refunded (%(amount)s)"
963
  msgstr "reembolsado (%(amount)s) de etiqueta de %(service)s (#%(labelNum)d) rechazado"
964
 
965
+ #: i18n/strings.php:345 i18n/strings.php:436
966
  msgid "%(service)s label (#%(labelNum)d) refund requested (%(amount)s)"
967
  msgstr "%(service)s etiqueta (#%(labelNum)d) solicitud de reembolso (%(amount)s)"
968
 
969
+ #: i18n/strings.php:344 i18n/strings.php:435
970
  msgid "Note sent to customer"
971
  msgstr "Nota enviada al cliente"
972
 
973
+ #: i18n/strings.php:343 i18n/strings.php:434
974
  msgid "Internal note"
975
  msgstr "Nota interna"
976
 
977
+ #: i18n/strings.php:374 i18n/strings.php:465
978
  msgid "Show notes from %(date)s"
979
  msgstr "Mostrar notas desde %(date)s"
980
 
981
+ #: i18n/strings.php:373 i18n/strings.php:464
982
  msgid "%(count)s event"
983
  msgid_plural "%(count)s events"
984
  msgstr[0] "%(count)s evento"
989
  msgid "WeChat Pay"
990
  msgstr "WeChat Pay"
991
 
992
+ #: i18n/strings.php:351 i18n/strings.php:442
993
  msgid "Toggle menu"
994
  msgstr "Alternar menú"
995
 
997
  msgid "Return to Order #%(orderId)s"
998
  msgstr "Volver al pedido #%(orderId)s"
999
 
1000
+ #: i18n/strings.php:393
1001
  msgid "Our team is here for you. View our {{docsA}}support docs{{/docsA}} or {{ticketA}}open a support ticket{{/ticketA}}."
1002
  msgstr "Nuestro equipo está aquí para ti. Ve nuestros {{docsA}}documentos de soporte{{/docsA}} o {{ticketA}}abre un ticket de soporte{{/ticketA}}."
1003
 
1004
+ #: i18n/strings.php:384
1005
  msgid "Logging"
1006
  msgstr "Registro"
1007
 
1008
+ #: i18n/strings.php:411
1009
  msgid "No services configured. {{a}}Add a shipping service{{/a}}"
1010
  msgstr "No hay configurado ningún servicio. {{a}}Añade un servicio de envío{{/a}}"
1011
 
1012
+ #: i18n/strings.php:409
1013
  msgid "Edit service settings"
1014
  msgstr "Editar ajustes del servicio"
1015
 
1016
+ #: i18n/strings.php:408
1017
  msgid "Request was made %s - check logs below or {{a}}edit service settings{{/a}}"
1018
  msgstr "La solicitud la hizo %s - revisa los registros abajo o {{a}}edita los ajustes del servicio{{/a}}"
1019
 
1020
+ #: i18n/strings.php:407
1021
  msgid "Copy for support"
1022
  msgstr "Copiar para soporte"
1023
 
1024
+ #: i18n/strings.php:406
1025
  msgid "Last %s entry. {{a}}Show full log{{/a}}"
1026
  msgid_plural "Last %s entries. {{a}}Show full log{{/a}}"
1027
  msgstr[0] "Última %s entrada. {{a}}Mostrar registro completo{{/a}}"
1028
  msgstr[1] "Últimas %s entradas. {{a}}Mostrar registro completo{{/a}}"
1029
 
1030
+ #: i18n/strings.php:405
1031
  msgid "Log tail copied to clipboard"
1032
  msgstr "Cola del registro copiada al portapapeles"
1033
 
1034
+ #: i18n/strings.php:11 i18n/strings.php:472
1035
  msgid "You have unsaved changes. Are you sure you want to leave this page?"
1036
  msgstr "Tienes cambios sin guardar. ¿Estás seguro de querer abandonar esta página?"
1037
 
1060
  msgstr "USPS"
1061
 
1062
  #: i18n/strings.php:5 i18n/strings.php:169 i18n/strings.php:295
1063
+ #: i18n/strings.php:378 i18n/strings.php:468
1064
  msgid "Optional"
1065
  msgstr "Opcional"
1066
 
1215
  msgid "Total"
1216
  msgstr "Total"
1217
 
1218
+ #: classes/class-wc-connect-label-reports.php:170 i18n/strings.php:348
1219
+ #: i18n/strings.php:439
1220
  msgid "Refund"
1221
  msgstr "Reembolso"
1222
 
1256
  msgid "Export CSV"
1257
  msgstr "Exportar CSV"
1258
 
1259
+ #: i18n/strings.php:390
1260
  msgid "Other Log"
1261
  msgstr "Otros registros"
1262
 
1263
+ #: i18n/strings.php:389
1264
  msgid "Taxes Log"
1265
  msgstr "Registro de impuestos"
1266
 
1267
+ #: i18n/strings.php:388
1268
  msgid "Shipping Log"
1269
  msgstr "Registro de envíos"
1270
 
1271
+ #: i18n/strings.php:381
1272
  msgid "Display troubleshooting information on the Cart and Checkout pages."
1273
  msgstr "Muestra información para resolución de problemas en las páginas de carrito y finalizar compra."
1274
 
1275
+ #: i18n/strings.php:385
1276
  msgid "Write diagnostic messages to log files. Helpful when contacting support."
1277
  msgstr "Escribe mensajes de diagnóstico en los archivos de registro. Útil al contactar con soporte."
1278
 
1316
  msgid "Link a PayPal account"
1317
  msgstr "Enlaza a una cuenta PayPal"
1318
 
1319
+ #: i18n/strings.php:404
1320
  msgid "Refresh"
1321
  msgstr "Recargar"
1322
 
1323
+ #: woocommerce-services.php:1234
1324
  msgid "Tracking number"
1325
  msgstr "Número de seguimiento"
1326
 
1327
+ #: woocommerce-services.php:1233
1328
  msgid "Provider"
1329
  msgstr "Proveedor"
1330
 
1416
  msgstr "cálculo automático de impuestos y configuración de pago más sencilla"
1417
 
1418
  #: classes/class-wc-connect-paypal-ec.php:323 i18n/strings.php:4
1419
+ #: i18n/strings.php:168 i18n/strings.php:377 i18n/strings.php:467
1420
  msgid "Required"
1421
  msgstr "Requerido"
1422
 
1432
  msgid "Dimensions"
1433
  msgstr "Dimensiones"
1434
 
1435
+ #: i18n/strings.php:270 i18n/strings.php:364 i18n/strings.php:455
1436
  msgid "Close"
1437
  msgstr "Cerrar"
1438
 
1543
  msgid "Unable to get your settings. Please refresh the page to try again."
1544
  msgstr "No ha sido posible recuperar tus ajustes. Por favor, recarga la página para intentarlo de nuevo."
1545
 
1546
+ #: i18n/strings.php:479
1547
  msgid "%(numSelected)d service selected"
1548
  msgid_plural "%(numSelected)d services selected"
1549
  msgstr[0] "%(numSelected)d servicio seleccionado"
1550
  msgstr[1] "%(numSelected)d servicios seleccionados"
1551
 
1552
+ #: i18n/strings.php:477
1553
  msgid "Add and edit saved packages using the {{a}}Packaging Manager{{/a}}."
1554
  msgstr "Añade y edita los paquetes guardados usando el {{a}}Gestor de paquetería{{/a}}."
1555
 
1556
+ #: i18n/strings.php:341 i18n/strings.php:432
1557
  msgid "Tracking #: {{trackingLink/}}"
1558
  msgstr "Seguimiento #: {{trackingLink/}}"
1559
 
1593
  msgid "Choose rate: %(pckg)s"
1594
  msgstr "Elegir tarifa: %(pckg)s"
1595
 
1596
+ #: i18n/strings.php:353 i18n/strings.php:444
1597
  msgid "Refund label (-%(amount)s)"
1598
  msgstr "Etiqueta de reembolso (-%(amount)s)"
1599
 
1613
  msgid "Ship in original packaging"
1614
  msgstr "Enviar en su paquete original"
1615
 
1616
+ #: i18n/strings.php:332 i18n/strings.php:333 i18n/strings.php:423
1617
+ #: i18n/strings.php:424
1618
  msgid "Request refund"
1619
  msgstr "Solicitar reembolso"
1620
 
1621
+ #: i18n/strings.php:335 i18n/strings.php:426
1622
  msgid "Reprint"
1623
  msgstr "Volver a imprimir"
1624
 
1625
+ #: i18n/strings.php:58 i18n/strings.php:309 i18n/strings.php:363
1626
+ #: i18n/strings.php:454
1627
  msgid "Paper size"
1628
  msgstr "Tamaño del papel"
1629
 
1639
  msgid "Move item"
1640
  msgstr "Mover artículo"
1641
 
1642
+ #: i18n/strings.php:483
1643
  msgid "Increase the rates calculated by the carrier to account for packaging and handling costs. You can also add a negative amount to save your customers money."
1644
  msgstr "Incrementa las tarifas calculadas por el transportista a la cantidad de los costes de empaquetado y manipulado. También puedes añadir una cantidad negativa para ahorrar dinero a tus clientes."
1645
 
1646
+ #: i18n/strings.php:414
1647
  msgid "Create new label"
1648
  msgstr "Crear nueva etiqueta"
1649
 
1664
  msgstr "Añadir una tarjeta de crédito"
1665
 
1666
  #. translators: %d: Deleted Product ID
 
1667
  #: classes/class-wc-connect-compatibility-wc26.php:116
1668
+ #: classes/class-wc-connect-compatibility-wc30.php:130
1669
  msgid "#%d - [Deleted product]"
1670
  msgstr "#%d - [producto borrado]"
1671
 
1672
  #. translators: %1$d: Product ID, %2$s: Product Name
 
1673
  #: classes/class-wc-connect-compatibility-wc26.php:111
1674
+ #: classes/class-wc-connect-compatibility-wc30.php:125
1675
  msgid "#%1$d - %2$s"
1676
  msgstr "#%1$d - %2$s"
1677
 
1678
  #. translators: %s Support url
1679
+ #: woocommerce-services.php:1569
1680
  msgid "<a href=\"%s\">Support</a>"
1681
  msgstr "<a href=\"%s\">Soporte</a>"
1682
 
1684
  msgid "There was an error installing Jetpack. Please try installing it manually."
1685
  msgstr "Hubo un error al instalar Jetpack. Por favor, trata de instalarlo manualmente."
1686
 
1687
+ #: i18n/strings.php:43 woocommerce-services.php:1066
1688
+ #: woocommerce-services.php:1069
1689
  msgid "Shipping Labels"
1690
  msgstr "Etiquetas de envío"
1691
 
 
 
 
 
1692
  #. Plugin URI of the plugin
1693
  #. Author URI of the plugin
1694
  msgid "https://woocommerce.com/"
1695
  msgstr "https://woocommerce.com/"
1696
 
1697
+ #: i18n/strings.php:143 i18n/strings.php:215 woocommerce-services.php:1519
1698
+ #: woocommerce-services.php:1547
1699
  msgid "Phone"
1700
  msgstr "Teléfono"
1701
 
1704
  msgid "Connect"
1705
  msgstr "Conectar"
1706
 
1707
+ #: i18n/strings.php:7 i18n/strings.php:171 i18n/strings.php:376
1708
  msgid "Save Settings"
1709
  msgstr "Guardar ajustes"
1710
 
1711
+ #: i18n/strings.php:473
1712
  msgid "Your changes have been saved."
1713
  msgstr "Tus cambios se han guardado."
1714
 
1715
+ #: i18n/strings.php:474
1716
  msgid "There was a problem with one or more entries. Please fix the errors below and try saving again."
1717
  msgstr "Hubo un problema con una o más entradas. Por favor, soluciona los errores de abajo y trata de guardar de nuevo."
1718
 
1720
  msgid "Expand"
1721
  msgstr "Ampliar"
1722
 
1723
+ #: i18n/strings.php:328 i18n/strings.php:469
1724
  msgid "Dismiss"
1725
  msgstr "Descartar"
1726
 
1727
+ #: i18n/strings.php:10 i18n/strings.php:471
1728
  msgid "You have unsaved changes."
1729
  msgstr "Tienes cambios sin guardar."
1730
 
1759
  msgid "Unable to save your shipping packages. Please try again."
1760
  msgstr "No se han podido guardar tus paquetes de envío. Por favor, inténtalo de nuevo."
1761
 
1762
+ #: i18n/strings.php:41 i18n/strings.php:475
1763
  msgid "Save changes"
1764
  msgstr "Guardar cambios"
1765
 
1771
  msgid "Dimensions (L x W x H)"
1772
  msgstr "Dimensiones (L x An x Al)"
1773
 
1774
+ #: i18n/strings.php:478
1775
  msgid "All services selected"
1776
  msgstr "Seleccionados todos los servicios"
1777
 
1778
+ #: i18n/strings.php:37 i18n/strings.php:199 i18n/strings.php:480
1779
  msgid "Expand Services"
1780
  msgstr "Expandir servicios"
1781
 
1782
+ #: classes/class-wc-connect-label-reports.php:167 i18n/strings.php:367
1783
+ #: i18n/strings.php:458 i18n/strings.php:481
1784
  msgid "Service"
1785
  msgstr "Servicio"
1786
 
1787
+ #: i18n/strings.php:482
1788
  msgid "Price adjustment"
1789
  msgstr "Ajuste de precio"
1790
 
1791
+ #: i18n/strings.php:476
1792
  msgid "Saved Packages"
1793
  msgstr "Paquetes guardados"
1794
 
1795
+ #: woocommerce-services.php:1222 woocommerce-services.php:1229
1796
  msgid "Tracking"
1797
  msgstr "Seguimiento"
1798
 
1799
+ #: i18n/strings.php:207 i18n/strings.php:412 i18n/strings.php:416
1800
  msgid "Create shipping label"
1801
  msgid_plural "Create shipping labels"
1802
  msgstr[0] "Crear etiqueta de envío"
1869
  msgid "The service and rate chosen by the customer at checkout is not available. Please choose another."
1870
  msgstr "El servicio y la tarifa elegidos por el cliente en el pago no están disponibles. Por favor, elige otro."
1871
 
1872
+ #: i18n/strings.php:354 i18n/strings.php:445
1873
  msgid "Request a refund"
1874
  msgstr "Solicitar un reembolso"
1875
 
1876
+ #: i18n/strings.php:355 i18n/strings.php:446
1877
  msgid "You can request a refund for a shipping label that has not been used to ship a package. It will take at least %(days)s days to process."
1878
  msgstr "Puedes solicitar un reembolso de una etiqueta de envío que no se haya utilizado para enviar un paquete. Tardará al menos %(días)s en procesarse."
1879
 
1880
+ #: i18n/strings.php:356 i18n/strings.php:447
1881
  msgid "Purchase date"
1882
  msgstr "Fecha de compra"
1883
 
1884
+ #: i18n/strings.php:357 i18n/strings.php:448
1885
  msgid "Amount eligible for refund"
1886
  msgstr "Cantidad elegible para el reembolso"
1887
 
1888
+ #: i18n/strings.php:336 i18n/strings.php:360 i18n/strings.php:427
1889
+ #: i18n/strings.php:451
1890
  msgid "Reprint shipping label"
1891
  msgstr "Volver a imprimir la etiqueta de envío"
1892
 
1893
+ #: i18n/strings.php:361 i18n/strings.php:452
1894
  msgid "If there was a printing error when you purchased the label, you can print it again."
1895
  msgstr "Si hay un problema de impresión cuando compres la etiqueta puedes imprimirla de nuevo."
1896
 
1897
+ #: i18n/strings.php:362 i18n/strings.php:453
1898
  msgid "NOTE: If you already used the label in a package, printing and using it again is a violation of our terms of service and may result in criminal charges."
1899
  msgstr "NOTA: Si ya has usado la etiqueta en un paquete, imprimirla y usarla de nuevo es una violación de nuestros términos del servicio y podría resultar en cargos criminales."
1900
 
1901
+ #: i18n/strings.php:325 i18n/strings.php:359 i18n/strings.php:450
1902
  msgid "Print"
1903
  msgstr "Imprimir"
1904
 
1905
  #: i18n/strings.php:16 i18n/strings.php:82 i18n/strings.php:122
1906
  #: i18n/strings.php:158 i18n/strings.php:167 i18n/strings.php:178
1907
+ #: i18n/strings.php:263 i18n/strings.php:352 i18n/strings.php:358
1908
+ #: i18n/strings.php:443 i18n/strings.php:449
1909
  msgid "Cancel"
1910
  msgstr "Cancelar"
1911
 
1912
+ #: i18n/strings.php:370 i18n/strings.php:461
1913
  msgid "N/A"
1914
  msgstr "N/D"
1915
 
1916
+ #: i18n/strings.php:8 i18n/strings.php:420 i18n/strings.php:470
1917
  msgid "More"
1918
  msgstr "Más"
1919
 
1956
  msgid "Packaging"
1957
  msgstr "Paquetería"
1958
 
1959
+ #: woocommerce-services.php:1602
1960
  msgid "Section not loading? Visit the <a href=\"%s\">status page</a> for troubleshooting steps."
1961
  msgstr "¿No carga la sección? Visita la <a href=\"%s\">página de estado</a> para ver los pasos de solución de problemas."
1962
 
1968
  msgid "Note: Jetpack is connected, but development mode is also enabled on this site. Please disable development mode."
1969
  msgstr "Nota: Jetpack está conectado, pero también está activo el modo de desarrollo en este sitio. Por favor, desactiva el modo de desarrollo."
1970
 
1971
+ #: woocommerce-services.php:1455
1972
  msgid "Shipping Label"
1973
  msgstr "Etiqueta de envío"
1974
 
2025
  msgid "Unknown"
2026
  msgstr "Desconocido"
2027
 
2028
+ #: i18n/strings.php:391
2029
  msgid "Support"
2030
  msgstr "Soporte"
2031
 
2032
+ #: i18n/strings.php:379 i18n/strings.php:380
2033
  msgid "Debug"
2034
  msgstr "Depuración"
2035
 
2036
+ #: i18n/strings.php:410
2037
  msgid "Services"
2038
  msgstr "Servicios"
2039
 
2040
+ #: i18n/strings.php:394
2041
  msgctxt "This section displays the overall health of WooCommerce Shipping & Tax and the things it depends on"
2042
  msgid "Health"
2043
  msgstr "Salud"
2044
 
2045
+ #: i18n/strings.php:392
2046
  msgid "Need help?"
2047
  msgstr "¿Necesitas ayuda?"
2048
 
2050
  msgid "Log is empty"
2051
  msgstr "El registro está vacío"
2052
 
2053
+ #: i18n/strings.php:383 i18n/strings.php:387
2054
  msgid "Disabled"
2055
  msgstr "Desactivado"
2056
 
2057
+ #: i18n/strings.php:382 i18n/strings.php:386
2058
  msgid "Enabled"
2059
  msgstr "Activo"
2060
 
2078
  msgid "Setup for this service has not yet been completed"
2079
  msgstr "La configuración de este servició aún no se ha completado"
2080
 
2081
+ #: i18n/strings.php:399
2082
  msgid "Service data is up-to-date"
2083
  msgstr "Los datos del servicio están al día"
2084
 
2085
+ #: i18n/strings.php:398
2086
  msgid "Service data was found, but is more than one day old"
2087
  msgstr "Se encontaron datos del servicio, pero son de hace más de un día"
2088
 
2089
+ #: i18n/strings.php:397
2090
  msgid "Service data was found, but is more than three days old"
2091
  msgstr "Se encontraron datos del servicio, pero son de hace más de tres días"
2092
 
2093
+ #: i18n/strings.php:400
2094
  msgid "Service data found, but may be out of date"
2095
  msgstr "Se han encontrado datos del servicio, pero podrían ser obsoletos"
2096
 
2097
+ #: i18n/strings.php:401
2098
  msgid "No service data available"
2099
  msgstr "No hay disponibles datos del servicio"
2100
 
2101
+ #: i18n/strings.php:396
2102
  msgid "Jetpack"
2103
  msgstr "Jetpack"
2104
 
2122
  msgid "Please install and activate the Jetpack plugin, version %s or higher"
2123
  msgstr "Por favor, instala y activa el plugin Jetpack, en su versión %s o superior"
2124
 
2125
+ #. Author of the plugin
2126
+ #: i18n/strings.php:395
2127
  msgid "WooCommerce"
2128
  msgstr "WooCommerce"
2129
 
2139
  msgid "WooCommerce %1$s or higher is required (You are running %2$s)"
2140
  msgstr "Se necesita WooCommerce %1$s o superior (estás ejecutando la versión %2$s)"
2141
 
2142
+ #: classes/class-wc-connect-error-notice.php:104 woocommerce-services.php:1638
2143
  msgid "Dismiss this notice"
2144
  msgstr "Descartar este aviso"
2145
 
i18n/languages/woocommerce-services-es_MX.json CHANGED
@@ -1 +1 @@
1
- {"0":[null,"0"],"":{"po-revision-date":"2021-03-18 14:19:32+0000","mime-version":"1.0","content-type":"text/plain; charset=UTF-8","content-transfer-encoding":"8bit","plural-forms":"nplurals=2; plural=n != 1;","x-generator":"GlotPress/3.0.0-alpha.2","language":"es_MX","project-id-version":"Plugins - WooCommerce Shipping &amp; Tax - Stable (latest release)"},"Features":[null,"Características"],"Carrier":[null,"Transportista"],"Express delivery from the experts in international shipping":[null,"Entrega exprés de los expertos en envíos internacionales"],"Live rates for %(carrierName)s at checkout":[null,"Tarifas en vivo de %(carrierName)s al finalizar la compra"],"Ship with the largest delivery network in the United States":[null,"Envía con la mayor red de entrega de Estados Unidos"],"Discounted %(carrierName)s shipping labels":[null,"Etiquetas de envío con descuento de %(carrierName)s"],"To be displayed at checkout, this carrier must be added as a shipping method to selected shipping zones":[null,"Para que se muestre al finalizar la compra, este transportista tiene que ser añadido como método de envío a las zonas de envío seleccionadas"],"Add to shipping zones":[null,"Añadir a las zonas de envío"],"Show live rates directly on your store - never under or overcharge for shipping again":[null,"Muestra las tarifas en vivo directamente en tu tienda - nunca vuelvas a cobrar de menos o de más en el envío"],"Live rates at checkout":[null,"Tarifas en vivo al finalizar la compra"],"Last updated %s.":[null,"Última actualización %s."],"At least one of the new predefined packages has the same name as existing packages.":[null,"Al menos uno de los nuevos paquetes predefinidos tiene el mismo nombre que los paquetes existentes."],"The new predefined package names are not unique.":[null,"Los nombres del paquete predefinido no son únicos."],"At least one of the new custom packages has the same name as existing packages.":[null,"Al menos uno de los nuevos paquetes personalizados tiene el mismo nombre que los paquetes existentes."],"The new custom package names are not unique.":[null,"Los nombres del nuevo paquete personalizado no son únicos."],"Go to shipping zones":[null,"Ir a las zonas de envío"],"Add DHL Express as a shipping method to selected shipping zones to display live rates at checkout.":[null,"Añade DHL Express como un método de envío para zonas de envío seleccionadas para mostrar las tarifas en vivo al finalizar la compra."],"DHL Express live rates are now available":[null,"Ahora están disponibles las tarifas en vivo de DHL Express"],"State %1$s is invalid for %2$s.":[null,"El estado %1$s no es válido para %2$s."],"%1$s %2$s is invalid for %3$s.":[null,"%1$s %2$s no es válido para %3$s."],"A %1$s is required for %2$s.":[null,"Se necesita un %1$s para %2$s."],"A country is required":[null,"Se necesita un país"],"Your store is over the limit for rate calls this month and your account will be charged for overages. To prevent future overage charges you can upgrade your plan.":[null,"Tu tienda ha superado este mes el límite para la tarifa de llamadas y se cobrará el exceso en tu cuenta. Para evitar futuros cargos por exceso, puedes actualizar tu plan."],"There was an error trying to activate your subscription.":[null,"Ha habido un error al intentar activar tu suscripción."],"Your subscription was succesfully activated.":[null,"Tu suscripción se ha activado correctamente."],"Manage":[null,"Gestionar"],"Usage":[null,"Uso"],"View and manage your subscription usage":[null,"Ver y gestionar el uso de tu suscripción"],"Shipping method":[null,"Método de envío"],"The subscription is already active.":[null,"La suscripción ya está activa."],"Set up your own carrier account to compare rates and print labels from multiple carriers in WooCommerce Shipping. Learn more about adding {{a}}carrier accounts{{/a}}.":[null,"Configura tu propia cuenta de transportista para comparar tarifas e imprimir etiquetas de varios transportistas en WooCommerce Shipping. Aprende más sobre cómo añadir {{a}}cuentas de transportista{{{/a}}."],"There was an error connecting to your %(carrierName)s account. Please check that all of the information entered matches your %(carrierName)s account and try to connect again.":[null,"Ha habido un error al conectar con tu cuenta %(carrierName)s. Por favor, comprueba que toda la información introducida coincide con la de tu cuenta %(carrierName)s e intenta conectar de nuevo."],"Your carrier account was connected successfully.":[null,"Tu cuenta de transportista ha sido conectada correctamente."],"The date must be a valid date in the format YYYY-MM-DD":[null,"La fecha debe ser una fecha válida en el formato AAAA-MM-DD"],"The invoice number needs to be 9 or 13 letters and digits in length":[null,"El número de la factura tiene que ser de 9 o 13 letras y dígitos de longitud"],"The company website format is not valid":[null,"El formato de la web de la empresa no es válido"],"The email format is not valid":[null,"El formato del correo electrónico no es válido"],"The ZIP/Postal code needs to be 5 digits in length":[null,"El código postal tiene que ser de 5 dígitos de longitud"],"The phone number needs to be 10 digits in length":[null,"El número de teléfono tiene que ser de 10 dígitos de longitud"],"The UPS account number needs to be 6 letters and digits in length":[null,"El número de la cuenta de UPS tiene que ser de 6 letras y dígitos de longitud"],"This will remove the connection with %(carrier_name)s. All of your %(carrier_name)s account information will be deleted and you won\\u2019t see %(carrier_name)s rates.":[null,"Esto eliminará la conexión con %(carrier_name)s. Toda la información de tu cuenta %(carrier_name)s será borrada y no verás las tarifas de %(carrier_name)s."],"Disconnect your %(carrier_name)s account":[null,"Desconectar tu cuenta %(carrier_name)s"],"There was an error trying to disconnect your carrier account":[null,"Ha habido un error al intentar desconectar tu cuenta de transportista"],"Your carrier account was disconnected succesfully.":[null,"Tu cuenta de transportista ha sido desconectada correctamente."],"DHL Express":[null,"DHL Express"],"Powered by WooCommerce Tax. If automated taxes are enabled, you'll need to enter prices exclusive of tax.":[null,"Funciona con WooCommerce Tax. Si están activados los impuestos automáticos, tendrás que introducir los precios sin impuestos."],"WooCommerce Helper auth is missing":[null,"Falta la identificación de WooCommerce Helper"],"USPS labels without tracking are not eligible for refund.":[null,"Las etiquetas de USPS sin seguimiento no son elegibles para reembolso."],"General Information":[null,"Información general"],"Connect your %(carrierName)s account":[null,"Conecta tu cuenta de %(carrierName)s"],"%(carrierName)s not supported.":[null,"%(carrierName)s no es compatible."],"Loading":[null,"Cargando"],"WooCommerce Shipping & Tax Data":[null,"WooCommerce Shipping & Tax Data"],"Print customs form":[null,"Imprimir impreso de aduanas"],"Test your WooCommerce Shipping & Tax connection":[null,"Prueba tu conexión a WooCommerce Shipping & Tax"],"WooCommerce Shipping & Tax Status":[null,"Estado de WooCommerce Shipping & Tax"],"Connect your store to activate WooCommerce Shipping & Tax":[null,"Conecta tu tienda para usar WooCommerce Shipping & Tax"],"Connect Jetpack to activate WooCommerce Shipping & Tax":[null,"Conecta Jetpack para activar WooCommerce Shipping & Tax"],"WooCommerce Shipping now supports DHL labels for international shipments. Purchase and print discounted labels from DHL and USPS right here.":[null,"WooCommerce Shipping ahora es compatible con la etiquetas de DHL para envíos internacionales. Compra desde aquí etiquetas de DHL y USPS."],"Discounted DHL Shipping Labels":[null,"Discounted DHL Shipping Labels"],"WooCommerce Shipping":[null,"WooCommerce Shipping"],"Invalid WooCommerce Shipping & Tax service slug provided":[null,"Slug de servicio de WooCommerce Shipping & Tax no válido proporcionado"],"WooCommerce Shipping & Tax":[null,"WooCommerce Shipping & Tax"],"ZIP/Postal code":[null,"Código postal"],"This action will delete any information entered on the form.":[null,"Esta acción borrará cualquier información introducida en el formulario."],"Cancel connection":[null,"Cancelar la conexión"],"Ok":[null,"Aceptar"],"UPS invoice control id":[null,"ID de control de la factura de UPS"],"UPS invoice currency":[null,"Moneda de la factura de UPS"],"UPS invoice amount":[null,"Importe de la factura de UPS"],"UPS invoice date":[null,"Fecha de factura de UPS"],"UPS invoice number":[null,"Número de factura de UPS"],"I have been issued an invoice from UPS within the past 90 days":[null,"Se me ha expedido una factura de UPS en los últimos 90 días."],"UPS account information":[null,"Información de la cuenta de UPS"],"Company website":[null,"Web de la empresa"],"Job title":[null,"Título profesional"],"Company name":[null,"Nombre de la empresa"],"This is the company info you used to create your UPS account":[null,"Esta es la información de la empresa que has usado para crear tu cuenta de UPS"],"Company information":[null,"Información de la empresa"],"Email":[null,"Correo electrónico"],"Address 2 (optional)":[null,"Dirección 2 (opcional)"],"Account number":[null,"Número de cuenta"],"This is the account number and address from your UPS profile":[null,"Este es el número de cuenta y la dirección de tu perfil de UPS"],"General information":[null,"Información general"],"If you need a UPS account number, go to {{a}}UPS.com{{/a}} to create a new account.":[null,"Si necesitas un número de cuenta de UPS, ve a {{a}}UPS.com{{/a}} para crear una nueva cuenta."],"Set up your own UPS carrier account to compare rates and print labels from multiple carriers in WooCommerce Shipping. Learn more about adding {{a}}carrier accounts{{/a}}.":[null,"Configura tu propia cuenta de transportista de UPS para comparar tarifas e imprimir etiquetas de varios transportistas en WooCommerce Shipping. Aprende más sobre cómo añadir {{a}}cuentas de transportistas{{{/a}}."],"Connect your UPS account":[null,"Conecta tu cuenta de UPS"],"Set up your own carrier account by adding your credentials here":[null,"Configura tu propia cuenta de transportista añadiendo aquí tus credenciales"],"Carrier account":[null,"Cuenta de transportista"],"Credentials":[null,"Credenciales"],"Adult signature required":[null,"Es obligatoria la firma de un adulto"],"Signature required":[null,"Firma obligatoria"],"Other\\u2026":[null,"Otros..."],"Select one\\u2026":[null,"Seleccionar uno..."],"Validating address\\u2026":[null,"Validando la dirección..."],"Purchasing\\u2026":[null,"Comprando..."],"Your UPS account will be charged":[null,"Se cargará en tu cuenta de UPS"],"Package %(index)s \\u2013 %(title)s":[null,"Paquete %(index)s – %(title)s"],"Saving\\u2026":[null,"Guardando..."],"Your tax rates and settings will be automatically configured for %1$s. <a href=\"https://docs.woocommerce.com/document/setting-up-taxes-in-woocommerce/#section-12\">Learn more about setting up tax rates for additional nexuses</a>":[null,"Tus tarifas de impuestos y ajustes se configurarán automáticamente para %1$s. <a href=\"https://docs.woocommerce.com/document/setting-up-taxes-in-woocommerce/#section-12\">Aprende más sobre cómo configurar tarifas de impuestos para nexos adicionales</a>"],"Your tax rates and settings will be automatically configured for %1$s, %2$s. <a href=\"https://docs.woocommerce.com/document/setting-up-taxes-in-woocommerce/#section-12\">Learn more about setting up tax rates for additional nexuses</a>":[null,"Tus tarifas de impuestos y ajustes se configurarán automáticamente para %1$s, %2$s. <a href=\"https://docs.woocommerce.com/document/setting-up-taxes-in-woocommerce/#section-12\">Aprende más sobre cómo configurar tarifas de impuestos para nexos adicionales</a>"],"%(itemCount)d item is ready to be fulfilled":["%(itemCount)d items are ready to be fulfilled","%(itemCount)d artículo está listo para ser completado","%(itemCount)d artículos están listos para ser completados"],"%(itemCount)d item was fulfilled on {{span}}%(createdDate)s{{/span}}":["%(itemCount)d items were fulfilled on {{span}}%(createdDate)s{{/span}}","%(itemCount)d artículo ha sido completado el {{span}}%(createdDate)s{{/span}}","%(itemCount)d artículos han sido completados el {{span}}%(createdDate)s{{/span}}"],"Schedule a pickup":[null,"Programa una recogida"],"Label images older than 180 days are deleted by our technology partners for general security and data privacy concerns.":[null,"Las imágenes de las etiquetas de más de 180 días las borran nuestros colaboradores tecnológicos por cuestiones de seguridad y privacidad de datos."],"Labels older than 30 days cannot be refunded.":[null,"Las etiquetas de más de 30 días no se pueden reembolsar."],"Mark this order as complete and notify the customer":[null,"Marcar este pedido como completo y avisar al cliente"],"Notify the customer with shipment details":[null,"Avisar el cliente con los detalles del envío"],"You save %s with WooCommerce Shipping":[null,"Ahorras %s con WooCommerce Shipping"],"WooCommerce Shipping & Tax requires the WooCommerce plugin to be installed and active. You can download %s here.":[null,"WooCommerce Shipping & Tax necesita que esté instalado y activado el plugin WooCommerce. Puedes descargarlo aquí: %s."],"No tracking information available at this time":[null,"En este momento no hay disponible información de seguimiento"],"Connection error: unable to create label at this time":[null,"Error de conexión: en este momento no se puede crear la etiqueta"],"Track Package":["Track Packages","Seguimiento del paquete","Seguimiento de los paquetes"],"Which package would you like to track?":[null,"¿Qué paquete te gustaría seguir?"],"%(service)s label (#%(labelIndex)d)":[null,"%(service)s etiqueta (#%(labelIndex)d)"],"To print this shipping label, {{a}}add a credit card to your account{{/a}}.":[null,"Para imprimir esta etiqueta de envío, {{a}}añade una tarjeta de crédito a tu cuenta{{/a}}."],"Add credit card":[null,"Añadir una tarjeta de crédito"],"To print this shipping label, {{a}}choose a credit card to add to your account{{/a}}.":[null,"Para imprimir esta etiqueta de envío, {{a}}elige una tarjeta de crédito para añadirla a tu cuenta{{/a}}."],"Choose credit card":[null,"Elegir una tarjeta de crédito"],"Buy shipping label":["Buy shipping labels","Comprar una etiqueta de envío","Comprar etiquetas de envío"],"shipping label ready":["shipping labels ready","etiqueta de envío lista","etiquetas de envío listas"],"Shipping from":[null,"Envío desde"],"Shipping summary":[null,"Resumen del envío"],"Customer paid a {{shippingMethod/}} of {{shippingCost/}} for shipping":[null,"El cliente ha pagado un {{shippingMethod/}} de {{shippingCost/}} por el envío"],"Shipping rates":[null,"Tarifas de envío"],"HS Tariff number":[null,"Número del arancel del HS"],"Submit":[null,"Enviar"],"Total Weight (with package)":[null,"Peso total (con el paquete)"],"QTY":[null,"Cantidad"],"Weight":[null,"Peso"],"Items to fulfill":[null,"Elementos para rellenar"],"Select a package type":[null,"Selecciona un tipo de paquete"],"Package details":[null,"Detalles del paquete"],"Your shipping packages have been saved.":[null,"Han sido guardados tus paquetes de envío."],"0.0":[null,"0.0"],"Shipment Tracking":[null,"Seguimiento de envíos"],"Customs information valid":[null,"Información de aduanas válida"],"Customs information incomplete":[null,"Información de aduanas incompleta"],"Packing Log:":[null,"Registro de paquetería:"],"Chosen Rate:":[null,"Tarifa elegida:"],"Shipping Method ID:":[null,"ID del método de envío:"],"Shipping Method Name:":[null,"Nombre del método de envío:"],"Shipping Debug":[null,"Depuración de envíos"],"<strong>\"%2$s\" is missing weight, length, width, or height.</strong><br />Shipping rates cannot be calculated. <a href=\"%1$s\">Enter dimensions and weight for %2$s</a> so your customers can purchase this item.":[null,"<strong>A \"%2$s\" le falta el peso, largo, ancho o la altura.</strong><br />No se pueden calcular las tarifas de envío. <a href=\"%1$s\">Introduce las dimensiones y el peso de %2$s</a> para que tus clientes puedan comprar este artículo."],"Unable to send request to WooCommerce Shipping & Tax server. The timestamp generated for the signature is too old.":[null,"No ha sido posible enviar la solicitud al servidor de WooCommerce Shipping & Tax. La marca temporal generada para la firma es demasiado antigua."],"Unable to send request to WooCommerce Shipping & Tax server. Jetpack Token is malformed.":[null,"No ha sido posible enviar la solicitud al servidor de WooCommerce Shipping & Tax. El token de JetPack está mal formado."],"Unable to send request to WooCommerce Shipping & Tax server. Jetpack Token is missing":[null,"No ha sido posible enviar la solicitud al servidor de WooCommerce Shipping & Tax. Falta el token de JetPack."],"Error: The WooCommerce Shipping & Tax server returned: %1$s %2$s ( %3$d )":[null,"Error: El servidor de WooCommerce Shipping & Tax ha devuelto: %1$s %2$s (%3$d)"],"Error: The WooCommerce Shipping & Tax server returned ( %d ) and an empty response body.":[null,"Error: El servidor de WooCommerce Shipping & Tax ha devuelto (%d) y un cuerpo de respuesta vacío."],"Error: The WooCommerce Shipping & Tax server returned HTTP code: %d":[null,"Error: El servidor de WooCommerce Shipping & Tax ha devuelto un código HTTP: %d"],"Unable to encode body for request to WooCommerce Shipping & Tax server.":[null,"No ha sido posible cifrar el cuerpo para la solicitud al servidor de WooCommerce Shipping & Tax."],"Unable to send request to WooCommerce Shipping & Tax server. Body must be an array.":[null,"No ha sido posible enviar la solicitud al servidor de WooCommerce Shipping & Tax. El cuerpo debe ser un array."],"Unable to send request to WooCommerce Shipping & Tax server. Jetpack connection does not implement get_access_token.":[null,"No ha sido posible enviar la solicitud al servidor de WooCommerce Shipping & Tax. La conexión de Jetpack no implementa `get_access_token`."],"Unable to send request to WooCommerce Shipping & Tax server. Jetpack_Data was not found.":[null,"No ha sido posible enviar la solicitud al servidor de WooCommerce Shipping & Tax. No se ha encontrado Jetpack_Data."],"No shipping rate could be calculated. No items in the package are shippable.":[null,"No se ha podido calcular la tarifa de envío. Ningún artículo del paquete se puede enviar."],"Product ( ID: %d ) is missing a dimension value. Shipping rates cannot be calculated.":[null,"Al producto ( ID: %d ) le falta un valor de dimensión. No se pueden calcular las tarifas de envío."],"Product ( ID: %d ) did not include a weight. Shipping rates cannot be calculated.":[null,"El producto ( ID: %d ) no incluye peso. No se pueden calcular las tarifas de envío."],"Packing log:":[null,"Registro de paquetería:"],"Received rate: %1$s (%2$s)":[null,"Tarifa recibida: %1$s (%2$s)"],"Your customer selected {{shippingMethod/}}":[null,"Tu cliente ha elegido {{shippingMethod/}}"],"Total rate: %(total)s":[null,"Tasa total: %(total)s"],"%(serviceName)s: %(rate)s":[null,"%(serviceName)s: %(rate)s"],"No rates found":[null,"No se han encontrado tarifas"],"WooCommerce Shipping gives you access to USPS Commercial Pricing, which is discounted over Retail rates.":[null,"WooCommerce Shipping te da acceso a USPS Commercial Pricing, que tienen descuento sobre las tarifas minoristas."],"more info":[null,"más información"],"ITN":[null,"ITN"],"Sanitary / Phytosanitary inspection":[null,"Inspección sanitaria / fitosanitaria"],"Quarantine":[null,"Cuarentena"],"None":[null,"Ninguno"],"Restriction type":[null,"Tipo de restricción"],"Details":[null,"Detalles"],"Sample":[null,"Muestra"],"Gift":[null,"Regalo"],"Documents":[null,"Documentos"],"Merchandise":[null,"Mercancía"],"Contents type":[null,"Tipo de contenido"],"Return to sender if package is unable to be delivered":[null,"Devolver al remitente si el paquete no puede ser entregado"],"Value (per unit)":[null,"Valor (por unidad)"],"Weight (per unit)":[null,"Peso (por unidad)"],"Save customs form":[null,"Guardar el formulario de aduanas"],"Customs":[null,"Aduanas"],"Use address as entered":[null,"Utilizar la dirección tal y como se ha introducido"],"View on Google Maps":[null,"Ver en Google Maps"],"Verify with USPS":[null,"Verificar con USPS"],"Automatic verification failed for this address. It may still be a valid address \\u2014 use the tools below to manually verify.":[null,"Ha fallado la verificación automática para esta dirección. Aún puede ser una dirección válida: usa las siguientes herramientas para verificarla manualmente."],"We were unable to automatically verify the address.":[null,"No hemos podido verificar automáticamente la dirección."],"We were unable to automatically verify the address \\u2014 %(error)s.":[null,"No hemos podido verificar automáticamente la dirección: %(error)s."],"You've edited the address, please revalidate it for accurate rates":[null,"Has editado la dirección, vuelve a validarla para obtener tarifas precisas."],"Verify address":[null,"Verificar dirección"],"%(message)s. Please modify the address and try again.":[null,"%(message)s. Modifica la dirección y vuelve a intentarlo."],"View details":[null,"Ver detalles"],"Items":[null,"Artículos"],"Package":[null,"Paquete"],"Receipt":[null,"Recibo"],"Label #%(labelIndex)s details":[null,"Detalles de la etiqueta #%(labelIndex)s"],"{{icon/}} Delete this package":[null,"{{icon/}}} Borrar este paquete"],"Done":[null,"Hecho"],"Add boxes, envelopes, and other packages you use most frequently":[null,"Añade las cajas, sobres y otros paquetes que uses más frecuentemente"],"Remove":[null,"Eliminar"],"Edit":[null,"Editar"],"Weight of empty package":[null,"Peso del paquete vacío"],"Unique package name":[null,"Nombre único del paquete"],"Envelope":[null,"Sobre"],"Box":[null,"Caja"],"This field is required.":[null,"Este campo es obligatorio."],"Payment":[null,"Pago"],"Email the label purchase receipts to %(ownerName)s (%(ownerLogin)s) at %(ownerEmail)s":[null,"Envía por correo electrónico los recibos de compra de etiquetas a %(ownerName)s (%(ownerLogin)s) a %(ownerEmail)s"],"Email Receipts":[null,"Recibos por correo electrónico"],"To purchase shipping labels, choose a credit card you have on file or add a new card.":[null,"Para comprar etiquetas de envío elige una tarjeta de crédito que tengas guardada o añade una nueva tarjeta."],"Choose a different card":[null,"Elige una tarjeta diferente"],"To purchase shipping labels, add a credit card.":[null,"Para comprar etiquetas de envío, añade una tarjeta de crédito."],"We'll charge the credit card on your account (%(card)s) to pay for the labels you print":[null,"Haremos un cargo en la tarjeta de crédito de tu cuenta (%(card)s) para pagar las etiquetas que imprimas"],"Credit cards are retrieved from the following WordPress.com account: %(wpcomLogin)s <%(wpcomEmail)s>":[null,"Las tarjetas de crédito se obtienen de la siguiente dirección de WordPress.com: %(wpcomLogin)s <%(wpcomEmail)s>"],"Only the site owner can change these settings. Please contact %(ownerName)s (%(ownerLogin)s) to change the shipping label settings.":[null,"Solo el propietario del sitio puede cambiar estos ajustes. Por favor, contacta con %(ownerName)s (%(ownerLogin)s) para cambiar los ajustes de etiquetas de envío."],"Only the site owner can manage shipping label payment methods. Please contact %(ownerName)s (%(ownerLogin)s) to manage payment methods.":[null,"Solo el propietario del sitio puede administrar los métodos de pago de etiquetas de envío. Por favor, contactda con %(ownerName)s (%(ownerLogin)s) para que administre los métodos de pago."],"%(card)s ****%(digits)s":[null,"%(tarjeta)s ****%(digits)s"],"Print shipping labels yourself and save a trip to the post office":[null,"Imprime tú mismo las etiquetas de envío y ahórrate un viaje a la oficina de correos"],"H":[null,"Al"],"W":[null,"An"],"L":[null,"L"],"Disconnect":[null,"Desconectar"],"Activate":[null,"Activado"],"No activity yet":[null,"Aún no hay actividad"],"Note":[null,"Nota"],"Refunded %(amount)s":[null,"Reembolsado %(amount)s"],"%(service)s label (#%(labelNum)d) refund rejected":[null,"reembolso de etiqueta de %(service)s (#%(labelNum)d) rechazado"],"%(service)s label (#%(labelNum)d) refunded (%(amount)s)":[null,"reembolsado (%(amount)s) de etiqueta de %(service)s (#%(labelNum)d) rechazado"],"%(service)s label (#%(labelNum)d) refund requested (%(amount)s)":[null,"%(service)s etiqueta (#%(labelNum)d) solicitud de reembolso (%(amount)s)"],"Note sent to customer":[null,"Nota enviada al cliente"],"Internal note":[null,"Nota interna"],"Show notes from %(date)s":[null,"Mostrar notas desde %(date)s"],"%(count)s event":["%(count)s events","%(count)s evento","%(count)s eventos"],"WeChat Pay":[null,"WeChat Pay"],"Toggle menu":[null,"Alternar menú"],"Return to Order #%(orderId)s":[null,"Volver al pedido #%(orderId)s"],"Our team is here for you. View our {{docsA}}support docs{{/docsA}} or {{ticketA}}open a support ticket{{/ticketA}}.":[null,"Nuestro equipo está aquí para ti. Ve nuestros {{docsA}}documentos de soporte{{/docsA}} o {{ticketA}}abre un ticket de soporte{{/ticketA}}."],"Logging":[null,"Registro"],"No services configured. {{a}}Add a shipping service{{/a}}":[null,"No hay configurado ningún servicio. {{a}}Añade un servicio de envío{{/a}}"],"Edit service settings":[null,"Editar ajustes del servicio"],"Request was made %s - check logs below or {{a}}edit service settings{{/a}}":[null,"La solicitud la hizo %s - revisa los registros abajo o {{a}}edita los ajustes del servicio{{/a}}"],"Copy for support":[null,"Copiar para soporte"],"Last %s entry. {{a}}Show full log{{/a}}":["Last %s entries. {{a}}Show full log{{/a}}","Última %s entrada. {{a}}Mostrar registro completo{{/a}}","Últimas %s entradas. {{a}}Mostrar registro completo{{/a}}"],"Log tail copied to clipboard":[null,"Cola del registro copiada al portapapeles"],"You have unsaved changes. Are you sure you want to leave this page?":[null,"Tienes cambios sin guardar. ¿Seguro que quieres abandonar esta página?"],"Value ($ per unit)":[null,"Value ($ per unit)"],"Weight (%s per unit)":[null,"Weight (%s per unit)"],"Description":[null,"Descripción"],"Country where the product was manufactured or assembled":[null,"País donde se fabricó o ensambló el producto"],"Origin country":[null,"País de origen"],"USPS":[null,"USPS"],"Optional":[null,"Opcional"],"Retry":[null,"Reintentar"],"shipping label printing":[null,"impresión de etiquetas de envío"],"shipping label printing and smoother payment setup":[null,"impresión de etiquetas de envío y una configuración de pago más sencilla"],"automated tax calculation and shipping label printing":[null,"cálculo automático de impuestos e impresión de etiquetas de envío"],"automated tax calculation, shipping label printing, and smoother payment setup":[null,"cálculo automático de impuestos, impresión de etiquetas de envío y configuración de pagos más sencilla"],"Data resource description.":[null,"Descripción del recurso de datos."],"Data resource ID.":[null,"ID del recurso de datos."],"List of supported currencies.":[null,"Lista de monedas disponibles."],"List of supported states in a given country.":[null,"Lista de provincias incluidas para un país dado."],"List of supported continents, countries, and states.":[null,"Lista de continentes, países y provincias incluidos."],"Sorry, you cannot view this resource.":[null,"Lo siento, no puedes ver este recurso."],"Sorry, you cannot list resources.":[null,"Lo siento, no puedes listar recursos."],"The unit weights are defined in for this country.":[null,"Las unidades de peso definidas para este país."],"Thousands separator for displayed prices in this country.":[null,"Separador de miles para los precios mostrados en este país."],"Full name of state.":[null,"Nombre completo de la provincia."],"State code.":[null,"Código de la provincia."],"List of states in this country.":[null,"Lista de provincias de este país."],"Number of decimal points shown in displayed prices for this country.":[null,"Número de decimales mostrados en los precios visibles para este país."],"Full name of country.":[null,"Nombre completo del país."],"The unit lengths are defined in for this country.":[null,"Las unidades de medida definidas para este país."],"Decimal separator for displayed prices for this country.":[null,"Separador decimal para los precios mostrados para este país."],"Currency symbol position for this country.":[null,"Posición del símbolo de moneda para este país."],"Default ISO4127 alpha-3 currency code for the country.":[null,"Código de moneda ISO4127 alpha-3 por defecto para el país."],"ISO3166 alpha-2 country code.":[null,"Código ISO3166 alpha-2 del país."],"List of countries on this continent.":[null,"Lista de países de este continente."],"Full name of continent.":[null,"Nombre completo del continente."],"There are no locations matching these parameters.":[null,"No hay ubicaciones que coincidan con estos parámetros."],"2 character continent code.":[null,"Código de 2 caracteres del continente."],"Shipping label tracking number":[null,"Número de seguimiento de la etiqueta de envío"],"Shipping label service":[null,"Servicio de etiquetas de envío"],"Warning: Erasing personal data will cause the ability to reprint or refund WooCommerce Shipping & Tax shipping labels to be lost on the affected orders.":[null,"Advertencia: El borrado de datos personales provocará la posibilidad de volver a imprimir o reembolsar etiquetas de envío de WooCommerce Shipping & Tax que hayan desaparecido en los pedidos afectados."],"By using this extension, you may be storing personal data or sharing data with external services. <a href=\"%s\" target=\"_blank\">Learn more about how this works, including what you may want to include in your privacy policy.</a>":[null,"Al usar esta extensión puede que estés almacenando datos personales o compartiendo datos con servicios externos. <a href=\"%s\" target=\"_blank\">Aprende más sobre cómo funciona esto, incluyendo lo que quieras incluir en tu política de privacidad.</a>"],"There was a problem updating your saved credit cards.":[null,"Hubo un problema al actualizar tus tarjetas de crédito guardadas."],"No labels found for this period":[null,"No se han encontrado etiquetas en este periodo"],"Total":[null,"Total"],"Refund":[null,"Reembolso"],"Price":[null,"Precio"],"Order":[null,"Pedido"],"Time":[null,"Hora"],"Requested":[null,"Solicitado"],"Last 7 days":[null,"Últimos 7 días"],"This month":[null,"Este mes"],"Last month":[null,"El mes pasado"],"Year":[null,"Año"],"Export CSV":[null,"Exportar CSV"],"Other Log":[null,"Otros registros"],"Taxes Log":[null,"Registro de impuestos"],"Shipping Log":[null,"Registro de envíos"],"Display troubleshooting information on the Cart and Checkout pages.":[null,"Muestra información para resolución de problemas en las páginas de carrito y finalizar compra."],"Write diagnostic messages to log files. Helpful when contacting support.":[null,"Escribe mensajes de diagnóstico en los archivos de registro. Útil al contactar con soporte."],"Enter your email address at which to accept payments. You'll need to link your own account in order to perform anything other than \"sale\" transactions.":[null,"Introduce tu dirección de correo electrónico en la que aceptas pagos. Tendrás que enlazar a tu cuenta para realizar cualquier otra cosa además de las transacciones de \"ofertas\"."],"Payment Email":[null,"Correo electrónico de pagos"],"To authenticate payments with WooCommerce Shipping & Tax, <a href=\"%s\">click here</a>.":[null,"Para identificar pagos con WooCommerce Shipping & Tax, <a href=\"%s\">haz clic aquí</a>."],"Payments will be authenticated by WooCommerce Shipping & Tax and directed to the following email address. To disable this feature and link a PayPal account, <a href=\"%s\">click here</a>.":[null,"Los pagos los identificará WooCommerce Shipping & Tax y se dirigirán a la siguiente dirección de correo electrónico. Para desactivar esta característica y enlazar a una cuenta de PayPal, <a href=\"%s\">haz clic aquí</a>."],"%s (Note that \"authorizing payment only\" requires linking a PayPal account.)":[null,"%s (Date cuenta que \"autorizar solo pagos\" requiere enlazar con una cuenta de PayPal.)"],"Link account":[null,"Enlazar cuenta"],"Link a new or existing PayPal account to make sure future orders are marked “Processing” instead of “On hold”, and so refunds can be issued without leaving WooCommerce.":[null,"Enlaza una cuenta de PayPal nueva o existente para asegurar que los pedidos futuros se marquen como \"Procesando\" en vez de \"En espera\", y para emitir reembolsos sin tener que salir de WooCommerce."],"Link your PayPal account":[null,"Enlaza a tu cuenta de PayPal"],"To issue refunds via PayPal Checkout, you will need to <a href=\"%s\">link a PayPal account</a> with the email address that received this payment.":[null,"Para enviar reembolsos a través de PayPal Exprés tendrás que <a href=\"%s\">enlazar a una cuenta de PayPal</a> con la dirección de correo electrónico que recibió este pago."],"Link a PayPal account":[null,"Enlaza a una cuenta PayPal"],"Refresh":[null,"Recargar"],"Tracking number":[null,"Número de seguimiento"],"Provider":[null,"Proveedor"],"WooCommerce Shipping & Tax is almost ready to go! Once you connect Jetpack you'll have access to %s.":[null,"¡WooCommerce Shipping & Tax está casi listo! Una vez que conectes con Jetpack, tendrás acceso a %s."],"Hosted services for WooCommerce: automated tax calculation, shipping label printing, and smoother payment setup.":[null,"Servicios alojados para WooCommerce: cálculos automáticos de impuestos, tarifas de envío en directo, impresión de etiquetas de envío y una configuración de pago más sencilla."],"Tax Class":[null,"Clase de impuesto"],"Shipping":[null,"Envío"],"Compound":[null,"Compuesto"],"Priority":[null,"Prioridad"],"Tax Name":[null,"Nombre de impuesto"],"Rate %":[null,"Tarifa %"],"ZIP/Postcode":[null,"Código postal"],"State Code":[null,"Código de provincia"],"Country Code":[null,"Código de país"],"Enable automated taxes":[null,"Activar impuestos automáticos"],"Disable automated taxes":[null,"Desactivar impuestos automáticos"],"Automated taxes":[null,"Impuestos automáticos"],"By clicking \"%1$s\", you agree to the <a href=\"%2$s\">Terms of Service</a> and to <a href=\"%3$s\">share certain data and settings</a> with WordPress.com and/or third parties.":[null,"Haciendo clic en \"%1$s\" aceptas los <a href=\"%2$s\">términos del servicio</a> y a <a href=\"%3$s\">compartir ciertos datos y ajustes</a> con WordPress.com y/o otros."],"Setup complete.":[null,"Configuración completa."],"You can now enjoy %s.":[null,"Ya puedes disfrutar %s."],"WooCommerce Shipping & Tax is almost ready to go! Once you connect your store you'll have access to %s.":[null,"¡WooCommerce Shipping & Tax está casi listo! Una vez que conectes tu tienda tendrás acceso a %s."],"automated tax calculation":[null,"cálculo automático de impuestos"],"smoother payment setup":[null,"configuración de pago más sencilla"],"automated tax calculation and smoother payment setup":[null,"cálculo automático de impuestos y configuración de pago más sencilla"],"Required":[null,"Requerido"],"Your shipping settings have been saved.":[null,"Tus ajustes de envío se han guardado."],"Unable to save your shipping settings. Please try again.":[null,"No ha sido posible guardar tus ajustes de envío. Por favor, inténtalo de nuevo."],"Dimensions":[null,"Dimensiones"],"Close":[null,"Cerrar"],"Packages to be Shipped":[null,"Paquetes a enviar"],"Add to a New Package":[null,"Añadir a un nuevo paquete"],"Add items":[null,"Añadir artículos"],"Individually Shipped Item":[null,"Artículo enviado individualmente"],"Item Dimensions":[null,"Dimensiones del artículo"],"Please select a package":[null,"Por favor, elige un paquete"],"Service schemas were not loaded":[null,"No se cargaron los esquemas del servicio"],"Bad request":[null,"Petición errónea"],"Order not found":[null,"Pedido no encontrado"],"Got it, thanks!":[null,"¡Entendido, gracias!"],"Activate Jetpack and connect":[null,"Activa Jetpack y conecta"],"Install Jetpack and connect":[null,"Instala Jetpack y conecta"],"Something went wrong. Please try connecting to Jetpack manually, or contact support on the WordPress.org forums.":[null,"Algo fue mal. Por favor, trata de conectar manualmente con Jetpack, o contacta con soporte en los foros de WordPress.org."],"Connecting...":[null,"Conectando…"],"Activating...":[null,"Activando…"],"When you're ready, purchase and print discounted labels from %s right here.":[null,"Cuando estés listo, compra e imprime etiquetas de %s con descuento aquí mismo."],"Discounted Shipping Labels":[null,"Etiquetas de envío con descuento"],"American Express":[null,"American Express"],"Discover":[null,"Descubre"],"MasterCard":[null,"MasterCard"],"VISA":[null,"VISA"],"PayPal":[null,"PayPal"],"Add another credit card":[null,"Añadir otra tarjeta de créditoi"],"%(selectedCount)d package selected":["%(selectedCount)d packages selected","%(selectedCount)d paquete seleccionado","%(selectedCount)d paquetes seleccionados"],"Unable to get your settings. Please refresh the page to try again.":[null,"No ha sido posible recuperar tus ajustes. Por favor, recarga la página para intentarlo de nuevo."],"%(numSelected)d service selected":["%(numSelected)d services selected","%(numSelected)d servicio seleccionado","%(numSelected)d servicios seleccionados"],"Add and edit saved packages using the {{a}}Packaging Manager{{/a}}.":[null,"Añade y edita los paquetes guardados usando el {{a}}Gestor de paquetería{{/a}}."],"Tracking #: {{trackingLink/}}":[null,"Seguimiento #: {{trackingLink/}}"],"%(item)s from {{pckg/}}":[null,"%(item)s desde {{pckg/}}"],"Which items would you like to add to {{pckg/}}?":[null,"¿Qué artículos te gustaría añadir a {{pckg/}}?"],"1 item in 1 package: %(weight)s %(unit)s total":[null,"1 artículo en 1 paquete: %(weight)s %(unit)s en total"],"%(itemsCount)d items in 1 package: %(weight)s %(unit)s total":[null,"%(itemsCount)d artículos en 1 paquete: %(weight)s %(unit)s en total"],"%(itemsCount)d items in %(packageCount)d packages: %(weight)s %(unit)s total":[null,"%(itemsCount)d artículos en %(packageCount)d paquetes: %(weight)s %(unit)s en total"],"{{itemLink/}} is currently saved for a later shipment.":[null,"{{itemLink/}} está actualmente guardado para un envío posterior."],"{{itemLink/}} is currently shipped in its original packaging.":[null,"{{itemLink/}} está actualmente enviado en su paquete original."],"{{itemLink/}} is currently in {{pckg/}}.":[null,"{{itemLink/}} está en actualmente en {{pckg/}}."],"Choose rate: %(pckg)s":[null,"Elegir tarifa: %(pckg)s"],"Refund label (-%(amount)s)":[null,"Etiqueta de reembolso (-%(amount)s)"],"Where would you like to move it?":[null,"¿A dónde te gustaría moverlo?"],"Unsaved changes made to packages":[null,"Los cambios realizados a los paquetes no se han guardado"],"There are no items in this package.":[null,"No existen artículos en este paquete."],"Ship in original packaging":[null,"Enviar en su paquete original"],"Request refund":[null,"Solicitar reembolso"],"Reprint":[null,"Volver a imprimir"],"Paper size":[null,"Tamaño del papel"],"No packages selected":[null,"No hay paquetes seleccionados"],"Move":[null,"Mover"],"Move item":[null,"Mover artículo"],"Increase the rates calculated by the carrier to account for packaging and handling costs. You can also add a negative amount to save your customers money.":[null,"Incrementa las tarifas calculadas por el transportista a la cantidad de los costes de empaquetado y manipulado. También puedes añadir una cantidad negativa para ahorrar dinero a tus clientes."],"Create new label":[null,"Crear nueva etiqueta"],"All packages selected":[null,"Seleccionados todos los paquetes"],"Add":[null,"Añadir"],"Add item":[null,"Añadir artículo"],"Add a credit card":[null,"Añadir una tarjeta de crédito"],"#%d - [Deleted product]":[null,"#%d - [producto borrado]"],"#%1$d - %2$s":[null,"#%1$d - %2$s"],"<a href=\"%s\">Support</a>":[null,"<a href=\"%s\">Soporte</a>"],"There was an error installing Jetpack. Please try installing it manually.":[null,"Hubo un error al instalar Jetpack. Por favor, trata de instalarlo manualmente."],"Shipping Labels":[null,"Etiquetas de envío"],"Automattic":[null,"Automattic"],"https://woocommerce.com/":[null,"https://woocommerce.com/"],"Phone":[null,"Teléfono"],"Connect":[null,"Conectar"],"Save Settings":[null,"Guardar ajustes"],"Your changes have been saved.":[null,"Tus cambios se han guardado."],"There was a problem with one or more entries. Please fix the errors below and try saving again.":[null,"Hubo un problema con una o más entradas. Por favor, soluciona los errores de abajo y trata de guardar de nuevo."],"Expand":[null,"Expandir"],"Dismiss":[null,"Descartar"],"You have unsaved changes.":[null,"Tienes cambios sin guardar."],"Type of package":[null,"Tipo de paquete"],"Add package":["Add packages","Añadir paquete",""],"Invalid value.":[null,"Valor no válido."],"This field is required":[null,"Este campo es obligatorio"],"Package name":[null,"Nombre del paquete"],"This field must be unique":[null,"Este campo debe ser único"],"Unable to save your shipping packages. Please try again.":[null,"No se han podido guardar tus paquetes de envío. Por favor, inténtalo de nuevo."],"Save changes":[null,"Guardar cambios"],"Untitled":[null,"Sin título"],"Dimensions (L x W x H)":[null,"Dimensiones (L x An x Al)"],"All services selected":[null,"Seleccionados todos los servicios"],"Expand Services":[null,"Expandir servicios"],"Service":[null,"Servicio"],"Price adjustment":[null,"Ajuste de precio"],"Saved Packages":[null,"Paquetes guardados"],"Tracking":[null,"Seguimiento"],"Create shipping label":["Create shipping labels","Crear etiqueta de envío",""],"Name":[null,"Nombre"],"Company":[null,"Empresa"],"Address":[null,"Dirección"],"City":[null,"Ciudad"],"State":[null,"Provincia"],"Country":[null,"País"],"Invalid address":[null,"Dirección no válida"],"Origin address":[null,"Dirección de origen"],"Destination address":[null,"Dirección de destino"],"We have slightly modified the address entered. If correct, please use the suggested address to ensure accurate delivery.":[null,"Hemos modificado ligeramente la dirección introducida. Si es correcta, por favor, utiliza la dirección sugerida para asegurar una entrega precisa."],"Address entered":[null,"Dirección introducida"],"Edit address":[null,"Editar dirección"],"Suggested address":[null,"Dirección sugerida"],"Use selected address":[null,"Usar la dirección seleccionada"],"Use these packages":[null,"Utilizar estos paquetes"],"The service and rate chosen by the customer at checkout is not available. Please choose another.":[null,"El servicio y la tarifa elegidos por el cliente en el pago no están disponibles. Por favor, elige otro."],"Request a refund":[null,"Solicitar un reembolso"],"You can request a refund for a shipping label that has not been used to ship a package. It will take at least %(days)s days to process.":[null,"Puedes solicitar un reembolso de una etiqueta de envío que no se haya utilizado para enviar un paquete. Tardará al menos %(days)s días en procesarse."],"Purchase date":[null,"Fecha de compra"],"Amount eligible for refund":[null,"Cantidad elegible para el reembolso"],"Reprint shipping label":[null,"Volver a imprimir la etiqueta de envío"],"If there was a printing error when you purchased the label, you can print it again.":[null,"Si hay un problema de impresión cuando compres la etiqueta puedes imprimirla de nuevo."],"NOTE: If you already used the label in a package, printing and using it again is a violation of our terms of service and may result in criminal charges.":[null,"NOTA: Si ya has usado la etiqueta en un paquete, imprimirla y usarla de nuevo es una violación de nuestros términos del servicio y podría resultar en cargos criminales."],"Print":[null,"Imprimir"],"Cancel":[null,"Cancelar"],"N/A":[null,"N/D"],"More":[null,"Más"],"Invalid PDF request.":[null,"Petición de PDF no válida."],"Unknown package":[null,"Paquete desconocido"],"Individual packaging":[null,"Empaquetado individual"],"Unable to update service settings. Validation failed. %s":[null,"No ha sido posible actualizar los ajustes del servicio. Falló la validación. %s"],"Unable to update service settings. The form data could not be read.":[null,"No ha sido posible actualizar los ajustes del servicio. Los datos del formulario no pudieron leerse."],"Unable to update service settings. Form data is missing service ID.":[null,"No ha sido posible actualizar los ajustes del servicio. Los datos del formulario son de un ID de servicio no disponible."],"Unable to update settings. The form data could not be read.":[null,"No fue posible actualizar los ajustes. Los datos del formulario no se han podido leer."],"Unable to update settings. %s":[null,"No ha sido posible actualizar los ajustes. %s"],"Packaging":[null,"Paquetería"],"Section not loading? Visit the <a href=\"%s\">status page</a> for troubleshooting steps.":[null,"¿No carga la sección? Visita la <a href=\"%s\">página de estado</a> para ver los pasos de solución de problemas."],"Note: Jetpack development mode is enabled on this site. This site will not be able to obtain payment methods from WooCommerce Shipping & Tax production servers.":[null,"Nota: El modo de desarrollo de Jetpack está activo en este sitio. Este sitio no podrá obtener métodos de pago de los servidores de producción de WooCommerce Shipping & Tax."],"Note: Jetpack is connected, but development mode is also enabled on this site. Please disable development mode.":[null,"Nota: Jetpack está conectado, pero también está activo el modo de desarrollo en este sitio. Por favor, desactiva el modo de desarrollo."],"Shipping Label":[null,"Etiqueta de envío"],"yd":[null,"yd"],"in":[null,"en"],"mm":[null,"mm"],"cm":[null,"cm"],"m":[null,"m"],"oz":[null,"oz"],"lbs":[null,"lbs"],"g":[null,"g"],"kg":[null,"kg"],"An invalid service ID was received.":[null,"Se ha recibido un ID de servicio no válido."],"An invalid service instance was received.":[null,"Se ha recibido una instancia de servicio no válida."],"Rest of the World":[null,"Resto del mundo"],"Support":[null,"Soporte"],"Debug":[null,"Depuración"],"Services":[null,"Servicios"],"Need help?":[null,"¿Necesitas ayuda?"],"Log is empty":[null,"El registro está vacío"],"Disabled":[null,"Desactivado"],"Enabled":[null,"Activo"],"%s Shipping Zone":[null,"%s zona de envío"],"The most recent rate request failed":[null,"La reciente petición de tarifas más reciente falló"],"The most recent rate request was successful":[null,"La petición de tarifas más reciente tuvo éxito"],"No rate requests have yet been made for this service":[null,"Aún no han habido peticiones de tarifas para este servicio"],"Setup for this service has not yet been completed":[null,"La configuración de este servició aún no se ha completado"],"Service data is up-to-date":[null,"Los datos del servicio están al día"],"Service data was found, but is more than one day old":[null,"Se encontaron datos del servicio, pero son de hace más de un día"],"Service data was found, but is more than three days old":[null,"Se encontraron datos del servicio, pero son de hace más de tres días"],"Service data found, but may be out of date":[null,"Se han encontrado datos del servicio, pero podrían ser obsoletos"],"No service data available":[null,"No hay disponibles datos del servicio"],"Jetpack":[null,"Jetpack"],"Jetpack %s is connected and working correctly":[null,"Jetpack %s está conectado y funcionando correctamente"],"This is a Jetpack staging site":[null,"Este es un sitio en pruebas de Jetpack"],"Jetpack is not connected to WordPress.com. Make sure the Jetpack plugin is installed, activated, and connected.":[null,"Jetpack no está conectado a WordPress.com. Asegúrate de que el plugin Jetpack está instalado, activo y conectado."],"Jetpack %1$s or higher is required (You are running %2$s)":[null,"Se necesita Jetpack %1$s o superior (estás ejecutando la versión %2$s)"],"Please install and activate the Jetpack plugin, version %s or higher":[null,"Por favor, instala y activa el plugin Jetpack, en su versión %s o superior"],"WooCommerce":[null,"WooCommerce"],"WooCommerce %s is configured correctly":[null,"WooCommerce %s está configurado correctamente"],"Please set Base Location in WooCommerce Settings > General":[null,"Por favor, establece la ubicación base en Ajustes de WooCommerce > General"],"WooCommerce %1$s or higher is required (You are running %2$s)":[null,"Se necesita WooCommerce %1$s o superior (estás ejecutando la versión %2$s)"],"Dismiss this notice":[null,"Descartar este aviso"],"ERROR: Your site has a problem connecting to the WooCommerce Shipping & Tax API. Please make sure your Jetpack connection is working.":[null,"ERROR: Tu sitio tiene un problema al conectar con la API de WooCommerce Shipping & Tax. Por favor, aségurate de que está funcionando tu conexión de Jetpack."],"Your site is succesfully communicating to the WooCommerce Shipping & Tax API.":[null,"Tu sitio se está comunicando correctamente con la API de WooCommerce Shipping & Tax."],"This will test your WooCommerce Shipping & Tax connection to ensure everything is working correctly":[null,"Esto probará tu conexión de WooCommerce Shipping & Tax para asegurar que todo funciona correctamente"],"Test Connection":[null,"Probar conexión"],"The WooCommerce Shipping & Tax brandname\u0004WooCommerce Shipping & Tax":[null,"WooCommerce Shipping & Tax"],"The WooCommerce Shipping & Tax brandname\u0004WooCommerce Shipping":[null,"WooCommerce Shipping"],"%s - ZIP/Postal code checkout field label\u0004Invalid %s entered.":[null,"%s introducido no válido."],"%s - ZIP/Postal code checkout field label\u0004%s does not match the selected state.":[null,"%s no coincide con la provincia seleccionada."],"date is of the form MM/YY\u0004Expires %(date)s":[null,"Caduca %(date)s"],"A service with an unknown title and unknown method_title\u0004Unknown":[null,"Desconocido"],"This section displays the overall health of WooCommerce Shipping & Tax and the things it depends on\u0004Health":[null,"Salud"]}
1
+ {"0":[null,"0"],"":{"po-revision-date":"2021-03-18 14:19:32+0000","mime-version":"1.0","content-type":"text/plain; charset=UTF-8","content-transfer-encoding":"8bit","plural-forms":"nplurals=2; plural=n != 1;","x-generator":"GlotPress/3.0.0-alpha.2","language":"es_MX","project-id-version":"Plugins - WooCommerce Shipping &amp; Tax - Stable (latest release)"},"Features":[null,"Características"],"Carrier":[null,"Transportista"],"Express delivery from the experts in international shipping":[null,"Entrega exprés de los expertos en envíos internacionales"],"Live rates for %(carrierName)s at checkout":[null,"Tarifas en vivo de %(carrierName)s al finalizar la compra"],"Ship with the largest delivery network in the United States":[null,"Envía con la mayor red de entrega de Estados Unidos"],"Discounted %(carrierName)s shipping labels":[null,"Etiquetas de envío con descuento de %(carrierName)s"],"To be displayed at checkout, this carrier must be added as a shipping method to selected shipping zones":[null,"Para que se muestre al finalizar la compra, este transportista tiene que ser añadido como método de envío a las zonas de envío seleccionadas"],"Add to shipping zones":[null,"Añadir a las zonas de envío"],"Show live rates directly on your store - never under or overcharge for shipping again":[null,"Muestra las tarifas en vivo directamente en tu tienda - nunca vuelvas a cobrar de menos o de más en el envío"],"Live rates at checkout":[null,"Tarifas en vivo al finalizar la compra"],"Last updated %s.":[null,"Última actualización %s."],"At least one of the new predefined packages has the same name as existing packages.":[null,"Al menos uno de los nuevos paquetes predefinidos tiene el mismo nombre que los paquetes existentes."],"The new predefined package names are not unique.":[null,"Los nombres del paquete predefinido no son únicos."],"At least one of the new custom packages has the same name as existing packages.":[null,"Al menos uno de los nuevos paquetes personalizados tiene el mismo nombre que los paquetes existentes."],"The new custom package names are not unique.":[null,"Los nombres del nuevo paquete personalizado no son únicos."],"Go to shipping zones":[null,"Ir a las zonas de envío"],"Add DHL Express as a shipping method to selected shipping zones to display live rates at checkout.":[null,"Añade DHL Express como un método de envío para zonas de envío seleccionadas para mostrar las tarifas en vivo al finalizar la compra."],"DHL Express live rates are now available":[null,"Ahora están disponibles las tarifas en vivo de DHL Express"],"State %1$s is invalid for %2$s.":[null,"El estado %1$s no es válido para %2$s."],"%1$s %2$s is invalid for %3$s.":[null,"%1$s %2$s no es válido para %3$s."],"A %1$s is required for %2$s.":[null,"Se necesita un %1$s para %2$s."],"A country is required":[null,"Se necesita un país"],"Your store is over the limit for rate calls this month and your account will be charged for overages. To prevent future overage charges you can upgrade your plan.":[null,"Tu tienda ha superado este mes el límite para la tarifa de llamadas y se cobrará el exceso en tu cuenta. Para evitar futuros cargos por exceso, puedes actualizar tu plan."],"There was an error trying to activate your subscription.":[null,"Ha habido un error al intentar activar tu suscripción."],"Your subscription was succesfully activated.":[null,"Tu suscripción se ha activado correctamente."],"Manage":[null,"Gestionar"],"Usage":[null,"Uso"],"View and manage your subscription usage":[null,"Ver y gestionar el uso de tu suscripción"],"Shipping method":[null,"Método de envío"],"The subscription is already active.":[null,"La suscripción ya está activa."],"Set up your own carrier account to compare rates and print labels from multiple carriers in WooCommerce Shipping. Learn more about adding {{a}}carrier accounts{{/a}}.":[null,"Configura tu propia cuenta de transportista para comparar tarifas e imprimir etiquetas de varios transportistas en WooCommerce Shipping. Aprende más sobre cómo añadir {{a}}cuentas de transportista{{{/a}}."],"There was an error connecting to your %(carrierName)s account. Please check that all of the information entered matches your %(carrierName)s account and try to connect again.":[null,"Ha habido un error al conectar con tu cuenta %(carrierName)s. Por favor, comprueba que toda la información introducida coincide con la de tu cuenta %(carrierName)s e intenta conectar de nuevo."],"Your carrier account was connected successfully.":[null,"Tu cuenta de transportista ha sido conectada correctamente."],"The date must be a valid date in the format YYYY-MM-DD":[null,"La fecha debe ser una fecha válida en el formato AAAA-MM-DD"],"The invoice number needs to be 9 or 13 letters and digits in length":[null,"El número de la factura tiene que ser de 9 o 13 letras y dígitos de longitud"],"The company website format is not valid":[null,"El formato de la web de la empresa no es válido"],"The email format is not valid":[null,"El formato del correo electrónico no es válido"],"The ZIP/Postal code needs to be 5 digits in length":[null,"El código postal tiene que ser de 5 dígitos de longitud"],"The phone number needs to be 10 digits in length":[null,"El número de teléfono tiene que ser de 10 dígitos de longitud"],"The UPS account number needs to be 6 letters and digits in length":[null,"El número de la cuenta de UPS tiene que ser de 6 letras y dígitos de longitud"],"This will remove the connection with %(carrier_name)s. All of your %(carrier_name)s account information will be deleted and you won\\u2019t see %(carrier_name)s rates.":[null,"Esto eliminará la conexión con %(carrier_name)s. Toda la información de tu cuenta %(carrier_name)s será borrada y no verás las tarifas de %(carrier_name)s."],"Disconnect your %(carrier_name)s account":[null,"Desconectar tu cuenta %(carrier_name)s"],"There was an error trying to disconnect your carrier account":[null,"Ha habido un error al intentar desconectar tu cuenta de transportista"],"Your carrier account was disconnected succesfully.":[null,"Tu cuenta de transportista ha sido desconectada correctamente."],"DHL Express":[null,"DHL Express"],"Powered by WooCommerce Tax. If automated taxes are enabled, you'll need to enter prices exclusive of tax.":[null,"Funciona con WooCommerce Tax. Si están activados los impuestos automáticos, tendrás que introducir los precios sin impuestos."],"WooCommerce Helper auth is missing":[null,"Falta la identificación de WooCommerce Helper"],"USPS labels without tracking are not eligible for refund.":[null,"Las etiquetas de USPS sin seguimiento no son elegibles para reembolso."],"General Information":[null,"Información general"],"Connect your %(carrierName)s account":[null,"Conecta tu cuenta de %(carrierName)s"],"%(carrierName)s not supported.":[null,"%(carrierName)s no es compatible."],"Loading":[null,"Cargando"],"WooCommerce Shipping & Tax Data":[null,"WooCommerce Shipping & Tax Data"],"Print customs form":[null,"Imprimir impreso de aduanas"],"Test your WooCommerce Shipping & Tax connection":[null,"Prueba tu conexión a WooCommerce Shipping & Tax"],"WooCommerce Shipping & Tax Status":[null,"Estado de WooCommerce Shipping & Tax"],"Connect your store to activate WooCommerce Shipping & Tax":[null,"Conecta tu tienda para usar WooCommerce Shipping & Tax"],"Connect Jetpack to activate WooCommerce Shipping & Tax":[null,"Conecta Jetpack para activar WooCommerce Shipping & Tax"],"WooCommerce Shipping now supports DHL labels for international shipments. Purchase and print discounted labels from DHL and USPS right here.":[null,"WooCommerce Shipping ahora es compatible con la etiquetas de DHL para envíos internacionales. Compra desde aquí etiquetas de DHL y USPS."],"Discounted DHL Shipping Labels":[null,"Discounted DHL Shipping Labels"],"WooCommerce Shipping":[null,"WooCommerce Shipping"],"Invalid WooCommerce Shipping & Tax service slug provided":[null,"Slug de servicio de WooCommerce Shipping & Tax no válido proporcionado"],"WooCommerce Shipping & Tax":[null,"WooCommerce Shipping & Tax"],"ZIP/Postal code":[null,"Código postal"],"This action will delete any information entered on the form.":[null,"Esta acción borrará cualquier información introducida en el formulario."],"Cancel connection":[null,"Cancelar la conexión"],"Ok":[null,"Aceptar"],"UPS invoice control id":[null,"ID de control de la factura de UPS"],"UPS invoice currency":[null,"Moneda de la factura de UPS"],"UPS invoice amount":[null,"Importe de la factura de UPS"],"UPS invoice date":[null,"Fecha de factura de UPS"],"UPS invoice number":[null,"Número de factura de UPS"],"I have been issued an invoice from UPS within the past 90 days":[null,"Se me ha expedido una factura de UPS en los últimos 90 días."],"UPS account information":[null,"Información de la cuenta de UPS"],"Company website":[null,"Web de la empresa"],"Job title":[null,"Título profesional"],"Company name":[null,"Nombre de la empresa"],"This is the company info you used to create your UPS account":[null,"Esta es la información de la empresa que has usado para crear tu cuenta de UPS"],"Company information":[null,"Información de la empresa"],"Email":[null,"Correo electrónico"],"Address 2 (optional)":[null,"Dirección 2 (opcional)"],"Account number":[null,"Número de cuenta"],"This is the account number and address from your UPS profile":[null,"Este es el número de cuenta y la dirección de tu perfil de UPS"],"General information":[null,"Información general"],"If you need a UPS account number, go to {{a}}UPS.com{{/a}} to create a new account.":[null,"Si necesitas un número de cuenta de UPS, ve a {{a}}UPS.com{{/a}} para crear una nueva cuenta."],"Set up your own UPS carrier account to compare rates and print labels from multiple carriers in WooCommerce Shipping. Learn more about adding {{a}}carrier accounts{{/a}}.":[null,"Configura tu propia cuenta de transportista de UPS para comparar tarifas e imprimir etiquetas de varios transportistas en WooCommerce Shipping. Aprende más sobre cómo añadir {{a}}cuentas de transportistas{{{/a}}."],"Connect your UPS account":[null,"Conecta tu cuenta de UPS"],"Set up your own carrier account by adding your credentials here":[null,"Configura tu propia cuenta de transportista añadiendo aquí tus credenciales"],"Carrier account":[null,"Cuenta de transportista"],"Credentials":[null,"Credenciales"],"Adult signature required":[null,"Es obligatoria la firma de un adulto"],"Signature required":[null,"Firma obligatoria"],"Other\\u2026":[null,"Otros..."],"Select one\\u2026":[null,"Seleccionar uno..."],"Validating address\\u2026":[null,"Validando la dirección..."],"Purchasing\\u2026":[null,"Comprando..."],"Your UPS account will be charged":[null,"Se cargará en tu cuenta de UPS"],"Package %(index)s \\u2013 %(title)s":[null,"Paquete %(index)s – %(title)s"],"Saving\\u2026":[null,"Guardando..."],"Your tax rates and settings will be automatically configured for %1$s. <a href=\"https://docs.woocommerce.com/document/setting-up-taxes-in-woocommerce/#section-12\">Learn more about setting up tax rates for additional nexuses</a>":[null,"Tus tarifas de impuestos y ajustes se configurarán automáticamente para %1$s. <a href=\"https://docs.woocommerce.com/document/setting-up-taxes-in-woocommerce/#section-12\">Aprende más sobre cómo configurar tarifas de impuestos para nexos adicionales</a>"],"Your tax rates and settings will be automatically configured for %1$s, %2$s. <a href=\"https://docs.woocommerce.com/document/setting-up-taxes-in-woocommerce/#section-12\">Learn more about setting up tax rates for additional nexuses</a>":[null,"Tus tarifas de impuestos y ajustes se configurarán automáticamente para %1$s, %2$s. <a href=\"https://docs.woocommerce.com/document/setting-up-taxes-in-woocommerce/#section-12\">Aprende más sobre cómo configurar tarifas de impuestos para nexos adicionales</a>"],"%(itemCount)d item is ready to be fulfilled":["%(itemCount)d items are ready to be fulfilled","%(itemCount)d artículo está listo para ser completado","%(itemCount)d artículos están listos para ser completados"],"%(itemCount)d item was fulfilled on {{span}}%(createdDate)s{{/span}}":["%(itemCount)d items were fulfilled on {{span}}%(createdDate)s{{/span}}","%(itemCount)d artículo ha sido completado el {{span}}%(createdDate)s{{/span}}","%(itemCount)d artículos han sido completados el {{span}}%(createdDate)s{{/span}}"],"Schedule a pickup":[null,"Programa una recogida"],"Label images older than 180 days are deleted by our technology partners for general security and data privacy concerns.":[null,"Las imágenes de las etiquetas de más de 180 días las borran nuestros colaboradores tecnológicos por cuestiones de seguridad y privacidad de datos."],"Labels older than 30 days cannot be refunded.":[null,"Las etiquetas de más de 30 días no se pueden reembolsar."],"Mark this order as complete and notify the customer":[null,"Marcar este pedido como completo y avisar al cliente"],"Notify the customer with shipment details":[null,"Avisar el cliente con los detalles del envío"],"You save %s with WooCommerce Shipping":[null,"Ahorras %s con WooCommerce Shipping"],"WooCommerce Shipping & Tax requires the WooCommerce plugin to be installed and active. You can download %s here.":[null,"WooCommerce Shipping & Tax necesita que esté instalado y activado el plugin WooCommerce. Puedes descargarlo aquí: %s."],"No tracking information available at this time":[null,"En este momento no hay disponible información de seguimiento"],"Connection error: unable to create label at this time":[null,"Error de conexión: en este momento no se puede crear la etiqueta"],"Track Package":["Track Packages","Seguimiento del paquete","Seguimiento de los paquetes"],"Which package would you like to track?":[null,"¿Qué paquete te gustaría seguir?"],"%(service)s label (#%(labelIndex)d)":[null,"%(service)s etiqueta (#%(labelIndex)d)"],"To print this shipping label, {{a}}add a credit card to your account{{/a}}.":[null,"Para imprimir esta etiqueta de envío, {{a}}añade una tarjeta de crédito a tu cuenta{{/a}}."],"Add credit card":[null,"Añadir una tarjeta de crédito"],"To print this shipping label, {{a}}choose a credit card to add to your account{{/a}}.":[null,"Para imprimir esta etiqueta de envío, {{a}}elige una tarjeta de crédito para añadirla a tu cuenta{{/a}}."],"Choose credit card":[null,"Elegir una tarjeta de crédito"],"Buy shipping label":["Buy shipping labels","Comprar una etiqueta de envío","Comprar etiquetas de envío"],"shipping label ready":["shipping labels ready","etiqueta de envío lista","etiquetas de envío listas"],"Shipping from":[null,"Envío desde"],"Shipping summary":[null,"Resumen del envío"],"Customer paid a {{shippingMethod/}} of {{shippingCost/}} for shipping":[null,"El cliente ha pagado un {{shippingMethod/}} de {{shippingCost/}} por el envío"],"Shipping rates":[null,"Tarifas de envío"],"HS Tariff number":[null,"Número del arancel del HS"],"Submit":[null,"Enviar"],"Total Weight (with package)":[null,"Peso total (con el paquete)"],"QTY":[null,"Cantidad"],"Weight":[null,"Peso"],"Items to fulfill":[null,"Elementos para rellenar"],"Select a package type":[null,"Selecciona un tipo de paquete"],"Package details":[null,"Detalles del paquete"],"Your shipping packages have been saved.":[null,"Han sido guardados tus paquetes de envío."],"0.0":[null,"0.0"],"Shipment Tracking":[null,"Seguimiento de envíos"],"Customs information valid":[null,"Información de aduanas válida"],"Customs information incomplete":[null,"Información de aduanas incompleta"],"Packing Log:":[null,"Registro de paquetería:"],"Chosen Rate:":[null,"Tarifa elegida:"],"Shipping Method ID:":[null,"ID del método de envío:"],"Shipping Method Name:":[null,"Nombre del método de envío:"],"Shipping Debug":[null,"Depuración de envíos"],"<strong>\"%2$s\" is missing weight, length, width, or height.</strong><br />Shipping rates cannot be calculated. <a href=\"%1$s\">Enter dimensions and weight for %2$s</a> so your customers can purchase this item.":[null,"<strong>A \"%2$s\" le falta el peso, largo, ancho o la altura.</strong><br />No se pueden calcular las tarifas de envío. <a href=\"%1$s\">Introduce las dimensiones y el peso de %2$s</a> para que tus clientes puedan comprar este artículo."],"Unable to send request to WooCommerce Shipping & Tax server. The timestamp generated for the signature is too old.":[null,"No ha sido posible enviar la solicitud al servidor de WooCommerce Shipping & Tax. La marca temporal generada para la firma es demasiado antigua."],"Unable to send request to WooCommerce Shipping & Tax server. Jetpack Token is malformed.":[null,"No ha sido posible enviar la solicitud al servidor de WooCommerce Shipping & Tax. El token de JetPack está mal formado."],"Unable to send request to WooCommerce Shipping & Tax server. Jetpack Token is missing":[null,"No ha sido posible enviar la solicitud al servidor de WooCommerce Shipping & Tax. Falta el token de JetPack."],"Error: The WooCommerce Shipping & Tax server returned: %1$s %2$s ( %3$d )":[null,"Error: El servidor de WooCommerce Shipping & Tax ha devuelto: %1$s %2$s (%3$d)"],"Error: The WooCommerce Shipping & Tax server returned ( %d ) and an empty response body.":[null,"Error: El servidor de WooCommerce Shipping & Tax ha devuelto (%d) y un cuerpo de respuesta vacío."],"Error: The WooCommerce Shipping & Tax server returned HTTP code: %d":[null,"Error: El servidor de WooCommerce Shipping & Tax ha devuelto un código HTTP: %d"],"Unable to encode body for request to WooCommerce Shipping & Tax server.":[null,"No ha sido posible cifrar el cuerpo para la solicitud al servidor de WooCommerce Shipping & Tax."],"Unable to send request to WooCommerce Shipping & Tax server. Body must be an array.":[null,"No ha sido posible enviar la solicitud al servidor de WooCommerce Shipping & Tax. El cuerpo debe ser un array."],"Unable to send request to WooCommerce Shipping & Tax server. Jetpack connection does not implement get_access_token.":[null,"No ha sido posible enviar la solicitud al servidor de WooCommerce Shipping & Tax. La conexión de Jetpack no implementa `get_access_token`."],"Unable to send request to WooCommerce Shipping & Tax server. Jetpack_Data was not found.":[null,"No ha sido posible enviar la solicitud al servidor de WooCommerce Shipping & Tax. No se ha encontrado Jetpack_Data."],"No shipping rate could be calculated. No items in the package are shippable.":[null,"No se ha podido calcular la tarifa de envío. Ningún artículo del paquete se puede enviar."],"Product ( ID: %d ) is missing a dimension value. Shipping rates cannot be calculated.":[null,"Al producto ( ID: %d ) le falta un valor de dimensión. No se pueden calcular las tarifas de envío."],"Product ( ID: %d ) did not include a weight. Shipping rates cannot be calculated.":[null,"El producto ( ID: %d ) no incluye peso. No se pueden calcular las tarifas de envío."],"Packing log:":[null,"Registro de paquetería:"],"Received rate: %1$s (%2$s)":[null,"Tarifa recibida: %1$s (%2$s)"],"Your customer selected {{shippingMethod/}}":[null,"Tu cliente ha elegido {{shippingMethod/}}"],"Total rate: %(total)s":[null,"Tasa total: %(total)s"],"%(serviceName)s: %(rate)s":[null,"%(serviceName)s: %(rate)s"],"No rates found":[null,"No se han encontrado tarifas"],"WooCommerce Shipping gives you access to USPS Commercial Pricing, which is discounted over Retail rates.":[null,"WooCommerce Shipping te da acceso a USPS Commercial Pricing, que tienen descuento sobre las tarifas minoristas."],"more info":[null,"más información"],"ITN":[null,"ITN"],"Sanitary / Phytosanitary inspection":[null,"Inspección sanitaria / fitosanitaria"],"Quarantine":[null,"Cuarentena"],"None":[null,"Ninguno"],"Restriction type":[null,"Tipo de restricción"],"Details":[null,"Detalles"],"Sample":[null,"Muestra"],"Gift":[null,"Regalo"],"Documents":[null,"Documentos"],"Merchandise":[null,"Mercancía"],"Contents type":[null,"Tipo de contenido"],"Return to sender if package is unable to be delivered":[null,"Devolver al remitente si el paquete no puede ser entregado"],"Value (per unit)":[null,"Valor (por unidad)"],"Weight (per unit)":[null,"Peso (por unidad)"],"Save customs form":[null,"Guardar el formulario de aduanas"],"Customs":[null,"Aduanas"],"Use address as entered":[null,"Utilizar la dirección tal y como se ha introducido"],"View on Google Maps":[null,"Ver en Google Maps"],"Verify with USPS":[null,"Verificar con USPS"],"Automatic verification failed for this address. It may still be a valid address \\u2014 use the tools below to manually verify.":[null,"Ha fallado la verificación automática para esta dirección. Aún puede ser una dirección válida: usa las siguientes herramientas para verificarla manualmente."],"We were unable to automatically verify the address.":[null,"No hemos podido verificar automáticamente la dirección."],"We were unable to automatically verify the address \\u2014 %(error)s.":[null,"No hemos podido verificar automáticamente la dirección: %(error)s."],"You've edited the address, please revalidate it for accurate rates":[null,"Has editado la dirección, vuelve a validarla para obtener tarifas precisas."],"Verify address":[null,"Verificar dirección"],"%(message)s. Please modify the address and try again.":[null,"%(message)s. Modifica la dirección y vuelve a intentarlo."],"View details":[null,"Ver detalles"],"Items":[null,"Artículos"],"Package":[null,"Paquete"],"Receipt":[null,"Recibo"],"Label #%(labelIndex)s details":[null,"Detalles de la etiqueta #%(labelIndex)s"],"{{icon/}} Delete this package":[null,"{{icon/}}} Borrar este paquete"],"Done":[null,"Hecho"],"Add boxes, envelopes, and other packages you use most frequently":[null,"Añade las cajas, sobres y otros paquetes que uses más frecuentemente"],"Remove":[null,"Eliminar"],"Edit":[null,"Editar"],"Weight of empty package":[null,"Peso del paquete vacío"],"Unique package name":[null,"Nombre único del paquete"],"Envelope":[null,"Sobre"],"Box":[null,"Caja"],"This field is required.":[null,"Este campo es obligatorio."],"Payment":[null,"Pago"],"Email the label purchase receipts to %(ownerName)s (%(ownerLogin)s) at %(ownerEmail)s":[null,"Envía por correo electrónico los recibos de compra de etiquetas a %(ownerName)s (%(ownerLogin)s) a %(ownerEmail)s"],"Email Receipts":[null,"Recibos por correo electrónico"],"To purchase shipping labels, choose a credit card you have on file or add a new card.":[null,"Para comprar etiquetas de envío elige una tarjeta de crédito que tengas guardada o añade una nueva tarjeta."],"Choose a different card":[null,"Elige una tarjeta diferente"],"To purchase shipping labels, add a credit card.":[null,"Para comprar etiquetas de envío, añade una tarjeta de crédito."],"We'll charge the credit card on your account (%(card)s) to pay for the labels you print":[null,"Haremos un cargo en la tarjeta de crédito de tu cuenta (%(card)s) para pagar las etiquetas que imprimas"],"Credit cards are retrieved from the following WordPress.com account: %(wpcomLogin)s <%(wpcomEmail)s>":[null,"Las tarjetas de crédito se obtienen de la siguiente dirección de WordPress.com: %(wpcomLogin)s <%(wpcomEmail)s>"],"Only the site owner can change these settings. Please contact %(ownerName)s (%(ownerLogin)s) to change the shipping label settings.":[null,"Solo el propietario del sitio puede cambiar estos ajustes. Por favor, contacta con %(ownerName)s (%(ownerLogin)s) para cambiar los ajustes de etiquetas de envío."],"Only the site owner can manage shipping label payment methods. Please contact %(ownerName)s (%(ownerLogin)s) to manage payment methods.":[null,"Solo el propietario del sitio puede administrar los métodos de pago de etiquetas de envío. Por favor, contactda con %(ownerName)s (%(ownerLogin)s) para que administre los métodos de pago."],"%(card)s ****%(digits)s":[null,"%(tarjeta)s ****%(digits)s"],"Print shipping labels yourself and save a trip to the post office":[null,"Imprime tú mismo las etiquetas de envío y ahórrate un viaje a la oficina de correos"],"H":[null,"Al"],"W":[null,"An"],"L":[null,"L"],"Disconnect":[null,"Desconectar"],"Activate":[null,"Activado"],"No activity yet":[null,"Aún no hay actividad"],"Note":[null,"Nota"],"Refunded %(amount)s":[null,"Reembolsado %(amount)s"],"%(service)s label (#%(labelNum)d) refund rejected":[null,"reembolso de etiqueta de %(service)s (#%(labelNum)d) rechazado"],"%(service)s label (#%(labelNum)d) refunded (%(amount)s)":[null,"reembolsado (%(amount)s) de etiqueta de %(service)s (#%(labelNum)d) rechazado"],"%(service)s label (#%(labelNum)d) refund requested (%(amount)s)":[null,"%(service)s etiqueta (#%(labelNum)d) solicitud de reembolso (%(amount)s)"],"Note sent to customer":[null,"Nota enviada al cliente"],"Internal note":[null,"Nota interna"],"Show notes from %(date)s":[null,"Mostrar notas desde %(date)s"],"%(count)s event":["%(count)s events","%(count)s evento","%(count)s eventos"],"WeChat Pay":[null,"WeChat Pay"],"Toggle menu":[null,"Alternar menú"],"Return to Order #%(orderId)s":[null,"Volver al pedido #%(orderId)s"],"Our team is here for you. View our {{docsA}}support docs{{/docsA}} or {{ticketA}}open a support ticket{{/ticketA}}.":[null,"Nuestro equipo está aquí para ti. Ve nuestros {{docsA}}documentos de soporte{{/docsA}} o {{ticketA}}abre un ticket de soporte{{/ticketA}}."],"Logging":[null,"Registro"],"No services configured. {{a}}Add a shipping service{{/a}}":[null,"No hay configurado ningún servicio. {{a}}Añade un servicio de envío{{/a}}"],"Edit service settings":[null,"Editar ajustes del servicio"],"Request was made %s - check logs below or {{a}}edit service settings{{/a}}":[null,"La solicitud la hizo %s - revisa los registros abajo o {{a}}edita los ajustes del servicio{{/a}}"],"Copy for support":[null,"Copiar para soporte"],"Last %s entry. {{a}}Show full log{{/a}}":["Last %s entries. {{a}}Show full log{{/a}}","Última %s entrada. {{a}}Mostrar registro completo{{/a}}","Últimas %s entradas. {{a}}Mostrar registro completo{{/a}}"],"Log tail copied to clipboard":[null,"Cola del registro copiada al portapapeles"],"You have unsaved changes. Are you sure you want to leave this page?":[null,"Tienes cambios sin guardar. ¿Seguro que quieres abandonar esta página?"],"Value ($ per unit)":[null,"Value ($ per unit)"],"Weight (%s per unit)":[null,"Weight (%s per unit)"],"Description":[null,"Descripción"],"Country where the product was manufactured or assembled":[null,"País donde se fabricó o ensambló el producto"],"Origin country":[null,"País de origen"],"USPS":[null,"USPS"],"Optional":[null,"Opcional"],"Retry":[null,"Reintentar"],"shipping label printing":[null,"impresión de etiquetas de envío"],"shipping label printing and smoother payment setup":[null,"impresión de etiquetas de envío y una configuración de pago más sencilla"],"automated tax calculation and shipping label printing":[null,"cálculo automático de impuestos e impresión de etiquetas de envío"],"automated tax calculation, shipping label printing, and smoother payment setup":[null,"cálculo automático de impuestos, impresión de etiquetas de envío y configuración de pagos más sencilla"],"Data resource description.":[null,"Descripción del recurso de datos."],"Data resource ID.":[null,"ID del recurso de datos."],"List of supported currencies.":[null,"Lista de monedas disponibles."],"List of supported states in a given country.":[null,"Lista de provincias incluidas para un país dado."],"List of supported continents, countries, and states.":[null,"Lista de continentes, países y provincias incluidos."],"Sorry, you cannot view this resource.":[null,"Lo siento, no puedes ver este recurso."],"Sorry, you cannot list resources.":[null,"Lo siento, no puedes listar recursos."],"The unit weights are defined in for this country.":[null,"Las unidades de peso definidas para este país."],"Thousands separator for displayed prices in this country.":[null,"Separador de miles para los precios mostrados en este país."],"Full name of state.":[null,"Nombre completo de la provincia."],"State code.":[null,"Código de la provincia."],"List of states in this country.":[null,"Lista de provincias de este país."],"Number of decimal points shown in displayed prices for this country.":[null,"Número de decimales mostrados en los precios visibles para este país."],"Full name of country.":[null,"Nombre completo del país."],"The unit lengths are defined in for this country.":[null,"Las unidades de medida definidas para este país."],"Decimal separator for displayed prices for this country.":[null,"Separador decimal para los precios mostrados para este país."],"Currency symbol position for this country.":[null,"Posición del símbolo de moneda para este país."],"Default ISO4127 alpha-3 currency code for the country.":[null,"Código de moneda ISO4127 alpha-3 por defecto para el país."],"ISO3166 alpha-2 country code.":[null,"Código ISO3166 alpha-2 del país."],"List of countries on this continent.":[null,"Lista de países de este continente."],"Full name of continent.":[null,"Nombre completo del continente."],"There are no locations matching these parameters.":[null,"No hay ubicaciones que coincidan con estos parámetros."],"2 character continent code.":[null,"Código de 2 caracteres del continente."],"Shipping label tracking number":[null,"Número de seguimiento de la etiqueta de envío"],"Shipping label service":[null,"Servicio de etiquetas de envío"],"Warning: Erasing personal data will cause the ability to reprint or refund WooCommerce Shipping & Tax shipping labels to be lost on the affected orders.":[null,"Advertencia: El borrado de datos personales provocará la posibilidad de volver a imprimir o reembolsar etiquetas de envío de WooCommerce Shipping & Tax que hayan desaparecido en los pedidos afectados."],"By using this extension, you may be storing personal data or sharing data with external services. <a href=\"%s\" target=\"_blank\">Learn more about how this works, including what you may want to include in your privacy policy.</a>":[null,"Al usar esta extensión puede que estés almacenando datos personales o compartiendo datos con servicios externos. <a href=\"%s\" target=\"_blank\">Aprende más sobre cómo funciona esto, incluyendo lo que quieras incluir en tu política de privacidad.</a>"],"There was a problem updating your saved credit cards.":[null,"Hubo un problema al actualizar tus tarjetas de crédito guardadas."],"No labels found for this period":[null,"No se han encontrado etiquetas en este periodo"],"Total":[null,"Total"],"Refund":[null,"Reembolso"],"Price":[null,"Precio"],"Order":[null,"Pedido"],"Time":[null,"Hora"],"Requested":[null,"Solicitado"],"Last 7 days":[null,"Últimos 7 días"],"This month":[null,"Este mes"],"Last month":[null,"El mes pasado"],"Year":[null,"Año"],"Export CSV":[null,"Exportar CSV"],"Other Log":[null,"Otros registros"],"Taxes Log":[null,"Registro de impuestos"],"Shipping Log":[null,"Registro de envíos"],"Display troubleshooting information on the Cart and Checkout pages.":[null,"Muestra información para resolución de problemas en las páginas de carrito y finalizar compra."],"Write diagnostic messages to log files. Helpful when contacting support.":[null,"Escribe mensajes de diagnóstico en los archivos de registro. Útil al contactar con soporte."],"Enter your email address at which to accept payments. You'll need to link your own account in order to perform anything other than \"sale\" transactions.":[null,"Introduce tu dirección de correo electrónico en la que aceptas pagos. Tendrás que enlazar a tu cuenta para realizar cualquier otra cosa además de las transacciones de \"ofertas\"."],"Payment Email":[null,"Correo electrónico de pagos"],"To authenticate payments with WooCommerce Shipping & Tax, <a href=\"%s\">click here</a>.":[null,"Para identificar pagos con WooCommerce Shipping & Tax, <a href=\"%s\">haz clic aquí</a>."],"Payments will be authenticated by WooCommerce Shipping & Tax and directed to the following email address. To disable this feature and link a PayPal account, <a href=\"%s\">click here</a>.":[null,"Los pagos los identificará WooCommerce Shipping & Tax y se dirigirán a la siguiente dirección de correo electrónico. Para desactivar esta característica y enlazar a una cuenta de PayPal, <a href=\"%s\">haz clic aquí</a>."],"%s (Note that \"authorizing payment only\" requires linking a PayPal account.)":[null,"%s (Date cuenta que \"autorizar solo pagos\" requiere enlazar con una cuenta de PayPal.)"],"Link account":[null,"Enlazar cuenta"],"Link a new or existing PayPal account to make sure future orders are marked “Processing” instead of “On hold”, and so refunds can be issued without leaving WooCommerce.":[null,"Enlaza una cuenta de PayPal nueva o existente para asegurar que los pedidos futuros se marquen como \"Procesando\" en vez de \"En espera\", y para emitir reembolsos sin tener que salir de WooCommerce."],"Link your PayPal account":[null,"Enlaza a tu cuenta de PayPal"],"To issue refunds via PayPal Checkout, you will need to <a href=\"%s\">link a PayPal account</a> with the email address that received this payment.":[null,"Para enviar reembolsos a través de PayPal Exprés tendrás que <a href=\"%s\">enlazar a una cuenta de PayPal</a> con la dirección de correo electrónico que recibió este pago."],"Link a PayPal account":[null,"Enlaza a una cuenta PayPal"],"Refresh":[null,"Recargar"],"Tracking number":[null,"Número de seguimiento"],"Provider":[null,"Proveedor"],"WooCommerce Shipping & Tax is almost ready to go! Once you connect Jetpack you'll have access to %s.":[null,"¡WooCommerce Shipping & Tax está casi listo! Una vez que conectes con Jetpack, tendrás acceso a %s."],"Hosted services for WooCommerce: automated tax calculation, shipping label printing, and smoother payment setup.":[null,"Servicios alojados para WooCommerce: cálculos automáticos de impuestos, tarifas de envío en directo, impresión de etiquetas de envío y una configuración de pago más sencilla."],"Tax Class":[null,"Clase de impuesto"],"Shipping":[null,"Envío"],"Compound":[null,"Compuesto"],"Priority":[null,"Prioridad"],"Tax Name":[null,"Nombre de impuesto"],"Rate %":[null,"Tarifa %"],"ZIP/Postcode":[null,"Código postal"],"State Code":[null,"Código de provincia"],"Country Code":[null,"Código de país"],"Enable automated taxes":[null,"Activar impuestos automáticos"],"Disable automated taxes":[null,"Desactivar impuestos automáticos"],"Automated taxes":[null,"Impuestos automáticos"],"By clicking \"%1$s\", you agree to the <a href=\"%2$s\">Terms of Service</a> and to <a href=\"%3$s\">share certain data and settings</a> with WordPress.com and/or third parties.":[null,"Haciendo clic en \"%1$s\" aceptas los <a href=\"%2$s\">términos del servicio</a> y a <a href=\"%3$s\">compartir ciertos datos y ajustes</a> con WordPress.com y/o otros."],"Setup complete.":[null,"Configuración completa."],"You can now enjoy %s.":[null,"Ya puedes disfrutar %s."],"WooCommerce Shipping & Tax is almost ready to go! Once you connect your store you'll have access to %s.":[null,"¡WooCommerce Shipping & Tax está casi listo! Una vez que conectes tu tienda tendrás acceso a %s."],"automated tax calculation":[null,"cálculo automático de impuestos"],"smoother payment setup":[null,"configuración de pago más sencilla"],"automated tax calculation and smoother payment setup":[null,"cálculo automático de impuestos y configuración de pago más sencilla"],"Required":[null,"Requerido"],"Your shipping settings have been saved.":[null,"Tus ajustes de envío se han guardado."],"Unable to save your shipping settings. Please try again.":[null,"No ha sido posible guardar tus ajustes de envío. Por favor, inténtalo de nuevo."],"Dimensions":[null,"Dimensiones"],"Close":[null,"Cerrar"],"Packages to be Shipped":[null,"Paquetes a enviar"],"Add to a New Package":[null,"Añadir a un nuevo paquete"],"Add items":[null,"Añadir artículos"],"Individually Shipped Item":[null,"Artículo enviado individualmente"],"Item Dimensions":[null,"Dimensiones del artículo"],"Please select a package":[null,"Por favor, elige un paquete"],"Service schemas were not loaded":[null,"No se cargaron los esquemas del servicio"],"Bad request":[null,"Petición errónea"],"Order not found":[null,"Pedido no encontrado"],"Got it, thanks!":[null,"¡Entendido, gracias!"],"Activate Jetpack and connect":[null,"Activa Jetpack y conecta"],"Install Jetpack and connect":[null,"Instala Jetpack y conecta"],"Something went wrong. Please try connecting to Jetpack manually, or contact support on the WordPress.org forums.":[null,"Algo fue mal. Por favor, trata de conectar manualmente con Jetpack, o contacta con soporte en los foros de WordPress.org."],"Connecting...":[null,"Conectando…"],"Activating...":[null,"Activando…"],"When you're ready, purchase and print discounted labels from %s right here.":[null,"Cuando estés listo, compra e imprime etiquetas de %s con descuento aquí mismo."],"Discounted Shipping Labels":[null,"Etiquetas de envío con descuento"],"American Express":[null,"American Express"],"Discover":[null,"Descubre"],"MasterCard":[null,"MasterCard"],"VISA":[null,"VISA"],"PayPal":[null,"PayPal"],"Add another credit card":[null,"Añadir otra tarjeta de créditoi"],"%(selectedCount)d package selected":["%(selectedCount)d packages selected","%(selectedCount)d paquete seleccionado","%(selectedCount)d paquetes seleccionados"],"Unable to get your settings. Please refresh the page to try again.":[null,"No ha sido posible recuperar tus ajustes. Por favor, recarga la página para intentarlo de nuevo."],"%(numSelected)d service selected":["%(numSelected)d services selected","%(numSelected)d servicio seleccionado","%(numSelected)d servicios seleccionados"],"Add and edit saved packages using the {{a}}Packaging Manager{{/a}}.":[null,"Añade y edita los paquetes guardados usando el {{a}}Gestor de paquetería{{/a}}."],"Tracking #: {{trackingLink/}}":[null,"Seguimiento #: {{trackingLink/}}"],"%(item)s from {{pckg/}}":[null,"%(item)s desde {{pckg/}}"],"Which items would you like to add to {{pckg/}}?":[null,"¿Qué artículos te gustaría añadir a {{pckg/}}?"],"1 item in 1 package: %(weight)s %(unit)s total":[null,"1 artículo en 1 paquete: %(weight)s %(unit)s en total"],"%(itemsCount)d items in 1 package: %(weight)s %(unit)s total":[null,"%(itemsCount)d artículos en 1 paquete: %(weight)s %(unit)s en total"],"%(itemsCount)d items in %(packageCount)d packages: %(weight)s %(unit)s total":[null,"%(itemsCount)d artículos en %(packageCount)d paquetes: %(weight)s %(unit)s en total"],"{{itemLink/}} is currently saved for a later shipment.":[null,"{{itemLink/}} está actualmente guardado para un envío posterior."],"{{itemLink/}} is currently shipped in its original packaging.":[null,"{{itemLink/}} está actualmente enviado en su paquete original."],"{{itemLink/}} is currently in {{pckg/}}.":[null,"{{itemLink/}} está en actualmente en {{pckg/}}."],"Choose rate: %(pckg)s":[null,"Elegir tarifa: %(pckg)s"],"Refund label (-%(amount)s)":[null,"Etiqueta de reembolso (-%(amount)s)"],"Where would you like to move it?":[null,"¿A dónde te gustaría moverlo?"],"Unsaved changes made to packages":[null,"Los cambios realizados a los paquetes no se han guardado"],"There are no items in this package.":[null,"No existen artículos en este paquete."],"Ship in original packaging":[null,"Enviar en su paquete original"],"Request refund":[null,"Solicitar reembolso"],"Reprint":[null,"Volver a imprimir"],"Paper size":[null,"Tamaño del papel"],"No packages selected":[null,"No hay paquetes seleccionados"],"Move":[null,"Mover"],"Move item":[null,"Mover artículo"],"Increase the rates calculated by the carrier to account for packaging and handling costs. You can also add a negative amount to save your customers money.":[null,"Incrementa las tarifas calculadas por el transportista a la cantidad de los costes de empaquetado y manipulado. También puedes añadir una cantidad negativa para ahorrar dinero a tus clientes."],"Create new label":[null,"Crear nueva etiqueta"],"All packages selected":[null,"Seleccionados todos los paquetes"],"Add":[null,"Añadir"],"Add item":[null,"Añadir artículo"],"Add a credit card":[null,"Añadir una tarjeta de crédito"],"#%d - [Deleted product]":[null,"#%d - [producto borrado]"],"#%1$d - %2$s":[null,"#%1$d - %2$s"],"<a href=\"%s\">Support</a>":[null,"<a href=\"%s\">Soporte</a>"],"There was an error installing Jetpack. Please try installing it manually.":[null,"Hubo un error al instalar Jetpack. Por favor, trata de instalarlo manualmente."],"Shipping Labels":[null,"Etiquetas de envío"],"https://woocommerce.com/":[null,"https://woocommerce.com/"],"Phone":[null,"Teléfono"],"Connect":[null,"Conectar"],"Save Settings":[null,"Guardar ajustes"],"Your changes have been saved.":[null,"Tus cambios se han guardado."],"There was a problem with one or more entries. Please fix the errors below and try saving again.":[null,"Hubo un problema con una o más entradas. Por favor, soluciona los errores de abajo y trata de guardar de nuevo."],"Expand":[null,"Expandir"],"Dismiss":[null,"Descartar"],"You have unsaved changes.":[null,"Tienes cambios sin guardar."],"Type of package":[null,"Tipo de paquete"],"Add package":["Add packages","Añadir paquete",""],"Invalid value.":[null,"Valor no válido."],"This field is required":[null,"Este campo es obligatorio"],"Package name":[null,"Nombre del paquete"],"This field must be unique":[null,"Este campo debe ser único"],"Unable to save your shipping packages. Please try again.":[null,"No se han podido guardar tus paquetes de envío. Por favor, inténtalo de nuevo."],"Save changes":[null,"Guardar cambios"],"Untitled":[null,"Sin título"],"Dimensions (L x W x H)":[null,"Dimensiones (L x An x Al)"],"All services selected":[null,"Seleccionados todos los servicios"],"Expand Services":[null,"Expandir servicios"],"Service":[null,"Servicio"],"Price adjustment":[null,"Ajuste de precio"],"Saved Packages":[null,"Paquetes guardados"],"Tracking":[null,"Seguimiento"],"Create shipping label":["Create shipping labels","Crear etiqueta de envío",""],"Name":[null,"Nombre"],"Company":[null,"Empresa"],"Address":[null,"Dirección"],"City":[null,"Ciudad"],"State":[null,"Provincia"],"Country":[null,"País"],"Invalid address":[null,"Dirección no válida"],"Origin address":[null,"Dirección de origen"],"Destination address":[null,"Dirección de destino"],"We have slightly modified the address entered. If correct, please use the suggested address to ensure accurate delivery.":[null,"Hemos modificado ligeramente la dirección introducida. Si es correcta, por favor, utiliza la dirección sugerida para asegurar una entrega precisa."],"Address entered":[null,"Dirección introducida"],"Edit address":[null,"Editar dirección"],"Suggested address":[null,"Dirección sugerida"],"Use selected address":[null,"Usar la dirección seleccionada"],"Use these packages":[null,"Utilizar estos paquetes"],"The service and rate chosen by the customer at checkout is not available. Please choose another.":[null,"El servicio y la tarifa elegidos por el cliente en el pago no están disponibles. Por favor, elige otro."],"Request a refund":[null,"Solicitar un reembolso"],"You can request a refund for a shipping label that has not been used to ship a package. It will take at least %(days)s days to process.":[null,"Puedes solicitar un reembolso de una etiqueta de envío que no se haya utilizado para enviar un paquete. Tardará al menos %(days)s días en procesarse."],"Purchase date":[null,"Fecha de compra"],"Amount eligible for refund":[null,"Cantidad elegible para el reembolso"],"Reprint shipping label":[null,"Volver a imprimir la etiqueta de envío"],"If there was a printing error when you purchased the label, you can print it again.":[null,"Si hay un problema de impresión cuando compres la etiqueta puedes imprimirla de nuevo."],"NOTE: If you already used the label in a package, printing and using it again is a violation of our terms of service and may result in criminal charges.":[null,"NOTA: Si ya has usado la etiqueta en un paquete, imprimirla y usarla de nuevo es una violación de nuestros términos del servicio y podría resultar en cargos criminales."],"Print":[null,"Imprimir"],"Cancel":[null,"Cancelar"],"N/A":[null,"N/D"],"More":[null,"Más"],"Invalid PDF request.":[null,"Petición de PDF no válida."],"Unknown package":[null,"Paquete desconocido"],"Individual packaging":[null,"Empaquetado individual"],"Unable to update service settings. Validation failed. %s":[null,"No ha sido posible actualizar los ajustes del servicio. Falló la validación. %s"],"Unable to update service settings. The form data could not be read.":[null,"No ha sido posible actualizar los ajustes del servicio. Los datos del formulario no pudieron leerse."],"Unable to update service settings. Form data is missing service ID.":[null,"No ha sido posible actualizar los ajustes del servicio. Los datos del formulario son de un ID de servicio no disponible."],"Unable to update settings. The form data could not be read.":[null,"No fue posible actualizar los ajustes. Los datos del formulario no se han podido leer."],"Unable to update settings. %s":[null,"No ha sido posible actualizar los ajustes. %s"],"Packaging":[null,"Paquetería"],"Section not loading? Visit the <a href=\"%s\">status page</a> for troubleshooting steps.":[null,"¿No carga la sección? Visita la <a href=\"%s\">página de estado</a> para ver los pasos de solución de problemas."],"Note: Jetpack development mode is enabled on this site. This site will not be able to obtain payment methods from WooCommerce Shipping & Tax production servers.":[null,"Nota: El modo de desarrollo de Jetpack está activo en este sitio. Este sitio no podrá obtener métodos de pago de los servidores de producción de WooCommerce Shipping & Tax."],"Note: Jetpack is connected, but development mode is also enabled on this site. Please disable development mode.":[null,"Nota: Jetpack está conectado, pero también está activo el modo de desarrollo en este sitio. Por favor, desactiva el modo de desarrollo."],"Shipping Label":[null,"Etiqueta de envío"],"yd":[null,"yd"],"in":[null,"en"],"mm":[null,"mm"],"cm":[null,"cm"],"m":[null,"m"],"oz":[null,"oz"],"lbs":[null,"lbs"],"g":[null,"g"],"kg":[null,"kg"],"An invalid service ID was received.":[null,"Se ha recibido un ID de servicio no válido."],"An invalid service instance was received.":[null,"Se ha recibido una instancia de servicio no válida."],"Rest of the World":[null,"Resto del mundo"],"Support":[null,"Soporte"],"Debug":[null,"Depuración"],"Services":[null,"Servicios"],"Need help?":[null,"¿Necesitas ayuda?"],"Log is empty":[null,"El registro está vacío"],"Disabled":[null,"Desactivado"],"Enabled":[null,"Activo"],"%s Shipping Zone":[null,"%s zona de envío"],"The most recent rate request failed":[null,"La reciente petición de tarifas más reciente falló"],"The most recent rate request was successful":[null,"La petición de tarifas más reciente tuvo éxito"],"No rate requests have yet been made for this service":[null,"Aún no han habido peticiones de tarifas para este servicio"],"Setup for this service has not yet been completed":[null,"La configuración de este servició aún no se ha completado"],"Service data is up-to-date":[null,"Los datos del servicio están al día"],"Service data was found, but is more than one day old":[null,"Se encontaron datos del servicio, pero son de hace más de un día"],"Service data was found, but is more than three days old":[null,"Se encontraron datos del servicio, pero son de hace más de tres días"],"Service data found, but may be out of date":[null,"Se han encontrado datos del servicio, pero podrían ser obsoletos"],"No service data available":[null,"No hay disponibles datos del servicio"],"Jetpack":[null,"Jetpack"],"Jetpack %s is connected and working correctly":[null,"Jetpack %s está conectado y funcionando correctamente"],"This is a Jetpack staging site":[null,"Este es un sitio en pruebas de Jetpack"],"Jetpack is not connected to WordPress.com. Make sure the Jetpack plugin is installed, activated, and connected.":[null,"Jetpack no está conectado a WordPress.com. Asegúrate de que el plugin Jetpack está instalado, activo y conectado."],"Jetpack %1$s or higher is required (You are running %2$s)":[null,"Se necesita Jetpack %1$s o superior (estás ejecutando la versión %2$s)"],"Please install and activate the Jetpack plugin, version %s or higher":[null,"Por favor, instala y activa el plugin Jetpack, en su versión %s o superior"],"WooCommerce":[null,"WooCommerce"],"WooCommerce %s is configured correctly":[null,"WooCommerce %s está configurado correctamente"],"Please set Base Location in WooCommerce Settings > General":[null,"Por favor, establece la ubicación base en Ajustes de WooCommerce > General"],"WooCommerce %1$s or higher is required (You are running %2$s)":[null,"Se necesita WooCommerce %1$s o superior (estás ejecutando la versión %2$s)"],"Dismiss this notice":[null,"Descartar este aviso"],"ERROR: Your site has a problem connecting to the WooCommerce Shipping & Tax API. Please make sure your Jetpack connection is working.":[null,"ERROR: Tu sitio tiene un problema al conectar con la API de WooCommerce Shipping & Tax. Por favor, aségurate de que está funcionando tu conexión de Jetpack."],"Your site is succesfully communicating to the WooCommerce Shipping & Tax API.":[null,"Tu sitio se está comunicando correctamente con la API de WooCommerce Shipping & Tax."],"This will test your WooCommerce Shipping & Tax connection to ensure everything is working correctly":[null,"Esto probará tu conexión de WooCommerce Shipping & Tax para asegurar que todo funciona correctamente"],"Test Connection":[null,"Probar conexión"],"The WooCommerce Shipping & Tax brandname\u0004WooCommerce Shipping & Tax":[null,"WooCommerce Shipping & Tax"],"The WooCommerce Shipping & Tax brandname\u0004WooCommerce Shipping":[null,"WooCommerce Shipping"],"%s - ZIP/Postal code checkout field label\u0004Invalid %s entered.":[null,"%s introducido no válido."],"%s - ZIP/Postal code checkout field label\u0004%s does not match the selected state.":[null,"%s no coincide con la provincia seleccionada."],"date is of the form MM/YY\u0004Expires %(date)s":[null,"Caduca %(date)s"],"A service with an unknown title and unknown method_title\u0004Unknown":[null,"Desconocido"],"This section displays the overall health of WooCommerce Shipping & Tax and the things it depends on\u0004Health":[null,"Salud"]}
i18n/languages/woocommerce-services-es_MX.mo CHANGED
Binary file
i18n/languages/woocommerce-services-es_MX.po CHANGED
@@ -51,7 +51,7 @@ msgstr "Muestra las tarifas en vivo directamente en tu tienda - nunca vuelvas a
51
  msgid "Live rates at checkout"
52
  msgstr "Tarifas en vivo al finalizar la compra"
53
 
54
- #: i18n/strings.php:354
55
  msgid "Last updated %s."
56
  msgstr "Última actualización %s."
57
 
@@ -206,7 +206,7 @@ msgstr "Funciona con WooCommerce Tax. Si están activados los impuestos automát
206
  msgid "WooCommerce Helper auth is missing"
207
  msgstr "Falta la identificación de WooCommerce Helper"
208
 
209
- #: i18n/strings.php:364 i18n/strings.php:428
210
  msgid "USPS labels without tracking are not eligible for refund."
211
  msgstr "Las etiquetas de USPS sin seguimiento no son elegibles para reembolso."
212
 
@@ -226,11 +226,11 @@ msgstr "%(carrierName)s no es compatible."
226
  msgid "Loading"
227
  msgstr "Cargando"
228
 
229
- #: i18n/strings.php:353
230
  msgid "WooCommerce Shipping & Tax Data"
231
  msgstr "WooCommerce Shipping & Tax Data"
232
 
233
- #: i18n/strings.php:372 i18n/strings.php:436
234
  msgid "Print customs form"
235
  msgstr "Imprimir impreso de aduanas"
236
 
@@ -277,8 +277,8 @@ msgid "Invalid WooCommerce Shipping & Tax service slug provided"
277
  msgstr "Slug de servicio de WooCommerce Shipping & Tax no válido proporcionado"
278
 
279
  #. Plugin Name of the plugin
280
- #: classes/class-wc-connect-privacy.php:36
281
  #: classes/class-wc-connect-settings-pages.php:123
 
282
  msgid "WooCommerce Shipping & Tax"
283
  msgstr "WooCommerce Shipping & Tax"
284
 
@@ -411,7 +411,7 @@ msgstr "Seleccionar uno..."
411
  msgid "Validating address\\u2026"
412
  msgstr "Validando la dirección..."
413
 
414
- #: i18n/strings.php:326 i18n/strings.php:405 i18n/strings.php:469
415
  msgid "Purchasing\\u2026"
416
  msgstr "Comprando..."
417
 
@@ -423,7 +423,7 @@ msgstr "Se cargará en tu cuenta de UPS"
423
  msgid "Package %(index)s \\u2013 %(title)s"
424
  msgstr "Paquete %(index)s – %(title)s"
425
 
426
- #: i18n/strings.php:6 i18n/strings.php:170 i18n/strings.php:482
427
  msgid "Saving\\u2026"
428
  msgstr "Guardando..."
429
 
@@ -437,27 +437,27 @@ msgstr "Tus tarifas de impuestos y ajustes se configurarán automáticamente par
437
  msgid "Your tax rates and settings will be automatically configured for %1$s, %2$s. <a href=\"https://docs.woocommerce.com/document/setting-up-taxes-in-woocommerce/#section-12\">Learn more about setting up tax rates for additional nexuses</a>"
438
  msgstr "Tus tarifas de impuestos y ajustes se configurarán automáticamente para %1$s, %2$s. <a href=\"https://docs.woocommerce.com/document/setting-up-taxes-in-woocommerce/#section-12\">Aprende más sobre cómo configurar tarifas de impuestos para nexos adicionales</a>"
439
 
440
- #: i18n/strings.php:480
441
  msgid "%(itemCount)d item is ready to be fulfilled"
442
  msgid_plural "%(itemCount)d items are ready to be fulfilled"
443
  msgstr[0] "%(itemCount)d artículo está listo para ser completado"
444
  msgstr[1] "%(itemCount)d artículos están listos para ser completados"
445
 
446
- #: i18n/strings.php:479
447
  msgid "%(itemCount)d item was fulfilled on {{span}}%(createdDate)s{{/span}}"
448
  msgid_plural "%(itemCount)d items were fulfilled on {{span}}%(createdDate)s{{/span}}"
449
  msgstr[0] "%(itemCount)d artículo ha sido completado el {{span}}%(createdDate)s{{/span}}"
450
  msgstr[1] "%(itemCount)d artículos han sido completados el {{span}}%(createdDate)s{{/span}}"
451
 
452
- #: i18n/strings.php:371 i18n/strings.php:435
453
  msgid "Schedule a pickup"
454
  msgstr "Programa una recogida"
455
 
456
- #: i18n/strings.php:367 i18n/strings.php:431
457
  msgid "Label images older than 180 days are deleted by our technology partners for general security and data privacy concerns."
458
  msgstr "Las imágenes de las etiquetas de más de 180 días las borran nuestros colaboradores tecnológicos por cuestiones de seguridad y privacidad de datos."
459
 
460
- #: i18n/strings.php:363 i18n/strings.php:427
461
  msgid "Labels older than 30 days cannot be refunded."
462
  msgstr "Las etiquetas de más de 30 días no se pueden reembolsar."
463
 
@@ -478,26 +478,26 @@ msgstr "Ahorras %s con WooCommerce Shipping"
478
  msgid "WooCommerce Shipping & Tax requires the WooCommerce plugin to be installed and active. You can download %s here."
479
  msgstr "WooCommerce Shipping & Tax necesita que esté instalado y activado el plugin WooCommerce. Puedes descargarlo aquí: %s."
480
 
481
- #: i18n/strings.php:408
482
  msgid "No tracking information available at this time"
483
  msgstr "En este momento no hay disponible información de seguimiento"
484
 
485
- #: i18n/strings.php:478
486
  msgid "Connection error: unable to create label at this time"
487
  msgstr "Error de conexión: en este momento no se puede crear la etiqueta"
488
 
489
- #: i18n/strings.php:474 i18n/strings.php:476
490
  msgid "Track Package"
491
  msgid_plural "Track Packages"
492
  msgstr[0] "Seguimiento del paquete"
493
  msgstr[1] "Seguimiento de los paquetes"
494
 
495
- #: i18n/strings.php:426
496
  msgid "Which package would you like to track?"
497
  msgstr "¿Qué paquete te gustaría seguir?"
498
 
499
- #: i18n/strings.php:373 i18n/strings.php:404 i18n/strings.php:437
500
- #: i18n/strings.php:468
501
  msgid "%(service)s label (#%(labelIndex)d)"
502
  msgstr "%(service)s etiqueta (#%(labelIndex)d)"
503
 
@@ -585,7 +585,7 @@ msgstr "Han sido guardados tus paquetes de envío."
585
  msgid "0.0"
586
  msgstr "0.0"
587
 
588
- #: woocommerce-services.php:1449
589
  msgid "Shipment Tracking"
590
  msgstr "Seguimiento de envíos"
591
 
@@ -597,23 +597,23 @@ msgstr "Información de aduanas válida"
597
  msgid "Customs information incomplete"
598
  msgstr "Información de aduanas incompleta"
599
 
600
- #: woocommerce-services.php:1492
601
  msgid "Packing Log:"
602
  msgstr "Registro de paquetería:"
603
 
604
- #: woocommerce-services.php:1479
605
  msgid "Chosen Rate:"
606
  msgstr "Tarifa elegida:"
607
 
608
- #: woocommerce-services.php:1475
609
  msgid "Shipping Method ID:"
610
  msgstr "ID del método de envío:"
611
 
612
- #: woocommerce-services.php:1471
613
  msgid "Shipping Method Name:"
614
  msgstr "Nombre del método de envío:"
615
 
616
- #: woocommerce-services.php:1455
617
  msgid "Shipping Debug"
618
  msgstr "Depuración de envíos"
619
 
@@ -621,15 +621,15 @@ msgstr "Depuración de envíos"
621
  msgid "<strong>\"%2$s\" is missing weight, length, width, or height.</strong><br />Shipping rates cannot be calculated. <a href=\"%1$s\">Enter dimensions and weight for %2$s</a> so your customers can purchase this item."
622
  msgstr "<strong>A \"%2$s\" le falta el peso, largo, ancho o la altura.</strong><br />No se pueden calcular las tarifas de envío. <a href=\"%1$s\">Introduce las dimensiones y el peso de %2$s</a> para que tus clientes puedan comprar este artículo."
623
 
624
- #: classes/class-wc-connect-api-client.php:595
625
  msgid "Unable to send request to WooCommerce Shipping & Tax server. The timestamp generated for the signature is too old."
626
  msgstr "No ha sido posible enviar la solicitud al servidor de WooCommerce Shipping & Tax. La marca temporal generada para la firma es demasiado antigua."
627
 
628
- #: classes/class-wc-connect-api-client.php:534
629
  msgid "Unable to send request to WooCommerce Shipping & Tax server. Jetpack Token is malformed."
630
  msgstr "No ha sido posible enviar la solicitud al servidor de WooCommerce Shipping & Tax. El token de JetPack está mal formado."
631
 
632
- #: classes/class-wc-connect-api-client.php:527
633
  msgid "Unable to send request to WooCommerce Shipping & Tax server. Jetpack Token is missing"
634
  msgstr "No ha sido posible enviar la solicitud al servidor de WooCommerce Shipping & Tax. Falta el token de JetPack."
635
 
@@ -663,7 +663,6 @@ msgid "Unable to send request to WooCommerce Shipping & Tax server. Jetpack_Data
663
  msgstr "No ha sido posible enviar la solicitud al servidor de WooCommerce Shipping & Tax. No se ha encontrado Jetpack_Data."
664
 
665
  #: classes/class-wc-connect-api-client.php:160
666
- #: classes/class-wc-connect-api-client.php:187
667
  msgid "No shipping rate could be calculated. No items in the package are shippable."
668
  msgstr "No se ha podido calcular la tarifa de envío. Ningún artículo del paquete se puede enviar."
669
 
@@ -812,23 +811,23 @@ msgstr "Verificar dirección"
812
  msgid "%(message)s. Please modify the address and try again."
813
  msgstr "%(message)s. Modifica la dirección y vuelve a intentarlo."
814
 
815
- #: i18n/strings.php:370 i18n/strings.php:434
816
  msgid "View details"
817
  msgstr "Ver detalles"
818
 
819
- #: i18n/strings.php:402 i18n/strings.php:466
820
  msgid "Items"
821
  msgstr "Artículos"
822
 
823
- #: i18n/strings.php:401 i18n/strings.php:465
824
  msgid "Package"
825
  msgstr "Paquete"
826
 
827
- #: i18n/strings.php:399 i18n/strings.php:463
828
  msgid "Receipt"
829
  msgstr "Recibo"
830
 
831
- #: i18n/strings.php:398 i18n/strings.php:462
832
  msgid "Label #%(labelIndex)s details"
833
  msgstr "Detalles de la etiqueta #%(labelIndex)s"
834
 
@@ -943,43 +942,43 @@ msgstr "Desconectar"
943
  msgid "Activate"
944
  msgstr "Activado"
945
 
946
- #: i18n/strings.php:375 i18n/strings.php:439
947
  msgid "No activity yet"
948
  msgstr "Aún no hay actividad"
949
 
950
- #: i18n/strings.php:383 i18n/strings.php:447
951
  msgid "Note"
952
  msgstr "Nota"
953
 
954
- #: i18n/strings.php:382 i18n/strings.php:446
955
  msgid "Refunded %(amount)s"
956
  msgstr "Reembolsado %(amount)s"
957
 
958
- #: i18n/strings.php:380 i18n/strings.php:444
959
  msgid "%(service)s label (#%(labelNum)d) refund rejected"
960
  msgstr "reembolso de etiqueta de %(service)s (#%(labelNum)d) rechazado"
961
 
962
- #: i18n/strings.php:379 i18n/strings.php:443
963
  msgid "%(service)s label (#%(labelNum)d) refunded (%(amount)s)"
964
  msgstr "reembolsado (%(amount)s) de etiqueta de %(service)s (#%(labelNum)d) rechazado"
965
 
966
- #: i18n/strings.php:378 i18n/strings.php:442
967
  msgid "%(service)s label (#%(labelNum)d) refund requested (%(amount)s)"
968
  msgstr "%(service)s etiqueta (#%(labelNum)d) solicitud de reembolso (%(amount)s)"
969
 
970
- #: i18n/strings.php:377 i18n/strings.php:441
971
  msgid "Note sent to customer"
972
  msgstr "Nota enviada al cliente"
973
 
974
- #: i18n/strings.php:376 i18n/strings.php:440
975
  msgid "Internal note"
976
  msgstr "Nota interna"
977
 
978
- #: i18n/strings.php:407 i18n/strings.php:471
979
  msgid "Show notes from %(date)s"
980
  msgstr "Mostrar notas desde %(date)s"
981
 
982
- #: i18n/strings.php:406 i18n/strings.php:470
983
  msgid "%(count)s event"
984
  msgid_plural "%(count)s events"
985
  msgstr[0] "%(count)s evento"
@@ -990,7 +989,7 @@ msgstr[1] "%(count)s eventos"
990
  msgid "WeChat Pay"
991
  msgstr "WeChat Pay"
992
 
993
- #: i18n/strings.php:384 i18n/strings.php:448
994
  msgid "Toggle menu"
995
  msgstr "Alternar menú"
996
 
@@ -998,41 +997,41 @@ msgstr "Alternar menú"
998
  msgid "Return to Order #%(orderId)s"
999
  msgstr "Volver al pedido #%(orderId)s"
1000
 
1001
- #: i18n/strings.php:344
1002
  msgid "Our team is here for you. View our {{docsA}}support docs{{/docsA}} or {{ticketA}}open a support ticket{{/ticketA}}."
1003
  msgstr "Nuestro equipo está aquí para ti. Ve nuestros {{docsA}}documentos de soporte{{/docsA}} o {{ticketA}}abre un ticket de soporte{{/ticketA}}."
1004
 
1005
- #: i18n/strings.php:335
1006
  msgid "Logging"
1007
  msgstr "Registro"
1008
 
1009
- #: i18n/strings.php:362
1010
  msgid "No services configured. {{a}}Add a shipping service{{/a}}"
1011
  msgstr "No hay configurado ningún servicio. {{a}}Añade un servicio de envío{{/a}}"
1012
 
1013
- #: i18n/strings.php:360
1014
  msgid "Edit service settings"
1015
  msgstr "Editar ajustes del servicio"
1016
 
1017
- #: i18n/strings.php:359
1018
  msgid "Request was made %s - check logs below or {{a}}edit service settings{{/a}}"
1019
  msgstr "La solicitud la hizo %s - revisa los registros abajo o {{a}}edita los ajustes del servicio{{/a}}"
1020
 
1021
- #: i18n/strings.php:358
1022
  msgid "Copy for support"
1023
  msgstr "Copiar para soporte"
1024
 
1025
- #: i18n/strings.php:357
1026
  msgid "Last %s entry. {{a}}Show full log{{/a}}"
1027
  msgid_plural "Last %s entries. {{a}}Show full log{{/a}}"
1028
  msgstr[0] "Última %s entrada. {{a}}Mostrar registro completo{{/a}}"
1029
  msgstr[1] "Últimas %s entradas. {{a}}Mostrar registro completo{{/a}}"
1030
 
1031
- #: i18n/strings.php:356
1032
  msgid "Log tail copied to clipboard"
1033
  msgstr "Cola del registro copiada al portapapeles"
1034
 
1035
- #: i18n/strings.php:11 i18n/strings.php:414
1036
  msgid "You have unsaved changes. Are you sure you want to leave this page?"
1037
  msgstr "Tienes cambios sin guardar. ¿Seguro que quieres abandonar esta página?"
1038
 
@@ -1061,7 +1060,7 @@ msgid "USPS"
1061
  msgstr "USPS"
1062
 
1063
  #: i18n/strings.php:5 i18n/strings.php:169 i18n/strings.php:295
1064
- #: i18n/strings.php:329 i18n/strings.php:410
1065
  msgid "Optional"
1066
  msgstr "Opcional"
1067
 
@@ -1216,8 +1215,8 @@ msgstr "No se han encontrado etiquetas en este periodo"
1216
  msgid "Total"
1217
  msgstr "Total"
1218
 
1219
- #: classes/class-wc-connect-label-reports.php:170 i18n/strings.php:381
1220
- #: i18n/strings.php:445
1221
  msgid "Refund"
1222
  msgstr "Reembolso"
1223
 
@@ -1257,23 +1256,23 @@ msgstr "Año"
1257
  msgid "Export CSV"
1258
  msgstr "Exportar CSV"
1259
 
1260
- #: i18n/strings.php:341
1261
  msgid "Other Log"
1262
  msgstr "Otros registros"
1263
 
1264
- #: i18n/strings.php:340
1265
  msgid "Taxes Log"
1266
  msgstr "Registro de impuestos"
1267
 
1268
- #: i18n/strings.php:339
1269
  msgid "Shipping Log"
1270
  msgstr "Registro de envíos"
1271
 
1272
- #: i18n/strings.php:332
1273
  msgid "Display troubleshooting information on the Cart and Checkout pages."
1274
  msgstr "Muestra información para resolución de problemas en las páginas de carrito y finalizar compra."
1275
 
1276
- #: i18n/strings.php:336
1277
  msgid "Write diagnostic messages to log files. Helpful when contacting support."
1278
  msgstr "Escribe mensajes de diagnóstico en los archivos de registro. Útil al contactar con soporte."
1279
 
@@ -1317,15 +1316,15 @@ msgstr "Para enviar reembolsos a través de PayPal Exprés tendrás que <a href=
1317
  msgid "Link a PayPal account"
1318
  msgstr "Enlaza a una cuenta PayPal"
1319
 
1320
- #: i18n/strings.php:355
1321
  msgid "Refresh"
1322
  msgstr "Recargar"
1323
 
1324
- #: woocommerce-services.php:1230
1325
  msgid "Tracking number"
1326
  msgstr "Número de seguimiento"
1327
 
1328
- #: woocommerce-services.php:1229
1329
  msgid "Provider"
1330
  msgstr "Proveedor"
1331
 
@@ -1417,7 +1416,7 @@ msgid "automated tax calculation and smoother payment setup"
1417
  msgstr "cálculo automático de impuestos y configuración de pago más sencilla"
1418
 
1419
  #: classes/class-wc-connect-paypal-ec.php:323 i18n/strings.php:4
1420
- #: i18n/strings.php:168 i18n/strings.php:328 i18n/strings.php:409
1421
  msgid "Required"
1422
  msgstr "Requerido"
1423
 
@@ -1433,7 +1432,7 @@ msgstr "No ha sido posible guardar tus ajustes de envío. Por favor, inténtalo
1433
  msgid "Dimensions"
1434
  msgstr "Dimensiones"
1435
 
1436
- #: i18n/strings.php:270 i18n/strings.php:397 i18n/strings.php:461
1437
  msgid "Close"
1438
  msgstr "Cerrar"
1439
 
@@ -1544,17 +1543,17 @@ msgstr[1] "%(selectedCount)d paquetes seleccionados"
1544
  msgid "Unable to get your settings. Please refresh the page to try again."
1545
  msgstr "No ha sido posible recuperar tus ajustes. Por favor, recarga la página para intentarlo de nuevo."
1546
 
1547
- #: i18n/strings.php:421
1548
  msgid "%(numSelected)d service selected"
1549
  msgid_plural "%(numSelected)d services selected"
1550
  msgstr[0] "%(numSelected)d servicio seleccionado"
1551
  msgstr[1] "%(numSelected)d servicios seleccionados"
1552
 
1553
- #: i18n/strings.php:419
1554
  msgid "Add and edit saved packages using the {{a}}Packaging Manager{{/a}}."
1555
  msgstr "Añade y edita los paquetes guardados usando el {{a}}Gestor de paquetería{{/a}}."
1556
 
1557
- #: i18n/strings.php:374 i18n/strings.php:438
1558
  msgid "Tracking #: {{trackingLink/}}"
1559
  msgstr "Seguimiento #: {{trackingLink/}}"
1560
 
@@ -1594,7 +1593,7 @@ msgstr "{{itemLink/}} está en actualmente en {{pckg/}}."
1594
  msgid "Choose rate: %(pckg)s"
1595
  msgstr "Elegir tarifa: %(pckg)s"
1596
 
1597
- #: i18n/strings.php:386 i18n/strings.php:450
1598
  msgid "Refund label (-%(amount)s)"
1599
  msgstr "Etiqueta de reembolso (-%(amount)s)"
1600
 
@@ -1614,17 +1613,17 @@ msgstr "No existen artículos en este paquete."
1614
  msgid "Ship in original packaging"
1615
  msgstr "Enviar en su paquete original"
1616
 
1617
- #: i18n/strings.php:365 i18n/strings.php:366 i18n/strings.php:429
1618
- #: i18n/strings.php:430
1619
  msgid "Request refund"
1620
  msgstr "Solicitar reembolso"
1621
 
1622
- #: i18n/strings.php:368 i18n/strings.php:432
1623
  msgid "Reprint"
1624
  msgstr "Volver a imprimir"
1625
 
1626
- #: i18n/strings.php:58 i18n/strings.php:309 i18n/strings.php:396
1627
- #: i18n/strings.php:460
1628
  msgid "Paper size"
1629
  msgstr "Tamaño del papel"
1630
 
@@ -1640,11 +1639,11 @@ msgstr "Mover"
1640
  msgid "Move item"
1641
  msgstr "Mover artículo"
1642
 
1643
- #: i18n/strings.php:425
1644
  msgid "Increase the rates calculated by the carrier to account for packaging and handling costs. You can also add a negative amount to save your customers money."
1645
  msgstr "Incrementa las tarifas calculadas por el transportista a la cantidad de los costes de empaquetado y manipulado. También puedes añadir una cantidad negativa para ahorrar dinero a tus clientes."
1646
 
1647
- #: i18n/strings.php:475
1648
  msgid "Create new label"
1649
  msgstr "Crear nueva etiqueta"
1650
 
@@ -1665,19 +1664,19 @@ msgid "Add a credit card"
1665
  msgstr "Añadir una tarjeta de crédito"
1666
 
1667
  #. translators: %d: Deleted Product ID
1668
- #: classes/class-wc-connect-compatibility-wc30.php:130
1669
  #: classes/class-wc-connect-compatibility-wc26.php:116
 
1670
  msgid "#%d - [Deleted product]"
1671
  msgstr "#%d - [producto borrado]"
1672
 
1673
  #. translators: %1$d: Product ID, %2$s: Product Name
1674
- #: classes/class-wc-connect-compatibility-wc30.php:125
1675
  #: classes/class-wc-connect-compatibility-wc26.php:111
 
1676
  msgid "#%1$d - %2$s"
1677
  msgstr "#%1$d - %2$s"
1678
 
1679
  #. translators: %s Support url
1680
- #: woocommerce-services.php:1565
1681
  msgid "<a href=\"%s\">Support</a>"
1682
  msgstr "<a href=\"%s\">Soporte</a>"
1683
 
@@ -1685,22 +1684,18 @@ msgstr "<a href=\"%s\">Soporte</a>"
1685
  msgid "There was an error installing Jetpack. Please try installing it manually."
1686
  msgstr "Hubo un error al instalar Jetpack. Por favor, trata de instalarlo manualmente."
1687
 
1688
- #: woocommerce-services.php:1066 woocommerce-services.php:1069
1689
- #: i18n/strings.php:43
1690
  msgid "Shipping Labels"
1691
  msgstr "Etiquetas de envío"
1692
 
1693
- #. Author of the plugin
1694
- msgid "Automattic"
1695
- msgstr "Automattic"
1696
-
1697
  #. Plugin URI of the plugin
1698
  #. Author URI of the plugin
1699
  msgid "https://woocommerce.com/"
1700
  msgstr "https://woocommerce.com/"
1701
 
1702
- #: woocommerce-services.php:1515 woocommerce-services.php:1543
1703
- #: i18n/strings.php:143 i18n/strings.php:215
1704
  msgid "Phone"
1705
  msgstr "Teléfono"
1706
 
@@ -1709,15 +1704,15 @@ msgstr "Teléfono"
1709
  msgid "Connect"
1710
  msgstr "Conectar"
1711
 
1712
- #: i18n/strings.php:7 i18n/strings.php:171 i18n/strings.php:483
1713
  msgid "Save Settings"
1714
  msgstr "Guardar ajustes"
1715
 
1716
- #: i18n/strings.php:415
1717
  msgid "Your changes have been saved."
1718
  msgstr "Tus cambios se han guardado."
1719
 
1720
- #: i18n/strings.php:416
1721
  msgid "There was a problem with one or more entries. Please fix the errors below and try saving again."
1722
  msgstr "Hubo un problema con una o más entradas. Por favor, soluciona los errores de abajo y trata de guardar de nuevo."
1723
 
@@ -1725,11 +1720,11 @@ msgstr "Hubo un problema con una o más entradas. Por favor, soluciona los error
1725
  msgid "Expand"
1726
  msgstr "Expandir"
1727
 
1728
- #: i18n/strings.php:411 i18n/strings.php:481
1729
  msgid "Dismiss"
1730
  msgstr "Descartar"
1731
 
1732
- #: i18n/strings.php:10 i18n/strings.php:413
1733
  msgid "You have unsaved changes."
1734
  msgstr "Tienes cambios sin guardar."
1735
 
@@ -1764,7 +1759,7 @@ msgstr "Este campo debe ser único"
1764
  msgid "Unable to save your shipping packages. Please try again."
1765
  msgstr "No se han podido guardar tus paquetes de envío. Por favor, inténtalo de nuevo."
1766
 
1767
- #: i18n/strings.php:41 i18n/strings.php:417
1768
  msgid "Save changes"
1769
  msgstr "Guardar cambios"
1770
 
@@ -1776,32 +1771,32 @@ msgstr "Sin título"
1776
  msgid "Dimensions (L x W x H)"
1777
  msgstr "Dimensiones (L x An x Al)"
1778
 
1779
- #: i18n/strings.php:420
1780
  msgid "All services selected"
1781
  msgstr "Seleccionados todos los servicios"
1782
 
1783
- #: i18n/strings.php:37 i18n/strings.php:199 i18n/strings.php:422
1784
  msgid "Expand Services"
1785
  msgstr "Expandir servicios"
1786
 
1787
- #: classes/class-wc-connect-label-reports.php:167 i18n/strings.php:400
1788
- #: i18n/strings.php:423 i18n/strings.php:464
1789
  msgid "Service"
1790
  msgstr "Servicio"
1791
 
1792
- #: i18n/strings.php:424
1793
  msgid "Price adjustment"
1794
  msgstr "Ajuste de precio"
1795
 
1796
- #: i18n/strings.php:418
1797
  msgid "Saved Packages"
1798
  msgstr "Paquetes guardados"
1799
 
1800
- #: woocommerce-services.php:1218 woocommerce-services.php:1225
1801
  msgid "Tracking"
1802
  msgstr "Seguimiento"
1803
 
1804
- #: i18n/strings.php:207 i18n/strings.php:473 i18n/strings.php:477
1805
  msgid "Create shipping label"
1806
  msgid_plural "Create shipping labels"
1807
  msgstr[0] "Crear etiqueta de envío"
@@ -1874,51 +1869,51 @@ msgstr "Utilizar estos paquetes"
1874
  msgid "The service and rate chosen by the customer at checkout is not available. Please choose another."
1875
  msgstr "El servicio y la tarifa elegidos por el cliente en el pago no están disponibles. Por favor, elige otro."
1876
 
1877
- #: i18n/strings.php:387 i18n/strings.php:451
1878
  msgid "Request a refund"
1879
  msgstr "Solicitar un reembolso"
1880
 
1881
- #: i18n/strings.php:388 i18n/strings.php:452
1882
  msgid "You can request a refund for a shipping label that has not been used to ship a package. It will take at least %(days)s days to process."
1883
  msgstr "Puedes solicitar un reembolso de una etiqueta de envío que no se haya utilizado para enviar un paquete. Tardará al menos %(days)s días en procesarse."
1884
 
1885
- #: i18n/strings.php:389 i18n/strings.php:453
1886
  msgid "Purchase date"
1887
  msgstr "Fecha de compra"
1888
 
1889
- #: i18n/strings.php:390 i18n/strings.php:454
1890
  msgid "Amount eligible for refund"
1891
  msgstr "Cantidad elegible para el reembolso"
1892
 
1893
- #: i18n/strings.php:369 i18n/strings.php:393 i18n/strings.php:433
1894
- #: i18n/strings.php:457
1895
  msgid "Reprint shipping label"
1896
  msgstr "Volver a imprimir la etiqueta de envío"
1897
 
1898
- #: i18n/strings.php:394 i18n/strings.php:458
1899
  msgid "If there was a printing error when you purchased the label, you can print it again."
1900
  msgstr "Si hay un problema de impresión cuando compres la etiqueta puedes imprimirla de nuevo."
1901
 
1902
- #: i18n/strings.php:395 i18n/strings.php:459
1903
  msgid "NOTE: If you already used the label in a package, printing and using it again is a violation of our terms of service and may result in criminal charges."
1904
  msgstr "NOTA: Si ya has usado la etiqueta en un paquete, imprimirla y usarla de nuevo es una violación de nuestros términos del servicio y podría resultar en cargos criminales."
1905
 
1906
- #: i18n/strings.php:325 i18n/strings.php:392 i18n/strings.php:456
1907
  msgid "Print"
1908
  msgstr "Imprimir"
1909
 
1910
  #: i18n/strings.php:16 i18n/strings.php:82 i18n/strings.php:122
1911
  #: i18n/strings.php:158 i18n/strings.php:167 i18n/strings.php:178
1912
- #: i18n/strings.php:263 i18n/strings.php:385 i18n/strings.php:391
1913
- #: i18n/strings.php:449 i18n/strings.php:455
1914
  msgid "Cancel"
1915
  msgstr "Cancelar"
1916
 
1917
- #: i18n/strings.php:403 i18n/strings.php:467
1918
  msgid "N/A"
1919
  msgstr "N/D"
1920
 
1921
- #: i18n/strings.php:8 i18n/strings.php:412 i18n/strings.php:472
1922
  msgid "More"
1923
  msgstr "Más"
1924
 
@@ -1961,7 +1956,7 @@ msgstr "No ha sido posible actualizar los ajustes. %s"
1961
  msgid "Packaging"
1962
  msgstr "Paquetería"
1963
 
1964
- #: woocommerce-services.php:1598
1965
  msgid "Section not loading? Visit the <a href=\"%s\">status page</a> for troubleshooting steps."
1966
  msgstr "¿No carga la sección? Visita la <a href=\"%s\">página de estado</a> para ver los pasos de solución de problemas."
1967
 
@@ -1973,7 +1968,7 @@ msgstr "Nota: El modo de desarrollo de Jetpack está activo en este sitio. Este
1973
  msgid "Note: Jetpack is connected, but development mode is also enabled on this site. Please disable development mode."
1974
  msgstr "Nota: Jetpack está conectado, pero también está activo el modo de desarrollo en este sitio. Por favor, desactiva el modo de desarrollo."
1975
 
1976
- #: woocommerce-services.php:1451
1977
  msgid "Shipping Label"
1978
  msgstr "Etiqueta de envío"
1979
 
@@ -2030,24 +2025,24 @@ msgctxt "A service with an unknown title and unknown method_title"
2030
  msgid "Unknown"
2031
  msgstr "Desconocido"
2032
 
2033
- #: i18n/strings.php:342
2034
  msgid "Support"
2035
  msgstr "Soporte"
2036
 
2037
- #: i18n/strings.php:330 i18n/strings.php:331
2038
  msgid "Debug"
2039
  msgstr "Depuración"
2040
 
2041
- #: i18n/strings.php:361
2042
  msgid "Services"
2043
  msgstr "Servicios"
2044
 
2045
- #: i18n/strings.php:345
2046
  msgctxt "This section displays the overall health of WooCommerce Shipping & Tax and the things it depends on"
2047
  msgid "Health"
2048
  msgstr "Salud"
2049
 
2050
- #: i18n/strings.php:343
2051
  msgid "Need help?"
2052
  msgstr "¿Necesitas ayuda?"
2053
 
@@ -2055,11 +2050,11 @@ msgstr "¿Necesitas ayuda?"
2055
  msgid "Log is empty"
2056
  msgstr "El registro está vacío"
2057
 
2058
- #: i18n/strings.php:334 i18n/strings.php:338
2059
  msgid "Disabled"
2060
  msgstr "Desactivado"
2061
 
2062
- #: i18n/strings.php:333 i18n/strings.php:337
2063
  msgid "Enabled"
2064
  msgstr "Activo"
2065
 
@@ -2083,27 +2078,27 @@ msgstr "Aún no han habido peticiones de tarifas para este servicio"
2083
  msgid "Setup for this service has not yet been completed"
2084
  msgstr "La configuración de este servició aún no se ha completado"
2085
 
2086
- #: i18n/strings.php:350
2087
  msgid "Service data is up-to-date"
2088
  msgstr "Los datos del servicio están al día"
2089
 
2090
- #: i18n/strings.php:349
2091
  msgid "Service data was found, but is more than one day old"
2092
  msgstr "Se encontaron datos del servicio, pero son de hace más de un día"
2093
 
2094
- #: i18n/strings.php:348
2095
  msgid "Service data was found, but is more than three days old"
2096
  msgstr "Se encontraron datos del servicio, pero son de hace más de tres días"
2097
 
2098
- #: i18n/strings.php:351
2099
  msgid "Service data found, but may be out of date"
2100
  msgstr "Se han encontrado datos del servicio, pero podrían ser obsoletos"
2101
 
2102
- #: i18n/strings.php:352
2103
  msgid "No service data available"
2104
  msgstr "No hay disponibles datos del servicio"
2105
 
2106
- #: i18n/strings.php:347
2107
  msgid "Jetpack"
2108
  msgstr "Jetpack"
2109
 
@@ -2127,7 +2122,8 @@ msgstr "Se necesita Jetpack %1$s o superior (estás ejecutando la versión %2$s)
2127
  msgid "Please install and activate the Jetpack plugin, version %s or higher"
2128
  msgstr "Por favor, instala y activa el plugin Jetpack, en su versión %s o superior"
2129
 
2130
- #: i18n/strings.php:346
 
2131
  msgid "WooCommerce"
2132
  msgstr "WooCommerce"
2133
 
@@ -2143,7 +2139,7 @@ msgstr "Por favor, establece la ubicación base en Ajustes de WooCommerce > Gene
2143
  msgid "WooCommerce %1$s or higher is required (You are running %2$s)"
2144
  msgstr "Se necesita WooCommerce %1$s o superior (estás ejecutando la versión %2$s)"
2145
 
2146
- #: classes/class-wc-connect-error-notice.php:104 woocommerce-services.php:1634
2147
  msgid "Dismiss this notice"
2148
  msgstr "Descartar este aviso"
2149
 
51
  msgid "Live rates at checkout"
52
  msgstr "Tarifas en vivo al finalizar la compra"
53
 
54
+ #: i18n/strings.php:403
55
  msgid "Last updated %s."
56
  msgstr "Última actualización %s."
57
 
206
  msgid "WooCommerce Helper auth is missing"
207
  msgstr "Falta la identificación de WooCommerce Helper"
208
 
209
+ #: i18n/strings.php:331 i18n/strings.php:422
210
  msgid "USPS labels without tracking are not eligible for refund."
211
  msgstr "Las etiquetas de USPS sin seguimiento no son elegibles para reembolso."
212
 
226
  msgid "Loading"
227
  msgstr "Cargando"
228
 
229
+ #: i18n/strings.php:402
230
  msgid "WooCommerce Shipping & Tax Data"
231
  msgstr "WooCommerce Shipping & Tax Data"
232
 
233
+ #: i18n/strings.php:339 i18n/strings.php:430
234
  msgid "Print customs form"
235
  msgstr "Imprimir impreso de aduanas"
236
 
277
  msgstr "Slug de servicio de WooCommerce Shipping & Tax no válido proporcionado"
278
 
279
  #. Plugin Name of the plugin
 
280
  #: classes/class-wc-connect-settings-pages.php:123
281
+ #: classes/class-wc-connect-privacy.php:36
282
  msgid "WooCommerce Shipping & Tax"
283
  msgstr "WooCommerce Shipping & Tax"
284
 
411
  msgid "Validating address\\u2026"
412
  msgstr "Validando la dirección..."
413
 
414
+ #: i18n/strings.php:326 i18n/strings.php:372 i18n/strings.php:463
415
  msgid "Purchasing\\u2026"
416
  msgstr "Comprando..."
417
 
423
  msgid "Package %(index)s \\u2013 %(title)s"
424
  msgstr "Paquete %(index)s – %(title)s"
425
 
426
+ #: i18n/strings.php:6 i18n/strings.php:170 i18n/strings.php:375
427
  msgid "Saving\\u2026"
428
  msgstr "Guardando..."
429
 
437
  msgid "Your tax rates and settings will be automatically configured for %1$s, %2$s. <a href=\"https://docs.woocommerce.com/document/setting-up-taxes-in-woocommerce/#section-12\">Learn more about setting up tax rates for additional nexuses</a>"
438
  msgstr "Tus tarifas de impuestos y ajustes se configurarán automáticamente para %1$s, %2$s. <a href=\"https://docs.woocommerce.com/document/setting-up-taxes-in-woocommerce/#section-12\">Aprende más sobre cómo configurar tarifas de impuestos para nexos adicionales</a>"
439
 
440
+ #: i18n/strings.php:419
441
  msgid "%(itemCount)d item is ready to be fulfilled"
442
  msgid_plural "%(itemCount)d items are ready to be fulfilled"
443
  msgstr[0] "%(itemCount)d artículo está listo para ser completado"
444
  msgstr[1] "%(itemCount)d artículos están listos para ser completados"
445
 
446
+ #: i18n/strings.php:418
447
  msgid "%(itemCount)d item was fulfilled on {{span}}%(createdDate)s{{/span}}"
448
  msgid_plural "%(itemCount)d items were fulfilled on {{span}}%(createdDate)s{{/span}}"
449
  msgstr[0] "%(itemCount)d artículo ha sido completado el {{span}}%(createdDate)s{{/span}}"
450
  msgstr[1] "%(itemCount)d artículos han sido completados el {{span}}%(createdDate)s{{/span}}"
451
 
452
+ #: i18n/strings.php:338 i18n/strings.php:429
453
  msgid "Schedule a pickup"
454
  msgstr "Programa una recogida"
455
 
456
+ #: i18n/strings.php:334 i18n/strings.php:425
457
  msgid "Label images older than 180 days are deleted by our technology partners for general security and data privacy concerns."
458
  msgstr "Las imágenes de las etiquetas de más de 180 días las borran nuestros colaboradores tecnológicos por cuestiones de seguridad y privacidad de datos."
459
 
460
+ #: i18n/strings.php:330 i18n/strings.php:421
461
  msgid "Labels older than 30 days cannot be refunded."
462
  msgstr "Las etiquetas de más de 30 días no se pueden reembolsar."
463
 
478
  msgid "WooCommerce Shipping & Tax requires the WooCommerce plugin to be installed and active. You can download %s here."
479
  msgstr "WooCommerce Shipping & Tax necesita que esté instalado y activado el plugin WooCommerce. Puedes descargarlo aquí: %s."
480
 
481
+ #: i18n/strings.php:466
482
  msgid "No tracking information available at this time"
483
  msgstr "En este momento no hay disponible información de seguimiento"
484
 
485
+ #: i18n/strings.php:417
486
  msgid "Connection error: unable to create label at this time"
487
  msgstr "Error de conexión: en este momento no se puede crear la etiqueta"
488
 
489
+ #: i18n/strings.php:413 i18n/strings.php:415
490
  msgid "Track Package"
491
  msgid_plural "Track Packages"
492
  msgstr[0] "Seguimiento del paquete"
493
  msgstr[1] "Seguimiento de los paquetes"
494
 
495
+ #: i18n/strings.php:329
496
  msgid "Which package would you like to track?"
497
  msgstr "¿Qué paquete te gustaría seguir?"
498
 
499
+ #: i18n/strings.php:340 i18n/strings.php:371 i18n/strings.php:431
500
+ #: i18n/strings.php:462
501
  msgid "%(service)s label (#%(labelIndex)d)"
502
  msgstr "%(service)s etiqueta (#%(labelIndex)d)"
503
 
585
  msgid "0.0"
586
  msgstr "0.0"
587
 
588
+ #: woocommerce-services.php:1453
589
  msgid "Shipment Tracking"
590
  msgstr "Seguimiento de envíos"
591
 
597
  msgid "Customs information incomplete"
598
  msgstr "Información de aduanas incompleta"
599
 
600
+ #: woocommerce-services.php:1496
601
  msgid "Packing Log:"
602
  msgstr "Registro de paquetería:"
603
 
604
+ #: woocommerce-services.php:1483
605
  msgid "Chosen Rate:"
606
  msgstr "Tarifa elegida:"
607
 
608
+ #: woocommerce-services.php:1479
609
  msgid "Shipping Method ID:"
610
  msgstr "ID del método de envío:"
611
 
612
+ #: woocommerce-services.php:1475
613
  msgid "Shipping Method Name:"
614
  msgstr "Nombre del método de envío:"
615
 
616
+ #: woocommerce-services.php:1459
617
  msgid "Shipping Debug"
618
  msgstr "Depuración de envíos"
619
 
621
  msgid "<strong>\"%2$s\" is missing weight, length, width, or height.</strong><br />Shipping rates cannot be calculated. <a href=\"%1$s\">Enter dimensions and weight for %2$s</a> so your customers can purchase this item."
622
  msgstr "<strong>A \"%2$s\" le falta el peso, largo, ancho o la altura.</strong><br />No se pueden calcular las tarifas de envío. <a href=\"%1$s\">Introduce las dimensiones y el peso de %2$s</a> para que tus clientes puedan comprar este artículo."
623
 
624
+ #: classes/class-wc-connect-api-client.php:588
625
  msgid "Unable to send request to WooCommerce Shipping & Tax server. The timestamp generated for the signature is too old."
626
  msgstr "No ha sido posible enviar la solicitud al servidor de WooCommerce Shipping & Tax. La marca temporal generada para la firma es demasiado antigua."
627
 
628
+ #: classes/class-wc-connect-api-client.php:527
629
  msgid "Unable to send request to WooCommerce Shipping & Tax server. Jetpack Token is malformed."
630
  msgstr "No ha sido posible enviar la solicitud al servidor de WooCommerce Shipping & Tax. El token de JetPack está mal formado."
631
 
632
+ #: classes/class-wc-connect-api-client.php:520
633
  msgid "Unable to send request to WooCommerce Shipping & Tax server. Jetpack Token is missing"
634
  msgstr "No ha sido posible enviar la solicitud al servidor de WooCommerce Shipping & Tax. Falta el token de JetPack."
635
 
663
  msgstr "No ha sido posible enviar la solicitud al servidor de WooCommerce Shipping & Tax. No se ha encontrado Jetpack_Data."
664
 
665
  #: classes/class-wc-connect-api-client.php:160
 
666
  msgid "No shipping rate could be calculated. No items in the package are shippable."
667
  msgstr "No se ha podido calcular la tarifa de envío. Ningún artículo del paquete se puede enviar."
668
 
811
  msgid "%(message)s. Please modify the address and try again."
812
  msgstr "%(message)s. Modifica la dirección y vuelve a intentarlo."
813
 
814
+ #: i18n/strings.php:337 i18n/strings.php:428
815
  msgid "View details"
816
  msgstr "Ver detalles"
817
 
818
+ #: i18n/strings.php:369 i18n/strings.php:460
819
  msgid "Items"
820
  msgstr "Artículos"
821
 
822
+ #: i18n/strings.php:368 i18n/strings.php:459
823
  msgid "Package"
824
  msgstr "Paquete"
825
 
826
+ #: i18n/strings.php:366 i18n/strings.php:457
827
  msgid "Receipt"
828
  msgstr "Recibo"
829
 
830
+ #: i18n/strings.php:365 i18n/strings.php:456
831
  msgid "Label #%(labelIndex)s details"
832
  msgstr "Detalles de la etiqueta #%(labelIndex)s"
833
 
942
  msgid "Activate"
943
  msgstr "Activado"
944
 
945
+ #: i18n/strings.php:342 i18n/strings.php:433
946
  msgid "No activity yet"
947
  msgstr "Aún no hay actividad"
948
 
949
+ #: i18n/strings.php:350 i18n/strings.php:441
950
  msgid "Note"
951
  msgstr "Nota"
952
 
953
+ #: i18n/strings.php:349 i18n/strings.php:440
954
  msgid "Refunded %(amount)s"
955
  msgstr "Reembolsado %(amount)s"
956
 
957
+ #: i18n/strings.php:347 i18n/strings.php:438
958
  msgid "%(service)s label (#%(labelNum)d) refund rejected"
959
  msgstr "reembolso de etiqueta de %(service)s (#%(labelNum)d) rechazado"
960
 
961
+ #: i18n/strings.php:346 i18n/strings.php:437
962
  msgid "%(service)s label (#%(labelNum)d) refunded (%(amount)s)"
963
  msgstr "reembolsado (%(amount)s) de etiqueta de %(service)s (#%(labelNum)d) rechazado"
964
 
965
+ #: i18n/strings.php:345 i18n/strings.php:436
966
  msgid "%(service)s label (#%(labelNum)d) refund requested (%(amount)s)"
967
  msgstr "%(service)s etiqueta (#%(labelNum)d) solicitud de reembolso (%(amount)s)"
968
 
969
+ #: i18n/strings.php:344 i18n/strings.php:435
970
  msgid "Note sent to customer"
971
  msgstr "Nota enviada al cliente"
972
 
973
+ #: i18n/strings.php:343 i18n/strings.php:434
974
  msgid "Internal note"
975
  msgstr "Nota interna"
976
 
977
+ #: i18n/strings.php:374 i18n/strings.php:465
978
  msgid "Show notes from %(date)s"
979
  msgstr "Mostrar notas desde %(date)s"
980
 
981
+ #: i18n/strings.php:373 i18n/strings.php:464
982
  msgid "%(count)s event"
983
  msgid_plural "%(count)s events"
984
  msgstr[0] "%(count)s evento"
989
  msgid "WeChat Pay"
990
  msgstr "WeChat Pay"
991
 
992
+ #: i18n/strings.php:351 i18n/strings.php:442
993
  msgid "Toggle menu"
994
  msgstr "Alternar menú"
995
 
997
  msgid "Return to Order #%(orderId)s"
998
  msgstr "Volver al pedido #%(orderId)s"
999
 
1000
+ #: i18n/strings.php:393
1001
  msgid "Our team is here for you. View our {{docsA}}support docs{{/docsA}} or {{ticketA}}open a support ticket{{/ticketA}}."
1002
  msgstr "Nuestro equipo está aquí para ti. Ve nuestros {{docsA}}documentos de soporte{{/docsA}} o {{ticketA}}abre un ticket de soporte{{/ticketA}}."
1003
 
1004
+ #: i18n/strings.php:384
1005
  msgid "Logging"
1006
  msgstr "Registro"
1007
 
1008
+ #: i18n/strings.php:411
1009
  msgid "No services configured. {{a}}Add a shipping service{{/a}}"
1010
  msgstr "No hay configurado ningún servicio. {{a}}Añade un servicio de envío{{/a}}"
1011
 
1012
+ #: i18n/strings.php:409
1013
  msgid "Edit service settings"
1014
  msgstr "Editar ajustes del servicio"
1015
 
1016
+ #: i18n/strings.php:408
1017
  msgid "Request was made %s - check logs below or {{a}}edit service settings{{/a}}"
1018
  msgstr "La solicitud la hizo %s - revisa los registros abajo o {{a}}edita los ajustes del servicio{{/a}}"
1019
 
1020
+ #: i18n/strings.php:407
1021
  msgid "Copy for support"
1022
  msgstr "Copiar para soporte"
1023
 
1024
+ #: i18n/strings.php:406
1025
  msgid "Last %s entry. {{a}}Show full log{{/a}}"
1026
  msgid_plural "Last %s entries. {{a}}Show full log{{/a}}"
1027
  msgstr[0] "Última %s entrada. {{a}}Mostrar registro completo{{/a}}"
1028
  msgstr[1] "Últimas %s entradas. {{a}}Mostrar registro completo{{/a}}"
1029
 
1030
+ #: i18n/strings.php:405
1031
  msgid "Log tail copied to clipboard"
1032
  msgstr "Cola del registro copiada al portapapeles"
1033
 
1034
+ #: i18n/strings.php:11 i18n/strings.php:472
1035
  msgid "You have unsaved changes. Are you sure you want to leave this page?"
1036
  msgstr "Tienes cambios sin guardar. ¿Seguro que quieres abandonar esta página?"
1037
 
1060
  msgstr "USPS"
1061
 
1062
  #: i18n/strings.php:5 i18n/strings.php:169 i18n/strings.php:295
1063
+ #: i18n/strings.php:378 i18n/strings.php:468
1064
  msgid "Optional"
1065
  msgstr "Opcional"
1066
 
1215
  msgid "Total"
1216
  msgstr "Total"
1217
 
1218
+ #: classes/class-wc-connect-label-reports.php:170 i18n/strings.php:348
1219
+ #: i18n/strings.php:439
1220
  msgid "Refund"
1221
  msgstr "Reembolso"
1222
 
1256
  msgid "Export CSV"
1257
  msgstr "Exportar CSV"
1258
 
1259
+ #: i18n/strings.php:390
1260
  msgid "Other Log"
1261
  msgstr "Otros registros"
1262
 
1263
+ #: i18n/strings.php:389
1264
  msgid "Taxes Log"
1265
  msgstr "Registro de impuestos"
1266
 
1267
+ #: i18n/strings.php:388
1268
  msgid "Shipping Log"
1269
  msgstr "Registro de envíos"
1270
 
1271
+ #: i18n/strings.php:381
1272
  msgid "Display troubleshooting information on the Cart and Checkout pages."
1273
  msgstr "Muestra información para resolución de problemas en las páginas de carrito y finalizar compra."
1274
 
1275
+ #: i18n/strings.php:385
1276
  msgid "Write diagnostic messages to log files. Helpful when contacting support."
1277
  msgstr "Escribe mensajes de diagnóstico en los archivos de registro. Útil al contactar con soporte."
1278
 
1316
  msgid "Link a PayPal account"
1317
  msgstr "Enlaza a una cuenta PayPal"
1318
 
1319
+ #: i18n/strings.php:404
1320
  msgid "Refresh"
1321
  msgstr "Recargar"
1322
 
1323
+ #: woocommerce-services.php:1234
1324
  msgid "Tracking number"
1325
  msgstr "Número de seguimiento"
1326
 
1327
+ #: woocommerce-services.php:1233
1328
  msgid "Provider"
1329
  msgstr "Proveedor"
1330
 
1416
  msgstr "cálculo automático de impuestos y configuración de pago más sencilla"
1417
 
1418
  #: classes/class-wc-connect-paypal-ec.php:323 i18n/strings.php:4
1419
+ #: i18n/strings.php:168 i18n/strings.php:377 i18n/strings.php:467
1420
  msgid "Required"
1421
  msgstr "Requerido"
1422
 
1432
  msgid "Dimensions"
1433
  msgstr "Dimensiones"
1434
 
1435
+ #: i18n/strings.php:270 i18n/strings.php:364 i18n/strings.php:455
1436
  msgid "Close"
1437
  msgstr "Cerrar"
1438
 
1543
  msgid "Unable to get your settings. Please refresh the page to try again."
1544
  msgstr "No ha sido posible recuperar tus ajustes. Por favor, recarga la página para intentarlo de nuevo."
1545
 
1546
+ #: i18n/strings.php:479
1547
  msgid "%(numSelected)d service selected"
1548
  msgid_plural "%(numSelected)d services selected"
1549
  msgstr[0] "%(numSelected)d servicio seleccionado"
1550
  msgstr[1] "%(numSelected)d servicios seleccionados"
1551
 
1552
+ #: i18n/strings.php:477
1553
  msgid "Add and edit saved packages using the {{a}}Packaging Manager{{/a}}."
1554
  msgstr "Añade y edita los paquetes guardados usando el {{a}}Gestor de paquetería{{/a}}."
1555
 
1556
+ #: i18n/strings.php:341 i18n/strings.php:432
1557
  msgid "Tracking #: {{trackingLink/}}"
1558
  msgstr "Seguimiento #: {{trackingLink/}}"
1559
 
1593
  msgid "Choose rate: %(pckg)s"
1594
  msgstr "Elegir tarifa: %(pckg)s"
1595
 
1596
+ #: i18n/strings.php:353 i18n/strings.php:444
1597
  msgid "Refund label (-%(amount)s)"
1598
  msgstr "Etiqueta de reembolso (-%(amount)s)"
1599
 
1613
  msgid "Ship in original packaging"
1614
  msgstr "Enviar en su paquete original"
1615
 
1616
+ #: i18n/strings.php:332 i18n/strings.php:333 i18n/strings.php:423
1617
+ #: i18n/strings.php:424
1618
  msgid "Request refund"
1619
  msgstr "Solicitar reembolso"
1620
 
1621
+ #: i18n/strings.php:335 i18n/strings.php:426
1622
  msgid "Reprint"
1623
  msgstr "Volver a imprimir"
1624
 
1625
+ #: i18n/strings.php:58 i18n/strings.php:309 i18n/strings.php:363
1626
+ #: i18n/strings.php:454
1627
  msgid "Paper size"
1628
  msgstr "Tamaño del papel"
1629
 
1639
  msgid "Move item"
1640
  msgstr "Mover artículo"
1641
 
1642
+ #: i18n/strings.php:483
1643
  msgid "Increase the rates calculated by the carrier to account for packaging and handling costs. You can also add a negative amount to save your customers money."
1644
  msgstr "Incrementa las tarifas calculadas por el transportista a la cantidad de los costes de empaquetado y manipulado. También puedes añadir una cantidad negativa para ahorrar dinero a tus clientes."
1645
 
1646
+ #: i18n/strings.php:414
1647
  msgid "Create new label"
1648
  msgstr "Crear nueva etiqueta"
1649
 
1664
  msgstr "Añadir una tarjeta de crédito"
1665
 
1666
  #. translators: %d: Deleted Product ID
 
1667
  #: classes/class-wc-connect-compatibility-wc26.php:116
1668
+ #: classes/class-wc-connect-compatibility-wc30.php:130
1669
  msgid "#%d - [Deleted product]"
1670
  msgstr "#%d - [producto borrado]"
1671
 
1672
  #. translators: %1$d: Product ID, %2$s: Product Name
 
1673
  #: classes/class-wc-connect-compatibility-wc26.php:111
1674
+ #: classes/class-wc-connect-compatibility-wc30.php:125
1675
  msgid "#%1$d - %2$s"
1676
  msgstr "#%1$d - %2$s"
1677
 
1678
  #. translators: %s Support url
1679
+ #: woocommerce-services.php:1569
1680
  msgid "<a href=\"%s\">Support</a>"
1681
  msgstr "<a href=\"%s\">Soporte</a>"
1682
 
1684
  msgid "There was an error installing Jetpack. Please try installing it manually."
1685
  msgstr "Hubo un error al instalar Jetpack. Por favor, trata de instalarlo manualmente."
1686
 
1687
+ #: i18n/strings.php:43 woocommerce-services.php:1066
1688
+ #: woocommerce-services.php:1069
1689
  msgid "Shipping Labels"
1690
  msgstr "Etiquetas de envío"
1691
 
 
 
 
 
1692
  #. Plugin URI of the plugin
1693
  #. Author URI of the plugin
1694
  msgid "https://woocommerce.com/"
1695
  msgstr "https://woocommerce.com/"
1696
 
1697
+ #: i18n/strings.php:143 i18n/strings.php:215 woocommerce-services.php:1519
1698
+ #: woocommerce-services.php:1547
1699
  msgid "Phone"
1700
  msgstr "Teléfono"
1701
 
1704
  msgid "Connect"
1705
  msgstr "Conectar"
1706
 
1707
+ #: i18n/strings.php:7 i18n/strings.php:171 i18n/strings.php:376
1708
  msgid "Save Settings"
1709
  msgstr "Guardar ajustes"
1710
 
1711
+ #: i18n/strings.php:473
1712
  msgid "Your changes have been saved."
1713
  msgstr "Tus cambios se han guardado."
1714
 
1715
+ #: i18n/strings.php:474
1716
  msgid "There was a problem with one or more entries. Please fix the errors below and try saving again."
1717
  msgstr "Hubo un problema con una o más entradas. Por favor, soluciona los errores de abajo y trata de guardar de nuevo."
1718
 
1720
  msgid "Expand"
1721
  msgstr "Expandir"
1722
 
1723
+ #: i18n/strings.php:328 i18n/strings.php:469
1724
  msgid "Dismiss"
1725
  msgstr "Descartar"
1726
 
1727
+ #: i18n/strings.php:10 i18n/strings.php:471
1728
  msgid "You have unsaved changes."
1729
  msgstr "Tienes cambios sin guardar."
1730
 
1759
  msgid "Unable to save your shipping packages. Please try again."
1760
  msgstr "No se han podido guardar tus paquetes de envío. Por favor, inténtalo de nuevo."
1761
 
1762
+ #: i18n/strings.php:41 i18n/strings.php:475
1763
  msgid "Save changes"
1764
  msgstr "Guardar cambios"
1765
 
1771
  msgid "Dimensions (L x W x H)"
1772
  msgstr "Dimensiones (L x An x Al)"
1773
 
1774
+ #: i18n/strings.php:478
1775
  msgid "All services selected"
1776
  msgstr "Seleccionados todos los servicios"
1777
 
1778
+ #: i18n/strings.php:37 i18n/strings.php:199 i18n/strings.php:480
1779
  msgid "Expand Services"
1780
  msgstr "Expandir servicios"
1781
 
1782
+ #: classes/class-wc-connect-label-reports.php:167 i18n/strings.php:367
1783
+ #: i18n/strings.php:458 i18n/strings.php:481
1784
  msgid "Service"
1785
  msgstr "Servicio"
1786
 
1787
+ #: i18n/strings.php:482
1788
  msgid "Price adjustment"
1789
  msgstr "Ajuste de precio"
1790
 
1791
+ #: i18n/strings.php:476
1792
  msgid "Saved Packages"
1793
  msgstr "Paquetes guardados"
1794
 
1795
+ #: woocommerce-services.php:1222 woocommerce-services.php:1229
1796
  msgid "Tracking"
1797
  msgstr "Seguimiento"
1798
 
1799
+ #: i18n/strings.php:207 i18n/strings.php:412 i18n/strings.php:416
1800
  msgid "Create shipping label"
1801
  msgid_plural "Create shipping labels"
1802
  msgstr[0] "Crear etiqueta de envío"
1869
  msgid "The service and rate chosen by the customer at checkout is not available. Please choose another."
1870
  msgstr "El servicio y la tarifa elegidos por el cliente en el pago no están disponibles. Por favor, elige otro."
1871
 
1872
+ #: i18n/strings.php:354 i18n/strings.php:445
1873
  msgid "Request a refund"
1874
  msgstr "Solicitar un reembolso"
1875
 
1876
+ #: i18n/strings.php:355 i18n/strings.php:446
1877
  msgid "You can request a refund for a shipping label that has not been used to ship a package. It will take at least %(days)s days to process."
1878
  msgstr "Puedes solicitar un reembolso de una etiqueta de envío que no se haya utilizado para enviar un paquete. Tardará al menos %(days)s días en procesarse."
1879
 
1880
+ #: i18n/strings.php:356 i18n/strings.php:447
1881
  msgid "Purchase date"
1882
  msgstr "Fecha de compra"
1883
 
1884
+ #: i18n/strings.php:357 i18n/strings.php:448
1885
  msgid "Amount eligible for refund"
1886
  msgstr "Cantidad elegible para el reembolso"
1887
 
1888
+ #: i18n/strings.php:336 i18n/strings.php:360 i18n/strings.php:427
1889
+ #: i18n/strings.php:451
1890
  msgid "Reprint shipping label"
1891
  msgstr "Volver a imprimir la etiqueta de envío"
1892
 
1893
+ #: i18n/strings.php:361 i18n/strings.php:452
1894
  msgid "If there was a printing error when you purchased the label, you can print it again."
1895
  msgstr "Si hay un problema de impresión cuando compres la etiqueta puedes imprimirla de nuevo."
1896
 
1897
+ #: i18n/strings.php:362 i18n/strings.php:453
1898
  msgid "NOTE: If you already used the label in a package, printing and using it again is a violation of our terms of service and may result in criminal charges."
1899
  msgstr "NOTA: Si ya has usado la etiqueta en un paquete, imprimirla y usarla de nuevo es una violación de nuestros términos del servicio y podría resultar en cargos criminales."
1900
 
1901
+ #: i18n/strings.php:325 i18n/strings.php:359 i18n/strings.php:450
1902
  msgid "Print"
1903
  msgstr "Imprimir"
1904
 
1905
  #: i18n/strings.php:16 i18n/strings.php:82 i18n/strings.php:122
1906
  #: i18n/strings.php:158 i18n/strings.php:167 i18n/strings.php:178
1907
+ #: i18n/strings.php:263 i18n/strings.php:352 i18n/strings.php:358
1908
+ #: i18n/strings.php:443 i18n/strings.php:449
1909
  msgid "Cancel"
1910
  msgstr "Cancelar"
1911
 
1912
+ #: i18n/strings.php:370 i18n/strings.php:461
1913
  msgid "N/A"
1914
  msgstr "N/D"
1915
 
1916
+ #: i18n/strings.php:8 i18n/strings.php:420 i18n/strings.php:470
1917
  msgid "More"
1918
  msgstr "Más"
1919
 
1956
  msgid "Packaging"
1957
  msgstr "Paquetería"
1958
 
1959
+ #: woocommerce-services.php:1602
1960
  msgid "Section not loading? Visit the <a href=\"%s\">status page</a> for troubleshooting steps."
1961
  msgstr "¿No carga la sección? Visita la <a href=\"%s\">página de estado</a> para ver los pasos de solución de problemas."
1962
 
1968
  msgid "Note: Jetpack is connected, but development mode is also enabled on this site. Please disable development mode."
1969
  msgstr "Nota: Jetpack está conectado, pero también está activo el modo de desarrollo en este sitio. Por favor, desactiva el modo de desarrollo."
1970
 
1971
+ #: woocommerce-services.php:1455
1972
  msgid "Shipping Label"
1973
  msgstr "Etiqueta de envío"
1974
 
2025
  msgid "Unknown"
2026
  msgstr "Desconocido"
2027
 
2028
+ #: i18n/strings.php:391
2029
  msgid "Support"
2030
  msgstr "Soporte"
2031
 
2032
+ #: i18n/strings.php:379 i18n/strings.php:380
2033
  msgid "Debug"
2034
  msgstr "Depuración"
2035
 
2036
+ #: i18n/strings.php:410
2037
  msgid "Services"
2038
  msgstr "Servicios"
2039
 
2040
+ #: i18n/strings.php:394
2041
  msgctxt "This section displays the overall health of WooCommerce Shipping & Tax and the things it depends on"
2042
  msgid "Health"
2043
  msgstr "Salud"
2044
 
2045
+ #: i18n/strings.php:392
2046
  msgid "Need help?"
2047
  msgstr "¿Necesitas ayuda?"
2048
 
2050
  msgid "Log is empty"
2051
  msgstr "El registro está vacío"
2052
 
2053
+ #: i18n/strings.php:383 i18n/strings.php:387
2054
  msgid "Disabled"
2055
  msgstr "Desactivado"
2056
 
2057
+ #: i18n/strings.php:382 i18n/strings.php:386
2058
  msgid "Enabled"
2059
  msgstr "Activo"
2060
 
2078
  msgid "Setup for this service has not yet been completed"
2079
  msgstr "La configuración de este servició aún no se ha completado"
2080
 
2081
+ #: i18n/strings.php:399
2082
  msgid "Service data is up-to-date"
2083
  msgstr "Los datos del servicio están al día"
2084
 
2085
+ #: i18n/strings.php:398
2086
  msgid "Service data was found, but is more than one day old"
2087
  msgstr "Se encontaron datos del servicio, pero son de hace más de un día"
2088
 
2089
+ #: i18n/strings.php:397
2090
  msgid "Service data was found, but is more than three days old"
2091
  msgstr "Se encontraron datos del servicio, pero son de hace más de tres días"
2092
 
2093
+ #: i18n/strings.php:400
2094
  msgid "Service data found, but may be out of date"
2095
  msgstr "Se han encontrado datos del servicio, pero podrían ser obsoletos"
2096
 
2097
+ #: i18n/strings.php:401
2098
  msgid "No service data available"
2099
  msgstr "No hay disponibles datos del servicio"
2100
 
2101
+ #: i18n/strings.php:396
2102
  msgid "Jetpack"
2103
  msgstr "Jetpack"
2104
 
2122
  msgid "Please install and activate the Jetpack plugin, version %s or higher"
2123
  msgstr "Por favor, instala y activa el plugin Jetpack, en su versión %s o superior"
2124
 
2125
+ #. Author of the plugin
2126
+ #: i18n/strings.php:395
2127
  msgid "WooCommerce"
2128
  msgstr "WooCommerce"
2129
 
2139
  msgid "WooCommerce %1$s or higher is required (You are running %2$s)"
2140
  msgstr "Se necesita WooCommerce %1$s o superior (estás ejecutando la versión %2$s)"
2141
 
2142
+ #: classes/class-wc-connect-error-notice.php:104 woocommerce-services.php:1638
2143
  msgid "Dismiss this notice"
2144
  msgstr "Descartar este aviso"
2145
 
i18n/languages/woocommerce-services-es_VE.json CHANGED
@@ -1 +1 @@
1
- {"0":[null,"0"],"":{"po-revision-date":"2021-03-18 08:38:31+0000","mime-version":"1.0","content-type":"text/plain; charset=UTF-8","content-transfer-encoding":"8bit","plural-forms":"nplurals=2; plural=n != 1;","x-generator":"GlotPress/3.0.0-alpha.2","language":"es_VE","project-id-version":"Plugins - WooCommerce Shipping &amp; Tax - Stable (latest release)"},"Features":[null,"Características"],"Carrier":[null,"Transportista"],"Express delivery from the experts in international shipping":[null,"Entrega exprés de los expertos en envíos internacionales"],"Live rates for %(carrierName)s at checkout":[null,"Tarifas en vivo de %(carrierName)s al finalizar la compra"],"Ship with the largest delivery network in the United States":[null,"Envía con la mayor red de entrega de Estados Unidos"],"Discounted %(carrierName)s shipping labels":[null,"Etiquetas de envío con descuento de %(carrierName)s"],"To be displayed at checkout, this carrier must be added as a shipping method to selected shipping zones":[null,"Para que se muestre al finalizar la compra, este transportista tiene que ser añadido como método de envío a las zonas de envío seleccionadas"],"Add to shipping zones":[null,"Añadir a las zonas de envío"],"Show live rates directly on your store - never under or overcharge for shipping again":[null,"Muestra las tarifas en vivo directamente en tu tienda - nunca vuelvas a cobrar de menos o de más en el envío"],"Live rates at checkout":[null,"Tarifas en vivo al finalizar la compra"],"Last updated %s.":[null,"Última actualización %s."],"At least one of the new predefined packages has the same name as existing packages.":[null,"Al menos uno de los nuevos paquetes predefinidos tiene el mismo nombre que los paquetes existentes."],"The new predefined package names are not unique.":[null,"Los nombres del paquete predefinido no son únicos."],"At least one of the new custom packages has the same name as existing packages.":[null,"Al menos uno de los nuevos paquetes personalizados tiene el mismo nombre que los paquetes existentes."],"The new custom package names are not unique.":[null,"Los nombres del nuevo paquete personalizado no son únicos."],"Go to shipping zones":[null,"Ir a las zonas de envío"],"Add DHL Express as a shipping method to selected shipping zones to display live rates at checkout.":[null,"Añade DHL Express como un método de envío para zonas de envío seleccionadas para mostrar las tarifas en vivo al finalizar la compra."],"DHL Express live rates are now available":[null,"Ahora están disponibles las tarifas en vivo de DHL Express"],"State %1$s is invalid for %2$s.":[null,"La provincia %1$s no es válida para %2$s."],"%1$s %2$s is invalid for %3$s.":[null,"%1$s %2$s no es válido para %3$s."],"A %1$s is required for %2$s.":[null,"Se necesita un %1$s para %2$s."],"A country is required":[null,"Se necesita un país"],"Your store is over the limit for rate calls this month and your account will be charged for overages. To prevent future overage charges you can upgrade your plan.":[null,"Tu tienda ha superado este mes el límite para la tarifa de llamadas y se cobrará el exceso en tu cuenta. Para evitar futuros cargos por exceso, puedes actualizar tu plan."],"There was an error trying to activate your subscription.":[null,"Ha habido un error al intentar activar tu suscripción."],"Your subscription was succesfully activated.":[null,"Tu suscripción se ha activado correctamente."],"Manage":[null,"Gestionar"],"Usage":[null,"Uso"],"View and manage your subscription usage":[null,"Ver y gestionar el uso de tu suscripción"],"Shipping method":[null,"Método de envío"],"The subscription is already active.":[null,"La suscripción ya está activa."],"Set up your own carrier account to compare rates and print labels from multiple carriers in WooCommerce Shipping. Learn more about adding {{a}}carrier accounts{{/a}}.":[null,"Configura tu propia cuenta de transportista para comparar tarifas e imprimir etiquetas de varios transportistas en WooCommerce Shipping. Aprende más sobre cómo añadir {{a}}cuentas de transportista{{{/a}}."],"There was an error connecting to your %(carrierName)s account. Please check that all of the information entered matches your %(carrierName)s account and try to connect again.":[null,"Ha habido un error al conectar con tu cuenta %(carrierName)s. Por favor, comprueba que toda la información introducida coincide con la de tu cuenta %(carrierName)s e intenta conectar de nuevo."],"Your carrier account was connected successfully.":[null,"Tu cuenta de transportista ha sido conectada correctamente."],"The date must be a valid date in the format YYYY-MM-DD":[null,"La fecha debe ser una fecha válida en el formato AAAA-MM-DD"],"The invoice number needs to be 9 or 13 letters and digits in length":[null,"El número de la factura tiene que ser de 9 o 13 letras y dígitos de longitud"],"The company website format is not valid":[null,"El formato de la web de la empresa no es válido"],"The email format is not valid":[null,"El formato del correo electrónico no es válido"],"The ZIP/Postal code needs to be 5 digits in length":[null,"El código postal tiene que ser de 5 dígitos de longitud"],"The phone number needs to be 10 digits in length":[null,"El número de teléfono tiene que ser de 10 dígitos de longitud"],"The UPS account number needs to be 6 letters and digits in length":[null,"El número de la cuenta de UPS tiene que ser de 6 letras y dígitos de longitud"],"This will remove the connection with %(carrier_name)s. All of your %(carrier_name)s account information will be deleted and you won\\u2019t see %(carrier_name)s rates.":[null,"Esto eliminará la conexión con %(carrier_name)s. Toda la información de tu cuenta %(carrier_name)s será borrada y no verás las tarifas de %(carrier_name)s."],"Disconnect your %(carrier_name)s account":[null,"Desconectar tu cuenta %(carrier_name)s"],"There was an error trying to disconnect your carrier account":[null,"Ha habido un error al intentar desconectar tu cuenta de transportista"],"Your carrier account was disconnected succesfully.":[null,"Tu cuenta de transportista ha sido desconectada correctamente."],"DHL Express":[null,"DHL Express"],"Powered by WooCommerce Tax. If automated taxes are enabled, you'll need to enter prices exclusive of tax.":[null,"Funciona con WooCommerce Tax. Si están activados los impuestos automáticos, tendrás que introducir los precios sin impuestos."],"WooCommerce Helper auth is missing":[null,"Falta la identificación de WooCommerce Helper"],"USPS labels without tracking are not eligible for refund.":[null,"Las etiquetas de USPS sin seguimiento no son elegibles para reembolso."],"General Information":[null,"Información general"],"Connect your %(carrierName)s account":[null,"Conecta tu cuenta de %(carrierName)s"],"%(carrierName)s not supported.":[null,"%(carrierName)s no es compatible."],"Loading":[null,"Cargando"],"WooCommerce Shipping & Tax Data":[null,"Datos de WooCommerce Shipping & Tax"],"Print customs form":[null,"Imprimir el formulario de aduana"],"Test your WooCommerce Shipping & Tax connection":[null,"Prueba tu conexión de WooCommerce Shipping & Tax"],"WooCommerce Shipping & Tax Status":[null,"Estado de WooCommerce Shipping & Tax"],"Connect your store to activate WooCommerce Shipping & Tax":[null,"Conecta tu tienda para activar WooCommerce Shipping & Tax"],"Connect Jetpack to activate WooCommerce Shipping & Tax":[null,"Conecta Jetpack para activar WooCommerce Shipping & Tax"],"WooCommerce Shipping now supports DHL labels for international shipments. Purchase and print discounted labels from DHL and USPS right here.":[null,"Ahora, WooCommerce Shipping es compatible con las etiquetas de DHL para envíos internacionales. Compra e imprime aquí mismo etiquetas con descuento de DHL y USPS."],"Discounted DHL Shipping Labels":[null,"Etiquetas de envío de DHL con descuento"],"WooCommerce Shipping":[null,"WooCommerce Shipping"],"Invalid WooCommerce Shipping & Tax service slug provided":[null,"Proporcionado un slug no válido de servicio de WooCommerce Shipping & Tax"],"WooCommerce Shipping & Tax":[null,"WooCommerce Shipping & Tax"],"ZIP/Postal code":[null,"Código postal"],"This action will delete any information entered on the form.":[null,"Esta acción borrará cualquier información introducida en el formulario."],"Cancel connection":[null,"Cancelar la conexión"],"Ok":[null,"Aceptar"],"UPS invoice control id":[null,"ID de control de la factura de UPS"],"UPS invoice currency":[null,"Moneda de la factura de UPS"],"UPS invoice amount":[null,"Importe de la factura de UPS"],"UPS invoice date":[null,"Fecha de factura de UPS"],"UPS invoice number":[null,"Número de factura de UPS"],"I have been issued an invoice from UPS within the past 90 days":[null,"Se me ha expedido una factura de UPS en los últimos 90 días."],"UPS account information":[null,"Información de la cuenta de UPS"],"Company website":[null,"Web de la empresa"],"Job title":[null,"Título profesional"],"Company name":[null,"Nombre de la empresa"],"This is the company info you used to create your UPS account":[null,"Esta es la información de la empresa que has usado para crear tu cuenta de UPS"],"Company information":[null,"Información de la empresa"],"Email":[null,"Correo electrónico"],"Address 2 (optional)":[null,"Dirección 2 (opcional)"],"Account number":[null,"Número de cuenta"],"This is the account number and address from your UPS profile":[null,"Este es el número de cuenta y la dirección de tu perfil de UPS"],"General information":[null,"Información general"],"If you need a UPS account number, go to {{a}}UPS.com{{/a}} to create a new account.":[null,"Si necesitas un número de cuenta de UPS, ve a {{a}}UPS.com{{/a}} para crear una nueva cuenta."],"Set up your own UPS carrier account to compare rates and print labels from multiple carriers in WooCommerce Shipping. Learn more about adding {{a}}carrier accounts{{/a}}.":[null,"Configura tu propia cuenta de transportista de UPS para comparar tarifas e imprimir etiquetas de varios transportistas en WooCommerce Shipping. Aprende más sobre cómo añadir {{a}}cuentas de transportistas{{{/a}}."],"Connect your UPS account":[null,"Conecta tu cuenta de UPS"],"Set up your own carrier account by adding your credentials here":[null,"Configura tu propia cuenta de transportista añadiendo aquí tus credenciales"],"Carrier account":[null,"Cuenta de transportista"],"Credentials":[null,"Credenciales"],"Adult signature required":[null,"Es obligatoria la firma de un adulto"],"Signature required":[null,"Firma obligatoria"],"Other\\u2026":[null,"Otros..."],"Select one\\u2026":[null,"Seleccionar uno..."],"Validating address\\u2026":[null,"Validando la dirección..."],"Purchasing\\u2026":[null,"Comprando..."],"Your UPS account will be charged":[null,"Se cargará en tu cuenta de UPS"],"Package %(index)s \\u2013 %(title)s":[null,"Paquete %(index)s – %(title)s"],"Saving\\u2026":[null,"Guardando..."],"Your tax rates and settings will be automatically configured for %1$s. <a href=\"https://docs.woocommerce.com/document/setting-up-taxes-in-woocommerce/#section-12\">Learn more about setting up tax rates for additional nexuses</a>":[null,"Tus tarifas de impuestos y ajustes se configurarán automáticamente para %1$s. <a href=\"https://docs.woocommerce.com/document/setting-up-taxes-in-woocommerce/#section-12\">Aprende más sobre cómo configurar tarifas de impuestos para nexos adicionales</a>"],"Your tax rates and settings will be automatically configured for %1$s, %2$s. <a href=\"https://docs.woocommerce.com/document/setting-up-taxes-in-woocommerce/#section-12\">Learn more about setting up tax rates for additional nexuses</a>":[null,"Tus tarifas de impuestos y ajustes se configurarán automáticamente para %1$s, %2$s. <a href=\"https://docs.woocommerce.com/document/setting-up-taxes-in-woocommerce/#section-12\">Aprende más sobre cómo configurar tarifas de impuestos para nexos adicionales</a>"],"%(itemCount)d item is ready to be fulfilled":["%(itemCount)d items are ready to be fulfilled","%(itemCount)d artículo está listo para ser completado","%(itemCount)d artículos están listos para ser completados"],"%(itemCount)d item was fulfilled on {{span}}%(createdDate)s{{/span}}":["%(itemCount)d items were fulfilled on {{span}}%(createdDate)s{{/span}}","%(itemCount)d artículo ha sido completado el {{span}}%(createdDate)s{{/span}}","%(itemCount)d artículos han sido completados el {{span}}%(createdDate)s{{/span}}"],"Schedule a pickup":[null,"Programa una recogida"],"Label images older than 180 days are deleted by our technology partners for general security and data privacy concerns.":[null,"Las imágenes de las etiquetas de más de 180 días aon borradas por nuestros socios tecnológicos por cuestiones generales de seguridad y privacidad de datos."],"Labels older than 30 days cannot be refunded.":[null,"Las etiquetas de más de 30 días no se pueden reembolsar."],"Mark this order as complete and notify the customer":[null,"Marcar este pedido como completo y avisar al cliente"],"Notify the customer with shipment details":[null,"Avisar el cliente con los detalles del envío"],"You save %s with WooCommerce Shipping":[null,"Ahorras %s con WooCommerce Shipping"],"WooCommerce Shipping & Tax requires the WooCommerce plugin to be installed and active. You can download %s here.":[null,"WooCommerce Shipping & Tax necesita que esté instalado y activado el plugin WooCommerce. Puedes descargarlo aquí: %s."],"No tracking information available at this time":[null,"En este momento no hay disponible información de seguimiento"],"Connection error: unable to create label at this time":[null,"Error de conexión: en este momento no se puede crear la etiqueta"],"Track Package":["Track Packages","Seguimiento del paquete","Seguimiento de los paquetes"],"Which package would you like to track?":[null,"¿Qué paquete te gustaría seguir?"],"%(service)s label (#%(labelIndex)d)":[null,"%(service)s etiqueta (#%(labelIndex)d)"],"To print this shipping label, {{a}}add a credit card to your account{{/a}}.":[null,"Para imprimir esta etiqueta de envío, {{a}}añade una tarjeta de crédito a tu cuenta{{/a}}."],"Add credit card":[null,"Añadir una tarjeta de crédito"],"To print this shipping label, {{a}}choose a credit card to add to your account{{/a}}.":[null,"Para imprimir esta etiqueta de envío, {{a}}elige una tarjeta de crédito para añadirla a tu cuenta{{/a}}."],"Choose credit card":[null,"Elegir una tarjeta de crédito"],"Buy shipping label":["Buy shipping labels","Comprar una etiqueta de envío","Comprar etiquetas de envío"],"shipping label ready":["shipping labels ready","etiqueta de envío lista","etiquetas de envío listas"],"Shipping from":[null,"Envío desde"],"Shipping summary":[null,"Resumen del envío"],"Customer paid a {{shippingMethod/}} of {{shippingCost/}} for shipping":[null,"El cliente ha pagado un {{shippingMethod/}} de {{shippingCost/}} por el envío"],"Shipping rates":[null,"Tarifas de envío"],"HS Tariff number":[null,"Número del arancel del HS"],"Submit":[null,"Enviar"],"Total Weight (with package)":[null,"Peso total (con el paquete)"],"QTY":[null,"Cantidad"],"Weight":[null,"Peso"],"Items to fulfill":[null,"Elementos para rellenar"],"Select a package type":[null,"Selecciona un tipo de paquete"],"Package details":[null,"Detalles del paquete"],"Your shipping packages have been saved.":[null,"Han sido guardados tus paquetes de envío."],"0.0":[null,"0.0"],"Shipment Tracking":[null,"Seguimiento de envíos"],"Customs information valid":[null,"Información de aduanas válida"],"Customs information incomplete":[null,"Información de aduanas incompleta"],"Packing Log:":[null,"Registro de paquetería:"],"Chosen Rate:":[null,"Tarifa elegida:"],"Shipping Method ID:":[null,"ID del método de envío:"],"Shipping Method Name:":[null,"Nombre del método de envío:"],"Shipping Debug":[null,"Depuración de envíos"],"<strong>\"%2$s\" is missing weight, length, width, or height.</strong><br />Shipping rates cannot be calculated. <a href=\"%1$s\">Enter dimensions and weight for %2$s</a> so your customers can purchase this item.":[null,"<strong>A \"%2$s\" le falta el peso, largo, ancho o la altura.</strong><br />No se pueden calcular las tarifas de envío. <a href=\"%1$s\">Introduce las dimensiones y el peso de %2$s</a> para que tus clientes puedan comprar este artículo."],"Unable to send request to WooCommerce Shipping & Tax server. The timestamp generated for the signature is too old.":[null,"No ha sido posible enviar la solicitud al servidor de WooCommerce Shipping & Tax. La marca temporal generada para la firma es demasiado antigua."],"Unable to send request to WooCommerce Shipping & Tax server. Jetpack Token is malformed.":[null,"No ha sido posible enviar la solicitud al servidor de WooCommerce Shipping & Tax. El token de JetPack está mal formado."],"Unable to send request to WooCommerce Shipping & Tax server. Jetpack Token is missing":[null,"No ha sido posible enviar la solicitud al servidor de WooCommerce Shipping & Tax. Falta el token de JetPack."],"Error: The WooCommerce Shipping & Tax server returned: %1$s %2$s ( %3$d )":[null,"Error: El servidor de WooCommerce Shipping & Tax ha devuelto: %1$s %2$s (%3$d)"],"Error: The WooCommerce Shipping & Tax server returned ( %d ) and an empty response body.":[null,"Error: El servidor de WooCommerce Shipping & Tax ha devuelto (%d) y un cuerpo de respuesta vacío."],"Error: The WooCommerce Shipping & Tax server returned HTTP code: %d":[null,"Error: El servidor de WooCommerce Shipping & Tax ha devuelto un código HTTP: %d"],"Unable to encode body for request to WooCommerce Shipping & Tax server.":[null,"No ha sido posible cifrar el cuerpo para la solicitud al servidor de WooCommerce Shipping & Tax."],"Unable to send request to WooCommerce Shipping & Tax server. Body must be an array.":[null,"No ha sido posible enviar la solicitud al servidor de WooCommerce Shipping & Tax. El cuerpo debe ser un array."],"Unable to send request to WooCommerce Shipping & Tax server. Jetpack connection does not implement get_access_token.":[null,"No ha sido posible enviar la solicitud al servidor de WooCommerce Shipping & Tax. La conexión de Jetpack no implementa `get_access_token`."],"Unable to send request to WooCommerce Shipping & Tax server. Jetpack_Data was not found.":[null,"No ha sido posible enviar la solicitud al servidor de WooCommerce Shipping & Tax. No se ha encontrado Jetpack_Data."],"No shipping rate could be calculated. No items in the package are shippable.":[null,"No se ha podido calcular la tarifa de envío. Ningún artículo del paquete se puede enviar."],"Product ( ID: %d ) is missing a dimension value. Shipping rates cannot be calculated.":[null,"Al producto ( ID: %d ) le falta un valor de dimensión. No se pueden calcular las tarifas de envío."],"Product ( ID: %d ) did not include a weight. Shipping rates cannot be calculated.":[null,"El producto ( ID: %d ) no incluye peso. No se pueden calcular las tarifas de envío."],"Packing log:":[null,"Registro de paquetería:"],"Received rate: %1$s (%2$s)":[null,"Tarifa recibida: %1$s (%2$s)"],"Your customer selected {{shippingMethod/}}":[null,"Tu cliente ha elegido {{shippingMethod/}}"],"Total rate: %(total)s":[null,"Tasa total: %(total)s"],"%(serviceName)s: %(rate)s":[null,"%(serviceName)s: %(rate)s"],"No rates found":[null,"No se han encontrado tarifas"],"WooCommerce Shipping gives you access to USPS Commercial Pricing, which is discounted over Retail rates.":[null,"WooCommerce Shipping te da acceso a USPS Commercial Pricing, que tienen descuento sobre las tarifas minoristas."],"more info":[null,"más información"],"ITN":[null,"ITN"],"Sanitary / Phytosanitary inspection":[null,"Inspección sanitaria / fitosanitaria"],"Quarantine":[null,"Cuarentena"],"None":[null,"Ninguno"],"Restriction type":[null,"Tipo de restricción"],"Details":[null,"Detalles"],"Sample":[null,"Muestra"],"Gift":[null,"Regalo"],"Documents":[null,"Documentos"],"Merchandise":[null,"Mercancía"],"Contents type":[null,"Tipo de contenido"],"Return to sender if package is unable to be delivered":[null,"Devolver al remitente si el paquete no puede ser entregado"],"Value (per unit)":[null,"Valor (por unidad)"],"Weight (per unit)":[null,"Peso (por unidad)"],"Save customs form":[null,"Guardar el formulario de aduanas"],"Customs":[null,"Aduanas"],"Use address as entered":[null,"Utilizar la dirección tal y como se ha introducido"],"View on Google Maps":[null,"Ver en Google Maps"],"Verify with USPS":[null,"Verificar con USPS"],"Automatic verification failed for this address. It may still be a valid address \\u2014 use the tools below to manually verify.":[null,"Ha fallado la verificación automática para esta dirección. Aún puede ser una dirección válida: usa las siguientes herramientas para verificarla manualmente."],"We were unable to automatically verify the address.":[null,"No hemos podido verificar automáticamente la dirección."],"We were unable to automatically verify the address \\u2014 %(error)s.":[null,"No hemos podido verificar automáticamente la dirección: %(error)s."],"You've edited the address, please revalidate it for accurate rates":[null,"Has editado la dirección, vuelve a validarla para obtener tarifas precisas."],"Verify address":[null,"Verificar dirección"],"%(message)s. Please modify the address and try again.":[null,"%(message)s. Modifica la dirección y vuelve a intentarlo."],"View details":[null,"Ver detalles"],"Items":[null,"Artículos"],"Package":[null,"Paquete"],"Receipt":[null,"Recibo"],"Label #%(labelIndex)s details":[null,"Detalles de la etiqueta #%(labelIndex)s"],"{{icon/}} Delete this package":[null,"{{icon/}}} Borrar este paquete"],"Done":[null,"Hecho"],"Add boxes, envelopes, and other packages you use most frequently":[null,"Añade las cajas, sobres y otros paquetes que uses más frecuentemente"],"Remove":[null,"Quitar"],"Edit":[null,"Editar"],"Weight of empty package":[null,"Peso del paquete vacío"],"Unique package name":[null,"Nombre único del paquete"],"Envelope":[null,"Sobre"],"Box":[null,"Caja"],"This field is required.":[null,"Este campo es obligatorio."],"Payment":[null,"Pago"],"Email the label purchase receipts to %(ownerName)s (%(ownerLogin)s) at %(ownerEmail)s":[null,"Envía por correo electrónico los recibos de compra de etiquetas a %(ownerName)s (%(ownerLogin)s) a %(ownerEmail)s"],"Email Receipts":[null,"Recibos por correo electrónico"],"To purchase shipping labels, choose a credit card you have on file or add a new card.":[null,"Para comprar etiquetas de envío elige una tarjeta de crédito que tengas guardada o añade una nueva tarjeta."],"Choose a different card":[null,"Elige una tarjeta diferente"],"To purchase shipping labels, add a credit card.":[null,"Para comprar etiquetas de envío, añade una tarjeta de crédito."],"We'll charge the credit card on your account (%(card)s) to pay for the labels you print":[null,"Haremos un cargo en la tarjeta de crédito de tu cuenta (%(card)s) para pagar las etiquetas que imprimas"],"Credit cards are retrieved from the following WordPress.com account: %(wpcomLogin)s <%(wpcomEmail)s>":[null,"Las tarjetas de crédito se obtienen de la siguiente dirección de WordPress.com: %(wpcomLogin)s <%(wpcomEmail)s>"],"Only the site owner can change these settings. Please contact %(ownerName)s (%(ownerLogin)s) to change the shipping label settings.":[null,"Solo el propietario del sitio puede cambiar estos ajustes. Por favor, contacta con %(ownerName)s (%(ownerLogin)s) para cambiar los ajustes de etiquetas de envío."],"Only the site owner can manage shipping label payment methods. Please contact %(ownerName)s (%(ownerLogin)s) to manage payment methods.":[null,"Solo el propietario del sitio puede administrar los métodos de pago de etiquetas de envío. Por favor, contactda con %(ownerName)s (%(ownerLogin)s) para que administre los métodos de pago."],"%(card)s ****%(digits)s":[null,"%(tarjeta)s ****%(digits)s"],"Print shipping labels yourself and save a trip to the post office":[null,"Imprime tú mismo las etiquetas de envío y ahórrate un viaje a la oficina de correos"],"H":[null,"Al"],"W":[null,"An"],"L":[null,"L"],"Disconnect":[null,"Desconectar"],"Activate":[null,"Activar"],"No activity yet":[null,"Todavía no hay actividad"],"Note":[null,"Nota"],"Refunded %(amount)s":[null,"Reembolsado %(amount)s"],"%(service)s label (#%(labelNum)d) refund rejected":[null,"reembolso de etiqueta de %(service)s (#%(labelNum)d) rechazado"],"%(service)s label (#%(labelNum)d) refunded (%(amount)s)":[null,"reembolsado (%(amount)s) de etiqueta de %(service)s (#%(labelNum)d) rechazado"],"%(service)s label (#%(labelNum)d) refund requested (%(amount)s)":[null,"%(service)s etiqueta (#%(labelNum)d) solicitud de reembolso (%(amount)s)"],"Note sent to customer":[null,"Nota enviada al cliente"],"Internal note":[null,"Nota interna"],"Show notes from %(date)s":[null,"Mostrar notas desde %(date)s"],"%(count)s event":["%(count)s events","%(count)s evento","%(count)s eventos"],"WeChat Pay":[null,"WeChat Pay"],"Toggle menu":[null,"Alternar menú"],"Return to Order #%(orderId)s":[null,"Volver al pedido #%(orderId)s"],"Our team is here for you. View our {{docsA}}support docs{{/docsA}} or {{ticketA}}open a support ticket{{/ticketA}}.":[null,"Nuestro equipo está aquí para ti. Ve nuestros {{docsA}}documentos de soporte{{/docsA}} o {{ticketA}}abre un ticket de soporte{{/ticketA}}."],"Logging":[null,"Registro"],"No services configured. {{a}}Add a shipping service{{/a}}":[null,"No hay configurado ningún servicio. {{a}}Añade un servicio de envío{{/a}}"],"Edit service settings":[null,"Editar ajustes del servicio"],"Request was made %s - check logs below or {{a}}edit service settings{{/a}}":[null,"La solicitud la hizo %s - revisa los registros abajo o {{a}}edita los ajustes del servicio{{/a}}"],"Copy for support":[null,"Copiar para soporte"],"Last %s entry. {{a}}Show full log{{/a}}":["Last %s entries. {{a}}Show full log{{/a}}","Última %s entrada. {{a}}Mostrar registro completo{{/a}}","Últimas %s entradas. {{a}}Mostrar registro completo{{/a}}"],"Log tail copied to clipboard":[null,"Cola del registro copiada al portapapeles"],"You have unsaved changes. Are you sure you want to leave this page?":[null,"Tienes cambios sin guardar. ¿Seguro que quieres abandonar esta página?"],"Value ($ per unit)":[null,"Value ($ per unit)"],"Weight (%s per unit)":[null,"Weight (%s per unit)"],"Description":[null,"Descripción"],"Country where the product was manufactured or assembled":[null,"País donde se fabricó o ensambló el producto"],"Origin country":[null,"País de origen"],"USPS":[null,"USPS"],"Optional":[null,"Opcional"],"Retry":[null,"Reintentar"],"shipping label printing":[null,"impresión de etiquetas de envío"],"shipping label printing and smoother payment setup":[null,"impresión de etiquetas de envío y una configuración de pago más sencilla"],"automated tax calculation and shipping label printing":[null,"cálculo automático de impuestos e impresión de etiquetas de envío"],"automated tax calculation, shipping label printing, and smoother payment setup":[null,"cálculo automático de impuestos, impresión de etiquetas de envío y configuración de pagos más sencilla"],"Data resource description.":[null,"Descripción del recurso de datos."],"Data resource ID.":[null,"ID del recurso de datos."],"List of supported currencies.":[null,"Lista de monedas disponibles."],"List of supported states in a given country.":[null,"Lista de provincias incluidas para un país dado."],"List of supported continents, countries, and states.":[null,"Lista de continentes, países y provincias incluidos."],"Sorry, you cannot view this resource.":[null,"Lo siento, no puedes ver este recurso."],"Sorry, you cannot list resources.":[null,"Lo siento, no puedes listar recursos."],"The unit weights are defined in for this country.":[null,"Las unidades de peso definidas para este país."],"Thousands separator for displayed prices in this country.":[null,"Separador de miles para los precios mostrados en este país."],"Full name of state.":[null,"Nombre completo de la provincia."],"State code.":[null,"Código de la provincia."],"List of states in this country.":[null,"Lista de provincias de este país."],"Number of decimal points shown in displayed prices for this country.":[null,"Número de decimales mostrados en los precios visibles para este país."],"Full name of country.":[null,"Nombre completo del país."],"The unit lengths are defined in for this country.":[null,"Las unidades de medida definidas para este país."],"Decimal separator for displayed prices for this country.":[null,"Separador decimal para los precios mostrados para este país."],"Currency symbol position for this country.":[null,"Posición del símbolo de moneda para este país."],"Default ISO4127 alpha-3 currency code for the country.":[null,"Código de moneda ISO4127 alpha-3 por defecto para el país."],"ISO3166 alpha-2 country code.":[null,"Código ISO3166 alpha-2 del país."],"List of countries on this continent.":[null,"Lista de países de este continente."],"Full name of continent.":[null,"Nombre completo del continente."],"There are no locations matching these parameters.":[null,"No hay ubicaciones que coincidan con estos parámetros."],"2 character continent code.":[null,"Código de 2 caracteres del continente."],"Shipping label tracking number":[null,"Número de seguimiento de la etiqueta de envío"],"Shipping label service":[null,"Servicio de etiquetas de envío"],"Warning: Erasing personal data will cause the ability to reprint or refund WooCommerce Shipping & Tax shipping labels to be lost on the affected orders.":[null,"Advertencia: El borrado de datos personales provocará la posibilidad de volver a imprimir o reembolsar etiquetas de envío de WooCommerce Shipping & Tax que hayan desaparecido en los pedidos afectados."],"By using this extension, you may be storing personal data or sharing data with external services. <a href=\"%s\" target=\"_blank\">Learn more about how this works, including what you may want to include in your privacy policy.</a>":[null,"Al usar esta extensión puede que estés almacenando datos personales o compartiendo datos con servicios externos. <a href=\"%s\" target=\"_blank\">Aprende más sobre cómo funciona esto, incluyendo lo que quieras incluir en tu política de privacidad.</a>"],"There was a problem updating your saved credit cards.":[null,"Hubo un problema al actualizar tus tarjetas de crédito guardadas."],"No labels found for this period":[null,"No se han encontrado etiquetas en este periodo"],"Total":[null,"Total"],"Refund":[null,"Reembolso"],"Price":[null,"Precio"],"Order":[null,"Pedido"],"Time":[null,"Hora"],"Requested":[null,"Solicitado"],"Last 7 days":[null,"Últimos 7 días"],"This month":[null,"Este mes"],"Last month":[null,"El mes pasado"],"Year":[null,"Año"],"Export CSV":[null,"Exportar CSV"],"Other Log":[null,"Otros registros"],"Taxes Log":[null,"Registro de impuestos"],"Shipping Log":[null,"Registro de envíos"],"Display troubleshooting information on the Cart and Checkout pages.":[null,"Muestra información para resolución de problemas en las páginas de carrito y finalizar compra."],"Write diagnostic messages to log files. Helpful when contacting support.":[null,"Escribe mensajes de diagnóstico en los archivos de registro. Útil al contactar con soporte."],"Enter your email address at which to accept payments. You'll need to link your own account in order to perform anything other than \"sale\" transactions.":[null,"Introduce tu dirección de correo electrónico en la que aceptas pagos. Tendrás que enlazar a tu cuenta para realizar cualquier otra cosa además de las transacciones de \"ofertas\"."],"Payment Email":[null,"Correo electrónico de pagos"],"To authenticate payments with WooCommerce Shipping & Tax, <a href=\"%s\">click here</a>.":[null,"Para identificar pagos con WooCommerce Shipping & Tax, <a href=\"%s\">haz clic aquí</a>."],"Payments will be authenticated by WooCommerce Shipping & Tax and directed to the following email address. To disable this feature and link a PayPal account, <a href=\"%s\">click here</a>.":[null,"Los pagos los identificará WooCommerce Shipping & Tax y se dirigirán a la siguiente dirección de correo electrónico. Para desactivar esta característica y enlazar a una cuenta de PayPal, <a href=\"%s\">haz clic aquí</a>."],"%s (Note that \"authorizing payment only\" requires linking a PayPal account.)":[null,"%s (Date cuenta que \"autorizar solo pagos\" requiere enlazar con una cuenta de PayPal.)"],"Link account":[null,"Enlazar cuenta"],"Link a new or existing PayPal account to make sure future orders are marked “Processing” instead of “On hold”, and so refunds can be issued without leaving WooCommerce.":[null,"Enlaza una cuenta de PayPal nueva o existente para asegurar que los pedidos futuros se marquen como \"Procesando\" en vez de \"En espera\", y para emitir reembolsos sin tener que salir de WooCommerce."],"Link your PayPal account":[null,"Enlaza a tu cuenta de PayPal"],"To issue refunds via PayPal Checkout, you will need to <a href=\"%s\">link a PayPal account</a> with the email address that received this payment.":[null,"Para enviar reembolsos a través de PayPal Exprés tendrás que <a href=\"%s\">enlazar a una cuenta de PayPal</a> con la dirección de correo electrónico que recibió este pago."],"Link a PayPal account":[null,"Enlaza a una cuenta PayPal"],"Refresh":[null,"Recargar"],"Tracking number":[null,"Número de seguimiento"],"Provider":[null,"Proveedor"],"WooCommerce Shipping & Tax is almost ready to go! Once you connect Jetpack you'll have access to %s.":[null,"¡WooCommerce Shipping & Tax está casi listo! Una vez que conectes con Jetpack, tendrás acceso a %s."],"Hosted services for WooCommerce: automated tax calculation, shipping label printing, and smoother payment setup.":[null,"Servicios alojados para WooCommerce: cálculos automáticos de impuestos, tarifas de envío en directo, impresión de etiquetas de envío y una configuración de pago más sencilla."],"Tax Class":[null,"Clase de impuesto"],"Shipping":[null,"Envío"],"Compound":[null,"Compuesto"],"Priority":[null,"Prioridad"],"Tax Name":[null,"Nombre de impuesto"],"Rate %":[null,"Tarifa %"],"ZIP/Postcode":[null,"Código postal"],"State Code":[null,"Código de provincia"],"Country Code":[null,"Código de país"],"Enable automated taxes":[null,"Activar impuestos automáticos"],"Disable automated taxes":[null,"Desactivar impuestos automáticos"],"Automated taxes":[null,"Impuestos automáticos"],"By clicking \"%1$s\", you agree to the <a href=\"%2$s\">Terms of Service</a> and to <a href=\"%3$s\">share certain data and settings</a> with WordPress.com and/or third parties.":[null,"Haciendo clic en \"%1$s\" aceptas los <a href=\"%2$s\">términos del servicio</a> y a <a href=\"%3$s\">compartir ciertos datos y ajustes</a> con WordPress.com y/o otros."],"Setup complete.":[null,"Configuración completa."],"You can now enjoy %s.":[null,"Ya puedes disfrutar %s."],"WooCommerce Shipping & Tax is almost ready to go! Once you connect your store you'll have access to %s.":[null,"¡WooCommerce Shipping & Tax está casi listo! Una vez que conectes tu tienda tendrás acceso a %s."],"automated tax calculation":[null,"cálculo automático de impuestos"],"smoother payment setup":[null,"configuración de pago más sencilla"],"automated tax calculation and smoother payment setup":[null,"cálculo automático de impuestos y configuración de pago más sencilla"],"Required":[null,"Requerido"],"Your shipping settings have been saved.":[null,"Tus ajustes de envío se han guardado."],"Unable to save your shipping settings. Please try again.":[null,"No ha sido posible guardar tus ajustes de envío. Por favor, inténtalo de nuevo."],"Dimensions":[null,"Dimensiones"],"Close":[null,"Cerrar"],"Packages to be Shipped":[null,"Paquetes a enviar"],"Add to a New Package":[null,"Añadir a un nuevo paquete"],"Add items":[null,"Añadir artículos"],"Individually Shipped Item":[null,"Artículo enviado individualmente"],"Item Dimensions":[null,"Dimensiones del artículo"],"Please select a package":[null,"Por favor, elige un paquete"],"Service schemas were not loaded":[null,"No se cargaron los esquemas del servicio"],"Bad request":[null,"Petición errónea"],"Order not found":[null,"Pedido no encontrado"],"Got it, thanks!":[null,"¡Entendido, gracias!"],"Activate Jetpack and connect":[null,"Activa Jetpack y conecta"],"Install Jetpack and connect":[null,"Instala Jetpack y conecta"],"Something went wrong. Please try connecting to Jetpack manually, or contact support on the WordPress.org forums.":[null,"Algo fue mal. Por favor, trata de conectar manualmente con Jetpack, o contacta con soporte en los foros de WordPress.org."],"Connecting...":[null,"Conectando…"],"Activating...":[null,"Activando…"],"When you're ready, purchase and print discounted labels from %s right here.":[null,"Cuando estés listo, compra e imprime etiquetas de %s con descuento aquí mismo."],"Discounted Shipping Labels":[null,"Etiquetas de envío con descuento"],"American Express":[null,"American Express"],"Discover":[null,"Descubre"],"MasterCard":[null,"MasterCard"],"VISA":[null,"VISA"],"PayPal":[null,"PayPal"],"Add another credit card":[null,"Añadir otra tarjeta de créditoi"],"%(selectedCount)d package selected":["%(selectedCount)d packages selected","%(selectedCount)d paquete seleccionado","%(selectedCount)d paquetes seleccionados"],"Unable to get your settings. Please refresh the page to try again.":[null,"No ha sido posible recuperar tus ajustes. Por favor, recarga la página para intentarlo de nuevo."],"%(numSelected)d service selected":["%(numSelected)d services selected","%(numSelected)d servicio seleccionado","%(numSelected)d servicios seleccionados"],"Add and edit saved packages using the {{a}}Packaging Manager{{/a}}.":[null,"Añade y edita los paquetes guardados usando el {{a}}Gestor de paquetería{{/a}}."],"Tracking #: {{trackingLink/}}":[null,"Seguimiento #: {{trackingLink/}}"],"%(item)s from {{pckg/}}":[null,"%(item)s desde {{pckg/}}"],"Which items would you like to add to {{pckg/}}?":[null,"¿Qué artículos te gustaría añadir a {{pckg/}}?"],"1 item in 1 package: %(weight)s %(unit)s total":[null,"1 artículo en 1 paquete: %(weight)s %(unit)s en total"],"%(itemsCount)d items in 1 package: %(weight)s %(unit)s total":[null,"%(itemsCount)d artículos en 1 paquete: %(weight)s %(unit)s en total"],"%(itemsCount)d items in %(packageCount)d packages: %(weight)s %(unit)s total":[null,"%(itemsCount)d artículos en %(packageCount)d paquetes: %(weight)s %(unit)s en total"],"{{itemLink/}} is currently saved for a later shipment.":[null,"{{itemLink/}} está actualmente guardado para un envío posterior."],"{{itemLink/}} is currently shipped in its original packaging.":[null,"{{itemLink/}} está actualmente enviado en su paquete original."],"{{itemLink/}} is currently in {{pckg/}}.":[null,"{{itemLink/}} está en actualmente en {{pckg/}}."],"Choose rate: %(pckg)s":[null,"Elegir tarifa: %(pckg)s"],"Refund label (-%(amount)s)":[null,"Etiqueta de reembolso (-%(amount)s)"],"Where would you like to move it?":[null,"¿A dónde te gustaría moverlo?"],"Unsaved changes made to packages":[null,"Los cambios realizados a los paquetes no se han guardado"],"There are no items in this package.":[null,"No existen artículos en este paquete."],"Ship in original packaging":[null,"Enviar en su paquete original"],"Request refund":[null,"Solicitar reembolso"],"Reprint":[null,"Volver a imprimir"],"Paper size":[null,"Tamaño del papel"],"No packages selected":[null,"No hay paquetes seleccionados"],"Move":[null,"Mover"],"Move item":[null,"Mover artículo"],"Increase the rates calculated by the carrier to account for packaging and handling costs. You can also add a negative amount to save your customers money.":[null,"Incrementa las tarifas calculadas por el transportista a la cantidad de los costes de empaquetado y manipulado. También puedes añadir una cantidad negativa para ahorrar dinero a tus clientes."],"Create new label":[null,"Crear nueva etiqueta"],"All packages selected":[null,"Seleccionados todos los paquetes"],"Add":[null,"Añadir"],"Add item":[null,"Añadir artículo"],"Add a credit card":[null,"Añadir una tarjeta de crédito"],"#%d - [Deleted product]":[null,"#%d - [producto borrado]"],"#%1$d - %2$s":[null,"#%1$d - %2$s"],"<a href=\"%s\">Support</a>":[null,"<a href=\"%s\">Soporte</a>"],"There was an error installing Jetpack. Please try installing it manually.":[null,"Hubo un error al instalar Jetpack. Por favor, trata de instalarlo manualmente."],"Shipping Labels":[null,"Etiquetas de envío"],"Automattic":[null,"Automattic"],"https://woocommerce.com/":[null,"https://woocommerce.com/"],"Phone":[null,"Teléfono"],"Connect":[null,"Conectar"],"Save Settings":[null,"Guardar ajustes"],"Your changes have been saved.":[null,"Tus cambios se han guardado."],"There was a problem with one or more entries. Please fix the errors below and try saving again.":[null,"Hubo un problema con una o más entradas. Por favor, soluciona los errores de abajo y trata de guardar de nuevo."],"Expand":[null,"Expandir"],"Dismiss":[null,"Descartar"],"You have unsaved changes.":[null,"Tienes cambios sin guardar."],"Type of package":[null,"Tipo de paquete"],"Add package":["Add packages","Añadir paquete",""],"Invalid value.":[null,"Valor no válido."],"This field is required":[null,"Este campo es obligatorio"],"Package name":[null,"Nombre del paquete"],"This field must be unique":[null,"Este campo debe ser único"],"Unable to save your shipping packages. Please try again.":[null,"No se han podido guardar tus paquetes de envío. Por favor, inténtalo de nuevo."],"Save changes":[null,"Guardar cambios"],"Untitled":[null,"Sin título"],"Dimensions (L x W x H)":[null,"Dimensiones (L x An x Al)"],"All services selected":[null,"Seleccionados todos los servicios"],"Expand Services":[null,"Expandir servicios"],"Service":[null,"Servicio"],"Price adjustment":[null,"Ajuste de precio"],"Saved Packages":[null,"Paquetes guardados"],"Tracking":[null,"Seguimiento"],"Create shipping label":["Create shipping labels","Crear etiqueta de envío",""],"Name":[null,"Nombre"],"Company":[null,"Empresa"],"Address":[null,"Dirección"],"City":[null,"Ciudad"],"State":[null,"Provincia"],"Country":[null,"País"],"Invalid address":[null,"Dirección no válida"],"Origin address":[null,"Dirección de origen"],"Destination address":[null,"Dirección de destino"],"We have slightly modified the address entered. If correct, please use the suggested address to ensure accurate delivery.":[null,"Hemos modificado ligeramente la dirección introducida. Si es correcta, por favor, utiliza la dirección sugerida para asegurar una entrega precisa."],"Address entered":[null,"Dirección introducida"],"Edit address":[null,"Editar dirección"],"Suggested address":[null,"Dirección sugerida"],"Use selected address":[null,"Usar la dirección seleccionada"],"Use these packages":[null,"Utilizar estos paquetes"],"The service and rate chosen by the customer at checkout is not available. Please choose another.":[null,"El servicio y la tarifa elegidos por el cliente en el pago no están disponibles. Por favor, elige otro."],"Request a refund":[null,"Solicitar un reembolso"],"You can request a refund for a shipping label that has not been used to ship a package. It will take at least %(days)s days to process.":[null,"Puedes solicitar un reembolso de una etiqueta de envío que no se haya utilizado para enviar un paquete. Tardará al menos %(days)s días en procesarse."],"Purchase date":[null,"Fecha de compra"],"Amount eligible for refund":[null,"Cantidad elegible para el reembolso"],"Reprint shipping label":[null,"Volver a imprimir la etiqueta de envío"],"If there was a printing error when you purchased the label, you can print it again.":[null,"Si hay un problema de impresión cuando compres la etiqueta puedes imprimirla de nuevo."],"NOTE: If you already used the label in a package, printing and using it again is a violation of our terms of service and may result in criminal charges.":[null,"NOTA: Si ya has usado la etiqueta en un paquete, imprimirla y usarla de nuevo es una violación de nuestros términos del servicio y podría resultar en cargos criminales."],"Print":[null,"Imprimir"],"Cancel":[null,"Cancelar"],"N/A":[null,"N/D"],"More":[null,"Más"],"Invalid PDF request.":[null,"Petición de PDF no válida."],"Unknown package":[null,"Paquete desconocido"],"Individual packaging":[null,"Empaquetado individual"],"Unable to update service settings. Validation failed. %s":[null,"No ha sido posible actualizar los ajustes del servicio. Falló la validación. %s"],"Unable to update service settings. The form data could not be read.":[null,"No ha sido posible actualizar los ajustes del servicio. Los datos del formulario no pudieron leerse."],"Unable to update service settings. Form data is missing service ID.":[null,"No ha sido posible actualizar los ajustes del servicio. Los datos del formulario son de un ID de servicio no disponible."],"Unable to update settings. The form data could not be read.":[null,"No fue posible actualizar los ajustes. Los datos del formulario no se han podido leer."],"Unable to update settings. %s":[null,"No ha sido posible actualizar los ajustes. %s"],"Packaging":[null,"Paquetería"],"Section not loading? Visit the <a href=\"%s\">status page</a> for troubleshooting steps.":[null,"¿No carga la sección? Visita la <a href=\"%s\">página de estado</a> para ver los pasos de solución de problemas."],"Note: Jetpack development mode is enabled on this site. This site will not be able to obtain payment methods from WooCommerce Shipping & Tax production servers.":[null,"Nota: El modo de desarrollo de Jetpack está activo en este sitio. Este sitio no podrá obtener métodos de pago de los servidores de producción de WooCommerce Shipping & Tax."],"Note: Jetpack is connected, but development mode is also enabled on this site. Please disable development mode.":[null,"Nota: Jetpack está conectado, pero también está activo el modo de desarrollo en este sitio. Por favor, desactiva el modo de desarrollo."],"Shipping Label":[null,"Etiqueta de envío"],"yd":[null,"yd"],"in":[null,"en"],"mm":[null,"mm"],"cm":[null,"cm"],"m":[null,"m"],"oz":[null,"oz"],"lbs":[null,"lbs"],"g":[null,"g"],"kg":[null,"kg"],"An invalid service ID was received.":[null,"Se ha recibido un ID de servicio no válido."],"An invalid service instance was received.":[null,"Se ha recibido una instancia de servicio no válida."],"Rest of the World":[null,"Resto del mundo"],"Support":[null,"Soporte"],"Debug":[null,"Depuración"],"Services":[null,"Servicios"],"Need help?":[null,"¿Necesitas ayuda?"],"Log is empty":[null,"El registro está vacío"],"Disabled":[null,"Desactivado"],"Enabled":[null,"Activado"],"%s Shipping Zone":[null,"%s zona de envío"],"The most recent rate request failed":[null,"La reciente petición de tarifas más reciente falló"],"The most recent rate request was successful":[null,"La petición de tarifas más reciente tuvo éxito"],"No rate requests have yet been made for this service":[null,"Aún no han habido peticiones de tarifas para este servicio"],"Setup for this service has not yet been completed":[null,"La configuración de este servició aún no se ha completado"],"Service data is up-to-date":[null,"Los datos del servicio están al día"],"Service data was found, but is more than one day old":[null,"Se encontaron datos del servicio, pero son de hace más de un día"],"Service data was found, but is more than three days old":[null,"Se encontraron datos del servicio, pero son de hace más de tres días"],"Service data found, but may be out of date":[null,"Se han encontrado datos del servicio, pero podrían ser obsoletos"],"No service data available":[null,"No hay disponibles datos del servicio"],"Jetpack":[null,"Jetpack"],"Jetpack %s is connected and working correctly":[null,"Jetpack %s está conectado y funcionando correctamente"],"This is a Jetpack staging site":[null,"Este es un sitio en pruebas de Jetpack"],"Jetpack is not connected to WordPress.com. Make sure the Jetpack plugin is installed, activated, and connected.":[null,"Jetpack no está conectado a WordPress.com. Asegúrate de que el plugin Jetpack está instalado, activo y conectado."],"Jetpack %1$s or higher is required (You are running %2$s)":[null,"Se necesita Jetpack %1$s o superior (estás ejecutando la versión %2$s)"],"Please install and activate the Jetpack plugin, version %s or higher":[null,"Por favor, instala y activa el plugin Jetpack, en su versión %s o superior"],"WooCommerce":[null,"WooCommerce"],"WooCommerce %s is configured correctly":[null,"WooCommerce %s está configurado correctamente"],"Please set Base Location in WooCommerce Settings > General":[null,"Por favor, establece la ubicación base en Ajustes de WooCommerce > General"],"WooCommerce %1$s or higher is required (You are running %2$s)":[null,"Se necesita WooCommerce %1$s o superior (estás ejecutando la versión %2$s)"],"Dismiss this notice":[null,"Descartar este aviso"],"ERROR: Your site has a problem connecting to the WooCommerce Shipping & Tax API. Please make sure your Jetpack connection is working.":[null,"ERROR: Tu sitio tiene un problema al conectar con la API de WooCommerce Shipping & Tax. Por favor, aségurate de que está funcionando tu conexión de Jetpack."],"Your site is succesfully communicating to the WooCommerce Shipping & Tax API.":[null,"Tu sitio se está comunicando correctamente con la API de WooCommerce Shipping & Tax."],"This will test your WooCommerce Shipping & Tax connection to ensure everything is working correctly":[null,"Esto probará tu conexión de WooCommerce Shipping & Tax para asegurar que todo funciona correctamente"],"Test Connection":[null,"Probar conexión"],"The WooCommerce Shipping & Tax brandname\u0004WooCommerce Shipping & Tax":[null,"WooCommerce Shipping & Tax"],"The WooCommerce Shipping & Tax brandname\u0004WooCommerce Shipping":[null,"WooCommerce Shipping"],"%s - ZIP/Postal code checkout field label\u0004Invalid %s entered.":[null,"%s introducido no válido."],"%s - ZIP/Postal code checkout field label\u0004%s does not match the selected state.":[null,"%s no coincide con la provincia seleccionada."],"date is of the form MM/YY\u0004Expires %(date)s":[null,"Caduca %(date)s"],"A service with an unknown title and unknown method_title\u0004Unknown":[null,"Desconocido"],"This section displays the overall health of WooCommerce Shipping & Tax and the things it depends on\u0004Health":[null,"Salud"]}
1
+ {"0":[null,"0"],"":{"po-revision-date":"2021-03-18 08:38:31+0000","mime-version":"1.0","content-type":"text/plain; charset=UTF-8","content-transfer-encoding":"8bit","plural-forms":"nplurals=2; plural=n != 1;","x-generator":"GlotPress/3.0.0-alpha.2","language":"es_VE","project-id-version":"Plugins - WooCommerce Shipping &amp; Tax - Stable (latest release)"},"Features":[null,"Características"],"Carrier":[null,"Transportista"],"Express delivery from the experts in international shipping":[null,"Entrega exprés de los expertos en envíos internacionales"],"Live rates for %(carrierName)s at checkout":[null,"Tarifas en vivo de %(carrierName)s al finalizar la compra"],"Ship with the largest delivery network in the United States":[null,"Envía con la mayor red de entrega de Estados Unidos"],"Discounted %(carrierName)s shipping labels":[null,"Etiquetas de envío con descuento de %(carrierName)s"],"To be displayed at checkout, this carrier must be added as a shipping method to selected shipping zones":[null,"Para que se muestre al finalizar la compra, este transportista tiene que ser añadido como método de envío a las zonas de envío seleccionadas"],"Add to shipping zones":[null,"Añadir a las zonas de envío"],"Show live rates directly on your store - never under or overcharge for shipping again":[null,"Muestra las tarifas en vivo directamente en tu tienda - nunca vuelvas a cobrar de menos o de más en el envío"],"Live rates at checkout":[null,"Tarifas en vivo al finalizar la compra"],"Last updated %s.":[null,"Última actualización %s."],"At least one of the new predefined packages has the same name as existing packages.":[null,"Al menos uno de los nuevos paquetes predefinidos tiene el mismo nombre que los paquetes existentes."],"The new predefined package names are not unique.":[null,"Los nombres del paquete predefinido no son únicos."],"At least one of the new custom packages has the same name as existing packages.":[null,"Al menos uno de los nuevos paquetes personalizados tiene el mismo nombre que los paquetes existentes."],"The new custom package names are not unique.":[null,"Los nombres del nuevo paquete personalizado no son únicos."],"Go to shipping zones":[null,"Ir a las zonas de envío"],"Add DHL Express as a shipping method to selected shipping zones to display live rates at checkout.":[null,"Añade DHL Express como un método de envío para zonas de envío seleccionadas para mostrar las tarifas en vivo al finalizar la compra."],"DHL Express live rates are now available":[null,"Ahora están disponibles las tarifas en vivo de DHL Express"],"State %1$s is invalid for %2$s.":[null,"La provincia %1$s no es válida para %2$s."],"%1$s %2$s is invalid for %3$s.":[null,"%1$s %2$s no es válido para %3$s."],"A %1$s is required for %2$s.":[null,"Se necesita un %1$s para %2$s."],"A country is required":[null,"Se necesita un país"],"Your store is over the limit for rate calls this month and your account will be charged for overages. To prevent future overage charges you can upgrade your plan.":[null,"Tu tienda ha superado este mes el límite para la tarifa de llamadas y se cobrará el exceso en tu cuenta. Para evitar futuros cargos por exceso, puedes actualizar tu plan."],"There was an error trying to activate your subscription.":[null,"Ha habido un error al intentar activar tu suscripción."],"Your subscription was succesfully activated.":[null,"Tu suscripción se ha activado correctamente."],"Manage":[null,"Gestionar"],"Usage":[null,"Uso"],"View and manage your subscription usage":[null,"Ver y gestionar el uso de tu suscripción"],"Shipping method":[null,"Método de envío"],"The subscription is already active.":[null,"La suscripción ya está activa."],"Set up your own carrier account to compare rates and print labels from multiple carriers in WooCommerce Shipping. Learn more about adding {{a}}carrier accounts{{/a}}.":[null,"Configura tu propia cuenta de transportista para comparar tarifas e imprimir etiquetas de varios transportistas en WooCommerce Shipping. Aprende más sobre cómo añadir {{a}}cuentas de transportista{{{/a}}."],"There was an error connecting to your %(carrierName)s account. Please check that all of the information entered matches your %(carrierName)s account and try to connect again.":[null,"Ha habido un error al conectar con tu cuenta %(carrierName)s. Por favor, comprueba que toda la información introducida coincide con la de tu cuenta %(carrierName)s e intenta conectar de nuevo."],"Your carrier account was connected successfully.":[null,"Tu cuenta de transportista ha sido conectada correctamente."],"The date must be a valid date in the format YYYY-MM-DD":[null,"La fecha debe ser una fecha válida en el formato AAAA-MM-DD"],"The invoice number needs to be 9 or 13 letters and digits in length":[null,"El número de la factura tiene que ser de 9 o 13 letras y dígitos de longitud"],"The company website format is not valid":[null,"El formato de la web de la empresa no es válido"],"The email format is not valid":[null,"El formato del correo electrónico no es válido"],"The ZIP/Postal code needs to be 5 digits in length":[null,"El código postal tiene que ser de 5 dígitos de longitud"],"The phone number needs to be 10 digits in length":[null,"El número de teléfono tiene que ser de 10 dígitos de longitud"],"The UPS account number needs to be 6 letters and digits in length":[null,"El número de la cuenta de UPS tiene que ser de 6 letras y dígitos de longitud"],"This will remove the connection with %(carrier_name)s. All of your %(carrier_name)s account information will be deleted and you won\\u2019t see %(carrier_name)s rates.":[null,"Esto eliminará la conexión con %(carrier_name)s. Toda la información de tu cuenta %(carrier_name)s será borrada y no verás las tarifas de %(carrier_name)s."],"Disconnect your %(carrier_name)s account":[null,"Desconectar tu cuenta %(carrier_name)s"],"There was an error trying to disconnect your carrier account":[null,"Ha habido un error al intentar desconectar tu cuenta de transportista"],"Your carrier account was disconnected succesfully.":[null,"Tu cuenta de transportista ha sido desconectada correctamente."],"DHL Express":[null,"DHL Express"],"Powered by WooCommerce Tax. If automated taxes are enabled, you'll need to enter prices exclusive of tax.":[null,"Funciona con WooCommerce Tax. Si están activados los impuestos automáticos, tendrás que introducir los precios sin impuestos."],"WooCommerce Helper auth is missing":[null,"Falta la identificación de WooCommerce Helper"],"USPS labels without tracking are not eligible for refund.":[null,"Las etiquetas de USPS sin seguimiento no son elegibles para reembolso."],"General Information":[null,"Información general"],"Connect your %(carrierName)s account":[null,"Conecta tu cuenta de %(carrierName)s"],"%(carrierName)s not supported.":[null,"%(carrierName)s no es compatible."],"Loading":[null,"Cargando"],"WooCommerce Shipping & Tax Data":[null,"Datos de WooCommerce Shipping & Tax"],"Print customs form":[null,"Imprimir el formulario de aduana"],"Test your WooCommerce Shipping & Tax connection":[null,"Prueba tu conexión de WooCommerce Shipping & Tax"],"WooCommerce Shipping & Tax Status":[null,"Estado de WooCommerce Shipping & Tax"],"Connect your store to activate WooCommerce Shipping & Tax":[null,"Conecta tu tienda para activar WooCommerce Shipping & Tax"],"Connect Jetpack to activate WooCommerce Shipping & Tax":[null,"Conecta Jetpack para activar WooCommerce Shipping & Tax"],"WooCommerce Shipping now supports DHL labels for international shipments. Purchase and print discounted labels from DHL and USPS right here.":[null,"Ahora, WooCommerce Shipping es compatible con las etiquetas de DHL para envíos internacionales. Compra e imprime aquí mismo etiquetas con descuento de DHL y USPS."],"Discounted DHL Shipping Labels":[null,"Etiquetas de envío de DHL con descuento"],"WooCommerce Shipping":[null,"WooCommerce Shipping"],"Invalid WooCommerce Shipping & Tax service slug provided":[null,"Proporcionado un slug no válido de servicio de WooCommerce Shipping & Tax"],"WooCommerce Shipping & Tax":[null,"WooCommerce Shipping & Tax"],"ZIP/Postal code":[null,"Código postal"],"This action will delete any information entered on the form.":[null,"Esta acción borrará cualquier información introducida en el formulario."],"Cancel connection":[null,"Cancelar la conexión"],"Ok":[null,"Aceptar"],"UPS invoice control id":[null,"ID de control de la factura de UPS"],"UPS invoice currency":[null,"Moneda de la factura de UPS"],"UPS invoice amount":[null,"Importe de la factura de UPS"],"UPS invoice date":[null,"Fecha de factura de UPS"],"UPS invoice number":[null,"Número de factura de UPS"],"I have been issued an invoice from UPS within the past 90 days":[null,"Se me ha expedido una factura de UPS en los últimos 90 días."],"UPS account information":[null,"Información de la cuenta de UPS"],"Company website":[null,"Web de la empresa"],"Job title":[null,"Título profesional"],"Company name":[null,"Nombre de la empresa"],"This is the company info you used to create your UPS account":[null,"Esta es la información de la empresa que has usado para crear tu cuenta de UPS"],"Company information":[null,"Información de la empresa"],"Email":[null,"Correo electrónico"],"Address 2 (optional)":[null,"Dirección 2 (opcional)"],"Account number":[null,"Número de cuenta"],"This is the account number and address from your UPS profile":[null,"Este es el número de cuenta y la dirección de tu perfil de UPS"],"General information":[null,"Información general"],"If you need a UPS account number, go to {{a}}UPS.com{{/a}} to create a new account.":[null,"Si necesitas un número de cuenta de UPS, ve a {{a}}UPS.com{{/a}} para crear una nueva cuenta."],"Set up your own UPS carrier account to compare rates and print labels from multiple carriers in WooCommerce Shipping. Learn more about adding {{a}}carrier accounts{{/a}}.":[null,"Configura tu propia cuenta de transportista de UPS para comparar tarifas e imprimir etiquetas de varios transportistas en WooCommerce Shipping. Aprende más sobre cómo añadir {{a}}cuentas de transportistas{{{/a}}."],"Connect your UPS account":[null,"Conecta tu cuenta de UPS"],"Set up your own carrier account by adding your credentials here":[null,"Configura tu propia cuenta de transportista añadiendo aquí tus credenciales"],"Carrier account":[null,"Cuenta de transportista"],"Credentials":[null,"Credenciales"],"Adult signature required":[null,"Es obligatoria la firma de un adulto"],"Signature required":[null,"Firma obligatoria"],"Other\\u2026":[null,"Otros..."],"Select one\\u2026":[null,"Seleccionar uno..."],"Validating address\\u2026":[null,"Validando la dirección..."],"Purchasing\\u2026":[null,"Comprando..."],"Your UPS account will be charged":[null,"Se cargará en tu cuenta de UPS"],"Package %(index)s \\u2013 %(title)s":[null,"Paquete %(index)s – %(title)s"],"Saving\\u2026":[null,"Guardando..."],"Your tax rates and settings will be automatically configured for %1$s. <a href=\"https://docs.woocommerce.com/document/setting-up-taxes-in-woocommerce/#section-12\">Learn more about setting up tax rates for additional nexuses</a>":[null,"Tus tarifas de impuestos y ajustes se configurarán automáticamente para %1$s. <a href=\"https://docs.woocommerce.com/document/setting-up-taxes-in-woocommerce/#section-12\">Aprende más sobre cómo configurar tarifas de impuestos para nexos adicionales</a>"],"Your tax rates and settings will be automatically configured for %1$s, %2$s. <a href=\"https://docs.woocommerce.com/document/setting-up-taxes-in-woocommerce/#section-12\">Learn more about setting up tax rates for additional nexuses</a>":[null,"Tus tarifas de impuestos y ajustes se configurarán automáticamente para %1$s, %2$s. <a href=\"https://docs.woocommerce.com/document/setting-up-taxes-in-woocommerce/#section-12\">Aprende más sobre cómo configurar tarifas de impuestos para nexos adicionales</a>"],"%(itemCount)d item is ready to be fulfilled":["%(itemCount)d items are ready to be fulfilled","%(itemCount)d artículo está listo para ser completado","%(itemCount)d artículos están listos para ser completados"],"%(itemCount)d item was fulfilled on {{span}}%(createdDate)s{{/span}}":["%(itemCount)d items were fulfilled on {{span}}%(createdDate)s{{/span}}","%(itemCount)d artículo ha sido completado el {{span}}%(createdDate)s{{/span}}","%(itemCount)d artículos han sido completados el {{span}}%(createdDate)s{{/span}}"],"Schedule a pickup":[null,"Programa una recogida"],"Label images older than 180 days are deleted by our technology partners for general security and data privacy concerns.":[null,"Las imágenes de las etiquetas de más de 180 días aon borradas por nuestros socios tecnológicos por cuestiones generales de seguridad y privacidad de datos."],"Labels older than 30 days cannot be refunded.":[null,"Las etiquetas de más de 30 días no se pueden reembolsar."],"Mark this order as complete and notify the customer":[null,"Marcar este pedido como completo y avisar al cliente"],"Notify the customer with shipment details":[null,"Avisar el cliente con los detalles del envío"],"You save %s with WooCommerce Shipping":[null,"Ahorras %s con WooCommerce Shipping"],"WooCommerce Shipping & Tax requires the WooCommerce plugin to be installed and active. You can download %s here.":[null,"WooCommerce Shipping & Tax necesita que esté instalado y activado el plugin WooCommerce. Puedes descargarlo aquí: %s."],"No tracking information available at this time":[null,"En este momento no hay disponible información de seguimiento"],"Connection error: unable to create label at this time":[null,"Error de conexión: en este momento no se puede crear la etiqueta"],"Track Package":["Track Packages","Seguimiento del paquete","Seguimiento de los paquetes"],"Which package would you like to track?":[null,"¿Qué paquete te gustaría seguir?"],"%(service)s label (#%(labelIndex)d)":[null,"%(service)s etiqueta (#%(labelIndex)d)"],"To print this shipping label, {{a}}add a credit card to your account{{/a}}.":[null,"Para imprimir esta etiqueta de envío, {{a}}añade una tarjeta de crédito a tu cuenta{{/a}}."],"Add credit card":[null,"Añadir una tarjeta de crédito"],"To print this shipping label, {{a}}choose a credit card to add to your account{{/a}}.":[null,"Para imprimir esta etiqueta de envío, {{a}}elige una tarjeta de crédito para añadirla a tu cuenta{{/a}}."],"Choose credit card":[null,"Elegir una tarjeta de crédito"],"Buy shipping label":["Buy shipping labels","Comprar una etiqueta de envío","Comprar etiquetas de envío"],"shipping label ready":["shipping labels ready","etiqueta de envío lista","etiquetas de envío listas"],"Shipping from":[null,"Envío desde"],"Shipping summary":[null,"Resumen del envío"],"Customer paid a {{shippingMethod/}} of {{shippingCost/}} for shipping":[null,"El cliente ha pagado un {{shippingMethod/}} de {{shippingCost/}} por el envío"],"Shipping rates":[null,"Tarifas de envío"],"HS Tariff number":[null,"Número del arancel del HS"],"Submit":[null,"Enviar"],"Total Weight (with package)":[null,"Peso total (con el paquete)"],"QTY":[null,"Cantidad"],"Weight":[null,"Peso"],"Items to fulfill":[null,"Elementos para rellenar"],"Select a package type":[null,"Selecciona un tipo de paquete"],"Package details":[null,"Detalles del paquete"],"Your shipping packages have been saved.":[null,"Han sido guardados tus paquetes de envío."],"0.0":[null,"0.0"],"Shipment Tracking":[null,"Seguimiento de envíos"],"Customs information valid":[null,"Información de aduanas válida"],"Customs information incomplete":[null,"Información de aduanas incompleta"],"Packing Log:":[null,"Registro de paquetería:"],"Chosen Rate:":[null,"Tarifa elegida:"],"Shipping Method ID:":[null,"ID del método de envío:"],"Shipping Method Name:":[null,"Nombre del método de envío:"],"Shipping Debug":[null,"Depuración de envíos"],"<strong>\"%2$s\" is missing weight, length, width, or height.</strong><br />Shipping rates cannot be calculated. <a href=\"%1$s\">Enter dimensions and weight for %2$s</a> so your customers can purchase this item.":[null,"<strong>A \"%2$s\" le falta el peso, largo, ancho o la altura.</strong><br />No se pueden calcular las tarifas de envío. <a href=\"%1$s\">Introduce las dimensiones y el peso de %2$s</a> para que tus clientes puedan comprar este artículo."],"Unable to send request to WooCommerce Shipping & Tax server. The timestamp generated for the signature is too old.":[null,"No ha sido posible enviar la solicitud al servidor de WooCommerce Shipping & Tax. La marca temporal generada para la firma es demasiado antigua."],"Unable to send request to WooCommerce Shipping & Tax server. Jetpack Token is malformed.":[null,"No ha sido posible enviar la solicitud al servidor de WooCommerce Shipping & Tax. El token de JetPack está mal formado."],"Unable to send request to WooCommerce Shipping & Tax server. Jetpack Token is missing":[null,"No ha sido posible enviar la solicitud al servidor de WooCommerce Shipping & Tax. Falta el token de JetPack."],"Error: The WooCommerce Shipping & Tax server returned: %1$s %2$s ( %3$d )":[null,"Error: El servidor de WooCommerce Shipping & Tax ha devuelto: %1$s %2$s (%3$d)"],"Error: The WooCommerce Shipping & Tax server returned ( %d ) and an empty response body.":[null,"Error: El servidor de WooCommerce Shipping & Tax ha devuelto (%d) y un cuerpo de respuesta vacío."],"Error: The WooCommerce Shipping & Tax server returned HTTP code: %d":[null,"Error: El servidor de WooCommerce Shipping & Tax ha devuelto un código HTTP: %d"],"Unable to encode body for request to WooCommerce Shipping & Tax server.":[null,"No ha sido posible cifrar el cuerpo para la solicitud al servidor de WooCommerce Shipping & Tax."],"Unable to send request to WooCommerce Shipping & Tax server. Body must be an array.":[null,"No ha sido posible enviar la solicitud al servidor de WooCommerce Shipping & Tax. El cuerpo debe ser un array."],"Unable to send request to WooCommerce Shipping & Tax server. Jetpack connection does not implement get_access_token.":[null,"No ha sido posible enviar la solicitud al servidor de WooCommerce Shipping & Tax. La conexión de Jetpack no implementa `get_access_token`."],"Unable to send request to WooCommerce Shipping & Tax server. Jetpack_Data was not found.":[null,"No ha sido posible enviar la solicitud al servidor de WooCommerce Shipping & Tax. No se ha encontrado Jetpack_Data."],"No shipping rate could be calculated. No items in the package are shippable.":[null,"No se ha podido calcular la tarifa de envío. Ningún artículo del paquete se puede enviar."],"Product ( ID: %d ) is missing a dimension value. Shipping rates cannot be calculated.":[null,"Al producto ( ID: %d ) le falta un valor de dimensión. No se pueden calcular las tarifas de envío."],"Product ( ID: %d ) did not include a weight. Shipping rates cannot be calculated.":[null,"El producto ( ID: %d ) no incluye peso. No se pueden calcular las tarifas de envío."],"Packing log:":[null,"Registro de paquetería:"],"Received rate: %1$s (%2$s)":[null,"Tarifa recibida: %1$s (%2$s)"],"Your customer selected {{shippingMethod/}}":[null,"Tu cliente ha elegido {{shippingMethod/}}"],"Total rate: %(total)s":[null,"Tasa total: %(total)s"],"%(serviceName)s: %(rate)s":[null,"%(serviceName)s: %(rate)s"],"No rates found":[null,"No se han encontrado tarifas"],"WooCommerce Shipping gives you access to USPS Commercial Pricing, which is discounted over Retail rates.":[null,"WooCommerce Shipping te da acceso a USPS Commercial Pricing, que tienen descuento sobre las tarifas minoristas."],"more info":[null,"más información"],"ITN":[null,"ITN"],"Sanitary / Phytosanitary inspection":[null,"Inspección sanitaria / fitosanitaria"],"Quarantine":[null,"Cuarentena"],"None":[null,"Ninguno"],"Restriction type":[null,"Tipo de restricción"],"Details":[null,"Detalles"],"Sample":[null,"Muestra"],"Gift":[null,"Regalo"],"Documents":[null,"Documentos"],"Merchandise":[null,"Mercancía"],"Contents type":[null,"Tipo de contenido"],"Return to sender if package is unable to be delivered":[null,"Devolver al remitente si el paquete no puede ser entregado"],"Value (per unit)":[null,"Valor (por unidad)"],"Weight (per unit)":[null,"Peso (por unidad)"],"Save customs form":[null,"Guardar el formulario de aduanas"],"Customs":[null,"Aduanas"],"Use address as entered":[null,"Utilizar la dirección tal y como se ha introducido"],"View on Google Maps":[null,"Ver en Google Maps"],"Verify with USPS":[null,"Verificar con USPS"],"Automatic verification failed for this address. It may still be a valid address \\u2014 use the tools below to manually verify.":[null,"Ha fallado la verificación automática para esta dirección. Aún puede ser una dirección válida: usa las siguientes herramientas para verificarla manualmente."],"We were unable to automatically verify the address.":[null,"No hemos podido verificar automáticamente la dirección."],"We were unable to automatically verify the address \\u2014 %(error)s.":[null,"No hemos podido verificar automáticamente la dirección: %(error)s."],"You've edited the address, please revalidate it for accurate rates":[null,"Has editado la dirección, vuelve a validarla para obtener tarifas precisas."],"Verify address":[null,"Verificar dirección"],"%(message)s. Please modify the address and try again.":[null,"%(message)s. Modifica la dirección y vuelve a intentarlo."],"View details":[null,"Ver detalles"],"Items":[null,"Artículos"],"Package":[null,"Paquete"],"Receipt":[null,"Recibo"],"Label #%(labelIndex)s details":[null,"Detalles de la etiqueta #%(labelIndex)s"],"{{icon/}} Delete this package":[null,"{{icon/}}} Borrar este paquete"],"Done":[null,"Hecho"],"Add boxes, envelopes, and other packages you use most frequently":[null,"Añade las cajas, sobres y otros paquetes que uses más frecuentemente"],"Remove":[null,"Quitar"],"Edit":[null,"Editar"],"Weight of empty package":[null,"Peso del paquete vacío"],"Unique package name":[null,"Nombre único del paquete"],"Envelope":[null,"Sobre"],"Box":[null,"Caja"],"This field is required.":[null,"Este campo es obligatorio."],"Payment":[null,"Pago"],"Email the label purchase receipts to %(ownerName)s (%(ownerLogin)s) at %(ownerEmail)s":[null,"Envía por correo electrónico los recibos de compra de etiquetas a %(ownerName)s (%(ownerLogin)s) a %(ownerEmail)s"],"Email Receipts":[null,"Recibos por correo electrónico"],"To purchase shipping labels, choose a credit card you have on file or add a new card.":[null,"Para comprar etiquetas de envío elige una tarjeta de crédito que tengas guardada o añade una nueva tarjeta."],"Choose a different card":[null,"Elige una tarjeta diferente"],"To purchase shipping labels, add a credit card.":[null,"Para comprar etiquetas de envío, añade una tarjeta de crédito."],"We'll charge the credit card on your account (%(card)s) to pay for the labels you print":[null,"Haremos un cargo en la tarjeta de crédito de tu cuenta (%(card)s) para pagar las etiquetas que imprimas"],"Credit cards are retrieved from the following WordPress.com account: %(wpcomLogin)s <%(wpcomEmail)s>":[null,"Las tarjetas de crédito se obtienen de la siguiente dirección de WordPress.com: %(wpcomLogin)s <%(wpcomEmail)s>"],"Only the site owner can change these settings. Please contact %(ownerName)s (%(ownerLogin)s) to change the shipping label settings.":[null,"Solo el propietario del sitio puede cambiar estos ajustes. Por favor, contacta con %(ownerName)s (%(ownerLogin)s) para cambiar los ajustes de etiquetas de envío."],"Only the site owner can manage shipping label payment methods. Please contact %(ownerName)s (%(ownerLogin)s) to manage payment methods.":[null,"Solo el propietario del sitio puede administrar los métodos de pago de etiquetas de envío. Por favor, contactda con %(ownerName)s (%(ownerLogin)s) para que administre los métodos de pago."],"%(card)s ****%(digits)s":[null,"%(tarjeta)s ****%(digits)s"],"Print shipping labels yourself and save a trip to the post office":[null,"Imprime tú mismo las etiquetas de envío y ahórrate un viaje a la oficina de correos"],"H":[null,"Al"],"W":[null,"An"],"L":[null,"L"],"Disconnect":[null,"Desconectar"],"Activate":[null,"Activar"],"No activity yet":[null,"Todavía no hay actividad"],"Note":[null,"Nota"],"Refunded %(amount)s":[null,"Reembolsado %(amount)s"],"%(service)s label (#%(labelNum)d) refund rejected":[null,"reembolso de etiqueta de %(service)s (#%(labelNum)d) rechazado"],"%(service)s label (#%(labelNum)d) refunded (%(amount)s)":[null,"reembolsado (%(amount)s) de etiqueta de %(service)s (#%(labelNum)d) rechazado"],"%(service)s label (#%(labelNum)d) refund requested (%(amount)s)":[null,"%(service)s etiqueta (#%(labelNum)d) solicitud de reembolso (%(amount)s)"],"Note sent to customer":[null,"Nota enviada al cliente"],"Internal note":[null,"Nota interna"],"Show notes from %(date)s":[null,"Mostrar notas desde %(date)s"],"%(count)s event":["%(count)s events","%(count)s evento","%(count)s eventos"],"WeChat Pay":[null,"WeChat Pay"],"Toggle menu":[null,"Alternar menú"],"Return to Order #%(orderId)s":[null,"Volver al pedido #%(orderId)s"],"Our team is here for you. View our {{docsA}}support docs{{/docsA}} or {{ticketA}}open a support ticket{{/ticketA}}.":[null,"Nuestro equipo está aquí para ti. Ve nuestros {{docsA}}documentos de soporte{{/docsA}} o {{ticketA}}abre un ticket de soporte{{/ticketA}}."],"Logging":[null,"Registro"],"No services configured. {{a}}Add a shipping service{{/a}}":[null,"No hay configurado ningún servicio. {{a}}Añade un servicio de envío{{/a}}"],"Edit service settings":[null,"Editar ajustes del servicio"],"Request was made %s - check logs below or {{a}}edit service settings{{/a}}":[null,"La solicitud la hizo %s - revisa los registros abajo o {{a}}edita los ajustes del servicio{{/a}}"],"Copy for support":[null,"Copiar para soporte"],"Last %s entry. {{a}}Show full log{{/a}}":["Last %s entries. {{a}}Show full log{{/a}}","Última %s entrada. {{a}}Mostrar registro completo{{/a}}","Últimas %s entradas. {{a}}Mostrar registro completo{{/a}}"],"Log tail copied to clipboard":[null,"Cola del registro copiada al portapapeles"],"You have unsaved changes. Are you sure you want to leave this page?":[null,"Tienes cambios sin guardar. ¿Seguro que quieres abandonar esta página?"],"Value ($ per unit)":[null,"Value ($ per unit)"],"Weight (%s per unit)":[null,"Weight (%s per unit)"],"Description":[null,"Descripción"],"Country where the product was manufactured or assembled":[null,"País donde se fabricó o ensambló el producto"],"Origin country":[null,"País de origen"],"USPS":[null,"USPS"],"Optional":[null,"Opcional"],"Retry":[null,"Reintentar"],"shipping label printing":[null,"impresión de etiquetas de envío"],"shipping label printing and smoother payment setup":[null,"impresión de etiquetas de envío y una configuración de pago más sencilla"],"automated tax calculation and shipping label printing":[null,"cálculo automático de impuestos e impresión de etiquetas de envío"],"automated tax calculation, shipping label printing, and smoother payment setup":[null,"cálculo automático de impuestos, impresión de etiquetas de envío y configuración de pagos más sencilla"],"Data resource description.":[null,"Descripción del recurso de datos."],"Data resource ID.":[null,"ID del recurso de datos."],"List of supported currencies.":[null,"Lista de monedas disponibles."],"List of supported states in a given country.":[null,"Lista de provincias incluidas para un país dado."],"List of supported continents, countries, and states.":[null,"Lista de continentes, países y provincias incluidos."],"Sorry, you cannot view this resource.":[null,"Lo siento, no puedes ver este recurso."],"Sorry, you cannot list resources.":[null,"Lo siento, no puedes listar recursos."],"The unit weights are defined in for this country.":[null,"Las unidades de peso definidas para este país."],"Thousands separator for displayed prices in this country.":[null,"Separador de miles para los precios mostrados en este país."],"Full name of state.":[null,"Nombre completo de la provincia."],"State code.":[null,"Código de la provincia."],"List of states in this country.":[null,"Lista de provincias de este país."],"Number of decimal points shown in displayed prices for this country.":[null,"Número de decimales mostrados en los precios visibles para este país."],"Full name of country.":[null,"Nombre completo del país."],"The unit lengths are defined in for this country.":[null,"Las unidades de medida definidas para este país."],"Decimal separator for displayed prices for this country.":[null,"Separador decimal para los precios mostrados para este país."],"Currency symbol position for this country.":[null,"Posición del símbolo de moneda para este país."],"Default ISO4127 alpha-3 currency code for the country.":[null,"Código de moneda ISO4127 alpha-3 por defecto para el país."],"ISO3166 alpha-2 country code.":[null,"Código ISO3166 alpha-2 del país."],"List of countries on this continent.":[null,"Lista de países de este continente."],"Full name of continent.":[null,"Nombre completo del continente."],"There are no locations matching these parameters.":[null,"No hay ubicaciones que coincidan con estos parámetros."],"2 character continent code.":[null,"Código de 2 caracteres del continente."],"Shipping label tracking number":[null,"Número de seguimiento de la etiqueta de envío"],"Shipping label service":[null,"Servicio de etiquetas de envío"],"Warning: Erasing personal data will cause the ability to reprint or refund WooCommerce Shipping & Tax shipping labels to be lost on the affected orders.":[null,"Advertencia: El borrado de datos personales provocará la posibilidad de volver a imprimir o reembolsar etiquetas de envío de WooCommerce Shipping & Tax que hayan desaparecido en los pedidos afectados."],"By using this extension, you may be storing personal data or sharing data with external services. <a href=\"%s\" target=\"_blank\">Learn more about how this works, including what you may want to include in your privacy policy.</a>":[null,"Al usar esta extensión puede que estés almacenando datos personales o compartiendo datos con servicios externos. <a href=\"%s\" target=\"_blank\">Aprende más sobre cómo funciona esto, incluyendo lo que quieras incluir en tu política de privacidad.</a>"],"There was a problem updating your saved credit cards.":[null,"Hubo un problema al actualizar tus tarjetas de crédito guardadas."],"No labels found for this period":[null,"No se han encontrado etiquetas en este periodo"],"Total":[null,"Total"],"Refund":[null,"Reembolso"],"Price":[null,"Precio"],"Order":[null,"Pedido"],"Time":[null,"Hora"],"Requested":[null,"Solicitado"],"Last 7 days":[null,"Últimos 7 días"],"This month":[null,"Este mes"],"Last month":[null,"El mes pasado"],"Year":[null,"Año"],"Export CSV":[null,"Exportar CSV"],"Other Log":[null,"Otros registros"],"Taxes Log":[null,"Registro de impuestos"],"Shipping Log":[null,"Registro de envíos"],"Display troubleshooting information on the Cart and Checkout pages.":[null,"Muestra información para resolución de problemas en las páginas de carrito y finalizar compra."],"Write diagnostic messages to log files. Helpful when contacting support.":[null,"Escribe mensajes de diagnóstico en los archivos de registro. Útil al contactar con soporte."],"Enter your email address at which to accept payments. You'll need to link your own account in order to perform anything other than \"sale\" transactions.":[null,"Introduce tu dirección de correo electrónico en la que aceptas pagos. Tendrás que enlazar a tu cuenta para realizar cualquier otra cosa además de las transacciones de \"ofertas\"."],"Payment Email":[null,"Correo electrónico de pagos"],"To authenticate payments with WooCommerce Shipping & Tax, <a href=\"%s\">click here</a>.":[null,"Para identificar pagos con WooCommerce Shipping & Tax, <a href=\"%s\">haz clic aquí</a>."],"Payments will be authenticated by WooCommerce Shipping & Tax and directed to the following email address. To disable this feature and link a PayPal account, <a href=\"%s\">click here</a>.":[null,"Los pagos los identificará WooCommerce Shipping & Tax y se dirigirán a la siguiente dirección de correo electrónico. Para desactivar esta característica y enlazar a una cuenta de PayPal, <a href=\"%s\">haz clic aquí</a>."],"%s (Note that \"authorizing payment only\" requires linking a PayPal account.)":[null,"%s (Date cuenta que \"autorizar solo pagos\" requiere enlazar con una cuenta de PayPal.)"],"Link account":[null,"Enlazar cuenta"],"Link a new or existing PayPal account to make sure future orders are marked “Processing” instead of “On hold”, and so refunds can be issued without leaving WooCommerce.":[null,"Enlaza una cuenta de PayPal nueva o existente para asegurar que los pedidos futuros se marquen como \"Procesando\" en vez de \"En espera\", y para emitir reembolsos sin tener que salir de WooCommerce."],"Link your PayPal account":[null,"Enlaza a tu cuenta de PayPal"],"To issue refunds via PayPal Checkout, you will need to <a href=\"%s\">link a PayPal account</a> with the email address that received this payment.":[null,"Para enviar reembolsos a través de PayPal Exprés tendrás que <a href=\"%s\">enlazar a una cuenta de PayPal</a> con la dirección de correo electrónico que recibió este pago."],"Link a PayPal account":[null,"Enlaza a una cuenta PayPal"],"Refresh":[null,"Recargar"],"Tracking number":[null,"Número de seguimiento"],"Provider":[null,"Proveedor"],"WooCommerce Shipping & Tax is almost ready to go! Once you connect Jetpack you'll have access to %s.":[null,"¡WooCommerce Shipping & Tax está casi listo! Una vez que conectes con Jetpack, tendrás acceso a %s."],"Hosted services for WooCommerce: automated tax calculation, shipping label printing, and smoother payment setup.":[null,"Servicios alojados para WooCommerce: cálculos automáticos de impuestos, tarifas de envío en directo, impresión de etiquetas de envío y una configuración de pago más sencilla."],"Tax Class":[null,"Clase de impuesto"],"Shipping":[null,"Envío"],"Compound":[null,"Compuesto"],"Priority":[null,"Prioridad"],"Tax Name":[null,"Nombre de impuesto"],"Rate %":[null,"Tarifa %"],"ZIP/Postcode":[null,"Código postal"],"State Code":[null,"Código de provincia"],"Country Code":[null,"Código de país"],"Enable automated taxes":[null,"Activar impuestos automáticos"],"Disable automated taxes":[null,"Desactivar impuestos automáticos"],"Automated taxes":[null,"Impuestos automáticos"],"By clicking \"%1$s\", you agree to the <a href=\"%2$s\">Terms of Service</a> and to <a href=\"%3$s\">share certain data and settings</a> with WordPress.com and/or third parties.":[null,"Haciendo clic en \"%1$s\" aceptas los <a href=\"%2$s\">términos del servicio</a> y a <a href=\"%3$s\">compartir ciertos datos y ajustes</a> con WordPress.com y/o otros."],"Setup complete.":[null,"Configuración completa."],"You can now enjoy %s.":[null,"Ya puedes disfrutar %s."],"WooCommerce Shipping & Tax is almost ready to go! Once you connect your store you'll have access to %s.":[null,"¡WooCommerce Shipping & Tax está casi listo! Una vez que conectes tu tienda tendrás acceso a %s."],"automated tax calculation":[null,"cálculo automático de impuestos"],"smoother payment setup":[null,"configuración de pago más sencilla"],"automated tax calculation and smoother payment setup":[null,"cálculo automático de impuestos y configuración de pago más sencilla"],"Required":[null,"Requerido"],"Your shipping settings have been saved.":[null,"Tus ajustes de envío se han guardado."],"Unable to save your shipping settings. Please try again.":[null,"No ha sido posible guardar tus ajustes de envío. Por favor, inténtalo de nuevo."],"Dimensions":[null,"Dimensiones"],"Close":[null,"Cerrar"],"Packages to be Shipped":[null,"Paquetes a enviar"],"Add to a New Package":[null,"Añadir a un nuevo paquete"],"Add items":[null,"Añadir artículos"],"Individually Shipped Item":[null,"Artículo enviado individualmente"],"Item Dimensions":[null,"Dimensiones del artículo"],"Please select a package":[null,"Por favor, elige un paquete"],"Service schemas were not loaded":[null,"No se cargaron los esquemas del servicio"],"Bad request":[null,"Petición errónea"],"Order not found":[null,"Pedido no encontrado"],"Got it, thanks!":[null,"¡Entendido, gracias!"],"Activate Jetpack and connect":[null,"Activa Jetpack y conecta"],"Install Jetpack and connect":[null,"Instala Jetpack y conecta"],"Something went wrong. Please try connecting to Jetpack manually, or contact support on the WordPress.org forums.":[null,"Algo fue mal. Por favor, trata de conectar manualmente con Jetpack, o contacta con soporte en los foros de WordPress.org."],"Connecting...":[null,"Conectando…"],"Activating...":[null,"Activando…"],"When you're ready, purchase and print discounted labels from %s right here.":[null,"Cuando estés listo, compra e imprime etiquetas de %s con descuento aquí mismo."],"Discounted Shipping Labels":[null,"Etiquetas de envío con descuento"],"American Express":[null,"American Express"],"Discover":[null,"Descubre"],"MasterCard":[null,"MasterCard"],"VISA":[null,"VISA"],"PayPal":[null,"PayPal"],"Add another credit card":[null,"Añadir otra tarjeta de créditoi"],"%(selectedCount)d package selected":["%(selectedCount)d packages selected","%(selectedCount)d paquete seleccionado","%(selectedCount)d paquetes seleccionados"],"Unable to get your settings. Please refresh the page to try again.":[null,"No ha sido posible recuperar tus ajustes. Por favor, recarga la página para intentarlo de nuevo."],"%(numSelected)d service selected":["%(numSelected)d services selected","%(numSelected)d servicio seleccionado","%(numSelected)d servicios seleccionados"],"Add and edit saved packages using the {{a}}Packaging Manager{{/a}}.":[null,"Añade y edita los paquetes guardados usando el {{a}}Gestor de paquetería{{/a}}."],"Tracking #: {{trackingLink/}}":[null,"Seguimiento #: {{trackingLink/}}"],"%(item)s from {{pckg/}}":[null,"%(item)s desde {{pckg/}}"],"Which items would you like to add to {{pckg/}}?":[null,"¿Qué artículos te gustaría añadir a {{pckg/}}?"],"1 item in 1 package: %(weight)s %(unit)s total":[null,"1 artículo en 1 paquete: %(weight)s %(unit)s en total"],"%(itemsCount)d items in 1 package: %(weight)s %(unit)s total":[null,"%(itemsCount)d artículos en 1 paquete: %(weight)s %(unit)s en total"],"%(itemsCount)d items in %(packageCount)d packages: %(weight)s %(unit)s total":[null,"%(itemsCount)d artículos en %(packageCount)d paquetes: %(weight)s %(unit)s en total"],"{{itemLink/}} is currently saved for a later shipment.":[null,"{{itemLink/}} está actualmente guardado para un envío posterior."],"{{itemLink/}} is currently shipped in its original packaging.":[null,"{{itemLink/}} está actualmente enviado en su paquete original."],"{{itemLink/}} is currently in {{pckg/}}.":[null,"{{itemLink/}} está en actualmente en {{pckg/}}."],"Choose rate: %(pckg)s":[null,"Elegir tarifa: %(pckg)s"],"Refund label (-%(amount)s)":[null,"Etiqueta de reembolso (-%(amount)s)"],"Where would you like to move it?":[null,"¿A dónde te gustaría moverlo?"],"Unsaved changes made to packages":[null,"Los cambios realizados a los paquetes no se han guardado"],"There are no items in this package.":[null,"No existen artículos en este paquete."],"Ship in original packaging":[null,"Enviar en su paquete original"],"Request refund":[null,"Solicitar reembolso"],"Reprint":[null,"Volver a imprimir"],"Paper size":[null,"Tamaño del papel"],"No packages selected":[null,"No hay paquetes seleccionados"],"Move":[null,"Mover"],"Move item":[null,"Mover artículo"],"Increase the rates calculated by the carrier to account for packaging and handling costs. You can also add a negative amount to save your customers money.":[null,"Incrementa las tarifas calculadas por el transportista a la cantidad de los costes de empaquetado y manipulado. También puedes añadir una cantidad negativa para ahorrar dinero a tus clientes."],"Create new label":[null,"Crear nueva etiqueta"],"All packages selected":[null,"Seleccionados todos los paquetes"],"Add":[null,"Añadir"],"Add item":[null,"Añadir artículo"],"Add a credit card":[null,"Añadir una tarjeta de crédito"],"#%d - [Deleted product]":[null,"#%d - [producto borrado]"],"#%1$d - %2$s":[null,"#%1$d - %2$s"],"<a href=\"%s\">Support</a>":[null,"<a href=\"%s\">Soporte</a>"],"There was an error installing Jetpack. Please try installing it manually.":[null,"Hubo un error al instalar Jetpack. Por favor, trata de instalarlo manualmente."],"Shipping Labels":[null,"Etiquetas de envío"],"https://woocommerce.com/":[null,"https://woocommerce.com/"],"Phone":[null,"Teléfono"],"Connect":[null,"Conectar"],"Save Settings":[null,"Guardar ajustes"],"Your changes have been saved.":[null,"Tus cambios se han guardado."],"There was a problem with one or more entries. Please fix the errors below and try saving again.":[null,"Hubo un problema con una o más entradas. Por favor, soluciona los errores de abajo y trata de guardar de nuevo."],"Expand":[null,"Expandir"],"Dismiss":[null,"Descartar"],"You have unsaved changes.":[null,"Tienes cambios sin guardar."],"Type of package":[null,"Tipo de paquete"],"Add package":["Add packages","Añadir paquete",""],"Invalid value.":[null,"Valor no válido."],"This field is required":[null,"Este campo es obligatorio"],"Package name":[null,"Nombre del paquete"],"This field must be unique":[null,"Este campo debe ser único"],"Unable to save your shipping packages. Please try again.":[null,"No se han podido guardar tus paquetes de envío. Por favor, inténtalo de nuevo."],"Save changes":[null,"Guardar cambios"],"Untitled":[null,"Sin título"],"Dimensions (L x W x H)":[null,"Dimensiones (L x An x Al)"],"All services selected":[null,"Seleccionados todos los servicios"],"Expand Services":[null,"Expandir servicios"],"Service":[null,"Servicio"],"Price adjustment":[null,"Ajuste de precio"],"Saved Packages":[null,"Paquetes guardados"],"Tracking":[null,"Seguimiento"],"Create shipping label":["Create shipping labels","Crear etiqueta de envío",""],"Name":[null,"Nombre"],"Company":[null,"Empresa"],"Address":[null,"Dirección"],"City":[null,"Ciudad"],"State":[null,"Provincia"],"Country":[null,"País"],"Invalid address":[null,"Dirección no válida"],"Origin address":[null,"Dirección de origen"],"Destination address":[null,"Dirección de destino"],"We have slightly modified the address entered. If correct, please use the suggested address to ensure accurate delivery.":[null,"Hemos modificado ligeramente la dirección introducida. Si es correcta, por favor, utiliza la dirección sugerida para asegurar una entrega precisa."],"Address entered":[null,"Dirección introducida"],"Edit address":[null,"Editar dirección"],"Suggested address":[null,"Dirección sugerida"],"Use selected address":[null,"Usar la dirección seleccionada"],"Use these packages":[null,"Utilizar estos paquetes"],"The service and rate chosen by the customer at checkout is not available. Please choose another.":[null,"El servicio y la tarifa elegidos por el cliente en el pago no están disponibles. Por favor, elige otro."],"Request a refund":[null,"Solicitar un reembolso"],"You can request a refund for a shipping label that has not been used to ship a package. It will take at least %(days)s days to process.":[null,"Puedes solicitar un reembolso de una etiqueta de envío que no se haya utilizado para enviar un paquete. Tardará al menos %(days)s días en procesarse."],"Purchase date":[null,"Fecha de compra"],"Amount eligible for refund":[null,"Cantidad elegible para el reembolso"],"Reprint shipping label":[null,"Volver a imprimir la etiqueta de envío"],"If there was a printing error when you purchased the label, you can print it again.":[null,"Si hay un problema de impresión cuando compres la etiqueta puedes imprimirla de nuevo."],"NOTE: If you already used the label in a package, printing and using it again is a violation of our terms of service and may result in criminal charges.":[null,"NOTA: Si ya has usado la etiqueta en un paquete, imprimirla y usarla de nuevo es una violación de nuestros términos del servicio y podría resultar en cargos criminales."],"Print":[null,"Imprimir"],"Cancel":[null,"Cancelar"],"N/A":[null,"N/D"],"More":[null,"Más"],"Invalid PDF request.":[null,"Petición de PDF no válida."],"Unknown package":[null,"Paquete desconocido"],"Individual packaging":[null,"Empaquetado individual"],"Unable to update service settings. Validation failed. %s":[null,"No ha sido posible actualizar los ajustes del servicio. Falló la validación. %s"],"Unable to update service settings. The form data could not be read.":[null,"No ha sido posible actualizar los ajustes del servicio. Los datos del formulario no pudieron leerse."],"Unable to update service settings. Form data is missing service ID.":[null,"No ha sido posible actualizar los ajustes del servicio. Los datos del formulario son de un ID de servicio no disponible."],"Unable to update settings. The form data could not be read.":[null,"No fue posible actualizar los ajustes. Los datos del formulario no se han podido leer."],"Unable to update settings. %s":[null,"No ha sido posible actualizar los ajustes. %s"],"Packaging":[null,"Paquetería"],"Section not loading? Visit the <a href=\"%s\">status page</a> for troubleshooting steps.":[null,"¿No carga la sección? Visita la <a href=\"%s\">página de estado</a> para ver los pasos de solución de problemas."],"Note: Jetpack development mode is enabled on this site. This site will not be able to obtain payment methods from WooCommerce Shipping & Tax production servers.":[null,"Nota: El modo de desarrollo de Jetpack está activo en este sitio. Este sitio no podrá obtener métodos de pago de los servidores de producción de WooCommerce Shipping & Tax."],"Note: Jetpack is connected, but development mode is also enabled on this site. Please disable development mode.":[null,"Nota: Jetpack está conectado, pero también está activo el modo de desarrollo en este sitio. Por favor, desactiva el modo de desarrollo."],"Shipping Label":[null,"Etiqueta de envío"],"yd":[null,"yd"],"in":[null,"en"],"mm":[null,"mm"],"cm":[null,"cm"],"m":[null,"m"],"oz":[null,"oz"],"lbs":[null,"lbs"],"g":[null,"g"],"kg":[null,"kg"],"An invalid service ID was received.":[null,"Se ha recibido un ID de servicio no válido."],"An invalid service instance was received.":[null,"Se ha recibido una instancia de servicio no válida."],"Rest of the World":[null,"Resto del mundo"],"Support":[null,"Soporte"],"Debug":[null,"Depuración"],"Services":[null,"Servicios"],"Need help?":[null,"¿Necesitas ayuda?"],"Log is empty":[null,"El registro está vacío"],"Disabled":[null,"Desactivado"],"Enabled":[null,"Activado"],"%s Shipping Zone":[null,"%s zona de envío"],"The most recent rate request failed":[null,"La reciente petición de tarifas más reciente falló"],"The most recent rate request was successful":[null,"La petición de tarifas más reciente tuvo éxito"],"No rate requests have yet been made for this service":[null,"Aún no han habido peticiones de tarifas para este servicio"],"Setup for this service has not yet been completed":[null,"La configuración de este servició aún no se ha completado"],"Service data is up-to-date":[null,"Los datos del servicio están al día"],"Service data was found, but is more than one day old":[null,"Se encontaron datos del servicio, pero son de hace más de un día"],"Service data was found, but is more than three days old":[null,"Se encontraron datos del servicio, pero son de hace más de tres días"],"Service data found, but may be out of date":[null,"Se han encontrado datos del servicio, pero podrían ser obsoletos"],"No service data available":[null,"No hay disponibles datos del servicio"],"Jetpack":[null,"Jetpack"],"Jetpack %s is connected and working correctly":[null,"Jetpack %s está conectado y funcionando correctamente"],"This is a Jetpack staging site":[null,"Este es un sitio en pruebas de Jetpack"],"Jetpack is not connected to WordPress.com. Make sure the Jetpack plugin is installed, activated, and connected.":[null,"Jetpack no está conectado a WordPress.com. Asegúrate de que el plugin Jetpack está instalado, activo y conectado."],"Jetpack %1$s or higher is required (You are running %2$s)":[null,"Se necesita Jetpack %1$s o superior (estás ejecutando la versión %2$s)"],"Please install and activate the Jetpack plugin, version %s or higher":[null,"Por favor, instala y activa el plugin Jetpack, en su versión %s o superior"],"WooCommerce":[null,"WooCommerce"],"WooCommerce %s is configured correctly":[null,"WooCommerce %s está configurado correctamente"],"Please set Base Location in WooCommerce Settings > General":[null,"Por favor, establece la ubicación base en Ajustes de WooCommerce > General"],"WooCommerce %1$s or higher is required (You are running %2$s)":[null,"Se necesita WooCommerce %1$s o superior (estás ejecutando la versión %2$s)"],"Dismiss this notice":[null,"Descartar este aviso"],"ERROR: Your site has a problem connecting to the WooCommerce Shipping & Tax API. Please make sure your Jetpack connection is working.":[null,"ERROR: Tu sitio tiene un problema al conectar con la API de WooCommerce Shipping & Tax. Por favor, aségurate de que está funcionando tu conexión de Jetpack."],"Your site is succesfully communicating to the WooCommerce Shipping & Tax API.":[null,"Tu sitio se está comunicando correctamente con la API de WooCommerce Shipping & Tax."],"This will test your WooCommerce Shipping & Tax connection to ensure everything is working correctly":[null,"Esto probará tu conexión de WooCommerce Shipping & Tax para asegurar que todo funciona correctamente"],"Test Connection":[null,"Probar conexión"],"The WooCommerce Shipping & Tax brandname\u0004WooCommerce Shipping & Tax":[null,"WooCommerce Shipping & Tax"],"The WooCommerce Shipping & Tax brandname\u0004WooCommerce Shipping":[null,"WooCommerce Shipping"],"%s - ZIP/Postal code checkout field label\u0004Invalid %s entered.":[null,"%s introducido no válido."],"%s - ZIP/Postal code checkout field label\u0004%s does not match the selected state.":[null,"%s no coincide con la provincia seleccionada."],"date is of the form MM/YY\u0004Expires %(date)s":[null,"Caduca %(date)s"],"A service with an unknown title and unknown method_title\u0004Unknown":[null,"Desconocido"],"This section displays the overall health of WooCommerce Shipping & Tax and the things it depends on\u0004Health":[null,"Salud"]}
i18n/languages/woocommerce-services-es_VE.mo CHANGED
Binary file
i18n/languages/woocommerce-services-es_VE.po CHANGED
@@ -51,7 +51,7 @@ msgstr "Muestra las tarifas en vivo directamente en tu tienda - nunca vuelvas a
51
  msgid "Live rates at checkout"
52
  msgstr "Tarifas en vivo al finalizar la compra"
53
 
54
- #: i18n/strings.php:354
55
  msgid "Last updated %s."
56
  msgstr "Última actualización %s."
57
 
@@ -206,7 +206,7 @@ msgstr "Funciona con WooCommerce Tax. Si están activados los impuestos automát
206
  msgid "WooCommerce Helper auth is missing"
207
  msgstr "Falta la identificación de WooCommerce Helper"
208
 
209
- #: i18n/strings.php:364 i18n/strings.php:428
210
  msgid "USPS labels without tracking are not eligible for refund."
211
  msgstr "Las etiquetas de USPS sin seguimiento no son elegibles para reembolso."
212
 
@@ -226,11 +226,11 @@ msgstr "%(carrierName)s no es compatible."
226
  msgid "Loading"
227
  msgstr "Cargando"
228
 
229
- #: i18n/strings.php:353
230
  msgid "WooCommerce Shipping & Tax Data"
231
  msgstr "Datos de WooCommerce Shipping & Tax"
232
 
233
- #: i18n/strings.php:372 i18n/strings.php:436
234
  msgid "Print customs form"
235
  msgstr "Imprimir el formulario de aduana"
236
 
@@ -277,8 +277,8 @@ msgid "Invalid WooCommerce Shipping & Tax service slug provided"
277
  msgstr "Proporcionado un slug no válido de servicio de WooCommerce Shipping & Tax"
278
 
279
  #. Plugin Name of the plugin
280
- #: classes/class-wc-connect-privacy.php:36
281
  #: classes/class-wc-connect-settings-pages.php:123
 
282
  msgid "WooCommerce Shipping & Tax"
283
  msgstr "WooCommerce Shipping & Tax"
284
 
@@ -411,7 +411,7 @@ msgstr "Seleccionar uno..."
411
  msgid "Validating address\\u2026"
412
  msgstr "Validando la dirección..."
413
 
414
- #: i18n/strings.php:326 i18n/strings.php:405 i18n/strings.php:469
415
  msgid "Purchasing\\u2026"
416
  msgstr "Comprando..."
417
 
@@ -423,7 +423,7 @@ msgstr "Se cargará en tu cuenta de UPS"
423
  msgid "Package %(index)s \\u2013 %(title)s"
424
  msgstr "Paquete %(index)s – %(title)s"
425
 
426
- #: i18n/strings.php:6 i18n/strings.php:170 i18n/strings.php:482
427
  msgid "Saving\\u2026"
428
  msgstr "Guardando..."
429
 
@@ -437,27 +437,27 @@ msgstr "Tus tarifas de impuestos y ajustes se configurarán automáticamente par
437
  msgid "Your tax rates and settings will be automatically configured for %1$s, %2$s. <a href=\"https://docs.woocommerce.com/document/setting-up-taxes-in-woocommerce/#section-12\">Learn more about setting up tax rates for additional nexuses</a>"
438
  msgstr "Tus tarifas de impuestos y ajustes se configurarán automáticamente para %1$s, %2$s. <a href=\"https://docs.woocommerce.com/document/setting-up-taxes-in-woocommerce/#section-12\">Aprende más sobre cómo configurar tarifas de impuestos para nexos adicionales</a>"
439
 
440
- #: i18n/strings.php:480
441
  msgid "%(itemCount)d item is ready to be fulfilled"
442
  msgid_plural "%(itemCount)d items are ready to be fulfilled"
443
  msgstr[0] "%(itemCount)d artículo está listo para ser completado"
444
  msgstr[1] "%(itemCount)d artículos están listos para ser completados"
445
 
446
- #: i18n/strings.php:479
447
  msgid "%(itemCount)d item was fulfilled on {{span}}%(createdDate)s{{/span}}"
448
  msgid_plural "%(itemCount)d items were fulfilled on {{span}}%(createdDate)s{{/span}}"
449
  msgstr[0] "%(itemCount)d artículo ha sido completado el {{span}}%(createdDate)s{{/span}}"
450
  msgstr[1] "%(itemCount)d artículos han sido completados el {{span}}%(createdDate)s{{/span}}"
451
 
452
- #: i18n/strings.php:371 i18n/strings.php:435
453
  msgid "Schedule a pickup"
454
  msgstr "Programa una recogida"
455
 
456
- #: i18n/strings.php:367 i18n/strings.php:431
457
  msgid "Label images older than 180 days are deleted by our technology partners for general security and data privacy concerns."
458
  msgstr "Las imágenes de las etiquetas de más de 180 días aon borradas por nuestros socios tecnológicos por cuestiones generales de seguridad y privacidad de datos."
459
 
460
- #: i18n/strings.php:363 i18n/strings.php:427
461
  msgid "Labels older than 30 days cannot be refunded."
462
  msgstr "Las etiquetas de más de 30 días no se pueden reembolsar."
463
 
@@ -478,26 +478,26 @@ msgstr "Ahorras %s con WooCommerce Shipping"
478
  msgid "WooCommerce Shipping & Tax requires the WooCommerce plugin to be installed and active. You can download %s here."
479
  msgstr "WooCommerce Shipping & Tax necesita que esté instalado y activado el plugin WooCommerce. Puedes descargarlo aquí: %s."
480
 
481
- #: i18n/strings.php:408
482
  msgid "No tracking information available at this time"
483
  msgstr "En este momento no hay disponible información de seguimiento"
484
 
485
- #: i18n/strings.php:478
486
  msgid "Connection error: unable to create label at this time"
487
  msgstr "Error de conexión: en este momento no se puede crear la etiqueta"
488
 
489
- #: i18n/strings.php:474 i18n/strings.php:476
490
  msgid "Track Package"
491
  msgid_plural "Track Packages"
492
  msgstr[0] "Seguimiento del paquete"
493
  msgstr[1] "Seguimiento de los paquetes"
494
 
495
- #: i18n/strings.php:426
496
  msgid "Which package would you like to track?"
497
  msgstr "¿Qué paquete te gustaría seguir?"
498
 
499
- #: i18n/strings.php:373 i18n/strings.php:404 i18n/strings.php:437
500
- #: i18n/strings.php:468
501
  msgid "%(service)s label (#%(labelIndex)d)"
502
  msgstr "%(service)s etiqueta (#%(labelIndex)d)"
503
 
@@ -585,7 +585,7 @@ msgstr "Han sido guardados tus paquetes de envío."
585
  msgid "0.0"
586
  msgstr "0.0"
587
 
588
- #: woocommerce-services.php:1449
589
  msgid "Shipment Tracking"
590
  msgstr "Seguimiento de envíos"
591
 
@@ -597,23 +597,23 @@ msgstr "Información de aduanas válida"
597
  msgid "Customs information incomplete"
598
  msgstr "Información de aduanas incompleta"
599
 
600
- #: woocommerce-services.php:1492
601
  msgid "Packing Log:"
602
  msgstr "Registro de paquetería:"
603
 
604
- #: woocommerce-services.php:1479
605
  msgid "Chosen Rate:"
606
  msgstr "Tarifa elegida:"
607
 
608
- #: woocommerce-services.php:1475
609
  msgid "Shipping Method ID:"
610
  msgstr "ID del método de envío:"
611
 
612
- #: woocommerce-services.php:1471
613
  msgid "Shipping Method Name:"
614
  msgstr "Nombre del método de envío:"
615
 
616
- #: woocommerce-services.php:1455
617
  msgid "Shipping Debug"
618
  msgstr "Depuración de envíos"
619
 
@@ -621,15 +621,15 @@ msgstr "Depuración de envíos"
621
  msgid "<strong>\"%2$s\" is missing weight, length, width, or height.</strong><br />Shipping rates cannot be calculated. <a href=\"%1$s\">Enter dimensions and weight for %2$s</a> so your customers can purchase this item."
622
  msgstr "<strong>A \"%2$s\" le falta el peso, largo, ancho o la altura.</strong><br />No se pueden calcular las tarifas de envío. <a href=\"%1$s\">Introduce las dimensiones y el peso de %2$s</a> para que tus clientes puedan comprar este artículo."
623
 
624
- #: classes/class-wc-connect-api-client.php:595
625
  msgid "Unable to send request to WooCommerce Shipping & Tax server. The timestamp generated for the signature is too old."
626
  msgstr "No ha sido posible enviar la solicitud al servidor de WooCommerce Shipping & Tax. La marca temporal generada para la firma es demasiado antigua."
627
 
628
- #: classes/class-wc-connect-api-client.php:534
629
  msgid "Unable to send request to WooCommerce Shipping & Tax server. Jetpack Token is malformed."
630
  msgstr "No ha sido posible enviar la solicitud al servidor de WooCommerce Shipping & Tax. El token de JetPack está mal formado."
631
 
632
- #: classes/class-wc-connect-api-client.php:527
633
  msgid "Unable to send request to WooCommerce Shipping & Tax server. Jetpack Token is missing"
634
  msgstr "No ha sido posible enviar la solicitud al servidor de WooCommerce Shipping & Tax. Falta el token de JetPack."
635
 
@@ -663,7 +663,6 @@ msgid "Unable to send request to WooCommerce Shipping & Tax server. Jetpack_Data
663
  msgstr "No ha sido posible enviar la solicitud al servidor de WooCommerce Shipping & Tax. No se ha encontrado Jetpack_Data."
664
 
665
  #: classes/class-wc-connect-api-client.php:160
666
- #: classes/class-wc-connect-api-client.php:187
667
  msgid "No shipping rate could be calculated. No items in the package are shippable."
668
  msgstr "No se ha podido calcular la tarifa de envío. Ningún artículo del paquete se puede enviar."
669
 
@@ -812,23 +811,23 @@ msgstr "Verificar dirección"
812
  msgid "%(message)s. Please modify the address and try again."
813
  msgstr "%(message)s. Modifica la dirección y vuelve a intentarlo."
814
 
815
- #: i18n/strings.php:370 i18n/strings.php:434
816
  msgid "View details"
817
  msgstr "Ver detalles"
818
 
819
- #: i18n/strings.php:402 i18n/strings.php:466
820
  msgid "Items"
821
  msgstr "Artículos"
822
 
823
- #: i18n/strings.php:401 i18n/strings.php:465
824
  msgid "Package"
825
  msgstr "Paquete"
826
 
827
- #: i18n/strings.php:399 i18n/strings.php:463
828
  msgid "Receipt"
829
  msgstr "Recibo"
830
 
831
- #: i18n/strings.php:398 i18n/strings.php:462
832
  msgid "Label #%(labelIndex)s details"
833
  msgstr "Detalles de la etiqueta #%(labelIndex)s"
834
 
@@ -943,43 +942,43 @@ msgstr "Desconectar"
943
  msgid "Activate"
944
  msgstr "Activar"
945
 
946
- #: i18n/strings.php:375 i18n/strings.php:439
947
  msgid "No activity yet"
948
  msgstr "Todavía no hay actividad"
949
 
950
- #: i18n/strings.php:383 i18n/strings.php:447
951
  msgid "Note"
952
  msgstr "Nota"
953
 
954
- #: i18n/strings.php:382 i18n/strings.php:446
955
  msgid "Refunded %(amount)s"
956
  msgstr "Reembolsado %(amount)s"
957
 
958
- #: i18n/strings.php:380 i18n/strings.php:444
959
  msgid "%(service)s label (#%(labelNum)d) refund rejected"
960
  msgstr "reembolso de etiqueta de %(service)s (#%(labelNum)d) rechazado"
961
 
962
- #: i18n/strings.php:379 i18n/strings.php:443
963
  msgid "%(service)s label (#%(labelNum)d) refunded (%(amount)s)"
964
  msgstr "reembolsado (%(amount)s) de etiqueta de %(service)s (#%(labelNum)d) rechazado"
965
 
966
- #: i18n/strings.php:378 i18n/strings.php:442
967
  msgid "%(service)s label (#%(labelNum)d) refund requested (%(amount)s)"
968
  msgstr "%(service)s etiqueta (#%(labelNum)d) solicitud de reembolso (%(amount)s)"
969
 
970
- #: i18n/strings.php:377 i18n/strings.php:441
971
  msgid "Note sent to customer"
972
  msgstr "Nota enviada al cliente"
973
 
974
- #: i18n/strings.php:376 i18n/strings.php:440
975
  msgid "Internal note"
976
  msgstr "Nota interna"
977
 
978
- #: i18n/strings.php:407 i18n/strings.php:471
979
  msgid "Show notes from %(date)s"
980
  msgstr "Mostrar notas desde %(date)s"
981
 
982
- #: i18n/strings.php:406 i18n/strings.php:470
983
  msgid "%(count)s event"
984
  msgid_plural "%(count)s events"
985
  msgstr[0] "%(count)s evento"
@@ -990,7 +989,7 @@ msgstr[1] "%(count)s eventos"
990
  msgid "WeChat Pay"
991
  msgstr "WeChat Pay"
992
 
993
- #: i18n/strings.php:384 i18n/strings.php:448
994
  msgid "Toggle menu"
995
  msgstr "Alternar menú"
996
 
@@ -998,41 +997,41 @@ msgstr "Alternar menú"
998
  msgid "Return to Order #%(orderId)s"
999
  msgstr "Volver al pedido #%(orderId)s"
1000
 
1001
- #: i18n/strings.php:344
1002
  msgid "Our team is here for you. View our {{docsA}}support docs{{/docsA}} or {{ticketA}}open a support ticket{{/ticketA}}."
1003
  msgstr "Nuestro equipo está aquí para ti. Ve nuestros {{docsA}}documentos de soporte{{/docsA}} o {{ticketA}}abre un ticket de soporte{{/ticketA}}."
1004
 
1005
- #: i18n/strings.php:335
1006
  msgid "Logging"
1007
  msgstr "Registro"
1008
 
1009
- #: i18n/strings.php:362
1010
  msgid "No services configured. {{a}}Add a shipping service{{/a}}"
1011
  msgstr "No hay configurado ningún servicio. {{a}}Añade un servicio de envío{{/a}}"
1012
 
1013
- #: i18n/strings.php:360
1014
  msgid "Edit service settings"
1015
  msgstr "Editar ajustes del servicio"
1016
 
1017
- #: i18n/strings.php:359
1018
  msgid "Request was made %s - check logs below or {{a}}edit service settings{{/a}}"
1019
  msgstr "La solicitud la hizo %s - revisa los registros abajo o {{a}}edita los ajustes del servicio{{/a}}"
1020
 
1021
- #: i18n/strings.php:358
1022
  msgid "Copy for support"
1023
  msgstr "Copiar para soporte"
1024
 
1025
- #: i18n/strings.php:357
1026
  msgid "Last %s entry. {{a}}Show full log{{/a}}"
1027
  msgid_plural "Last %s entries. {{a}}Show full log{{/a}}"
1028
  msgstr[0] "Última %s entrada. {{a}}Mostrar registro completo{{/a}}"
1029
  msgstr[1] "Últimas %s entradas. {{a}}Mostrar registro completo{{/a}}"
1030
 
1031
- #: i18n/strings.php:356
1032
  msgid "Log tail copied to clipboard"
1033
  msgstr "Cola del registro copiada al portapapeles"
1034
 
1035
- #: i18n/strings.php:11 i18n/strings.php:414
1036
  msgid "You have unsaved changes. Are you sure you want to leave this page?"
1037
  msgstr "Tienes cambios sin guardar. ¿Seguro que quieres abandonar esta página?"
1038
 
@@ -1061,7 +1060,7 @@ msgid "USPS"
1061
  msgstr "USPS"
1062
 
1063
  #: i18n/strings.php:5 i18n/strings.php:169 i18n/strings.php:295
1064
- #: i18n/strings.php:329 i18n/strings.php:410
1065
  msgid "Optional"
1066
  msgstr "Opcional"
1067
 
@@ -1216,8 +1215,8 @@ msgstr "No se han encontrado etiquetas en este periodo"
1216
  msgid "Total"
1217
  msgstr "Total"
1218
 
1219
- #: classes/class-wc-connect-label-reports.php:170 i18n/strings.php:381
1220
- #: i18n/strings.php:445
1221
  msgid "Refund"
1222
  msgstr "Reembolso"
1223
 
@@ -1257,23 +1256,23 @@ msgstr "Año"
1257
  msgid "Export CSV"
1258
  msgstr "Exportar CSV"
1259
 
1260
- #: i18n/strings.php:341
1261
  msgid "Other Log"
1262
  msgstr "Otros registros"
1263
 
1264
- #: i18n/strings.php:340
1265
  msgid "Taxes Log"
1266
  msgstr "Registro de impuestos"
1267
 
1268
- #: i18n/strings.php:339
1269
  msgid "Shipping Log"
1270
  msgstr "Registro de envíos"
1271
 
1272
- #: i18n/strings.php:332
1273
  msgid "Display troubleshooting information on the Cart and Checkout pages."
1274
  msgstr "Muestra información para resolución de problemas en las páginas de carrito y finalizar compra."
1275
 
1276
- #: i18n/strings.php:336
1277
  msgid "Write diagnostic messages to log files. Helpful when contacting support."
1278
  msgstr "Escribe mensajes de diagnóstico en los archivos de registro. Útil al contactar con soporte."
1279
 
@@ -1317,15 +1316,15 @@ msgstr "Para enviar reembolsos a través de PayPal Exprés tendrás que <a href=
1317
  msgid "Link a PayPal account"
1318
  msgstr "Enlaza a una cuenta PayPal"
1319
 
1320
- #: i18n/strings.php:355
1321
  msgid "Refresh"
1322
  msgstr "Recargar"
1323
 
1324
- #: woocommerce-services.php:1230
1325
  msgid "Tracking number"
1326
  msgstr "Número de seguimiento"
1327
 
1328
- #: woocommerce-services.php:1229
1329
  msgid "Provider"
1330
  msgstr "Proveedor"
1331
 
@@ -1417,7 +1416,7 @@ msgid "automated tax calculation and smoother payment setup"
1417
  msgstr "cálculo automático de impuestos y configuración de pago más sencilla"
1418
 
1419
  #: classes/class-wc-connect-paypal-ec.php:323 i18n/strings.php:4
1420
- #: i18n/strings.php:168 i18n/strings.php:328 i18n/strings.php:409
1421
  msgid "Required"
1422
  msgstr "Requerido"
1423
 
@@ -1433,7 +1432,7 @@ msgstr "No ha sido posible guardar tus ajustes de envío. Por favor, inténtalo
1433
  msgid "Dimensions"
1434
  msgstr "Dimensiones"
1435
 
1436
- #: i18n/strings.php:270 i18n/strings.php:397 i18n/strings.php:461
1437
  msgid "Close"
1438
  msgstr "Cerrar"
1439
 
@@ -1544,17 +1543,17 @@ msgstr[1] "%(selectedCount)d paquetes seleccionados"
1544
  msgid "Unable to get your settings. Please refresh the page to try again."
1545
  msgstr "No ha sido posible recuperar tus ajustes. Por favor, recarga la página para intentarlo de nuevo."
1546
 
1547
- #: i18n/strings.php:421
1548
  msgid "%(numSelected)d service selected"
1549
  msgid_plural "%(numSelected)d services selected"
1550
  msgstr[0] "%(numSelected)d servicio seleccionado"
1551
  msgstr[1] "%(numSelected)d servicios seleccionados"
1552
 
1553
- #: i18n/strings.php:419
1554
  msgid "Add and edit saved packages using the {{a}}Packaging Manager{{/a}}."
1555
  msgstr "Añade y edita los paquetes guardados usando el {{a}}Gestor de paquetería{{/a}}."
1556
 
1557
- #: i18n/strings.php:374 i18n/strings.php:438
1558
  msgid "Tracking #: {{trackingLink/}}"
1559
  msgstr "Seguimiento #: {{trackingLink/}}"
1560
 
@@ -1594,7 +1593,7 @@ msgstr "{{itemLink/}} está en actualmente en {{pckg/}}."
1594
  msgid "Choose rate: %(pckg)s"
1595
  msgstr "Elegir tarifa: %(pckg)s"
1596
 
1597
- #: i18n/strings.php:386 i18n/strings.php:450
1598
  msgid "Refund label (-%(amount)s)"
1599
  msgstr "Etiqueta de reembolso (-%(amount)s)"
1600
 
@@ -1614,17 +1613,17 @@ msgstr "No existen artículos en este paquete."
1614
  msgid "Ship in original packaging"
1615
  msgstr "Enviar en su paquete original"
1616
 
1617
- #: i18n/strings.php:365 i18n/strings.php:366 i18n/strings.php:429
1618
- #: i18n/strings.php:430
1619
  msgid "Request refund"
1620
  msgstr "Solicitar reembolso"
1621
 
1622
- #: i18n/strings.php:368 i18n/strings.php:432
1623
  msgid "Reprint"
1624
  msgstr "Volver a imprimir"
1625
 
1626
- #: i18n/strings.php:58 i18n/strings.php:309 i18n/strings.php:396
1627
- #: i18n/strings.php:460
1628
  msgid "Paper size"
1629
  msgstr "Tamaño del papel"
1630
 
@@ -1640,11 +1639,11 @@ msgstr "Mover"
1640
  msgid "Move item"
1641
  msgstr "Mover artículo"
1642
 
1643
- #: i18n/strings.php:425
1644
  msgid "Increase the rates calculated by the carrier to account for packaging and handling costs. You can also add a negative amount to save your customers money."
1645
  msgstr "Incrementa las tarifas calculadas por el transportista a la cantidad de los costes de empaquetado y manipulado. También puedes añadir una cantidad negativa para ahorrar dinero a tus clientes."
1646
 
1647
- #: i18n/strings.php:475
1648
  msgid "Create new label"
1649
  msgstr "Crear nueva etiqueta"
1650
 
@@ -1665,19 +1664,19 @@ msgid "Add a credit card"
1665
  msgstr "Añadir una tarjeta de crédito"
1666
 
1667
  #. translators: %d: Deleted Product ID
1668
- #: classes/class-wc-connect-compatibility-wc30.php:130
1669
  #: classes/class-wc-connect-compatibility-wc26.php:116
 
1670
  msgid "#%d - [Deleted product]"
1671
  msgstr "#%d - [producto borrado]"
1672
 
1673
  #. translators: %1$d: Product ID, %2$s: Product Name
1674
- #: classes/class-wc-connect-compatibility-wc30.php:125
1675
  #: classes/class-wc-connect-compatibility-wc26.php:111
 
1676
  msgid "#%1$d - %2$s"
1677
  msgstr "#%1$d - %2$s"
1678
 
1679
  #. translators: %s Support url
1680
- #: woocommerce-services.php:1565
1681
  msgid "<a href=\"%s\">Support</a>"
1682
  msgstr "<a href=\"%s\">Soporte</a>"
1683
 
@@ -1685,22 +1684,18 @@ msgstr "<a href=\"%s\">Soporte</a>"
1685
  msgid "There was an error installing Jetpack. Please try installing it manually."
1686
  msgstr "Hubo un error al instalar Jetpack. Por favor, trata de instalarlo manualmente."
1687
 
1688
- #: woocommerce-services.php:1066 woocommerce-services.php:1069
1689
- #: i18n/strings.php:43
1690
  msgid "Shipping Labels"
1691
  msgstr "Etiquetas de envío"
1692
 
1693
- #. Author of the plugin
1694
- msgid "Automattic"
1695
- msgstr "Automattic"
1696
-
1697
  #. Plugin URI of the plugin
1698
  #. Author URI of the plugin
1699
  msgid "https://woocommerce.com/"
1700
  msgstr "https://woocommerce.com/"
1701
 
1702
- #: woocommerce-services.php:1515 woocommerce-services.php:1543
1703
- #: i18n/strings.php:143 i18n/strings.php:215
1704
  msgid "Phone"
1705
  msgstr "Teléfono"
1706
 
@@ -1709,15 +1704,15 @@ msgstr "Teléfono"
1709
  msgid "Connect"
1710
  msgstr "Conectar"
1711
 
1712
- #: i18n/strings.php:7 i18n/strings.php:171 i18n/strings.php:483
1713
  msgid "Save Settings"
1714
  msgstr "Guardar ajustes"
1715
 
1716
- #: i18n/strings.php:415
1717
  msgid "Your changes have been saved."
1718
  msgstr "Tus cambios se han guardado."
1719
 
1720
- #: i18n/strings.php:416
1721
  msgid "There was a problem with one or more entries. Please fix the errors below and try saving again."
1722
  msgstr "Hubo un problema con una o más entradas. Por favor, soluciona los errores de abajo y trata de guardar de nuevo."
1723
 
@@ -1725,11 +1720,11 @@ msgstr "Hubo un problema con una o más entradas. Por favor, soluciona los error
1725
  msgid "Expand"
1726
  msgstr "Expandir"
1727
 
1728
- #: i18n/strings.php:411 i18n/strings.php:481
1729
  msgid "Dismiss"
1730
  msgstr "Descartar"
1731
 
1732
- #: i18n/strings.php:10 i18n/strings.php:413
1733
  msgid "You have unsaved changes."
1734
  msgstr "Tienes cambios sin guardar."
1735
 
@@ -1764,7 +1759,7 @@ msgstr "Este campo debe ser único"
1764
  msgid "Unable to save your shipping packages. Please try again."
1765
  msgstr "No se han podido guardar tus paquetes de envío. Por favor, inténtalo de nuevo."
1766
 
1767
- #: i18n/strings.php:41 i18n/strings.php:417
1768
  msgid "Save changes"
1769
  msgstr "Guardar cambios"
1770
 
@@ -1776,32 +1771,32 @@ msgstr "Sin título"
1776
  msgid "Dimensions (L x W x H)"
1777
  msgstr "Dimensiones (L x An x Al)"
1778
 
1779
- #: i18n/strings.php:420
1780
  msgid "All services selected"
1781
  msgstr "Seleccionados todos los servicios"
1782
 
1783
- #: i18n/strings.php:37 i18n/strings.php:199 i18n/strings.php:422
1784
  msgid "Expand Services"
1785
  msgstr "Expandir servicios"
1786
 
1787
- #: classes/class-wc-connect-label-reports.php:167 i18n/strings.php:400
1788
- #: i18n/strings.php:423 i18n/strings.php:464
1789
  msgid "Service"
1790
  msgstr "Servicio"
1791
 
1792
- #: i18n/strings.php:424
1793
  msgid "Price adjustment"
1794
  msgstr "Ajuste de precio"
1795
 
1796
- #: i18n/strings.php:418
1797
  msgid "Saved Packages"
1798
  msgstr "Paquetes guardados"
1799
 
1800
- #: woocommerce-services.php:1218 woocommerce-services.php:1225
1801
  msgid "Tracking"
1802
  msgstr "Seguimiento"
1803
 
1804
- #: i18n/strings.php:207 i18n/strings.php:473 i18n/strings.php:477
1805
  msgid "Create shipping label"
1806
  msgid_plural "Create shipping labels"
1807
  msgstr[0] "Crear etiqueta de envío"
@@ -1874,51 +1869,51 @@ msgstr "Utilizar estos paquetes"
1874
  msgid "The service and rate chosen by the customer at checkout is not available. Please choose another."
1875
  msgstr "El servicio y la tarifa elegidos por el cliente en el pago no están disponibles. Por favor, elige otro."
1876
 
1877
- #: i18n/strings.php:387 i18n/strings.php:451
1878
  msgid "Request a refund"
1879
  msgstr "Solicitar un reembolso"
1880
 
1881
- #: i18n/strings.php:388 i18n/strings.php:452
1882
  msgid "You can request a refund for a shipping label that has not been used to ship a package. It will take at least %(days)s days to process."
1883
  msgstr "Puedes solicitar un reembolso de una etiqueta de envío que no se haya utilizado para enviar un paquete. Tardará al menos %(days)s días en procesarse."
1884
 
1885
- #: i18n/strings.php:389 i18n/strings.php:453
1886
  msgid "Purchase date"
1887
  msgstr "Fecha de compra"
1888
 
1889
- #: i18n/strings.php:390 i18n/strings.php:454
1890
  msgid "Amount eligible for refund"
1891
  msgstr "Cantidad elegible para el reembolso"
1892
 
1893
- #: i18n/strings.php:369 i18n/strings.php:393 i18n/strings.php:433
1894
- #: i18n/strings.php:457
1895
  msgid "Reprint shipping label"
1896
  msgstr "Volver a imprimir la etiqueta de envío"
1897
 
1898
- #: i18n/strings.php:394 i18n/strings.php:458
1899
  msgid "If there was a printing error when you purchased the label, you can print it again."
1900
  msgstr "Si hay un problema de impresión cuando compres la etiqueta puedes imprimirla de nuevo."
1901
 
1902
- #: i18n/strings.php:395 i18n/strings.php:459
1903
  msgid "NOTE: If you already used the label in a package, printing and using it again is a violation of our terms of service and may result in criminal charges."
1904
  msgstr "NOTA: Si ya has usado la etiqueta en un paquete, imprimirla y usarla de nuevo es una violación de nuestros términos del servicio y podría resultar en cargos criminales."
1905
 
1906
- #: i18n/strings.php:325 i18n/strings.php:392 i18n/strings.php:456
1907
  msgid "Print"
1908
  msgstr "Imprimir"
1909
 
1910
  #: i18n/strings.php:16 i18n/strings.php:82 i18n/strings.php:122
1911
  #: i18n/strings.php:158 i18n/strings.php:167 i18n/strings.php:178
1912
- #: i18n/strings.php:263 i18n/strings.php:385 i18n/strings.php:391
1913
- #: i18n/strings.php:449 i18n/strings.php:455
1914
  msgid "Cancel"
1915
  msgstr "Cancelar"
1916
 
1917
- #: i18n/strings.php:403 i18n/strings.php:467
1918
  msgid "N/A"
1919
  msgstr "N/D"
1920
 
1921
- #: i18n/strings.php:8 i18n/strings.php:412 i18n/strings.php:472
1922
  msgid "More"
1923
  msgstr "Más"
1924
 
@@ -1961,7 +1956,7 @@ msgstr "No ha sido posible actualizar los ajustes. %s"
1961
  msgid "Packaging"
1962
  msgstr "Paquetería"
1963
 
1964
- #: woocommerce-services.php:1598
1965
  msgid "Section not loading? Visit the <a href=\"%s\">status page</a> for troubleshooting steps."
1966
  msgstr "¿No carga la sección? Visita la <a href=\"%s\">página de estado</a> para ver los pasos de solución de problemas."
1967
 
@@ -1973,7 +1968,7 @@ msgstr "Nota: El modo de desarrollo de Jetpack está activo en este sitio. Este
1973
  msgid "Note: Jetpack is connected, but development mode is also enabled on this site. Please disable development mode."
1974
  msgstr "Nota: Jetpack está conectado, pero también está activo el modo de desarrollo en este sitio. Por favor, desactiva el modo de desarrollo."
1975
 
1976
- #: woocommerce-services.php:1451
1977
  msgid "Shipping Label"
1978
  msgstr "Etiqueta de envío"
1979
 
@@ -2030,24 +2025,24 @@ msgctxt "A service with an unknown title and unknown method_title"
2030
  msgid "Unknown"
2031
  msgstr "Desconocido"
2032
 
2033
- #: i18n/strings.php:342
2034
  msgid "Support"
2035
  msgstr "Soporte"
2036
 
2037
- #: i18n/strings.php:330 i18n/strings.php:331
2038
  msgid "Debug"
2039
  msgstr "Depuración"
2040
 
2041
- #: i18n/strings.php:361
2042
  msgid "Services"
2043
  msgstr "Servicios"
2044
 
2045
- #: i18n/strings.php:345
2046
  msgctxt "This section displays the overall health of WooCommerce Shipping & Tax and the things it depends on"
2047
  msgid "Health"
2048
  msgstr "Salud"
2049
 
2050
- #: i18n/strings.php:343
2051
  msgid "Need help?"
2052
  msgstr "¿Necesitas ayuda?"
2053
 
@@ -2055,11 +2050,11 @@ msgstr "¿Necesitas ayuda?"
2055
  msgid "Log is empty"
2056
  msgstr "El registro está vacío"
2057
 
2058
- #: i18n/strings.php:334 i18n/strings.php:338
2059
  msgid "Disabled"
2060
  msgstr "Desactivado"
2061
 
2062
- #: i18n/strings.php:333 i18n/strings.php:337
2063
  msgid "Enabled"
2064
  msgstr "Activado"
2065
 
@@ -2083,27 +2078,27 @@ msgstr "Aún no han habido peticiones de tarifas para este servicio"
2083
  msgid "Setup for this service has not yet been completed"
2084
  msgstr "La configuración de este servició aún no se ha completado"
2085
 
2086
- #: i18n/strings.php:350
2087
  msgid "Service data is up-to-date"
2088
  msgstr "Los datos del servicio están al día"
2089
 
2090
- #: i18n/strings.php:349
2091
  msgid "Service data was found, but is more than one day old"
2092
  msgstr "Se encontaron datos del servicio, pero son de hace más de un día"
2093
 
2094
- #: i18n/strings.php:348
2095
  msgid "Service data was found, but is more than three days old"
2096
  msgstr "Se encontraron datos del servicio, pero son de hace más de tres días"
2097
 
2098
- #: i18n/strings.php:351
2099
  msgid "Service data found, but may be out of date"
2100
  msgstr "Se han encontrado datos del servicio, pero podrían ser obsoletos"
2101
 
2102
- #: i18n/strings.php:352
2103
  msgid "No service data available"
2104
  msgstr "No hay disponibles datos del servicio"
2105
 
2106
- #: i18n/strings.php:347
2107
  msgid "Jetpack"
2108
  msgstr "Jetpack"
2109
 
@@ -2127,7 +2122,8 @@ msgstr "Se necesita Jetpack %1$s o superior (estás ejecutando la versión %2$s)
2127
  msgid "Please install and activate the Jetpack plugin, version %s or higher"
2128
  msgstr "Por favor, instala y activa el plugin Jetpack, en su versión %s o superior"
2129
 
2130
- #: i18n/strings.php:346
 
2131
  msgid "WooCommerce"
2132
  msgstr "WooCommerce"
2133
 
@@ -2143,7 +2139,7 @@ msgstr "Por favor, establece la ubicación base en Ajustes de WooCommerce > Gene
2143
  msgid "WooCommerce %1$s or higher is required (You are running %2$s)"
2144
  msgstr "Se necesita WooCommerce %1$s o superior (estás ejecutando la versión %2$s)"
2145
 
2146
- #: classes/class-wc-connect-error-notice.php:104 woocommerce-services.php:1634
2147
  msgid "Dismiss this notice"
2148
  msgstr "Descartar este aviso"
2149
 
51
  msgid "Live rates at checkout"
52
  msgstr "Tarifas en vivo al finalizar la compra"
53
 
54
+ #: i18n/strings.php:403
55
  msgid "Last updated %s."
56
  msgstr "Última actualización %s."
57
 
206
  msgid "WooCommerce Helper auth is missing"
207
  msgstr "Falta la identificación de WooCommerce Helper"
208
 
209
+ #: i18n/strings.php:331 i18n/strings.php:422
210
  msgid "USPS labels without tracking are not eligible for refund."
211
  msgstr "Las etiquetas de USPS sin seguimiento no son elegibles para reembolso."
212
 
226
  msgid "Loading"
227
  msgstr "Cargando"
228
 
229
+ #: i18n/strings.php:402
230
  msgid "WooCommerce Shipping & Tax Data"
231
  msgstr "Datos de WooCommerce Shipping & Tax"
232
 
233
+ #: i18n/strings.php:339 i18n/strings.php:430
234
  msgid "Print customs form"
235
  msgstr "Imprimir el formulario de aduana"
236
 
277
  msgstr "Proporcionado un slug no válido de servicio de WooCommerce Shipping & Tax"
278
 
279
  #. Plugin Name of the plugin
 
280
  #: classes/class-wc-connect-settings-pages.php:123
281
+ #: classes/class-wc-connect-privacy.php:36
282
  msgid "WooCommerce Shipping & Tax"
283
  msgstr "WooCommerce Shipping & Tax"
284
 
411
  msgid "Validating address\\u2026"
412
  msgstr "Validando la dirección..."
413
 
414
+ #: i18n/strings.php:326 i18n/strings.php:372 i18n/strings.php:463
415
  msgid "Purchasing\\u2026"
416
  msgstr "Comprando..."
417
 
423
  msgid "Package %(index)s \\u2013 %(title)s"
424
  msgstr "Paquete %(index)s – %(title)s"
425
 
426
+ #: i18n/strings.php:6 i18n/strings.php:170 i18n/strings.php:375
427
  msgid "Saving\\u2026"
428
  msgstr "Guardando..."
429
 
437
  msgid "Your tax rates and settings will be automatically configured for %1$s, %2$s. <a href=\"https://docs.woocommerce.com/document/setting-up-taxes-in-woocommerce/#section-12\">Learn more about setting up tax rates for additional nexuses</a>"
438
  msgstr "Tus tarifas de impuestos y ajustes se configurarán automáticamente para %1$s, %2$s. <a href=\"https://docs.woocommerce.com/document/setting-up-taxes-in-woocommerce/#section-12\">Aprende más sobre cómo configurar tarifas de impuestos para nexos adicionales</a>"
439
 
440
+ #: i18n/strings.php:419
441
  msgid "%(itemCount)d item is ready to be fulfilled"
442
  msgid_plural "%(itemCount)d items are ready to be fulfilled"
443
  msgstr[0] "%(itemCount)d artículo está listo para ser completado"
444
  msgstr[1] "%(itemCount)d artículos están listos para ser completados"
445
 
446
+ #: i18n/strings.php:418
447
  msgid "%(itemCount)d item was fulfilled on {{span}}%(createdDate)s{{/span}}"
448
  msgid_plural "%(itemCount)d items were fulfilled on {{span}}%(createdDate)s{{/span}}"
449
  msgstr[0] "%(itemCount)d artículo ha sido completado el {{span}}%(createdDate)s{{/span}}"
450
  msgstr[1] "%(itemCount)d artículos han sido completados el {{span}}%(createdDate)s{{/span}}"
451
 
452
+ #: i18n/strings.php:338 i18n/strings.php:429
453
  msgid "Schedule a pickup"
454
  msgstr "Programa una recogida"
455
 
456
+ #: i18n/strings.php:334 i18n/strings.php:425
457
  msgid "Label images older than 180 days are deleted by our technology partners for general security and data privacy concerns."
458
  msgstr "Las imágenes de las etiquetas de más de 180 días aon borradas por nuestros socios tecnológicos por cuestiones generales de seguridad y privacidad de datos."
459
 
460
+ #: i18n/strings.php:330 i18n/strings.php:421
461
  msgid "Labels older than 30 days cannot be refunded."
462
  msgstr "Las etiquetas de más de 30 días no se pueden reembolsar."
463
 
478
  msgid "WooCommerce Shipping & Tax requires the WooCommerce plugin to be installed and active. You can download %s here."
479
  msgstr "WooCommerce Shipping & Tax necesita que esté instalado y activado el plugin WooCommerce. Puedes descargarlo aquí: %s."
480
 
481
+ #: i18n/strings.php:466
482
  msgid "No tracking information available at this time"
483
  msgstr "En este momento no hay disponible información de seguimiento"
484
 
485
+ #: i18n/strings.php:417
486
  msgid "Connection error: unable to create label at this time"
487
  msgstr "Error de conexión: en este momento no se puede crear la etiqueta"
488
 
489
+ #: i18n/strings.php:413 i18n/strings.php:415
490
  msgid "Track Package"
491
  msgid_plural "Track Packages"
492
  msgstr[0] "Seguimiento del paquete"
493
  msgstr[1] "Seguimiento de los paquetes"
494
 
495
+ #: i18n/strings.php:329
496
  msgid "Which package would you like to track?"
497
  msgstr "¿Qué paquete te gustaría seguir?"
498
 
499
+ #: i18n/strings.php:340 i18n/strings.php:371 i18n/strings.php:431
500
+ #: i18n/strings.php:462
501
  msgid "%(service)s label (#%(labelIndex)d)"
502
  msgstr "%(service)s etiqueta (#%(labelIndex)d)"
503
 
585
  msgid "0.0"
586
  msgstr "0.0"
587
 
588
+ #: woocommerce-services.php:1453
589
  msgid "Shipment Tracking"
590
  msgstr "Seguimiento de envíos"
591
 
597
  msgid "Customs information incomplete"
598
  msgstr "Información de aduanas incompleta"
599
 
600
+ #: woocommerce-services.php:1496
601
  msgid "Packing Log:"
602
  msgstr "Registro de paquetería:"
603
 
604
+ #: woocommerce-services.php:1483
605
  msgid "Chosen Rate:"
606
  msgstr "Tarifa elegida:"
607
 
608
+ #: woocommerce-services.php:1479
609
  msgid "Shipping Method ID:"
610
  msgstr "ID del método de envío:"
611
 
612
+ #: woocommerce-services.php:1475
613
  msgid "Shipping Method Name:"
614
  msgstr "Nombre del método de envío:"
615
 
616
+ #: woocommerce-services.php:1459
617
  msgid "Shipping Debug"
618
  msgstr "Depuración de envíos"
619
 
621
  msgid "<strong>\"%2$s\" is missing weight, length, width, or height.</strong><br />Shipping rates cannot be calculated. <a href=\"%1$s\">Enter dimensions and weight for %2$s</a> so your customers can purchase this item."
622
  msgstr "<strong>A \"%2$s\" le falta el peso, largo, ancho o la altura.</strong><br />No se pueden calcular las tarifas de envío. <a href=\"%1$s\">Introduce las dimensiones y el peso de %2$s</a> para que tus clientes puedan comprar este artículo."
623
 
624
+ #: classes/class-wc-connect-api-client.php:588
625
  msgid "Unable to send request to WooCommerce Shipping & Tax server. The timestamp generated for the signature is too old."
626
  msgstr "No ha sido posible enviar la solicitud al servidor de WooCommerce Shipping & Tax. La marca temporal generada para la firma es demasiado antigua."
627
 
628
+ #: classes/class-wc-connect-api-client.php:527
629
  msgid "Unable to send request to WooCommerce Shipping & Tax server. Jetpack Token is malformed."
630
  msgstr "No ha sido posible enviar la solicitud al servidor de WooCommerce Shipping & Tax. El token de JetPack está mal formado."
631
 
632
+ #: classes/class-wc-connect-api-client.php:520
633
  msgid "Unable to send request to WooCommerce Shipping & Tax server. Jetpack Token is missing"
634
  msgstr "No ha sido posible enviar la solicitud al servidor de WooCommerce Shipping & Tax. Falta el token de JetPack."
635
 
663
  msgstr "No ha sido posible enviar la solicitud al servidor de WooCommerce Shipping & Tax. No se ha encontrado Jetpack_Data."
664
 
665
  #: classes/class-wc-connect-api-client.php:160
 
666
  msgid "No shipping rate could be calculated. No items in the package are shippable."
667
  msgstr "No se ha podido calcular la tarifa de envío. Ningún artículo del paquete se puede enviar."
668
 
811
  msgid "%(message)s. Please modify the address and try again."
812
  msgstr "%(message)s. Modifica la dirección y vuelve a intentarlo."
813
 
814
+ #: i18n/strings.php:337 i18n/strings.php:428
815
  msgid "View details"
816
  msgstr "Ver detalles"
817
 
818
+ #: i18n/strings.php:369 i18n/strings.php:460
819
  msgid "Items"
820
  msgstr "Artículos"
821
 
822
+ #: i18n/strings.php:368 i18n/strings.php:459
823
  msgid "Package"
824
  msgstr "Paquete"
825
 
826
+ #: i18n/strings.php:366 i18n/strings.php:457
827
  msgid "Receipt"
828
  msgstr "Recibo"
829
 
830
+ #: i18n/strings.php:365 i18n/strings.php:456
831
  msgid "Label #%(labelIndex)s details"
832
  msgstr "Detalles de la etiqueta #%(labelIndex)s"
833
 
942
  msgid "Activate"
943
  msgstr "Activar"
944
 
945
+ #: i18n/strings.php:342 i18n/strings.php:433
946
  msgid "No activity yet"
947
  msgstr "Todavía no hay actividad"
948
 
949
+ #: i18n/strings.php:350 i18n/strings.php:441
950
  msgid "Note"
951
  msgstr "Nota"
952
 
953
+ #: i18n/strings.php:349 i18n/strings.php:440
954
  msgid "Refunded %(amount)s"
955
  msgstr "Reembolsado %(amount)s"
956
 
957
+ #: i18n/strings.php:347 i18n/strings.php:438
958
  msgid "%(service)s label (#%(labelNum)d) refund rejected"
959
  msgstr "reembolso de etiqueta de %(service)s (#%(labelNum)d) rechazado"
960
 
961
+ #: i18n/strings.php:346 i18n/strings.php:437
962
  msgid "%(service)s label (#%(labelNum)d) refunded (%(amount)s)"
963
  msgstr "reembolsado (%(amount)s) de etiqueta de %(service)s (#%(labelNum)d) rechazado"
964
 
965
+ #: i18n/strings.php:345 i18n/strings.php:436
966
  msgid "%(service)s label (#%(labelNum)d) refund requested (%(amount)s)"
967
  msgstr "%(service)s etiqueta (#%(labelNum)d) solicitud de reembolso (%(amount)s)"
968
 
969
+ #: i18n/strings.php:344 i18n/strings.php:435
970
  msgid "Note sent to customer"
971
  msgstr "Nota enviada al cliente"
972
 
973
+ #: i18n/strings.php:343 i18n/strings.php:434
974
  msgid "Internal note"
975
  msgstr "Nota interna"
976
 
977
+ #: i18n/strings.php:374 i18n/strings.php:465
978
  msgid "Show notes from %(date)s"
979
  msgstr "Mostrar notas desde %(date)s"
980
 
981
+ #: i18n/strings.php:373 i18n/strings.php:464
982
  msgid "%(count)s event"
983
  msgid_plural "%(count)s events"
984
  msgstr[0] "%(count)s evento"
989
  msgid "WeChat Pay"
990
  msgstr "WeChat Pay"
991
 
992
+ #: i18n/strings.php:351 i18n/strings.php:442
993
  msgid "Toggle menu"
994
  msgstr "Alternar menú"
995
 
997
  msgid "Return to Order #%(orderId)s"
998
  msgstr "Volver al pedido #%(orderId)s"
999
 
1000
+ #: i18n/strings.php:393
1001
  msgid "Our team is here for you. View our {{docsA}}support docs{{/docsA}} or {{ticketA}}open a support ticket{{/ticketA}}."
1002
  msgstr "Nuestro equipo está aquí para ti. Ve nuestros {{docsA}}documentos de soporte{{/docsA}} o {{ticketA}}abre un ticket de soporte{{/ticketA}}."
1003
 
1004
+ #: i18n/strings.php:384
1005
  msgid "Logging"
1006
  msgstr "Registro"
1007
 
1008
+ #: i18n/strings.php:411
1009
  msgid "No services configured. {{a}}Add a shipping service{{/a}}"
1010
  msgstr "No hay configurado ningún servicio. {{a}}Añade un servicio de envío{{/a}}"
1011
 
1012
+ #: i18n/strings.php:409
1013
  msgid "Edit service settings"
1014
  msgstr "Editar ajustes del servicio"
1015
 
1016
+ #: i18n/strings.php:408
1017
  msgid "Request was made %s - check logs below or {{a}}edit service settings{{/a}}"
1018
  msgstr "La solicitud la hizo %s - revisa los registros abajo o {{a}}edita los ajustes del servicio{{/a}}"
1019
 
1020
+ #: i18n/strings.php:407
1021
  msgid "Copy for support"
1022
  msgstr "Copiar para soporte"
1023
 
1024
+ #: i18n/strings.php:406
1025
  msgid "Last %s entry. {{a}}Show full log{{/a}}"
1026
  msgid_plural "Last %s entries. {{a}}Show full log{{/a}}"
1027
  msgstr[0] "Última %s entrada. {{a}}Mostrar registro completo{{/a}}"
1028
  msgstr[1] "Últimas %s entradas. {{a}}Mostrar registro completo{{/a}}"
1029
 
1030
+ #: i18n/strings.php:405
1031
  msgid "Log tail copied to clipboard"
1032
  msgstr "Cola del registro copiada al portapapeles"
1033
 
1034
+ #: i18n/strings.php:11 i18n/strings.php:472
1035
  msgid "You have unsaved changes. Are you sure you want to leave this page?"
1036
  msgstr "Tienes cambios sin guardar. ¿Seguro que quieres abandonar esta página?"
1037
 
1060
  msgstr "USPS"
1061
 
1062
  #: i18n/strings.php:5 i18n/strings.php:169 i18n/strings.php:295
1063
+ #: i18n/strings.php:378 i18n/strings.php:468
1064
  msgid "Optional"
1065
  msgstr "Opcional"
1066
 
1215
  msgid "Total"
1216
  msgstr "Total"
1217
 
1218
+ #: classes/class-wc-connect-label-reports.php:170 i18n/strings.php:348
1219
+ #: i18n/strings.php:439
1220
  msgid "Refund"
1221
  msgstr "Reembolso"
1222
 
1256
  msgid "Export CSV"
1257
  msgstr "Exportar CSV"
1258
 
1259
+ #: i18n/strings.php:390
1260
  msgid "Other Log"
1261
  msgstr "Otros registros"
1262
 
1263
+ #: i18n/strings.php:389
1264
  msgid "Taxes Log"
1265
  msgstr "Registro de impuestos"
1266
 
1267
+ #: i18n/strings.php:388
1268
  msgid "Shipping Log"
1269
  msgstr "Registro de envíos"
1270
 
1271
+ #: i18n/strings.php:381
1272
  msgid "Display troubleshooting information on the Cart and Checkout pages."
1273
  msgstr "Muestra información para resolución de problemas en las páginas de carrito y finalizar compra."
1274
 
1275
+ #: i18n/strings.php:385
1276
  msgid "Write diagnostic messages to log files. Helpful when contacting support."
1277
  msgstr "Escribe mensajes de diagnóstico en los archivos de registro. Útil al contactar con soporte."
1278
 
1316
  msgid "Link a PayPal account"
1317
  msgstr "Enlaza a una cuenta PayPal"
1318
 
1319
+ #: i18n/strings.php:404
1320
  msgid "Refresh"
1321
  msgstr "Recargar"
1322
 
1323
+ #: woocommerce-services.php:1234
1324
  msgid "Tracking number"
1325
  msgstr "Número de seguimiento"
1326
 
1327
+ #: woocommerce-services.php:1233
1328
  msgid "Provider"
1329
  msgstr "Proveedor"
1330
 
1416
  msgstr "cálculo automático de impuestos y configuración de pago más sencilla"
1417
 
1418
  #: classes/class-wc-connect-paypal-ec.php:323 i18n/strings.php:4
1419
+ #: i18n/strings.php:168 i18n/strings.php:377 i18n/strings.php:467
1420
  msgid "Required"
1421
  msgstr "Requerido"
1422
 
1432
  msgid "Dimensions"
1433
  msgstr "Dimensiones"
1434
 
1435
+ #: i18n/strings.php:270 i18n/strings.php:364 i18n/strings.php:455
1436
  msgid "Close"
1437
  msgstr "Cerrar"
1438
 
1543
  msgid "Unable to get your settings. Please refresh the page to try again."
1544
  msgstr "No ha sido posible recuperar tus ajustes. Por favor, recarga la página para intentarlo de nuevo."
1545
 
1546
+ #: i18n/strings.php:479
1547
  msgid "%(numSelected)d service selected"
1548
  msgid_plural "%(numSelected)d services selected"
1549
  msgstr[0] "%(numSelected)d servicio seleccionado"
1550
  msgstr[1] "%(numSelected)d servicios seleccionados"
1551
 
1552
+ #: i18n/strings.php:477
1553
  msgid "Add and edit saved packages using the {{a}}Packaging Manager{{/a}}."
1554
  msgstr "Añade y edita los paquetes guardados usando el {{a}}Gestor de paquetería{{/a}}."
1555
 
1556
+ #: i18n/strings.php:341 i18n/strings.php:432
1557
  msgid "Tracking #: {{trackingLink/}}"
1558
  msgstr "Seguimiento #: {{trackingLink/}}"
1559
 
1593
  msgid "Choose rate: %(pckg)s"
1594
  msgstr "Elegir tarifa: %(pckg)s"
1595
 
1596
+ #: i18n/strings.php:353 i18n/strings.php:444
1597
  msgid "Refund label (-%(amount)s)"
1598
  msgstr "Etiqueta de reembolso (-%(amount)s)"
1599
 
1613
  msgid "Ship in original packaging"
1614
  msgstr "Enviar en su paquete original"
1615
 
1616
+ #: i18n/strings.php:332 i18n/strings.php:333 i18n/strings.php:423
1617
+ #: i18n/strings.php:424
1618
  msgid "Request refund"
1619
  msgstr "Solicitar reembolso"
1620
 
1621
+ #: i18n/strings.php:335 i18n/strings.php:426
1622
  msgid "Reprint"
1623
  msgstr "Volver a imprimir"
1624
 
1625
+ #: i18n/strings.php:58 i18n/strings.php:309 i18n/strings.php:363
1626
+ #: i18n/strings.php:454
1627
  msgid "Paper size"
1628
  msgstr "Tamaño del papel"
1629
 
1639
  msgid "Move item"
1640
  msgstr "Mover artículo"
1641
 
1642
+ #: i18n/strings.php:483
1643
  msgid "Increase the rates calculated by the carrier to account for packaging and handling costs. You can also add a negative amount to save your customers money."
1644
  msgstr "Incrementa las tarifas calculadas por el transportista a la cantidad de los costes de empaquetado y manipulado. También puedes añadir una cantidad negativa para ahorrar dinero a tus clientes."
1645
 
1646
+ #: i18n/strings.php:414
1647
  msgid "Create new label"
1648
  msgstr "Crear nueva etiqueta"
1649
 
1664
  msgstr "Añadir una tarjeta de crédito"
1665
 
1666
  #. translators: %d: Deleted Product ID
 
1667
  #: classes/class-wc-connect-compatibility-wc26.php:116
1668
+ #: classes/class-wc-connect-compatibility-wc30.php:130
1669
  msgid "#%d - [Deleted product]"
1670
  msgstr "#%d - [producto borrado]"
1671
 
1672
  #. translators: %1$d: Product ID, %2$s: Product Name
 
1673
  #: classes/class-wc-connect-compatibility-wc26.php:111
1674
+ #: classes/class-wc-connect-compatibility-wc30.php:125
1675
  msgid "#%1$d - %2$s"
1676
  msgstr "#%1$d - %2$s"
1677
 
1678
  #. translators: %s Support url
1679
+ #: woocommerce-services.php:1569
1680
  msgid "<a href=\"%s\">Support</a>"
1681
  msgstr "<a href=\"%s\">Soporte</a>"
1682
 
1684
  msgid "There was an error installing Jetpack. Please try installing it manually."
1685
  msgstr "Hubo un error al instalar Jetpack. Por favor, trata de instalarlo manualmente."
1686
 
1687
+ #: i18n/strings.php:43 woocommerce-services.php:1066
1688
+ #: woocommerce-services.php:1069
1689
  msgid "Shipping Labels"
1690
  msgstr "Etiquetas de envío"
1691
 
 
 
 
 
1692
  #. Plugin URI of the plugin
1693
  #. Author URI of the plugin
1694
  msgid "https://woocommerce.com/"
1695
  msgstr "https://woocommerce.com/"
1696
 
1697
+ #: i18n/strings.php:143 i18n/strings.php:215 woocommerce-services.php:1519
1698
+ #: woocommerce-services.php:1547
1699
  msgid "Phone"
1700
  msgstr "Teléfono"
1701
 
1704
  msgid "Connect"
1705
  msgstr "Conectar"
1706
 
1707
+ #: i18n/strings.php:7 i18n/strings.php:171 i18n/strings.php:376
1708
  msgid "Save Settings"
1709
  msgstr "Guardar ajustes"
1710
 
1711
+ #: i18n/strings.php:473
1712
  msgid "Your changes have been saved."
1713
  msgstr "Tus cambios se han guardado."
1714
 
1715
+ #: i18n/strings.php:474
1716
  msgid "There was a problem with one or more entries. Please fix the errors below and try saving again."
1717
  msgstr "Hubo un problema con una o más entradas. Por favor, soluciona los errores de abajo y trata de guardar de nuevo."
1718
 
1720
  msgid "Expand"
1721
  msgstr "Expandir"
1722
 
1723
+ #: i18n/strings.php:328 i18n/strings.php:469
1724
  msgid "Dismiss"
1725
  msgstr "Descartar"
1726
 
1727
+ #: i18n/strings.php:10 i18n/strings.php:471
1728
  msgid "You have unsaved changes."
1729
  msgstr "Tienes cambios sin guardar."
1730
 
1759
  msgid "Unable to save your shipping packages. Please try again."
1760
  msgstr "No se han podido guardar tus paquetes de envío. Por favor, inténtalo de nuevo."
1761
 
1762
+ #: i18n/strings.php:41 i18n/strings.php:475
1763
  msgid "Save changes"
1764
  msgstr "Guardar cambios"
1765
 
1771
  msgid "Dimensions (L x W x H)"
1772
  msgstr "Dimensiones (L x An x Al)"
1773
 
1774
+ #: i18n/strings.php:478
1775
  msgid "All services selected"
1776
  msgstr "Seleccionados todos los servicios"
1777
 
1778
+ #: i18n/strings.php:37 i18n/strings.php:199 i18n/strings.php:480
1779
  msgid "Expand Services"
1780
  msgstr "Expandir servicios"
1781
 
1782
+ #: classes/class-wc-connect-label-reports.php:167 i18n/strings.php:367
1783
+ #: i18n/strings.php:458 i18n/strings.php:481
1784
  msgid "Service"
1785
  msgstr "Servicio"
1786
 
1787
+ #: i18n/strings.php:482
1788
  msgid "Price adjustment"
1789
  msgstr "Ajuste de precio"
1790
 
1791
+ #: i18n/strings.php:476
1792
  msgid "Saved Packages"
1793
  msgstr "Paquetes guardados"
1794
 
1795
+ #: woocommerce-services.php:1222 woocommerce-services.php:1229
1796
  msgid "Tracking"
1797
  msgstr "Seguimiento"
1798
 
1799
+ #: i18n/strings.php:207 i18n/strings.php:412 i18n/strings.php:416
1800
  msgid "Create shipping label"
1801
  msgid_plural "Create shipping labels"
1802
  msgstr[0] "Crear etiqueta de envío"
1869
  msgid "The service and rate chosen by the customer at checkout is not available. Please choose another."
1870
  msgstr "El servicio y la tarifa elegidos por el cliente en el pago no están disponibles. Por favor, elige otro."
1871
 
1872
+ #: i18n/strings.php:354 i18n/strings.php:445
1873
  msgid "Request a refund"
1874
  msgstr "Solicitar un reembolso"
1875
 
1876
+ #: i18n/strings.php:355 i18n/strings.php:446
1877
  msgid "You can request a refund for a shipping label that has not been used to ship a package. It will take at least %(days)s days to process."
1878
  msgstr "Puedes solicitar un reembolso de una etiqueta de envío que no se haya utilizado para enviar un paquete. Tardará al menos %(days)s días en procesarse."
1879
 
1880
+ #: i18n/strings.php:356 i18n/strings.php:447
1881
  msgid "Purchase date"
1882
  msgstr "Fecha de compra"
1883
 
1884
+ #: i18n/strings.php:357 i18n/strings.php:448
1885
  msgid "Amount eligible for refund"
1886
  msgstr "Cantidad elegible para el reembolso"
1887
 
1888
+ #: i18n/strings.php:336 i18n/strings.php:360 i18n/strings.php:427
1889
+ #: i18n/strings.php:451
1890
  msgid "Reprint shipping label"
1891
  msgstr "Volver a imprimir la etiqueta de envío"
1892
 
1893
+ #: i18n/strings.php:361 i18n/strings.php:452
1894
  msgid "If there was a printing error when you purchased the label, you can print it again."
1895
  msgstr "Si hay un problema de impresión cuando compres la etiqueta puedes imprimirla de nuevo."
1896
 
1897
+ #: i18n/strings.php:362 i18n/strings.php:453
1898
  msgid "NOTE: If you already used the label in a package, printing and using it again is a violation of our terms of service and may result in criminal charges."
1899
  msgstr "NOTA: Si ya has usado la etiqueta en un paquete, imprimirla y usarla de nuevo es una violación de nuestros términos del servicio y podría resultar en cargos criminales."
1900
 
1901
+ #: i18n/strings.php:325 i18n/strings.php:359 i18n/strings.php:450
1902
  msgid "Print"
1903
  msgstr "Imprimir"
1904
 
1905
  #: i18n/strings.php:16 i18n/strings.php:82 i18n/strings.php:122
1906
  #: i18n/strings.php:158 i18n/strings.php:167 i18n/strings.php:178
1907
+ #: i18n/strings.php:263 i18n/strings.php:352 i18n/strings.php:358
1908
+ #: i18n/strings.php:443 i18n/strings.php:449
1909
  msgid "Cancel"
1910
  msgstr "Cancelar"
1911
 
1912
+ #: i18n/strings.php:370 i18n/strings.php:461
1913
  msgid "N/A"
1914
  msgstr "N/D"
1915
 
1916
+ #: i18n/strings.php:8 i18n/strings.php:420 i18n/strings.php:470
1917
  msgid "More"
1918
  msgstr "Más"
1919
 
1956
  msgid "Packaging"
1957
  msgstr "Paquetería"
1958
 
1959
+ #: woocommerce-services.php:1602
1960
  msgid "Section not loading? Visit the <a href=\"%s\">status page</a> for troubleshooting steps."
1961
  msgstr "¿No carga la sección? Visita la <a href=\"%s\">página de estado</a> para ver los pasos de solución de problemas."
1962
 
1968
  msgid "Note: Jetpack is connected, but development mode is also enabled on this site. Please disable development mode."
1969
  msgstr "Nota: Jetpack está conectado, pero también está activo el modo de desarrollo en este sitio. Por favor, desactiva el modo de desarrollo."
1970
 
1971
+ #: woocommerce-services.php:1455
1972
  msgid "Shipping Label"
1973
  msgstr "Etiqueta de envío"
1974
 
2025
  msgid "Unknown"
2026
  msgstr "Desconocido"
2027
 
2028
+ #: i18n/strings.php:391
2029
  msgid "Support"
2030
  msgstr "Soporte"
2031
 
2032
+ #: i18n/strings.php:379 i18n/strings.php:380
2033
  msgid "Debug"
2034
  msgstr "Depuración"
2035
 
2036
+ #: i18n/strings.php:410
2037
  msgid "Services"
2038
  msgstr "Servicios"
2039
 
2040
+ #: i18n/strings.php:394
2041
  msgctxt "This section displays the overall health of WooCommerce Shipping & Tax and the things it depends on"
2042
  msgid "Health"
2043
  msgstr "Salud"
2044
 
2045
+ #: i18n/strings.php:392
2046
  msgid "Need help?"
2047
  msgstr "¿Necesitas ayuda?"
2048
 
2050
  msgid "Log is empty"
2051
  msgstr "El registro está vacío"
2052
 
2053
+ #: i18n/strings.php:383 i18n/strings.php:387
2054
  msgid "Disabled"
2055
  msgstr "Desactivado"
2056
 
2057
+ #: i18n/strings.php:382 i18n/strings.php:386
2058
  msgid "Enabled"
2059
  msgstr "Activado"
2060
 
2078
  msgid "Setup for this service has not yet been completed"
2079
  msgstr "La configuración de este servició aún no se ha completado"
2080
 
2081
+ #: i18n/strings.php:399
2082
  msgid "Service data is up-to-date"
2083
  msgstr "Los datos del servicio están al día"
2084
 
2085
+ #: i18n/strings.php:398
2086
  msgid "Service data was found, but is more than one day old"
2087
  msgstr "Se encontaron datos del servicio, pero son de hace más de un día"
2088
 
2089
+ #: i18n/strings.php:397
2090
  msgid "Service data was found, but is more than three days old"
2091
  msgstr "Se encontraron datos del servicio, pero son de hace más de tres días"
2092
 
2093
+ #: i18n/strings.php:400
2094
  msgid "Service data found, but may be out of date"
2095
  msgstr "Se han encontrado datos del servicio, pero podrían ser obsoletos"
2096
 
2097
+ #: i18n/strings.php:401
2098
  msgid "No service data available"
2099
  msgstr "No hay disponibles datos del servicio"
2100
 
2101
+ #: i18n/strings.php:396
2102
  msgid "Jetpack"
2103
  msgstr "Jetpack"
2104
 
2122
  msgid "Please install and activate the Jetpack plugin, version %s or higher"
2123
  msgstr "Por favor, instala y activa el plugin Jetpack, en su versión %s o superior"
2124
 
2125
+ #. Author of the plugin
2126
+ #: i18n/strings.php:395
2127
  msgid "WooCommerce"
2128
  msgstr "WooCommerce"
2129
 
2139
  msgid "WooCommerce %1$s or higher is required (You are running %2$s)"
2140
  msgstr "Se necesita WooCommerce %1$s o superior (estás ejecutando la versión %2$s)"
2141
 
2142
+ #: classes/class-wc-connect-error-notice.php:104 woocommerce-services.php:1638
2143
  msgid "Dismiss this notice"
2144
  msgstr "Descartar este aviso"
2145
 
i18n/languages/woocommerce-services-fr_CA.json CHANGED
@@ -1 +1 @@
1
- {"0":[null,""],"":{"po-revision-date":"2020-03-26 15:14:42+0000","mime-version":"1.0","content-type":"text/plain; charset=UTF-8","content-transfer-encoding":"8bit","plural-forms":"nplurals=2; plural=n > 1;","x-generator":"GlotPress/3.0.0-alpha.2","language":"fr_CA","project-id-version":"Plugins - WooCommerce Shipping &amp; Tax - Stable (latest release)"},"Features":[null,""],"Carrier":[null,""],"Express delivery from the experts in international shipping":[null,""],"Live rates for %(carrierName)s at checkout":[null,""],"Ship with the largest delivery network in the United States":[null,""],"Discounted %(carrierName)s shipping labels":[null,""],"To be displayed at checkout, this carrier must be added as a shipping method to selected shipping zones":[null,""],"Add to shipping zones":[null,""],"Show live rates directly on your store - never under or overcharge for shipping again":[null,""],"Live rates at checkout":[null,""],"Last updated %s.":[null,""],"At least one of the new predefined packages has the same name as existing packages.":[null,""],"The new predefined package names are not unique.":[null,""],"At least one of the new custom packages has the same name as existing packages.":[null,""],"The new custom package names are not unique.":[null,""],"Go to shipping zones":[null,""],"Add DHL Express as a shipping method to selected shipping zones to display live rates at checkout.":[null,""],"DHL Express live rates are now available":[null,""],"State %1$s is invalid for %2$s.":[null,""],"%1$s %2$s is invalid for %3$s.":[null,""],"A %1$s is required for %2$s.":[null,""],"A country is required":[null,""],"Your store is over the limit for rate calls this month and your account will be charged for overages. To prevent future overage charges you can upgrade your plan.":[null,""],"There was an error trying to activate your subscription.":[null,""],"Your subscription was succesfully activated.":[null,""],"Manage":[null,""],"Usage":[null,""],"View and manage your subscription usage":[null,""],"Shipping method":[null,""],"The subscription is already active.":[null,""],"Set up your own carrier account to compare rates and print labels from multiple carriers in WooCommerce Shipping. Learn more about adding {{a}}carrier accounts{{/a}}.":[null,""],"There was an error connecting to your %(carrierName)s account. Please check that all of the information entered matches your %(carrierName)s account and try to connect again.":[null,""],"Your carrier account was connected successfully.":[null,""],"The date must be a valid date in the format YYYY-MM-DD":[null,""],"The invoice number needs to be 9 or 13 letters and digits in length":[null,""],"The company website format is not valid":[null,""],"The email format is not valid":[null,""],"The ZIP/Postal code needs to be 5 digits in length":[null,""],"The phone number needs to be 10 digits in length":[null,""],"The UPS account number needs to be 6 letters and digits in length":[null,""],"This will remove the connection with %(carrier_name)s. All of your %(carrier_name)s account information will be deleted and you won\\u2019t see %(carrier_name)s rates.":[null,""],"Disconnect your %(carrier_name)s account":[null,""],"There was an error trying to disconnect your carrier account":[null,""],"Your carrier account was disconnected succesfully.":[null,""],"DHL Express":[null,""],"Powered by WooCommerce Tax. If automated taxes are enabled, you'll need to enter prices exclusive of tax.":[null,""],"WooCommerce Helper auth is missing":[null,""],"USPS labels without tracking are not eligible for refund.":[null,""],"General Information":[null,""],"Connect your %(carrierName)s account":[null,""],"%(carrierName)s not supported.":[null,""],"Loading":[null,""],"WooCommerce Shipping & Tax Data":[null,""],"Print customs form":[null,""],"Test your WooCommerce Shipping & Tax connection":[null,""],"WooCommerce Shipping & Tax Status":[null,""],"Connect your store to activate WooCommerce Shipping & Tax":[null,""],"Connect Jetpack to activate WooCommerce Shipping & Tax":[null,""],"WooCommerce Shipping now supports DHL labels for international shipments. Purchase and print discounted labels from DHL and USPS right here.":[null,""],"Discounted DHL Shipping Labels":[null,""],"WooCommerce Shipping":[null,""],"Invalid WooCommerce Shipping & Tax service slug provided":[null,""],"WooCommerce Shipping & Tax":[null,""],"ZIP/Postal code":[null,""],"This action will delete any information entered on the form.":[null,""],"Cancel connection":[null,""],"Ok":[null,""],"UPS invoice control id":[null,""],"UPS invoice currency":[null,""],"UPS invoice amount":[null,""],"UPS invoice date":[null,""],"UPS invoice number":[null,""],"I have been issued an invoice from UPS within the past 90 days":[null,""],"UPS account information":[null,""],"Company website":[null,""],"Job title":[null,""],"Company name":[null,""],"This is the company info you used to create your UPS account":[null,""],"Company information":[null,""],"Email":[null,""],"Address 2 (optional)":[null,""],"Account number":[null,""],"This is the account number and address from your UPS profile":[null,""],"General information":[null,""],"If you need a UPS account number, go to {{a}}UPS.com{{/a}} to create a new account.":[null,""],"Set up your own UPS carrier account to compare rates and print labels from multiple carriers in WooCommerce Shipping. Learn more about adding {{a}}carrier accounts{{/a}}.":[null,""],"Connect your UPS account":[null,""],"Set up your own carrier account by adding your credentials here":[null,""],"Carrier account":[null,""],"Credentials":[null,""],"Adult signature required":[null,""],"Signature required":[null,""],"Other\\u2026":[null,""],"Select one\\u2026":[null,""],"Validating address\\u2026":[null,""],"Purchasing\\u2026":[null,""],"Your UPS account will be charged":[null,""],"Package %(index)s \\u2013 %(title)s":[null,""],"Saving\\u2026":[null,""],"Your tax rates and settings will be automatically configured for %1$s. <a href=\"https://docs.woocommerce.com/document/setting-up-taxes-in-woocommerce/#section-12\">Learn more about setting up tax rates for additional nexuses</a>":[null,""],"Your tax rates and settings will be automatically configured for %1$s, %2$s. <a href=\"https://docs.woocommerce.com/document/setting-up-taxes-in-woocommerce/#section-12\">Learn more about setting up tax rates for additional nexuses</a>":[null,""],"%(itemCount)d item is ready to be fulfilled":["%(itemCount)d items are ready to be fulfilled","",""],"%(itemCount)d item was fulfilled on {{span}}%(createdDate)s{{/span}}":["%(itemCount)d items were fulfilled on {{span}}%(createdDate)s{{/span}}","",""],"Schedule a pickup":[null,""],"Label images older than 180 days are deleted by our technology partners for general security and data privacy concerns.":[null,""],"Labels older than 30 days cannot be refunded.":[null,""],"Mark this order as complete and notify the customer":[null,""],"Notify the customer with shipment details":[null,""],"You save %s with WooCommerce Shipping":[null,""],"WooCommerce Shipping & Tax requires the WooCommerce plugin to be installed and active. You can download %s here.":[null,""],"No tracking information available at this time":[null,""],"Connection error: unable to create label at this time":[null,""],"Track Package":["Track Packages","",""],"Which package would you like to track?":[null,""],"%(service)s label (#%(labelIndex)d)":[null,""],"To print this shipping label, {{a}}add a credit card to your account{{/a}}.":[null,""],"Add credit card":[null,""],"To print this shipping label, {{a}}choose a credit card to add to your account{{/a}}.":[null,""],"Choose credit card":[null,""],"Buy shipping label":["Buy shipping labels","",""],"shipping label ready":["shipping labels ready","",""],"Shipping from":[null,""],"Shipping summary":[null,""],"Customer paid a {{shippingMethod/}} of {{shippingCost/}} for shipping":[null,""],"Shipping rates":[null,""],"HS Tariff number":[null,""],"Submit":[null,""],"Total Weight (with package)":[null,""],"QTY":[null,""],"Weight":[null,""],"Items to fulfill":[null,""],"Select a package type":[null,""],"Package details":[null,""],"Your shipping packages have been saved.":[null,""],"0.0":[null,""],"Shipment Tracking":[null,""],"Customs information valid":[null,""],"Customs information incomplete":[null,""],"Packing Log:":[null,""],"Chosen Rate:":[null,""],"Shipping Method ID:":[null,""],"Shipping Method Name:":[null,""],"Shipping Debug":[null,""],"<strong>\"%2$s\" is missing weight, length, width, or height.</strong><br />Shipping rates cannot be calculated. <a href=\"%1$s\">Enter dimensions and weight for %2$s</a> so your customers can purchase this item.":[null,""],"Unable to send request to WooCommerce Shipping & Tax server. The timestamp generated for the signature is too old.":[null,""],"Unable to send request to WooCommerce Shipping & Tax server. Jetpack Token is malformed.":[null,""],"Unable to send request to WooCommerce Shipping & Tax server. Jetpack Token is missing":[null,""],"Error: The WooCommerce Shipping & Tax server returned: %1$s %2$s ( %3$d )":[null,""],"Error: The WooCommerce Shipping & Tax server returned ( %d ) and an empty response body.":[null,""],"Error: The WooCommerce Shipping & Tax server returned HTTP code: %d":[null,""],"Unable to encode body for request to WooCommerce Shipping & Tax server.":[null,""],"Unable to send request to WooCommerce Shipping & Tax server. Body must be an array.":[null,""],"Unable to send request to WooCommerce Shipping & Tax server. Jetpack connection does not implement get_access_token.":[null,""],"Unable to send request to WooCommerce Shipping & Tax server. Jetpack_Data was not found.":[null,""],"No shipping rate could be calculated. No items in the package are shippable.":[null,""],"Product ( ID: %d ) is missing a dimension value. Shipping rates cannot be calculated.":[null,""],"Product ( ID: %d ) did not include a weight. Shipping rates cannot be calculated.":[null,""],"Packing log:":[null,""],"Received rate: %1$s (%2$s)":[null,""],"Your customer selected {{shippingMethod/}}":[null,""],"Total rate: %(total)s":[null,""],"%(serviceName)s: %(rate)s":[null,""],"No rates found":[null,""],"WooCommerce Shipping gives you access to USPS Commercial Pricing, which is discounted over Retail rates.":[null,""],"more info":[null,""],"ITN":[null,""],"Sanitary / Phytosanitary inspection":[null,""],"Quarantine":[null,""],"None":[null,""],"Restriction type":[null,""],"Details":[null,""],"Sample":[null,""],"Gift":[null,""],"Documents":[null,""],"Merchandise":[null,""],"Contents type":[null,""],"Return to sender if package is unable to be delivered":[null,""],"Value (per unit)":[null,""],"Weight (per unit)":[null,""],"Save customs form":[null,""],"Customs":[null,""],"Use address as entered":[null,""],"View on Google Maps":[null,""],"Verify with USPS":[null,""],"Automatic verification failed for this address. It may still be a valid address \\u2014 use the tools below to manually verify.":[null,""],"We were unable to automatically verify the address.":[null,""],"We were unable to automatically verify the address \\u2014 %(error)s.":[null,""],"You've edited the address, please revalidate it for accurate rates":[null,""],"Verify address":[null,""],"%(message)s. Please modify the address and try again.":[null,""],"View details":[null,""],"Items":[null,""],"Package":[null,""],"Receipt":[null,""],"Label #%(labelIndex)s details":[null,""],"{{icon/}} Delete this package":[null,""],"Done":[null,""],"Add boxes, envelopes, and other packages you use most frequently":[null,""],"Remove":[null,""],"Edit":[null,""],"Weight of empty package":[null,""],"Unique package name":[null,""],"Envelope":[null,""],"Box":[null,""],"This field is required.":[null,""],"Payment":[null,""],"Email the label purchase receipts to %(ownerName)s (%(ownerLogin)s) at %(ownerEmail)s":[null,""],"Email Receipts":[null,""],"To purchase shipping labels, choose a credit card you have on file or add a new card.":[null,""],"Choose a different card":[null,""],"To purchase shipping labels, add a credit card.":[null,""],"We'll charge the credit card on your account (%(card)s) to pay for the labels you print":[null,""],"Credit cards are retrieved from the following WordPress.com account: %(wpcomLogin)s <%(wpcomEmail)s>":[null,""],"Only the site owner can change these settings. Please contact %(ownerName)s (%(ownerLogin)s) to change the shipping label settings.":[null,""],"Only the site owner can manage shipping label payment methods. Please contact %(ownerName)s (%(ownerLogin)s) to manage payment methods.":[null,""],"%(card)s ****%(digits)s":[null,""],"Print shipping labels yourself and save a trip to the post office":[null,""],"H":[null,""],"W":[null,""],"L":[null,""],"Disconnect":[null,""],"Activate":[null,""],"No activity yet":[null,""],"Note":[null,""],"Refunded %(amount)s":[null,""],"%(service)s label (#%(labelNum)d) refund rejected":[null,""],"%(service)s label (#%(labelNum)d) refunded (%(amount)s)":[null,""],"%(service)s label (#%(labelNum)d) refund requested (%(amount)s)":[null,""],"Note sent to customer":[null,""],"Internal note":[null,""],"Show notes from %(date)s":[null,""],"%(count)s event":["%(count)s events","",""],"WeChat Pay":[null,""],"Toggle menu":[null,""],"Return to Order #%(orderId)s":[null,""],"Our team is here for you. View our {{docsA}}support docs{{/docsA}} or {{ticketA}}open a support ticket{{/ticketA}}.":[null,""],"Logging":[null,""],"No services configured. {{a}}Add a shipping service{{/a}}":[null,""],"Edit service settings":[null,""],"Request was made %s - check logs below or {{a}}edit service settings{{/a}}":[null,""],"Copy for support":[null,""],"Last %s entry. {{a}}Show full log{{/a}}":["Last %s entries. {{a}}Show full log{{/a}}","",""],"Log tail copied to clipboard":[null,""],"You have unsaved changes. Are you sure you want to leave this page?":[null,""],"Value ($ per unit)":[null,""],"Weight (%s per unit)":[null,""],"Description":[null,""],"Country where the product was manufactured or assembled":[null,""],"Origin country":[null,""],"USPS":[null,""],"Optional":[null,""],"Retry":[null,""],"shipping label printing":[null,""],"shipping label printing and smoother payment setup":[null,""],"automated tax calculation and shipping label printing":[null,""],"automated tax calculation, shipping label printing, and smoother payment setup":[null,""],"Data resource description.":[null,""],"Data resource ID.":[null,""],"List of supported currencies.":[null,""],"List of supported states in a given country.":[null,""],"List of supported continents, countries, and states.":[null,""],"Sorry, you cannot view this resource.":[null,""],"Sorry, you cannot list resources.":[null,""],"The unit weights are defined in for this country.":[null,""],"Thousands separator for displayed prices in this country.":[null,""],"Full name of state.":[null,""],"State code.":[null,""],"List of states in this country.":[null,""],"Number of decimal points shown in displayed prices for this country.":[null,""],"Full name of country.":[null,""],"The unit lengths are defined in for this country.":[null,""],"Decimal separator for displayed prices for this country.":[null,""],"Currency symbol position for this country.":[null,""],"Default ISO4127 alpha-3 currency code for the country.":[null,""],"ISO3166 alpha-2 country code.":[null,""],"List of countries on this continent.":[null,""],"Full name of continent.":[null,""],"There are no locations matching these parameters.":[null,""],"2 character continent code.":[null,""],"Shipping label tracking number":[null,""],"Shipping label service":[null,""],"Warning: Erasing personal data will cause the ability to reprint or refund WooCommerce Shipping & Tax shipping labels to be lost on the affected orders.":[null,""],"By using this extension, you may be storing personal data or sharing data with external services. <a href=\"%s\" target=\"_blank\">Learn more about how this works, including what you may want to include in your privacy policy.</a>":[null,""],"There was a problem updating your saved credit cards.":[null,""],"No labels found for this period":[null,""],"Total":[null,""],"Refund":[null,""],"Price":[null,""],"Order":[null,""],"Time":[null,""],"Requested":[null,""],"Last 7 days":[null,""],"This month":[null,""],"Last month":[null,""],"Year":[null,""],"Export CSV":[null,""],"Other Log":[null,""],"Taxes Log":[null,""],"Shipping Log":[null,""],"Display troubleshooting information on the Cart and Checkout pages.":[null,""],"Write diagnostic messages to log files. Helpful when contacting support.":[null,""],"Enter your email address at which to accept payments. You'll need to link your own account in order to perform anything other than \"sale\" transactions.":[null,""],"Payment Email":[null,""],"To authenticate payments with WooCommerce Shipping & Tax, <a href=\"%s\">click here</a>.":[null,""],"Payments will be authenticated by WooCommerce Shipping & Tax and directed to the following email address. To disable this feature and link a PayPal account, <a href=\"%s\">click here</a>.":[null,""],"%s (Note that \"authorizing payment only\" requires linking a PayPal account.)":[null,""],"Link account":[null,""],"Link a new or existing PayPal account to make sure future orders are marked “Processing” instead of “On hold”, and so refunds can be issued without leaving WooCommerce.":[null,""],"Link your PayPal account":[null,""],"To issue refunds via PayPal Checkout, you will need to <a href=\"%s\">link a PayPal account</a> with the email address that received this payment.":[null,""],"Link a PayPal account":[null,""],"Refresh":[null,""],"Tracking number":[null,""],"Provider":[null,""],"WooCommerce Shipping & Tax is almost ready to go! Once you connect Jetpack you'll have access to %s.":[null,""],"Hosted services for WooCommerce: automated tax calculation, shipping label printing, and smoother payment setup.":[null,""],"Tax Class":[null,""],"Shipping":[null,""],"Compound":[null,""],"Priority":[null,""],"Tax Name":[null,""],"Rate %":[null,""],"ZIP/Postcode":[null,""],"State Code":[null,""],"Country Code":[null,""],"Enable automated taxes":[null,""],"Disable automated taxes":[null,""],"Automated taxes":[null,""],"By clicking \"%1$s\", you agree to the <a href=\"%2$s\">Terms of Service</a> and to <a href=\"%3$s\">share certain data and settings</a> with WordPress.com and/or third parties.":[null,""],"Setup complete.":[null,""],"You can now enjoy %s.":[null,""],"WooCommerce Shipping & Tax is almost ready to go! Once you connect your store you'll have access to %s.":[null,""],"automated tax calculation":[null,""],"smoother payment setup":[null,""],"automated tax calculation and smoother payment setup":[null,""],"Required":[null,"Obligatoire"],"Your shipping settings have been saved.":[null,"Vos paramètres d’étiquette expédition ont été enregistrées."],"Unable to save your shipping settings. Please try again.":[null,"Impossible d’enregistrer vos paramètres d’étiquette expédition. Veuillez essayer de nouveau."],"Dimensions":[null,"Dimensions"],"Close":[null,"Fermer"],"Packages to be Shipped":[null,"Emballages a expédier"],"Add to a New Package":[null,"Ajouter à un nouvel emballage"],"Add items":[null,"Ajouter des articles"],"Individually Shipped Item":[null,"Article livré individuellement"],"Item Dimensions":[null,"Dimensions de l'article"],"Please select a package":[null,"Veuillez sélectionner un emballage"],"Service schemas were not loaded":[null,"Schémas de service non chargés"],"Bad request":[null,"Mauvaise demande"],"Order not found":[null,"Commande introuvable"],"Got it, thanks!":[null,"J’ai compris, merci !"],"Activate Jetpack and connect":[null,"Activer le Jetpack et connecter"],"Install Jetpack and connect":[null,"Installer le Jetpack et connecter"],"Something went wrong. Please try connecting to Jetpack manually, or contact support on the WordPress.org forums.":[null,"Quelque chose s'est mal passé. Essayez de vous connecter manuellement à Jetpack ou contactez l'assistance sur les forums WordPress.org."],"Connecting...":[null,"Connexion..."],"Activating...":[null,"Activation…"],"When you're ready, purchase and print discounted labels from %s right here.":[null,""],"Discounted Shipping Labels":[null,"Étiquettes d'expédition à tarif réduit"],"American Express":[null,"American Express"],"Discover":[null,"Discover"],"MasterCard":[null,"MasterCard"],"VISA":[null,"VISA"],"PayPal":[null,"PayPal"],"Add another credit card":[null,"Ajouter une autre carte de crédit"],"%(selectedCount)d package selected":["%(selectedCount)d packages selected","%(selectedCount)d emballage sélectionné","%(selectedCount)d emballages sélectionnés"],"Unable to get your settings. Please refresh the page to try again.":[null,"Impossible d’obtenir vos paramètres. Veuillez actualiser la page pour essayer à nouveau."],"%(numSelected)d service selected":["%(numSelected)d services selected","%(numSelected)d service sélectionné","%(numSelected)d services sélectionnés"],"Add and edit saved packages using the {{a}}Packaging Manager{{/a}}.":[null,"Ajouter et modifier des emballages enregistrés en utilisant le {{a}}Gestionnaire d'emballage{{/a}}."],"Tracking #: {{trackingLink/}}":[null,"Suivi #: {{trackingLink/}}"],"%(item)s from {{pckg/}}":[null,"%(item)s de {{pckg/}}"],"Which items would you like to add to {{pckg/}}?":[null,"Quel article souhaitez-vous ajouter à {{pckg/}}?"],"1 item in 1 package: %(weight)s %(unit)s total":[null,"1 article dans 1 emballage : %(weight)s %(unit)s total"],"%(itemsCount)d items in 1 package: %(weight)s %(unit)s total":[null,"%(itemsCount)d articles dans 1 emballage : %(weight)s %(unit)s total"],"%(itemsCount)d items in %(packageCount)d packages: %(weight)s %(unit)s total":[null,"%(itemsCount)d articles dans %(packageCount)d emballages : %(weight)s %(unit)s total"],"{{itemLink/}} is currently saved for a later shipment.":[null,"{{itemLink/}} est actuellement enregistrée pour un envoi ultérieur."],"{{itemLink/}} is currently shipped in its original packaging.":[null,"{{itemLink/}} est actuellement livré dans son emballage d’origine."],"{{itemLink/}} is currently in {{pckg/}}.":[null,"{{itemLink/}} est actuellement dans {{pckg/}}."],"Choose rate: %(pckg)s":[null,"Choisir le taux : %(pckg)s"],"Refund label (-%(amount)s)":[null,"Rembourser l'étiquette (-%(amount)s)"],"Where would you like to move it?":[null,"Où souhaitez-vous le déplacer?"],"Unsaved changes made to packages":[null,"Changements effectués non enregistrés sur les emballages"],"There are no items in this package.":[null,"Il n'y a aucun article dans cet emballage."],"Ship in original packaging":[null,"Expédier dans l'emballage d’origine"],"Request refund":[null,"Demande de remboursement"],"Reprint":[null,"Réimprimer"],"Paper size":[null,"Format de papier"],"No packages selected":[null,"Aucun emballages sélectionnés"],"Move":[null,"Déplacer"],"Move item":[null,"Déplacer l'article"],"Increase the rates calculated by the carrier to account for packaging and handling costs. You can also add a negative amount to save your customers money.":[null,"Augmenter les taux calculés par le transporteur pour tenir compte de l’emballage et de manutention. Vous pouvez également ajouter un montant négatif pour économiser vos clients."],"Create new label":[null,"Créer une nouvelle étiquette"],"All packages selected":[null,"Tous les emballages sélectionnés"],"Add":[null,"Ajouter"],"Add item":[null,"Ajouter un article"],"Add a credit card":[null,"Ajouter une carte de crédit"],"#%d - [Deleted product]":[null,"#%d - [produit supprimé]"],"#%1$d - %2$s":[null,"%1$d - %2$s"],"<a href=\"%s\">Support</a>":[null,"<a href=\"%s\">Assistance</a>"],"There was an error installing Jetpack. Please try installing it manually.":[null,"Une erreur s'est produite lors de l'installation de Jetpack. S'il vous plaît essayez d'installer manuellement."],"Shipping Labels":[null,"Étiquette d'expédition"],"Automattic":[null,"Automattic"],"https://woocommerce.com/":[null,"https://woocommerce.com/"],"Phone":[null,"Téléphone"],"Connect":[null,"Connexion"],"Save Settings":[null,"Sauvegarder les paramètres"],"Your changes have been saved.":[null,"Vos modifications ont été sauvegardées."],"There was a problem with one or more entries. Please fix the errors below and try saving again.":[null,"Il y avait un problème avec une ou plusieurs entrées. S’il vous plaît corriger les erreurs ci-dessous et essayez d’enregistrer à nouveau."],"Expand":[null,"Étendre"],"Dismiss":[null,"Rejeter"],"You have unsaved changes.":[null,"Vous avez des modifications non enregistrées."],"Type of package":[null,"Type d'emballage"],"Add package":["Add packages","Ajouter un emballage",""],"Invalid value.":[null,"Valeur non valide"],"This field is required":[null,""],"Package name":[null,"Nom de l'emballage"],"This field must be unique":[null,"Ce champ doit être unique"],"Unable to save your shipping packages. Please try again.":[null,"Impossible d'enregistrer vos emballages. Veuillez essayer de nouveau."],"Save changes":[null,"Enregistrer les changements"],"Untitled":[null,"Sans titre"],"Dimensions (L x W x H)":[null,""],"All services selected":[null,"Tous les services sélectionnés"],"Expand Services":[null,"Accroitre les services"],"Service":[null,"Service"],"Price adjustment":[null,"Ajustement du prix"],"Saved Packages":[null,"Emballages enregistrés"],"Tracking":[null,""],"Create shipping label":["Create shipping labels","Créer l'étiquette d'expédition",""],"Name":[null,"Nom"],"Company":[null,"Entreprise"],"Address":[null,"Adresse"],"City":[null,"Ville"],"State":[null,"Province"],"Country":[null,"Pays"],"Invalid address":[null,"Adresse non valide"],"Origin address":[null,"Adresse d’origine"],"Destination address":[null,"Adresse de destination"],"We have slightly modified the address entered. If correct, please use the suggested address to ensure accurate delivery.":[null,"Nous avons légèrement modifié l’adresse saisie. Si elle est correcte, veuillez utiliser l’adresse suggéré d’assurer une prestation précise."],"Address entered":[null,"Adresse saisie"],"Edit address":[null,"Modifier l'adresse"],"Suggested address":[null,"Adresse suggérée"],"Use selected address":[null,"Utilisez l’adresse sélectionnée"],"Use these packages":[null,"Utilisez ces emballages"],"The service and rate chosen by the customer at checkout is not available. Please choose another.":[null,"Le service et le taux choisi par le client à la caisse n’est pas disponible. Veuillez choisir un autre."],"Request a refund":[null,"Demande de remboursement"],"You can request a refund for a shipping label that has not been used to ship a package. It will take at least %(days)s days to process.":[null,""],"Purchase date":[null,"Date d'achat"],"Amount eligible for refund":[null,"Montant admissible au remboursement"],"Reprint shipping label":[null,"Réimprimer l'étiquette d'expédition"],"If there was a printing error when you purchased the label, you can print it again.":[null,"S’il y avait une erreur d’impression lorsque vous aviez acheté l’étiquette, vous pouvez l’imprimer à nouveau."],"NOTE: If you already used the label in a package, printing and using it again is a violation of our terms of service and may result in criminal charges.":[null,"REMARQUE: Si vous avez déjà utilisé l'étiquette sur un colis, l'imprimer et l'utiliser à nouveau constitue une violation de nos conditions d'utilisation et peut entraîner des poursuites pénales."],"Print":[null,"Imprimer"],"Cancel":[null,"Annuler"],"N/A":[null,"N/D"],"More":[null,"Plus"],"Invalid PDF request.":[null,"Demande PDF non valide."],"Unknown package":[null,"Emballage inconnu"],"Individual packaging":[null,"Emballage individuel"],"Unable to update service settings. Validation failed. %s":[null,"Impossible de mettre à jour les paramètres du service. La validation a échoué. %s"],"Unable to update service settings. The form data could not be read.":[null,"Impossible de mettre à jour les paramètres du service. Les données de formulaire n'ont pas pu être lues."],"Unable to update service settings. Form data is missing service ID.":[null,"Impossible de mettre à jour les paramètres du service. Les données de formulaire n'ont pas d'ID de service."],"Unable to update settings. The form data could not be read.":[null,"Impossible de mettre à jour les paramètres. Les données de formulaire n'ont pas pu être lues."],"Unable to update settings. %s":[null,"Impossible de mettre à jour les paramètres. %s"],"Packaging":[null,"Emballage"],"Section not loading? Visit the <a href=\"%s\">status page</a> for troubleshooting steps.":[null,"La section ne se charge pas? Consultez la <a href=\"%s\">page d'état </a> pour connaître les étapes de dépannage."],"Note: Jetpack development mode is enabled on this site. This site will not be able to obtain payment methods from WooCommerce Shipping & Tax production servers.":[null,""],"Note: Jetpack is connected, but development mode is also enabled on this site. Please disable development mode.":[null,"Remarque : Jetpack est connecté, mais le mode de développement est activé sur ce site. Veuillez désactiver le mode de développement."],"Shipping Label":[null,"Etiquette de l'expédition"],"yd":[null,"verge"],"in":[null,"po"],"mm":[null,"mm"],"cm":[null,"cm"],"m":[null,"m"],"oz":[null,"oz"],"lbs":[null,"lbs"],"g":[null,"g"],"kg":[null,"kg"],"An invalid service ID was received.":[null,"Un ID de service non valide a été reçu."],"An invalid service instance was received.":[null,"Une instance de service non valide a été reçue."],"Rest of the World":[null,"Reste du monde"],"Support":[null,"Soutien"],"Debug":[null,"Débogage"],"Services":[null,"Services"],"Need help?":[null,"Besoin d’aide?"],"Log is empty":[null,"Le journal est vide"],"Disabled":[null,"Désactivé"],"Enabled":[null,"Activé"],"%s Shipping Zone":[null,"%s Zone d'expédition"],"The most recent rate request failed":[null,"La plus récente demande de taux a échoué"],"The most recent rate request was successful":[null,"La plus récente demande de tarif a réussi"],"No rate requests have yet been made for this service":[null,"Aucune demande de tarif n’ont encore eu lieu pour ce service"],"Setup for this service has not yet been completed":[null,"La configuration pour ce service n’est pas encore achevée"],"Service data is up-to-date":[null,"Données de service à jour"],"Service data was found, but is more than one day old":[null,"Les données de service ont été trouvées, mais vieux d'un jour"],"Service data was found, but is more than three days old":[null,"Les données de service ont été trouvées, mais elles datent de plus de trois jours"],"Service data found, but may be out of date":[null,""],"No service data available":[null,"Aucune données de service n'est disponible"],"Jetpack":[null,"Jetpack"],"Jetpack %s is connected and working correctly":[null,"Jetpack %s est branché et fonctionne correctement"],"This is a Jetpack staging site":[null,"Il s’agit d’un site intermédiaire Jetpack"],"Jetpack is not connected to WordPress.com. Make sure the Jetpack plugin is installed, activated, and connected.":[null,"Jetpack n’est pas connecté à WordPress.com. Assurez-vous que le plugin Jetpack est installé, activé et connecté."],"Jetpack %1$s or higher is required (You are running %2$s)":[null,""],"Please install and activate the Jetpack plugin, version %s or higher":[null,"Veuillez installer et activer l'extension de Jetpack, version %s ou supérieur"],"WooCommerce":[null,"WooCommerce"],"WooCommerce %s is configured correctly":[null,"WooCommerce %s est configuré correctement"],"Please set Base Location in WooCommerce Settings > General":[null,"S’il vous plaît définir l'emplacement de base dans Paramètres WooCommerce > Général"],"WooCommerce %1$s or higher is required (You are running %2$s)":[null,""],"Dismiss this notice":[null,"Cacher cet avertissement"],"ERROR: Your site has a problem connecting to the WooCommerce Shipping & Tax API. Please make sure your Jetpack connection is working.":[null,""],"Your site is succesfully communicating to the WooCommerce Shipping & Tax API.":[null,""],"This will test your WooCommerce Shipping & Tax connection to ensure everything is working correctly":[null,""],"Test Connection":[null,"Test de connexion"],"The WooCommerce Shipping & Tax brandname\u0004WooCommerce Shipping & Tax":[null,""],"The WooCommerce Shipping & Tax brandname\u0004WooCommerce Shipping":[null,""],"%s - ZIP/Postal code checkout field label\u0004Invalid %s entered.":[null,""],"%s - ZIP/Postal code checkout field label\u0004%s does not match the selected state.":[null,""],"date is of the form MM/YY\u0004Expires %(date)s":[null,"Expire %(date)s"],"A service with an unknown title and unknown method_title\u0004Unknown":[null,"Inconnu"],"This section displays the overall health of WooCommerce Shipping & Tax and the things it depends on\u0004Health":[null,""]}
1
+ {"0":[null,""],"":{"po-revision-date":"2020-03-26 15:14:42+0000","mime-version":"1.0","content-type":"text/plain; charset=UTF-8","content-transfer-encoding":"8bit","plural-forms":"nplurals=2; plural=n > 1;","x-generator":"GlotPress/3.0.0-alpha.2","language":"fr_CA","project-id-version":"Plugins - WooCommerce Shipping &amp; Tax - Stable (latest release)"},"Features":[null,""],"Carrier":[null,""],"Express delivery from the experts in international shipping":[null,""],"Live rates for %(carrierName)s at checkout":[null,""],"Ship with the largest delivery network in the United States":[null,""],"Discounted %(carrierName)s shipping labels":[null,""],"To be displayed at checkout, this carrier must be added as a shipping method to selected shipping zones":[null,""],"Add to shipping zones":[null,""],"Show live rates directly on your store - never under or overcharge for shipping again":[null,""],"Live rates at checkout":[null,""],"Last updated %s.":[null,""],"At least one of the new predefined packages has the same name as existing packages.":[null,""],"The new predefined package names are not unique.":[null,""],"At least one of the new custom packages has the same name as existing packages.":[null,""],"The new custom package names are not unique.":[null,""],"Go to shipping zones":[null,""],"Add DHL Express as a shipping method to selected shipping zones to display live rates at checkout.":[null,""],"DHL Express live rates are now available":[null,""],"State %1$s is invalid for %2$s.":[null,""],"%1$s %2$s is invalid for %3$s.":[null,""],"A %1$s is required for %2$s.":[null,""],"A country is required":[null,""],"Your store is over the limit for rate calls this month and your account will be charged for overages. To prevent future overage charges you can upgrade your plan.":[null,""],"There was an error trying to activate your subscription.":[null,""],"Your subscription was succesfully activated.":[null,""],"Manage":[null,""],"Usage":[null,""],"View and manage your subscription usage":[null,""],"Shipping method":[null,""],"The subscription is already active.":[null,""],"Set up your own carrier account to compare rates and print labels from multiple carriers in WooCommerce Shipping. Learn more about adding {{a}}carrier accounts{{/a}}.":[null,""],"There was an error connecting to your %(carrierName)s account. Please check that all of the information entered matches your %(carrierName)s account and try to connect again.":[null,""],"Your carrier account was connected successfully.":[null,""],"The date must be a valid date in the format YYYY-MM-DD":[null,""],"The invoice number needs to be 9 or 13 letters and digits in length":[null,""],"The company website format is not valid":[null,""],"The email format is not valid":[null,""],"The ZIP/Postal code needs to be 5 digits in length":[null,""],"The phone number needs to be 10 digits in length":[null,""],"The UPS account number needs to be 6 letters and digits in length":[null,""],"This will remove the connection with %(carrier_name)s. All of your %(carrier_name)s account information will be deleted and you won\\u2019t see %(carrier_name)s rates.":[null,""],"Disconnect your %(carrier_name)s account":[null,""],"There was an error trying to disconnect your carrier account":[null,""],"Your carrier account was disconnected succesfully.":[null,""],"DHL Express":[null,""],"Powered by WooCommerce Tax. If automated taxes are enabled, you'll need to enter prices exclusive of tax.":[null,""],"WooCommerce Helper auth is missing":[null,""],"USPS labels without tracking are not eligible for refund.":[null,""],"General Information":[null,""],"Connect your %(carrierName)s account":[null,""],"%(carrierName)s not supported.":[null,""],"Loading":[null,""],"WooCommerce Shipping & Tax Data":[null,""],"Print customs form":[null,""],"Test your WooCommerce Shipping & Tax connection":[null,""],"WooCommerce Shipping & Tax Status":[null,""],"Connect your store to activate WooCommerce Shipping & Tax":[null,""],"Connect Jetpack to activate WooCommerce Shipping & Tax":[null,""],"WooCommerce Shipping now supports DHL labels for international shipments. Purchase and print discounted labels from DHL and USPS right here.":[null,""],"Discounted DHL Shipping Labels":[null,""],"WooCommerce Shipping":[null,""],"Invalid WooCommerce Shipping & Tax service slug provided":[null,""],"WooCommerce Shipping & Tax":[null,""],"ZIP/Postal code":[null,""],"This action will delete any information entered on the form.":[null,""],"Cancel connection":[null,""],"Ok":[null,""],"UPS invoice control id":[null,""],"UPS invoice currency":[null,""],"UPS invoice amount":[null,""],"UPS invoice date":[null,""],"UPS invoice number":[null,""],"I have been issued an invoice from UPS within the past 90 days":[null,""],"UPS account information":[null,""],"Company website":[null,""],"Job title":[null,""],"Company name":[null,""],"This is the company info you used to create your UPS account":[null,""],"Company information":[null,""],"Email":[null,""],"Address 2 (optional)":[null,""],"Account number":[null,""],"This is the account number and address from your UPS profile":[null,""],"General information":[null,""],"If you need a UPS account number, go to {{a}}UPS.com{{/a}} to create a new account.":[null,""],"Set up your own UPS carrier account to compare rates and print labels from multiple carriers in WooCommerce Shipping. Learn more about adding {{a}}carrier accounts{{/a}}.":[null,""],"Connect your UPS account":[null,""],"Set up your own carrier account by adding your credentials here":[null,""],"Carrier account":[null,""],"Credentials":[null,""],"Adult signature required":[null,""],"Signature required":[null,""],"Other\\u2026":[null,""],"Select one\\u2026":[null,""],"Validating address\\u2026":[null,""],"Purchasing\\u2026":[null,""],"Your UPS account will be charged":[null,""],"Package %(index)s \\u2013 %(title)s":[null,""],"Saving\\u2026":[null,""],"Your tax rates and settings will be automatically configured for %1$s. <a href=\"https://docs.woocommerce.com/document/setting-up-taxes-in-woocommerce/#section-12\">Learn more about setting up tax rates for additional nexuses</a>":[null,""],"Your tax rates and settings will be automatically configured for %1$s, %2$s. <a href=\"https://docs.woocommerce.com/document/setting-up-taxes-in-woocommerce/#section-12\">Learn more about setting up tax rates for additional nexuses</a>":[null,""],"%(itemCount)d item is ready to be fulfilled":["%(itemCount)d items are ready to be fulfilled","",""],"%(itemCount)d item was fulfilled on {{span}}%(createdDate)s{{/span}}":["%(itemCount)d items were fulfilled on {{span}}%(createdDate)s{{/span}}","",""],"Schedule a pickup":[null,""],"Label images older than 180 days are deleted by our technology partners for general security and data privacy concerns.":[null,""],"Labels older than 30 days cannot be refunded.":[null,""],"Mark this order as complete and notify the customer":[null,""],"Notify the customer with shipment details":[null,""],"You save %s with WooCommerce Shipping":[null,""],"WooCommerce Shipping & Tax requires the WooCommerce plugin to be installed and active. You can download %s here.":[null,""],"No tracking information available at this time":[null,""],"Connection error: unable to create label at this time":[null,""],"Track Package":["Track Packages","",""],"Which package would you like to track?":[null,""],"%(service)s label (#%(labelIndex)d)":[null,""],"To print this shipping label, {{a}}add a credit card to your account{{/a}}.":[null,""],"Add credit card":[null,""],"To print this shipping label, {{a}}choose a credit card to add to your account{{/a}}.":[null,""],"Choose credit card":[null,""],"Buy shipping label":["Buy shipping labels","",""],"shipping label ready":["shipping labels ready","",""],"Shipping from":[null,""],"Shipping summary":[null,""],"Customer paid a {{shippingMethod/}} of {{shippingCost/}} for shipping":[null,""],"Shipping rates":[null,""],"HS Tariff number":[null,""],"Submit":[null,""],"Total Weight (with package)":[null,""],"QTY":[null,""],"Weight":[null,""],"Items to fulfill":[null,""],"Select a package type":[null,""],"Package details":[null,""],"Your shipping packages have been saved.":[null,""],"0.0":[null,""],"Shipment Tracking":[null,""],"Customs information valid":[null,""],"Customs information incomplete":[null,""],"Packing Log:":[null,""],"Chosen Rate:":[null,""],"Shipping Method ID:":[null,""],"Shipping Method Name:":[null,""],"Shipping Debug":[null,""],"<strong>\"%2$s\" is missing weight, length, width, or height.</strong><br />Shipping rates cannot be calculated. <a href=\"%1$s\">Enter dimensions and weight for %2$s</a> so your customers can purchase this item.":[null,""],"Unable to send request to WooCommerce Shipping & Tax server. The timestamp generated for the signature is too old.":[null,""],"Unable to send request to WooCommerce Shipping & Tax server. Jetpack Token is malformed.":[null,""],"Unable to send request to WooCommerce Shipping & Tax server. Jetpack Token is missing":[null,""],"Error: The WooCommerce Shipping & Tax server returned: %1$s %2$s ( %3$d )":[null,""],"Error: The WooCommerce Shipping & Tax server returned ( %d ) and an empty response body.":[null,""],"Error: The WooCommerce Shipping & Tax server returned HTTP code: %d":[null,""],"Unable to encode body for request to WooCommerce Shipping & Tax server.":[null,""],"Unable to send request to WooCommerce Shipping & Tax server. Body must be an array.":[null,""],"Unable to send request to WooCommerce Shipping & Tax server. Jetpack connection does not implement get_access_token.":[null,""],"Unable to send request to WooCommerce Shipping & Tax server. Jetpack_Data was not found.":[null,""],"No shipping rate could be calculated. No items in the package are shippable.":[null,""],"Product ( ID: %d ) is missing a dimension value. Shipping rates cannot be calculated.":[null,""],"Product ( ID: %d ) did not include a weight. Shipping rates cannot be calculated.":[null,""],"Packing log:":[null,""],"Received rate: %1$s (%2$s)":[null,""],"Your customer selected {{shippingMethod/}}":[null,""],"Total rate: %(total)s":[null,""],"%(serviceName)s: %(rate)s":[null,""],"No rates found":[null,""],"WooCommerce Shipping gives you access to USPS Commercial Pricing, which is discounted over Retail rates.":[null,""],"more info":[null,""],"ITN":[null,""],"Sanitary / Phytosanitary inspection":[null,""],"Quarantine":[null,""],"None":[null,""],"Restriction type":[null,""],"Details":[null,""],"Sample":[null,""],"Gift":[null,""],"Documents":[null,""],"Merchandise":[null,""],"Contents type":[null,""],"Return to sender if package is unable to be delivered":[null,""],"Value (per unit)":[null,""],"Weight (per unit)":[null,""],"Save customs form":[null,""],"Customs":[null,""],"Use address as entered":[null,""],"View on Google Maps":[null,""],"Verify with USPS":[null,""],"Automatic verification failed for this address. It may still be a valid address \\u2014 use the tools below to manually verify.":[null,""],"We were unable to automatically verify the address.":[null,""],"We were unable to automatically verify the address \\u2014 %(error)s.":[null,""],"You've edited the address, please revalidate it for accurate rates":[null,""],"Verify address":[null,""],"%(message)s. Please modify the address and try again.":[null,""],"View details":[null,""],"Items":[null,""],"Package":[null,""],"Receipt":[null,""],"Label #%(labelIndex)s details":[null,""],"{{icon/}} Delete this package":[null,""],"Done":[null,""],"Add boxes, envelopes, and other packages you use most frequently":[null,""],"Remove":[null,""],"Edit":[null,""],"Weight of empty package":[null,""],"Unique package name":[null,""],"Envelope":[null,""],"Box":[null,""],"This field is required.":[null,""],"Payment":[null,""],"Email the label purchase receipts to %(ownerName)s (%(ownerLogin)s) at %(ownerEmail)s":[null,""],"Email Receipts":[null,""],"To purchase shipping labels, choose a credit card you have on file or add a new card.":[null,""],"Choose a different card":[null,""],"To purchase shipping labels, add a credit card.":[null,""],"We'll charge the credit card on your account (%(card)s) to pay for the labels you print":[null,""],"Credit cards are retrieved from the following WordPress.com account: %(wpcomLogin)s <%(wpcomEmail)s>":[null,""],"Only the site owner can change these settings. Please contact %(ownerName)s (%(ownerLogin)s) to change the shipping label settings.":[null,""],"Only the site owner can manage shipping label payment methods. Please contact %(ownerName)s (%(ownerLogin)s) to manage payment methods.":[null,""],"%(card)s ****%(digits)s":[null,""],"Print shipping labels yourself and save a trip to the post office":[null,""],"H":[null,""],"W":[null,""],"L":[null,""],"Disconnect":[null,""],"Activate":[null,""],"No activity yet":[null,""],"Note":[null,""],"Refunded %(amount)s":[null,""],"%(service)s label (#%(labelNum)d) refund rejected":[null,""],"%(service)s label (#%(labelNum)d) refunded (%(amount)s)":[null,""],"%(service)s label (#%(labelNum)d) refund requested (%(amount)s)":[null,""],"Note sent to customer":[null,""],"Internal note":[null,""],"Show notes from %(date)s":[null,""],"%(count)s event":["%(count)s events","",""],"WeChat Pay":[null,""],"Toggle menu":[null,""],"Return to Order #%(orderId)s":[null,""],"Our team is here for you. View our {{docsA}}support docs{{/docsA}} or {{ticketA}}open a support ticket{{/ticketA}}.":[null,""],"Logging":[null,""],"No services configured. {{a}}Add a shipping service{{/a}}":[null,""],"Edit service settings":[null,""],"Request was made %s - check logs below or {{a}}edit service settings{{/a}}":[null,""],"Copy for support":[null,""],"Last %s entry. {{a}}Show full log{{/a}}":["Last %s entries. {{a}}Show full log{{/a}}","",""],"Log tail copied to clipboard":[null,""],"You have unsaved changes. Are you sure you want to leave this page?":[null,""],"Value ($ per unit)":[null,""],"Weight (%s per unit)":[null,""],"Description":[null,""],"Country where the product was manufactured or assembled":[null,""],"Origin country":[null,""],"USPS":[null,""],"Optional":[null,""],"Retry":[null,""],"shipping label printing":[null,""],"shipping label printing and smoother payment setup":[null,""],"automated tax calculation and shipping label printing":[null,""],"automated tax calculation, shipping label printing, and smoother payment setup":[null,""],"Data resource description.":[null,""],"Data resource ID.":[null,""],"List of supported currencies.":[null,""],"List of supported states in a given country.":[null,""],"List of supported continents, countries, and states.":[null,""],"Sorry, you cannot view this resource.":[null,""],"Sorry, you cannot list resources.":[null,""],"The unit weights are defined in for this country.":[null,""],"Thousands separator for displayed prices in this country.":[null,""],"Full name of state.":[null,""],"State code.":[null,""],"List of states in this country.":[null,""],"Number of decimal points shown in displayed prices for this country.":[null,""],"Full name of country.":[null,""],"The unit lengths are defined in for this country.":[null,""],"Decimal separator for displayed prices for this country.":[null,""],"Currency symbol position for this country.":[null,""],"Default ISO4127 alpha-3 currency code for the country.":[null,""],"ISO3166 alpha-2 country code.":[null,""],"List of countries on this continent.":[null,""],"Full name of continent.":[null,""],"There are no locations matching these parameters.":[null,""],"2 character continent code.":[null,""],"Shipping label tracking number":[null,""],"Shipping label service":[null,""],"Warning: Erasing personal data will cause the ability to reprint or refund WooCommerce Shipping & Tax shipping labels to be lost on the affected orders.":[null,""],"By using this extension, you may be storing personal data or sharing data with external services. <a href=\"%s\" target=\"_blank\">Learn more about how this works, including what you may want to include in your privacy policy.</a>":[null,""],"There was a problem updating your saved credit cards.":[null,""],"No labels found for this period":[null,""],"Total":[null,""],"Refund":[null,""],"Price":[null,""],"Order":[null,""],"Time":[null,""],"Requested":[null,""],"Last 7 days":[null,""],"This month":[null,""],"Last month":[null,""],"Year":[null,""],"Export CSV":[null,""],"Other Log":[null,""],"Taxes Log":[null,""],"Shipping Log":[null,""],"Display troubleshooting information on the Cart and Checkout pages.":[null,""],"Write diagnostic messages to log files. Helpful when contacting support.":[null,""],"Enter your email address at which to accept payments. You'll need to link your own account in order to perform anything other than \"sale\" transactions.":[null,""],"Payment Email":[null,""],"To authenticate payments with WooCommerce Shipping & Tax, <a href=\"%s\">click here</a>.":[null,""],"Payments will be authenticated by WooCommerce Shipping & Tax and directed to the following email address. To disable this feature and link a PayPal account, <a href=\"%s\">click here</a>.":[null,""],"%s (Note that \"authorizing payment only\" requires linking a PayPal account.)":[null,""],"Link account":[null,""],"Link a new or existing PayPal account to make sure future orders are marked “Processing” instead of “On hold”, and so refunds can be issued without leaving WooCommerce.":[null,""],"Link your PayPal account":[null,""],"To issue refunds via PayPal Checkout, you will need to <a href=\"%s\">link a PayPal account</a> with the email address that received this payment.":[null,""],"Link a PayPal account":[null,""],"Refresh":[null,""],"Tracking number":[null,""],"Provider":[null,""],"WooCommerce Shipping & Tax is almost ready to go! Once you connect Jetpack you'll have access to %s.":[null,""],"Hosted services for WooCommerce: automated tax calculation, shipping label printing, and smoother payment setup.":[null,""],"Tax Class":[null,""],"Shipping":[null,""],"Compound":[null,""],"Priority":[null,""],"Tax Name":[null,""],"Rate %":[null,""],"ZIP/Postcode":[null,""],"State Code":[null,""],"Country Code":[null,""],"Enable automated taxes":[null,""],"Disable automated taxes":[null,""],"Automated taxes":[null,""],"By clicking \"%1$s\", you agree to the <a href=\"%2$s\">Terms of Service</a> and to <a href=\"%3$s\">share certain data and settings</a> with WordPress.com and/or third parties.":[null,""],"Setup complete.":[null,""],"You can now enjoy %s.":[null,""],"WooCommerce Shipping & Tax is almost ready to go! Once you connect your store you'll have access to %s.":[null,""],"automated tax calculation":[null,""],"smoother payment setup":[null,""],"automated tax calculation and smoother payment setup":[null,""],"Required":[null,"Obligatoire"],"Your shipping settings have been saved.":[null,"Vos paramètres d’étiquette expédition ont été enregistrées."],"Unable to save your shipping settings. Please try again.":[null,"Impossible d’enregistrer vos paramètres d’étiquette expédition. Veuillez essayer de nouveau."],"Dimensions":[null,"Dimensions"],"Close":[null,"Fermer"],"Packages to be Shipped":[null,"Emballages a expédier"],"Add to a New Package":[null,"Ajouter à un nouvel emballage"],"Add items":[null,"Ajouter des articles"],"Individually Shipped Item":[null,"Article livré individuellement"],"Item Dimensions":[null,"Dimensions de l'article"],"Please select a package":[null,"Veuillez sélectionner un emballage"],"Service schemas were not loaded":[null,"Schémas de service non chargés"],"Bad request":[null,"Mauvaise demande"],"Order not found":[null,"Commande introuvable"],"Got it, thanks!":[null,"J’ai compris, merci !"],"Activate Jetpack and connect":[null,"Activer le Jetpack et connecter"],"Install Jetpack and connect":[null,"Installer le Jetpack et connecter"],"Something went wrong. Please try connecting to Jetpack manually, or contact support on the WordPress.org forums.":[null,"Quelque chose s'est mal passé. Essayez de vous connecter manuellement à Jetpack ou contactez l'assistance sur les forums WordPress.org."],"Connecting...":[null,"Connexion..."],"Activating...":[null,"Activation…"],"When you're ready, purchase and print discounted labels from %s right here.":[null,""],"Discounted Shipping Labels":[null,"Étiquettes d'expédition à tarif réduit"],"American Express":[null,"American Express"],"Discover":[null,"Discover"],"MasterCard":[null,"MasterCard"],"VISA":[null,"VISA"],"PayPal":[null,"PayPal"],"Add another credit card":[null,"Ajouter une autre carte de crédit"],"%(selectedCount)d package selected":["%(selectedCount)d packages selected","%(selectedCount)d emballage sélectionné","%(selectedCount)d emballages sélectionnés"],"Unable to get your settings. Please refresh the page to try again.":[null,"Impossible d’obtenir vos paramètres. Veuillez actualiser la page pour essayer à nouveau."],"%(numSelected)d service selected":["%(numSelected)d services selected","%(numSelected)d service sélectionné","%(numSelected)d services sélectionnés"],"Add and edit saved packages using the {{a}}Packaging Manager{{/a}}.":[null,"Ajouter et modifier des emballages enregistrés en utilisant le {{a}}Gestionnaire d'emballage{{/a}}."],"Tracking #: {{trackingLink/}}":[null,"Suivi #: {{trackingLink/}}"],"%(item)s from {{pckg/}}":[null,"%(item)s de {{pckg/}}"],"Which items would you like to add to {{pckg/}}?":[null,"Quel article souhaitez-vous ajouter à {{pckg/}}?"],"1 item in 1 package: %(weight)s %(unit)s total":[null,"1 article dans 1 emballage : %(weight)s %(unit)s total"],"%(itemsCount)d items in 1 package: %(weight)s %(unit)s total":[null,"%(itemsCount)d articles dans 1 emballage : %(weight)s %(unit)s total"],"%(itemsCount)d items in %(packageCount)d packages: %(weight)s %(unit)s total":[null,"%(itemsCount)d articles dans %(packageCount)d emballages : %(weight)s %(unit)s total"],"{{itemLink/}} is currently saved for a later shipment.":[null,"{{itemLink/}} est actuellement enregistrée pour un envoi ultérieur."],"{{itemLink/}} is currently shipped in its original packaging.":[null,"{{itemLink/}} est actuellement livré dans son emballage d’origine."],"{{itemLink/}} is currently in {{pckg/}}.":[null,"{{itemLink/}} est actuellement dans {{pckg/}}."],"Choose rate: %(pckg)s":[null,"Choisir le taux : %(pckg)s"],"Refund label (-%(amount)s)":[null,"Rembourser l'étiquette (-%(amount)s)"],"Where would you like to move it?":[null,"Où souhaitez-vous le déplacer?"],"Unsaved changes made to packages":[null,"Changements effectués non enregistrés sur les emballages"],"There are no items in this package.":[null,"Il n'y a aucun article dans cet emballage."],"Ship in original packaging":[null,"Expédier dans l'emballage d’origine"],"Request refund":[null,"Demande de remboursement"],"Reprint":[null,"Réimprimer"],"Paper size":[null,"Format de papier"],"No packages selected":[null,"Aucun emballages sélectionnés"],"Move":[null,"Déplacer"],"Move item":[null,"Déplacer l'article"],"Increase the rates calculated by the carrier to account for packaging and handling costs. You can also add a negative amount to save your customers money.":[null,"Augmenter les taux calculés par le transporteur pour tenir compte de l’emballage et de manutention. Vous pouvez également ajouter un montant négatif pour économiser vos clients."],"Create new label":[null,"Créer une nouvelle étiquette"],"All packages selected":[null,"Tous les emballages sélectionnés"],"Add":[null,"Ajouter"],"Add item":[null,"Ajouter un article"],"Add a credit card":[null,"Ajouter une carte de crédit"],"#%d - [Deleted product]":[null,"#%d - [produit supprimé]"],"#%1$d - %2$s":[null,"%1$d - %2$s"],"<a href=\"%s\">Support</a>":[null,"<a href=\"%s\">Assistance</a>"],"There was an error installing Jetpack. Please try installing it manually.":[null,"Une erreur s'est produite lors de l'installation de Jetpack. S'il vous plaît essayez d'installer manuellement."],"Shipping Labels":[null,"Étiquette d'expédition"],"https://woocommerce.com/":[null,"https://woocommerce.com/"],"Phone":[null,"Téléphone"],"Connect":[null,"Connexion"],"Save Settings":[null,"Sauvegarder les paramètres"],"Your changes have been saved.":[null,"Vos modifications ont été sauvegardées."],"There was a problem with one or more entries. Please fix the errors below and try saving again.":[null,"Il y avait un problème avec une ou plusieurs entrées. S’il vous plaît corriger les erreurs ci-dessous et essayez d’enregistrer à nouveau."],"Expand":[null,"Étendre"],"Dismiss":[null,"Rejeter"],"You have unsaved changes.":[null,"Vous avez des modifications non enregistrées."],"Type of package":[null,"Type d'emballage"],"Add package":["Add packages","Ajouter un emballage",""],"Invalid value.":[null,"Valeur non valide"],"This field is required":[null,""],"Package name":[null,"Nom de l'emballage"],"This field must be unique":[null,"Ce champ doit être unique"],"Unable to save your shipping packages. Please try again.":[null,"Impossible d'enregistrer vos emballages. Veuillez essayer de nouveau."],"Save changes":[null,"Enregistrer les changements"],"Untitled":[null,"Sans titre"],"Dimensions (L x W x H)":[null,""],"All services selected":[null,"Tous les services sélectionnés"],"Expand Services":[null,"Accroitre les services"],"Service":[null,"Service"],"Price adjustment":[null,"Ajustement du prix"],"Saved Packages":[null,"Emballages enregistrés"],"Tracking":[null,""],"Create shipping label":["Create shipping labels","Créer l'étiquette d'expédition",""],"Name":[null,"Nom"],"Company":[null,"Entreprise"],"Address":[null,"Adresse"],"City":[null,"Ville"],"State":[null,"Province"],"Country":[null,"Pays"],"Invalid address":[null,"Adresse non valide"],"Origin address":[null,"Adresse d’origine"],"Destination address":[null,"Adresse de destination"],"We have slightly modified the address entered. If correct, please use the suggested address to ensure accurate delivery.":[null,"Nous avons légèrement modifié l’adresse saisie. Si elle est correcte, veuillez utiliser l’adresse suggéré d’assurer une prestation précise."],"Address entered":[null,"Adresse saisie"],"Edit address":[null,"Modifier l'adresse"],"Suggested address":[null,"Adresse suggérée"],"Use selected address":[null,"Utilisez l’adresse sélectionnée"],"Use these packages":[null,"Utilisez ces emballages"],"The service and rate chosen by the customer at checkout is not available. Please choose another.":[null,"Le service et le taux choisi par le client à la caisse n’est pas disponible. Veuillez choisir un autre."],"Request a refund":[null,"Demande de remboursement"],"You can request a refund for a shipping label that has not been used to ship a package. It will take at least %(days)s days to process.":[null,""],"Purchase date":[null,"Date d'achat"],"Amount eligible for refund":[null,"Montant admissible au remboursement"],"Reprint shipping label":[null,"Réimprimer l'étiquette d'expédition"],"If there was a printing error when you purchased the label, you can print it again.":[null,"S’il y avait une erreur d’impression lorsque vous aviez acheté l’étiquette, vous pouvez l’imprimer à nouveau."],"NOTE: If you already used the label in a package, printing and using it again is a violation of our terms of service and may result in criminal charges.":[null,"REMARQUE: Si vous avez déjà utilisé l'étiquette sur un colis, l'imprimer et l'utiliser à nouveau constitue une violation de nos conditions d'utilisation et peut entraîner des poursuites pénales."],"Print":[null,"Imprimer"],"Cancel":[null,"Annuler"],"N/A":[null,"N/D"],"More":[null,"Plus"],"Invalid PDF request.":[null,"Demande PDF non valide."],"Unknown package":[null,"Emballage inconnu"],"Individual packaging":[null,"Emballage individuel"],"Unable to update service settings. Validation failed. %s":[null,"Impossible de mettre à jour les paramètres du service. La validation a échoué. %s"],"Unable to update service settings. The form data could not be read.":[null,"Impossible de mettre à jour les paramètres du service. Les données de formulaire n'ont pas pu être lues."],"Unable to update service settings. Form data is missing service ID.":[null,"Impossible de mettre à jour les paramètres du service. Les données de formulaire n'ont pas d'ID de service."],"Unable to update settings. The form data could not be read.":[null,"Impossible de mettre à jour les paramètres. Les données de formulaire n'ont pas pu être lues."],"Unable to update settings. %s":[null,"Impossible de mettre à jour les paramètres. %s"],"Packaging":[null,"Emballage"],"Section not loading? Visit the <a href=\"%s\">status page</a> for troubleshooting steps.":[null,"La section ne se charge pas? Consultez la <a href=\"%s\">page d'état </a> pour connaître les étapes de dépannage."],"Note: Jetpack development mode is enabled on this site. This site will not be able to obtain payment methods from WooCommerce Shipping & Tax production servers.":[null,""],"Note: Jetpack is connected, but development mode is also enabled on this site. Please disable development mode.":[null,"Remarque : Jetpack est connecté, mais le mode de développement est activé sur ce site. Veuillez désactiver le mode de développement."],"Shipping Label":[null,"Etiquette de l'expédition"],"yd":[null,"verge"],"in":[null,"po"],"mm":[null,"mm"],"cm":[null,"cm"],"m":[null,"m"],"oz":[null,"oz"],"lbs":[null,"lbs"],"g":[null,"g"],"kg":[null,"kg"],"An invalid service ID was received.":[null,"Un ID de service non valide a été reçu."],"An invalid service instance was received.":[null,"Une instance de service non valide a été reçue."],"Rest of the World":[null,"Reste du monde"],"Support":[null,"Soutien"],"Debug":[null,"Débogage"],"Services":[null,"Services"],"Need help?":[null,"Besoin d’aide?"],"Log is empty":[null,"Le journal est vide"],"Disabled":[null,"Désactivé"],"Enabled":[null,"Activé"],"%s Shipping Zone":[null,"%s Zone d'expédition"],"The most recent rate request failed":[null,"La plus récente demande de taux a échoué"],"The most recent rate request was successful":[null,"La plus récente demande de tarif a réussi"],"No rate requests have yet been made for this service":[null,"Aucune demande de tarif n’ont encore eu lieu pour ce service"],"Setup for this service has not yet been completed":[null,"La configuration pour ce service n’est pas encore achevée"],"Service data is up-to-date":[null,"Données de service à jour"],"Service data was found, but is more than one day old":[null,"Les données de service ont été trouvées, mais vieux d'un jour"],"Service data was found, but is more than three days old":[null,"Les données de service ont été trouvées, mais elles datent de plus de trois jours"],"Service data found, but may be out of date":[null,""],"No service data available":[null,"Aucune données de service n'est disponible"],"Jetpack":[null,"Jetpack"],"Jetpack %s is connected and working correctly":[null,"Jetpack %s est branché et fonctionne correctement"],"This is a Jetpack staging site":[null,"Il s’agit d’un site intermédiaire Jetpack"],"Jetpack is not connected to WordPress.com. Make sure the Jetpack plugin is installed, activated, and connected.":[null,"Jetpack n’est pas connecté à WordPress.com. Assurez-vous que le plugin Jetpack est installé, activé et connecté."],"Jetpack %1$s or higher is required (You are running %2$s)":[null,""],"Please install and activate the Jetpack plugin, version %s or higher":[null,"Veuillez installer et activer l'extension de Jetpack, version %s ou supérieur"],"WooCommerce":[null,"WooCommerce"],"WooCommerce %s is configured correctly":[null,"WooCommerce %s est configuré correctement"],"Please set Base Location in WooCommerce Settings > General":[null,"S’il vous plaît définir l'emplacement de base dans Paramètres WooCommerce > Général"],"WooCommerce %1$s or higher is required (You are running %2$s)":[null,""],"Dismiss this notice":[null,"Cacher cet avertissement"],"ERROR: Your site has a problem connecting to the WooCommerce Shipping & Tax API. Please make sure your Jetpack connection is working.":[null,""],"Your site is succesfully communicating to the WooCommerce Shipping & Tax API.":[null,""],"This will test your WooCommerce Shipping & Tax connection to ensure everything is working correctly":[null,""],"Test Connection":[null,"Test de connexion"],"The WooCommerce Shipping & Tax brandname\u0004WooCommerce Shipping & Tax":[null,""],"The WooCommerce Shipping & Tax brandname\u0004WooCommerce Shipping":[null,""],"%s - ZIP/Postal code checkout field label\u0004Invalid %s entered.":[null,""],"%s - ZIP/Postal code checkout field label\u0004%s does not match the selected state.":[null,""],"date is of the form MM/YY\u0004Expires %(date)s":[null,"Expire %(date)s"],"A service with an unknown title and unknown method_title\u0004Unknown":[null,"Inconnu"],"This section displays the overall health of WooCommerce Shipping & Tax and the things it depends on\u0004Health":[null,""]}
i18n/languages/woocommerce-services-fr_CA.mo CHANGED
Binary file
i18n/languages/woocommerce-services-fr_CA.po CHANGED
@@ -51,7 +51,7 @@ msgstr ""
51
  msgid "Live rates at checkout"
52
  msgstr ""
53
 
54
- #: i18n/strings.php:354
55
  msgid "Last updated %s."
56
  msgstr ""
57
 
@@ -206,7 +206,7 @@ msgstr ""
206
  msgid "WooCommerce Helper auth is missing"
207
  msgstr ""
208
 
209
- #: i18n/strings.php:364 i18n/strings.php:428
210
  msgid "USPS labels without tracking are not eligible for refund."
211
  msgstr ""
212
 
@@ -226,11 +226,11 @@ msgstr ""
226
  msgid "Loading"
227
  msgstr ""
228
 
229
- #: i18n/strings.php:353
230
  msgid "WooCommerce Shipping & Tax Data"
231
  msgstr ""
232
 
233
- #: i18n/strings.php:372 i18n/strings.php:436
234
  msgid "Print customs form"
235
  msgstr ""
236
 
@@ -277,8 +277,8 @@ msgid "Invalid WooCommerce Shipping & Tax service slug provided"
277
  msgstr ""
278
 
279
  #. Plugin Name of the plugin
280
- #: classes/class-wc-connect-privacy.php:36
281
  #: classes/class-wc-connect-settings-pages.php:123
 
282
  msgid "WooCommerce Shipping & Tax"
283
  msgstr ""
284
 
@@ -411,7 +411,7 @@ msgstr ""
411
  msgid "Validating address\\u2026"
412
  msgstr ""
413
 
414
- #: i18n/strings.php:326 i18n/strings.php:405 i18n/strings.php:469
415
  msgid "Purchasing\\u2026"
416
  msgstr ""
417
 
@@ -423,7 +423,7 @@ msgstr ""
423
  msgid "Package %(index)s \\u2013 %(title)s"
424
  msgstr ""
425
 
426
- #: i18n/strings.php:6 i18n/strings.php:170 i18n/strings.php:482
427
  msgid "Saving\\u2026"
428
  msgstr ""
429
 
@@ -437,27 +437,27 @@ msgstr ""
437
  msgid "Your tax rates and settings will be automatically configured for %1$s, %2$s. <a href=\"https://docs.woocommerce.com/document/setting-up-taxes-in-woocommerce/#section-12\">Learn more about setting up tax rates for additional nexuses</a>"
438
  msgstr ""
439
 
440
- #: i18n/strings.php:480
441
  msgid "%(itemCount)d item is ready to be fulfilled"
442
  msgid_plural "%(itemCount)d items are ready to be fulfilled"
443
  msgstr[0] ""
444
  msgstr[1] ""
445
 
446
- #: i18n/strings.php:479
447
  msgid "%(itemCount)d item was fulfilled on {{span}}%(createdDate)s{{/span}}"
448
  msgid_plural "%(itemCount)d items were fulfilled on {{span}}%(createdDate)s{{/span}}"
449
  msgstr[0] ""
450
  msgstr[1] ""
451
 
452
- #: i18n/strings.php:371 i18n/strings.php:435
453
  msgid "Schedule a pickup"
454
  msgstr ""
455
 
456
- #: i18n/strings.php:367 i18n/strings.php:431
457
  msgid "Label images older than 180 days are deleted by our technology partners for general security and data privacy concerns."
458
  msgstr ""
459
 
460
- #: i18n/strings.php:363 i18n/strings.php:427
461
  msgid "Labels older than 30 days cannot be refunded."
462
  msgstr ""
463
 
@@ -478,26 +478,26 @@ msgstr ""
478
  msgid "WooCommerce Shipping & Tax requires the WooCommerce plugin to be installed and active. You can download %s here."
479
  msgstr ""
480
 
481
- #: i18n/strings.php:408
482
  msgid "No tracking information available at this time"
483
  msgstr ""
484
 
485
- #: i18n/strings.php:478
486
  msgid "Connection error: unable to create label at this time"
487
  msgstr ""
488
 
489
- #: i18n/strings.php:474 i18n/strings.php:476
490
  msgid "Track Package"
491
  msgid_plural "Track Packages"
492
  msgstr[0] ""
493
  msgstr[1] ""
494
 
495
- #: i18n/strings.php:426
496
  msgid "Which package would you like to track?"
497
  msgstr ""
498
 
499
- #: i18n/strings.php:373 i18n/strings.php:404 i18n/strings.php:437
500
- #: i18n/strings.php:468
501
  msgid "%(service)s label (#%(labelIndex)d)"
502
  msgstr ""
503
 
@@ -585,7 +585,7 @@ msgstr ""
585
  msgid "0.0"
586
  msgstr ""
587
 
588
- #: woocommerce-services.php:1449
589
  msgid "Shipment Tracking"
590
  msgstr ""
591
 
@@ -597,23 +597,23 @@ msgstr ""
597
  msgid "Customs information incomplete"
598
  msgstr ""
599
 
600
- #: woocommerce-services.php:1492
601
  msgid "Packing Log:"
602
  msgstr ""
603
 
604
- #: woocommerce-services.php:1479
605
  msgid "Chosen Rate:"
606
  msgstr ""
607
 
608
- #: woocommerce-services.php:1475
609
  msgid "Shipping Method ID:"
610
  msgstr ""
611
 
612
- #: woocommerce-services.php:1471
613
  msgid "Shipping Method Name:"
614
  msgstr ""
615
 
616
- #: woocommerce-services.php:1455
617
  msgid "Shipping Debug"
618
  msgstr ""
619
 
@@ -621,15 +621,15 @@ msgstr ""
621
  msgid "<strong>\"%2$s\" is missing weight, length, width, or height.</strong><br />Shipping rates cannot be calculated. <a href=\"%1$s\">Enter dimensions and weight for %2$s</a> so your customers can purchase this item."
622
  msgstr ""
623
 
624
- #: classes/class-wc-connect-api-client.php:595
625
  msgid "Unable to send request to WooCommerce Shipping & Tax server. The timestamp generated for the signature is too old."
626
  msgstr ""
627
 
628
- #: classes/class-wc-connect-api-client.php:534
629
  msgid "Unable to send request to WooCommerce Shipping & Tax server. Jetpack Token is malformed."
630
  msgstr ""
631
 
632
- #: classes/class-wc-connect-api-client.php:527
633
  msgid "Unable to send request to WooCommerce Shipping & Tax server. Jetpack Token is missing"
634
  msgstr ""
635
 
@@ -663,7 +663,6 @@ msgid "Unable to send request to WooCommerce Shipping & Tax server. Jetpack_Data
663
  msgstr ""
664
 
665
  #: classes/class-wc-connect-api-client.php:160
666
- #: classes/class-wc-connect-api-client.php:187
667
  msgid "No shipping rate could be calculated. No items in the package are shippable."
668
  msgstr ""
669
 
@@ -812,23 +811,23 @@ msgstr ""
812
  msgid "%(message)s. Please modify the address and try again."
813
  msgstr ""
814
 
815
- #: i18n/strings.php:370 i18n/strings.php:434
816
  msgid "View details"
817
  msgstr ""
818
 
819
- #: i18n/strings.php:402 i18n/strings.php:466
820
  msgid "Items"
821
  msgstr ""
822
 
823
- #: i18n/strings.php:401 i18n/strings.php:465
824
  msgid "Package"
825
  msgstr ""
826
 
827
- #: i18n/strings.php:399 i18n/strings.php:463
828
  msgid "Receipt"
829
  msgstr ""
830
 
831
- #: i18n/strings.php:398 i18n/strings.php:462
832
  msgid "Label #%(labelIndex)s details"
833
  msgstr ""
834
 
@@ -943,43 +942,43 @@ msgstr ""
943
  msgid "Activate"
944
  msgstr ""
945
 
946
- #: i18n/strings.php:375 i18n/strings.php:439
947
  msgid "No activity yet"
948
  msgstr ""
949
 
950
- #: i18n/strings.php:383 i18n/strings.php:447
951
  msgid "Note"
952
  msgstr ""
953
 
954
- #: i18n/strings.php:382 i18n/strings.php:446
955
  msgid "Refunded %(amount)s"
956
  msgstr ""
957
 
958
- #: i18n/strings.php:380 i18n/strings.php:444
959
  msgid "%(service)s label (#%(labelNum)d) refund rejected"
960
  msgstr ""
961
 
962
- #: i18n/strings.php:379 i18n/strings.php:443
963
  msgid "%(service)s label (#%(labelNum)d) refunded (%(amount)s)"
964
  msgstr ""
965
 
966
- #: i18n/strings.php:378 i18n/strings.php:442
967
  msgid "%(service)s label (#%(labelNum)d) refund requested (%(amount)s)"
968
  msgstr ""
969
 
970
- #: i18n/strings.php:377 i18n/strings.php:441
971
  msgid "Note sent to customer"
972
  msgstr ""
973
 
974
- #: i18n/strings.php:376 i18n/strings.php:440
975
  msgid "Internal note"
976
  msgstr ""
977
 
978
- #: i18n/strings.php:407 i18n/strings.php:471
979
  msgid "Show notes from %(date)s"
980
  msgstr ""
981
 
982
- #: i18n/strings.php:406 i18n/strings.php:470
983
  msgid "%(count)s event"
984
  msgid_plural "%(count)s events"
985
  msgstr[0] ""
@@ -990,7 +989,7 @@ msgstr[1] ""
990
  msgid "WeChat Pay"
991
  msgstr ""
992
 
993
- #: i18n/strings.php:384 i18n/strings.php:448
994
  msgid "Toggle menu"
995
  msgstr ""
996
 
@@ -998,41 +997,41 @@ msgstr ""
998
  msgid "Return to Order #%(orderId)s"
999
  msgstr ""
1000
 
1001
- #: i18n/strings.php:344
1002
  msgid "Our team is here for you. View our {{docsA}}support docs{{/docsA}} or {{ticketA}}open a support ticket{{/ticketA}}."
1003
  msgstr ""
1004
 
1005
- #: i18n/strings.php:335
1006
  msgid "Logging"
1007
  msgstr ""
1008
 
1009
- #: i18n/strings.php:362
1010
  msgid "No services configured. {{a}}Add a shipping service{{/a}}"
1011
  msgstr ""
1012
 
1013
- #: i18n/strings.php:360
1014
  msgid "Edit service settings"
1015
  msgstr ""
1016
 
1017
- #: i18n/strings.php:359
1018
  msgid "Request was made %s - check logs below or {{a}}edit service settings{{/a}}"
1019
  msgstr ""
1020
 
1021
- #: i18n/strings.php:358
1022
  msgid "Copy for support"
1023
  msgstr ""
1024
 
1025
- #: i18n/strings.php:357
1026
  msgid "Last %s entry. {{a}}Show full log{{/a}}"
1027
  msgid_plural "Last %s entries. {{a}}Show full log{{/a}}"
1028
  msgstr[0] ""
1029
  msgstr[1] ""
1030
 
1031
- #: i18n/strings.php:356
1032
  msgid "Log tail copied to clipboard"
1033
  msgstr ""
1034
 
1035
- #: i18n/strings.php:11 i18n/strings.php:414
1036
  msgid "You have unsaved changes. Are you sure you want to leave this page?"
1037
  msgstr ""
1038
 
@@ -1061,7 +1060,7 @@ msgid "USPS"
1061
  msgstr ""
1062
 
1063
  #: i18n/strings.php:5 i18n/strings.php:169 i18n/strings.php:295
1064
- #: i18n/strings.php:329 i18n/strings.php:410
1065
  msgid "Optional"
1066
  msgstr ""
1067
 
@@ -1216,8 +1215,8 @@ msgstr ""
1216
  msgid "Total"
1217
  msgstr ""
1218
 
1219
- #: classes/class-wc-connect-label-reports.php:170 i18n/strings.php:381
1220
- #: i18n/strings.php:445
1221
  msgid "Refund"
1222
  msgstr ""
1223
 
@@ -1257,23 +1256,23 @@ msgstr ""
1257
  msgid "Export CSV"
1258
  msgstr ""
1259
 
1260
- #: i18n/strings.php:341
1261
  msgid "Other Log"
1262
  msgstr ""
1263
 
1264
- #: i18n/strings.php:340
1265
  msgid "Taxes Log"
1266
  msgstr ""
1267
 
1268
- #: i18n/strings.php:339
1269
  msgid "Shipping Log"
1270
  msgstr ""
1271
 
1272
- #: i18n/strings.php:332
1273
  msgid "Display troubleshooting information on the Cart and Checkout pages."
1274
  msgstr ""
1275
 
1276
- #: i18n/strings.php:336
1277
  msgid "Write diagnostic messages to log files. Helpful when contacting support."
1278
  msgstr ""
1279
 
@@ -1317,15 +1316,15 @@ msgstr ""
1317
  msgid "Link a PayPal account"
1318
  msgstr ""
1319
 
1320
- #: i18n/strings.php:355
1321
  msgid "Refresh"
1322
  msgstr ""
1323
 
1324
- #: woocommerce-services.php:1230
1325
  msgid "Tracking number"
1326
  msgstr ""
1327
 
1328
- #: woocommerce-services.php:1229
1329
  msgid "Provider"
1330
  msgstr ""
1331
 
@@ -1417,7 +1416,7 @@ msgid "automated tax calculation and smoother payment setup"
1417
  msgstr ""
1418
 
1419
  #: classes/class-wc-connect-paypal-ec.php:323 i18n/strings.php:4
1420
- #: i18n/strings.php:168 i18n/strings.php:328 i18n/strings.php:409
1421
  msgid "Required"
1422
  msgstr "Obligatoire"
1423
 
@@ -1433,7 +1432,7 @@ msgstr "Impossible d’enregistrer vos paramètres d’étiquette expédition. V
1433
  msgid "Dimensions"
1434
  msgstr "Dimensions"
1435
 
1436
- #: i18n/strings.php:270 i18n/strings.php:397 i18n/strings.php:461
1437
  msgid "Close"
1438
  msgstr "Fermer"
1439
 
@@ -1544,17 +1543,17 @@ msgstr[1] "%(selectedCount)d emballages sélectionnés"
1544
  msgid "Unable to get your settings. Please refresh the page to try again."
1545
  msgstr "Impossible d’obtenir vos paramètres. Veuillez actualiser la page pour essayer à nouveau."
1546
 
1547
- #: i18n/strings.php:421
1548
  msgid "%(numSelected)d service selected"
1549
  msgid_plural "%(numSelected)d services selected"
1550
  msgstr[0] "%(numSelected)d service sélectionné"
1551
  msgstr[1] "%(numSelected)d services sélectionnés"
1552
 
1553
- #: i18n/strings.php:419
1554
  msgid "Add and edit saved packages using the {{a}}Packaging Manager{{/a}}."
1555
  msgstr "Ajouter et modifier des emballages enregistrés en utilisant le {{a}}Gestionnaire d'emballage{{/a}}."
1556
 
1557
- #: i18n/strings.php:374 i18n/strings.php:438
1558
  msgid "Tracking #: {{trackingLink/}}"
1559
  msgstr "Suivi #: {{trackingLink/}}"
1560
 
@@ -1594,7 +1593,7 @@ msgstr "{{itemLink/}} est actuellement dans {{pckg/}}."
1594
  msgid "Choose rate: %(pckg)s"
1595
  msgstr "Choisir le taux : %(pckg)s"
1596
 
1597
- #: i18n/strings.php:386 i18n/strings.php:450
1598
  msgid "Refund label (-%(amount)s)"
1599
  msgstr "Rembourser l'étiquette (-%(amount)s)"
1600
 
@@ -1614,17 +1613,17 @@ msgstr "Il n'y a aucun article dans cet emballage."
1614
  msgid "Ship in original packaging"
1615
  msgstr "Expédier dans l'emballage d’origine"
1616
 
1617
- #: i18n/strings.php:365 i18n/strings.php:366 i18n/strings.php:429
1618
- #: i18n/strings.php:430
1619
  msgid "Request refund"
1620
  msgstr "Demande de remboursement"
1621
 
1622
- #: i18n/strings.php:368 i18n/strings.php:432
1623
  msgid "Reprint"
1624
  msgstr "Réimprimer"
1625
 
1626
- #: i18n/strings.php:58 i18n/strings.php:309 i18n/strings.php:396
1627
- #: i18n/strings.php:460
1628
  msgid "Paper size"
1629
  msgstr "Format de papier"
1630
 
@@ -1640,11 +1639,11 @@ msgstr "Déplacer"
1640
  msgid "Move item"
1641
  msgstr "Déplacer l'article"
1642
 
1643
- #: i18n/strings.php:425
1644
  msgid "Increase the rates calculated by the carrier to account for packaging and handling costs. You can also add a negative amount to save your customers money."
1645
  msgstr "Augmenter les taux calculés par le transporteur pour tenir compte de l’emballage et de manutention. Vous pouvez également ajouter un montant négatif pour économiser vos clients."
1646
 
1647
- #: i18n/strings.php:475
1648
  msgid "Create new label"
1649
  msgstr "Créer une nouvelle étiquette"
1650
 
@@ -1665,19 +1664,19 @@ msgid "Add a credit card"
1665
  msgstr "Ajouter une carte de crédit"
1666
 
1667
  #. translators: %d: Deleted Product ID
1668
- #: classes/class-wc-connect-compatibility-wc30.php:130
1669
  #: classes/class-wc-connect-compatibility-wc26.php:116
 
1670
  msgid "#%d - [Deleted product]"
1671
  msgstr "#%d - [produit supprimé]"
1672
 
1673
  #. translators: %1$d: Product ID, %2$s: Product Name
1674
- #: classes/class-wc-connect-compatibility-wc30.php:125
1675
  #: classes/class-wc-connect-compatibility-wc26.php:111
 
1676
  msgid "#%1$d - %2$s"
1677
  msgstr "%1$d - %2$s"
1678
 
1679
  #. translators: %s Support url
1680
- #: woocommerce-services.php:1565
1681
  msgid "<a href=\"%s\">Support</a>"
1682
  msgstr "<a href=\"%s\">Assistance</a>"
1683
 
@@ -1685,22 +1684,18 @@ msgstr "<a href=\"%s\">Assistance</a>"
1685
  msgid "There was an error installing Jetpack. Please try installing it manually."
1686
  msgstr "Une erreur s'est produite lors de l'installation de Jetpack. S'il vous plaît essayez d'installer manuellement."
1687
 
1688
- #: woocommerce-services.php:1066 woocommerce-services.php:1069
1689
- #: i18n/strings.php:43
1690
  msgid "Shipping Labels"
1691
  msgstr "Étiquette d'expédition"
1692
 
1693
- #. Author of the plugin
1694
- msgid "Automattic"
1695
- msgstr "Automattic"
1696
-
1697
  #. Plugin URI of the plugin
1698
  #. Author URI of the plugin
1699
  msgid "https://woocommerce.com/"
1700
  msgstr "https://woocommerce.com/"
1701
 
1702
- #: woocommerce-services.php:1515 woocommerce-services.php:1543
1703
- #: i18n/strings.php:143 i18n/strings.php:215
1704
  msgid "Phone"
1705
  msgstr "Téléphone"
1706
 
@@ -1709,15 +1704,15 @@ msgstr "Téléphone"
1709
  msgid "Connect"
1710
  msgstr "Connexion"
1711
 
1712
- #: i18n/strings.php:7 i18n/strings.php:171 i18n/strings.php:483
1713
  msgid "Save Settings"
1714
  msgstr "Sauvegarder les paramètres"
1715
 
1716
- #: i18n/strings.php:415
1717
  msgid "Your changes have been saved."
1718
  msgstr "Vos modifications ont été sauvegardées."
1719
 
1720
- #: i18n/strings.php:416
1721
  msgid "There was a problem with one or more entries. Please fix the errors below and try saving again."
1722
  msgstr "Il y avait un problème avec une ou plusieurs entrées. S’il vous plaît corriger les erreurs ci-dessous et essayez d’enregistrer à nouveau."
1723
 
@@ -1725,11 +1720,11 @@ msgstr "Il y avait un problème avec une ou plusieurs entrées. S’il vous pla
1725
  msgid "Expand"
1726
  msgstr "Étendre"
1727
 
1728
- #: i18n/strings.php:411 i18n/strings.php:481
1729
  msgid "Dismiss"
1730
  msgstr "Rejeter"
1731
 
1732
- #: i18n/strings.php:10 i18n/strings.php:413
1733
  msgid "You have unsaved changes."
1734
  msgstr "Vous avez des modifications non enregistrées."
1735
 
@@ -1764,7 +1759,7 @@ msgstr "Ce champ doit être unique"
1764
  msgid "Unable to save your shipping packages. Please try again."
1765
  msgstr "Impossible d'enregistrer vos emballages. Veuillez essayer de nouveau."
1766
 
1767
- #: i18n/strings.php:41 i18n/strings.php:417
1768
  msgid "Save changes"
1769
  msgstr "Enregistrer les changements"
1770
 
@@ -1776,32 +1771,32 @@ msgstr "Sans titre"
1776
  msgid "Dimensions (L x W x H)"
1777
  msgstr ""
1778
 
1779
- #: i18n/strings.php:420
1780
  msgid "All services selected"
1781
  msgstr "Tous les services sélectionnés"
1782
 
1783
- #: i18n/strings.php:37 i18n/strings.php:199 i18n/strings.php:422
1784
  msgid "Expand Services"
1785
  msgstr "Accroitre les services"
1786
 
1787
- #: classes/class-wc-connect-label-reports.php:167 i18n/strings.php:400
1788
- #: i18n/strings.php:423 i18n/strings.php:464
1789
  msgid "Service"
1790
  msgstr "Service"
1791
 
1792
- #: i18n/strings.php:424
1793
  msgid "Price adjustment"
1794
  msgstr "Ajustement du prix"
1795
 
1796
- #: i18n/strings.php:418
1797
  msgid "Saved Packages"
1798
  msgstr "Emballages enregistrés"
1799
 
1800
- #: woocommerce-services.php:1218 woocommerce-services.php:1225
1801
  msgid "Tracking"
1802
  msgstr ""
1803
 
1804
- #: i18n/strings.php:207 i18n/strings.php:473 i18n/strings.php:477
1805
  msgid "Create shipping label"
1806
  msgid_plural "Create shipping labels"
1807
  msgstr[0] "Créer l'étiquette d'expédition"
@@ -1874,51 +1869,51 @@ msgstr "Utilisez ces emballages"
1874
  msgid "The service and rate chosen by the customer at checkout is not available. Please choose another."
1875
  msgstr "Le service et le taux choisi par le client à la caisse n’est pas disponible. Veuillez choisir un autre."
1876
 
1877
- #: i18n/strings.php:387 i18n/strings.php:451
1878
  msgid "Request a refund"
1879
  msgstr "Demande de remboursement"
1880
 
1881
- #: i18n/strings.php:388 i18n/strings.php:452
1882
  msgid "You can request a refund for a shipping label that has not been used to ship a package. It will take at least %(days)s days to process."
1883
  msgstr ""
1884
 
1885
- #: i18n/strings.php:389 i18n/strings.php:453
1886
  msgid "Purchase date"
1887
  msgstr "Date d'achat"
1888
 
1889
- #: i18n/strings.php:390 i18n/strings.php:454
1890
  msgid "Amount eligible for refund"
1891
  msgstr "Montant admissible au remboursement"
1892
 
1893
- #: i18n/strings.php:369 i18n/strings.php:393 i18n/strings.php:433
1894
- #: i18n/strings.php:457
1895
  msgid "Reprint shipping label"
1896
  msgstr "Réimprimer l'étiquette d'expédition"
1897
 
1898
- #: i18n/strings.php:394 i18n/strings.php:458
1899
  msgid "If there was a printing error when you purchased the label, you can print it again."
1900
  msgstr "S’il y avait une erreur d’impression lorsque vous aviez acheté l’étiquette, vous pouvez l’imprimer à nouveau."
1901
 
1902
- #: i18n/strings.php:395 i18n/strings.php:459
1903
  msgid "NOTE: If you already used the label in a package, printing and using it again is a violation of our terms of service and may result in criminal charges."
1904
  msgstr "REMARQUE: Si vous avez déjà utilisé l'étiquette sur un colis, l'imprimer et l'utiliser à nouveau constitue une violation de nos conditions d'utilisation et peut entraîner des poursuites pénales."
1905
 
1906
- #: i18n/strings.php:325 i18n/strings.php:392 i18n/strings.php:456
1907
  msgid "Print"
1908
  msgstr "Imprimer"
1909
 
1910
  #: i18n/strings.php:16 i18n/strings.php:82 i18n/strings.php:122
1911
  #: i18n/strings.php:158 i18n/strings.php:167 i18n/strings.php:178
1912
- #: i18n/strings.php:263 i18n/strings.php:385 i18n/strings.php:391
1913
- #: i18n/strings.php:449 i18n/strings.php:455
1914
  msgid "Cancel"
1915
  msgstr "Annuler"
1916
 
1917
- #: i18n/strings.php:403 i18n/strings.php:467
1918
  msgid "N/A"
1919
  msgstr "N/D"
1920
 
1921
- #: i18n/strings.php:8 i18n/strings.php:412 i18n/strings.php:472
1922
  msgid "More"
1923
  msgstr "Plus"
1924
 
@@ -1961,7 +1956,7 @@ msgstr "Impossible de mettre à jour les paramètres. %s"
1961
  msgid "Packaging"
1962
  msgstr "Emballage"
1963
 
1964
- #: woocommerce-services.php:1598
1965
  msgid "Section not loading? Visit the <a href=\"%s\">status page</a> for troubleshooting steps."
1966
  msgstr "La section ne se charge pas? Consultez la <a href=\"%s\">page d'état </a> pour connaître les étapes de dépannage."
1967
 
@@ -1973,7 +1968,7 @@ msgstr ""
1973
  msgid "Note: Jetpack is connected, but development mode is also enabled on this site. Please disable development mode."
1974
  msgstr "Remarque : Jetpack est connecté, mais le mode de développement est activé sur ce site. Veuillez désactiver le mode de développement."
1975
 
1976
- #: woocommerce-services.php:1451
1977
  msgid "Shipping Label"
1978
  msgstr "Etiquette de l'expédition"
1979
 
@@ -2030,24 +2025,24 @@ msgctxt "A service with an unknown title and unknown method_title"
2030
  msgid "Unknown"
2031
  msgstr "Inconnu"
2032
 
2033
- #: i18n/strings.php:342
2034
  msgid "Support"
2035
  msgstr "Soutien"
2036
 
2037
- #: i18n/strings.php:330 i18n/strings.php:331
2038
  msgid "Debug"
2039
  msgstr "Débogage"
2040
 
2041
- #: i18n/strings.php:361
2042
  msgid "Services"
2043
  msgstr "Services"
2044
 
2045
- #: i18n/strings.php:345
2046
  msgctxt "This section displays the overall health of WooCommerce Shipping & Tax and the things it depends on"
2047
  msgid "Health"
2048
  msgstr ""
2049
 
2050
- #: i18n/strings.php:343
2051
  msgid "Need help?"
2052
  msgstr "Besoin d’aide?"
2053
 
@@ -2055,11 +2050,11 @@ msgstr "Besoin d’aide?"
2055
  msgid "Log is empty"
2056
  msgstr "Le journal est vide"
2057
 
2058
- #: i18n/strings.php:334 i18n/strings.php:338
2059
  msgid "Disabled"
2060
  msgstr "Désactivé"
2061
 
2062
- #: i18n/strings.php:333 i18n/strings.php:337
2063
  msgid "Enabled"
2064
  msgstr "Activé"
2065
 
@@ -2083,27 +2078,27 @@ msgstr "Aucune demande de tarif n’ont encore eu lieu pour ce service"
2083
  msgid "Setup for this service has not yet been completed"
2084
  msgstr "La configuration pour ce service n’est pas encore achevée"
2085
 
2086
- #: i18n/strings.php:350
2087
  msgid "Service data is up-to-date"
2088
  msgstr "Données de service à jour"
2089
 
2090
- #: i18n/strings.php:349
2091
  msgid "Service data was found, but is more than one day old"
2092
  msgstr "Les données de service ont été trouvées, mais vieux d'un jour"
2093
 
2094
- #: i18n/strings.php:348
2095
  msgid "Service data was found, but is more than three days old"
2096
  msgstr "Les données de service ont été trouvées, mais elles datent de plus de trois jours"
2097
 
2098
- #: i18n/strings.php:351
2099
  msgid "Service data found, but may be out of date"
2100
  msgstr ""
2101
 
2102
- #: i18n/strings.php:352
2103
  msgid "No service data available"
2104
  msgstr "Aucune données de service n'est disponible"
2105
 
2106
- #: i18n/strings.php:347
2107
  msgid "Jetpack"
2108
  msgstr "Jetpack"
2109
 
@@ -2127,7 +2122,8 @@ msgstr ""
2127
  msgid "Please install and activate the Jetpack plugin, version %s or higher"
2128
  msgstr "Veuillez installer et activer l'extension de Jetpack, version %s ou supérieur"
2129
 
2130
- #: i18n/strings.php:346
 
2131
  msgid "WooCommerce"
2132
  msgstr "WooCommerce"
2133
 
@@ -2143,7 +2139,7 @@ msgstr "S’il vous plaît définir l'emplacement de base dans Paramètres WooCo
2143
  msgid "WooCommerce %1$s or higher is required (You are running %2$s)"
2144
  msgstr ""
2145
 
2146
- #: classes/class-wc-connect-error-notice.php:104 woocommerce-services.php:1634
2147
  msgid "Dismiss this notice"
2148
  msgstr "Cacher cet avertissement"
2149
 
51
  msgid "Live rates at checkout"
52
  msgstr ""
53
 
54
+ #: i18n/strings.php:403
55
  msgid "Last updated %s."
56
  msgstr ""
57
 
206
  msgid "WooCommerce Helper auth is missing"
207
  msgstr ""
208
 
209
+ #: i18n/strings.php:331 i18n/strings.php:422
210
  msgid "USPS labels without tracking are not eligible for refund."
211
  msgstr ""
212
 
226
  msgid "Loading"
227
  msgstr ""
228
 
229
+ #: i18n/strings.php:402
230
  msgid "WooCommerce Shipping & Tax Data"
231
  msgstr ""
232
 
233
+ #: i18n/strings.php:339 i18n/strings.php:430
234
  msgid "Print customs form"
235
  msgstr ""
236
 
277
  msgstr ""
278
 
279
  #. Plugin Name of the plugin
 
280
  #: classes/class-wc-connect-settings-pages.php:123
281
+ #: classes/class-wc-connect-privacy.php:36
282
  msgid "WooCommerce Shipping & Tax"
283
  msgstr ""
284
 
411
  msgid "Validating address\\u2026"
412
  msgstr ""
413
 
414
+ #: i18n/strings.php:326 i18n/strings.php:372 i18n/strings.php:463
415
  msgid "Purchasing\\u2026"
416
  msgstr ""
417
 
423
  msgid "Package %(index)s \\u2013 %(title)s"
424
  msgstr ""
425
 
426
+ #: i18n/strings.php:6 i18n/strings.php:170 i18n/strings.php:375
427
  msgid "Saving\\u2026"
428
  msgstr ""
429
 
437
  msgid "Your tax rates and settings will be automatically configured for %1$s, %2$s. <a href=\"https://docs.woocommerce.com/document/setting-up-taxes-in-woocommerce/#section-12\">Learn more about setting up tax rates for additional nexuses</a>"
438
  msgstr ""
439
 
440
+ #: i18n/strings.php:419
441
  msgid "%(itemCount)d item is ready to be fulfilled"
442
  msgid_plural "%(itemCount)d items are ready to be fulfilled"
443
  msgstr[0] ""
444
  msgstr[1] ""
445
 
446
+ #: i18n/strings.php:418
447
  msgid "%(itemCount)d item was fulfilled on {{span}}%(createdDate)s{{/span}}"
448
  msgid_plural "%(itemCount)d items were fulfilled on {{span}}%(createdDate)s{{/span}}"
449
  msgstr[0] ""
450
  msgstr[1] ""
451
 
452
+ #: i18n/strings.php:338 i18n/strings.php:429
453
  msgid "Schedule a pickup"
454
  msgstr ""
455
 
456
+ #: i18n/strings.php:334 i18n/strings.php:425
457
  msgid "Label images older than 180 days are deleted by our technology partners for general security and data privacy concerns."
458
  msgstr ""
459
 
460
+ #: i18n/strings.php:330 i18n/strings.php:421
461
  msgid "Labels older than 30 days cannot be refunded."
462
  msgstr ""
463
 
478
  msgid "WooCommerce Shipping & Tax requires the WooCommerce plugin to be installed and active. You can download %s here."
479
  msgstr ""
480
 
481
+ #: i18n/strings.php:466
482
  msgid "No tracking information available at this time"
483
  msgstr ""
484
 
485
+ #: i18n/strings.php:417
486
  msgid "Connection error: unable to create label at this time"
487
  msgstr ""
488
 
489
+ #: i18n/strings.php:413 i18n/strings.php:415
490
  msgid "Track Package"
491
  msgid_plural "Track Packages"
492
  msgstr[0] ""
493
  msgstr[1] ""
494
 
495
+ #: i18n/strings.php:329
496
  msgid "Which package would you like to track?"
497
  msgstr ""
498
 
499
+ #: i18n/strings.php:340 i18n/strings.php:371 i18n/strings.php:431
500
+ #: i18n/strings.php:462
501
  msgid "%(service)s label (#%(labelIndex)d)"
502
  msgstr ""
503
 
585
  msgid "0.0"
586
  msgstr ""
587
 
588
+ #: woocommerce-services.php:1453
589
  msgid "Shipment Tracking"
590
  msgstr ""
591
 
597
  msgid "Customs information incomplete"
598
  msgstr ""
599
 
600
+ #: woocommerce-services.php:1496
601
  msgid "Packing Log:"
602
  msgstr ""
603
 
604
+ #: woocommerce-services.php:1483
605
  msgid "Chosen Rate:"
606
  msgstr ""
607
 
608
+ #: woocommerce-services.php:1479
609
  msgid "Shipping Method ID:"
610
  msgstr ""
611
 
612
+ #: woocommerce-services.php:1475
613
  msgid "Shipping Method Name:"
614
  msgstr ""
615
 
616
+ #: woocommerce-services.php:1459
617
  msgid "Shipping Debug"
618
  msgstr ""
619
 
621
  msgid "<strong>\"%2$s\" is missing weight, length, width, or height.</strong><br />Shipping rates cannot be calculated. <a href=\"%1$s\">Enter dimensions and weight for %2$s</a> so your customers can purchase this item."
622
  msgstr ""
623
 
624
+ #: classes/class-wc-connect-api-client.php:588
625
  msgid "Unable to send request to WooCommerce Shipping & Tax server. The timestamp generated for the signature is too old."
626
  msgstr ""
627
 
628
+ #: classes/class-wc-connect-api-client.php:527
629
  msgid "Unable to send request to WooCommerce Shipping & Tax server. Jetpack Token is malformed."
630
  msgstr ""
631
 
632
+ #: classes/class-wc-connect-api-client.php:520
633
  msgid "Unable to send request to WooCommerce Shipping & Tax server. Jetpack Token is missing"
634
  msgstr ""
635
 
663
  msgstr ""
664
 
665
  #: classes/class-wc-connect-api-client.php:160
 
666
  msgid "No shipping rate could be calculated. No items in the package are shippable."
667
  msgstr ""
668
 
811
  msgid "%(message)s. Please modify the address and try again."
812
  msgstr ""
813
 
814
+ #: i18n/strings.php:337 i18n/strings.php:428
815
  msgid "View details"
816
  msgstr ""
817
 
818
+ #: i18n/strings.php:369 i18n/strings.php:460
819
  msgid "Items"
820
  msgstr ""
821
 
822
+ #: i18n/strings.php:368 i18n/strings.php:459
823
  msgid "Package"
824
  msgstr ""
825
 
826
+ #: i18n/strings.php:366 i18n/strings.php:457
827
  msgid "Receipt"
828
  msgstr ""
829
 
830
+ #: i18n/strings.php:365 i18n/strings.php:456
831
  msgid "Label #%(labelIndex)s details"
832
  msgstr ""
833
 
942
  msgid "Activate"
943
  msgstr ""
944
 
945
+ #: i18n/strings.php:342 i18n/strings.php:433
946
  msgid "No activity yet"
947
  msgstr ""
948
 
949
+ #: i18n/strings.php:350 i18n/strings.php:441
950
  msgid "Note"
951
  msgstr ""
952
 
953
+ #: i18n/strings.php:349 i18n/strings.php:440
954
  msgid "Refunded %(amount)s"
955
  msgstr ""
956
 
957
+ #: i18n/strings.php:347 i18n/strings.php:438
958
  msgid "%(service)s label (#%(labelNum)d) refund rejected"
959
  msgstr ""
960
 
961
+ #: i18n/strings.php:346 i18n/strings.php:437
962
  msgid "%(service)s label (#%(labelNum)d) refunded (%(amount)s)"
963
  msgstr ""
964
 
965
+ #: i18n/strings.php:345 i18n/strings.php:436
966
  msgid "%(service)s label (#%(labelNum)d) refund requested (%(amount)s)"
967
  msgstr ""
968
 
969
+ #: i18n/strings.php:344 i18n/strings.php:435
970
  msgid "Note sent to customer"
971
  msgstr ""
972
 
973
+ #: i18n/strings.php:343 i18n/strings.php:434
974
  msgid "Internal note"
975
  msgstr ""
976
 
977
+ #: i18n/strings.php:374 i18n/strings.php:465
978
  msgid "Show notes from %(date)s"
979
  msgstr ""
980
 
981
+ #: i18n/strings.php:373 i18n/strings.php:464
982
  msgid "%(count)s event"
983
  msgid_plural "%(count)s events"
984
  msgstr[0] ""
989
  msgid "WeChat Pay"
990
  msgstr ""
991
 
992
+ #: i18n/strings.php:351 i18n/strings.php:442
993
  msgid "Toggle menu"
994
  msgstr ""
995
 
997
  msgid "Return to Order #%(orderId)s"
998
  msgstr ""
999
 
1000
+ #: i18n/strings.php:393
1001
  msgid "Our team is here for you. View our {{docsA}}support docs{{/docsA}} or {{ticketA}}open a support ticket{{/ticketA}}."
1002
  msgstr ""
1003
 
1004
+ #: i18n/strings.php:384
1005
  msgid "Logging"
1006
  msgstr ""
1007
 
1008
+ #: i18n/strings.php:411
1009
  msgid "No services configured. {{a}}Add a shipping service{{/a}}"
1010
  msgstr ""
1011
 
1012
+ #: i18n/strings.php:409
1013
  msgid "Edit service settings"
1014
  msgstr ""
1015
 
1016
+ #: i18n/strings.php:408
1017
  msgid "Request was made %s - check logs below or {{a}}edit service settings{{/a}}"
1018
  msgstr ""
1019
 
1020
+ #: i18n/strings.php:407
1021
  msgid "Copy for support"
1022
  msgstr ""
1023
 
1024
+ #: i18n/strings.php:406
1025
  msgid "Last %s entry. {{a}}Show full log{{/a}}"
1026
  msgid_plural "Last %s entries. {{a}}Show full log{{/a}}"
1027
  msgstr[0] ""
1028
  msgstr[1] ""
1029
 
1030
+ #: i18n/strings.php:405
1031
  msgid "Log tail copied to clipboard"
1032
  msgstr ""
1033
 
1034
+ #: i18n/strings.php:11 i18n/strings.php:472
1035
  msgid "You have unsaved changes. Are you sure you want to leave this page?"
1036
  msgstr ""
1037
 
1060
  msgstr ""
1061
 
1062
  #: i18n/strings.php:5 i18n/strings.php:169 i18n/strings.php:295
1063
+ #: i18n/strings.php:378 i18n/strings.php:468
1064
  msgid "Optional"
1065
  msgstr ""
1066
 
1215
  msgid "Total"
1216
  msgstr ""
1217
 
1218
+ #: classes/class-wc-connect-label-reports.php:170 i18n/strings.php:348
1219
+ #: i18n/strings.php:439
1220
  msgid "Refund"
1221
  msgstr ""
1222
 
1256
  msgid "Export CSV"
1257
  msgstr ""
1258
 
1259
+ #: i18n/strings.php:390
1260
  msgid "Other Log"
1261
  msgstr ""
1262
 
1263
+ #: i18n/strings.php:389
1264
  msgid "Taxes Log"
1265
  msgstr ""
1266
 
1267
+ #: i18n/strings.php:388
1268
  msgid "Shipping Log"
1269
  msgstr ""
1270
 
1271
+ #: i18n/strings.php:381
1272
  msgid "Display troubleshooting information on the Cart and Checkout pages."
1273
  msgstr ""
1274
 
1275
+ #: i18n/strings.php:385
1276
  msgid "Write diagnostic messages to log files. Helpful when contacting support."
1277
  msgstr ""
1278
 
1316
  msgid "Link a PayPal account"
1317
  msgstr ""
1318
 
1319
+ #: i18n/strings.php:404
1320
  msgid "Refresh"
1321
  msgstr ""
1322
 
1323
+ #: woocommerce-services.php:1234
1324
  msgid "Tracking number"
1325
  msgstr ""
1326
 
1327
+ #: woocommerce-services.php:1233
1328
  msgid "Provider"
1329
  msgstr ""
1330
 
1416
  msgstr ""
1417
 
1418
  #: classes/class-wc-connect-paypal-ec.php:323 i18n/strings.php:4
1419
+ #: i18n/strings.php:168 i18n/strings.php:377 i18n/strings.php:467
1420
  msgid "Required"
1421
  msgstr "Obligatoire"
1422
 
1432
  msgid "Dimensions"
1433
  msgstr "Dimensions"
1434
 
1435
+ #: i18n/strings.php:270 i18n/strings.php:364 i18n/strings.php:455
1436
  msgid "Close"
1437
  msgstr "Fermer"
1438
 
1543
  msgid "Unable to get your settings. Please refresh the page to try again."
1544
  msgstr "Impossible d’obtenir vos paramètres. Veuillez actualiser la page pour essayer à nouveau."
1545
 
1546
+ #: i18n/strings.php:479
1547
  msgid "%(numSelected)d service selected"
1548
  msgid_plural "%(numSelected)d services selected"
1549
  msgstr[0] "%(numSelected)d service sélectionné"
1550
  msgstr[1] "%(numSelected)d services sélectionnés"
1551
 
1552
+ #: i18n/strings.php:477
1553
  msgid "Add and edit saved packages using the {{a}}Packaging Manager{{/a}}."
1554
  msgstr "Ajouter et modifier des emballages enregistrés en utilisant le {{a}}Gestionnaire d'emballage{{/a}}."
1555
 
1556
+ #: i18n/strings.php:341 i18n/strings.php:432
1557
  msgid "Tracking #: {{trackingLink/}}"
1558
  msgstr "Suivi #: {{trackingLink/}}"
1559
 
1593
  msgid "Choose rate: %(pckg)s"
1594
  msgstr "Choisir le taux : %(pckg)s"
1595
 
1596
+ #: i18n/strings.php:353 i18n/strings.php:444
1597
  msgid "Refund label (-%(amount)s)"
1598
  msgstr "Rembourser l'étiquette (-%(amount)s)"
1599
 
1613
  msgid "Ship in original packaging"
1614
  msgstr "Expédier dans l'emballage d’origine"
1615
 
1616
+ #: i18n/strings.php:332 i18n/strings.php:333 i18n/strings.php:423
1617
+ #: i18n/strings.php:424
1618
  msgid "Request refund"
1619
  msgstr "Demande de remboursement"
1620
 
1621
+ #: i18n/strings.php:335 i18n/strings.php:426
1622
  msgid "Reprint"
1623
  msgstr "Réimprimer"
1624
 
1625
+ #: i18n/strings.php:58 i18n/strings.php:309 i18n/strings.php:363
1626
+ #: i18n/strings.php:454
1627
  msgid "Paper size"
1628
  msgstr "Format de papier"
1629
 
1639
  msgid "Move item"
1640
  msgstr "Déplacer l'article"
1641
 
1642
+ #: i18n/strings.php:483
1643
  msgid "Increase the rates calculated by the carrier to account for packaging and handling costs. You can also add a negative amount to save your customers money."
1644
  msgstr "Augmenter les taux calculés par le transporteur pour tenir compte de l’emballage et de manutention. Vous pouvez également ajouter un montant négatif pour économiser vos clients."
1645
 
1646
+ #: i18n/strings.php:414
1647
  msgid "Create new label"
1648
  msgstr "Créer une nouvelle étiquette"
1649
 
1664
  msgstr "Ajouter une carte de crédit"
1665
 
1666
  #. translators: %d: Deleted Product ID
 
1667
  #: classes/class-wc-connect-compatibility-wc26.php:116
1668
+ #: classes/class-wc-connect-compatibility-wc30.php:130
1669
  msgid "#%d - [Deleted product]"
1670
  msgstr "#%d - [produit supprimé]"
1671
 
1672
  #. translators: %1$d: Product ID, %2$s: Product Name
 
1673
  #: classes/class-wc-connect-compatibility-wc26.php:111
1674
+ #: classes/class-wc-connect-compatibility-wc30.php:125
1675
  msgid "#%1$d - %2$s"
1676
  msgstr "%1$d - %2$s"
1677
 
1678
  #. translators: %s Support url
1679
+ #: woocommerce-services.php:1569
1680
  msgid "<a href=\"%s\">Support</a>"
1681
  msgstr "<a href=\"%s\">Assistance</a>"
1682
 
1684
  msgid "There was an error installing Jetpack. Please try installing it manually."
1685
  msgstr "Une erreur s'est produite lors de l'installation de Jetpack. S'il vous plaît essayez d'installer manuellement."
1686
 
1687
+ #: i18n/strings.php:43 woocommerce-services.php:1066
1688
+ #: woocommerce-services.php:1069
1689
  msgid "Shipping Labels"
1690
  msgstr "Étiquette d'expédition"
1691
 
 
 
 
 
1692
  #. Plugin URI of the plugin
1693
  #. Author URI of the plugin
1694
  msgid "https://woocommerce.com/"
1695
  msgstr "https://woocommerce.com/"
1696
 
1697
+ #: i18n/strings.php:143 i18n/strings.php:215 woocommerce-services.php:1519
1698
+ #: woocommerce-services.php:1547
1699
  msgid "Phone"
1700
  msgstr "Téléphone"
1701
 
1704
  msgid "Connect"
1705
  msgstr "Connexion"
1706
 
1707
+ #: i18n/strings.php:7 i18n/strings.php:171 i18n/strings.php:376
1708
  msgid "Save Settings"
1709
  msgstr "Sauvegarder les paramètres"
1710
 
1711
+ #: i18n/strings.php:473
1712
  msgid "Your changes have been saved."
1713
  msgstr "Vos modifications ont été sauvegardées."
1714
 
1715
+ #: i18n/strings.php:474
1716
  msgid "There was a problem with one or more entries. Please fix the errors below and try saving again."
1717
  msgstr "Il y avait un problème avec une ou plusieurs entrées. S’il vous plaît corriger les erreurs ci-dessous et essayez d’enregistrer à nouveau."
1718
 
1720
  msgid "Expand"
1721
  msgstr "Étendre"
1722
 
1723
+ #: i18n/strings.php:328 i18n/strings.php:469
1724
  msgid "Dismiss"
1725
  msgstr "Rejeter"
1726
 
1727
+ #: i18n/strings.php:10 i18n/strings.php:471
1728
  msgid "You have unsaved changes."
1729
  msgstr "Vous avez des modifications non enregistrées."
1730
 
1759
  msgid "Unable to save your shipping packages. Please try again."
1760
  msgstr "Impossible d'enregistrer vos emballages. Veuillez essayer de nouveau."
1761
 
1762
+ #: i18n/strings.php:41 i18n/strings.php:475
1763
  msgid "Save changes"
1764
  msgstr "Enregistrer les changements"
1765
 
1771
  msgid "Dimensions (L x W x H)"
1772
  msgstr ""
1773
 
1774
+ #: i18n/strings.php:478
1775
  msgid "All services selected"
1776
  msgstr "Tous les services sélectionnés"
1777
 
1778
+ #: i18n/strings.php:37 i18n/strings.php:199 i18n/strings.php:480
1779
  msgid "Expand Services"
1780
  msgstr "Accroitre les services"
1781
 
1782
+ #: classes/class-wc-connect-label-reports.php:167 i18n/strings.php:367
1783
+ #: i18n/strings.php:458 i18n/strings.php:481
1784
  msgid "Service"
1785
  msgstr "Service"
1786
 
1787
+ #: i18n/strings.php:482
1788
  msgid "Price adjustment"
1789
  msgstr "Ajustement du prix"
1790
 
1791
+ #: i18n/strings.php:476
1792
  msgid "Saved Packages"
1793
  msgstr "Emballages enregistrés"
1794
 
1795
+ #: woocommerce-services.php:1222 woocommerce-services.php:1229
1796
  msgid "Tracking"
1797
  msgstr ""
1798
 
1799
+ #: i18n/strings.php:207 i18n/strings.php:412 i18n/strings.php:416
1800
  msgid "Create shipping label"
1801
  msgid_plural "Create shipping labels"
1802
  msgstr[0] "Créer l'étiquette d'expédition"
1869
  msgid "The service and rate chosen by the customer at checkout is not available. Please choose another."
1870
  msgstr "Le service et le taux choisi par le client à la caisse n’est pas disponible. Veuillez choisir un autre."
1871
 
1872
+ #: i18n/strings.php:354 i18n/strings.php:445
1873
  msgid "Request a refund"
1874
  msgstr "Demande de remboursement"
1875
 
1876
+ #: i18n/strings.php:355 i18n/strings.php:446
1877
  msgid "You can request a refund for a shipping label that has not been used to ship a package. It will take at least %(days)s days to process."
1878
  msgstr ""
1879
 
1880
+ #: i18n/strings.php:356 i18n/strings.php:447
1881
  msgid "Purchase date"
1882
  msgstr "Date d'achat"
1883
 
1884
+ #: i18n/strings.php:357 i18n/strings.php:448
1885
  msgid "Amount eligible for refund"
1886
  msgstr "Montant admissible au remboursement"
1887
 
1888
+ #: i18n/strings.php:336 i18n/strings.php:360 i18n/strings.php:427
1889
+ #: i18n/strings.php:451
1890
  msgid "Reprint shipping label"
1891
  msgstr "Réimprimer l'étiquette d'expédition"
1892
 
1893
+ #: i18n/strings.php:361 i18n/strings.php:452
1894
  msgid "If there was a printing error when you purchased the label, you can print it again."
1895
  msgstr "S’il y avait une erreur d’impression lorsque vous aviez acheté l’étiquette, vous pouvez l’imprimer à nouveau."
1896
 
1897
+ #: i18n/strings.php:362 i18n/strings.php:453
1898
  msgid "NOTE: If you already used the label in a package, printing and using it again is a violation of our terms of service and may result in criminal charges."
1899
  msgstr "REMARQUE: Si vous avez déjà utilisé l'étiquette sur un colis, l'imprimer et l'utiliser à nouveau constitue une violation de nos conditions d'utilisation et peut entraîner des poursuites pénales."
1900
 
1901
+ #: i18n/strings.php:325 i18n/strings.php:359 i18n/strings.php:450
1902
  msgid "Print"
1903
  msgstr "Imprimer"
1904
 
1905
  #: i18n/strings.php:16 i18n/strings.php:82 i18n/strings.php:122
1906
  #: i18n/strings.php:158 i18n/strings.php:167 i18n/strings.php:178
1907
+ #: i18n/strings.php:263 i18n/strings.php:352 i18n/strings.php:358
1908
+ #: i18n/strings.php:443 i18n/strings.php:449
1909
  msgid "Cancel"
1910
  msgstr "Annuler"
1911
 
1912
+ #: i18n/strings.php:370 i18n/strings.php:461
1913
  msgid "N/A"
1914
  msgstr "N/D"
1915
 
1916
+ #: i18n/strings.php:8 i18n/strings.php:420 i18n/strings.php:470
1917
  msgid "More"
1918
  msgstr "Plus"
1919
 
1956
  msgid "Packaging"
1957
  msgstr "Emballage"
1958
 
1959
+ #: woocommerce-services.php:1602
1960
  msgid "Section not loading? Visit the <a href=\"%s\">status page</a> for troubleshooting steps."
1961
  msgstr "La section ne se charge pas? Consultez la <a href=\"%s\">page d'état </a> pour connaître les étapes de dépannage."
1962
 
1968
  msgid "Note: Jetpack is connected, but development mode is also enabled on this site. Please disable development mode."
1969
  msgstr "Remarque : Jetpack est connecté, mais le mode de développement est activé sur ce site. Veuillez désactiver le mode de développement."
1970
 
1971
+ #: woocommerce-services.php:1455
1972
  msgid "Shipping Label"
1973
  msgstr "Etiquette de l'expédition"
1974
 
2025
  msgid "Unknown"
2026
  msgstr "Inconnu"
2027
 
2028
+ #: i18n/strings.php:391
2029
  msgid "Support"
2030
  msgstr "Soutien"
2031
 
2032
+ #: i18n/strings.php:379 i18n/strings.php:380
2033
  msgid "Debug"
2034
  msgstr "Débogage"
2035
 
2036
+ #: i18n/strings.php:410
2037
  msgid "Services"
2038
  msgstr "Services"
2039
 
2040
+ #: i18n/strings.php:394
2041
  msgctxt "This section displays the overall health of WooCommerce Shipping & Tax and the things it depends on"
2042
  msgid "Health"
2043
  msgstr ""
2044
 
2045
+ #: i18n/strings.php:392
2046
  msgid "Need help?"
2047
  msgstr "Besoin d’aide?"
2048
 
2050
  msgid "Log is empty"
2051
  msgstr "Le journal est vide"
2052
 
2053
+ #: i18n/strings.php:383 i18n/strings.php:387
2054
  msgid "Disabled"
2055
  msgstr "Désactivé"
2056
 
2057
+ #: i18n/strings.php:382 i18n/strings.php:386
2058
  msgid "Enabled"
2059
  msgstr "Activé"
2060
 
2078
  msgid "Setup for this service has not yet been completed"
2079
  msgstr "La configuration pour ce service n’est pas encore achevée"
2080
 
2081
+ #: i18n/strings.php:399
2082
  msgid "Service data is up-to-date"
2083
  msgstr "Données de service à jour"
2084
 
2085
+ #: i18n/strings.php:398
2086
  msgid "Service data was found, but is more than one day old"
2087
  msgstr "Les données de service ont été trouvées, mais vieux d'un jour"
2088
 
2089
+ #: i18n/strings.php:397
2090
  msgid "Service data was found, but is more than three days old"
2091
  msgstr "Les données de service ont été trouvées, mais elles datent de plus de trois jours"
2092
 
2093
+ #: i18n/strings.php:400
2094
  msgid "Service data found, but may be out of date"
2095
  msgstr ""
2096
 
2097
+ #: i18n/strings.php:401
2098
  msgid "No service data available"
2099
  msgstr "Aucune données de service n'est disponible"
2100
 
2101
+ #: i18n/strings.php:396
2102
  msgid "Jetpack"
2103
  msgstr "Jetpack"
2104
 
2122
  msgid "Please install and activate the Jetpack plugin, version %s or higher"
2123
  msgstr "Veuillez installer et activer l'extension de Jetpack, version %s ou supérieur"
2124
 
2125
+ #. Author of the plugin
2126
+ #: i18n/strings.php:395
2127
  msgid "WooCommerce"
2128
  msgstr "WooCommerce"
2129
 
2139
  msgid "WooCommerce %1$s or higher is required (You are running %2$s)"
2140
  msgstr ""
2141
 
2142
+ #: classes/class-wc-connect-error-notice.php:104 woocommerce-services.php:1638
2143
  msgid "Dismiss this notice"
2144
  msgstr "Cacher cet avertissement"
2145
 
i18n/languages/woocommerce-services-ja.json CHANGED
@@ -1 +1 @@
1
- {"0":[null,"0"],"":{"po-revision-date":"2019-06-11 05:57:26+0000","mime-version":"1.0","content-type":"text/plain; charset=UTF-8","content-transfer-encoding":"8bit","plural-forms":"nplurals=1; plural=0;","x-generator":"GlotPress/3.0.0-alpha.2","language":"ja_JP","project-id-version":"Plugins - WooCommerce Shipping &amp; Tax - Stable (latest release)"},"Features":[null,""],"Carrier":[null,""],"Express delivery from the experts in international shipping":[null,""],"Live rates for %(carrierName)s at checkout":[null,""],"Ship with the largest delivery network in the United States":[null,""],"Discounted %(carrierName)s shipping labels":[null,""],"To be displayed at checkout, this carrier must be added as a shipping method to selected shipping zones":[null,""],"Add to shipping zones":[null,""],"Show live rates directly on your store - never under or overcharge for shipping again":[null,""],"Live rates at checkout":[null,""],"Last updated %s.":[null,""],"At least one of the new predefined packages has the same name as existing packages.":[null,""],"The new predefined package names are not unique.":[null,""],"At least one of the new custom packages has the same name as existing packages.":[null,""],"The new custom package names are not unique.":[null,""],"Go to shipping zones":[null,""],"Add DHL Express as a shipping method to selected shipping zones to display live rates at checkout.":[null,""],"DHL Express live rates are now available":[null,""],"State %1$s is invalid for %2$s.":[null,""],"%1$s %2$s is invalid for %3$s.":[null,""],"A %1$s is required for %2$s.":[null,""],"A country is required":[null,""],"Your store is over the limit for rate calls this month and your account will be charged for overages. To prevent future overage charges you can upgrade your plan.":[null,""],"There was an error trying to activate your subscription.":[null,""],"Your subscription was succesfully activated.":[null,""],"Manage":[null,""],"Usage":[null,""],"View and manage your subscription usage":[null,""],"Shipping method":[null,""],"The subscription is already active.":[null,""],"Set up your own carrier account to compare rates and print labels from multiple carriers in WooCommerce Shipping. Learn more about adding {{a}}carrier accounts{{/a}}.":[null,""],"There was an error connecting to your %(carrierName)s account. Please check that all of the information entered matches your %(carrierName)s account and try to connect again.":[null,""],"Your carrier account was connected successfully.":[null,""],"The date must be a valid date in the format YYYY-MM-DD":[null,""],"The invoice number needs to be 9 or 13 letters and digits in length":[null,""],"The company website format is not valid":[null,""],"The email format is not valid":[null,""],"The ZIP/Postal code needs to be 5 digits in length":[null,""],"The phone number needs to be 10 digits in length":[null,""],"The UPS account number needs to be 6 letters and digits in length":[null,""],"This will remove the connection with %(carrier_name)s. All of your %(carrier_name)s account information will be deleted and you won\\u2019t see %(carrier_name)s rates.":[null,""],"Disconnect your %(carrier_name)s account":[null,""],"There was an error trying to disconnect your carrier account":[null,""],"Your carrier account was disconnected succesfully.":[null,""],"DHL Express":[null,""],"Powered by WooCommerce Tax. If automated taxes are enabled, you'll need to enter prices exclusive of tax.":[null,""],"WooCommerce Helper auth is missing":[null,""],"USPS labels without tracking are not eligible for refund.":[null,""],"General Information":[null,""],"Connect your %(carrierName)s account":[null,""],"%(carrierName)s not supported.":[null,""],"Loading":[null,""],"WooCommerce Shipping & Tax Data":[null,""],"Print customs form":[null,""],"Test your WooCommerce Shipping & Tax connection":[null,""],"WooCommerce Shipping & Tax Status":[null,""],"Connect your store to activate WooCommerce Shipping & Tax":[null,""],"Connect Jetpack to activate WooCommerce Shipping & Tax":[null,""],"WooCommerce Shipping now supports DHL labels for international shipments. Purchase and print discounted labels from DHL and USPS right here.":[null,""],"Discounted DHL Shipping Labels":[null,""],"WooCommerce Shipping":[null,""],"Invalid WooCommerce Shipping & Tax service slug provided":[null,""],"WooCommerce Shipping & Tax":[null,""],"ZIP/Postal code":[null,""],"This action will delete any information entered on the form.":[null,""],"Cancel connection":[null,""],"Ok":[null,""],"UPS invoice control id":[null,""],"UPS invoice currency":[null,""],"UPS invoice amount":[null,""],"UPS invoice date":[null,""],"UPS invoice number":[null,""],"I have been issued an invoice from UPS within the past 90 days":[null,""],"UPS account information":[null,""],"Company website":[null,""],"Job title":[null,""],"Company name":[null,""],"This is the company info you used to create your UPS account":[null,""],"Company information":[null,""],"Email":[null,""],"Address 2 (optional)":[null,""],"Account number":[null,""],"This is the account number and address from your UPS profile":[null,""],"General information":[null,""],"If you need a UPS account number, go to {{a}}UPS.com{{/a}} to create a new account.":[null,""],"Set up your own UPS carrier account to compare rates and print labels from multiple carriers in WooCommerce Shipping. Learn more about adding {{a}}carrier accounts{{/a}}.":[null,""],"Connect your UPS account":[null,""],"Set up your own carrier account by adding your credentials here":[null,""],"Carrier account":[null,""],"Credentials":[null,""],"Adult signature required":[null,""],"Signature required":[null,""],"Other\\u2026":[null,""],"Select one\\u2026":[null,""],"Validating address\\u2026":[null,""],"Purchasing\\u2026":[null,""],"Your UPS account will be charged":[null,""],"Package %(index)s \\u2013 %(title)s":[null,""],"Saving\\u2026":[null,""],"Your tax rates and settings will be automatically configured for %1$s. <a href=\"https://docs.woocommerce.com/document/setting-up-taxes-in-woocommerce/#section-12\">Learn more about setting up tax rates for additional nexuses</a>":[null,""],"Your tax rates and settings will be automatically configured for %1$s, %2$s. <a href=\"https://docs.woocommerce.com/document/setting-up-taxes-in-woocommerce/#section-12\">Learn more about setting up tax rates for additional nexuses</a>":[null,""],"%(itemCount)d item is ready to be fulfilled":["%(itemCount)d items are ready to be fulfilled",[""]],"%(itemCount)d item was fulfilled on {{span}}%(createdDate)s{{/span}}":["%(itemCount)d items were fulfilled on {{span}}%(createdDate)s{{/span}}",[""]],"Schedule a pickup":[null,""],"Label images older than 180 days are deleted by our technology partners for general security and data privacy concerns.":[null,""],"Labels older than 30 days cannot be refunded.":[null,""],"Mark this order as complete and notify the customer":[null,""],"Notify the customer with shipment details":[null,""],"You save %s with WooCommerce Shipping":[null,""],"WooCommerce Shipping & Tax requires the WooCommerce plugin to be installed and active. You can download %s here.":[null,""],"No tracking information available at this time":[null,""],"Connection error: unable to create label at this time":[null,""],"Track Package":["Track Packages",[""]],"Which package would you like to track?":[null,""],"%(service)s label (#%(labelIndex)d)":[null,""],"To print this shipping label, {{a}}add a credit card to your account{{/a}}.":[null,""],"Add credit card":[null,""],"To print this shipping label, {{a}}choose a credit card to add to your account{{/a}}.":[null,""],"Choose credit card":[null,""],"Buy shipping label":["Buy shipping labels",[""]],"shipping label ready":["shipping labels ready",[""]],"Shipping from":[null,""],"Shipping summary":[null,""],"Customer paid a {{shippingMethod/}} of {{shippingCost/}} for shipping":[null,""],"Shipping rates":[null,""],"HS Tariff number":[null,""],"Submit":[null,""],"Total Weight (with package)":[null,""],"QTY":[null,""],"Weight":[null,""],"Items to fulfill":[null,""],"Select a package type":[null,""],"Package details":[null,""],"Your shipping packages have been saved.":[null,""],"0.0":[null,""],"Shipment Tracking":[null,""],"Customs information valid":[null,"関税情報が有効"],"Customs information incomplete":[null,"関税情報が不完全"],"Packing Log:":[null,"パッキングログ:"],"Chosen Rate:":[null,"選択したレート:"],"Shipping Method ID:":[null,"配送方法 ID:"],"Shipping Method Name:":[null,"配送方法名:"],"Shipping Debug":[null,"配送デバッグ"],"<strong>\"%2$s\" is missing weight, length, width, or height.</strong><br />Shipping rates cannot be calculated. <a href=\"%1$s\">Enter dimensions and weight for %2$s</a> so your customers can purchase this item.":[null,"<strong> \"%2$s\" の重さ、長さ、幅、または高さがありません。 </strong><br /> 送料の計算はできません。<a href=\"%1$s\">%2$s</a> の大きさと重さを入力して、顧客がこのアイテムを購入できるようにします。"],"Unable to send request to WooCommerce Shipping & Tax server. The timestamp generated for the signature is too old.":[null,""],"Unable to send request to WooCommerce Shipping & Tax server. Jetpack Token is malformed.":[null,""],"Unable to send request to WooCommerce Shipping & Tax server. Jetpack Token is missing":[null,""],"Error: The WooCommerce Shipping & Tax server returned: %1$s %2$s ( %3$d )":[null,""],"Error: The WooCommerce Shipping & Tax server returned ( %d ) and an empty response body.":[null,""],"Error: The WooCommerce Shipping & Tax server returned HTTP code: %d":[null,""],"Unable to encode body for request to WooCommerce Shipping & Tax server.":[null,""],"Unable to send request to WooCommerce Shipping & Tax server. Body must be an array.":[null,""],"Unable to send request to WooCommerce Shipping & Tax server. Jetpack connection does not implement get_access_token.":[null,""],"Unable to send request to WooCommerce Shipping & Tax server. Jetpack_Data was not found.":[null,""],"No shipping rate could be calculated. No items in the package are shippable.":[null,"送料を計算することはできません。パッケージ内のアイテムは出荷可能なされません。"],"Product ( ID: %d ) is missing a dimension value. Shipping rates cannot be calculated.":[null,"商品 ( ID: %d )に大きさの値がありません。送料を計算することはできません。"],"Product ( ID: %d ) did not include a weight. Shipping rates cannot be calculated.":[null,"商品 ( ID: %d ) には重さが含まれていませんでした。送料を計算することはできません。"],"Packing log:":[null,"パッキングログ:"],"Received rate: %1$s (%2$s)":[null,"受信レート: %1$s (%2$s)"],"Your customer selected {{shippingMethod/}}":[null,"お客様が選択した {{shippingMethod/}}"],"Total rate: %(total)s":[null,"総レート:% (total)s"],"%(serviceName)s: %(rate)s":[null,"%(serviceName)s: %(rate)s"],"No rates found":[null,"レートが見つかりません"],"WooCommerce Shipping gives you access to USPS Commercial Pricing, which is discounted over Retail rates.":[null,""],"more info":[null,"詳細情報"],"ITN":[null,""],"Sanitary / Phytosanitary inspection":[null,"衛生/植物検疫検査"],"Quarantine":[null,"検疫"],"None":[null,"無"],"Restriction type":[null,"制限タイプ"],"Details":[null,"詳細"],"Sample":[null,"サンプル"],"Gift":[null,"贈り物"],"Documents":[null,"ドキュメント"],"Merchandise":[null,"商品"],"Contents type":[null,"コンテンツタイプ"],"Return to sender if package is unable to be delivered":[null,"パッケージが配信できない場合は、送信者に戻る"],"Value (per unit)":[null,"値 (単位あたり)"],"Weight (per unit)":[null,"重さ (単位あたり)"],"Save customs form":[null,"税関フォームを保存"],"Customs":[null,"税関"],"Use address as entered":[null,"入力した住所の使用"],"View on Google Maps":[null,"Google Maps で見る"],"Verify with USPS":[null,"USPS で確認"],"Automatic verification failed for this address. It may still be a valid address \\u2014 use the tools below to manually verify.":[null,""],"We were unable to automatically verify the address.":[null,"住所を自動的に確認できませんでした。"],"We were unable to automatically verify the address \\u2014 %(error)s.":[null,""],"You've edited the address, please revalidate it for accurate rates":[null,"住所を編集したので、正しいレートで再検証してください"],"Verify address":[null,"住所の確認"],"%(message)s. Please modify the address and try again.":[null,"%(message)sです。住所を変更して、やり直してください。"],"View details":[null,"詳細を見る"],"Items":[null,"アイテム"],"Package":[null,"パッケージ"],"Receipt":[null,"領収書"],"Label #%(labelIndex)s details":[null,"ラベル #%(labelIndex)s の詳細"],"{{icon/}} Delete this package":[null,"{{icon/}} このパッケージを削除"],"Done":[null,"完了"],"Add boxes, envelopes, and other packages you use most frequently":[null,""],"Remove":[null,"削除"],"Edit":[null,"編集"],"Weight of empty package":[null,"空のパッケージの重量"],"Unique package name":[null,"一意のパッケージ名"],"Envelope":[null,"封筒"],"Box":[null,"箱"],"This field is required.":[null,"この項目は必須です。"],"Payment":[null,"支払い"],"Email the label purchase receipts to %(ownerName)s (%(ownerLogin)s) at %(ownerEmail)s":[null,"ラベル購入領収書を%(ownerName)s (%(ownerLogin)s) で %(ownerEmail)s にメールで送信します。"],"Email Receipts":[null,"メールの受信"],"To purchase shipping labels, choose a credit card you have on file or add a new card.":[null,"出荷ラベルを購入するには、ファイルに登録されているクレジットカードを選択するか、新しいカードを追加します。"],"Choose a different card":[null,"別のカードを選択"],"To purchase shipping labels, add a credit card.":[null,"出荷ラベルを購入するには、クレジットカードを追加します。"],"We'll charge the credit card on your account (%(card)s) to pay for the labels you print":[null,"印刷したラベルの支払いに使用するクレジットカード (%(card)s) は、お客様のアカウントに請求されます。"],"Credit cards are retrieved from the following WordPress.com account: %(wpcomLogin)s <%(wpcomEmail)s>":[null,"クレジットカードは、次の WordPress.com アカウントから取得されます %(wpcomLogin)s <%(wpcomEmail)s>"],"Only the site owner can change these settings. Please contact %(ownerName)s (%(ownerLogin)s) to change the shipping label settings.":[null,"これらの設定は、サイト所有者のみが変更できます。送料ラベルの設定を変更するには、 %(ownerName)s (%(ownerLogin)s) にお問い合わせください。"],"Only the site owner can manage shipping label payment methods. Please contact %(ownerName)s (%(ownerLogin)s) to manage payment methods.":[null,"配送ラベルの支払方法は、サイト所有者のみが管理できます。支払方法を管理するには、 %(ownerName)s (%(ownerLogin)s) までお問い合わせください。"],"%(card)s ****%(digits)s":[null,"%(card)s ****%(digits)s"],"Print shipping labels yourself and save a trip to the post office":[null,""],"H":[null,"高"],"W":[null,"幅"],"L":[null,"長"],"Disconnect":[null,"切断"],"Activate":[null,""],"No activity yet":[null,"アクティビティはまだありません"],"Note":[null,"備考"],"Refunded %(amount)s":[null,"返金済み %(amount)s"],"%(service)s label (#%(labelNum)d) refund rejected":[null,"%(service)s ラベル (#%(labelNum)d) 払い戻しが拒否されました"],"%(service)s label (#%(labelNum)d) refunded (%(amount)s)":[null,"%(service)s ラベル (#%(labelNum)d) 返金額 (%(amount)s)"],"%(service)s label (#%(labelNum)d) refund requested (%(amount)s)":[null,"%(service)s ラベル (#%(labelNum)d) 要求された払戻額 (%(amount)s)"],"Note sent to customer":[null,"顧客に送信されたメモ"],"Internal note":[null,"内部メモ"],"Show notes from %(date)s":[null,"%(date)s からノートを表示します"],"%(count)s event":["%(count)s events",["%(count)s イベント"]],"WeChat Pay":[null,"WeChat の支払い"],"Toggle menu":[null,"トグルメニュー"],"Return to Order #%(orderId)s":[null,"注文 # #%(orderId)s に戻る"],"Our team is here for you. View our {{docsA}}support docs{{/docsA}} or {{ticketA}}open a support ticket{{/ticketA}}.":[null,"チームはあなたのためにここにいます。 {{docsA}}サポートドキュメント{{/docsA}} または {{ticketA}}サポートチケットを開きます{{/ticketA}}を御覧ください。"],"Logging":[null,"ログ記録中"],"No services configured. {{a}}Add a shipping service{{/a}}":[null,"サービスは構成されません。{{a}}配送サービスを追加する {{/a}}"],"Edit service settings":[null,"サービス設定の編集"],"Request was made %s - check logs below or {{a}}edit service settings{{/a}}":[null,"要求が %s - 以下のログをチェックするか、を{{a}}編集してサービス設定 {{/a}}"],"Copy for support":[null,"サポートのためのコピー"],"Last %s entry. {{a}}Show full log{{/a}}":["Last %s entries. {{a}}Show full log{{/a}}",["最後の %s エントリ。{{a}}完全なログを表示{{/a}}"]],"Log tail copied to clipboard":[null,"クリップボードにコピーされたテールログ"],"You have unsaved changes. Are you sure you want to leave this page?":[null,""],"Value ($ per unit)":[null,"値 (単位あたり$)"],"Weight (%s per unit)":[null,"重さ (%s 単位あたり)"],"Description":[null,"説明"],"Country where the product was manufactured or assembled":[null,"商品が製造または組み立てられた国"],"Origin country":[null,"原産国"],"USPS":[null,""],"Optional":[null,"オプション"],"Retry":[null,"再試行"],"shipping label printing":[null,"出荷ラベル印刷"],"shipping label printing and smoother payment setup":[null,"出荷ラベル印刷とスムーズな支払い設定"],"automated tax calculation and shipping label printing":[null,"自動税計算および出荷ラベル印刷"],"automated tax calculation, shipping label printing, and smoother payment setup":[null,"自動税計算、出荷ラベル印刷、スムーズな支払い設定"],"Data resource description.":[null,"データリソースの説明。"],"Data resource ID.":[null,"データリソース ID。"],"List of supported currencies.":[null,"サポートされる通貨の一覧。"],"List of supported states in a given country.":[null,"特定の国でサポートされている状態の一覧です。"],"List of supported continents, countries, and states.":[null,"サポートされている大陸、国、および州のリスト。"],"Sorry, you cannot view this resource.":[null,"このリソースを表示する権限がありません。"],"Sorry, you cannot list resources.":[null,"リソースを一覧表示できません。"],"The unit weights are defined in for this country.":[null,"単位重量は、この国に対して定義されます。"],"Thousands separator for displayed prices in this country.":[null,"表示価格のための千の位の区切り文字。"],"Full name of state.":[null,"州の完全名。"],"State code.":[null,"州コード。"],"List of states in this country.":[null,"この国の州一覧。"],"Number of decimal points shown in displayed prices for this country.":[null,"この国の表示価格に表示されている小数点以下の桁数。"],"Full name of country.":[null,"国の完全な名前。"],"The unit lengths are defined in for this country.":[null,"この国では、単位の長さが定義されています。"],"Decimal separator for displayed prices for this country.":[null,"この国の表示価格の10進数の区切り記号です。"],"Currency symbol position for this country.":[null,"この国の通貨記号の位置。"],"Default ISO4127 alpha-3 currency code for the country.":[null,"国の既定の ISO4127 通貨コードです。"],"ISO3166 alpha-2 country code.":[null,"ISO3166 alpha-2 国コード。"],"List of countries on this continent.":[null,"この大陸の国の一覧です。"],"Full name of continent.":[null,"大陸の完全な名前。"],"There are no locations matching these parameters.":[null,"これらのパラメータに一致する場所がありません。"],"2 character continent code.":[null,"2文字の大陸コード。"],"Shipping label tracking number":[null,"出荷ラベル追跡番号"],"Shipping label service":[null,"配送ラベルサービス"],"Warning: Erasing personal data will cause the ability to reprint or refund WooCommerce Shipping & Tax shipping labels to be lost on the affected orders.":[null,""],"By using this extension, you may be storing personal data or sharing data with external services. <a href=\"%s\" target=\"_blank\">Learn more about how this works, including what you may want to include in your privacy policy.</a>":[null,"この拡張機能を使用することにより、個人データを保存したり、外部サービスとデータを共有したりすることができます。<a href=\"%s\" target=\"_blank\">プライバシーポリシーに含めることができるかを含め、これがどのように機能するかについては、こちらをご覧ください。</a>"],"There was a problem updating your saved credit cards.":[null,"保存したクレジットカードの更新中に問題が発生しました。"],"No labels found for this period":[null,"この期間のラベルが見つかりません"],"Total":[null,"合計"],"Refund":[null,"返金"],"Price":[null,"価格"],"Order":[null,"注文"],"Time":[null,"時間"],"Requested":[null,"リクエスト済み"],"Last 7 days":[null,"過去1週間"],"This month":[null,"今月"],"Last month":[null,"先月"],"Year":[null,"年"],"Export CSV":[null,"CSV のエクスポート"],"Other Log":[null,"他のログ"],"Taxes Log":[null,"税ログ"],"Shipping Log":[null,"出荷ログ"],"Display troubleshooting information on the Cart and Checkout pages.":[null,"カートおよびチェックアウトページのトラブルシューティング情報を表示します。"],"Write diagnostic messages to log files. Helpful when contacting support.":[null,"ログファイルに診断メッセージを書き込みます。サポートに問い合わせるときに役立ちます。"],"Enter your email address at which to accept payments. You'll need to link your own account in order to perform anything other than \"sale\" transactions.":[null,"支払いを受け付けるメールアドレスを入力します。「セール」の取引以外のことを行うためには、自分のアカウントをリンクする必要があります。"],"Payment Email":[null,"支払いメール"],"To authenticate payments with WooCommerce Shipping & Tax, <a href=\"%s\">click here</a>.":[null,""],"Payments will be authenticated by WooCommerce Shipping & Tax and directed to the following email address. To disable this feature and link a PayPal account, <a href=\"%s\">click here</a>.":[null,""],"%s (Note that \"authorizing payment only\" requires linking a PayPal account.)":[null,"%s (「支払いのみを許可する」では、PayPal アカウントのリンクが必要です。)"],"Link account":[null,"リンクアカウント"],"Link a new or existing PayPal account to make sure future orders are marked “Processing” instead of “On hold”, and so refunds can be issued without leaving WooCommerce.":[null,"将来の注文が「保留中」の代わりに「処理」とマークされていることを確認するために、新しいまたは既存の PayPal アカウントをリンクし、払い戻しは WooCommerce を離れることなく発行することができます。"],"Link your PayPal account":[null,"PayPal アカウントをリンクする"],"To issue refunds via PayPal Checkout, you will need to <a href=\"%s\">link a PayPal account</a> with the email address that received this payment.":[null,"PayPal のチェックアウトを介して払い戻しを発行するには、この支払いを受信したメールアドレスと <a href=\"%s\">PayPal アカウントをリンクする</a>必要があります。"],"Link a PayPal account":[null,"PayPal アカウントをリンクする"],"Refresh":[null,"更新"],"Tracking number":[null,"問い合わせ番号"],"Provider":[null,"プロバイダー"],"WooCommerce Shipping & Tax is almost ready to go! Once you connect Jetpack you'll have access to %s.":[null,""],"Hosted services for WooCommerce: automated tax calculation, shipping label printing, and smoother payment setup.":[null,"WooCommerce のためのホストされたサービス: 自動税計算、出荷ラベルの印刷、およびよりスムーズな支払い設定。"],"Tax Class":[null,"税区分."],"Shipping":[null,"配送"],"Compound":[null,"合成"],"Priority":[null,"優先"],"Tax Name":[null,"税の名前"],"Rate %":[null,"率 %"],"ZIP/Postcode":[null,"ZIP/Postcode"],"State Code":[null,"州コード。"],"Country Code":[null,"国別コード"],"Enable automated taxes":[null,"税の自動化の有効化"],"Disable automated taxes":[null,"税の自動化の無効化"],"Automated taxes":[null,"税の自動化"],"By clicking \"%1$s\", you agree to the <a href=\"%2$s\">Terms of Service</a> and to <a href=\"%3$s\">share certain data and settings</a> with WordPress.com and/or third parties.":[null,"\"%1$s\"をクリックすると、<a href=\"%2$s\">利用規約 </a>に同意し、WordPress.com またはサードパーティとして<a href=\"%3$s\">特定のデータと設定を共有</a>します。"],"Setup complete.":[null,"設定が完了。"],"You can now enjoy %s.":[null,"%s を楽しむことができるようになりました。"],"WooCommerce Shipping & Tax is almost ready to go! Once you connect your store you'll have access to %s.":[null,""],"automated tax calculation":[null,"自動税計算"],"smoother payment setup":[null,"スムーズな支払い設定"],"automated tax calculation and smoother payment setup":[null,"自動税計算とスムーズな支払い設定"],"Required":[null,"必須"],"Your shipping settings have been saved.":[null,"送料の設定が保存されました。"],"Unable to save your shipping settings. Please try again.":[null,"送料の設定を保存できません。もう一度やり直してください。"],"Dimensions":[null,"大きさ"],"Close":[null,"閉じる"],"Packages to be Shipped":[null,"出荷するパッケージ"],"Add to a New Package":[null,"新しいパッケージに追加する"],"Add items":[null,"アイテムを追加"],"Individually Shipped Item":[null,"個別出荷済品目"],"Item Dimensions":[null,"アイテムの寸法"],"Please select a package":[null,"パッケージを選択してください"],"Service schemas were not loaded":[null,"サービススキーマが読み込まれませんでした"],"Bad request":[null,"間違ったリクエスト"],"Order not found":[null,"注文が見つかりません"],"Got it, thanks!":[null,"わかったわ、ありがとう!"],"Activate Jetpack and connect":[null,"Jetpack を有効化して接続"],"Install Jetpack and connect":[null,"Jetpack のインストールと接続"],"Something went wrong. Please try connecting to Jetpack manually, or contact support on the WordPress.org forums.":[null,"何かが間違っていた。Jetpack に手動で接続してみるか、WordPress.org フォーラムのサポートにお問い合わせください。"],"Connecting...":[null,"接続中…"],"Activating...":[null,"有効化中…"],"When you're ready, purchase and print discounted labels from %s right here.":[null,""],"Discounted Shipping Labels":[null,"割引出荷ラベル"],"American Express":[null,"American Express"],"Discover":[null,"Discover"],"MasterCard":[null,"MasterCard"],"VISA":[null,"VISA"],"PayPal":[null,"PayPal"],"Add another credit card":[null,"別のクレジットカードを追加"],"%(selectedCount)d package selected":["%(selectedCount)d packages selected",["%(selectedCount)d パッケージを選択"]],"Unable to get your settings. Please refresh the page to try again.":[null,"設定を取得できません。ページを更新して、もう一度試してください。"],"%(numSelected)d service selected":["%(numSelected)d services selected",["%(numSelected)d サービスを選択"]],"Add and edit saved packages using the {{a}}Packaging Manager{{/a}}.":[null," {{a}}パッケージマネージャー {{/a}}を使用して、保存したパッケージを追加および編集する"],"Tracking #: {{trackingLink/}}":[null,"追跡番号: {{trackingLink/}}"],"%(item)s from {{pckg/}}":[null,""],"Which items would you like to add to {{pckg/}}?":[null,"{{pckg/}}に追加したい項目を指定してください。"],"1 item in 1 package: %(weight)s %(unit)s total":[null,""],"%(itemsCount)d items in 1 package: %(weight)s %(unit)s total":[null,""],"%(itemsCount)d items in %(packageCount)d packages: %(weight)s %(unit)s total":[null,""],"{{itemLink/}} is currently saved for a later shipment.":[null,"{{itemLink/}} は現在、後の出荷のために保存されています。"],"{{itemLink/}} is currently shipped in its original packaging.":[null,"{{itemLink/}} は現在、元のパッケージに同梱されています。"],"{{itemLink/}} is currently in {{pckg/}}.":[null,"{{itemLink/}} は現在 {{pckg/}} にあります。"],"Choose rate: %(pckg)s":[null,"レートを選択: %(pckg)s"],"Refund label (-%(amount)s)":[null,"返金ラベル (-%(amount)s)"],"Where would you like to move it?":[null,"どこに移動しますか?"],"Unsaved changes made to packages":[null,"パッケージに対して行われた未保存の変更"],"There are no items in this package.":[null,"このパッケージにはアイテムがありません。"],"Ship in original packaging":[null,"オリジナルパッケージに同梱"],"Request refund":[null,"払い戻しのリクエスト"],"Reprint":[null,"再印刷"],"Paper size":[null,"用紙サイズ"],"No packages selected":[null,"パッケージが選択されない"],"Move":[null,"移動"],"Move item":[null,"アイテムの移動"],"Increase the rates calculated by the carrier to account for packaging and handling costs. You can also add a negative amount to save your customers money.":[null,"梱包と取り扱いのコストを考慮して、キャリアによって計算されたレートを増やします。また、負の金額を追加して、顧客にお金を節約することもできます。"],"Create new label":[null,"新しいラベルを作成する"],"All packages selected":[null,"選択されたすべてのパッケージ"],"Add":[null,"追加"],"Add item":[null,"アイテム追加"],"Add a credit card":[null,"クレジットカードを追加"],"#%d - [Deleted product]":[null,"#%d - [削除された製品]"],"#%1$d - %2$s":[null,"#%1$d - %2$s"],"<a href=\"%s\">Support</a>":[null,"<a href=\"%s\">サポート</a>"],"There was an error installing Jetpack. Please try installing it manually.":[null,"Jetpack のインストール中にエラーが発生しました。手動でインストールしてください。"],"Shipping Labels":[null,"出荷ラベル"],"Automattic":[null,"Automattic"],"https://woocommerce.com/":[null,"https://woocommerce.com/"],"Phone":[null,"電話番号"],"Connect":[null,"連携"],"Save Settings":[null,"設定を保存"],"Your changes have been saved.":[null,"変更を保存しました。"],"There was a problem with one or more entries. Please fix the errors below and try saving again.":[null,"1つ以上のエントリに問題があります。以下のエラーを修正して、もう一度保存してください。"],"Expand":[null,"拡大"],"Dismiss":[null,"非表示"],"You have unsaved changes.":[null,"変更はまだ保存されていません。"],"Type of package":[null,"パッケージのタイプ"],"Add package":["Add packages",["パッケージの追加"]],"Invalid value.":[null,"無効な値です。"],"This field is required":[null,""],"Package name":[null,"パッケージ名"],"This field must be unique":[null,"このフィールドは一意である必要があります"],"Unable to save your shipping packages. Please try again.":[null,""],"Save changes":[null,"変更を保存"],"Untitled":[null,"タイトル無し"],"Dimensions (L x W x H)":[null,""],"All services selected":[null,"選択したすべてのサービス"],"Expand Services":[null,"サービスの拡充"],"Service":[null,"サービス"],"Price adjustment":[null,"価格調整"],"Saved Packages":[null,"保存済みパッケージ"],"Tracking":[null,"トラッキング"],"Create shipping label":["Create shipping labels",["出荷ラベルの作成"]],"Name":[null,"名前"],"Company":[null,"勤め先"],"Address":[null,"住所"],"City":[null,"市区町村"],"State":[null,"州"],"Country":[null,"国"],"Invalid address":[null,"無効な住所"],"Origin address":[null,"元の住所"],"Destination address":[null,"宛先住所"],"We have slightly modified the address entered. If correct, please use the suggested address to ensure accurate delivery.":[null,"入力された住所を少し変更しました。正しい場合は、正確な配信を確保するために提案された住所を使用してください。"],"Address entered":[null,"住所入力済"],"Edit address":[null,"住所を変更"],"Suggested address":[null,"推奨された住所"],"Use selected address":[null,"選択した住所を使用"],"Use these packages":[null,"これらのパッケージを使用"],"The service and rate chosen by the customer at checkout is not available. Please choose another.":[null,"チェックアウト時にお客様が選択したサービスと料金はご利用いただけません。別のを選択してください。"],"Request a refund":[null,"払い戻しをリクエスト"],"You can request a refund for a shipping label that has not been used to ship a package. It will take at least %(days)s days to process.":[null,""],"Purchase date":[null,"お申込日"],"Amount eligible for refund":[null,"払い戻しの対象となる金額"],"Reprint shipping label":[null,"出荷ラベルの再印刷"],"If there was a printing error when you purchased the label, you can print it again.":[null,"ラベルを購入したときに印刷エラーが発生した場合は、もう一度印刷することができます。"],"NOTE: If you already used the label in a package, printing and using it again is a violation of our terms of service and may result in criminal charges.":[null,"注: 既にパッケージでラベルを使用している場合、印刷して再度使用することはサービス規約違反であり、刑事告発の原因となる可能性があります。"],"Print":[null,"印刷"],"Cancel":[null,"キャンセル"],"N/A":[null,"該当なし"],"More":[null,"続き"],"Invalid PDF request.":[null,"PDF 要求が無効です。"],"Unknown package":[null,"不明なパッケージ"],"Individual packaging":[null,"個々のパッケージ"],"Unable to update service settings. Validation failed. %s":[null,"サービス設定を更新できません。検証に失敗。%s"],"Unable to update service settings. The form data could not be read.":[null,"サービス設定を更新できません。フォームデータを読み取れませんでした。"],"Unable to update service settings. Form data is missing service ID.":[null,"サービス設定を更新できません。フォームデータにサービス ID がありません。"],"Unable to update settings. The form data could not be read.":[null,"設定を更新できません。フォームデータを読み取れませんでした。"],"Unable to update settings. %s":[null,"設定を更新できません。 %s"],"Packaging":[null,"パッケージング"],"Section not loading? Visit the <a href=\"%s\">status page</a> for troubleshooting steps.":[null,"セクションがロードされない?トラブルシューティング手順については、<a href=\"%s\">ステータスページの </a> を参照してください。"],"Note: Jetpack development mode is enabled on this site. This site will not be able to obtain payment methods from WooCommerce Shipping & Tax production servers.":[null,""],"Note: Jetpack is connected, but development mode is also enabled on this site. Please disable development mode.":[null,"注: Jetpack は接続されていますが、このサイトでは開発モードも有効になっています。開発モードを無効にしてください。"],"Shipping Label":[null,"出荷ラベル"],"yd":[null,"yd (ヤード)"],"in":[null,"in (インチ)"],"mm":[null,"mm"],"cm":[null,"cm"],"m":[null,"m"],"oz":[null,"oz (オンス)"],"lbs":[null,"lbs (ポンド)"],"g":[null,"g"],"kg":[null,"kg"],"An invalid service ID was received.":[null,"無効なサービス ID を受信しました。"],"An invalid service instance was received.":[null,"無効なサービスインスタンスを受信しました。"],"Rest of the World":[null,"その他の地域"],"Support":[null,"サポート"],"Debug":[null,"デバッグ"],"Services":[null,"サービス"],"Need help?":[null,"お困りですか ?"],"Log is empty":[null,"ログが空です"],"Disabled":[null,"無効"],"Enabled":[null,"有効"],"%s Shipping Zone":[null,"%s 配送地域"],"The most recent rate request failed":[null,"最新のレート要求が失敗しました"],"The most recent rate request was successful":[null,"最新のレート要求が成功しました"],"No rate requests have yet been made for this service":[null,"このサービスに対するレート要求はまだ作成されていません"],"Setup for this service has not yet been completed":[null,"このサービスのセットアップはまだ完了していません"],"Service data is up-to-date":[null,"サービスデータは最新の状態です。"],"Service data was found, but is more than one day old":[null,"サービスデータが見つかりましたが、1日以上経過しています"],"Service data was found, but is more than three days old":[null,"サービスデータが見つかりましたが、3日以上経過しています"],"Service data found, but may be out of date":[null,""],"No service data available":[null,"利用できるサービスデータがありません"],"Jetpack":[null,"Jetpack"],"Jetpack %s is connected and working correctly":[null,"Jetpack %s が接続され、正しく動作している"],"This is a Jetpack staging site":[null,"これは Jetpack のステージングサイトです。"],"Jetpack is not connected to WordPress.com. Make sure the Jetpack plugin is installed, activated, and connected.":[null,"Jetpack は WordPress.com に接続されていません。Jetpack プラグインがインストール、アクティブ化、接続されていることを確認します。"],"Jetpack %1$s or higher is required (You are running %2$s)":[null,""],"Please install and activate the Jetpack plugin, version %s or higher":[null,"Jetpack プラグインをインストールして有効にしてください、バージョン %s またはそれ以上"],"WooCommerce":[null,"WooCommerce"],"WooCommerce %s is configured correctly":[null,"WooCommerce %s は正しく設定されています"],"Please set Base Location in WooCommerce Settings > General":[null,"ベースの場所は WooCommerce 設定 > 一般設定 に設定してください"],"WooCommerce %1$s or higher is required (You are running %2$s)":[null,""],"Dismiss this notice":[null,"この通知を非表示にする"],"ERROR: Your site has a problem connecting to the WooCommerce Shipping & Tax API. Please make sure your Jetpack connection is working.":[null,""],"Your site is succesfully communicating to the WooCommerce Shipping & Tax API.":[null,""],"This will test your WooCommerce Shipping & Tax connection to ensure everything is working correctly":[null,""],"Test Connection":[null,"テスト接続"],"The WooCommerce Shipping & Tax brandname\u0004WooCommerce Shipping & Tax":[null,""],"The WooCommerce Shipping & Tax brandname\u0004WooCommerce Shipping":[null,""],"%s - ZIP/Postal code checkout field label\u0004Invalid %s entered.":[null,""],"%s - ZIP/Postal code checkout field label\u0004%s does not match the selected state.":[null,""],"date is of the form MM/YY\u0004Expires %(date)s":[null,"有効期限 %(date)s"],"A service with an unknown title and unknown method_title\u0004Unknown":[null,"不明"],"This section displays the overall health of WooCommerce Shipping & Tax and the things it depends on\u0004Health":[null,""]}
1
+ {"0":[null,"0"],"":{"po-revision-date":"2019-06-11 05:57:26+0000","mime-version":"1.0","content-type":"text/plain; charset=UTF-8","content-transfer-encoding":"8bit","plural-forms":"nplurals=1; plural=0;","x-generator":"GlotPress/3.0.0-alpha.2","language":"ja_JP","project-id-version":"Plugins - WooCommerce Shipping &amp; Tax - Stable (latest release)"},"Features":[null,""],"Carrier":[null,""],"Express delivery from the experts in international shipping":[null,""],"Live rates for %(carrierName)s at checkout":[null,""],"Ship with the largest delivery network in the United States":[null,""],"Discounted %(carrierName)s shipping labels":[null,""],"To be displayed at checkout, this carrier must be added as a shipping method to selected shipping zones":[null,""],"Add to shipping zones":[null,""],"Show live rates directly on your store - never under or overcharge for shipping again":[null,""],"Live rates at checkout":[null,""],"Last updated %s.":[null,""],"At least one of the new predefined packages has the same name as existing packages.":[null,""],"The new predefined package names are not unique.":[null,""],"At least one of the new custom packages has the same name as existing packages.":[null,""],"The new custom package names are not unique.":[null,""],"Go to shipping zones":[null,""],"Add DHL Express as a shipping method to selected shipping zones to display live rates at checkout.":[null,""],"DHL Express live rates are now available":[null,""],"State %1$s is invalid for %2$s.":[null,""],"%1$s %2$s is invalid for %3$s.":[null,""],"A %1$s is required for %2$s.":[null,""],"A country is required":[null,""],"Your store is over the limit for rate calls this month and your account will be charged for overages. To prevent future overage charges you can upgrade your plan.":[null,""],"There was an error trying to activate your subscription.":[null,""],"Your subscription was succesfully activated.":[null,""],"Manage":[null,""],"Usage":[null,""],"View and manage your subscription usage":[null,""],"Shipping method":[null,""],"The subscription is already active.":[null,""],"Set up your own carrier account to compare rates and print labels from multiple carriers in WooCommerce Shipping. Learn more about adding {{a}}carrier accounts{{/a}}.":[null,""],"There was an error connecting to your %(carrierName)s account. Please check that all of the information entered matches your %(carrierName)s account and try to connect again.":[null,""],"Your carrier account was connected successfully.":[null,""],"The date must be a valid date in the format YYYY-MM-DD":[null,""],"The invoice number needs to be 9 or 13 letters and digits in length":[null,""],"The company website format is not valid":[null,""],"The email format is not valid":[null,""],"The ZIP/Postal code needs to be 5 digits in length":[null,""],"The phone number needs to be 10 digits in length":[null,""],"The UPS account number needs to be 6 letters and digits in length":[null,""],"This will remove the connection with %(carrier_name)s. All of your %(carrier_name)s account information will be deleted and you won\\u2019t see %(carrier_name)s rates.":[null,""],"Disconnect your %(carrier_name)s account":[null,""],"There was an error trying to disconnect your carrier account":[null,""],"Your carrier account was disconnected succesfully.":[null,""],"DHL Express":[null,""],"Powered by WooCommerce Tax. If automated taxes are enabled, you'll need to enter prices exclusive of tax.":[null,""],"WooCommerce Helper auth is missing":[null,""],"USPS labels without tracking are not eligible for refund.":[null,""],"General Information":[null,""],"Connect your %(carrierName)s account":[null,""],"%(carrierName)s not supported.":[null,""],"Loading":[null,""],"WooCommerce Shipping & Tax Data":[null,""],"Print customs form":[null,""],"Test your WooCommerce Shipping & Tax connection":[null,""],"WooCommerce Shipping & Tax Status":[null,""],"Connect your store to activate WooCommerce Shipping & Tax":[null,""],"Connect Jetpack to activate WooCommerce Shipping & Tax":[null,""],"WooCommerce Shipping now supports DHL labels for international shipments. Purchase and print discounted labels from DHL and USPS right here.":[null,""],"Discounted DHL Shipping Labels":[null,""],"WooCommerce Shipping":[null,""],"Invalid WooCommerce Shipping & Tax service slug provided":[null,""],"WooCommerce Shipping & Tax":[null,""],"ZIP/Postal code":[null,""],"This action will delete any information entered on the form.":[null,""],"Cancel connection":[null,""],"Ok":[null,""],"UPS invoice control id":[null,""],"UPS invoice currency":[null,""],"UPS invoice amount":[null,""],"UPS invoice date":[null,""],"UPS invoice number":[null,""],"I have been issued an invoice from UPS within the past 90 days":[null,""],"UPS account information":[null,""],"Company website":[null,""],"Job title":[null,""],"Company name":[null,""],"This is the company info you used to create your UPS account":[null,""],"Company information":[null,""],"Email":[null,""],"Address 2 (optional)":[null,""],"Account number":[null,""],"This is the account number and address from your UPS profile":[null,""],"General information":[null,""],"If you need a UPS account number, go to {{a}}UPS.com{{/a}} to create a new account.":[null,""],"Set up your own UPS carrier account to compare rates and print labels from multiple carriers in WooCommerce Shipping. Learn more about adding {{a}}carrier accounts{{/a}}.":[null,""],"Connect your UPS account":[null,""],"Set up your own carrier account by adding your credentials here":[null,""],"Carrier account":[null,""],"Credentials":[null,""],"Adult signature required":[null,""],"Signature required":[null,""],"Other\\u2026":[null,""],"Select one\\u2026":[null,""],"Validating address\\u2026":[null,""],"Purchasing\\u2026":[null,""],"Your UPS account will be charged":[null,""],"Package %(index)s \\u2013 %(title)s":[null,""],"Saving\\u2026":[null,""],"Your tax rates and settings will be automatically configured for %1$s. <a href=\"https://docs.woocommerce.com/document/setting-up-taxes-in-woocommerce/#section-12\">Learn more about setting up tax rates for additional nexuses</a>":[null,""],"Your tax rates and settings will be automatically configured for %1$s, %2$s. <a href=\"https://docs.woocommerce.com/document/setting-up-taxes-in-woocommerce/#section-12\">Learn more about setting up tax rates for additional nexuses</a>":[null,""],"%(itemCount)d item is ready to be fulfilled":["%(itemCount)d items are ready to be fulfilled",[""]],"%(itemCount)d item was fulfilled on {{span}}%(createdDate)s{{/span}}":["%(itemCount)d items were fulfilled on {{span}}%(createdDate)s{{/span}}",[""]],"Schedule a pickup":[null,""],"Label images older than 180 days are deleted by our technology partners for general security and data privacy concerns.":[null,""],"Labels older than 30 days cannot be refunded.":[null,""],"Mark this order as complete and notify the customer":[null,""],"Notify the customer with shipment details":[null,""],"You save %s with WooCommerce Shipping":[null,""],"WooCommerce Shipping & Tax requires the WooCommerce plugin to be installed and active. You can download %s here.":[null,""],"No tracking information available at this time":[null,""],"Connection error: unable to create label at this time":[null,""],"Track Package":["Track Packages",[""]],"Which package would you like to track?":[null,""],"%(service)s label (#%(labelIndex)d)":[null,""],"To print this shipping label, {{a}}add a credit card to your account{{/a}}.":[null,""],"Add credit card":[null,""],"To print this shipping label, {{a}}choose a credit card to add to your account{{/a}}.":[null,""],"Choose credit card":[null,""],"Buy shipping label":["Buy shipping labels",[""]],"shipping label ready":["shipping labels ready",[""]],"Shipping from":[null,""],"Shipping summary":[null,""],"Customer paid a {{shippingMethod/}} of {{shippingCost/}} for shipping":[null,""],"Shipping rates":[null,""],"HS Tariff number":[null,""],"Submit":[null,""],"Total Weight (with package)":[null,""],"QTY":[null,""],"Weight":[null,""],"Items to fulfill":[null,""],"Select a package type":[null,""],"Package details":[null,""],"Your shipping packages have been saved.":[null,""],"0.0":[null,""],"Shipment Tracking":[null,""],"Customs information valid":[null,"関税情報が有効"],"Customs information incomplete":[null,"関税情報が不完全"],"Packing Log:":[null,"パッキングログ:"],"Chosen Rate:":[null,"選択したレート:"],"Shipping Method ID:":[null,"配送方法 ID:"],"Shipping Method Name:":[null,"配送方法名:"],"Shipping Debug":[null,"配送デバッグ"],"<strong>\"%2$s\" is missing weight, length, width, or height.</strong><br />Shipping rates cannot be calculated. <a href=\"%1$s\">Enter dimensions and weight for %2$s</a> so your customers can purchase this item.":[null,"<strong> \"%2$s\" の重さ、長さ、幅、または高さがありません。 </strong><br /> 送料の計算はできません。<a href=\"%1$s\">%2$s</a> の大きさと重さを入力して、顧客がこのアイテムを購入できるようにします。"],"Unable to send request to WooCommerce Shipping & Tax server. The timestamp generated for the signature is too old.":[null,""],"Unable to send request to WooCommerce Shipping & Tax server. Jetpack Token is malformed.":[null,""],"Unable to send request to WooCommerce Shipping & Tax server. Jetpack Token is missing":[null,""],"Error: The WooCommerce Shipping & Tax server returned: %1$s %2$s ( %3$d )":[null,""],"Error: The WooCommerce Shipping & Tax server returned ( %d ) and an empty response body.":[null,""],"Error: The WooCommerce Shipping & Tax server returned HTTP code: %d":[null,""],"Unable to encode body for request to WooCommerce Shipping & Tax server.":[null,""],"Unable to send request to WooCommerce Shipping & Tax server. Body must be an array.":[null,""],"Unable to send request to WooCommerce Shipping & Tax server. Jetpack connection does not implement get_access_token.":[null,""],"Unable to send request to WooCommerce Shipping & Tax server. Jetpack_Data was not found.":[null,""],"No shipping rate could be calculated. No items in the package are shippable.":[null,"送料を計算することはできません。パッケージ内のアイテムは出荷可能なされません。"],"Product ( ID: %d ) is missing a dimension value. Shipping rates cannot be calculated.":[null,"商品 ( ID: %d )に大きさの値がありません。送料を計算することはできません。"],"Product ( ID: %d ) did not include a weight. Shipping rates cannot be calculated.":[null,"商品 ( ID: %d ) には重さが含まれていませんでした。送料を計算することはできません。"],"Packing log:":[null,"パッキングログ:"],"Received rate: %1$s (%2$s)":[null,"受信レート: %1$s (%2$s)"],"Your customer selected {{shippingMethod/}}":[null,"お客様が選択した {{shippingMethod/}}"],"Total rate: %(total)s":[null,"総レート:% (total)s"],"%(serviceName)s: %(rate)s":[null,"%(serviceName)s: %(rate)s"],"No rates found":[null,"レートが見つかりません"],"WooCommerce Shipping gives you access to USPS Commercial Pricing, which is discounted over Retail rates.":[null,""],"more info":[null,"詳細情報"],"ITN":[null,""],"Sanitary / Phytosanitary inspection":[null,"衛生/植物検疫検査"],"Quarantine":[null,"検疫"],"None":[null,"無"],"Restriction type":[null,"制限タイプ"],"Details":[null,"詳細"],"Sample":[null,"サンプル"],"Gift":[null,"贈り物"],"Documents":[null,"ドキュメント"],"Merchandise":[null,"商品"],"Contents type":[null,"コンテンツタイプ"],"Return to sender if package is unable to be delivered":[null,"パッケージが配信できない場合は、送信者に戻る"],"Value (per unit)":[null,"値 (単位あたり)"],"Weight (per unit)":[null,"重さ (単位あたり)"],"Save customs form":[null,"税関フォームを保存"],"Customs":[null,"税関"],"Use address as entered":[null,"入力した住所の使用"],"View on Google Maps":[null,"Google Maps で見る"],"Verify with USPS":[null,"USPS で確認"],"Automatic verification failed for this address. It may still be a valid address \\u2014 use the tools below to manually verify.":[null,""],"We were unable to automatically verify the address.":[null,"住所を自動的に確認できませんでした。"],"We were unable to automatically verify the address \\u2014 %(error)s.":[null,""],"You've edited the address, please revalidate it for accurate rates":[null,"住所を編集したので、正しいレートで再検証してください"],"Verify address":[null,"住所の確認"],"%(message)s. Please modify the address and try again.":[null,"%(message)sです。住所を変更して、やり直してください。"],"View details":[null,"詳細を見る"],"Items":[null,"アイテム"],"Package":[null,"パッケージ"],"Receipt":[null,"領収書"],"Label #%(labelIndex)s details":[null,"ラベル #%(labelIndex)s の詳細"],"{{icon/}} Delete this package":[null,"{{icon/}} このパッケージを削除"],"Done":[null,"完了"],"Add boxes, envelopes, and other packages you use most frequently":[null,""],"Remove":[null,"削除"],"Edit":[null,"編集"],"Weight of empty package":[null,"空のパッケージの重量"],"Unique package name":[null,"一意のパッケージ名"],"Envelope":[null,"封筒"],"Box":[null,"箱"],"This field is required.":[null,"この項目は必須です。"],"Payment":[null,"支払い"],"Email the label purchase receipts to %(ownerName)s (%(ownerLogin)s) at %(ownerEmail)s":[null,"ラベル購入領収書を%(ownerName)s (%(ownerLogin)s) で %(ownerEmail)s にメールで送信します。"],"Email Receipts":[null,"メールの受信"],"To purchase shipping labels, choose a credit card you have on file or add a new card.":[null,"出荷ラベルを購入するには、ファイルに登録されているクレジットカードを選択するか、新しいカードを追加します。"],"Choose a different card":[null,"別のカードを選択"],"To purchase shipping labels, add a credit card.":[null,"出荷ラベルを購入するには、クレジットカードを追加します。"],"We'll charge the credit card on your account (%(card)s) to pay for the labels you print":[null,"印刷したラベルの支払いに使用するクレジットカード (%(card)s) は、お客様のアカウントに請求されます。"],"Credit cards are retrieved from the following WordPress.com account: %(wpcomLogin)s <%(wpcomEmail)s>":[null,"クレジットカードは、次の WordPress.com アカウントから取得されます %(wpcomLogin)s <%(wpcomEmail)s>"],"Only the site owner can change these settings. Please contact %(ownerName)s (%(ownerLogin)s) to change the shipping label settings.":[null,"これらの設定は、サイト所有者のみが変更できます。送料ラベルの設定を変更するには、 %(ownerName)s (%(ownerLogin)s) にお問い合わせください。"],"Only the site owner can manage shipping label payment methods. Please contact %(ownerName)s (%(ownerLogin)s) to manage payment methods.":[null,"配送ラベルの支払方法は、サイト所有者のみが管理できます。支払方法を管理するには、 %(ownerName)s (%(ownerLogin)s) までお問い合わせください。"],"%(card)s ****%(digits)s":[null,"%(card)s ****%(digits)s"],"Print shipping labels yourself and save a trip to the post office":[null,""],"H":[null,"高"],"W":[null,"幅"],"L":[null,"長"],"Disconnect":[null,"切断"],"Activate":[null,""],"No activity yet":[null,"アクティビティはまだありません"],"Note":[null,"備考"],"Refunded %(amount)s":[null,"返金済み %(amount)s"],"%(service)s label (#%(labelNum)d) refund rejected":[null,"%(service)s ラベル (#%(labelNum)d) 払い戻しが拒否されました"],"%(service)s label (#%(labelNum)d) refunded (%(amount)s)":[null,"%(service)s ラベル (#%(labelNum)d) 返金額 (%(amount)s)"],"%(service)s label (#%(labelNum)d) refund requested (%(amount)s)":[null,"%(service)s ラベル (#%(labelNum)d) 要求された払戻額 (%(amount)s)"],"Note sent to customer":[null,"顧客に送信されたメモ"],"Internal note":[null,"内部メモ"],"Show notes from %(date)s":[null,"%(date)s からノートを表示します"],"%(count)s event":["%(count)s events",["%(count)s イベント"]],"WeChat Pay":[null,"WeChat の支払い"],"Toggle menu":[null,"トグルメニュー"],"Return to Order #%(orderId)s":[null,"注文 # #%(orderId)s に戻る"],"Our team is here for you. View our {{docsA}}support docs{{/docsA}} or {{ticketA}}open a support ticket{{/ticketA}}.":[null,"チームはあなたのためにここにいます。 {{docsA}}サポートドキュメント{{/docsA}} または {{ticketA}}サポートチケットを開きます{{/ticketA}}を御覧ください。"],"Logging":[null,"ログ記録中"],"No services configured. {{a}}Add a shipping service{{/a}}":[null,"サービスは構成されません。{{a}}配送サービスを追加する {{/a}}"],"Edit service settings":[null,"サービス設定の編集"],"Request was made %s - check logs below or {{a}}edit service settings{{/a}}":[null,"要求が %s - 以下のログをチェックするか、を{{a}}編集してサービス設定 {{/a}}"],"Copy for support":[null,"サポートのためのコピー"],"Last %s entry. {{a}}Show full log{{/a}}":["Last %s entries. {{a}}Show full log{{/a}}",["最後の %s エントリ。{{a}}完全なログを表示{{/a}}"]],"Log tail copied to clipboard":[null,"クリップボードにコピーされたテールログ"],"You have unsaved changes. Are you sure you want to leave this page?":[null,""],"Value ($ per unit)":[null,"値 (単位あたり$)"],"Weight (%s per unit)":[null,"重さ (%s 単位あたり)"],"Description":[null,"説明"],"Country where the product was manufactured or assembled":[null,"商品が製造または組み立てられた国"],"Origin country":[null,"原産国"],"USPS":[null,""],"Optional":[null,"オプション"],"Retry":[null,"再試行"],"shipping label printing":[null,"出荷ラベル印刷"],"shipping label printing and smoother payment setup":[null,"出荷ラベル印刷とスムーズな支払い設定"],"automated tax calculation and shipping label printing":[null,"自動税計算および出荷ラベル印刷"],"automated tax calculation, shipping label printing, and smoother payment setup":[null,"自動税計算、出荷ラベル印刷、スムーズな支払い設定"],"Data resource description.":[null,"データリソースの説明。"],"Data resource ID.":[null,"データリソース ID。"],"List of supported currencies.":[null,"サポートされる通貨の一覧。"],"List of supported states in a given country.":[null,"特定の国でサポートされている状態の一覧です。"],"List of supported continents, countries, and states.":[null,"サポートされている大陸、国、および州のリスト。"],"Sorry, you cannot view this resource.":[null,"このリソースを表示する権限がありません。"],"Sorry, you cannot list resources.":[null,"リソースを一覧表示できません。"],"The unit weights are defined in for this country.":[null,"単位重量は、この国に対して定義されます。"],"Thousands separator for displayed prices in this country.":[null,"表示価格のための千の位の区切り文字。"],"Full name of state.":[null,"州の完全名。"],"State code.":[null,"州コード。"],"List of states in this country.":[null,"この国の州一覧。"],"Number of decimal points shown in displayed prices for this country.":[null,"この国の表示価格に表示されている小数点以下の桁数。"],"Full name of country.":[null,"国の完全な名前。"],"The unit lengths are defined in for this country.":[null,"この国では、単位の長さが定義されています。"],"Decimal separator for displayed prices for this country.":[null,"この国の表示価格の10進数の区切り記号です。"],"Currency symbol position for this country.":[null,"この国の通貨記号の位置。"],"Default ISO4127 alpha-3 currency code for the country.":[null,"国の既定の ISO4127 通貨コードです。"],"ISO3166 alpha-2 country code.":[null,"ISO3166 alpha-2 国コード。"],"List of countries on this continent.":[null,"この大陸の国の一覧です。"],"Full name of continent.":[null,"大陸の完全な名前。"],"There are no locations matching these parameters.":[null,"これらのパラメータに一致する場所がありません。"],"2 character continent code.":[null,"2文字の大陸コード。"],"Shipping label tracking number":[null,"出荷ラベル追跡番号"],"Shipping label service":[null,"配送ラベルサービス"],"Warning: Erasing personal data will cause the ability to reprint or refund WooCommerce Shipping & Tax shipping labels to be lost on the affected orders.":[null,""],"By using this extension, you may be storing personal data or sharing data with external services. <a href=\"%s\" target=\"_blank\">Learn more about how this works, including what you may want to include in your privacy policy.</a>":[null,"この拡張機能を使用することにより、個人データを保存したり、外部サービスとデータを共有したりすることができます。<a href=\"%s\" target=\"_blank\">プライバシーポリシーに含めることができるかを含め、これがどのように機能するかについては、こちらをご覧ください。</a>"],"There was a problem updating your saved credit cards.":[null,"保存したクレジットカードの更新中に問題が発生しました。"],"No labels found for this period":[null,"この期間のラベルが見つかりません"],"Total":[null,"合計"],"Refund":[null,"返金"],"Price":[null,"価格"],"Order":[null,"注文"],"Time":[null,"時間"],"Requested":[null,"リクエスト済み"],"Last 7 days":[null,"過去1週間"],"This month":[null,"今月"],"Last month":[null,"先月"],"Year":[null,"年"],"Export CSV":[null,"CSV のエクスポート"],"Other Log":[null,"他のログ"],"Taxes Log":[null,"税ログ"],"Shipping Log":[null,"出荷ログ"],"Display troubleshooting information on the Cart and Checkout pages.":[null,"カートおよびチェックアウトページのトラブルシューティング情報を表示します。"],"Write diagnostic messages to log files. Helpful when contacting support.":[null,"ログファイルに診断メッセージを書き込みます。サポートに問い合わせるときに役立ちます。"],"Enter your email address at which to accept payments. You'll need to link your own account in order to perform anything other than \"sale\" transactions.":[null,"支払いを受け付けるメールアドレスを入力します。「セール」の取引以外のことを行うためには、自分のアカウントをリンクする必要があります。"],"Payment Email":[null,"支払いメール"],"To authenticate payments with WooCommerce Shipping & Tax, <a href=\"%s\">click here</a>.":[null,""],"Payments will be authenticated by WooCommerce Shipping & Tax and directed to the following email address. To disable this feature and link a PayPal account, <a href=\"%s\">click here</a>.":[null,""],"%s (Note that \"authorizing payment only\" requires linking a PayPal account.)":[null,"%s (「支払いのみを許可する」では、PayPal アカウントのリンクが必要です。)"],"Link account":[null,"リンクアカウント"],"Link a new or existing PayPal account to make sure future orders are marked “Processing” instead of “On hold”, and so refunds can be issued without leaving WooCommerce.":[null,"将来の注文が「保留中」の代わりに「処理」とマークされていることを確認するために、新しいまたは既存の PayPal アカウントをリンクし、払い戻しは WooCommerce を離れることなく発行することができます。"],"Link your PayPal account":[null,"PayPal アカウントをリンクする"],"To issue refunds via PayPal Checkout, you will need to <a href=\"%s\">link a PayPal account</a> with the email address that received this payment.":[null,"PayPal のチェックアウトを介して払い戻しを発行するには、この支払いを受信したメールアドレスと <a href=\"%s\">PayPal アカウントをリンクする</a>必要があります。"],"Link a PayPal account":[null,"PayPal アカウントをリンクする"],"Refresh":[null,"更新"],"Tracking number":[null,"問い合わせ番号"],"Provider":[null,"プロバイダー"],"WooCommerce Shipping & Tax is almost ready to go! Once you connect Jetpack you'll have access to %s.":[null,""],"Hosted services for WooCommerce: automated tax calculation, shipping label printing, and smoother payment setup.":[null,"WooCommerce のためのホストされたサービス: 自動税計算、出荷ラベルの印刷、およびよりスムーズな支払い設定。"],"Tax Class":[null,"税区分."],"Shipping":[null,"配送"],"Compound":[null,"合成"],"Priority":[null,"優先"],"Tax Name":[null,"税の名前"],"Rate %":[null,"率 %"],"ZIP/Postcode":[null,"ZIP/Postcode"],"State Code":[null,"州コード。"],"Country Code":[null,"国別コード"],"Enable automated taxes":[null,"税の自動化の有効化"],"Disable automated taxes":[null,"税の自動化の無効化"],"Automated taxes":[null,"税の自動化"],"By clicking \"%1$s\", you agree to the <a href=\"%2$s\">Terms of Service</a> and to <a href=\"%3$s\">share certain data and settings</a> with WordPress.com and/or third parties.":[null,"\"%1$s\"をクリックすると、<a href=\"%2$s\">利用規約 </a>に同意し、WordPress.com またはサードパーティとして<a href=\"%3$s\">特定のデータと設定を共有</a>します。"],"Setup complete.":[null,"設定が完了。"],"You can now enjoy %s.":[null,"%s を楽しむことができるようになりました。"],"WooCommerce Shipping & Tax is almost ready to go! Once you connect your store you'll have access to %s.":[null,""],"automated tax calculation":[null,"自動税計算"],"smoother payment setup":[null,"スムーズな支払い設定"],"automated tax calculation and smoother payment setup":[null,"自動税計算とスムーズな支払い設定"],"Required":[null,"必須"],"Your shipping settings have been saved.":[null,"送料の設定が保存されました。"],"Unable to save your shipping settings. Please try again.":[null,"送料の設定を保存できません。もう一度やり直してください。"],"Dimensions":[null,"大きさ"],"Close":[null,"閉じる"],"Packages to be Shipped":[null,"出荷するパッケージ"],"Add to a New Package":[null,"新しいパッケージに追加する"],"Add items":[null,"アイテムを追加"],"Individually Shipped Item":[null,"個別出荷済品目"],"Item Dimensions":[null,"アイテムの寸法"],"Please select a package":[null,"パッケージを選択してください"],"Service schemas were not loaded":[null,"サービススキーマが読み込まれませんでした"],"Bad request":[null,"間違ったリクエスト"],"Order not found":[null,"注文が見つかりません"],"Got it, thanks!":[null,"わかったわ、ありがとう!"],"Activate Jetpack and connect":[null,"Jetpack を有効化して接続"],"Install Jetpack and connect":[null,"Jetpack のインストールと接続"],"Something went wrong. Please try connecting to Jetpack manually, or contact support on the WordPress.org forums.":[null,"何かが間違っていた。Jetpack に手動で接続してみるか、WordPress.org フォーラムのサポートにお問い合わせください。"],"Connecting...":[null,"接続中…"],"Activating...":[null,"有効化中…"],"When you're ready, purchase and print discounted labels from %s right here.":[null,""],"Discounted Shipping Labels":[null,"割引出荷ラベル"],"American Express":[null,"American Express"],"Discover":[null,"Discover"],"MasterCard":[null,"MasterCard"],"VISA":[null,"VISA"],"PayPal":[null,"PayPal"],"Add another credit card":[null,"別のクレジットカードを追加"],"%(selectedCount)d package selected":["%(selectedCount)d packages selected",["%(selectedCount)d パッケージを選択"]],"Unable to get your settings. Please refresh the page to try again.":[null,"設定を取得できません。ページを更新して、もう一度試してください。"],"%(numSelected)d service selected":["%(numSelected)d services selected",["%(numSelected)d サービスを選択"]],"Add and edit saved packages using the {{a}}Packaging Manager{{/a}}.":[null," {{a}}パッケージマネージャー {{/a}}を使用して、保存したパッケージを追加および編集する"],"Tracking #: {{trackingLink/}}":[null,"追跡番号: {{trackingLink/}}"],"%(item)s from {{pckg/}}":[null,""],"Which items would you like to add to {{pckg/}}?":[null,"{{pckg/}}に追加したい項目を指定してください。"],"1 item in 1 package: %(weight)s %(unit)s total":[null,""],"%(itemsCount)d items in 1 package: %(weight)s %(unit)s total":[null,""],"%(itemsCount)d items in %(packageCount)d packages: %(weight)s %(unit)s total":[null,""],"{{itemLink/}} is currently saved for a later shipment.":[null,"{{itemLink/}} は現在、後の出荷のために保存されています。"],"{{itemLink/}} is currently shipped in its original packaging.":[null,"{{itemLink/}} は現在、元のパッケージに同梱されています。"],"{{itemLink/}} is currently in {{pckg/}}.":[null,"{{itemLink/}} は現在 {{pckg/}} にあります。"],"Choose rate: %(pckg)s":[null,"レートを選択: %(pckg)s"],"Refund label (-%(amount)s)":[null,"返金ラベル (-%(amount)s)"],"Where would you like to move it?":[null,"どこに移動しますか?"],"Unsaved changes made to packages":[null,"パッケージに対して行われた未保存の変更"],"There are no items in this package.":[null,"このパッケージにはアイテムがありません。"],"Ship in original packaging":[null,"オリジナルパッケージに同梱"],"Request refund":[null,"払い戻しのリクエスト"],"Reprint":[null,"再印刷"],"Paper size":[null,"用紙サイズ"],"No packages selected":[null,"パッケージが選択されない"],"Move":[null,"移動"],"Move item":[null,"アイテムの移動"],"Increase the rates calculated by the carrier to account for packaging and handling costs. You can also add a negative amount to save your customers money.":[null,"梱包と取り扱いのコストを考慮して、キャリアによって計算されたレートを増やします。また、負の金額を追加して、顧客にお金を節約することもできます。"],"Create new label":[null,"新しいラベルを作成する"],"All packages selected":[null,"選択されたすべてのパッケージ"],"Add":[null,"追加"],"Add item":[null,"アイテム追加"],"Add a credit card":[null,"クレジットカードを追加"],"#%d - [Deleted product]":[null,"#%d - [削除された製品]"],"#%1$d - %2$s":[null,"#%1$d - %2$s"],"<a href=\"%s\">Support</a>":[null,"<a href=\"%s\">サポート</a>"],"There was an error installing Jetpack. Please try installing it manually.":[null,"Jetpack のインストール中にエラーが発生しました。手動でインストールしてください。"],"Shipping Labels":[null,"出荷ラベル"],"https://woocommerce.com/":[null,"https://woocommerce.com/"],"Phone":[null,"電話番号"],"Connect":[null,"連携"],"Save Settings":[null,"設定を保存"],"Your changes have been saved.":[null,"変更を保存しました。"],"There was a problem with one or more entries. Please fix the errors below and try saving again.":[null,"1つ以上のエントリに問題があります。以下のエラーを修正して、もう一度保存してください。"],"Expand":[null,"拡大"],"Dismiss":[null,"非表示"],"You have unsaved changes.":[null,"変更はまだ保存されていません。"],"Type of package":[null,"パッケージのタイプ"],"Add package":["Add packages",["パッケージの追加"]],"Invalid value.":[null,"無効な値です。"],"This field is required":[null,""],"Package name":[null,"パッケージ名"],"This field must be unique":[null,"このフィールドは一意である必要があります"],"Unable to save your shipping packages. Please try again.":[null,""],"Save changes":[null,"変更を保存"],"Untitled":[null,"タイトル無し"],"Dimensions (L x W x H)":[null,""],"All services selected":[null,"選択したすべてのサービス"],"Expand Services":[null,"サービスの拡充"],"Service":[null,"サービス"],"Price adjustment":[null,"価格調整"],"Saved Packages":[null,"保存済みパッケージ"],"Tracking":[null,"トラッキング"],"Create shipping label":["Create shipping labels",["出荷ラベルの作成"]],"Name":[null,"名前"],"Company":[null,"勤め先"],"Address":[null,"住所"],"City":[null,"市区町村"],"State":[null,"州"],"Country":[null,"国"],"Invalid address":[null,"無効な住所"],"Origin address":[null,"元の住所"],"Destination address":[null,"宛先住所"],"We have slightly modified the address entered. If correct, please use the suggested address to ensure accurate delivery.":[null,"入力された住所を少し変更しました。正しい場合は、正確な配信を確保するために提案された住所を使用してください。"],"Address entered":[null,"住所入力済"],"Edit address":[null,"住所を変更"],"Suggested address":[null,"推奨された住所"],"Use selected address":[null,"選択した住所を使用"],"Use these packages":[null,"これらのパッケージを使用"],"The service and rate chosen by the customer at checkout is not available. Please choose another.":[null,"チェックアウト時にお客様が選択したサービスと料金はご利用いただけません。別のを選択してください。"],"Request a refund":[null,"払い戻しをリクエスト"],"You can request a refund for a shipping label that has not been used to ship a package. It will take at least %(days)s days to process.":[null,""],"Purchase date":[null,"お申込日"],"Amount eligible for refund":[null,"払い戻しの対象となる金額"],"Reprint shipping label":[null,"出荷ラベルの再印刷"],"If there was a printing error when you purchased the label, you can print it again.":[null,"ラベルを購入したときに印刷エラーが発生した場合は、もう一度印刷することができます。"],"NOTE: If you already used the label in a package, printing and using it again is a violation of our terms of service and may result in criminal charges.":[null,"注: 既にパッケージでラベルを使用している場合、印刷して再度使用することはサービス規約違反であり、刑事告発の原因となる可能性があります。"],"Print":[null,"印刷"],"Cancel":[null,"キャンセル"],"N/A":[null,"該当なし"],"More":[null,"続き"],"Invalid PDF request.":[null,"PDF 要求が無効です。"],"Unknown package":[null,"不明なパッケージ"],"Individual packaging":[null,"個々のパッケージ"],"Unable to update service settings. Validation failed. %s":[null,"サービス設定を更新できません。検証に失敗。%s"],"Unable to update service settings. The form data could not be read.":[null,"サービス設定を更新できません。フォームデータを読み取れませんでした。"],"Unable to update service settings. Form data is missing service ID.":[null,"サービス設定を更新できません。フォームデータにサービス ID がありません。"],"Unable to update settings. The form data could not be read.":[null,"設定を更新できません。フォームデータを読み取れませんでした。"],"Unable to update settings. %s":[null,"設定を更新できません。 %s"],"Packaging":[null,"パッケージング"],"Section not loading? Visit the <a href=\"%s\">status page</a> for troubleshooting steps.":[null,"セクションがロードされない?トラブルシューティング手順については、<a href=\"%s\">ステータスページの </a> を参照してください。"],"Note: Jetpack development mode is enabled on this site. This site will not be able to obtain payment methods from WooCommerce Shipping & Tax production servers.":[null,""],"Note: Jetpack is connected, but development mode is also enabled on this site. Please disable development mode.":[null,"注: Jetpack は接続されていますが、このサイトでは開発モードも有効になっています。開発モードを無効にしてください。"],"Shipping Label":[null,"出荷ラベル"],"yd":[null,"yd (ヤード)"],"in":[null,"in (インチ)"],"mm":[null,"mm"],"cm":[null,"cm"],"m":[null,"m"],"oz":[null,"oz (オンス)"],"lbs":[null,"lbs (ポンド)"],"g":[null,"g"],"kg":[null,"kg"],"An invalid service ID was received.":[null,"無効なサービス ID を受信しました。"],"An invalid service instance was received.":[null,"無効なサービスインスタンスを受信しました。"],"Rest of the World":[null,"その他の地域"],"Support":[null,"サポート"],"Debug":[null,"デバッグ"],"Services":[null,"サービス"],"Need help?":[null,"お困りですか ?"],"Log is empty":[null,"ログが空です"],"Disabled":[null,"無効"],"Enabled":[null,"有効"],"%s Shipping Zone":[null,"%s 配送地域"],"The most recent rate request failed":[null,"最新のレート要求が失敗しました"],"The most recent rate request was successful":[null,"最新のレート要求が成功しました"],"No rate requests have yet been made for this service":[null,"このサービスに対するレート要求はまだ作成されていません"],"Setup for this service has not yet been completed":[null,"このサービスのセットアップはまだ完了していません"],"Service data is up-to-date":[null,"サービスデータは最新の状態です。"],"Service data was found, but is more than one day old":[null,"サービスデータが見つかりましたが、1日以上経過しています"],"Service data was found, but is more than three days old":[null,"サービスデータが見つかりましたが、3日以上経過しています"],"Service data found, but may be out of date":[null,""],"No service data available":[null,"利用できるサービスデータがありません"],"Jetpack":[null,"Jetpack"],"Jetpack %s is connected and working correctly":[null,"Jetpack %s が接続され、正しく動作している"],"This is a Jetpack staging site":[null,"これは Jetpack のステージングサイトです。"],"Jetpack is not connected to WordPress.com. Make sure the Jetpack plugin is installed, activated, and connected.":[null,"Jetpack は WordPress.com に接続されていません。Jetpack プラグインがインストール、アクティブ化、接続されていることを確認します。"],"Jetpack %1$s or higher is required (You are running %2$s)":[null,""],"Please install and activate the Jetpack plugin, version %s or higher":[null,"Jetpack プラグインをインストールして有効にしてください、バージョン %s またはそれ以上"],"WooCommerce":[null,"WooCommerce"],"WooCommerce %s is configured correctly":[null,"WooCommerce %s は正しく設定されています"],"Please set Base Location in WooCommerce Settings > General":[null,"ベースの場所は WooCommerce 設定 > 一般設定 に設定してください"],"WooCommerce %1$s or higher is required (You are running %2$s)":[null,""],"Dismiss this notice":[null,"この通知を非表示にする"],"ERROR: Your site has a problem connecting to the WooCommerce Shipping & Tax API. Please make sure your Jetpack connection is working.":[null,""],"Your site is succesfully communicating to the WooCommerce Shipping & Tax API.":[null,""],"This will test your WooCommerce Shipping & Tax connection to ensure everything is working correctly":[null,""],"Test Connection":[null,"テスト接続"],"The WooCommerce Shipping & Tax brandname\u0004WooCommerce Shipping & Tax":[null,""],"The WooCommerce Shipping & Tax brandname\u0004WooCommerce Shipping":[null,""],"%s - ZIP/Postal code checkout field label\u0004Invalid %s entered.":[null,""],"%s - ZIP/Postal code checkout field label\u0004%s does not match the selected state.":[null,""],"date is of the form MM/YY\u0004Expires %(date)s":[null,"有効期限 %(date)s"],"A service with an unknown title and unknown method_title\u0004Unknown":[null,"不明"],"This section displays the overall health of WooCommerce Shipping & Tax and the things it depends on\u0004Health":[null,""]}
i18n/languages/woocommerce-services-ja.mo CHANGED
Binary file
i18n/languages/woocommerce-services-ja.po CHANGED
@@ -51,7 +51,7 @@ msgstr ""
51
  msgid "Live rates at checkout"
52
  msgstr ""
53
 
54
- #: i18n/strings.php:354
55
  msgid "Last updated %s."
56
  msgstr ""
57
 
@@ -206,7 +206,7 @@ msgstr ""
206
  msgid "WooCommerce Helper auth is missing"
207
  msgstr ""
208
 
209
- #: i18n/strings.php:364 i18n/strings.php:428
210
  msgid "USPS labels without tracking are not eligible for refund."
211
  msgstr ""
212
 
@@ -226,11 +226,11 @@ msgstr ""
226
  msgid "Loading"
227
  msgstr ""
228
 
229
- #: i18n/strings.php:353
230
  msgid "WooCommerce Shipping & Tax Data"
231
  msgstr ""
232
 
233
- #: i18n/strings.php:372 i18n/strings.php:436
234
  msgid "Print customs form"
235
  msgstr ""
236
 
@@ -277,8 +277,8 @@ msgid "Invalid WooCommerce Shipping & Tax service slug provided"
277
  msgstr ""
278
 
279
  #. Plugin Name of the plugin
280
- #: classes/class-wc-connect-privacy.php:36
281
  #: classes/class-wc-connect-settings-pages.php:123
 
282
  msgid "WooCommerce Shipping & Tax"
283
  msgstr ""
284
 
@@ -411,7 +411,7 @@ msgstr ""
411
  msgid "Validating address\\u2026"
412
  msgstr ""
413
 
414
- #: i18n/strings.php:326 i18n/strings.php:405 i18n/strings.php:469
415
  msgid "Purchasing\\u2026"
416
  msgstr ""
417
 
@@ -423,7 +423,7 @@ msgstr ""
423
  msgid "Package %(index)s \\u2013 %(title)s"
424
  msgstr ""
425
 
426
- #: i18n/strings.php:6 i18n/strings.php:170 i18n/strings.php:482
427
  msgid "Saving\\u2026"
428
  msgstr ""
429
 
@@ -437,25 +437,25 @@ msgstr ""
437
  msgid "Your tax rates and settings will be automatically configured for %1$s, %2$s. <a href=\"https://docs.woocommerce.com/document/setting-up-taxes-in-woocommerce/#section-12\">Learn more about setting up tax rates for additional nexuses</a>"
438
  msgstr ""
439
 
440
- #: i18n/strings.php:480
441
  msgid "%(itemCount)d item is ready to be fulfilled"
442
  msgid_plural "%(itemCount)d items are ready to be fulfilled"
443
  msgstr[0] ""
444
 
445
- #: i18n/strings.php:479
446
  msgid "%(itemCount)d item was fulfilled on {{span}}%(createdDate)s{{/span}}"
447
  msgid_plural "%(itemCount)d items were fulfilled on {{span}}%(createdDate)s{{/span}}"
448
  msgstr[0] ""
449
 
450
- #: i18n/strings.php:371 i18n/strings.php:435
451
  msgid "Schedule a pickup"
452
  msgstr ""
453
 
454
- #: i18n/strings.php:367 i18n/strings.php:431
455
  msgid "Label images older than 180 days are deleted by our technology partners for general security and data privacy concerns."
456
  msgstr ""
457
 
458
- #: i18n/strings.php:363 i18n/strings.php:427
459
  msgid "Labels older than 30 days cannot be refunded."
460
  msgstr ""
461
 
@@ -476,25 +476,25 @@ msgstr ""
476
  msgid "WooCommerce Shipping & Tax requires the WooCommerce plugin to be installed and active. You can download %s here."
477
  msgstr ""
478
 
479
- #: i18n/strings.php:408
480
  msgid "No tracking information available at this time"
481
  msgstr ""
482
 
483
- #: i18n/strings.php:478
484
  msgid "Connection error: unable to create label at this time"
485
  msgstr ""
486
 
487
- #: i18n/strings.php:474 i18n/strings.php:476
488
  msgid "Track Package"
489
  msgid_plural "Track Packages"
490
  msgstr[0] ""
491
 
492
- #: i18n/strings.php:426
493
  msgid "Which package would you like to track?"
494
  msgstr ""
495
 
496
- #: i18n/strings.php:373 i18n/strings.php:404 i18n/strings.php:437
497
- #: i18n/strings.php:468
498
  msgid "%(service)s label (#%(labelIndex)d)"
499
  msgstr ""
500
 
@@ -580,7 +580,7 @@ msgstr ""
580
  msgid "0.0"
581
  msgstr ""
582
 
583
- #: woocommerce-services.php:1449
584
  msgid "Shipment Tracking"
585
  msgstr ""
586
 
@@ -592,23 +592,23 @@ msgstr "関税情報が有効"
592
  msgid "Customs information incomplete"
593
  msgstr "関税情報が不完全"
594
 
595
- #: woocommerce-services.php:1492
596
  msgid "Packing Log:"
597
  msgstr "パッキングログ:"
598
 
599
- #: woocommerce-services.php:1479
600
  msgid "Chosen Rate:"
601
  msgstr "選択したレート:"
602
 
603
- #: woocommerce-services.php:1475
604
  msgid "Shipping Method ID:"
605
  msgstr "配送方法 ID:"
606
 
607
- #: woocommerce-services.php:1471
608
  msgid "Shipping Method Name:"
609
  msgstr "配送方法名:"
610
 
611
- #: woocommerce-services.php:1455
612
  msgid "Shipping Debug"
613
  msgstr "配送デバッグ"
614
 
@@ -616,15 +616,15 @@ msgstr "配送デバッグ"
616
  msgid "<strong>\"%2$s\" is missing weight, length, width, or height.</strong><br />Shipping rates cannot be calculated. <a href=\"%1$s\">Enter dimensions and weight for %2$s</a> so your customers can purchase this item."
617
  msgstr "<strong> \"%2$s\" の重さ、長さ、幅、または高さがありません。 </strong><br /> 送料の計算はできません。<a href=\"%1$s\">%2$s</a> の大きさと重さを入力して、顧客がこのアイテムを購入できるようにします。"
618
 
619
- #: classes/class-wc-connect-api-client.php:595
620
  msgid "Unable to send request to WooCommerce Shipping & Tax server. The timestamp generated for the signature is too old."
621
  msgstr ""
622
 
623
- #: classes/class-wc-connect-api-client.php:534
624
  msgid "Unable to send request to WooCommerce Shipping & Tax server. Jetpack Token is malformed."
625
  msgstr ""
626
 
627
- #: classes/class-wc-connect-api-client.php:527
628
  msgid "Unable to send request to WooCommerce Shipping & Tax server. Jetpack Token is missing"
629
  msgstr ""
630
 
@@ -658,7 +658,6 @@ msgid "Unable to send request to WooCommerce Shipping & Tax server. Jetpack_Data
658
  msgstr ""
659
 
660
  #: classes/class-wc-connect-api-client.php:160
661
- #: classes/class-wc-connect-api-client.php:187
662
  msgid "No shipping rate could be calculated. No items in the package are shippable."
663
  msgstr "送料を計算することはできません。パッケージ内のアイテムは出荷可能なされません。"
664
 
@@ -807,23 +806,23 @@ msgstr "住所の確認"
807
  msgid "%(message)s. Please modify the address and try again."
808
  msgstr "%(message)sです。住所を変更して、やり直してください。"
809
 
810
- #: i18n/strings.php:370 i18n/strings.php:434
811
  msgid "View details"
812
  msgstr "詳細を見る"
813
 
814
- #: i18n/strings.php:402 i18n/strings.php:466
815
  msgid "Items"
816
  msgstr "アイテム"
817
 
818
- #: i18n/strings.php:401 i18n/strings.php:465
819
  msgid "Package"
820
  msgstr "パッケージ"
821
 
822
- #: i18n/strings.php:399 i18n/strings.php:463
823
  msgid "Receipt"
824
  msgstr "領収書"
825
 
826
- #: i18n/strings.php:398 i18n/strings.php:462
827
  msgid "Label #%(labelIndex)s details"
828
  msgstr "ラベル #%(labelIndex)s の詳細"
829
 
@@ -938,43 +937,43 @@ msgstr "切断"
938
  msgid "Activate"
939
  msgstr ""
940
 
941
- #: i18n/strings.php:375 i18n/strings.php:439
942
  msgid "No activity yet"
943
  msgstr "アクティビティはまだありません"
944
 
945
- #: i18n/strings.php:383 i18n/strings.php:447
946
  msgid "Note"
947
  msgstr "備考"
948
 
949
- #: i18n/strings.php:382 i18n/strings.php:446
950
  msgid "Refunded %(amount)s"
951
  msgstr "返金済み %(amount)s"
952
 
953
- #: i18n/strings.php:380 i18n/strings.php:444
954
  msgid "%(service)s label (#%(labelNum)d) refund rejected"
955
  msgstr "%(service)s ラベル (#%(labelNum)d) 払い戻しが拒否されました"
956
 
957
- #: i18n/strings.php:379 i18n/strings.php:443
958
  msgid "%(service)s label (#%(labelNum)d) refunded (%(amount)s)"
959
  msgstr "%(service)s ラベル (#%(labelNum)d) 返金額 (%(amount)s)"
960
 
961
- #: i18n/strings.php:378 i18n/strings.php:442
962
  msgid "%(service)s label (#%(labelNum)d) refund requested (%(amount)s)"
963
  msgstr "%(service)s ラベル (#%(labelNum)d) 要求された払戻額 (%(amount)s)"
964
 
965
- #: i18n/strings.php:377 i18n/strings.php:441
966
  msgid "Note sent to customer"
967
  msgstr "顧客に送信されたメモ"
968
 
969
- #: i18n/strings.php:376 i18n/strings.php:440
970
  msgid "Internal note"
971
  msgstr "内部メモ"
972
 
973
- #: i18n/strings.php:407 i18n/strings.php:471
974
  msgid "Show notes from %(date)s"
975
  msgstr "%(date)s からノートを表示します"
976
 
977
- #: i18n/strings.php:406 i18n/strings.php:470
978
  msgid "%(count)s event"
979
  msgid_plural "%(count)s events"
980
  msgstr[0] "%(count)s イベント"
@@ -984,7 +983,7 @@ msgstr[0] "%(count)s イベント"
984
  msgid "WeChat Pay"
985
  msgstr "WeChat の支払い"
986
 
987
- #: i18n/strings.php:384 i18n/strings.php:448
988
  msgid "Toggle menu"
989
  msgstr "トグルメニュー"
990
 
@@ -992,40 +991,40 @@ msgstr "トグルメニュー"
992
  msgid "Return to Order #%(orderId)s"
993
  msgstr "注文 # #%(orderId)s に戻る"
994
 
995
- #: i18n/strings.php:344
996
  msgid "Our team is here for you. View our {{docsA}}support docs{{/docsA}} or {{ticketA}}open a support ticket{{/ticketA}}."
997
  msgstr "チームはあなたのためにここにいます。 {{docsA}}サポートドキュメント{{/docsA}} または {{ticketA}}サポートチケットを開きます{{/ticketA}}を御覧ください。"
998
 
999
- #: i18n/strings.php:335
1000
  msgid "Logging"
1001
  msgstr "ログ記録中"
1002
 
1003
- #: i18n/strings.php:362
1004
  msgid "No services configured. {{a}}Add a shipping service{{/a}}"
1005
  msgstr "サービスは構成されません。{{a}}配送サービスを追加する {{/a}}"
1006
 
1007
- #: i18n/strings.php:360
1008
  msgid "Edit service settings"
1009
  msgstr "サービス設定の編集"
1010
 
1011
- #: i18n/strings.php:359
1012
  msgid "Request was made %s - check logs below or {{a}}edit service settings{{/a}}"
1013
  msgstr "要求が %s - 以下のログをチェックするか、を{{a}}編集してサービス設定 {{/a}}"
1014
 
1015
- #: i18n/strings.php:358
1016
  msgid "Copy for support"
1017
  msgstr "サポートのためのコピー"
1018
 
1019
- #: i18n/strings.php:357
1020
  msgid "Last %s entry. {{a}}Show full log{{/a}}"
1021
  msgid_plural "Last %s entries. {{a}}Show full log{{/a}}"
1022
  msgstr[0] "最後の %s エントリ。{{a}}完全なログを表示{{/a}}"
1023
 
1024
- #: i18n/strings.php:356
1025
  msgid "Log tail copied to clipboard"
1026
  msgstr "クリップボードにコピーされたテールログ"
1027
 
1028
- #: i18n/strings.php:11 i18n/strings.php:414
1029
  msgid "You have unsaved changes. Are you sure you want to leave this page?"
1030
  msgstr ""
1031
 
@@ -1054,7 +1053,7 @@ msgid "USPS"
1054
  msgstr ""
1055
 
1056
  #: i18n/strings.php:5 i18n/strings.php:169 i18n/strings.php:295
1057
- #: i18n/strings.php:329 i18n/strings.php:410
1058
  msgid "Optional"
1059
  msgstr "オプション"
1060
 
@@ -1209,8 +1208,8 @@ msgstr "この期間のラベルが見つかりません"
1209
  msgid "Total"
1210
  msgstr "合計"
1211
 
1212
- #: classes/class-wc-connect-label-reports.php:170 i18n/strings.php:381
1213
- #: i18n/strings.php:445
1214
  msgid "Refund"
1215
  msgstr "返金"
1216
 
@@ -1250,23 +1249,23 @@ msgstr "年"
1250
  msgid "Export CSV"
1251
  msgstr "CSV のエクスポート"
1252
 
1253
- #: i18n/strings.php:341
1254
  msgid "Other Log"
1255
  msgstr "他のログ"
1256
 
1257
- #: i18n/strings.php:340
1258
  msgid "Taxes Log"
1259
  msgstr "税ログ"
1260
 
1261
- #: i18n/strings.php:339
1262
  msgid "Shipping Log"
1263
  msgstr "出荷ログ"
1264
 
1265
- #: i18n/strings.php:332
1266
  msgid "Display troubleshooting information on the Cart and Checkout pages."
1267
  msgstr "カートおよびチェックアウトページのトラブルシューティング情報を表示します。"
1268
 
1269
- #: i18n/strings.php:336
1270
  msgid "Write diagnostic messages to log files. Helpful when contacting support."
1271
  msgstr "ログファイルに診断メッセージを書き込みます。サポートに問い合わせるときに役立ちます。"
1272
 
@@ -1310,15 +1309,15 @@ msgstr "PayPal のチェックアウトを介して払い戻しを発行する
1310
  msgid "Link a PayPal account"
1311
  msgstr "PayPal アカウントをリンクする"
1312
 
1313
- #: i18n/strings.php:355
1314
  msgid "Refresh"
1315
  msgstr "更新"
1316
 
1317
- #: woocommerce-services.php:1230
1318
  msgid "Tracking number"
1319
  msgstr "問い合わせ番号"
1320
 
1321
- #: woocommerce-services.php:1229
1322
  msgid "Provider"
1323
  msgstr "プロバイダー"
1324
 
@@ -1410,7 +1409,7 @@ msgid "automated tax calculation and smoother payment setup"
1410
  msgstr "自動税計算とスムーズな支払い設定"
1411
 
1412
  #: classes/class-wc-connect-paypal-ec.php:323 i18n/strings.php:4
1413
- #: i18n/strings.php:168 i18n/strings.php:328 i18n/strings.php:409
1414
  msgid "Required"
1415
  msgstr "必須"
1416
 
@@ -1426,7 +1425,7 @@ msgstr "送料の設定を保存できません。もう一度やり直してく
1426
  msgid "Dimensions"
1427
  msgstr "大きさ"
1428
 
1429
- #: i18n/strings.php:270 i18n/strings.php:397 i18n/strings.php:461
1430
  msgid "Close"
1431
  msgstr "閉じる"
1432
 
@@ -1536,16 +1535,16 @@ msgstr[0] "%(selectedCount)d パッケージを選択"
1536
  msgid "Unable to get your settings. Please refresh the page to try again."
1537
  msgstr "設定を取得できません。ページを更新して、もう一度試してください。"
1538
 
1539
- #: i18n/strings.php:421
1540
  msgid "%(numSelected)d service selected"
1541
  msgid_plural "%(numSelected)d services selected"
1542
  msgstr[0] "%(numSelected)d サービスを選択"
1543
 
1544
- #: i18n/strings.php:419
1545
  msgid "Add and edit saved packages using the {{a}}Packaging Manager{{/a}}."
1546
  msgstr " {{a}}パッケージマネージャー {{/a}}を使用して、保存したパッケージを追加および編集する"
1547
 
1548
- #: i18n/strings.php:374 i18n/strings.php:438
1549
  msgid "Tracking #: {{trackingLink/}}"
1550
  msgstr "追跡番号: {{trackingLink/}}"
1551
 
@@ -1585,7 +1584,7 @@ msgstr "{{itemLink/}} は現在 {{pckg/}} にあります。"
1585
  msgid "Choose rate: %(pckg)s"
1586
  msgstr "レートを選択: %(pckg)s"
1587
 
1588
- #: i18n/strings.php:386 i18n/strings.php:450
1589
  msgid "Refund label (-%(amount)s)"
1590
  msgstr "返金ラベル (-%(amount)s)"
1591
 
@@ -1605,17 +1604,17 @@ msgstr "このパッケージにはアイテムがありません。"
1605
  msgid "Ship in original packaging"
1606
  msgstr "オリジナルパッケージに同梱"
1607
 
1608
- #: i18n/strings.php:365 i18n/strings.php:366 i18n/strings.php:429
1609
- #: i18n/strings.php:430
1610
  msgid "Request refund"
1611
  msgstr "払い戻しのリクエスト"
1612
 
1613
- #: i18n/strings.php:368 i18n/strings.php:432
1614
  msgid "Reprint"
1615
  msgstr "再印刷"
1616
 
1617
- #: i18n/strings.php:58 i18n/strings.php:309 i18n/strings.php:396
1618
- #: i18n/strings.php:460
1619
  msgid "Paper size"
1620
  msgstr "用紙サイズ"
1621
 
@@ -1631,11 +1630,11 @@ msgstr "移動"
1631
  msgid "Move item"
1632
  msgstr "アイテムの移動"
1633
 
1634
- #: i18n/strings.php:425
1635
  msgid "Increase the rates calculated by the carrier to account for packaging and handling costs. You can also add a negative amount to save your customers money."
1636
  msgstr "梱包と取り扱いのコストを考慮して、キャリアによって計算されたレートを増やします。また、負の金額を追加して、顧客にお金を節約することもできます。"
1637
 
1638
- #: i18n/strings.php:475
1639
  msgid "Create new label"
1640
  msgstr "新しいラベルを作成する"
1641
 
@@ -1656,19 +1655,19 @@ msgid "Add a credit card"
1656
  msgstr "クレジットカードを追加"
1657
 
1658
  #. translators: %d: Deleted Product ID
1659
- #: classes/class-wc-connect-compatibility-wc30.php:130
1660
  #: classes/class-wc-connect-compatibility-wc26.php:116
 
1661
  msgid "#%d - [Deleted product]"
1662
  msgstr "#%d - [削除された製品]"
1663
 
1664
  #. translators: %1$d: Product ID, %2$s: Product Name
1665
- #: classes/class-wc-connect-compatibility-wc30.php:125
1666
  #: classes/class-wc-connect-compatibility-wc26.php:111
 
1667
  msgid "#%1$d - %2$s"
1668
  msgstr "#%1$d - %2$s"
1669
 
1670
  #. translators: %s Support url
1671
- #: woocommerce-services.php:1565
1672
  msgid "<a href=\"%s\">Support</a>"
1673
  msgstr "<a href=\"%s\">サポート</a>"
1674
 
@@ -1676,22 +1675,18 @@ msgstr "<a href=\"%s\">サポート</a>"
1676
  msgid "There was an error installing Jetpack. Please try installing it manually."
1677
  msgstr "Jetpack のインストール中にエラーが発生しました。手動でインストールしてください。"
1678
 
1679
- #: woocommerce-services.php:1066 woocommerce-services.php:1069
1680
- #: i18n/strings.php:43
1681
  msgid "Shipping Labels"
1682
  msgstr "出荷ラベル"
1683
 
1684
- #. Author of the plugin
1685
- msgid "Automattic"
1686
- msgstr "Automattic"
1687
-
1688
  #. Plugin URI of the plugin
1689
  #. Author URI of the plugin
1690
  msgid "https://woocommerce.com/"
1691
  msgstr "https://woocommerce.com/"
1692
 
1693
- #: woocommerce-services.php:1515 woocommerce-services.php:1543
1694
- #: i18n/strings.php:143 i18n/strings.php:215
1695
  msgid "Phone"
1696
  msgstr "電話番号"
1697
 
@@ -1700,15 +1695,15 @@ msgstr "電話番号"
1700
  msgid "Connect"
1701
  msgstr "連携"
1702
 
1703
- #: i18n/strings.php:7 i18n/strings.php:171 i18n/strings.php:483
1704
  msgid "Save Settings"
1705
  msgstr "設定を保存"
1706
 
1707
- #: i18n/strings.php:415
1708
  msgid "Your changes have been saved."
1709
  msgstr "変更を保存しました。"
1710
 
1711
- #: i18n/strings.php:416
1712
  msgid "There was a problem with one or more entries. Please fix the errors below and try saving again."
1713
  msgstr "1つ以上のエントリに問題があります。以下のエラーを修正して、もう一度保存してください。"
1714
 
@@ -1716,11 +1711,11 @@ msgstr "1つ以上のエントリに問題があります。以下のエラー
1716
  msgid "Expand"
1717
  msgstr "拡大"
1718
 
1719
- #: i18n/strings.php:411 i18n/strings.php:481
1720
  msgid "Dismiss"
1721
  msgstr "非表示"
1722
 
1723
- #: i18n/strings.php:10 i18n/strings.php:413
1724
  msgid "You have unsaved changes."
1725
  msgstr "変更はまだ保存されていません。"
1726
 
@@ -1754,7 +1749,7 @@ msgstr "このフィールドは一意である必要があります"
1754
  msgid "Unable to save your shipping packages. Please try again."
1755
  msgstr ""
1756
 
1757
- #: i18n/strings.php:41 i18n/strings.php:417
1758
  msgid "Save changes"
1759
  msgstr "変更を保存"
1760
 
@@ -1766,32 +1761,32 @@ msgstr "タイトル無し"
1766
  msgid "Dimensions (L x W x H)"
1767
  msgstr ""
1768
 
1769
- #: i18n/strings.php:420
1770
  msgid "All services selected"
1771
  msgstr "選択したすべてのサービス"
1772
 
1773
- #: i18n/strings.php:37 i18n/strings.php:199 i18n/strings.php:422
1774
  msgid "Expand Services"
1775
  msgstr "サービスの拡充"
1776
 
1777
- #: classes/class-wc-connect-label-reports.php:167 i18n/strings.php:400
1778
- #: i18n/strings.php:423 i18n/strings.php:464
1779
  msgid "Service"
1780
  msgstr "サービス"
1781
 
1782
- #: i18n/strings.php:424
1783
  msgid "Price adjustment"
1784
  msgstr "価格調整"
1785
 
1786
- #: i18n/strings.php:418
1787
  msgid "Saved Packages"
1788
  msgstr "保存済みパッケージ"
1789
 
1790
- #: woocommerce-services.php:1218 woocommerce-services.php:1225
1791
  msgid "Tracking"
1792
  msgstr "トラッキング"
1793
 
1794
- #: i18n/strings.php:207 i18n/strings.php:473 i18n/strings.php:477
1795
  msgid "Create shipping label"
1796
  msgid_plural "Create shipping labels"
1797
  msgstr[0] "出荷ラベルの作成"
@@ -1863,51 +1858,51 @@ msgstr "これらのパッケージを使用"
1863
  msgid "The service and rate chosen by the customer at checkout is not available. Please choose another."
1864
  msgstr "チェックアウト時にお客様が選択したサービスと料金はご利用いただけません。別のを選択してください。"
1865
 
1866
- #: i18n/strings.php:387 i18n/strings.php:451
1867
  msgid "Request a refund"
1868
  msgstr "払い戻しをリクエスト"
1869
 
1870
- #: i18n/strings.php:388 i18n/strings.php:452
1871
  msgid "You can request a refund for a shipping label that has not been used to ship a package. It will take at least %(days)s days to process."
1872
  msgstr ""
1873
 
1874
- #: i18n/strings.php:389 i18n/strings.php:453
1875
  msgid "Purchase date"
1876
  msgstr "お申込日"
1877
 
1878
- #: i18n/strings.php:390 i18n/strings.php:454
1879
  msgid "Amount eligible for refund"
1880
  msgstr "払い戻しの対象となる金額"
1881
 
1882
- #: i18n/strings.php:369 i18n/strings.php:393 i18n/strings.php:433
1883
- #: i18n/strings.php:457
1884
  msgid "Reprint shipping label"
1885
  msgstr "出荷ラベルの再印刷"
1886
 
1887
- #: i18n/strings.php:394 i18n/strings.php:458
1888
  msgid "If there was a printing error when you purchased the label, you can print it again."
1889
  msgstr "ラベルを購入したときに印刷エラーが発生した場合は、もう一度印刷することができます。"
1890
 
1891
- #: i18n/strings.php:395 i18n/strings.php:459
1892
  msgid "NOTE: If you already used the label in a package, printing and using it again is a violation of our terms of service and may result in criminal charges."
1893
  msgstr "注: 既にパッケージでラベルを使用している場合、印刷して再度使用することはサービス規約違反であり、刑事告発の原因となる可能性があります。"
1894
 
1895
- #: i18n/strings.php:325 i18n/strings.php:392 i18n/strings.php:456
1896
  msgid "Print"
1897
  msgstr "印刷"
1898
 
1899
  #: i18n/strings.php:16 i18n/strings.php:82 i18n/strings.php:122
1900
  #: i18n/strings.php:158 i18n/strings.php:167 i18n/strings.php:178
1901
- #: i18n/strings.php:263 i18n/strings.php:385 i18n/strings.php:391
1902
- #: i18n/strings.php:449 i18n/strings.php:455
1903
  msgid "Cancel"
1904
  msgstr "キャンセル"
1905
 
1906
- #: i18n/strings.php:403 i18n/strings.php:467
1907
  msgid "N/A"
1908
  msgstr "該当なし"
1909
 
1910
- #: i18n/strings.php:8 i18n/strings.php:412 i18n/strings.php:472
1911
  msgid "More"
1912
  msgstr "続き"
1913
 
@@ -1950,7 +1945,7 @@ msgstr "設定を更新できません。 %s"
1950
  msgid "Packaging"
1951
  msgstr "パッケージング"
1952
 
1953
- #: woocommerce-services.php:1598
1954
  msgid "Section not loading? Visit the <a href=\"%s\">status page</a> for troubleshooting steps."
1955
  msgstr "セクションがロードされない?トラブルシューティング手順については、<a href=\"%s\">ステータスページの </a> を参照してください。"
1956
 
@@ -1962,7 +1957,7 @@ msgstr ""
1962
  msgid "Note: Jetpack is connected, but development mode is also enabled on this site. Please disable development mode."
1963
  msgstr "注: Jetpack は接続されていますが、このサイトでは開発モードも有効になっています。開発モードを無効にしてください。"
1964
 
1965
- #: woocommerce-services.php:1451
1966
  msgid "Shipping Label"
1967
  msgstr "出荷ラベル"
1968
 
@@ -2019,24 +2014,24 @@ msgctxt "A service with an unknown title and unknown method_title"
2019
  msgid "Unknown"
2020
  msgstr "不明"
2021
 
2022
- #: i18n/strings.php:342
2023
  msgid "Support"
2024
  msgstr "サポート"
2025
 
2026
- #: i18n/strings.php:330 i18n/strings.php:331
2027
  msgid "Debug"
2028
  msgstr "デバッグ"
2029
 
2030
- #: i18n/strings.php:361
2031
  msgid "Services"
2032
  msgstr "サービス"
2033
 
2034
- #: i18n/strings.php:345
2035
  msgctxt "This section displays the overall health of WooCommerce Shipping & Tax and the things it depends on"
2036
  msgid "Health"
2037
  msgstr ""
2038
 
2039
- #: i18n/strings.php:343
2040
  msgid "Need help?"
2041
  msgstr "お困りですか ?"
2042
 
@@ -2044,11 +2039,11 @@ msgstr "お困りですか ?"
2044
  msgid "Log is empty"
2045
  msgstr "ログが空です"
2046
 
2047
- #: i18n/strings.php:334 i18n/strings.php:338
2048
  msgid "Disabled"
2049
  msgstr "無効"
2050
 
2051
- #: i18n/strings.php:333 i18n/strings.php:337
2052
  msgid "Enabled"
2053
  msgstr "有効"
2054
 
@@ -2072,27 +2067,27 @@ msgstr "このサービスに対するレート要求はまだ作成されてい
2072
  msgid "Setup for this service has not yet been completed"
2073
  msgstr "このサービスのセットアップはまだ完了していません"
2074
 
2075
- #: i18n/strings.php:350
2076
  msgid "Service data is up-to-date"
2077
  msgstr "サービスデータは最新の状態です。"
2078
 
2079
- #: i18n/strings.php:349
2080
  msgid "Service data was found, but is more than one day old"
2081
  msgstr "サービスデータが見つかりましたが、1日以上経過しています"
2082
 
2083
- #: i18n/strings.php:348
2084
  msgid "Service data was found, but is more than three days old"
2085
  msgstr "サービスデータが見つかりましたが、3日以上経過しています"
2086
 
2087
- #: i18n/strings.php:351
2088
  msgid "Service data found, but may be out of date"
2089
  msgstr ""
2090
 
2091
- #: i18n/strings.php:352
2092
  msgid "No service data available"
2093
  msgstr "利用できるサービスデータがありません"
2094
 
2095
- #: i18n/strings.php:347
2096
  msgid "Jetpack"
2097
  msgstr "Jetpack"
2098
 
@@ -2116,7 +2111,8 @@ msgstr ""
2116
  msgid "Please install and activate the Jetpack plugin, version %s or higher"
2117
  msgstr "Jetpack プラグインをインストールして有効にしてください、バージョン %s またはそれ以上"
2118
 
2119
- #: i18n/strings.php:346
 
2120
  msgid "WooCommerce"
2121
  msgstr "WooCommerce"
2122
 
@@ -2132,7 +2128,7 @@ msgstr "ベースの場所は WooCommerce 設定 > 一般設定 に設定して
2132
  msgid "WooCommerce %1$s or higher is required (You are running %2$s)"
2133
  msgstr ""
2134
 
2135
- #: classes/class-wc-connect-error-notice.php:104 woocommerce-services.php:1634
2136
  msgid "Dismiss this notice"
2137
  msgstr "この通知を非表示にする"
2138
 
51
  msgid "Live rates at checkout"
52
  msgstr ""
53
 
54
+ #: i18n/strings.php:403
55
  msgid "Last updated %s."
56
  msgstr ""
57
 
206
  msgid "WooCommerce Helper auth is missing"
207
  msgstr ""
208
 
209
+ #: i18n/strings.php:331 i18n/strings.php:422
210
  msgid "USPS labels without tracking are not eligible for refund."
211
  msgstr ""
212
 
226
  msgid "Loading"
227
  msgstr ""
228
 
229
+ #: i18n/strings.php:402
230
  msgid "WooCommerce Shipping & Tax Data"
231
  msgstr ""
232
 
233
+ #: i18n/strings.php:339 i18n/strings.php:430
234
  msgid "Print customs form"
235
  msgstr ""
236
 
277
  msgstr ""
278
 
279
  #. Plugin Name of the plugin
 
280
  #: classes/class-wc-connect-settings-pages.php:123
281
+ #: classes/class-wc-connect-privacy.php:36
282
  msgid "WooCommerce Shipping & Tax"
283
  msgstr ""
284
 
411
  msgid "Validating address\\u2026"
412
  msgstr ""
413
 
414
+ #: i18n/strings.php:326 i18n/strings.php:372 i18n/strings.php:463
415
  msgid "Purchasing\\u2026"
416
  msgstr ""
417
 
423
  msgid "Package %(index)s \\u2013 %(title)s"
424
  msgstr ""
425
 
426
+ #: i18n/strings.php:6 i18n/strings.php:170 i18n/strings.php:375
427
  msgid "Saving\\u2026"
428
  msgstr ""
429
 
437
  msgid "Your tax rates and settings will be automatically configured for %1$s, %2$s. <a href=\"https://docs.woocommerce.com/document/setting-up-taxes-in-woocommerce/#section-12\">Learn more about setting up tax rates for additional nexuses</a>"
438
  msgstr ""
439
 
440
+ #: i18n/strings.php:419
441
  msgid "%(itemCount)d item is ready to be fulfilled"
442
  msgid_plural "%(itemCount)d items are ready to be fulfilled"
443
  msgstr[0] ""
444
 
445
+ #: i18n/strings.php:418
446
  msgid "%(itemCount)d item was fulfilled on {{span}}%(createdDate)s{{/span}}"
447
  msgid_plural "%(itemCount)d items were fulfilled on {{span}}%(createdDate)s{{/span}}"
448
  msgstr[0] ""
449
 
450
+ #: i18n/strings.php:338 i18n/strings.php:429
451
  msgid "Schedule a pickup"
452
  msgstr ""
453
 
454
+ #: i18n/strings.php:334 i18n/strings.php:425
455
  msgid "Label images older than 180 days are deleted by our technology partners for general security and data privacy concerns."
456
  msgstr ""
457
 
458
+ #: i18n/strings.php:330 i18n/strings.php:421
459
  msgid "Labels older than 30 days cannot be refunded."
460
  msgstr ""
461
 
476
  msgid "WooCommerce Shipping & Tax requires the WooCommerce plugin to be installed and active. You can download %s here."
477
  msgstr ""
478
 
479
+ #: i18n/strings.php:466
480
  msgid "No tracking information available at this time"
481
  msgstr ""
482
 
483
+ #: i18n/strings.php:417
484
  msgid "Connection error: unable to create label at this time"
485
  msgstr ""
486
 
487
+ #: i18n/strings.php:413 i18n/strings.php:415
488
  msgid "Track Package"
489
  msgid_plural "Track Packages"
490
  msgstr[0] ""
491
 
492
+ #: i18n/strings.php:329
493
  msgid "Which package would you like to track?"
494
  msgstr ""
495
 
496
+ #: i18n/strings.php:340 i18n/strings.php:371 i18n/strings.php:431
497
+ #: i18n/strings.php:462
498
  msgid "%(service)s label (#%(labelIndex)d)"
499
  msgstr ""
500
 
580
  msgid "0.0"
581
  msgstr ""
582
 
583
+ #: woocommerce-services.php:1453
584
  msgid "Shipment Tracking"
585
  msgstr ""
586
 
592
  msgid "Customs information incomplete"
593
  msgstr "関税情報が不完全"
594
 
595
+ #: woocommerce-services.php:1496
596
  msgid "Packing Log:"
597
  msgstr "パッキングログ:"
598
 
599
+ #: woocommerce-services.php:1483
600
  msgid "Chosen Rate:"
601
  msgstr "選択したレート:"
602
 
603
+ #: woocommerce-services.php:1479
604
  msgid "Shipping Method ID:"
605
  msgstr "配送方法 ID:"
606
 
607
+ #: woocommerce-services.php:1475
608
  msgid "Shipping Method Name:"
609
  msgstr "配送方法名:"
610
 
611
+ #: woocommerce-services.php:1459
612
  msgid "Shipping Debug"
613
  msgstr "配送デバッグ"
614
 
616
  msgid "<strong>\"%2$s\" is missing weight, length, width, or height.</strong><br />Shipping rates cannot be calculated. <a href=\"%1$s\">Enter dimensions and weight for %2$s</a> so your customers can purchase this item."
617
  msgstr "<strong> \"%2$s\" の重さ、長さ、幅、または高さがありません。 </strong><br /> 送料の計算はできません。<a href=\"%1$s\">%2$s</a> の大きさと重さを入力して、顧客がこのアイテムを購入できるようにします。"
618
 
619
+ #: classes/class-wc-connect-api-client.php:588
620
  msgid "Unable to send request to WooCommerce Shipping & Tax server. The timestamp generated for the signature is too old."
621
  msgstr ""
622
 
623
+ #: classes/class-wc-connect-api-client.php:527
624
  msgid "Unable to send request to WooCommerce Shipping & Tax server. Jetpack Token is malformed."
625
  msgstr ""
626
 
627
+ #: classes/class-wc-connect-api-client.php:520
628
  msgid "Unable to send request to WooCommerce Shipping & Tax server. Jetpack Token is missing"
629
  msgstr ""
630
 
658
  msgstr ""
659
 
660
  #: classes/class-wc-connect-api-client.php:160
 
661
  msgid "No shipping rate could be calculated. No items in the package are shippable."
662
  msgstr "送料を計算することはできません。パッケージ内のアイテムは出荷可能なされません。"
663
 
806
  msgid "%(message)s. Please modify the address and try again."
807
  msgstr "%(message)sです。住所を変更して、やり直してください。"
808
 
809
+ #: i18n/strings.php:337 i18n/strings.php:428
810
  msgid "View details"
811
  msgstr "詳細を見る"
812
 
813
+ #: i18n/strings.php:369 i18n/strings.php:460
814
  msgid "Items"
815
  msgstr "アイテム"
816
 
817
+ #: i18n/strings.php:368 i18n/strings.php:459
818
  msgid "Package"
819
  msgstr "パッケージ"
820
 
821
+ #: i18n/strings.php:366 i18n/strings.php:457
822
  msgid "Receipt"
823
  msgstr "領収書"
824
 
825
+ #: i18n/strings.php:365 i18n/strings.php:456
826
  msgid "Label #%(labelIndex)s details"
827
  msgstr "ラベル #%(labelIndex)s の詳細"
828
 
937
  msgid "Activate"
938
  msgstr ""
939
 
940
+ #: i18n/strings.php:342 i18n/strings.php:433
941
  msgid "No activity yet"
942
  msgstr "アクティビティはまだありません"
943
 
944
+ #: i18n/strings.php:350 i18n/strings.php:441
945
  msgid "Note"
946
  msgstr "備考"
947
 
948
+ #: i18n/strings.php:349 i18n/strings.php:440
949
  msgid "Refunded %(amount)s"
950
  msgstr "返金済み %(amount)s"
951
 
952
+ #: i18n/strings.php:347 i18n/strings.php:438
953
  msgid "%(service)s label (#%(labelNum)d) refund rejected"
954
  msgstr "%(service)s ラベル (#%(labelNum)d) 払い戻しが拒否されました"
955
 
956
+ #: i18n/strings.php:346 i18n/strings.php:437
957
  msgid "%(service)s label (#%(labelNum)d) refunded (%(amount)s)"
958
  msgstr "%(service)s ラベル (#%(labelNum)d) 返金額 (%(amount)s)"
959
 
960
+ #: i18n/strings.php:345 i18n/strings.php:436
961
  msgid "%(service)s label (#%(labelNum)d) refund requested (%(amount)s)"
962
  msgstr "%(service)s ラベル (#%(labelNum)d) 要求された払戻額 (%(amount)s)"
963
 
964
+ #: i18n/strings.php:344 i18n/strings.php:435
965
  msgid "Note sent to customer"
966
  msgstr "顧客に送信されたメモ"
967
 
968
+ #: i18n/strings.php:343 i18n/strings.php:434
969
  msgid "Internal note"
970
  msgstr "内部メモ"
971
 
972
+ #: i18n/strings.php:374 i18n/strings.php:465
973
  msgid "Show notes from %(date)s"
974
  msgstr "%(date)s からノートを表示します"
975
 
976
+ #: i18n/strings.php:373 i18n/strings.php:464
977
  msgid "%(count)s event"
978
  msgid_plural "%(count)s events"
979
  msgstr[0] "%(count)s イベント"
983
  msgid "WeChat Pay"
984
  msgstr "WeChat の支払い"
985
 
986
+ #: i18n/strings.php:351 i18n/strings.php:442
987
  msgid "Toggle menu"
988
  msgstr "トグルメニュー"
989
 
991
  msgid "Return to Order #%(orderId)s"
992
  msgstr "注文 # #%(orderId)s に戻る"
993
 
994
+ #: i18n/strings.php:393
995
  msgid "Our team is here for you. View our {{docsA}}support docs{{/docsA}} or {{ticketA}}open a support ticket{{/ticketA}}."
996
  msgstr "チームはあなたのためにここにいます。 {{docsA}}サポートドキュメント{{/docsA}} または {{ticketA}}サポートチケットを開きます{{/ticketA}}を御覧ください。"
997
 
998
+ #: i18n/strings.php:384
999
  msgid "Logging"
1000
  msgstr "ログ記録中"
1001
 
1002
+ #: i18n/strings.php:411
1003
  msgid "No services configured. {{a}}Add a shipping service{{/a}}"
1004
  msgstr "サービスは構成されません。{{a}}配送サービスを追加する {{/a}}"
1005
 
1006
+ #: i18n/strings.php:409
1007
  msgid "Edit service settings"
1008
  msgstr "サービス設定の編集"
1009
 
1010
+ #: i18n/strings.php:408
1011
  msgid "Request was made %s - check logs below or {{a}}edit service settings{{/a}}"
1012
  msgstr "要求が %s - 以下のログをチェックするか、を{{a}}編集してサービス設定 {{/a}}"
1013
 
1014
+ #: i18n/strings.php:407
1015
  msgid "Copy for support"
1016
  msgstr "サポートのためのコピー"
1017
 
1018
+ #: i18n/strings.php:406
1019
  msgid "Last %s entry. {{a}}Show full log{{/a}}"
1020
  msgid_plural "Last %s entries. {{a}}Show full log{{/a}}"
1021
  msgstr[0] "最後の %s エントリ。{{a}}完全なログを表示{{/a}}"
1022
 
1023
+ #: i18n/strings.php:405
1024
  msgid "Log tail copied to clipboard"
1025
  msgstr "クリップボードにコピーされたテールログ"
1026
 
1027
+ #: i18n/strings.php:11 i18n/strings.php:472
1028
  msgid "You have unsaved changes. Are you sure you want to leave this page?"
1029
  msgstr ""
1030
 
1053
  msgstr ""
1054
 
1055
  #: i18n/strings.php:5 i18n/strings.php:169 i18n/strings.php:295
1056
+ #: i18n/strings.php:378 i18n/strings.php:468
1057
  msgid "Optional"
1058
  msgstr "オプション"
1059
 
1208
  msgid "Total"
1209
  msgstr "合計"
1210
 
1211
+ #: classes/class-wc-connect-label-reports.php:170 i18n/strings.php:348
1212
+ #: i18n/strings.php:439
1213
  msgid "Refund"
1214
  msgstr "返金"
1215
 
1249
  msgid "Export CSV"
1250
  msgstr "CSV のエクスポート"
1251
 
1252
+ #: i18n/strings.php:390
1253
  msgid "Other Log"
1254
  msgstr "他のログ"
1255
 
1256
+ #: i18n/strings.php:389
1257
  msgid "Taxes Log"
1258
  msgstr "税ログ"
1259
 
1260
+ #: i18n/strings.php:388
1261
  msgid "Shipping Log"
1262
  msgstr "出荷ログ"
1263
 
1264
+ #: i18n/strings.php:381
1265
  msgid "Display troubleshooting information on the Cart and Checkout pages."
1266
  msgstr "カートおよびチェックアウトページのトラブルシューティング情報を表示します。"
1267
 
1268
+ #: i18n/strings.php:385
1269
  msgid "Write diagnostic messages to log files. Helpful when contacting support."
1270
  msgstr "ログファイルに診断メッセージを書き込みます。サポートに問い合わせるときに役立ちます。"
1271
 
1309
  msgid "Link a PayPal account"
1310
  msgstr "PayPal アカウントをリンクする"
1311
 
1312
+ #: i18n/strings.php:404
1313
  msgid "Refresh"
1314
  msgstr "更新"
1315
 
1316
+ #: woocommerce-services.php:1234
1317
  msgid "Tracking number"
1318
  msgstr "問い合わせ番号"
1319
 
1320
+ #: woocommerce-services.php:1233
1321
  msgid "Provider"
1322
  msgstr "プロバイダー"
1323
 
1409
  msgstr "自動税計算とスムーズな支払い設定"
1410
 
1411
  #: classes/class-wc-connect-paypal-ec.php:323 i18n/strings.php:4
1412
+ #: i18n/strings.php:168 i18n/strings.php:377 i18n/strings.php:467
1413
  msgid "Required"
1414
  msgstr "必須"
1415
 
1425
  msgid "Dimensions"
1426
  msgstr "大きさ"
1427
 
1428
+ #: i18n/strings.php:270 i18n/strings.php:364 i18n/strings.php:455
1429
  msgid "Close"
1430
  msgstr "閉じる"
1431
 
1535
  msgid "Unable to get your settings. Please refresh the page to try again."
1536
  msgstr "設定を取得できません。ページを更新して、もう一度試してください。"
1537
 
1538
+ #: i18n/strings.php:479
1539
  msgid "%(numSelected)d service selected"
1540
  msgid_plural "%(numSelected)d services selected"
1541
  msgstr[0] "%(numSelected)d サービスを選択"
1542
 
1543
+ #: i18n/strings.php:477
1544
  msgid "Add and edit saved packages using the {{a}}Packaging Manager{{/a}}."
1545
  msgstr " {{a}}パッケージマネージャー {{/a}}を使用して、保存したパッケージを追加および編集する"
1546
 
1547
+ #: i18n/strings.php:341 i18n/strings.php:432
1548
  msgid "Tracking #: {{trackingLink/}}"
1549
  msgstr "追跡番号: {{trackingLink/}}"
1550
 
1584
  msgid "Choose rate: %(pckg)s"
1585
  msgstr "レートを選択: %(pckg)s"
1586
 
1587
+ #: i18n/strings.php:353 i18n/strings.php:444
1588
  msgid "Refund label (-%(amount)s)"
1589
  msgstr "返金ラベル (-%(amount)s)"
1590
 
1604
  msgid "Ship in original packaging"
1605
  msgstr "オリジナルパッケージに同梱"
1606
 
1607
+ #: i18n/strings.php:332 i18n/strings.php:333 i18n/strings.php:423
1608
+ #: i18n/strings.php:424
1609
  msgid "Request refund"
1610
  msgstr "払い戻しのリクエスト"
1611
 
1612
+ #: i18n/strings.php:335 i18n/strings.php:426
1613
  msgid "Reprint"
1614
  msgstr "再印刷"
1615
 
1616
+ #: i18n/strings.php:58 i18n/strings.php:309 i18n/strings.php:363
1617
+ #: i18n/strings.php:454
1618
  msgid "Paper size"
1619
  msgstr "用紙サイズ"
1620
 
1630
  msgid "Move item"
1631
  msgstr "アイテムの移動"
1632
 
1633
+ #: i18n/strings.php:483
1634
  msgid "Increase the rates calculated by the carrier to account for packaging and handling costs. You can also add a negative amount to save your customers money."
1635
  msgstr "梱包と取り扱いのコストを考慮して、キャリアによって計算されたレートを増やします。また、負の金額を追加して、顧客にお金を節約することもできます。"
1636
 
1637
+ #: i18n/strings.php:414
1638
  msgid "Create new label"
1639
  msgstr "新しいラベルを作成する"
1640
 
1655
  msgstr "クレジットカードを追加"
1656
 
1657
  #. translators: %d: Deleted Product ID
 
1658
  #: classes/class-wc-connect-compatibility-wc26.php:116
1659
+ #: classes/class-wc-connect-compatibility-wc30.php:130
1660
  msgid "#%d - [Deleted product]"
1661
  msgstr "#%d - [削除された製品]"
1662
 
1663
  #. translators: %1$d: Product ID, %2$s: Product Name
 
1664
  #: classes/class-wc-connect-compatibility-wc26.php:111
1665
+ #: classes/class-wc-connect-compatibility-wc30.php:125
1666
  msgid "#%1$d - %2$s"
1667
  msgstr "#%1$d - %2$s"
1668
 
1669
  #. translators: %s Support url
1670
+ #: woocommerce-services.php:1569
1671
  msgid "<a href=\"%s\">Support</a>"
1672
  msgstr "<a href=\"%s\">サポート</a>"
1673
 
1675
  msgid "There was an error installing Jetpack. Please try installing it manually."
1676
  msgstr "Jetpack のインストール中にエラーが発生しました。手動でインストールしてください。"
1677
 
1678
+ #: i18n/strings.php:43 woocommerce-services.php:1066
1679
+ #: woocommerce-services.php:1069
1680
  msgid "Shipping Labels"
1681
  msgstr "出荷ラベル"
1682
 
 
 
 
 
1683
  #. Plugin URI of the plugin
1684
  #. Author URI of the plugin
1685
  msgid "https://woocommerce.com/"
1686
  msgstr "https://woocommerce.com/"
1687
 
1688
+ #: i18n/strings.php:143 i18n/strings.php:215 woocommerce-services.php:1519
1689
+ #: woocommerce-services.php:1547
1690
  msgid "Phone"
1691
  msgstr "電話番号"
1692
 
1695
  msgid "Connect"
1696
  msgstr "連携"
1697
 
1698
+ #: i18n/strings.php:7 i18n/strings.php:171 i18n/strings.php:376
1699
  msgid "Save Settings"
1700
  msgstr "設定を保存"
1701
 
1702
+ #: i18n/strings.php:473
1703
  msgid "Your changes have been saved."
1704
  msgstr "変更を保存しました。"
1705
 
1706
+ #: i18n/strings.php:474
1707
  msgid "There was a problem with one or more entries. Please fix the errors below and try saving again."
1708
  msgstr "1つ以上のエントリに問題があります。以下のエラーを修正して、もう一度保存してください。"
1709
 
1711
  msgid "Expand"
1712
  msgstr "拡大"
1713
 
1714
+ #: i18n/strings.php:328 i18n/strings.php:469
1715
  msgid "Dismiss"
1716
  msgstr "非表示"
1717
 
1718
+ #: i18n/strings.php:10 i18n/strings.php:471
1719
  msgid "You have unsaved changes."
1720
  msgstr "変更はまだ保存されていません。"
1721
 
1749
  msgid "Unable to save your shipping packages. Please try again."
1750
  msgstr ""
1751
 
1752
+ #: i18n/strings.php:41 i18n/strings.php:475
1753
  msgid "Save changes"
1754
  msgstr "変更を保存"
1755
 
1761
  msgid "Dimensions (L x W x H)"
1762
  msgstr ""
1763
 
1764
+ #: i18n/strings.php:478
1765
  msgid "All services selected"
1766
  msgstr "選択したすべてのサービス"
1767
 
1768
+ #: i18n/strings.php:37 i18n/strings.php:199 i18n/strings.php:480
1769
  msgid "Expand Services"
1770
  msgstr "サービスの拡充"
1771
 
1772
+ #: classes/class-wc-connect-label-reports.php:167 i18n/strings.php:367
1773
+ #: i18n/strings.php:458 i18n/strings.php:481
1774
  msgid "Service"
1775
  msgstr "サービス"
1776
 
1777
+ #: i18n/strings.php:482
1778
  msgid "Price adjustment"
1779
  msgstr "価格調整"
1780
 
1781
+ #: i18n/strings.php:476
1782
  msgid "Saved Packages"
1783
  msgstr "保存済みパッケージ"
1784
 
1785
+ #: woocommerce-services.php:1222 woocommerce-services.php:1229
1786
  msgid "Tracking"
1787
  msgstr "トラッキング"
1788
 
1789
+ #: i18n/strings.php:207 i18n/strings.php:412 i18n/strings.php:416
1790
  msgid "Create shipping label"
1791
  msgid_plural "Create shipping labels"
1792
  msgstr[0] "出荷ラベルの作成"
1858
  msgid "The service and rate chosen by the customer at checkout is not available. Please choose another."
1859
  msgstr "チェックアウト時にお客様が選択したサービスと料金はご利用いただけません。別のを選択してください。"
1860
 
1861
+ #: i18n/strings.php:354 i18n/strings.php:445
1862
  msgid "Request a refund"
1863
  msgstr "払い戻しをリクエスト"
1864
 
1865
+ #: i18n/strings.php:355 i18n/strings.php:446
1866
  msgid "You can request a refund for a shipping label that has not been used to ship a package. It will take at least %(days)s days to process."
1867
  msgstr ""
1868
 
1869
+ #: i18n/strings.php:356 i18n/strings.php:447
1870
  msgid "Purchase date"
1871
  msgstr "お申込日"
1872
 
1873
+ #: i18n/strings.php:357 i18n/strings.php:448
1874
  msgid "Amount eligible for refund"
1875
  msgstr "払い戻しの対象となる金額"
1876
 
1877
+ #: i18n/strings.php:336 i18n/strings.php:360 i18n/strings.php:427
1878
+ #: i18n/strings.php:451
1879
  msgid "Reprint shipping label"
1880
  msgstr "出荷ラベルの再印刷"
1881
 
1882
+ #: i18n/strings.php:361 i18n/strings.php:452
1883
  msgid "If there was a printing error when you purchased the label, you can print it again."
1884
  msgstr "ラベルを購入したときに印刷エラーが発生した場合は、もう一度印刷することができます。"
1885
 
1886
+ #: i18n/strings.php:362 i18n/strings.php:453
1887
  msgid "NOTE: If you already used the label in a package, printing and using it again is a violation of our terms of service and may result in criminal charges."
1888
  msgstr "注: 既にパッケージでラベルを使用している場合、印刷して再度使用することはサービス規約違反であり、刑事告発の原因となる可能性があります。"
1889
 
1890
+ #: i18n/strings.php:325 i18n/strings.php:359 i18n/strings.php:450
1891
  msgid "Print"
1892
  msgstr "印刷"
1893
 
1894
  #: i18n/strings.php:16 i18n/strings.php:82 i18n/strings.php:122
1895
  #: i18n/strings.php:158 i18n/strings.php:167 i18n/strings.php:178
1896
+ #: i18n/strings.php:263 i18n/strings.php:352 i18n/strings.php:358
1897
+ #: i18n/strings.php:443 i18n/strings.php:449
1898
  msgid "Cancel"
1899
  msgstr "キャンセル"
1900
 
1901
+ #: i18n/strings.php:370 i18n/strings.php:461
1902
  msgid "N/A"
1903
  msgstr "該当なし"
1904
 
1905
+ #: i18n/strings.php:8 i18n/strings.php:420 i18n/strings.php:470
1906
  msgid "More"
1907
  msgstr "続き"
1908
 
1945
  msgid "Packaging"
1946
  msgstr "パッケージング"
1947
 
1948
+ #: woocommerce-services.php:1602
1949
  msgid "Section not loading? Visit the <a href=\"%s\">status page</a> for troubleshooting steps."
1950
  msgstr "セクションがロードされない?トラブルシューティング手順については、<a href=\"%s\">ステータスページの </a> を参照してください。"
1951
 
1957
  msgid "Note: Jetpack is connected, but development mode is also enabled on this site. Please disable development mode."
1958
  msgstr "注: Jetpack は接続されていますが、このサイトでは開発モードも有効になっています。開発モードを無効にしてください。"
1959
 
1960
+ #: woocommerce-services.php:1455
1961
  msgid "Shipping Label"
1962
  msgstr "出荷ラベル"
1963
 
2014
  msgid "Unknown"
2015
  msgstr "不明"
2016
 
2017
+ #: i18n/strings.php:391
2018
  msgid "Support"
2019
  msgstr "サポート"
2020
 
2021
+ #: i18n/strings.php:379 i18n/strings.php:380
2022
  msgid "Debug"
2023
  msgstr "デバッグ"
2024
 
2025
+ #: i18n/strings.php:410
2026
  msgid "Services"
2027
  msgstr "サービス"
2028
 
2029
+ #: i18n/strings.php:394
2030
  msgctxt "This section displays the overall health of WooCommerce Shipping & Tax and the things it depends on"
2031
  msgid "Health"
2032
  msgstr ""
2033
 
2034
+ #: i18n/strings.php:392
2035
  msgid "Need help?"
2036
  msgstr "お困りですか ?"
2037
 
2039
  msgid "Log is empty"
2040
  msgstr "ログが空です"
2041
 
2042
+ #: i18n/strings.php:383 i18n/strings.php:387
2043
  msgid "Disabled"
2044
  msgstr "無効"
2045
 
2046
+ #: i18n/strings.php:382 i18n/strings.php:386
2047
  msgid "Enabled"
2048
  msgstr "有効"
2049
 
2067
  msgid "Setup for this service has not yet been completed"
2068
  msgstr "このサービスのセットアップはまだ完了していません"
2069
 
2070
+ #: i18n/strings.php:399
2071
  msgid "Service data is up-to-date"
2072
  msgstr "サービスデータは最新の状態です。"
2073
 
2074
+ #: i18n/strings.php:398
2075
  msgid "Service data was found, but is more than one day old"
2076
  msgstr "サービスデータが見つかりましたが、1日以上経過しています"
2077
 
2078
+ #: i18n/strings.php:397
2079
  msgid "Service data was found, but is more than three days old"
2080
  msgstr "サービスデータが見つかりましたが、3日以上経過しています"
2081
 
2082
+ #: i18n/strings.php:400
2083
  msgid "Service data found, but may be out of date"
2084
  msgstr ""
2085
 
2086
+ #: i18n/strings.php:401
2087
  msgid "No service data available"
2088
  msgstr "利用できるサービスデータがありません"
2089
 
2090
+ #: i18n/strings.php:396
2091
  msgid "Jetpack"
2092
  msgstr "Jetpack"
2093
 
2111
  msgid "Please install and activate the Jetpack plugin, version %s or higher"
2112
  msgstr "Jetpack プラグインをインストールして有効にしてください、バージョン %s またはそれ以上"
2113
 
2114
+ #. Author of the plugin
2115
+ #: i18n/strings.php:395
2116
  msgid "WooCommerce"
2117
  msgstr "WooCommerce"
2118
 
2128
  msgid "WooCommerce %1$s or higher is required (You are running %2$s)"
2129
  msgstr ""
2130
 
2131
+ #: classes/class-wc-connect-error-notice.php:104 woocommerce-services.php:1638
2132
  msgid "Dismiss this notice"
2133
  msgstr "この通知を非表示にする"
2134
 
i18n/languages/woocommerce-services-nl_NL.json CHANGED
@@ -1 +1 @@
1
- {"0":[null,""],"":{"po-revision-date":"2021-03-17 21:17:49+0000","mime-version":"1.0","content-type":"text/plain; charset=UTF-8","content-transfer-encoding":"8bit","plural-forms":"nplurals=2; plural=n != 1;","x-generator":"GlotPress/3.0.0-alpha.2","language":"nl","project-id-version":"Plugins - WooCommerce Shipping &amp; Tax - Stable (latest release)"},"Features":[null,""],"Carrier":[null,""],"Express delivery from the experts in international shipping":[null,""],"Live rates for %(carrierName)s at checkout":[null,""],"Ship with the largest delivery network in the United States":[null,""],"Discounted %(carrierName)s shipping labels":[null,""],"To be displayed at checkout, this carrier must be added as a shipping method to selected shipping zones":[null,""],"Add to shipping zones":[null,""],"Show live rates directly on your store - never under or overcharge for shipping again":[null,""],"Live rates at checkout":[null,""],"Last updated %s.":[null,""],"At least one of the new predefined packages has the same name as existing packages.":[null,""],"The new predefined package names are not unique.":[null,""],"At least one of the new custom packages has the same name as existing packages.":[null,""],"The new custom package names are not unique.":[null,""],"Go to shipping zones":[null,""],"Add DHL Express as a shipping method to selected shipping zones to display live rates at checkout.":[null,""],"DHL Express live rates are now available":[null,""],"State %1$s is invalid for %2$s.":[null,""],"%1$s %2$s is invalid for %3$s.":[null,""],"A %1$s is required for %2$s.":[null,""],"A country is required":[null,""],"Your store is over the limit for rate calls this month and your account will be charged for overages. To prevent future overage charges you can upgrade your plan.":[null,""],"There was an error trying to activate your subscription.":[null,""],"Your subscription was succesfully activated.":[null,""],"Manage":[null,""],"Usage":[null,""],"View and manage your subscription usage":[null,""],"Shipping method":[null,""],"The subscription is already active.":[null,""],"Set up your own carrier account to compare rates and print labels from multiple carriers in WooCommerce Shipping. Learn more about adding {{a}}carrier accounts{{/a}}.":[null,""],"There was an error connecting to your %(carrierName)s account. Please check that all of the information entered matches your %(carrierName)s account and try to connect again.":[null,""],"Your carrier account was connected successfully.":[null,""],"The date must be a valid date in the format YYYY-MM-DD":[null,""],"The invoice number needs to be 9 or 13 letters and digits in length":[null,""],"The company website format is not valid":[null,""],"The email format is not valid":[null,""],"The ZIP/Postal code needs to be 5 digits in length":[null,""],"The phone number needs to be 10 digits in length":[null,""],"The UPS account number needs to be 6 letters and digits in length":[null,""],"This will remove the connection with %(carrier_name)s. All of your %(carrier_name)s account information will be deleted and you won\\u2019t see %(carrier_name)s rates.":[null,""],"Disconnect your %(carrier_name)s account":[null,""],"There was an error trying to disconnect your carrier account":[null,""],"Your carrier account was disconnected succesfully.":[null,""],"DHL Express":[null,""],"Powered by WooCommerce Tax. If automated taxes are enabled, you'll need to enter prices exclusive of tax.":[null,""],"WooCommerce Helper auth is missing":[null,""],"USPS labels without tracking are not eligible for refund.":[null,""],"General Information":[null,""],"Connect your %(carrierName)s account":[null,""],"%(carrierName)s not supported.":[null,""],"Loading":[null,""],"WooCommerce Shipping & Tax Data":[null,""],"Print customs form":[null,""],"Test your WooCommerce Shipping & Tax connection":[null,""],"WooCommerce Shipping & Tax Status":[null,""],"Connect your store to activate WooCommerce Shipping & Tax":[null,""],"Connect Jetpack to activate WooCommerce Shipping & Tax":[null,""],"WooCommerce Shipping now supports DHL labels for international shipments. Purchase and print discounted labels from DHL and USPS right here.":[null,""],"Discounted DHL Shipping Labels":[null,""],"WooCommerce Shipping":[null,""],"Invalid WooCommerce Shipping & Tax service slug provided":[null,""],"WooCommerce Shipping & Tax":[null,""],"ZIP/Postal code":[null,""],"This action will delete any information entered on the form.":[null,""],"Cancel connection":[null,""],"Ok":[null,""],"UPS invoice control id":[null,""],"UPS invoice currency":[null,""],"UPS invoice amount":[null,""],"UPS invoice date":[null,""],"UPS invoice number":[null,""],"I have been issued an invoice from UPS within the past 90 days":[null,""],"UPS account information":[null,""],"Company website":[null,""],"Job title":[null,""],"Company name":[null,""],"This is the company info you used to create your UPS account":[null,""],"Company information":[null,""],"Email":[null,""],"Address 2 (optional)":[null,""],"Account number":[null,""],"This is the account number and address from your UPS profile":[null,""],"General information":[null,""],"If you need a UPS account number, go to {{a}}UPS.com{{/a}} to create a new account.":[null,""],"Set up your own UPS carrier account to compare rates and print labels from multiple carriers in WooCommerce Shipping. Learn more about adding {{a}}carrier accounts{{/a}}.":[null,""],"Connect your UPS account":[null,""],"Set up your own carrier account by adding your credentials here":[null,""],"Carrier account":[null,""],"Credentials":[null,""],"Adult signature required":[null,""],"Signature required":[null,""],"Other\\u2026":[null,""],"Select one\\u2026":[null,""],"Validating address\\u2026":[null,""],"Purchasing\\u2026":[null,""],"Your UPS account will be charged":[null,""],"Package %(index)s \\u2013 %(title)s":[null,""],"Saving\\u2026":[null,""],"Your tax rates and settings will be automatically configured for %1$s. <a href=\"https://docs.woocommerce.com/document/setting-up-taxes-in-woocommerce/#section-12\">Learn more about setting up tax rates for additional nexuses</a>":[null,""],"Your tax rates and settings will be automatically configured for %1$s, %2$s. <a href=\"https://docs.woocommerce.com/document/setting-up-taxes-in-woocommerce/#section-12\">Learn more about setting up tax rates for additional nexuses</a>":[null,""],"%(itemCount)d item is ready to be fulfilled":["%(itemCount)d items are ready to be fulfilled","",""],"%(itemCount)d item was fulfilled on {{span}}%(createdDate)s{{/span}}":["%(itemCount)d items were fulfilled on {{span}}%(createdDate)s{{/span}}","",""],"Schedule a pickup":[null,""],"Label images older than 180 days are deleted by our technology partners for general security and data privacy concerns.":[null,""],"Labels older than 30 days cannot be refunded.":[null,""],"Mark this order as complete and notify the customer":[null,""],"Notify the customer with shipment details":[null,""],"You save %s with WooCommerce Shipping":[null,""],"WooCommerce Shipping & Tax requires the WooCommerce plugin to be installed and active. You can download %s here.":[null,""],"No tracking information available at this time":[null,""],"Connection error: unable to create label at this time":[null,""],"Track Package":["Track Packages","",""],"Which package would you like to track?":[null,""],"%(service)s label (#%(labelIndex)d)":[null,""],"To print this shipping label, {{a}}add a credit card to your account{{/a}}.":[null,""],"Add credit card":[null,""],"To print this shipping label, {{a}}choose a credit card to add to your account{{/a}}.":[null,""],"Choose credit card":[null,""],"Buy shipping label":["Buy shipping labels","",""],"shipping label ready":["shipping labels ready","",""],"Shipping from":[null,""],"Shipping summary":[null,""],"Customer paid a {{shippingMethod/}} of {{shippingCost/}} for shipping":[null,""],"Shipping rates":[null,""],"HS Tariff number":[null,""],"Submit":[null,""],"Total Weight (with package)":[null,""],"QTY":[null,""],"Weight":[null,""],"Items to fulfill":[null,""],"Select a package type":[null,""],"Package details":[null,""],"Your shipping packages have been saved.":[null,""],"0.0":[null,""],"Shipment Tracking":[null,""],"Customs information valid":[null,""],"Customs information incomplete":[null,""],"Packing Log:":[null,""],"Chosen Rate:":[null,""],"Shipping Method ID:":[null,""],"Shipping Method Name:":[null,""],"Shipping Debug":[null,""],"<strong>\"%2$s\" is missing weight, length, width, or height.</strong><br />Shipping rates cannot be calculated. <a href=\"%1$s\">Enter dimensions and weight for %2$s</a> so your customers can purchase this item.":[null,""],"Unable to send request to WooCommerce Shipping & Tax server. The timestamp generated for the signature is too old.":[null,""],"Unable to send request to WooCommerce Shipping & Tax server. Jetpack Token is malformed.":[null,""],"Unable to send request to WooCommerce Shipping & Tax server. Jetpack Token is missing":[null,""],"Error: The WooCommerce Shipping & Tax server returned: %1$s %2$s ( %3$d )":[null,""],"Error: The WooCommerce Shipping & Tax server returned ( %d ) and an empty response body.":[null,""],"Error: The WooCommerce Shipping & Tax server returned HTTP code: %d":[null,""],"Unable to encode body for request to WooCommerce Shipping & Tax server.":[null,""],"Unable to send request to WooCommerce Shipping & Tax server. Body must be an array.":[null,""],"Unable to send request to WooCommerce Shipping & Tax server. Jetpack connection does not implement get_access_token.":[null,""],"Unable to send request to WooCommerce Shipping & Tax server. Jetpack_Data was not found.":[null,""],"No shipping rate could be calculated. No items in the package are shippable.":[null,""],"Product ( ID: %d ) is missing a dimension value. Shipping rates cannot be calculated.":[null,""],"Product ( ID: %d ) did not include a weight. Shipping rates cannot be calculated.":[null,""],"Packing log:":[null,""],"Received rate: %1$s (%2$s)":[null,""],"Your customer selected {{shippingMethod/}}":[null,""],"Total rate: %(total)s":[null,""],"%(serviceName)s: %(rate)s":[null,""],"No rates found":[null,""],"WooCommerce Shipping gives you access to USPS Commercial Pricing, which is discounted over Retail rates.":[null,""],"more info":[null,""],"ITN":[null,""],"Sanitary / Phytosanitary inspection":[null,""],"Quarantine":[null,""],"None":[null,""],"Restriction type":[null,""],"Details":[null,""],"Sample":[null,""],"Gift":[null,""],"Documents":[null,""],"Merchandise":[null,""],"Contents type":[null,""],"Return to sender if package is unable to be delivered":[null,""],"Value (per unit)":[null,""],"Weight (per unit)":[null,""],"Save customs form":[null,""],"Customs":[null,""],"Use address as entered":[null,""],"View on Google Maps":[null,""],"Verify with USPS":[null,""],"Automatic verification failed for this address. It may still be a valid address \\u2014 use the tools below to manually verify.":[null,""],"We were unable to automatically verify the address.":[null,""],"We were unable to automatically verify the address \\u2014 %(error)s.":[null,""],"You've edited the address, please revalidate it for accurate rates":[null,""],"Verify address":[null,""],"%(message)s. Please modify the address and try again.":[null,""],"View details":[null,""],"Items":[null,""],"Package":[null,""],"Receipt":[null,""],"Label #%(labelIndex)s details":[null,""],"{{icon/}} Delete this package":[null,""],"Done":[null,""],"Add boxes, envelopes, and other packages you use most frequently":[null,""],"Remove":[null,""],"Edit":[null,""],"Weight of empty package":[null,""],"Unique package name":[null,""],"Envelope":[null,""],"Box":[null,""],"This field is required.":[null,""],"Payment":[null,""],"Email the label purchase receipts to %(ownerName)s (%(ownerLogin)s) at %(ownerEmail)s":[null,""],"Email Receipts":[null,""],"To purchase shipping labels, choose a credit card you have on file or add a new card.":[null,""],"Choose a different card":[null,""],"To purchase shipping labels, add a credit card.":[null,""],"We'll charge the credit card on your account (%(card)s) to pay for the labels you print":[null,""],"Credit cards are retrieved from the following WordPress.com account: %(wpcomLogin)s <%(wpcomEmail)s>":[null,""],"Only the site owner can change these settings. Please contact %(ownerName)s (%(ownerLogin)s) to change the shipping label settings.":[null,""],"Only the site owner can manage shipping label payment methods. Please contact %(ownerName)s (%(ownerLogin)s) to manage payment methods.":[null,""],"%(card)s ****%(digits)s":[null,""],"Print shipping labels yourself and save a trip to the post office":[null,""],"H":[null,""],"W":[null,""],"L":[null,""],"Disconnect":[null,""],"Activate":[null,""],"No activity yet":[null,""],"Note":[null,""],"Refunded %(amount)s":[null,""],"%(service)s label (#%(labelNum)d) refund rejected":[null,""],"%(service)s label (#%(labelNum)d) refunded (%(amount)s)":[null,""],"%(service)s label (#%(labelNum)d) refund requested (%(amount)s)":[null,""],"Note sent to customer":[null,""],"Internal note":[null,""],"Show notes from %(date)s":[null,""],"%(count)s event":["%(count)s events","",""],"WeChat Pay":[null,""],"Toggle menu":[null,""],"Return to Order #%(orderId)s":[null,""],"Our team is here for you. View our {{docsA}}support docs{{/docsA}} or {{ticketA}}open a support ticket{{/ticketA}}.":[null,""],"Logging":[null,""],"No services configured. {{a}}Add a shipping service{{/a}}":[null,""],"Edit service settings":[null,""],"Request was made %s - check logs below or {{a}}edit service settings{{/a}}":[null,""],"Copy for support":[null,""],"Last %s entry. {{a}}Show full log{{/a}}":["Last %s entries. {{a}}Show full log{{/a}}","",""],"Log tail copied to clipboard":[null,""],"You have unsaved changes. Are you sure you want to leave this page?":[null,""],"Value ($ per unit)":[null,""],"Weight (%s per unit)":[null,""],"Description":[null,""],"Country where the product was manufactured or assembled":[null,""],"Origin country":[null,""],"USPS":[null,""],"Optional":[null,""],"Retry":[null,""],"shipping label printing":[null,""],"shipping label printing and smoother payment setup":[null,""],"automated tax calculation and shipping label printing":[null,""],"automated tax calculation, shipping label printing, and smoother payment setup":[null,""],"Data resource description.":[null,""],"Data resource ID.":[null,""],"List of supported currencies.":[null,""],"List of supported states in a given country.":[null,""],"List of supported continents, countries, and states.":[null,""],"Sorry, you cannot view this resource.":[null,""],"Sorry, you cannot list resources.":[null,""],"The unit weights are defined in for this country.":[null,""],"Thousands separator for displayed prices in this country.":[null,""],"Full name of state.":[null,""],"State code.":[null,""],"List of states in this country.":[null,""],"Number of decimal points shown in displayed prices for this country.":[null,""],"Full name of country.":[null,""],"The unit lengths are defined in for this country.":[null,""],"Decimal separator for displayed prices for this country.":[null,""],"Currency symbol position for this country.":[null,""],"Default ISO4127 alpha-3 currency code for the country.":[null,""],"ISO3166 alpha-2 country code.":[null,""],"List of countries on this continent.":[null,""],"Full name of continent.":[null,""],"There are no locations matching these parameters.":[null,""],"2 character continent code.":[null,""],"Shipping label tracking number":[null,""],"Shipping label service":[null,""],"Warning: Erasing personal data will cause the ability to reprint or refund WooCommerce Shipping & Tax shipping labels to be lost on the affected orders.":[null,""],"By using this extension, you may be storing personal data or sharing data with external services. <a href=\"%s\" target=\"_blank\">Learn more about how this works, including what you may want to include in your privacy policy.</a>":[null,""],"There was a problem updating your saved credit cards.":[null,""],"No labels found for this period":[null,""],"Total":[null,"Totaal"],"Refund":[null,"Terugbetaling"],"Price":[null,"Prijs"],"Order":[null,"Volgorde"],"Time":[null,"Tijd"],"Requested":[null,"Aangevraagd"],"Last 7 days":[null,"Laatste 7 dagen"],"This month":[null,"Deze maand"],"Last month":[null,"Laatste maand"],"Year":[null,"Jaar"],"Export CSV":[null,"Exporteer CSV"],"Other Log":[null,""],"Taxes Log":[null,""],"Shipping Log":[null,""],"Display troubleshooting information on the Cart and Checkout pages.":[null,""],"Write diagnostic messages to log files. Helpful when contacting support.":[null,""],"Enter your email address at which to accept payments. You'll need to link your own account in order to perform anything other than \"sale\" transactions.":[null,"Vul je e-mailadres in waarmee je betalingen accepteert. Je dient je eigen account te koppelen om iets anders te accepteren dan \"verkoop\" transacties."],"Payment Email":[null,"Betalings e-mail"],"To authenticate payments with WooCommerce Shipping & Tax, <a href=\"%s\">click here</a>.":[null,"Om betalingen met WooCommerce Verzending & Btw te autoriseren, <a href=\"%s\">klik hier</a>."],"Payments will be authenticated by WooCommerce Shipping & Tax and directed to the following email address. To disable this feature and link a PayPal account, <a href=\"%s\">click here</a>.":[null,"Betalingen worden door WooCommerce Verzending & Btw geautoriseerd en doorgestuurd naar het volgende e-mailadres. Om deze functie uit te schakelen en een ander PayPal account te koppelen <a href=\"%s\">klik hier</a>."],"%s (Note that \"authorizing payment only\" requires linking a PayPal account.)":[null,"%s (Letop dat er bij \"authorizing payment only\" er een koppeling met een PayPal account nodig is.)"],"Link account":[null,"Koppel je account"],"Link a new or existing PayPal account to make sure future orders are marked “Processing” instead of “On hold”, and so refunds can be issued without leaving WooCommerce.":[null,"Koppel een nieuw of een bestaand PayPal account om er van verzekerd te zijn dat toekomstige bestellingen worden gemarkeerd als ”Processing” in plaats van “On hold”, waardoor retour betalingen kunnen worden verricht zonder WooCommerce te verlaten."],"Link your PayPal account":[null,"Koppel je PayPal-account"],"To issue refunds via PayPal Checkout, you will need to <a href=\"%s\">link a PayPal account</a> with the email address that received this payment.":[null,""],"Link a PayPal account":[null,"Koppel een PayPal-account"],"Refresh":[null,"Ververs"],"Tracking number":[null,"Track & trace code"],"Provider":[null,"Provider"],"WooCommerce Shipping & Tax is almost ready to go! Once you connect Jetpack you'll have access to %s.":[null,"WooCommerce Verzending & Btw is nu bijna gebruiksklaar! Zodra je Jetpack hebt verbonden krijg je toegang tot %s."],"Hosted services for WooCommerce: automated tax calculation, shipping label printing, and smoother payment setup.":[null,""],"Tax Class":[null,"Belastingtarief"],"Shipping":[null,"Verzending"],"Compound":[null,""],"Priority":[null,"Prioriteit"],"Tax Name":[null,"Belastingnaam"],"Rate %":[null,"Percentage %"],"ZIP/Postcode":[null,"Postcode"],"State Code":[null,"Staat/Provincie"],"Country Code":[null,"Landcode"],"Enable automated taxes":[null,"Schakel automatische belastingtarieven in"],"Disable automated taxes":[null,"Schakel automatische belastingtarieven uit"],"Automated taxes":[null,"Automatische belastingen"],"By clicking \"%1$s\", you agree to the <a href=\"%2$s\">Terms of Service</a> and to <a href=\"%3$s\">share certain data and settings</a> with WordPress.com and/or third parties.":[null,""],"Setup complete.":[null,""],"You can now enjoy %s.":[null,""],"WooCommerce Shipping & Tax is almost ready to go! Once you connect your store you'll have access to %s.":[null,""],"automated tax calculation":[null,""],"smoother payment setup":[null,""],"automated tax calculation and smoother payment setup":[null,""],"Required":[null,""],"Your shipping settings have been saved.":[null,""],"Unable to save your shipping settings. Please try again.":[null,""],"Dimensions":[null,""],"Close":[null,""],"Packages to be Shipped":[null,""],"Add to a New Package":[null,""],"Add items":[null,""],"Individually Shipped Item":[null,""],"Item Dimensions":[null,""],"Please select a package":[null,""],"Service schemas were not loaded":[null,""],"Bad request":[null,""],"Order not found":[null,"Bestelling niet gevonden"],"Got it, thanks!":[null,""],"Activate Jetpack and connect":[null,""],"Install Jetpack and connect":[null,""],"Something went wrong. Please try connecting to Jetpack manually, or contact support on the WordPress.org forums.":[null,""],"Connecting...":[null,"Verbinden..."],"Activating...":[null,"Activeren..."],"When you're ready, purchase and print discounted labels from %s right here.":[null,""],"Discounted Shipping Labels":[null,""],"American Express":[null,"American Express"],"Discover":[null,"Discover"],"MasterCard":[null,"MasterCard"],"VISA":[null,"VISA"],"PayPal":[null,"PayPal"],"Add another credit card":[null,"Voeg nog een creditcard toe"],"%(selectedCount)d package selected":["%(selectedCount)d packages selected","",""],"Unable to get your settings. Please refresh the page to try again.":[null,""],"%(numSelected)d service selected":["%(numSelected)d services selected","",""],"Add and edit saved packages using the {{a}}Packaging Manager{{/a}}.":[null,""],"Tracking #: {{trackingLink/}}":[null,""],"%(item)s from {{pckg/}}":[null,""],"Which items would you like to add to {{pckg/}}?":[null,""],"1 item in 1 package: %(weight)s %(unit)s total":[null,""],"%(itemsCount)d items in 1 package: %(weight)s %(unit)s total":[null,""],"%(itemsCount)d items in %(packageCount)d packages: %(weight)s %(unit)s total":[null,""],"{{itemLink/}} is currently saved for a later shipment.":[null,""],"{{itemLink/}} is currently shipped in its original packaging.":[null,""],"{{itemLink/}} is currently in {{pckg/}}.":[null,""],"Choose rate: %(pckg)s":[null,""],"Refund label (-%(amount)s)":[null,""],"Where would you like to move it?":[null,""],"Unsaved changes made to packages":[null,""],"There are no items in this package.":[null,""],"Ship in original packaging":[null,""],"Request refund":[null,""],"Reprint":[null,""],"Paper size":[null,"Papiergrootte"],"No packages selected":[null,""],"Move":[null,""],"Move item":[null,""],"Increase the rates calculated by the carrier to account for packaging and handling costs. You can also add a negative amount to save your customers money.":[null,""],"Create new label":[null,""],"All packages selected":[null,""],"Add":[null,""],"Add item":[null,""],"Add a credit card":[null,""],"#%d - [Deleted product]":[null,""],"#%1$d - %2$s":[null,""],"<a href=\"%s\">Support</a>":[null,""],"There was an error installing Jetpack. Please try installing it manually.":[null,""],"Shipping Labels":[null,""],"Automattic":[null,""],"https://woocommerce.com/":[null,""],"Phone":[null,"Telefoon"],"Connect":[null,"Verbind"],"Save Settings":[null,"Bewaar instellingen"],"Your changes have been saved.":[null,""],"There was a problem with one or more entries. Please fix the errors below and try saving again.":[null,""],"Expand":[null,""],"Dismiss":[null,"Verberg"],"You have unsaved changes.":[null,""],"Type of package":[null,""],"Add package":["Add packages","",""],"Invalid value.":[null,""],"This field is required":[null,""],"Package name":[null,""],"This field must be unique":[null,""],"Unable to save your shipping packages. Please try again.":[null,""],"Save changes":[null,"Bewaar wijzigingen"],"Untitled":[null,"Geen titel"],"Dimensions (L x W x H)":[null,""],"All services selected":[null,""],"Expand Services":[null,""],"Service":[null,""],"Price adjustment":[null,""],"Saved Packages":[null,""],"Tracking":[null,""],"Create shipping label":["Create shipping labels","",""],"Name":[null,"Naam"],"Company":[null,"Bedrijf"],"Address":[null,"Adres"],"City":[null,"Plaats"],"State":[null,"Provincie"],"Country":[null,"Land"],"Invalid address":[null,"Ongeldig adres"],"Origin address":[null,"Adres afzender"],"Destination address":[null,"Afleveradres"],"We have slightly modified the address entered. If correct, please use the suggested address to ensure accurate delivery.":[null,""],"Address entered":[null,"Adres ingevuld"],"Edit address":[null,"Bewerk adres"],"Suggested address":[null,"Gesuggereerd adres"],"Use selected address":[null,"Gebruik geselecteerd adres"],"Use these packages":[null,""],"The service and rate chosen by the customer at checkout is not available. Please choose another.":[null,""],"Request a refund":[null,"Vraag terugbetaling aan"],"You can request a refund for a shipping label that has not been used to ship a package. It will take at least %(days)s days to process.":[null,""],"Purchase date":[null,"Aankoopdatum"],"Amount eligible for refund":[null,"Bedrag beschikbaar voor terugbetaling"],"Reprint shipping label":[null,""],"If there was a printing error when you purchased the label, you can print it again.":[null,""],"NOTE: If you already used the label in a package, printing and using it again is a violation of our terms of service and may result in criminal charges.":[null,""],"Print":[null,"Print"],"Cancel":[null,"Annuleer"],"N/A":[null,"Nvt"],"More":[null,"Meer"],"Invalid PDF request.":[null,""],"Unknown package":[null,""],"Individual packaging":[null,""],"Unable to update service settings. Validation failed. %s":[null,""],"Unable to update service settings. The form data could not be read.":[null,""],"Unable to update service settings. Form data is missing service ID.":[null,""],"Unable to update settings. The form data could not be read.":[null,""],"Unable to update settings. %s":[null,""],"Packaging":[null,""],"Section not loading? Visit the <a href=\"%s\">status page</a> for troubleshooting steps.":[null,""],"Note: Jetpack development mode is enabled on this site. This site will not be able to obtain payment methods from WooCommerce Shipping & Tax production servers.":[null,""],"Note: Jetpack is connected, but development mode is also enabled on this site. Please disable development mode.":[null,""],"Shipping Label":[null,""],"yd":[null,""],"in":[null,""],"mm":[null,""],"cm":[null,""],"m":[null,""],"oz":[null,""],"lbs":[null,""],"g":[null,""],"kg":[null,""],"An invalid service ID was received.":[null,""],"An invalid service instance was received.":[null,""],"Rest of the World":[null,"Rest van de wereld"],"Support":[null,""],"Debug":[null,""],"Services":[null,""],"Need help?":[null,""],"Log is empty":[null,""],"Disabled":[null,""],"Enabled":[null,""],"%s Shipping Zone":[null,""],"The most recent rate request failed":[null,""],"The most recent rate request was successful":[null,""],"No rate requests have yet been made for this service":[null,""],"Setup for this service has not yet been completed":[null,""],"Service data is up-to-date":[null,""],"Service data was found, but is more than one day old":[null,""],"Service data was found, but is more than three days old":[null,""],"Service data found, but may be out of date":[null,""],"No service data available":[null,""],"Jetpack":[null,""],"Jetpack %s is connected and working correctly":[null,"Jetpack %s is verbonden en werkt correct"],"This is a Jetpack staging site":[null,""],"Jetpack is not connected to WordPress.com. Make sure the Jetpack plugin is installed, activated, and connected.":[null,"Jetpack is niet verbonden aan WordPress.com. Controleer of de Jetpack plugin is geïnstalleerd, geactiveerd en verbonden."],"Jetpack %1$s or higher is required (You are running %2$s)":[null,"Jetpack %1$s of nieuwer is vereist (Je gebruikt %2$s)"],"Please install and activate the Jetpack plugin, version %s or higher":[null,"Installeer en activeer de Jetpack plugin, versie %s of nieuwer"],"WooCommerce":[null,""],"WooCommerce %s is configured correctly":[null,"WooCommerce %s is correct geconfigureerd"],"Please set Base Location in WooCommerce Settings > General":[null,""],"WooCommerce %1$s or higher is required (You are running %2$s)":[null,"WooCommerce %1$s of nieuwer is vereist (Je gebruikt %2$s)"],"Dismiss this notice":[null,"Verberg deze melding"],"ERROR: Your site has a problem connecting to the WooCommerce Shipping & Tax API. Please make sure your Jetpack connection is working.":[null,""],"Your site is succesfully communicating to the WooCommerce Shipping & Tax API.":[null,""],"This will test your WooCommerce Shipping & Tax connection to ensure everything is working correctly":[null,""],"Test Connection":[null,"Test verbinding"],"The WooCommerce Shipping & Tax brandname\u0004WooCommerce Shipping & Tax":[null,""],"The WooCommerce Shipping & Tax brandname\u0004WooCommerce Shipping":[null,""],"%s - ZIP/Postal code checkout field label\u0004Invalid %s entered.":[null,""],"%s - ZIP/Postal code checkout field label\u0004%s does not match the selected state.":[null,""],"date is of the form MM/YY\u0004Expires %(date)s":[null,"Verloopt %(date)s"],"A service with an unknown title and unknown method_title\u0004Unknown":[null,"Onbekend"],"This section displays the overall health of WooCommerce Shipping & Tax and the things it depends on\u0004Health":[null,""]}
1
+ {"0":[null,""],"":{"po-revision-date":"2021-03-17 21:17:49+0000","mime-version":"1.0","content-type":"text/plain; charset=UTF-8","content-transfer-encoding":"8bit","plural-forms":"nplurals=2; plural=n != 1;","x-generator":"GlotPress/3.0.0-alpha.2","language":"nl","project-id-version":"Plugins - WooCommerce Shipping &amp; Tax - Stable (latest release)"},"Features":[null,""],"Carrier":[null,""],"Express delivery from the experts in international shipping":[null,""],"Live rates for %(carrierName)s at checkout":[null,""],"Ship with the largest delivery network in the United States":[null,""],"Discounted %(carrierName)s shipping labels":[null,""],"To be displayed at checkout, this carrier must be added as a shipping method to selected shipping zones":[null,""],"Add to shipping zones":[null,""],"Show live rates directly on your store - never under or overcharge for shipping again":[null,""],"Live rates at checkout":[null,""],"Last updated %s.":[null,""],"At least one of the new predefined packages has the same name as existing packages.":[null,""],"The new predefined package names are not unique.":[null,""],"At least one of the new custom packages has the same name as existing packages.":[null,""],"The new custom package names are not unique.":[null,""],"Go to shipping zones":[null,""],"Add DHL Express as a shipping method to selected shipping zones to display live rates at checkout.":[null,""],"DHL Express live rates are now available":[null,""],"State %1$s is invalid for %2$s.":[null,""],"%1$s %2$s is invalid for %3$s.":[null,""],"A %1$s is required for %2$s.":[null,""],"A country is required":[null,""],"Your store is over the limit for rate calls this month and your account will be charged for overages. To prevent future overage charges you can upgrade your plan.":[null,""],"There was an error trying to activate your subscription.":[null,""],"Your subscription was succesfully activated.":[null,""],"Manage":[null,""],"Usage":[null,""],"View and manage your subscription usage":[null,""],"Shipping method":[null,""],"The subscription is already active.":[null,""],"Set up your own carrier account to compare rates and print labels from multiple carriers in WooCommerce Shipping. Learn more about adding {{a}}carrier accounts{{/a}}.":[null,""],"There was an error connecting to your %(carrierName)s account. Please check that all of the information entered matches your %(carrierName)s account and try to connect again.":[null,""],"Your carrier account was connected successfully.":[null,""],"The date must be a valid date in the format YYYY-MM-DD":[null,""],"The invoice number needs to be 9 or 13 letters and digits in length":[null,""],"The company website format is not valid":[null,""],"The email format is not valid":[null,""],"The ZIP/Postal code needs to be 5 digits in length":[null,""],"The phone number needs to be 10 digits in length":[null,""],"The UPS account number needs to be 6 letters and digits in length":[null,""],"This will remove the connection with %(carrier_name)s. All of your %(carrier_name)s account information will be deleted and you won\\u2019t see %(carrier_name)s rates.":[null,""],"Disconnect your %(carrier_name)s account":[null,""],"There was an error trying to disconnect your carrier account":[null,""],"Your carrier account was disconnected succesfully.":[null,""],"DHL Express":[null,""],"Powered by WooCommerce Tax. If automated taxes are enabled, you'll need to enter prices exclusive of tax.":[null,""],"WooCommerce Helper auth is missing":[null,""],"USPS labels without tracking are not eligible for refund.":[null,""],"General Information":[null,""],"Connect your %(carrierName)s account":[null,""],"%(carrierName)s not supported.":[null,""],"Loading":[null,""],"WooCommerce Shipping & Tax Data":[null,""],"Print customs form":[null,""],"Test your WooCommerce Shipping & Tax connection":[null,""],"WooCommerce Shipping & Tax Status":[null,""],"Connect your store to activate WooCommerce Shipping & Tax":[null,""],"Connect Jetpack to activate WooCommerce Shipping & Tax":[null,""],"WooCommerce Shipping now supports DHL labels for international shipments. Purchase and print discounted labels from DHL and USPS right here.":[null,""],"Discounted DHL Shipping Labels":[null,""],"WooCommerce Shipping":[null,""],"Invalid WooCommerce Shipping & Tax service slug provided":[null,""],"WooCommerce Shipping & Tax":[null,""],"ZIP/Postal code":[null,""],"This action will delete any information entered on the form.":[null,""],"Cancel connection":[null,""],"Ok":[null,""],"UPS invoice control id":[null,""],"UPS invoice currency":[null,""],"UPS invoice amount":[null,""],"UPS invoice date":[null,""],"UPS invoice number":[null,""],"I have been issued an invoice from UPS within the past 90 days":[null,""],"UPS account information":[null,""],"Company website":[null,""],"Job title":[null,""],"Company name":[null,""],"This is the company info you used to create your UPS account":[null,""],"Company information":[null,""],"Email":[null,""],"Address 2 (optional)":[null,""],"Account number":[null,""],"This is the account number and address from your UPS profile":[null,""],"General information":[null,""],"If you need a UPS account number, go to {{a}}UPS.com{{/a}} to create a new account.":[null,""],"Set up your own UPS carrier account to compare rates and print labels from multiple carriers in WooCommerce Shipping. Learn more about adding {{a}}carrier accounts{{/a}}.":[null,""],"Connect your UPS account":[null,""],"Set up your own carrier account by adding your credentials here":[null,""],"Carrier account":[null,""],"Credentials":[null,""],"Adult signature required":[null,""],"Signature required":[null,""],"Other\\u2026":[null,""],"Select one\\u2026":[null,""],"Validating address\\u2026":[null,""],"Purchasing\\u2026":[null,""],"Your UPS account will be charged":[null,""],"Package %(index)s \\u2013 %(title)s":[null,""],"Saving\\u2026":[null,""],"Your tax rates and settings will be automatically configured for %1$s. <a href=\"https://docs.woocommerce.com/document/setting-up-taxes-in-woocommerce/#section-12\">Learn more about setting up tax rates for additional nexuses</a>":[null,""],"Your tax rates and settings will be automatically configured for %1$s, %2$s. <a href=\"https://docs.woocommerce.com/document/setting-up-taxes-in-woocommerce/#section-12\">Learn more about setting up tax rates for additional nexuses</a>":[null,""],"%(itemCount)d item is ready to be fulfilled":["%(itemCount)d items are ready to be fulfilled","",""],"%(itemCount)d item was fulfilled on {{span}}%(createdDate)s{{/span}}":["%(itemCount)d items were fulfilled on {{span}}%(createdDate)s{{/span}}","",""],"Schedule a pickup":[null,""],"Label images older than 180 days are deleted by our technology partners for general security and data privacy concerns.":[null,""],"Labels older than 30 days cannot be refunded.":[null,""],"Mark this order as complete and notify the customer":[null,""],"Notify the customer with shipment details":[null,""],"You save %s with WooCommerce Shipping":[null,""],"WooCommerce Shipping & Tax requires the WooCommerce plugin to be installed and active. You can download %s here.":[null,""],"No tracking information available at this time":[null,""],"Connection error: unable to create label at this time":[null,""],"Track Package":["Track Packages","",""],"Which package would you like to track?":[null,""],"%(service)s label (#%(labelIndex)d)":[null,""],"To print this shipping label, {{a}}add a credit card to your account{{/a}}.":[null,""],"Add credit card":[null,""],"To print this shipping label, {{a}}choose a credit card to add to your account{{/a}}.":[null,""],"Choose credit card":[null,""],"Buy shipping label":["Buy shipping labels","",""],"shipping label ready":["shipping labels ready","",""],"Shipping from":[null,""],"Shipping summary":[null,""],"Customer paid a {{shippingMethod/}} of {{shippingCost/}} for shipping":[null,""],"Shipping rates":[null,""],"HS Tariff number":[null,""],"Submit":[null,""],"Total Weight (with package)":[null,""],"QTY":[null,""],"Weight":[null,""],"Items to fulfill":[null,""],"Select a package type":[null,""],"Package details":[null,""],"Your shipping packages have been saved.":[null,""],"0.0":[null,""],"Shipment Tracking":[null,""],"Customs information valid":[null,""],"Customs information incomplete":[null,""],"Packing Log:":[null,""],"Chosen Rate:":[null,""],"Shipping Method ID:":[null,""],"Shipping Method Name:":[null,""],"Shipping Debug":[null,""],"<strong>\"%2$s\" is missing weight, length, width, or height.</strong><br />Shipping rates cannot be calculated. <a href=\"%1$s\">Enter dimensions and weight for %2$s</a> so your customers can purchase this item.":[null,""],"Unable to send request to WooCommerce Shipping & Tax server. The timestamp generated for the signature is too old.":[null,""],"Unable to send request to WooCommerce Shipping & Tax server. Jetpack Token is malformed.":[null,""],"Unable to send request to WooCommerce Shipping & Tax server. Jetpack Token is missing":[null,""],"Error: The WooCommerce Shipping & Tax server returned: %1$s %2$s ( %3$d )":[null,""],"Error: The WooCommerce Shipping & Tax server returned ( %d ) and an empty response body.":[null,""],"Error: The WooCommerce Shipping & Tax server returned HTTP code: %d":[null,""],"Unable to encode body for request to WooCommerce Shipping & Tax server.":[null,""],"Unable to send request to WooCommerce Shipping & Tax server. Body must be an array.":[null,""],"Unable to send request to WooCommerce Shipping & Tax server. Jetpack connection does not implement get_access_token.":[null,""],"Unable to send request to WooCommerce Shipping & Tax server. Jetpack_Data was not found.":[null,""],"No shipping rate could be calculated. No items in the package are shippable.":[null,""],"Product ( ID: %d ) is missing a dimension value. Shipping rates cannot be calculated.":[null,""],"Product ( ID: %d ) did not include a weight. Shipping rates cannot be calculated.":[null,""],"Packing log:":[null,""],"Received rate: %1$s (%2$s)":[null,""],"Your customer selected {{shippingMethod/}}":[null,""],"Total rate: %(total)s":[null,""],"%(serviceName)s: %(rate)s":[null,""],"No rates found":[null,""],"WooCommerce Shipping gives you access to USPS Commercial Pricing, which is discounted over Retail rates.":[null,""],"more info":[null,""],"ITN":[null,""],"Sanitary / Phytosanitary inspection":[null,""],"Quarantine":[null,""],"None":[null,""],"Restriction type":[null,""],"Details":[null,""],"Sample":[null,""],"Gift":[null,""],"Documents":[null,""],"Merchandise":[null,""],"Contents type":[null,""],"Return to sender if package is unable to be delivered":[null,""],"Value (per unit)":[null,""],"Weight (per unit)":[null,""],"Save customs form":[null,""],"Customs":[null,""],"Use address as entered":[null,""],"View on Google Maps":[null,""],"Verify with USPS":[null,""],"Automatic verification failed for this address. It may still be a valid address \\u2014 use the tools below to manually verify.":[null,""],"We were unable to automatically verify the address.":[null,""],"We were unable to automatically verify the address \\u2014 %(error)s.":[null,""],"You've edited the address, please revalidate it for accurate rates":[null,""],"Verify address":[null,""],"%(message)s. Please modify the address and try again.":[null,""],"View details":[null,""],"Items":[null,""],"Package":[null,""],"Receipt":[null,""],"Label #%(labelIndex)s details":[null,""],"{{icon/}} Delete this package":[null,""],"Done":[null,""],"Add boxes, envelopes, and other packages you use most frequently":[null,""],"Remove":[null,""],"Edit":[null,""],"Weight of empty package":[null,""],"Unique package name":[null,""],"Envelope":[null,""],"Box":[null,""],"This field is required.":[null,""],"Payment":[null,""],"Email the label purchase receipts to %(ownerName)s (%(ownerLogin)s) at %(ownerEmail)s":[null,""],"Email Receipts":[null,""],"To purchase shipping labels, choose a credit card you have on file or add a new card.":[null,""],"Choose a different card":[null,""],"To purchase shipping labels, add a credit card.":[null,""],"We'll charge the credit card on your account (%(card)s) to pay for the labels you print":[null,""],"Credit cards are retrieved from the following WordPress.com account: %(wpcomLogin)s <%(wpcomEmail)s>":[null,""],"Only the site owner can change these settings. Please contact %(ownerName)s (%(ownerLogin)s) to change the shipping label settings.":[null,""],"Only the site owner can manage shipping label payment methods. Please contact %(ownerName)s (%(ownerLogin)s) to manage payment methods.":[null,""],"%(card)s ****%(digits)s":[null,""],"Print shipping labels yourself and save a trip to the post office":[null,""],"H":[null,""],"W":[null,""],"L":[null,""],"Disconnect":[null,""],"Activate":[null,""],"No activity yet":[null,""],"Note":[null,""],"Refunded %(amount)s":[null,""],"%(service)s label (#%(labelNum)d) refund rejected":[null,""],"%(service)s label (#%(labelNum)d) refunded (%(amount)s)":[null,""],"%(service)s label (#%(labelNum)d) refund requested (%(amount)s)":[null,""],"Note sent to customer":[null,""],"Internal note":[null,""],"Show notes from %(date)s":[null,""],"%(count)s event":["%(count)s events","",""],"WeChat Pay":[null,""],"Toggle menu":[null,""],"Return to Order #%(orderId)s":[null,""],"Our team is here for you. View our {{docsA}}support docs{{/docsA}} or {{ticketA}}open a support ticket{{/ticketA}}.":[null,""],"Logging":[null,""],"No services configured. {{a}}Add a shipping service{{/a}}":[null,""],"Edit service settings":[null,""],"Request was made %s - check logs below or {{a}}edit service settings{{/a}}":[null,""],"Copy for support":[null,""],"Last %s entry. {{a}}Show full log{{/a}}":["Last %s entries. {{a}}Show full log{{/a}}","",""],"Log tail copied to clipboard":[null,""],"You have unsaved changes. Are you sure you want to leave this page?":[null,""],"Value ($ per unit)":[null,""],"Weight (%s per unit)":[null,""],"Description":[null,""],"Country where the product was manufactured or assembled":[null,""],"Origin country":[null,""],"USPS":[null,""],"Optional":[null,""],"Retry":[null,""],"shipping label printing":[null,""],"shipping label printing and smoother payment setup":[null,""],"automated tax calculation and shipping label printing":[null,""],"automated tax calculation, shipping label printing, and smoother payment setup":[null,""],"Data resource description.":[null,""],"Data resource ID.":[null,""],"List of supported currencies.":[null,""],"List of supported states in a given country.":[null,""],"List of supported continents, countries, and states.":[null,""],"Sorry, you cannot view this resource.":[null,""],"Sorry, you cannot list resources.":[null,""],"The unit weights are defined in for this country.":[null,""],"Thousands separator for displayed prices in this country.":[null,""],"Full name of state.":[null,""],"State code.":[null,""],"List of states in this country.":[null,""],"Number of decimal points shown in displayed prices for this country.":[null,""],"Full name of country.":[null,""],"The unit lengths are defined in for this country.":[null,""],"Decimal separator for displayed prices for this country.":[null,""],"Currency symbol position for this country.":[null,""],"Default ISO4127 alpha-3 currency code for the country.":[null,""],"ISO3166 alpha-2 country code.":[null,""],"List of countries on this continent.":[null,""],"Full name of continent.":[null,""],"There are no locations matching these parameters.":[null,""],"2 character continent code.":[null,""],"Shipping label tracking number":[null,""],"Shipping label service":[null,""],"Warning: Erasing personal data will cause the ability to reprint or refund WooCommerce Shipping & Tax shipping labels to be lost on the affected orders.":[null,""],"By using this extension, you may be storing personal data or sharing data with external services. <a href=\"%s\" target=\"_blank\">Learn more about how this works, including what you may want to include in your privacy policy.</a>":[null,""],"There was a problem updating your saved credit cards.":[null,""],"No labels found for this period":[null,""],"Total":[null,"Totaal"],"Refund":[null,"Terugbetaling"],"Price":[null,"Prijs"],"Order":[null,"Volgorde"],"Time":[null,"Tijd"],"Requested":[null,"Aangevraagd"],"Last 7 days":[null,"Laatste 7 dagen"],"This month":[null,"Deze maand"],"Last month":[null,"Laatste maand"],"Year":[null,"Jaar"],"Export CSV":[null,"Exporteer CSV"],"Other Log":[null,""],"Taxes Log":[null,""],"Shipping Log":[null,""],"Display troubleshooting information on the Cart and Checkout pages.":[null,""],"Write diagnostic messages to log files. Helpful when contacting support.":[null,""],"Enter your email address at which to accept payments. You'll need to link your own account in order to perform anything other than \"sale\" transactions.":[null,"Vul je e-mailadres in waarmee je betalingen accepteert. Je dient je eigen account te koppelen om iets anders te accepteren dan \"verkoop\" transacties."],"Payment Email":[null,"Betalings e-mail"],"To authenticate payments with WooCommerce Shipping & Tax, <a href=\"%s\">click here</a>.":[null,"Om betalingen met WooCommerce Verzending & Btw te autoriseren, <a href=\"%s\">klik hier</a>."],"Payments will be authenticated by WooCommerce Shipping & Tax and directed to the following email address. To disable this feature and link a PayPal account, <a href=\"%s\">click here</a>.":[null,"Betalingen worden door WooCommerce Verzending & Btw geautoriseerd en doorgestuurd naar het volgende e-mailadres. Om deze functie uit te schakelen en een ander PayPal account te koppelen <a href=\"%s\">klik hier</a>."],"%s (Note that \"authorizing payment only\" requires linking a PayPal account.)":[null,"%s (Letop dat er bij \"authorizing payment only\" er een koppeling met een PayPal account nodig is.)"],"Link account":[null,"Koppel je account"],"Link a new or existing PayPal account to make sure future orders are marked “Processing” instead of “On hold”, and so refunds can be issued without leaving WooCommerce.":[null,"Koppel een nieuw of een bestaand PayPal account om er van verzekerd te zijn dat toekomstige bestellingen worden gemarkeerd als ”Processing” in plaats van “On hold”, waardoor retour betalingen kunnen worden verricht zonder WooCommerce te verlaten."],"Link your PayPal account":[null,"Koppel je PayPal-account"],"To issue refunds via PayPal Checkout, you will need to <a href=\"%s\">link a PayPal account</a> with the email address that received this payment.":[null,""],"Link a PayPal account":[null,"Koppel een PayPal-account"],"Refresh":[null,"Ververs"],"Tracking number":[null,"Track & trace code"],"Provider":[null,"Provider"],"WooCommerce Shipping & Tax is almost ready to go! Once you connect Jetpack you'll have access to %s.":[null,"WooCommerce Verzending & Btw is nu bijna gebruiksklaar! Zodra je Jetpack hebt verbonden krijg je toegang tot %s."],"Hosted services for WooCommerce: automated tax calculation, shipping label printing, and smoother payment setup.":[null,""],"Tax Class":[null,"Belastingtarief"],"Shipping":[null,"Verzending"],"Compound":[null,""],"Priority":[null,"Prioriteit"],"Tax Name":[null,"Belastingnaam"],"Rate %":[null,"Percentage %"],"ZIP/Postcode":[null,"Postcode"],"State Code":[null,"Staat/Provincie"],"Country Code":[null,"Landcode"],"Enable automated taxes":[null,"Schakel automatische belastingtarieven in"],"Disable automated taxes":[null,"Schakel automatische belastingtarieven uit"],"Automated taxes":[null,"Automatische belastingen"],"By clicking \"%1$s\", you agree to the <a href=\"%2$s\">Terms of Service</a> and to <a href=\"%3$s\">share certain data and settings</a> with WordPress.com and/or third parties.":[null,""],"Setup complete.":[null,""],"You can now enjoy %s.":[null,""],"WooCommerce Shipping & Tax is almost ready to go! Once you connect your store you'll have access to %s.":[null,""],"automated tax calculation":[null,""],"smoother payment setup":[null,""],"automated tax calculation and smoother payment setup":[null,""],"Required":[null,""],"Your shipping settings have been saved.":[null,""],"Unable to save your shipping settings. Please try again.":[null,""],"Dimensions":[null,""],"Close":[null,""],"Packages to be Shipped":[null,""],"Add to a New Package":[null,""],"Add items":[null,""],"Individually Shipped Item":[null,""],"Item Dimensions":[null,""],"Please select a package":[null,""],"Service schemas were not loaded":[null,""],"Bad request":[null,""],"Order not found":[null,"Bestelling niet gevonden"],"Got it, thanks!":[null,""],"Activate Jetpack and connect":[null,""],"Install Jetpack and connect":[null,""],"Something went wrong. Please try connecting to Jetpack manually, or contact support on the WordPress.org forums.":[null,""],"Connecting...":[null,"Verbinden..."],"Activating...":[null,"Activeren..."],"When you're ready, purchase and print discounted labels from %s right here.":[null,""],"Discounted Shipping Labels":[null,""],"American Express":[null,"American Express"],"Discover":[null,"Discover"],"MasterCard":[null,"MasterCard"],"VISA":[null,"VISA"],"PayPal":[null,"PayPal"],"Add another credit card":[null,"Voeg nog een creditcard toe"],"%(selectedCount)d package selected":["%(selectedCount)d packages selected","",""],"Unable to get your settings. Please refresh the page to try again.":[null,""],"%(numSelected)d service selected":["%(numSelected)d services selected","",""],"Add and edit saved packages using the {{a}}Packaging Manager{{/a}}.":[null,""],"Tracking #: {{trackingLink/}}":[null,""],"%(item)s from {{pckg/}}":[null,""],"Which items would you like to add to {{pckg/}}?":[null,""],"1 item in 1 package: %(weight)s %(unit)s total":[null,""],"%(itemsCount)d items in 1 package: %(weight)s %(unit)s total":[null,""],"%(itemsCount)d items in %(packageCount)d packages: %(weight)s %(unit)s total":[null,""],"{{itemLink/}} is currently saved for a later shipment.":[null,""],"{{itemLink/}} is currently shipped in its original packaging.":[null,""],"{{itemLink/}} is currently in {{pckg/}}.":[null,""],"Choose rate: %(pckg)s":[null,""],"Refund label (-%(amount)s)":[null,""],"Where would you like to move it?":[null,""],"Unsaved changes made to packages":[null,""],"There are no items in this package.":[null,""],"Ship in original packaging":[null,""],"Request refund":[null,""],"Reprint":[null,""],"Paper size":[null,"Papiergrootte"],"No packages selected":[null,""],"Move":[null,""],"Move item":[null,""],"Increase the rates calculated by the carrier to account for packaging and handling costs. You can also add a negative amount to save your customers money.":[null,""],"Create new label":[null,""],"All packages selected":[null,""],"Add":[null,""],"Add item":[null,""],"Add a credit card":[null,""],"#%d - [Deleted product]":[null,""],"#%1$d - %2$s":[null,""],"<a href=\"%s\">Support</a>":[null,""],"There was an error installing Jetpack. Please try installing it manually.":[null,""],"Shipping Labels":[null,""],"https://woocommerce.com/":[null,""],"Phone":[null,"Telefoon"],"Connect":[null,"Verbind"],"Save Settings":[null,"Bewaar instellingen"],"Your changes have been saved.":[null,""],"There was a problem with one or more entries. Please fix the errors below and try saving again.":[null,""],"Expand":[null,""],"Dismiss":[null,"Verberg"],"You have unsaved changes.":[null,""],"Type of package":[null,""],"Add package":["Add packages","",""],"Invalid value.":[null,""],"This field is required":[null,""],"Package name":[null,""],"This field must be unique":[null,""],"Unable to save your shipping packages. Please try again.":[null,""],"Save changes":[null,"Bewaar wijzigingen"],"Untitled":[null,"Geen titel"],"Dimensions (L x W x H)":[null,""],"All services selected":[null,""],"Expand Services":[null,""],"Service":[null,""],"Price adjustment":[null,""],"Saved Packages":[null,""],"Tracking":[null,""],"Create shipping label":["Create shipping labels","",""],"Name":[null,"Naam"],"Company":[null,"Bedrijf"],"Address":[null,"Adres"],"City":[null,"Plaats"],"State":[null,"Provincie"],"Country":[null,"Land"],"Invalid address":[null,"Ongeldig adres"],"Origin address":[null,"Adres afzender"],"Destination address":[null,"Afleveradres"],"We have slightly modified the address entered. If correct, please use the suggested address to ensure accurate delivery.":[null,""],"Address entered":[null,"Adres ingevuld"],"Edit address":[null,"Bewerk adres"],"Suggested address":[null,"Gesuggereerd adres"],"Use selected address":[null,"Gebruik geselecteerd adres"],"Use these packages":[null,""],"The service and rate chosen by the customer at checkout is not available. Please choose another.":[null,""],"Request a refund":[null,"Vraag terugbetaling aan"],"You can request a refund for a shipping label that has not been used to ship a package. It will take at least %(days)s days to process.":[null,""],"Purchase date":[null,"Aankoopdatum"],"Amount eligible for refund":[null,"Bedrag beschikbaar voor terugbetaling"],"Reprint shipping label":[null,""],"If there was a printing error when you purchased the label, you can print it again.":[null,""],"NOTE: If you already used the label in a package, printing and using it again is a violation of our terms of service and may result in criminal charges.":[null,""],"Print":[null,"Print"],"Cancel":[null,"Annuleer"],"N/A":[null,"Nvt"],"More":[null,"Meer"],"Invalid PDF request.":[null,""],"Unknown package":[null,""],"Individual packaging":[null,""],"Unable to update service settings. Validation failed. %s":[null,""],"Unable to update service settings. The form data could not be read.":[null,""],"Unable to update service settings. Form data is missing service ID.":[null,""],"Unable to update settings. The form data could not be read.":[null,""],"Unable to update settings. %s":[null,""],"Packaging":[null,""],"Section not loading? Visit the <a href=\"%s\">status page</a> for troubleshooting steps.":[null,""],"Note: Jetpack development mode is enabled on this site. This site will not be able to obtain payment methods from WooCommerce Shipping & Tax production servers.":[null,""],"Note: Jetpack is connected, but development mode is also enabled on this site. Please disable development mode.":[null,""],"Shipping Label":[null,""],"yd":[null,""],"in":[null,""],"mm":[null,""],"cm":[null,""],"m":[null,""],"oz":[null,""],"lbs":[null,""],"g":[null,""],"kg":[null,""],"An invalid service ID was received.":[null,""],"An invalid service instance was received.":[null,""],"Rest of the World":[null,"Rest van de wereld"],"Support":[null,""],"Debug":[null,""],"Services":[null,""],"Need help?":[null,""],"Log is empty":[null,""],"Disabled":[null,""],"Enabled":[null,""],"%s Shipping Zone":[null,""],"The most recent rate request failed":[null,""],"The most recent rate request was successful":[null,""],"No rate requests have yet been made for this service":[null,""],"Setup for this service has not yet been completed":[null,""],"Service data is up-to-date":[null,""],"Service data was found, but is more than one day old":[null,""],"Service data was found, but is more than three days old":[null,""],"Service data found, but may be out of date":[null,""],"No service data available":[null,""],"Jetpack":[null,""],"Jetpack %s is connected and working correctly":[null,"Jetpack %s is verbonden en werkt correct"],"This is a Jetpack staging site":[null,""],"Jetpack is not connected to WordPress.com. Make sure the Jetpack plugin is installed, activated, and connected.":[null,"Jetpack is niet verbonden aan WordPress.com. Controleer of de Jetpack plugin is geïnstalleerd, geactiveerd en verbonden."],"Jetpack %1$s or higher is required (You are running %2$s)":[null,"Jetpack %1$s of nieuwer is vereist (Je gebruikt %2$s)"],"Please install and activate the Jetpack plugin, version %s or higher":[null,"Installeer en activeer de Jetpack plugin, versie %s of nieuwer"],"WooCommerce":[null,""],"WooCommerce %s is configured correctly":[null,"WooCommerce %s is correct geconfigureerd"],"Please set Base Location in WooCommerce Settings > General":[null,""],"WooCommerce %1$s or higher is required (You are running %2$s)":[null,"WooCommerce %1$s of nieuwer is vereist (Je gebruikt %2$s)"],"Dismiss this notice":[null,"Verberg deze melding"],"ERROR: Your site has a problem connecting to the WooCommerce Shipping & Tax API. Please make sure your Jetpack connection is working.":[null,""],"Your site is succesfully communicating to the WooCommerce Shipping & Tax API.":[null,""],"This will test your WooCommerce Shipping & Tax connection to ensure everything is working correctly":[null,""],"Test Connection":[null,"Test verbinding"],"The WooCommerce Shipping & Tax brandname\u0004WooCommerce Shipping & Tax":[null,""],"The WooCommerce Shipping & Tax brandname\u0004WooCommerce Shipping":[null,""],"%s - ZIP/Postal code checkout field label\u0004Invalid %s entered.":[null,""],"%s - ZIP/Postal code checkout field label\u0004%s does not match the selected state.":[null,""],"date is of the form MM/YY\u0004Expires %(date)s":[null,"Verloopt %(date)s"],"A service with an unknown title and unknown method_title\u0004Unknown":[null,"Onbekend"],"This section displays the overall health of WooCommerce Shipping & Tax and the things it depends on\u0004Health":[null,""]}
i18n/languages/woocommerce-services-nl_NL.po CHANGED
@@ -51,7 +51,7 @@ msgstr ""
51
  msgid "Live rates at checkout"
52
  msgstr ""
53
 
54
- #: i18n/strings.php:354
55
  msgid "Last updated %s."
56
  msgstr ""
57
 
@@ -206,7 +206,7 @@ msgstr ""
206
  msgid "WooCommerce Helper auth is missing"
207
  msgstr ""
208
 
209
- #: i18n/strings.php:364 i18n/strings.php:428
210
  msgid "USPS labels without tracking are not eligible for refund."
211
  msgstr ""
212
 
@@ -226,11 +226,11 @@ msgstr ""
226
  msgid "Loading"
227
  msgstr ""
228
 
229
- #: i18n/strings.php:353
230
  msgid "WooCommerce Shipping & Tax Data"
231
  msgstr ""
232
 
233
- #: i18n/strings.php:372 i18n/strings.php:436
234
  msgid "Print customs form"
235
  msgstr ""
236
 
@@ -277,8 +277,8 @@ msgid "Invalid WooCommerce Shipping & Tax service slug provided"
277
  msgstr ""
278
 
279
  #. Plugin Name of the plugin
280
- #: classes/class-wc-connect-privacy.php:36
281
  #: classes/class-wc-connect-settings-pages.php:123
 
282
  msgid "WooCommerce Shipping & Tax"
283
  msgstr ""
284
 
@@ -411,7 +411,7 @@ msgstr ""
411
  msgid "Validating address\\u2026"
412
  msgstr ""
413
 
414
- #: i18n/strings.php:326 i18n/strings.php:405 i18n/strings.php:469
415
  msgid "Purchasing\\u2026"
416
  msgstr ""
417
 
@@ -423,7 +423,7 @@ msgstr ""
423
  msgid "Package %(index)s \\u2013 %(title)s"
424
  msgstr ""
425
 
426
- #: i18n/strings.php:6 i18n/strings.php:170 i18n/strings.php:482
427
  msgid "Saving\\u2026"
428
  msgstr ""
429
 
@@ -437,27 +437,27 @@ msgstr ""
437
  msgid "Your tax rates and settings will be automatically configured for %1$s, %2$s. <a href=\"https://docs.woocommerce.com/document/setting-up-taxes-in-woocommerce/#section-12\">Learn more about setting up tax rates for additional nexuses</a>"
438
  msgstr ""
439
 
440
- #: i18n/strings.php:480
441
  msgid "%(itemCount)d item is ready to be fulfilled"
442
  msgid_plural "%(itemCount)d items are ready to be fulfilled"
443
  msgstr[0] ""
444
  msgstr[1] ""
445
 
446
- #: i18n/strings.php:479
447
  msgid "%(itemCount)d item was fulfilled on {{span}}%(createdDate)s{{/span}}"
448
  msgid_plural "%(itemCount)d items were fulfilled on {{span}}%(createdDate)s{{/span}}"
449
  msgstr[0] ""
450
  msgstr[1] ""
451
 
452
- #: i18n/strings.php:371 i18n/strings.php:435
453
  msgid "Schedule a pickup"
454
  msgstr ""
455
 
456
- #: i18n/strings.php:367 i18n/strings.php:431
457
  msgid "Label images older than 180 days are deleted by our technology partners for general security and data privacy concerns."
458
  msgstr ""
459
 
460
- #: i18n/strings.php:363 i18n/strings.php:427
461
  msgid "Labels older than 30 days cannot be refunded."
462
  msgstr ""
463
 
@@ -478,26 +478,26 @@ msgstr ""
478
  msgid "WooCommerce Shipping & Tax requires the WooCommerce plugin to be installed and active. You can download %s here."
479
  msgstr ""
480
 
481
- #: i18n/strings.php:408
482
  msgid "No tracking information available at this time"
483
  msgstr ""
484
 
485
- #: i18n/strings.php:478
486
  msgid "Connection error: unable to create label at this time"
487
  msgstr ""
488
 
489
- #: i18n/strings.php:474 i18n/strings.php:476
490
  msgid "Track Package"
491
  msgid_plural "Track Packages"
492
  msgstr[0] ""
493
  msgstr[1] ""
494
 
495
- #: i18n/strings.php:426
496
  msgid "Which package would you like to track?"
497
  msgstr ""
498
 
499
- #: i18n/strings.php:373 i18n/strings.php:404 i18n/strings.php:437
500
- #: i18n/strings.php:468
501
  msgid "%(service)s label (#%(labelIndex)d)"
502
  msgstr ""
503
 
@@ -585,7 +585,7 @@ msgstr ""
585
  msgid "0.0"
586
  msgstr ""
587
 
588
- #: woocommerce-services.php:1449
589
  msgid "Shipment Tracking"
590
  msgstr ""
591
 
@@ -597,23 +597,23 @@ msgstr ""
597
  msgid "Customs information incomplete"
598
  msgstr ""
599
 
600
- #: woocommerce-services.php:1492
601
  msgid "Packing Log:"
602
  msgstr ""
603
 
604
- #: woocommerce-services.php:1479
605
  msgid "Chosen Rate:"
606
  msgstr ""
607
 
608
- #: woocommerce-services.php:1475
609
  msgid "Shipping Method ID:"
610
  msgstr ""
611
 
612
- #: woocommerce-services.php:1471
613
  msgid "Shipping Method Name:"
614
  msgstr ""
615
 
616
- #: woocommerce-services.php:1455
617
  msgid "Shipping Debug"
618
  msgstr ""
619
 
@@ -621,15 +621,15 @@ msgstr ""
621
  msgid "<strong>\"%2$s\" is missing weight, length, width, or height.</strong><br />Shipping rates cannot be calculated. <a href=\"%1$s\">Enter dimensions and weight for %2$s</a> so your customers can purchase this item."
622
  msgstr ""
623
 
624
- #: classes/class-wc-connect-api-client.php:595
625
  msgid "Unable to send request to WooCommerce Shipping & Tax server. The timestamp generated for the signature is too old."
626
  msgstr ""
627
 
628
- #: classes/class-wc-connect-api-client.php:534
629
  msgid "Unable to send request to WooCommerce Shipping & Tax server. Jetpack Token is malformed."
630
  msgstr ""
631
 
632
- #: classes/class-wc-connect-api-client.php:527
633
  msgid "Unable to send request to WooCommerce Shipping & Tax server. Jetpack Token is missing"
634
  msgstr ""
635
 
@@ -663,7 +663,6 @@ msgid "Unable to send request to WooCommerce Shipping & Tax server. Jetpack_Data
663
  msgstr ""
664
 
665
  #: classes/class-wc-connect-api-client.php:160
666
- #: classes/class-wc-connect-api-client.php:187
667
  msgid "No shipping rate could be calculated. No items in the package are shippable."
668
  msgstr ""
669
 
@@ -812,23 +811,23 @@ msgstr ""
812
  msgid "%(message)s. Please modify the address and try again."
813
  msgstr ""
814
 
815
- #: i18n/strings.php:370 i18n/strings.php:434
816
  msgid "View details"
817
  msgstr ""
818
 
819
- #: i18n/strings.php:402 i18n/strings.php:466
820
  msgid "Items"
821
  msgstr ""
822
 
823
- #: i18n/strings.php:401 i18n/strings.php:465
824
  msgid "Package"
825
  msgstr ""
826
 
827
- #: i18n/strings.php:399 i18n/strings.php:463
828
  msgid "Receipt"
829
  msgstr ""
830
 
831
- #: i18n/strings.php:398 i18n/strings.php:462
832
  msgid "Label #%(labelIndex)s details"
833
  msgstr ""
834
 
@@ -943,43 +942,43 @@ msgstr ""
943
  msgid "Activate"
944
  msgstr ""
945
 
946
- #: i18n/strings.php:375 i18n/strings.php:439
947
  msgid "No activity yet"
948
  msgstr ""
949
 
950
- #: i18n/strings.php:383 i18n/strings.php:447
951
  msgid "Note"
952
  msgstr ""
953
 
954
- #: i18n/strings.php:382 i18n/strings.php:446
955
  msgid "Refunded %(amount)s"
956
  msgstr ""
957
 
958
- #: i18n/strings.php:380 i18n/strings.php:444
959
  msgid "%(service)s label (#%(labelNum)d) refund rejected"
960
  msgstr ""
961
 
962
- #: i18n/strings.php:379 i18n/strings.php:443
963
  msgid "%(service)s label (#%(labelNum)d) refunded (%(amount)s)"
964
  msgstr ""
965
 
966
- #: i18n/strings.php:378 i18n/strings.php:442
967
  msgid "%(service)s label (#%(labelNum)d) refund requested (%(amount)s)"
968
  msgstr ""
969
 
970
- #: i18n/strings.php:377 i18n/strings.php:441
971
  msgid "Note sent to customer"
972
  msgstr ""
973
 
974
- #: i18n/strings.php:376 i18n/strings.php:440
975
  msgid "Internal note"
976
  msgstr ""
977
 
978
- #: i18n/strings.php:407 i18n/strings.php:471
979
  msgid "Show notes from %(date)s"
980
  msgstr ""
981
 
982
- #: i18n/strings.php:406 i18n/strings.php:470
983
  msgid "%(count)s event"
984
  msgid_plural "%(count)s events"
985
  msgstr[0] ""
@@ -990,7 +989,7 @@ msgstr[1] ""
990
  msgid "WeChat Pay"
991
  msgstr ""
992
 
993
- #: i18n/strings.php:384 i18n/strings.php:448
994
  msgid "Toggle menu"
995
  msgstr ""
996
 
@@ -998,41 +997,41 @@ msgstr ""
998
  msgid "Return to Order #%(orderId)s"
999
  msgstr ""
1000
 
1001
- #: i18n/strings.php:344
1002
  msgid "Our team is here for you. View our {{docsA}}support docs{{/docsA}} or {{ticketA}}open a support ticket{{/ticketA}}."
1003
  msgstr ""
1004
 
1005
- #: i18n/strings.php:335
1006
  msgid "Logging"
1007
  msgstr ""
1008
 
1009
- #: i18n/strings.php:362
1010
  msgid "No services configured. {{a}}Add a shipping service{{/a}}"
1011
  msgstr ""
1012
 
1013
- #: i18n/strings.php:360
1014
  msgid "Edit service settings"
1015
  msgstr ""
1016
 
1017
- #: i18n/strings.php:359
1018
  msgid "Request was made %s - check logs below or {{a}}edit service settings{{/a}}"
1019
  msgstr ""
1020
 
1021
- #: i18n/strings.php:358
1022
  msgid "Copy for support"
1023
  msgstr ""
1024
 
1025
- #: i18n/strings.php:357
1026
  msgid "Last %s entry. {{a}}Show full log{{/a}}"
1027
  msgid_plural "Last %s entries. {{a}}Show full log{{/a}}"
1028
  msgstr[0] ""
1029
  msgstr[1] ""
1030
 
1031
- #: i18n/strings.php:356
1032
  msgid "Log tail copied to clipboard"
1033
  msgstr ""
1034
 
1035
- #: i18n/strings.php:11 i18n/strings.php:414
1036
  msgid "You have unsaved changes. Are you sure you want to leave this page?"
1037
  msgstr ""
1038
 
@@ -1061,7 +1060,7 @@ msgid "USPS"
1061
  msgstr ""
1062
 
1063
  #: i18n/strings.php:5 i18n/strings.php:169 i18n/strings.php:295
1064
- #: i18n/strings.php:329 i18n/strings.php:410
1065
  msgid "Optional"
1066
  msgstr ""
1067
 
@@ -1216,8 +1215,8 @@ msgstr ""
1216
  msgid "Total"
1217
  msgstr "Totaal"
1218
 
1219
- #: classes/class-wc-connect-label-reports.php:170 i18n/strings.php:381
1220
- #: i18n/strings.php:445
1221
  msgid "Refund"
1222
  msgstr "Terugbetaling"
1223
 
@@ -1257,23 +1256,23 @@ msgstr "Jaar"
1257
  msgid "Export CSV"
1258
  msgstr "Exporteer CSV"
1259
 
1260
- #: i18n/strings.php:341
1261
  msgid "Other Log"
1262
  msgstr ""
1263
 
1264
- #: i18n/strings.php:340
1265
  msgid "Taxes Log"
1266
  msgstr ""
1267
 
1268
- #: i18n/strings.php:339
1269
  msgid "Shipping Log"
1270
  msgstr ""
1271
 
1272
- #: i18n/strings.php:332
1273
  msgid "Display troubleshooting information on the Cart and Checkout pages."
1274
  msgstr ""
1275
 
1276
- #: i18n/strings.php:336
1277
  msgid "Write diagnostic messages to log files. Helpful when contacting support."
1278
  msgstr ""
1279
 
@@ -1317,15 +1316,15 @@ msgstr ""
1317
  msgid "Link a PayPal account"
1318
  msgstr "Koppel een PayPal-account"
1319
 
1320
- #: i18n/strings.php:355
1321
  msgid "Refresh"
1322
  msgstr "Ververs"
1323
 
1324
- #: woocommerce-services.php:1230
1325
  msgid "Tracking number"
1326
  msgstr "Track & trace code"
1327
 
1328
- #: woocommerce-services.php:1229
1329
  msgid "Provider"
1330
  msgstr "Provider"
1331
 
@@ -1417,7 +1416,7 @@ msgid "automated tax calculation and smoother payment setup"
1417
  msgstr ""
1418
 
1419
  #: classes/class-wc-connect-paypal-ec.php:323 i18n/strings.php:4
1420
- #: i18n/strings.php:168 i18n/strings.php:328 i18n/strings.php:409
1421
  msgid "Required"
1422
  msgstr ""
1423
 
@@ -1433,7 +1432,7 @@ msgstr ""
1433
  msgid "Dimensions"
1434
  msgstr ""
1435
 
1436
- #: i18n/strings.php:270 i18n/strings.php:397 i18n/strings.php:461
1437
  msgid "Close"
1438
  msgstr ""
1439
 
@@ -1544,17 +1543,17 @@ msgstr[1] ""
1544
  msgid "Unable to get your settings. Please refresh the page to try again."
1545
  msgstr ""
1546
 
1547
- #: i18n/strings.php:421
1548
  msgid "%(numSelected)d service selected"
1549
  msgid_plural "%(numSelected)d services selected"
1550
  msgstr[0] ""
1551
  msgstr[1] ""
1552
 
1553
- #: i18n/strings.php:419
1554
  msgid "Add and edit saved packages using the {{a}}Packaging Manager{{/a}}."
1555
  msgstr ""
1556
 
1557
- #: i18n/strings.php:374 i18n/strings.php:438
1558
  msgid "Tracking #: {{trackingLink/}}"
1559
  msgstr ""
1560
 
@@ -1594,7 +1593,7 @@ msgstr ""
1594
  msgid "Choose rate: %(pckg)s"
1595
  msgstr ""
1596
 
1597
- #: i18n/strings.php:386 i18n/strings.php:450
1598
  msgid "Refund label (-%(amount)s)"
1599
  msgstr ""
1600
 
@@ -1614,17 +1613,17 @@ msgstr ""
1614
  msgid "Ship in original packaging"
1615
  msgstr ""
1616
 
1617
- #: i18n/strings.php:365 i18n/strings.php:366 i18n/strings.php:429
1618
- #: i18n/strings.php:430
1619
  msgid "Request refund"
1620
  msgstr ""
1621
 
1622
- #: i18n/strings.php:368 i18n/strings.php:432
1623
  msgid "Reprint"
1624
  msgstr ""
1625
 
1626
- #: i18n/strings.php:58 i18n/strings.php:309 i18n/strings.php:396
1627
- #: i18n/strings.php:460
1628
  msgid "Paper size"
1629
  msgstr "Papiergrootte"
1630
 
@@ -1640,11 +1639,11 @@ msgstr ""
1640
  msgid "Move item"
1641
  msgstr ""
1642
 
1643
- #: i18n/strings.php:425
1644
  msgid "Increase the rates calculated by the carrier to account for packaging and handling costs. You can also add a negative amount to save your customers money."
1645
  msgstr ""
1646
 
1647
- #: i18n/strings.php:475
1648
  msgid "Create new label"
1649
  msgstr ""
1650
 
@@ -1665,19 +1664,19 @@ msgid "Add a credit card"
1665
  msgstr ""
1666
 
1667
  #. translators: %d: Deleted Product ID
1668
- #: classes/class-wc-connect-compatibility-wc30.php:130
1669
  #: classes/class-wc-connect-compatibility-wc26.php:116
 
1670
  msgid "#%d - [Deleted product]"
1671
  msgstr ""
1672
 
1673
  #. translators: %1$d: Product ID, %2$s: Product Name
1674
- #: classes/class-wc-connect-compatibility-wc30.php:125
1675
  #: classes/class-wc-connect-compatibility-wc26.php:111
 
1676
  msgid "#%1$d - %2$s"
1677
  msgstr ""
1678
 
1679
  #. translators: %s Support url
1680
- #: woocommerce-services.php:1565
1681
  msgid "<a href=\"%s\">Support</a>"
1682
  msgstr ""
1683
 
@@ -1685,22 +1684,18 @@ msgstr ""
1685
  msgid "There was an error installing Jetpack. Please try installing it manually."
1686
  msgstr ""
1687
 
1688
- #: woocommerce-services.php:1066 woocommerce-services.php:1069
1689
- #: i18n/strings.php:43
1690
  msgid "Shipping Labels"
1691
  msgstr ""
1692
 
1693
- #. Author of the plugin
1694
- msgid "Automattic"
1695
- msgstr ""
1696
-
1697
  #. Plugin URI of the plugin
1698
  #. Author URI of the plugin
1699
  msgid "https://woocommerce.com/"
1700
  msgstr ""
1701
 
1702
- #: woocommerce-services.php:1515 woocommerce-services.php:1543
1703
- #: i18n/strings.php:143 i18n/strings.php:215
1704
  msgid "Phone"
1705
  msgstr "Telefoon"
1706
 
@@ -1709,15 +1704,15 @@ msgstr "Telefoon"
1709
  msgid "Connect"
1710
  msgstr "Verbind"
1711
 
1712
- #: i18n/strings.php:7 i18n/strings.php:171 i18n/strings.php:483
1713
  msgid "Save Settings"
1714
  msgstr "Bewaar instellingen"
1715
 
1716
- #: i18n/strings.php:415
1717
  msgid "Your changes have been saved."
1718
  msgstr ""
1719
 
1720
- #: i18n/strings.php:416
1721
  msgid "There was a problem with one or more entries. Please fix the errors below and try saving again."
1722
  msgstr ""
1723
 
@@ -1725,11 +1720,11 @@ msgstr ""
1725
  msgid "Expand"
1726
  msgstr ""
1727
 
1728
- #: i18n/strings.php:411 i18n/strings.php:481
1729
  msgid "Dismiss"
1730
  msgstr "Verberg"
1731
 
1732
- #: i18n/strings.php:10 i18n/strings.php:413
1733
  msgid "You have unsaved changes."
1734
  msgstr ""
1735
 
@@ -1764,7 +1759,7 @@ msgstr ""
1764
  msgid "Unable to save your shipping packages. Please try again."
1765
  msgstr ""
1766
 
1767
- #: i18n/strings.php:41 i18n/strings.php:417
1768
  msgid "Save changes"
1769
  msgstr "Bewaar wijzigingen"
1770
 
@@ -1776,32 +1771,32 @@ msgstr "Geen titel"
1776
  msgid "Dimensions (L x W x H)"
1777
  msgstr ""
1778
 
1779
- #: i18n/strings.php:420
1780
  msgid "All services selected"
1781
  msgstr ""
1782
 
1783
- #: i18n/strings.php:37 i18n/strings.php:199 i18n/strings.php:422
1784
  msgid "Expand Services"
1785
  msgstr ""
1786
 
1787
- #: classes/class-wc-connect-label-reports.php:167 i18n/strings.php:400
1788
- #: i18n/strings.php:423 i18n/strings.php:464
1789
  msgid "Service"
1790
  msgstr ""
1791
 
1792
- #: i18n/strings.php:424
1793
  msgid "Price adjustment"
1794
  msgstr ""
1795
 
1796
- #: i18n/strings.php:418
1797
  msgid "Saved Packages"
1798
  msgstr ""
1799
 
1800
- #: woocommerce-services.php:1218 woocommerce-services.php:1225
1801
  msgid "Tracking"
1802
  msgstr ""
1803
 
1804
- #: i18n/strings.php:207 i18n/strings.php:473 i18n/strings.php:477
1805
  msgid "Create shipping label"
1806
  msgid_plural "Create shipping labels"
1807
  msgstr[0] ""
@@ -1874,51 +1869,51 @@ msgstr ""
1874
  msgid "The service and rate chosen by the customer at checkout is not available. Please choose another."
1875
  msgstr ""
1876
 
1877
- #: i18n/strings.php:387 i18n/strings.php:451
1878
  msgid "Request a refund"
1879
  msgstr "Vraag terugbetaling aan"
1880
 
1881
- #: i18n/strings.php:388 i18n/strings.php:452
1882
  msgid "You can request a refund for a shipping label that has not been used to ship a package. It will take at least %(days)s days to process."
1883
  msgstr ""
1884
 
1885
- #: i18n/strings.php:389 i18n/strings.php:453
1886
  msgid "Purchase date"
1887
  msgstr "Aankoopdatum"
1888
 
1889
- #: i18n/strings.php:390 i18n/strings.php:454
1890
  msgid "Amount eligible for refund"
1891
  msgstr "Bedrag beschikbaar voor terugbetaling"
1892
 
1893
- #: i18n/strings.php:369 i18n/strings.php:393 i18n/strings.php:433
1894
- #: i18n/strings.php:457
1895
  msgid "Reprint shipping label"
1896
  msgstr ""
1897
 
1898
- #: i18n/strings.php:394 i18n/strings.php:458
1899
  msgid "If there was a printing error when you purchased the label, you can print it again."
1900
  msgstr ""
1901
 
1902
- #: i18n/strings.php:395 i18n/strings.php:459
1903
  msgid "NOTE: If you already used the label in a package, printing and using it again is a violation of our terms of service and may result in criminal charges."
1904
  msgstr ""
1905
 
1906
- #: i18n/strings.php:325 i18n/strings.php:392 i18n/strings.php:456
1907
  msgid "Print"
1908
  msgstr "Print"
1909
 
1910
  #: i18n/strings.php:16 i18n/strings.php:82 i18n/strings.php:122
1911
  #: i18n/strings.php:158 i18n/strings.php:167 i18n/strings.php:178
1912
- #: i18n/strings.php:263 i18n/strings.php:385 i18n/strings.php:391
1913
- #: i18n/strings.php:449 i18n/strings.php:455
1914
  msgid "Cancel"
1915
  msgstr "Annuleer"
1916
 
1917
- #: i18n/strings.php:403 i18n/strings.php:467
1918
  msgid "N/A"
1919
  msgstr "Nvt"
1920
 
1921
- #: i18n/strings.php:8 i18n/strings.php:412 i18n/strings.php:472
1922
  msgid "More"
1923
  msgstr "Meer"
1924
 
@@ -1961,7 +1956,7 @@ msgstr ""
1961
  msgid "Packaging"
1962
  msgstr ""
1963
 
1964
- #: woocommerce-services.php:1598
1965
  msgid "Section not loading? Visit the <a href=\"%s\">status page</a> for troubleshooting steps."
1966
  msgstr ""
1967
 
@@ -1973,7 +1968,7 @@ msgstr ""
1973
  msgid "Note: Jetpack is connected, but development mode is also enabled on this site. Please disable development mode."
1974
  msgstr ""
1975
 
1976
- #: woocommerce-services.php:1451
1977
  msgid "Shipping Label"
1978
  msgstr ""
1979
 
@@ -2030,24 +2025,24 @@ msgctxt "A service with an unknown title and unknown method_title"
2030
  msgid "Unknown"
2031
  msgstr "Onbekend"
2032
 
2033
- #: i18n/strings.php:342
2034
  msgid "Support"
2035
  msgstr ""
2036
 
2037
- #: i18n/strings.php:330 i18n/strings.php:331
2038
  msgid "Debug"
2039
  msgstr ""
2040
 
2041
- #: i18n/strings.php:361
2042
  msgid "Services"
2043
  msgstr ""
2044
 
2045
- #: i18n/strings.php:345
2046
  msgctxt "This section displays the overall health of WooCommerce Shipping & Tax and the things it depends on"
2047
  msgid "Health"
2048
  msgstr ""
2049
 
2050
- #: i18n/strings.php:343
2051
  msgid "Need help?"
2052
  msgstr ""
2053
 
@@ -2055,11 +2050,11 @@ msgstr ""
2055
  msgid "Log is empty"
2056
  msgstr ""
2057
 
2058
- #: i18n/strings.php:334 i18n/strings.php:338
2059
  msgid "Disabled"
2060
  msgstr ""
2061
 
2062
- #: i18n/strings.php:333 i18n/strings.php:337
2063
  msgid "Enabled"
2064
  msgstr ""
2065
 
@@ -2083,27 +2078,27 @@ msgstr ""
2083
  msgid "Setup for this service has not yet been completed"
2084
  msgstr ""
2085
 
2086
- #: i18n/strings.php:350
2087
  msgid "Service data is up-to-date"
2088
  msgstr ""
2089
 
2090
- #: i18n/strings.php:349
2091
  msgid "Service data was found, but is more than one day old"
2092
  msgstr ""
2093
 
2094
- #: i18n/strings.php:348
2095
  msgid "Service data was found, but is more than three days old"
2096
  msgstr ""
2097
 
2098
- #: i18n/strings.php:351
2099
  msgid "Service data found, but may be out of date"
2100
  msgstr ""
2101
 
2102
- #: i18n/strings.php:352
2103
  msgid "No service data available"
2104
  msgstr ""
2105
 
2106
- #: i18n/strings.php:347
2107
  msgid "Jetpack"
2108
  msgstr ""
2109
 
@@ -2127,7 +2122,8 @@ msgstr "Jetpack %1$s of nieuwer is vereist (Je gebruikt %2$s)"
2127
  msgid "Please install and activate the Jetpack plugin, version %s or higher"
2128
  msgstr "Installeer en activeer de Jetpack plugin, versie %s of nieuwer"
2129
 
2130
- #: i18n/strings.php:346
 
2131
  msgid "WooCommerce"
2132
  msgstr ""
2133
 
@@ -2143,7 +2139,7 @@ msgstr ""
2143
  msgid "WooCommerce %1$s or higher is required (You are running %2$s)"
2144
  msgstr "WooCommerce %1$s of nieuwer is vereist (Je gebruikt %2$s)"
2145
 
2146
- #: classes/class-wc-connect-error-notice.php:104 woocommerce-services.php:1634
2147
  msgid "Dismiss this notice"
2148
  msgstr "Verberg deze melding"
2149
 
51
  msgid "Live rates at checkout"
52
  msgstr ""
53
 
54
+ #: i18n/strings.php:403
55
  msgid "Last updated %s."
56
  msgstr ""
57
 
206
  msgid "WooCommerce Helper auth is missing"
207
  msgstr ""
208
 
209
+ #: i18n/strings.php:331 i18n/strings.php:422
210
  msgid "USPS labels without tracking are not eligible for refund."
211
  msgstr ""
212
 
226
  msgid "Loading"
227
  msgstr ""
228
 
229
+ #: i18n/strings.php:402
230
  msgid "WooCommerce Shipping & Tax Data"
231
  msgstr ""
232
 
233
+ #: i18n/strings.php:339 i18n/strings.php:430
234
  msgid "Print customs form"
235
  msgstr ""
236
 
277
  msgstr ""
278
 
279
  #. Plugin Name of the plugin
 
280
  #: classes/class-wc-connect-settings-pages.php:123
281
+ #: classes/class-wc-connect-privacy.php:36
282
  msgid "WooCommerce Shipping & Tax"
283
  msgstr ""
284
 
411
  msgid "Validating address\\u2026"
412
  msgstr ""
413
 
414
+ #: i18n/strings.php:326 i18n/strings.php:372 i18n/strings.php:463
415
  msgid "Purchasing\\u2026"
416
  msgstr ""
417
 
423
  msgid "Package %(index)s \\u2013 %(title)s"
424
  msgstr ""
425
 
426
+ #: i18n/strings.php:6 i18n/strings.php:170 i18n/strings.php:375
427
  msgid "Saving\\u2026"
428
  msgstr ""
429
 
437
  msgid "Your tax rates and settings will be automatically configured for %1$s, %2$s. <a href=\"https://docs.woocommerce.com/document/setting-up-taxes-in-woocommerce/#section-12\">Learn more about setting up tax rates for additional nexuses</a>"
438
  msgstr ""
439
 
440
+ #: i18n/strings.php:419
441
  msgid "%(itemCount)d item is ready to be fulfilled"
442
  msgid_plural "%(itemCount)d items are ready to be fulfilled"
443
  msgstr[0] ""
444
  msgstr[1] ""
445
 
446
+ #: i18n/strings.php:418
447
  msgid "%(itemCount)d item was fulfilled on {{span}}%(createdDate)s{{/span}}"
448
  msgid_plural "%(itemCount)d items were fulfilled on {{span}}%(createdDate)s{{/span}}"
449
  msgstr[0] ""
450
  msgstr[1] ""
451
 
452
+ #: i18n/strings.php:338 i18n/strings.php:429
453
  msgid "Schedule a pickup"
454
  msgstr ""
455
 
456
+ #: i18n/strings.php:334 i18n/strings.php:425
457
  msgid "Label images older than 180 days are deleted by our technology partners for general security and data privacy concerns."
458
  msgstr ""
459
 
460
+ #: i18n/strings.php:330 i18n/strings.php:421
461
  msgid "Labels older than 30 days cannot be refunded."
462
  msgstr ""
463
 
478
  msgid "WooCommerce Shipping & Tax requires the WooCommerce plugin to be installed and active. You can download %s here."
479
  msgstr ""
480
 
481
+ #: i18n/strings.php:466
482
  msgid "No tracking information available at this time"
483
  msgstr ""
484
 
485
+ #: i18n/strings.php:417
486
  msgid "Connection error: unable to create label at this time"
487
  msgstr ""
488
 
489
+ #: i18n/strings.php:413 i18n/strings.php:415
490
  msgid "Track Package"
491
  msgid_plural "Track Packages"
492
  msgstr[0] ""
493
  msgstr[1] ""
494
 
495
+ #: i18n/strings.php:329
496
  msgid "Which package would you like to track?"
497
  msgstr ""
498
 
499
+ #: i18n/strings.php:340 i18n/strings.php:371 i18n/strings.php:431
500
+ #: i18n/strings.php:462
501
  msgid "%(service)s label (#%(labelIndex)d)"
502
  msgstr ""
503
 
585
  msgid "0.0"
586
  msgstr ""
587
 
588
+ #: woocommerce-services.php:1453
589
  msgid "Shipment Tracking"
590
  msgstr ""
591
 
597
  msgid "Customs information incomplete"
598
  msgstr ""
599
 
600
+ #: woocommerce-services.php:1496
601
  msgid "Packing Log:"
602
  msgstr ""
603
 
604
+ #: woocommerce-services.php:1483
605
  msgid "Chosen Rate:"
606
  msgstr ""
607
 
608
+ #: woocommerce-services.php:1479
609
  msgid "Shipping Method ID:"
610
  msgstr ""
611
 
612
+ #: woocommerce-services.php:1475
613
  msgid "Shipping Method Name:"
614
  msgstr ""
615
 
616
+ #: woocommerce-services.php:1459
617
  msgid "Shipping Debug"
618
  msgstr ""
619
 
621
  msgid "<strong>\"%2$s\" is missing weight, length, width, or height.</strong><br />Shipping rates cannot be calculated. <a href=\"%1$s\">Enter dimensions and weight for %2$s</a> so your customers can purchase this item."
622
  msgstr ""
623
 
624
+ #: classes/class-wc-connect-api-client.php:588
625
  msgid "Unable to send request to WooCommerce Shipping & Tax server. The timestamp generated for the signature is too old."
626
  msgstr ""
627
 
628
+ #: classes/class-wc-connect-api-client.php:527
629
  msgid "Unable to send request to WooCommerce Shipping & Tax server. Jetpack Token is malformed."
630
  msgstr ""
631
 
632
+ #: classes/class-wc-connect-api-client.php:520
633
  msgid "Unable to send request to WooCommerce Shipping & Tax server. Jetpack Token is missing"
634
  msgstr ""
635
 
663
  msgstr ""
664
 
665
  #: classes/class-wc-connect-api-client.php:160
 
666
  msgid "No shipping rate could be calculated. No items in the package are shippable."
667
  msgstr ""
668
 
811
  msgid "%(message)s. Please modify the address and try again."
812
  msgstr ""
813
 
814
+ #: i18n/strings.php:337 i18n/strings.php:428
815
  msgid "View details"
816
  msgstr ""
817
 
818
+ #: i18n/strings.php:369 i18n/strings.php:460
819
  msgid "Items"
820
  msgstr ""
821
 
822
+ #: i18n/strings.php:368 i18n/strings.php:459
823
  msgid "Package"
824
  msgstr ""
825
 
826
+ #: i18n/strings.php:366 i18n/strings.php:457
827
  msgid "Receipt"
828
  msgstr ""
829
 
830
+ #: i18n/strings.php:365 i18n/strings.php:456
831
  msgid "Label #%(labelIndex)s details"
832
  msgstr ""
833
 
942
  msgid "Activate"
943
  msgstr ""
944
 
945
+ #: i18n/strings.php:342 i18n/strings.php:433
946
  msgid "No activity yet"
947
  msgstr ""
948
 
949
+ #: i18n/strings.php:350 i18n/strings.php:441
950
  msgid "Note"
951
  msgstr ""
952
 
953
+ #: i18n/strings.php:349 i18n/strings.php:440
954
  msgid "Refunded %(amount)s"
955
  msgstr ""
956
 
957
+ #: i18n/strings.php:347 i18n/strings.php:438
958
  msgid "%(service)s label (#%(labelNum)d) refund rejected"
959
  msgstr ""
960
 
961
+ #: i18n/strings.php:346 i18n/strings.php:437
962
  msgid "%(service)s label (#%(labelNum)d) refunded (%(amount)s)"
963
  msgstr ""
964
 
965
+ #: i18n/strings.php:345 i18n/strings.php:436
966
  msgid "%(service)s label (#%(labelNum)d) refund requested (%(amount)s)"
967
  msgstr ""
968
 
969
+ #: i18n/strings.php:344 i18n/strings.php:435
970
  msgid "Note sent to customer"
971
  msgstr ""
972
 
973
+ #: i18n/strings.php:343 i18n/strings.php:434
974
  msgid "Internal note"
975
  msgstr ""
976
 
977
+ #: i18n/strings.php:374 i18n/strings.php:465
978
  msgid "Show notes from %(date)s"
979
  msgstr ""
980
 
981
+ #: i18n/strings.php:373 i18n/strings.php:464
982
  msgid "%(count)s event"
983
  msgid_plural "%(count)s events"
984
  msgstr[0] ""
989
  msgid "WeChat Pay"
990
  msgstr ""
991
 
992
+ #: i18n/strings.php:351 i18n/strings.php:442
993
  msgid "Toggle menu"
994
  msgstr ""
995
 
997
  msgid "Return to Order #%(orderId)s"
998
  msgstr ""
999
 
1000
+ #: i18n/strings.php:393
1001
  msgid "Our team is here for you. View our {{docsA}}support docs{{/docsA}} or {{ticketA}}open a support ticket{{/ticketA}}."
1002
  msgstr ""
1003
 
1004
+ #: i18n/strings.php:384
1005
  msgid "Logging"
1006
  msgstr ""
1007
 
1008
+ #: i18n/strings.php:411
1009
  msgid "No services configured. {{a}}Add a shipping service{{/a}}"
1010
  msgstr ""
1011
 
1012
+ #: i18n/strings.php:409
1013
  msgid "Edit service settings"
1014
  msgstr ""
1015
 
1016
+ #: i18n/strings.php:408
1017
  msgid "Request was made %s - check logs below or {{a}}edit service settings{{/a}}"
1018
  msgstr ""
1019
 
1020
+ #: i18n/strings.php:407
1021
  msgid "Copy for support"
1022
  msgstr ""
1023
 
1024
+ #: i18n/strings.php:406
1025
  msgid "Last %s entry. {{a}}Show full log{{/a}}"
1026
  msgid_plural "Last %s entries. {{a}}Show full log{{/a}}"
1027
  msgstr[0] ""
1028
  msgstr[1] ""
1029
 
1030
+ #: i18n/strings.php:405
1031
  msgid "Log tail copied to clipboard"
1032
  msgstr ""
1033
 
1034
+ #: i18n/strings.php:11 i18n/strings.php:472
1035
  msgid "You have unsaved changes. Are you sure you want to leave this page?"
1036
  msgstr ""
1037
 
1060
  msgstr ""
1061
 
1062
  #: i18n/strings.php:5 i18n/strings.php:169 i18n/strings.php:295
1063
+ #: i18n/strings.php:378 i18n/strings.php:468
1064
  msgid "Optional"
1065
  msgstr ""
1066
 
1215
  msgid "Total"
1216
  msgstr "Totaal"
1217
 
1218
+ #: classes/class-wc-connect-label-reports.php:170 i18n/strings.php:348
1219
+ #: i18n/strings.php:439
1220
  msgid "Refund"
1221
  msgstr "Terugbetaling"
1222
 
1256
  msgid "Export CSV"
1257
  msgstr "Exporteer CSV"
1258
 
1259
+ #: i18n/strings.php:390
1260
  msgid "Other Log"
1261
  msgstr ""
1262
 
1263
+ #: i18n/strings.php:389
1264
  msgid "Taxes Log"
1265
  msgstr ""
1266
 
1267
+ #: i18n/strings.php:388
1268
  msgid "Shipping Log"
1269
  msgstr ""
1270
 
1271
+ #: i18n/strings.php:381
1272
  msgid "Display troubleshooting information on the Cart and Checkout pages."
1273
  msgstr ""
1274
 
1275
+ #: i18n/strings.php:385
1276
  msgid "Write diagnostic messages to log files. Helpful when contacting support."
1277
  msgstr ""
1278
 
1316
  msgid "Link a PayPal account"
1317
  msgstr "Koppel een PayPal-account"
1318
 
1319
+ #: i18n/strings.php:404
1320
  msgid "Refresh"
1321
  msgstr "Ververs"
1322
 
1323
+ #: woocommerce-services.php:1234
1324
  msgid "Tracking number"
1325
  msgstr "Track & trace code"
1326
 
1327
+ #: woocommerce-services.php:1233
1328
  msgid "Provider"
1329
  msgstr "Provider"
1330
 
1416
  msgstr ""
1417
 
1418
  #: classes/class-wc-connect-paypal-ec.php:323 i18n/strings.php:4
1419
+ #: i18n/strings.php:168 i18n/strings.php:377 i18n/strings.php:467
1420
  msgid "Required"
1421
  msgstr ""
1422
 
1432
  msgid "Dimensions"
1433
  msgstr ""
1434
 
1435
+ #: i18n/strings.php:270 i18n/strings.php:364 i18n/strings.php:455
1436
  msgid "Close"
1437
  msgstr ""
1438
 
1543
  msgid "Unable to get your settings. Please refresh the page to try again."
1544
  msgstr ""
1545
 
1546
+ #: i18n/strings.php:479
1547
  msgid "%(numSelected)d service selected"
1548
  msgid_plural "%(numSelected)d services selected"
1549
  msgstr[0] ""
1550
  msgstr[1] ""
1551
 
1552
+ #: i18n/strings.php:477
1553
  msgid "Add and edit saved packages using the {{a}}Packaging Manager{{/a}}."
1554
  msgstr ""
1555
 
1556
+ #: i18n/strings.php:341 i18n/strings.php:432
1557
  msgid "Tracking #: {{trackingLink/}}"
1558
  msgstr ""
1559
 
1593
  msgid "Choose rate: %(pckg)s"
1594
  msgstr ""
1595
 
1596
+ #: i18n/strings.php:353 i18n/strings.php:444
1597
  msgid "Refund label (-%(amount)s)"
1598
  msgstr ""
1599
 
1613
  msgid "Ship in original packaging"
1614
  msgstr ""
1615
 
1616
+ #: i18n/strings.php:332 i18n/strings.php:333 i18n/strings.php:423
1617
+ #: i18n/strings.php:424
1618
  msgid "Request refund"
1619
  msgstr ""
1620
 
1621
+ #: i18n/strings.php:335 i18n/strings.php:426
1622
  msgid "Reprint"
1623
  msgstr ""
1624
 
1625
+ #: i18n/strings.php:58 i18n/strings.php:309 i18n/strings.php:363
1626
+ #: i18n/strings.php:454
1627
  msgid "Paper size"
1628
  msgstr "Papiergrootte"
1629
 
1639
  msgid "Move item"
1640
  msgstr ""
1641
 
1642
+ #: i18n/strings.php:483
1643
  msgid "Increase the rates calculated by the carrier to account for packaging and handling costs. You can also add a negative amount to save your customers money."
1644
  msgstr ""
1645
 
1646
+ #: i18n/strings.php:414
1647
  msgid "Create new label"
1648
  msgstr ""
1649
 
1664
  msgstr ""
1665
 
1666
  #. translators: %d: Deleted Product ID
 
1667
  #: classes/class-wc-connect-compatibility-wc26.php:116
1668
+ #: classes/class-wc-connect-compatibility-wc30.php:130
1669
  msgid "#%d - [Deleted product]"
1670
  msgstr ""
1671
 
1672
  #. translators: %1$d: Product ID, %2$s: Product Name
 
1673
  #: classes/class-wc-connect-compatibility-wc26.php:111
1674
+ #: classes/class-wc-connect-compatibility-wc30.php:125
1675
  msgid "#%1$d - %2$s"
1676
  msgstr ""
1677
 
1678
  #. translators: %s Support url
1679
+ #: woocommerce-services.php:1569
1680
  msgid "<a href=\"%s\">Support</a>"
1681
  msgstr ""
1682
 
1684
  msgid "There was an error installing Jetpack. Please try installing it manually."
1685
  msgstr ""
1686
 
1687
+ #: i18n/strings.php:43 woocommerce-services.php:1066
1688
+ #: woocommerce-services.php:1069
1689
  msgid "Shipping Labels"
1690
  msgstr ""
1691
 
 
 
 
 
1692
  #. Plugin URI of the plugin
1693
  #. Author URI of the plugin
1694
  msgid "https://woocommerce.com/"
1695
  msgstr ""
1696
 
1697
+ #: i18n/strings.php:143 i18n/strings.php:215 woocommerce-services.php:1519
1698
+ #: woocommerce-services.php:1547
1699
  msgid "Phone"
1700
  msgstr "Telefoon"
1701
 
1704
  msgid "Connect"
1705
  msgstr "Verbind"
1706
 
1707
+ #: i18n/strings.php:7 i18n/strings.php:171 i18n/strings.php:376
1708
  msgid "Save Settings"
1709
  msgstr "Bewaar instellingen"
1710
 
1711
+ #: i18n/strings.php:473
1712
  msgid "Your changes have been saved."
1713
  msgstr ""
1714
 
1715
+ #: i18n/strings.php:474
1716
  msgid "There was a problem with one or more entries. Please fix the errors below and try saving again."
1717
  msgstr ""
1718
 
1720
  msgid "Expand"
1721
  msgstr ""
1722
 
1723
+ #: i18n/strings.php:328 i18n/strings.php:469
1724
  msgid "Dismiss"
1725
  msgstr "Verberg"
1726
 
1727
+ #: i18n/strings.php:10 i18n/strings.php:471
1728
  msgid "You have unsaved changes."
1729
  msgstr ""
1730
 
1759
  msgid "Unable to save your shipping packages. Please try again."
1760
  msgstr ""
1761
 
1762
+ #: i18n/strings.php:41 i18n/strings.php:475
1763
  msgid "Save changes"
1764
  msgstr "Bewaar wijzigingen"
1765
 
1771
  msgid "Dimensions (L x W x H)"
1772
  msgstr ""
1773
 
1774
+ #: i18n/strings.php:478
1775
  msgid "All services selected"
1776
  msgstr ""
1777
 
1778
+ #: i18n/strings.php:37 i18n/strings.php:199 i18n/strings.php:480
1779
  msgid "Expand Services"
1780
  msgstr ""
1781
 
1782
+ #: classes/class-wc-connect-label-reports.php:167 i18n/strings.php:367
1783
+ #: i18n/strings.php:458 i18n/strings.php:481
1784
  msgid "Service"
1785
  msgstr ""
1786
 
1787
+ #: i18n/strings.php:482
1788
  msgid "Price adjustment"
1789
  msgstr ""
1790
 
1791
+ #: i18n/strings.php:476
1792
  msgid "Saved Packages"
1793
  msgstr ""
1794
 
1795
+ #: woocommerce-services.php:1222 woocommerce-services.php:1229
1796
  msgid "Tracking"
1797
  msgstr ""
1798
 
1799
+ #: i18n/strings.php:207 i18n/strings.php:412 i18n/strings.php:416
1800
  msgid "Create shipping label"
1801
  msgid_plural "Create shipping labels"
1802
  msgstr[0] ""
1869
  msgid "The service and rate chosen by the customer at checkout is not available. Please choose another."
1870
  msgstr ""
1871
 
1872
+ #: i18n/strings.php:354 i18n/strings.php:445
1873
  msgid "Request a refund"
1874
  msgstr "Vraag terugbetaling aan"
1875
 
1876
+ #: i18n/strings.php:355 i18n/strings.php:446
1877
  msgid "You can request a refund for a shipping label that has not been used to ship a package. It will take at least %(days)s days to process."
1878
  msgstr ""
1879
 
1880
+ #: i18n/strings.php:356 i18n/strings.php:447
1881
  msgid "Purchase date"
1882
  msgstr "Aankoopdatum"
1883
 
1884
+ #: i18n/strings.php:357 i18n/strings.php:448
1885
  msgid "Amount eligible for refund"
1886
  msgstr "Bedrag beschikbaar voor terugbetaling"
1887
 
1888
+ #: i18n/strings.php:336 i18n/strings.php:360 i18n/strings.php:427
1889
+ #: i18n/strings.php:451
1890
  msgid "Reprint shipping label"
1891
  msgstr ""
1892
 
1893
+ #: i18n/strings.php:361 i18n/strings.php:452
1894
  msgid "If there was a printing error when you purchased the label, you can print it again."
1895
  msgstr ""
1896
 
1897
+ #: i18n/strings.php:362 i18n/strings.php:453
1898
  msgid "NOTE: If you already used the label in a package, printing and using it again is a violation of our terms of service and may result in criminal charges."
1899
  msgstr ""
1900
 
1901
+ #: i18n/strings.php:325 i18n/strings.php:359 i18n/strings.php:450
1902
  msgid "Print"
1903
  msgstr "Print"
1904
 
1905
  #: i18n/strings.php:16 i18n/strings.php:82 i18n/strings.php:122
1906
  #: i18n/strings.php:158 i18n/strings.php:167 i18n/strings.php:178
1907
+ #: i18n/strings.php:263 i18n/strings.php:352 i18n/strings.php:358
1908
+ #: i18n/strings.php:443 i18n/strings.php:449
1909
  msgid "Cancel"
1910
  msgstr "Annuleer"
1911
 
1912
+ #: i18n/strings.php:370 i18n/strings.php:461
1913
  msgid "N/A"
1914
  msgstr "Nvt"
1915
 
1916
+ #: i18n/strings.php:8 i18n/strings.php:420 i18n/strings.php:470
1917
  msgid "More"
1918
  msgstr "Meer"
1919
 
1956
  msgid "Packaging"
1957
  msgstr ""
1958
 
1959
+ #: woocommerce-services.php:1602
1960
  msgid "Section not loading? Visit the <a href=\"%s\">status page</a> for troubleshooting steps."
1961
  msgstr ""
1962
 
1968
  msgid "Note: Jetpack is connected, but development mode is also enabled on this site. Please disable development mode."
1969
  msgstr ""
1970
 
1971
+ #: woocommerce-services.php:1455
1972
  msgid "Shipping Label"
1973
  msgstr ""
1974
 
2025
  msgid "Unknown"
2026
  msgstr "Onbekend"
2027
 
2028
+ #: i18n/strings.php:391
2029
  msgid "Support"
2030
  msgstr ""
2031
 
2032
+ #: i18n/strings.php:379 i18n/strings.php:380
2033
  msgid "Debug"
2034
  msgstr ""
2035
 
2036
+ #: i18n/strings.php:410
2037
  msgid "Services"
2038
  msgstr ""
2039
 
2040
+ #: i18n/strings.php:394
2041
  msgctxt "This section displays the overall health of WooCommerce Shipping & Tax and the things it depends on"
2042
  msgid "Health"
2043
  msgstr ""
2044
 
2045
+ #: i18n/strings.php:392
2046
  msgid "Need help?"
2047
  msgstr ""
2048
 
2050
  msgid "Log is empty"
2051
  msgstr ""
2052
 
2053
+ #: i18n/strings.php:383 i18n/strings.php:387
2054
  msgid "Disabled"
2055
  msgstr ""
2056
 
2057
+ #: i18n/strings.php:382 i18n/strings.php:386
2058
  msgid "Enabled"
2059
  msgstr ""
2060
 
2078
  msgid "Setup for this service has not yet been completed"
2079
  msgstr ""
2080
 
2081
+ #: i18n/strings.php:399
2082
  msgid "Service data is up-to-date"
2083
  msgstr ""
2084
 
2085
+ #: i18n/strings.php:398
2086
  msgid "Service data was found, but is more than one day old"
2087
  msgstr ""
2088
 
2089
+ #: i18n/strings.php:397
2090
  msgid "Service data was found, but is more than three days old"
2091
  msgstr ""
2092
 
2093
+ #: i18n/strings.php:400
2094
  msgid "Service data found, but may be out of date"
2095
  msgstr ""
2096
 
2097
+ #: i18n/strings.php:401
2098
  msgid "No service data available"
2099
  msgstr ""
2100
 
2101
+ #: i18n/strings.php:396
2102
  msgid "Jetpack"
2103
  msgstr ""
2104
 
2122
  msgid "Please install and activate the Jetpack plugin, version %s or higher"
2123
  msgstr "Installeer en activeer de Jetpack plugin, versie %s of nieuwer"
2124
 
2125
+ #. Author of the plugin
2126
+ #: i18n/strings.php:395
2127
  msgid "WooCommerce"
2128
  msgstr ""
2129
 
2139
  msgid "WooCommerce %1$s or higher is required (You are running %2$s)"
2140
  msgstr "WooCommerce %1$s of nieuwer is vereist (Je gebruikt %2$s)"
2141
 
2142
+ #: classes/class-wc-connect-error-notice.php:104 woocommerce-services.php:1638
2143
  msgid "Dismiss this notice"
2144
  msgstr "Verberg deze melding"
2145
 
i18n/languages/woocommerce-services-pt_BR.json CHANGED
@@ -1 +1 @@
1
- {"0":[null,""],"":{"po-revision-date":"2020-04-16 12:34:16+0000","mime-version":"1.0","content-type":"text/plain; charset=UTF-8","content-transfer-encoding":"8bit","plural-forms":"nplurals=2; plural=n > 1;","x-generator":"GlotPress/3.0.0-alpha.2","language":"pt_BR","project-id-version":"Plugins - WooCommerce Shipping &amp; Tax - Stable (latest release)"},"Features":[null,""],"Carrier":[null,""],"Express delivery from the experts in international shipping":[null,""],"Live rates for %(carrierName)s at checkout":[null,""],"Ship with the largest delivery network in the United States":[null,""],"Discounted %(carrierName)s shipping labels":[null,""],"To be displayed at checkout, this carrier must be added as a shipping method to selected shipping zones":[null,""],"Add to shipping zones":[null,""],"Show live rates directly on your store - never under or overcharge for shipping again":[null,""],"Live rates at checkout":[null,""],"Last updated %s.":[null,""],"At least one of the new predefined packages has the same name as existing packages.":[null,""],"The new predefined package names are not unique.":[null,""],"At least one of the new custom packages has the same name as existing packages.":[null,""],"The new custom package names are not unique.":[null,""],"Go to shipping zones":[null,""],"Add DHL Express as a shipping method to selected shipping zones to display live rates at checkout.":[null,""],"DHL Express live rates are now available":[null,""],"State %1$s is invalid for %2$s.":[null,""],"%1$s %2$s is invalid for %3$s.":[null,""],"A %1$s is required for %2$s.":[null,""],"A country is required":[null,""],"Your store is over the limit for rate calls this month and your account will be charged for overages. To prevent future overage charges you can upgrade your plan.":[null,""],"There was an error trying to activate your subscription.":[null,""],"Your subscription was succesfully activated.":[null,""],"Manage":[null,""],"Usage":[null,""],"View and manage your subscription usage":[null,""],"Shipping method":[null,""],"The subscription is already active.":[null,""],"Set up your own carrier account to compare rates and print labels from multiple carriers in WooCommerce Shipping. Learn more about adding {{a}}carrier accounts{{/a}}.":[null,""],"There was an error connecting to your %(carrierName)s account. Please check that all of the information entered matches your %(carrierName)s account and try to connect again.":[null,""],"Your carrier account was connected successfully.":[null,""],"The date must be a valid date in the format YYYY-MM-DD":[null,""],"The invoice number needs to be 9 or 13 letters and digits in length":[null,""],"The company website format is not valid":[null,""],"The email format is not valid":[null,""],"The ZIP/Postal code needs to be 5 digits in length":[null,""],"The phone number needs to be 10 digits in length":[null,""],"The UPS account number needs to be 6 letters and digits in length":[null,""],"This will remove the connection with %(carrier_name)s. All of your %(carrier_name)s account information will be deleted and you won\\u2019t see %(carrier_name)s rates.":[null,""],"Disconnect your %(carrier_name)s account":[null,""],"There was an error trying to disconnect your carrier account":[null,""],"Your carrier account was disconnected succesfully.":[null,""],"DHL Express":[null,""],"Powered by WooCommerce Tax. If automated taxes are enabled, you'll need to enter prices exclusive of tax.":[null,""],"WooCommerce Helper auth is missing":[null,""],"USPS labels without tracking are not eligible for refund.":[null,""],"General Information":[null,""],"Connect your %(carrierName)s account":[null,""],"%(carrierName)s not supported.":[null,""],"Loading":[null,""],"WooCommerce Shipping & Tax Data":[null,""],"Print customs form":[null,""],"Test your WooCommerce Shipping & Tax connection":[null,""],"WooCommerce Shipping & Tax Status":[null,""],"Connect your store to activate WooCommerce Shipping & Tax":[null,""],"Connect Jetpack to activate WooCommerce Shipping & Tax":[null,""],"WooCommerce Shipping now supports DHL labels for international shipments. Purchase and print discounted labels from DHL and USPS right here.":[null,""],"Discounted DHL Shipping Labels":[null,""],"WooCommerce Shipping":[null,""],"Invalid WooCommerce Shipping & Tax service slug provided":[null,""],"WooCommerce Shipping & Tax":[null,""],"ZIP/Postal code":[null,""],"This action will delete any information entered on the form.":[null,""],"Cancel connection":[null,""],"Ok":[null,""],"UPS invoice control id":[null,""],"UPS invoice currency":[null,""],"UPS invoice amount":[null,""],"UPS invoice date":[null,""],"UPS invoice number":[null,""],"I have been issued an invoice from UPS within the past 90 days":[null,""],"UPS account information":[null,""],"Company website":[null,""],"Job title":[null,""],"Company name":[null,""],"This is the company info you used to create your UPS account":[null,""],"Company information":[null,""],"Email":[null,""],"Address 2 (optional)":[null,""],"Account number":[null,""],"This is the account number and address from your UPS profile":[null,""],"General information":[null,""],"If you need a UPS account number, go to {{a}}UPS.com{{/a}} to create a new account.":[null,""],"Set up your own UPS carrier account to compare rates and print labels from multiple carriers in WooCommerce Shipping. Learn more about adding {{a}}carrier accounts{{/a}}.":[null,""],"Connect your UPS account":[null,""],"Set up your own carrier account by adding your credentials here":[null,""],"Carrier account":[null,""],"Credentials":[null,""],"Adult signature required":[null,""],"Signature required":[null,""],"Other\\u2026":[null,""],"Select one\\u2026":[null,""],"Validating address\\u2026":[null,""],"Purchasing\\u2026":[null,""],"Your UPS account will be charged":[null,""],"Package %(index)s \\u2013 %(title)s":[null,""],"Saving\\u2026":[null,""],"Your tax rates and settings will be automatically configured for %1$s. <a href=\"https://docs.woocommerce.com/document/setting-up-taxes-in-woocommerce/#section-12\">Learn more about setting up tax rates for additional nexuses</a>":[null,""],"Your tax rates and settings will be automatically configured for %1$s, %2$s. <a href=\"https://docs.woocommerce.com/document/setting-up-taxes-in-woocommerce/#section-12\">Learn more about setting up tax rates for additional nexuses</a>":[null,""],"%(itemCount)d item is ready to be fulfilled":["%(itemCount)d items are ready to be fulfilled","",""],"%(itemCount)d item was fulfilled on {{span}}%(createdDate)s{{/span}}":["%(itemCount)d items were fulfilled on {{span}}%(createdDate)s{{/span}}","",""],"Schedule a pickup":[null,""],"Label images older than 180 days are deleted by our technology partners for general security and data privacy concerns.":[null,""],"Labels older than 30 days cannot be refunded.":[null,""],"Mark this order as complete and notify the customer":[null,""],"Notify the customer with shipment details":[null,""],"You save %s with WooCommerce Shipping":[null,""],"WooCommerce Shipping & Tax requires the WooCommerce plugin to be installed and active. You can download %s here.":[null,""],"No tracking information available at this time":[null,""],"Connection error: unable to create label at this time":[null,""],"Track Package":["Track Packages","",""],"Which package would you like to track?":[null,""],"%(service)s label (#%(labelIndex)d)":[null,""],"To print this shipping label, {{a}}add a credit card to your account{{/a}}.":[null,""],"Add credit card":[null,""],"To print this shipping label, {{a}}choose a credit card to add to your account{{/a}}.":[null,""],"Choose credit card":[null,""],"Buy shipping label":["Buy shipping labels","",""],"shipping label ready":["shipping labels ready","",""],"Shipping from":[null,""],"Shipping summary":[null,""],"Customer paid a {{shippingMethod/}} of {{shippingCost/}} for shipping":[null,""],"Shipping rates":[null,""],"HS Tariff number":[null,""],"Submit":[null,""],"Total Weight (with package)":[null,""],"QTY":[null,""],"Weight":[null,""],"Items to fulfill":[null,""],"Select a package type":[null,""],"Package details":[null,""],"Your shipping packages have been saved.":[null,""],"0.0":[null,""],"Shipment Tracking":[null,""],"Customs information valid":[null,""],"Customs information incomplete":[null,""],"Packing Log:":[null,""],"Chosen Rate:":[null,""],"Shipping Method ID:":[null,""],"Shipping Method Name:":[null,""],"Shipping Debug":[null,""],"<strong>\"%2$s\" is missing weight, length, width, or height.</strong><br />Shipping rates cannot be calculated. <a href=\"%1$s\">Enter dimensions and weight for %2$s</a> so your customers can purchase this item.":[null,""],"Unable to send request to WooCommerce Shipping & Tax server. The timestamp generated for the signature is too old.":[null,""],"Unable to send request to WooCommerce Shipping & Tax server. Jetpack Token is malformed.":[null,""],"Unable to send request to WooCommerce Shipping & Tax server. Jetpack Token is missing":[null,""],"Error: The WooCommerce Shipping & Tax server returned: %1$s %2$s ( %3$d )":[null,""],"Error: The WooCommerce Shipping & Tax server returned ( %d ) and an empty response body.":[null,""],"Error: The WooCommerce Shipping & Tax server returned HTTP code: %d":[null,""],"Unable to encode body for request to WooCommerce Shipping & Tax server.":[null,""],"Unable to send request to WooCommerce Shipping & Tax server. Body must be an array.":[null,""],"Unable to send request to WooCommerce Shipping & Tax server. Jetpack connection does not implement get_access_token.":[null,""],"Unable to send request to WooCommerce Shipping & Tax server. Jetpack_Data was not found.":[null,""],"No shipping rate could be calculated. No items in the package are shippable.":[null,""],"Product ( ID: %d ) is missing a dimension value. Shipping rates cannot be calculated.":[null,""],"Product ( ID: %d ) did not include a weight. Shipping rates cannot be calculated.":[null,""],"Packing log:":[null,""],"Received rate: %1$s (%2$s)":[null,""],"Your customer selected {{shippingMethod/}}":[null,""],"Total rate: %(total)s":[null,""],"%(serviceName)s: %(rate)s":[null,""],"No rates found":[null,""],"WooCommerce Shipping gives you access to USPS Commercial Pricing, which is discounted over Retail rates.":[null,""],"more info":[null,""],"ITN":[null,""],"Sanitary / Phytosanitary inspection":[null,""],"Quarantine":[null,""],"None":[null,""],"Restriction type":[null,""],"Details":[null,""],"Sample":[null,""],"Gift":[null,""],"Documents":[null,""],"Merchandise":[null,""],"Contents type":[null,""],"Return to sender if package is unable to be delivered":[null,""],"Value (per unit)":[null,""],"Weight (per unit)":[null,""],"Save customs form":[null,""],"Customs":[null,""],"Use address as entered":[null,""],"View on Google Maps":[null,""],"Verify with USPS":[null,""],"Automatic verification failed for this address. It may still be a valid address \\u2014 use the tools below to manually verify.":[null,""],"We were unable to automatically verify the address.":[null,""],"We were unable to automatically verify the address \\u2014 %(error)s.":[null,""],"You've edited the address, please revalidate it for accurate rates":[null,""],"Verify address":[null,""],"%(message)s. Please modify the address and try again.":[null,""],"View details":[null,""],"Items":[null,""],"Package":[null,""],"Receipt":[null,""],"Label #%(labelIndex)s details":[null,""],"{{icon/}} Delete this package":[null,""],"Done":[null,""],"Add boxes, envelopes, and other packages you use most frequently":[null,""],"Remove":[null,""],"Edit":[null,""],"Weight of empty package":[null,""],"Unique package name":[null,""],"Envelope":[null,""],"Box":[null,""],"This field is required.":[null,""],"Payment":[null,""],"Email the label purchase receipts to %(ownerName)s (%(ownerLogin)s) at %(ownerEmail)s":[null,""],"Email Receipts":[null,""],"To purchase shipping labels, choose a credit card you have on file or add a new card.":[null,""],"Choose a different card":[null,""],"To purchase shipping labels, add a credit card.":[null,""],"We'll charge the credit card on your account (%(card)s) to pay for the labels you print":[null,""],"Credit cards are retrieved from the following WordPress.com account: %(wpcomLogin)s <%(wpcomEmail)s>":[null,""],"Only the site owner can change these settings. Please contact %(ownerName)s (%(ownerLogin)s) to change the shipping label settings.":[null,""],"Only the site owner can manage shipping label payment methods. Please contact %(ownerName)s (%(ownerLogin)s) to manage payment methods.":[null,""],"%(card)s ****%(digits)s":[null,""],"Print shipping labels yourself and save a trip to the post office":[null,""],"H":[null,""],"W":[null,""],"L":[null,""],"Disconnect":[null,""],"Activate":[null,""],"No activity yet":[null,""],"Note":[null,""],"Refunded %(amount)s":[null,""],"%(service)s label (#%(labelNum)d) refund rejected":[null,""],"%(service)s label (#%(labelNum)d) refunded (%(amount)s)":[null,""],"%(service)s label (#%(labelNum)d) refund requested (%(amount)s)":[null,""],"Note sent to customer":[null,""],"Internal note":[null,""],"Show notes from %(date)s":[null,""],"%(count)s event":["%(count)s events","",""],"WeChat Pay":[null,""],"Toggle menu":[null,""],"Return to Order #%(orderId)s":[null,""],"Our team is here for you. View our {{docsA}}support docs{{/docsA}} or {{ticketA}}open a support ticket{{/ticketA}}.":[null,""],"Logging":[null,""],"No services configured. {{a}}Add a shipping service{{/a}}":[null,""],"Edit service settings":[null,""],"Request was made %s - check logs below or {{a}}edit service settings{{/a}}":[null,""],"Copy for support":[null,""],"Last %s entry. {{a}}Show full log{{/a}}":["Last %s entries. {{a}}Show full log{{/a}}","",""],"Log tail copied to clipboard":[null,""],"You have unsaved changes. Are you sure you want to leave this page?":[null,""],"Value ($ per unit)":[null,""],"Weight (%s per unit)":[null,""],"Description":[null,""],"Country where the product was manufactured or assembled":[null,""],"Origin country":[null,""],"USPS":[null,""],"Optional":[null,""],"Retry":[null,""],"shipping label printing":[null,""],"shipping label printing and smoother payment setup":[null,""],"automated tax calculation and shipping label printing":[null,""],"automated tax calculation, shipping label printing, and smoother payment setup":[null,""],"Data resource description.":[null,""],"Data resource ID.":[null,""],"List of supported currencies.":[null,""],"List of supported states in a given country.":[null,""],"List of supported continents, countries, and states.":[null,""],"Sorry, you cannot view this resource.":[null,""],"Sorry, you cannot list resources.":[null,""],"The unit weights are defined in for this country.":[null,""],"Thousands separator for displayed prices in this country.":[null,""],"Full name of state.":[null,""],"State code.":[null,""],"List of states in this country.":[null,""],"Number of decimal points shown in displayed prices for this country.":[null,""],"Full name of country.":[null,""],"The unit lengths are defined in for this country.":[null,""],"Decimal separator for displayed prices for this country.":[null,""],"Currency symbol position for this country.":[null,""],"Default ISO4127 alpha-3 currency code for the country.":[null,""],"ISO3166 alpha-2 country code.":[null,""],"List of countries on this continent.":[null,""],"Full name of continent.":[null,""],"There are no locations matching these parameters.":[null,""],"2 character continent code.":[null,""],"Shipping label tracking number":[null,""],"Shipping label service":[null,""],"Warning: Erasing personal data will cause the ability to reprint or refund WooCommerce Shipping & Tax shipping labels to be lost on the affected orders.":[null,""],"By using this extension, you may be storing personal data or sharing data with external services. <a href=\"%s\" target=\"_blank\">Learn more about how this works, including what you may want to include in your privacy policy.</a>":[null,""],"There was a problem updating your saved credit cards.":[null,""],"No labels found for this period":[null,""],"Total":[null,""],"Refund":[null,""],"Price":[null,""],"Order":[null,""],"Time":[null,""],"Requested":[null,""],"Last 7 days":[null,""],"This month":[null,""],"Last month":[null,""],"Year":[null,""],"Export CSV":[null,""],"Other Log":[null,""],"Taxes Log":[null,""],"Shipping Log":[null,""],"Display troubleshooting information on the Cart and Checkout pages.":[null,""],"Write diagnostic messages to log files. Helpful when contacting support.":[null,""],"Enter your email address at which to accept payments. You'll need to link your own account in order to perform anything other than \"sale\" transactions.":[null,""],"Payment Email":[null,""],"To authenticate payments with WooCommerce Shipping & Tax, <a href=\"%s\">click here</a>.":[null,""],"Payments will be authenticated by WooCommerce Shipping & Tax and directed to the following email address. To disable this feature and link a PayPal account, <a href=\"%s\">click here</a>.":[null,""],"%s (Note that \"authorizing payment only\" requires linking a PayPal account.)":[null,""],"Link account":[null,""],"Link a new or existing PayPal account to make sure future orders are marked “Processing” instead of “On hold”, and so refunds can be issued without leaving WooCommerce.":[null,""],"Link your PayPal account":[null,""],"To issue refunds via PayPal Checkout, you will need to <a href=\"%s\">link a PayPal account</a> with the email address that received this payment.":[null,""],"Link a PayPal account":[null,""],"Refresh":[null,""],"Tracking number":[null,""],"Provider":[null,""],"WooCommerce Shipping & Tax is almost ready to go! Once you connect Jetpack you'll have access to %s.":[null,""],"Hosted services for WooCommerce: automated tax calculation, shipping label printing, and smoother payment setup.":[null,""],"Tax Class":[null,""],"Shipping":[null,""],"Compound":[null,""],"Priority":[null,""],"Tax Name":[null,""],"Rate %":[null,""],"ZIP/Postcode":[null,""],"State Code":[null,""],"Country Code":[null,""],"Enable automated taxes":[null,"Ativar taxas automatizadas"],"Disable automated taxes":[null,"Desativar taxas automatizadas"],"Automated taxes":[null,""],"By clicking \"%1$s\", you agree to the <a href=\"%2$s\">Terms of Service</a> and to <a href=\"%3$s\">share certain data and settings</a> with WordPress.com and/or third parties.":[null,""],"Setup complete.":[null,""],"You can now enjoy %s.":[null,""],"WooCommerce Shipping & Tax is almost ready to go! Once you connect your store you'll have access to %s.":[null,""],"automated tax calculation":[null,""],"smoother payment setup":[null,""],"automated tax calculation and smoother payment setup":[null,""],"Required":[null,""],"Your shipping settings have been saved.":[null,""],"Unable to save your shipping settings. Please try again.":[null,""],"Dimensions":[null,""],"Close":[null,""],"Packages to be Shipped":[null,""],"Add to a New Package":[null,""],"Add items":[null,""],"Individually Shipped Item":[null,""],"Item Dimensions":[null,""],"Please select a package":[null,""],"Service schemas were not loaded":[null,""],"Bad request":[null,""],"Order not found":[null,""],"Got it, thanks!":[null,""],"Activate Jetpack and connect":[null,""],"Install Jetpack and connect":[null,""],"Something went wrong. Please try connecting to Jetpack manually, or contact support on the WordPress.org forums.":[null,""],"Connecting...":[null,""],"Activating...":[null,""],"When you're ready, purchase and print discounted labels from %s right here.":[null,""],"Discounted Shipping Labels":[null,""],"American Express":[null,""],"Discover":[null,""],"MasterCard":[null,""],"VISA":[null,""],"PayPal":[null,""],"Add another credit card":[null,""],"%(selectedCount)d package selected":["%(selectedCount)d packages selected","",""],"Unable to get your settings. Please refresh the page to try again.":[null,""],"%(numSelected)d service selected":["%(numSelected)d services selected","",""],"Add and edit saved packages using the {{a}}Packaging Manager{{/a}}.":[null,""],"Tracking #: {{trackingLink/}}":[null,""],"%(item)s from {{pckg/}}":[null,""],"Which items would you like to add to {{pckg/}}?":[null,""],"1 item in 1 package: %(weight)s %(unit)s total":[null,""],"%(itemsCount)d items in 1 package: %(weight)s %(unit)s total":[null,""],"%(itemsCount)d items in %(packageCount)d packages: %(weight)s %(unit)s total":[null,""],"{{itemLink/}} is currently saved for a later shipment.":[null,""],"{{itemLink/}} is currently shipped in its original packaging.":[null,""],"{{itemLink/}} is currently in {{pckg/}}.":[null,""],"Choose rate: %(pckg)s":[null,""],"Refund label (-%(amount)s)":[null,""],"Where would you like to move it?":[null,""],"Unsaved changes made to packages":[null,""],"There are no items in this package.":[null,""],"Ship in original packaging":[null,""],"Request refund":[null,""],"Reprint":[null,""],"Paper size":[null,""],"No packages selected":[null,""],"Move":[null,""],"Move item":[null,""],"Increase the rates calculated by the carrier to account for packaging and handling costs. You can also add a negative amount to save your customers money.":[null,""],"Create new label":[null,""],"All packages selected":[null,""],"Add":[null,""],"Add item":[null,""],"Add a credit card":[null,""],"#%d - [Deleted product]":[null,""],"#%1$d - %2$s":[null,""],"<a href=\"%s\">Support</a>":[null,""],"There was an error installing Jetpack. Please try installing it manually.":[null,""],"Shipping Labels":[null,""],"Automattic":[null,""],"https://woocommerce.com/":[null,""],"Phone":[null,""],"Connect":[null,""],"Save Settings":[null,""],"Your changes have been saved.":[null,""],"There was a problem with one or more entries. Please fix the errors below and try saving again.":[null,""],"Expand":[null,""],"Dismiss":[null,""],"You have unsaved changes.":[null,""],"Type of package":[null,""],"Add package":["Add packages","",""],"Invalid value.":[null,""],"This field is required":[null,""],"Package name":[null,""],"This field must be unique":[null,""],"Unable to save your shipping packages. Please try again.":[null,""],"Save changes":[null,""],"Untitled":[null,""],"Dimensions (L x W x H)":[null,""],"All services selected":[null,""],"Expand Services":[null,""],"Service":[null,""],"Price adjustment":[null,""],"Saved Packages":[null,""],"Tracking":[null,""],"Create shipping label":["Create shipping labels","",""],"Name":[null,""],"Company":[null,""],"Address":[null,""],"City":[null,""],"State":[null,""],"Country":[null,""],"Invalid address":[null,""],"Origin address":[null,""],"Destination address":[null,""],"We have slightly modified the address entered. If correct, please use the suggested address to ensure accurate delivery.":[null,""],"Address entered":[null,""],"Edit address":[null,""],"Suggested address":[null,""],"Use selected address":[null,""],"Use these packages":[null,""],"The service and rate chosen by the customer at checkout is not available. Please choose another.":[null,""],"Request a refund":[null,""],"You can request a refund for a shipping label that has not been used to ship a package. It will take at least %(days)s days to process.":[null,""],"Purchase date":[null,""],"Amount eligible for refund":[null,""],"Reprint shipping label":[null,""],"If there was a printing error when you purchased the label, you can print it again.":[null,""],"NOTE: If you already used the label in a package, printing and using it again is a violation of our terms of service and may result in criminal charges.":[null,""],"Print":[null,""],"Cancel":[null,""],"N/A":[null,""],"More":[null,""],"Invalid PDF request.":[null,""],"Unknown package":[null,""],"Individual packaging":[null,""],"Unable to update service settings. Validation failed. %s":[null,""],"Unable to update service settings. The form data could not be read.":[null,""],"Unable to update service settings. Form data is missing service ID.":[null,""],"Unable to update settings. The form data could not be read.":[null,""],"Unable to update settings. %s":[null,""],"Packaging":[null,""],"Section not loading? Visit the <a href=\"%s\">status page</a> for troubleshooting steps.":[null,""],"Note: Jetpack development mode is enabled on this site. This site will not be able to obtain payment methods from WooCommerce Shipping & Tax production servers.":[null,""],"Note: Jetpack is connected, but development mode is also enabled on this site. Please disable development mode.":[null,""],"Shipping Label":[null,""],"yd":[null,""],"in":[null,""],"mm":[null,""],"cm":[null,""],"m":[null,""],"oz":[null,""],"lbs":[null,""],"g":[null,""],"kg":[null,""],"An invalid service ID was received.":[null,""],"An invalid service instance was received.":[null,""],"Rest of the World":[null,""],"Support":[null,""],"Debug":[null,""],"Services":[null,""],"Need help?":[null,""],"Log is empty":[null,""],"Disabled":[null,""],"Enabled":[null,"Ativado"],"%s Shipping Zone":[null,""],"The most recent rate request failed":[null,""],"The most recent rate request was successful":[null,""],"No rate requests have yet been made for this service":[null,""],"Setup for this service has not yet been completed":[null,""],"Service data is up-to-date":[null,""],"Service data was found, but is more than one day old":[null,""],"Service data was found, but is more than three days old":[null,""],"Service data found, but may be out of date":[null,""],"No service data available":[null,""],"Jetpack":[null,""],"Jetpack %s is connected and working correctly":[null,""],"This is a Jetpack staging site":[null,""],"Jetpack is not connected to WordPress.com. Make sure the Jetpack plugin is installed, activated, and connected.":[null,""],"Jetpack %1$s or higher is required (You are running %2$s)":[null,""],"Please install and activate the Jetpack plugin, version %s or higher":[null,""],"WooCommerce":[null,""],"WooCommerce %s is configured correctly":[null,""],"Please set Base Location in WooCommerce Settings > General":[null,""],"WooCommerce %1$s or higher is required (You are running %2$s)":[null,""],"Dismiss this notice":[null,""],"ERROR: Your site has a problem connecting to the WooCommerce Shipping & Tax API. Please make sure your Jetpack connection is working.":[null,""],"Your site is succesfully communicating to the WooCommerce Shipping & Tax API.":[null,""],"This will test your WooCommerce Shipping & Tax connection to ensure everything is working correctly":[null,""],"Test Connection":[null,""],"The WooCommerce Shipping & Tax brandname\u0004WooCommerce Shipping & Tax":[null,""],"The WooCommerce Shipping & Tax brandname\u0004WooCommerce Shipping":[null,""],"%s - ZIP/Postal code checkout field label\u0004Invalid %s entered.":[null,""],"%s - ZIP/Postal code checkout field label\u0004%s does not match the selected state.":[null,""],"date is of the form MM/YY\u0004Expires %(date)s":[null,""],"A service with an unknown title and unknown method_title\u0004Unknown":[null,""],"This section displays the overall health of WooCommerce Shipping & Tax and the things it depends on\u0004Health":[null,""]}
1
+ {"0":[null,""],"":{"po-revision-date":"2020-04-16 12:34:16+0000","mime-version":"1.0","content-type":"text/plain; charset=UTF-8","content-transfer-encoding":"8bit","plural-forms":"nplurals=2; plural=n > 1;","x-generator":"GlotPress/3.0.0-alpha.2","language":"pt_BR","project-id-version":"Plugins - WooCommerce Shipping &amp; Tax - Stable (latest release)"},"Features":[null,""],"Carrier":[null,""],"Express delivery from the experts in international shipping":[null,""],"Live rates for %(carrierName)s at checkout":[null,""],"Ship with the largest delivery network in the United States":[null,""],"Discounted %(carrierName)s shipping labels":[null,""],"To be displayed at checkout, this carrier must be added as a shipping method to selected shipping zones":[null,""],"Add to shipping zones":[null,""],"Show live rates directly on your store - never under or overcharge for shipping again":[null,""],"Live rates at checkout":[null,""],"Last updated %s.":[null,""],"At least one of the new predefined packages has the same name as existing packages.":[null,""],"The new predefined package names are not unique.":[null,""],"At least one of the new custom packages has the same name as existing packages.":[null,""],"The new custom package names are not unique.":[null,""],"Go to shipping zones":[null,""],"Add DHL Express as a shipping method to selected shipping zones to display live rates at checkout.":[null,""],"DHL Express live rates are now available":[null,""],"State %1$s is invalid for %2$s.":[null,""],"%1$s %2$s is invalid for %3$s.":[null,""],"A %1$s is required for %2$s.":[null,""],"A country is required":[null,""],"Your store is over the limit for rate calls this month and your account will be charged for overages. To prevent future overage charges you can upgrade your plan.":[null,""],"There was an error trying to activate your subscription.":[null,""],"Your subscription was succesfully activated.":[null,""],"Manage":[null,""],"Usage":[null,""],"View and manage your subscription usage":[null,""],"Shipping method":[null,""],"The subscription is already active.":[null,""],"Set up your own carrier account to compare rates and print labels from multiple carriers in WooCommerce Shipping. Learn more about adding {{a}}carrier accounts{{/a}}.":[null,""],"There was an error connecting to your %(carrierName)s account. Please check that all of the information entered matches your %(carrierName)s account and try to connect again.":[null,""],"Your carrier account was connected successfully.":[null,""],"The date must be a valid date in the format YYYY-MM-DD":[null,""],"The invoice number needs to be 9 or 13 letters and digits in length":[null,""],"The company website format is not valid":[null,""],"The email format is not valid":[null,""],"The ZIP/Postal code needs to be 5 digits in length":[null,""],"The phone number needs to be 10 digits in length":[null,""],"The UPS account number needs to be 6 letters and digits in length":[null,""],"This will remove the connection with %(carrier_name)s. All of your %(carrier_name)s account information will be deleted and you won\\u2019t see %(carrier_name)s rates.":[null,""],"Disconnect your %(carrier_name)s account":[null,""],"There was an error trying to disconnect your carrier account":[null,""],"Your carrier account was disconnected succesfully.":[null,""],"DHL Express":[null,""],"Powered by WooCommerce Tax. If automated taxes are enabled, you'll need to enter prices exclusive of tax.":[null,""],"WooCommerce Helper auth is missing":[null,""],"USPS labels without tracking are not eligible for refund.":[null,""],"General Information":[null,""],"Connect your %(carrierName)s account":[null,""],"%(carrierName)s not supported.":[null,""],"Loading":[null,""],"WooCommerce Shipping & Tax Data":[null,""],"Print customs form":[null,""],"Test your WooCommerce Shipping & Tax connection":[null,""],"WooCommerce Shipping & Tax Status":[null,""],"Connect your store to activate WooCommerce Shipping & Tax":[null,""],"Connect Jetpack to activate WooCommerce Shipping & Tax":[null,""],"WooCommerce Shipping now supports DHL labels for international shipments. Purchase and print discounted labels from DHL and USPS right here.":[null,""],"Discounted DHL Shipping Labels":[null,""],"WooCommerce Shipping":[null,""],"Invalid WooCommerce Shipping & Tax service slug provided":[null,""],"WooCommerce Shipping & Tax":[null,""],"ZIP/Postal code":[null,""],"This action will delete any information entered on the form.":[null,""],"Cancel connection":[null,""],"Ok":[null,""],"UPS invoice control id":[null,""],"UPS invoice currency":[null,""],"UPS invoice amount":[null,""],"UPS invoice date":[null,""],"UPS invoice number":[null,""],"I have been issued an invoice from UPS within the past 90 days":[null,""],"UPS account information":[null,""],"Company website":[null,""],"Job title":[null,""],"Company name":[null,""],"This is the company info you used to create your UPS account":[null,""],"Company information":[null,""],"Email":[null,""],"Address 2 (optional)":[null,""],"Account number":[null,""],"This is the account number and address from your UPS profile":[null,""],"General information":[null,""],"If you need a UPS account number, go to {{a}}UPS.com{{/a}} to create a new account.":[null,""],"Set up your own UPS carrier account to compare rates and print labels from multiple carriers in WooCommerce Shipping. Learn more about adding {{a}}carrier accounts{{/a}}.":[null,""],"Connect your UPS account":[null,""],"Set up your own carrier account by adding your credentials here":[null,""],"Carrier account":[null,""],"Credentials":[null,""],"Adult signature required":[null,""],"Signature required":[null,""],"Other\\u2026":[null,""],"Select one\\u2026":[null,""],"Validating address\\u2026":[null,""],"Purchasing\\u2026":[null,""],"Your UPS account will be charged":[null,""],"Package %(index)s \\u2013 %(title)s":[null,""],"Saving\\u2026":[null,""],"Your tax rates and settings will be automatically configured for %1$s. <a href=\"https://docs.woocommerce.com/document/setting-up-taxes-in-woocommerce/#section-12\">Learn more about setting up tax rates for additional nexuses</a>":[null,""],"Your tax rates and settings will be automatically configured for %1$s, %2$s. <a href=\"https://docs.woocommerce.com/document/setting-up-taxes-in-woocommerce/#section-12\">Learn more about setting up tax rates for additional nexuses</a>":[null,""],"%(itemCount)d item is ready to be fulfilled":["%(itemCount)d items are ready to be fulfilled","",""],"%(itemCount)d item was fulfilled on {{span}}%(createdDate)s{{/span}}":["%(itemCount)d items were fulfilled on {{span}}%(createdDate)s{{/span}}","",""],"Schedule a pickup":[null,""],"Label images older than 180 days are deleted by our technology partners for general security and data privacy concerns.":[null,""],"Labels older than 30 days cannot be refunded.":[null,""],"Mark this order as complete and notify the customer":[null,""],"Notify the customer with shipment details":[null,""],"You save %s with WooCommerce Shipping":[null,""],"WooCommerce Shipping & Tax requires the WooCommerce plugin to be installed and active. You can download %s here.":[null,""],"No tracking information available at this time":[null,""],"Connection error: unable to create label at this time":[null,""],"Track Package":["Track Packages","",""],"Which package would you like to track?":[null,""],"%(service)s label (#%(labelIndex)d)":[null,""],"To print this shipping label, {{a}}add a credit card to your account{{/a}}.":[null,""],"Add credit card":[null,""],"To print this shipping label, {{a}}choose a credit card to add to your account{{/a}}.":[null,""],"Choose credit card":[null,""],"Buy shipping label":["Buy shipping labels","",""],"shipping label ready":["shipping labels ready","",""],"Shipping from":[null,""],"Shipping summary":[null,""],"Customer paid a {{shippingMethod/}} of {{shippingCost/}} for shipping":[null,""],"Shipping rates":[null,""],"HS Tariff number":[null,""],"Submit":[null,""],"Total Weight (with package)":[null,""],"QTY":[null,""],"Weight":[null,""],"Items to fulfill":[null,""],"Select a package type":[null,""],"Package details":[null,""],"Your shipping packages have been saved.":[null,""],"0.0":[null,""],"Shipment Tracking":[null,""],"Customs information valid":[null,""],"Customs information incomplete":[null,""],"Packing Log:":[null,""],"Chosen Rate:":[null,""],"Shipping Method ID:":[null,""],"Shipping Method Name:":[null,""],"Shipping Debug":[null,""],"<strong>\"%2$s\" is missing weight, length, width, or height.</strong><br />Shipping rates cannot be calculated. <a href=\"%1$s\">Enter dimensions and weight for %2$s</a> so your customers can purchase this item.":[null,""],"Unable to send request to WooCommerce Shipping & Tax server. The timestamp generated for the signature is too old.":[null,""],"Unable to send request to WooCommerce Shipping & Tax server. Jetpack Token is malformed.":[null,""],"Unable to send request to WooCommerce Shipping & Tax server. Jetpack Token is missing":[null,""],"Error: The WooCommerce Shipping & Tax server returned: %1$s %2$s ( %3$d )":[null,""],"Error: The WooCommerce Shipping & Tax server returned ( %d ) and an empty response body.":[null,""],"Error: The WooCommerce Shipping & Tax server returned HTTP code: %d":[null,""],"Unable to encode body for request to WooCommerce Shipping & Tax server.":[null,""],"Unable to send request to WooCommerce Shipping & Tax server. Body must be an array.":[null,""],"Unable to send request to WooCommerce Shipping & Tax server. Jetpack connection does not implement get_access_token.":[null,""],"Unable to send request to WooCommerce Shipping & Tax server. Jetpack_Data was not found.":[null,""],"No shipping rate could be calculated. No items in the package are shippable.":[null,""],"Product ( ID: %d ) is missing a dimension value. Shipping rates cannot be calculated.":[null,""],"Product ( ID: %d ) did not include a weight. Shipping rates cannot be calculated.":[null,""],"Packing log:":[null,""],"Received rate: %1$s (%2$s)":[null,""],"Your customer selected {{shippingMethod/}}":[null,""],"Total rate: %(total)s":[null,""],"%(serviceName)s: %(rate)s":[null,""],"No rates found":[null,""],"WooCommerce Shipping gives you access to USPS Commercial Pricing, which is discounted over Retail rates.":[null,""],"more info":[null,""],"ITN":[null,""],"Sanitary / Phytosanitary inspection":[null,""],"Quarantine":[null,""],"None":[null,""],"Restriction type":[null,""],"Details":[null,""],"Sample":[null,""],"Gift":[null,""],"Documents":[null,""],"Merchandise":[null,""],"Contents type":[null,""],"Return to sender if package is unable to be delivered":[null,""],"Value (per unit)":[null,""],"Weight (per unit)":[null,""],"Save customs form":[null,""],"Customs":[null,""],"Use address as entered":[null,""],"View on Google Maps":[null,""],"Verify with USPS":[null,""],"Automatic verification failed for this address. It may still be a valid address \\u2014 use the tools below to manually verify.":[null,""],"We were unable to automatically verify the address.":[null,""],"We were unable to automatically verify the address \\u2014 %(error)s.":[null,""],"You've edited the address, please revalidate it for accurate rates":[null,""],"Verify address":[null,""],"%(message)s. Please modify the address and try again.":[null,""],"View details":[null,""],"Items":[null,""],"Package":[null,""],"Receipt":[null,""],"Label #%(labelIndex)s details":[null,""],"{{icon/}} Delete this package":[null,""],"Done":[null,""],"Add boxes, envelopes, and other packages you use most frequently":[null,""],"Remove":[null,""],"Edit":[null,""],"Weight of empty package":[null,""],"Unique package name":[null,""],"Envelope":[null,""],"Box":[null,""],"This field is required.":[null,""],"Payment":[null,""],"Email the label purchase receipts to %(ownerName)s (%(ownerLogin)s) at %(ownerEmail)s":[null,""],"Email Receipts":[null,""],"To purchase shipping labels, choose a credit card you have on file or add a new card.":[null,""],"Choose a different card":[null,""],"To purchase shipping labels, add a credit card.":[null,""],"We'll charge the credit card on your account (%(card)s) to pay for the labels you print":[null,""],"Credit cards are retrieved from the following WordPress.com account: %(wpcomLogin)s <%(wpcomEmail)s>":[null,""],"Only the site owner can change these settings. Please contact %(ownerName)s (%(ownerLogin)s) to change the shipping label settings.":[null,""],"Only the site owner can manage shipping label payment methods. Please contact %(ownerName)s (%(ownerLogin)s) to manage payment methods.":[null,""],"%(card)s ****%(digits)s":[null,""],"Print shipping labels yourself and save a trip to the post office":[null,""],"H":[null,""],"W":[null,""],"L":[null,""],"Disconnect":[null,""],"Activate":[null,""],"No activity yet":[null,""],"Note":[null,""],"Refunded %(amount)s":[null,""],"%(service)s label (#%(labelNum)d) refund rejected":[null,""],"%(service)s label (#%(labelNum)d) refunded (%(amount)s)":[null,""],"%(service)s label (#%(labelNum)d) refund requested (%(amount)s)":[null,""],"Note sent to customer":[null,""],"Internal note":[null,""],"Show notes from %(date)s":[null,""],"%(count)s event":["%(count)s events","",""],"WeChat Pay":[null,""],"Toggle menu":[null,""],"Return to Order #%(orderId)s":[null,""],"Our team is here for you. View our {{docsA}}support docs{{/docsA}} or {{ticketA}}open a support ticket{{/ticketA}}.":[null,""],"Logging":[null,""],"No services configured. {{a}}Add a shipping service{{/a}}":[null,""],"Edit service settings":[null,""],"Request was made %s - check logs below or {{a}}edit service settings{{/a}}":[null,""],"Copy for support":[null,""],"Last %s entry. {{a}}Show full log{{/a}}":["Last %s entries. {{a}}Show full log{{/a}}","",""],"Log tail copied to clipboard":[null,""],"You have unsaved changes. Are you sure you want to leave this page?":[null,""],"Value ($ per unit)":[null,""],"Weight (%s per unit)":[null,""],"Description":[null,""],"Country where the product was manufactured or assembled":[null,""],"Origin country":[null,""],"USPS":[null,""],"Optional":[null,""],"Retry":[null,""],"shipping label printing":[null,""],"shipping label printing and smoother payment setup":[null,""],"automated tax calculation and shipping label printing":[null,""],"automated tax calculation, shipping label printing, and smoother payment setup":[null,""],"Data resource description.":[null,""],"Data resource ID.":[null,""],"List of supported currencies.":[null,""],"List of supported states in a given country.":[null,""],"List of supported continents, countries, and states.":[null,""],"Sorry, you cannot view this resource.":[null,""],"Sorry, you cannot list resources.":[null,""],"The unit weights are defined in for this country.":[null,""],"Thousands separator for displayed prices in this country.":[null,""],"Full name of state.":[null,""],"State code.":[null,""],"List of states in this country.":[null,""],"Number of decimal points shown in displayed prices for this country.":[null,""],"Full name of country.":[null,""],"The unit lengths are defined in for this country.":[null,""],"Decimal separator for displayed prices for this country.":[null,""],"Currency symbol position for this country.":[null,""],"Default ISO4127 alpha-3 currency code for the country.":[null,""],"ISO3166 alpha-2 country code.":[null,""],"List of countries on this continent.":[null,""],"Full name of continent.":[null,""],"There are no locations matching these parameters.":[null,""],"2 character continent code.":[null,""],"Shipping label tracking number":[null,""],"Shipping label service":[null,""],"Warning: Erasing personal data will cause the ability to reprint or refund WooCommerce Shipping & Tax shipping labels to be lost on the affected orders.":[null,""],"By using this extension, you may be storing personal data or sharing data with external services. <a href=\"%s\" target=\"_blank\">Learn more about how this works, including what you may want to include in your privacy policy.</a>":[null,""],"There was a problem updating your saved credit cards.":[null,""],"No labels found for this period":[null,""],"Total":[null,""],"Refund":[null,""],"Price":[null,""],"Order":[null,""],"Time":[null,""],"Requested":[null,""],"Last 7 days":[null,""],"This month":[null,""],"Last month":[null,""],"Year":[null,""],"Export CSV":[null,""],"Other Log":[null,""],"Taxes Log":[null,""],"Shipping Log":[null,""],"Display troubleshooting information on the Cart and Checkout pages.":[null,""],"Write diagnostic messages to log files. Helpful when contacting support.":[null,""],"Enter your email address at which to accept payments. You'll need to link your own account in order to perform anything other than \"sale\" transactions.":[null,""],"Payment Email":[null,""],"To authenticate payments with WooCommerce Shipping & Tax, <a href=\"%s\">click here</a>.":[null,""],"Payments will be authenticated by WooCommerce Shipping & Tax and directed to the following email address. To disable this feature and link a PayPal account, <a href=\"%s\">click here</a>.":[null,""],"%s (Note that \"authorizing payment only\" requires linking a PayPal account.)":[null,""],"Link account":[null,""],"Link a new or existing PayPal account to make sure future orders are marked “Processing” instead of “On hold”, and so refunds can be issued without leaving WooCommerce.":[null,""],"Link your PayPal account":[null,""],"To issue refunds via PayPal Checkout, you will need to <a href=\"%s\">link a PayPal account</a> with the email address that received this payment.":[null,""],"Link a PayPal account":[null,""],"Refresh":[null,""],"Tracking number":[null,""],"Provider":[null,""],"WooCommerce Shipping & Tax is almost ready to go! Once you connect Jetpack you'll have access to %s.":[null,""],"Hosted services for WooCommerce: automated tax calculation, shipping label printing, and smoother payment setup.":[null,""],"Tax Class":[null,""],"Shipping":[null,""],"Compound":[null,""],"Priority":[null,""],"Tax Name":[null,""],"Rate %":[null,""],"ZIP/Postcode":[null,""],"State Code":[null,""],"Country Code":[null,""],"Enable automated taxes":[null,"Ativar taxas automatizadas"],"Disable automated taxes":[null,"Desativar taxas automatizadas"],"Automated taxes":[null,""],"By clicking \"%1$s\", you agree to the <a href=\"%2$s\">Terms of Service</a> and to <a href=\"%3$s\">share certain data and settings</a> with WordPress.com and/or third parties.":[null,""],"Setup complete.":[null,""],"You can now enjoy %s.":[null,""],"WooCommerce Shipping & Tax is almost ready to go! Once you connect your store you'll have access to %s.":[null,""],"automated tax calculation":[null,""],"smoother payment setup":[null,""],"automated tax calculation and smoother payment setup":[null,""],"Required":[null,""],"Your shipping settings have been saved.":[null,""],"Unable to save your shipping settings. Please try again.":[null,""],"Dimensions":[null,""],"Close":[null,""],"Packages to be Shipped":[null,""],"Add to a New Package":[null,""],"Add items":[null,""],"Individually Shipped Item":[null,""],"Item Dimensions":[null,""],"Please select a package":[null,""],"Service schemas were not loaded":[null,""],"Bad request":[null,""],"Order not found":[null,""],"Got it, thanks!":[null,""],"Activate Jetpack and connect":[null,""],"Install Jetpack and connect":[null,""],"Something went wrong. Please try connecting to Jetpack manually, or contact support on the WordPress.org forums.":[null,""],"Connecting...":[null,""],"Activating...":[null,""],"When you're ready, purchase and print discounted labels from %s right here.":[null,""],"Discounted Shipping Labels":[null,""],"American Express":[null,""],"Discover":[null,""],"MasterCard":[null,""],"VISA":[null,""],"PayPal":[null,""],"Add another credit card":[null,""],"%(selectedCount)d package selected":["%(selectedCount)d packages selected","",""],"Unable to get your settings. Please refresh the page to try again.":[null,""],"%(numSelected)d service selected":["%(numSelected)d services selected","",""],"Add and edit saved packages using the {{a}}Packaging Manager{{/a}}.":[null,""],"Tracking #: {{trackingLink/}}":[null,""],"%(item)s from {{pckg/}}":[null,""],"Which items would you like to add to {{pckg/}}?":[null,""],"1 item in 1 package: %(weight)s %(unit)s total":[null,""],"%(itemsCount)d items in 1 package: %(weight)s %(unit)s total":[null,""],"%(itemsCount)d items in %(packageCount)d packages: %(weight)s %(unit)s total":[null,""],"{{itemLink/}} is currently saved for a later shipment.":[null,""],"{{itemLink/}} is currently shipped in its original packaging.":[null,""],"{{itemLink/}} is currently in {{pckg/}}.":[null,""],"Choose rate: %(pckg)s":[null,""],"Refund label (-%(amount)s)":[null,""],"Where would you like to move it?":[null,""],"Unsaved changes made to packages":[null,""],"There are no items in this package.":[null,""],"Ship in original packaging":[null,""],"Request refund":[null,""],"Reprint":[null,""],"Paper size":[null,""],"No packages selected":[null,""],"Move":[null,""],"Move item":[null,""],"Increase the rates calculated by the carrier to account for packaging and handling costs. You can also add a negative amount to save your customers money.":[null,""],"Create new label":[null,""],"All packages selected":[null,""],"Add":[null,""],"Add item":[null,""],"Add a credit card":[null,""],"#%d - [Deleted product]":[null,""],"#%1$d - %2$s":[null,""],"<a href=\"%s\">Support</a>":[null,""],"There was an error installing Jetpack. Please try installing it manually.":[null,""],"Shipping Labels":[null,""],"https://woocommerce.com/":[null,""],"Phone":[null,""],"Connect":[null,""],"Save Settings":[null,""],"Your changes have been saved.":[null,""],"There was a problem with one or more entries. Please fix the errors below and try saving again.":[null,""],"Expand":[null,""],"Dismiss":[null,""],"You have unsaved changes.":[null,""],"Type of package":[null,""],"Add package":["Add packages","",""],"Invalid value.":[null,""],"This field is required":[null,""],"Package name":[null,""],"This field must be unique":[null,""],"Unable to save your shipping packages. Please try again.":[null,""],"Save changes":[null,""],"Untitled":[null,""],"Dimensions (L x W x H)":[null,""],"All services selected":[null,""],"Expand Services":[null,""],"Service":[null,""],"Price adjustment":[null,""],"Saved Packages":[null,""],"Tracking":[null,""],"Create shipping label":["Create shipping labels","",""],"Name":[null,""],"Company":[null,""],"Address":[null,""],"City":[null,""],"State":[null,""],"Country":[null,""],"Invalid address":[null,""],"Origin address":[null,""],"Destination address":[null,""],"We have slightly modified the address entered. If correct, please use the suggested address to ensure accurate delivery.":[null,""],"Address entered":[null,""],"Edit address":[null,""],"Suggested address":[null,""],"Use selected address":[null,""],"Use these packages":[null,""],"The service and rate chosen by the customer at checkout is not available. Please choose another.":[null,""],"Request a refund":[null,""],"You can request a refund for a shipping label that has not been used to ship a package. It will take at least %(days)s days to process.":[null,""],"Purchase date":[null,""],"Amount eligible for refund":[null,""],"Reprint shipping label":[null,""],"If there was a printing error when you purchased the label, you can print it again.":[null,""],"NOTE: If you already used the label in a package, printing and using it again is a violation of our terms of service and may result in criminal charges.":[null,""],"Print":[null,""],"Cancel":[null,""],"N/A":[null,""],"More":[null,""],"Invalid PDF request.":[null,""],"Unknown package":[null,""],"Individual packaging":[null,""],"Unable to update service settings. Validation failed. %s":[null,""],"Unable to update service settings. The form data could not be read.":[null,""],"Unable to update service settings. Form data is missing service ID.":[null,""],"Unable to update settings. The form data could not be read.":[null,""],"Unable to update settings. %s":[null,""],"Packaging":[null,""],"Section not loading? Visit the <a href=\"%s\">status page</a> for troubleshooting steps.":[null,""],"Note: Jetpack development mode is enabled on this site. This site will not be able to obtain payment methods from WooCommerce Shipping & Tax production servers.":[null,""],"Note: Jetpack is connected, but development mode is also enabled on this site. Please disable development mode.":[null,""],"Shipping Label":[null,""],"yd":[null,""],"in":[null,""],"mm":[null,""],"cm":[null,""],"m":[null,""],"oz":[null,""],"lbs":[null,""],"g":[null,""],"kg":[null,""],"An invalid service ID was received.":[null,""],"An invalid service instance was received.":[null,""],"Rest of the World":[null,""],"Support":[null,""],"Debug":[null,""],"Services":[null,""],"Need help?":[null,""],"Log is empty":[null,""],"Disabled":[null,""],"Enabled":[null,"Ativado"],"%s Shipping Zone":[null,""],"The most recent rate request failed":[null,""],"The most recent rate request was successful":[null,""],"No rate requests have yet been made for this service":[null,""],"Setup for this service has not yet been completed":[null,""],"Service data is up-to-date":[null,""],"Service data was found, but is more than one day old":[null,""],"Service data was found, but is more than three days old":[null,""],"Service data found, but may be out of date":[null,""],"No service data available":[null,""],"Jetpack":[null,""],"Jetpack %s is connected and working correctly":[null,""],"This is a Jetpack staging site":[null,""],"Jetpack is not connected to WordPress.com. Make sure the Jetpack plugin is installed, activated, and connected.":[null,""],"Jetpack %1$s or higher is required (You are running %2$s)":[null,""],"Please install and activate the Jetpack plugin, version %s or higher":[null,""],"WooCommerce":[null,""],"WooCommerce %s is configured correctly":[null,""],"Please set Base Location in WooCommerce Settings > General":[null,""],"WooCommerce %1$s or higher is required (You are running %2$s)":[null,""],"Dismiss this notice":[null,""],"ERROR: Your site has a problem connecting to the WooCommerce Shipping & Tax API. Please make sure your Jetpack connection is working.":[null,""],"Your site is succesfully communicating to the WooCommerce Shipping & Tax API.":[null,""],"This will test your WooCommerce Shipping & Tax connection to ensure everything is working correctly":[null,""],"Test Connection":[null,""],"The WooCommerce Shipping & Tax brandname\u0004WooCommerce Shipping & Tax":[null,""],"The WooCommerce Shipping & Tax brandname\u0004WooCommerce Shipping":[null,""],"%s - ZIP/Postal code checkout field label\u0004Invalid %s entered.":[null,""],"%s - ZIP/Postal code checkout field label\u0004%s does not match the selected state.":[null,""],"date is of the form MM/YY\u0004Expires %(date)s":[null,""],"A service with an unknown title and unknown method_title\u0004Unknown":[null,""],"This section displays the overall health of WooCommerce Shipping & Tax and the things it depends on\u0004Health":[null,""]}
i18n/languages/woocommerce-services-pt_BR.po CHANGED
@@ -51,7 +51,7 @@ msgstr ""
51
  msgid "Live rates at checkout"
52
  msgstr ""
53
 
54
- #: i18n/strings.php:354
55
  msgid "Last updated %s."
56
  msgstr ""
57
 
@@ -206,7 +206,7 @@ msgstr ""
206
  msgid "WooCommerce Helper auth is missing"
207
  msgstr ""
208
 
209
- #: i18n/strings.php:364 i18n/strings.php:428
210
  msgid "USPS labels without tracking are not eligible for refund."
211
  msgstr ""
212
 
@@ -226,11 +226,11 @@ msgstr ""
226
  msgid "Loading"
227
  msgstr ""
228
 
229
- #: i18n/strings.php:353
230
  msgid "WooCommerce Shipping & Tax Data"
231
  msgstr ""
232
 
233
- #: i18n/strings.php:372 i18n/strings.php:436
234
  msgid "Print customs form"
235
  msgstr ""
236
 
@@ -277,8 +277,8 @@ msgid "Invalid WooCommerce Shipping & Tax service slug provided"
277
  msgstr ""
278
 
279
  #. Plugin Name of the plugin
280
- #: classes/class-wc-connect-privacy.php:36
281
  #: classes/class-wc-connect-settings-pages.php:123
 
282
  msgid "WooCommerce Shipping & Tax"
283
  msgstr ""
284
 
@@ -411,7 +411,7 @@ msgstr ""
411
  msgid "Validating address\\u2026"
412
  msgstr ""
413
 
414
- #: i18n/strings.php:326 i18n/strings.php:405 i18n/strings.php:469
415
  msgid "Purchasing\\u2026"
416
  msgstr ""
417
 
@@ -423,7 +423,7 @@ msgstr ""
423
  msgid "Package %(index)s \\u2013 %(title)s"
424
  msgstr ""
425
 
426
- #: i18n/strings.php:6 i18n/strings.php:170 i18n/strings.php:482
427
  msgid "Saving\\u2026"
428
  msgstr ""
429
 
@@ -437,27 +437,27 @@ msgstr ""
437
  msgid "Your tax rates and settings will be automatically configured for %1$s, %2$s. <a href=\"https://docs.woocommerce.com/document/setting-up-taxes-in-woocommerce/#section-12\">Learn more about setting up tax rates for additional nexuses</a>"
438
  msgstr ""
439
 
440
- #: i18n/strings.php:480
441
  msgid "%(itemCount)d item is ready to be fulfilled"
442
  msgid_plural "%(itemCount)d items are ready to be fulfilled"
443
  msgstr[0] ""
444
  msgstr[1] ""
445
 
446
- #: i18n/strings.php:479
447
  msgid "%(itemCount)d item was fulfilled on {{span}}%(createdDate)s{{/span}}"
448
  msgid_plural "%(itemCount)d items were fulfilled on {{span}}%(createdDate)s{{/span}}"
449
  msgstr[0] ""
450
  msgstr[1] ""
451
 
452
- #: i18n/strings.php:371 i18n/strings.php:435
453
  msgid "Schedule a pickup"
454
  msgstr ""
455
 
456
- #: i18n/strings.php:367 i18n/strings.php:431
457
  msgid "Label images older than 180 days are deleted by our technology partners for general security and data privacy concerns."
458
  msgstr ""
459
 
460
- #: i18n/strings.php:363 i18n/strings.php:427
461
  msgid "Labels older than 30 days cannot be refunded."
462
  msgstr ""
463
 
@@ -478,26 +478,26 @@ msgstr ""
478
  msgid "WooCommerce Shipping & Tax requires the WooCommerce plugin to be installed and active. You can download %s here."
479
  msgstr ""
480
 
481
- #: i18n/strings.php:408
482
  msgid "No tracking information available at this time"
483
  msgstr ""
484
 
485
- #: i18n/strings.php:478
486
  msgid "Connection error: unable to create label at this time"
487
  msgstr ""
488
 
489
- #: i18n/strings.php:474 i18n/strings.php:476
490
  msgid "Track Package"
491
  msgid_plural "Track Packages"
492
  msgstr[0] ""
493
  msgstr[1] ""
494
 
495
- #: i18n/strings.php:426
496
  msgid "Which package would you like to track?"
497
  msgstr ""
498
 
499
- #: i18n/strings.php:373 i18n/strings.php:404 i18n/strings.php:437
500
- #: i18n/strings.php:468
501
  msgid "%(service)s label (#%(labelIndex)d)"
502
  msgstr ""
503
 
@@ -585,7 +585,7 @@ msgstr ""
585
  msgid "0.0"
586
  msgstr ""
587
 
588
- #: woocommerce-services.php:1449
589
  msgid "Shipment Tracking"
590
  msgstr ""
591
 
@@ -597,23 +597,23 @@ msgstr ""
597
  msgid "Customs information incomplete"
598
  msgstr ""
599
 
600
- #: woocommerce-services.php:1492
601
  msgid "Packing Log:"
602
  msgstr ""
603
 
604
- #: woocommerce-services.php:1479
605
  msgid "Chosen Rate:"
606
  msgstr ""
607
 
608
- #: woocommerce-services.php:1475
609
  msgid "Shipping Method ID:"
610
  msgstr ""
611
 
612
- #: woocommerce-services.php:1471
613
  msgid "Shipping Method Name:"
614
  msgstr ""
615
 
616
- #: woocommerce-services.php:1455
617
  msgid "Shipping Debug"
618
  msgstr ""
619
 
@@ -621,15 +621,15 @@ msgstr ""
621
  msgid "<strong>\"%2$s\" is missing weight, length, width, or height.</strong><br />Shipping rates cannot be calculated. <a href=\"%1$s\">Enter dimensions and weight for %2$s</a> so your customers can purchase this item."
622
  msgstr ""
623
 
624
- #: classes/class-wc-connect-api-client.php:595
625
  msgid "Unable to send request to WooCommerce Shipping & Tax server. The timestamp generated for the signature is too old."
626
  msgstr ""
627
 
628
- #: classes/class-wc-connect-api-client.php:534
629
  msgid "Unable to send request to WooCommerce Shipping & Tax server. Jetpack Token is malformed."
630
  msgstr ""
631
 
632
- #: classes/class-wc-connect-api-client.php:527
633
  msgid "Unable to send request to WooCommerce Shipping & Tax server. Jetpack Token is missing"
634
  msgstr ""
635
 
@@ -663,7 +663,6 @@ msgid "Unable to send request to WooCommerce Shipping & Tax server. Jetpack_Data
663
  msgstr ""
664
 
665
  #: classes/class-wc-connect-api-client.php:160
666
- #: classes/class-wc-connect-api-client.php:187
667
  msgid "No shipping rate could be calculated. No items in the package are shippable."
668
  msgstr ""
669
 
@@ -812,23 +811,23 @@ msgstr ""
812
  msgid "%(message)s. Please modify the address and try again."
813
  msgstr ""
814
 
815
- #: i18n/strings.php:370 i18n/strings.php:434
816
  msgid "View details"
817
  msgstr ""
818
 
819
- #: i18n/strings.php:402 i18n/strings.php:466
820
  msgid "Items"
821
  msgstr ""
822
 
823
- #: i18n/strings.php:401 i18n/strings.php:465
824
  msgid "Package"
825
  msgstr ""
826
 
827
- #: i18n/strings.php:399 i18n/strings.php:463
828
  msgid "Receipt"
829
  msgstr ""
830
 
831
- #: i18n/strings.php:398 i18n/strings.php:462
832
  msgid "Label #%(labelIndex)s details"
833
  msgstr ""
834
 
@@ -943,43 +942,43 @@ msgstr ""
943
  msgid "Activate"
944
  msgstr ""
945
 
946
- #: i18n/strings.php:375 i18n/strings.php:439
947
  msgid "No activity yet"
948
  msgstr ""
949
 
950
- #: i18n/strings.php:383 i18n/strings.php:447
951
  msgid "Note"
952
  msgstr ""
953
 
954
- #: i18n/strings.php:382 i18n/strings.php:446
955
  msgid "Refunded %(amount)s"
956
  msgstr ""
957
 
958
- #: i18n/strings.php:380 i18n/strings.php:444
959
  msgid "%(service)s label (#%(labelNum)d) refund rejected"
960
  msgstr ""
961
 
962
- #: i18n/strings.php:379 i18n/strings.php:443
963
  msgid "%(service)s label (#%(labelNum)d) refunded (%(amount)s)"
964
  msgstr ""
965
 
966
- #: i18n/strings.php:378 i18n/strings.php:442
967
  msgid "%(service)s label (#%(labelNum)d) refund requested (%(amount)s)"
968
  msgstr ""
969
 
970
- #: i18n/strings.php:377 i18n/strings.php:441
971
  msgid "Note sent to customer"
972
  msgstr ""
973
 
974
- #: i18n/strings.php:376 i18n/strings.php:440
975
  msgid "Internal note"
976
  msgstr ""
977
 
978
- #: i18n/strings.php:407 i18n/strings.php:471
979
  msgid "Show notes from %(date)s"
980
  msgstr ""
981
 
982
- #: i18n/strings.php:406 i18n/strings.php:470
983
  msgid "%(count)s event"
984
  msgid_plural "%(count)s events"
985
  msgstr[0] ""
@@ -990,7 +989,7 @@ msgstr[1] ""
990
  msgid "WeChat Pay"
991
  msgstr ""
992
 
993
- #: i18n/strings.php:384 i18n/strings.php:448
994
  msgid "Toggle menu"
995
  msgstr ""
996
 
@@ -998,41 +997,41 @@ msgstr ""
998
  msgid "Return to Order #%(orderId)s"
999
  msgstr ""
1000
 
1001
- #: i18n/strings.php:344
1002
  msgid "Our team is here for you. View our {{docsA}}support docs{{/docsA}} or {{ticketA}}open a support ticket{{/ticketA}}."
1003
  msgstr ""
1004
 
1005
- #: i18n/strings.php:335
1006
  msgid "Logging"
1007
  msgstr ""
1008
 
1009
- #: i18n/strings.php:362
1010
  msgid "No services configured. {{a}}Add a shipping service{{/a}}"
1011
  msgstr ""
1012
 
1013
- #: i18n/strings.php:360
1014
  msgid "Edit service settings"
1015
  msgstr ""
1016
 
1017
- #: i18n/strings.php:359
1018
  msgid "Request was made %s - check logs below or {{a}}edit service settings{{/a}}"
1019
  msgstr ""
1020
 
1021
- #: i18n/strings.php:358
1022
  msgid "Copy for support"
1023
  msgstr ""
1024
 
1025
- #: i18n/strings.php:357
1026
  msgid "Last %s entry. {{a}}Show full log{{/a}}"
1027
  msgid_plural "Last %s entries. {{a}}Show full log{{/a}}"
1028
  msgstr[0] ""
1029
  msgstr[1] ""
1030
 
1031
- #: i18n/strings.php:356
1032
  msgid "Log tail copied to clipboard"
1033
  msgstr ""
1034
 
1035
- #: i18n/strings.php:11 i18n/strings.php:414
1036
  msgid "You have unsaved changes. Are you sure you want to leave this page?"
1037
  msgstr ""
1038
 
@@ -1061,7 +1060,7 @@ msgid "USPS"
1061
  msgstr ""
1062
 
1063
  #: i18n/strings.php:5 i18n/strings.php:169 i18n/strings.php:295
1064
- #: i18n/strings.php:329 i18n/strings.php:410
1065
  msgid "Optional"
1066
  msgstr ""
1067
 
@@ -1216,8 +1215,8 @@ msgstr ""
1216
  msgid "Total"
1217
  msgstr ""
1218
 
1219
- #: classes/class-wc-connect-label-reports.php:170 i18n/strings.php:381
1220
- #: i18n/strings.php:445
1221
  msgid "Refund"
1222
  msgstr ""
1223
 
@@ -1257,23 +1256,23 @@ msgstr ""
1257
  msgid "Export CSV"
1258
  msgstr ""
1259
 
1260
- #: i18n/strings.php:341
1261
  msgid "Other Log"
1262
  msgstr ""
1263
 
1264
- #: i18n/strings.php:340
1265
  msgid "Taxes Log"
1266
  msgstr ""
1267
 
1268
- #: i18n/strings.php:339
1269
  msgid "Shipping Log"
1270
  msgstr ""
1271
 
1272
- #: i18n/strings.php:332
1273
  msgid "Display troubleshooting information on the Cart and Checkout pages."
1274
  msgstr ""
1275
 
1276
- #: i18n/strings.php:336
1277
  msgid "Write diagnostic messages to log files. Helpful when contacting support."
1278
  msgstr ""
1279
 
@@ -1317,15 +1316,15 @@ msgstr ""
1317
  msgid "Link a PayPal account"
1318
  msgstr ""
1319
 
1320
- #: i18n/strings.php:355
1321
  msgid "Refresh"
1322
  msgstr ""
1323
 
1324
- #: woocommerce-services.php:1230
1325
  msgid "Tracking number"
1326
  msgstr ""
1327
 
1328
- #: woocommerce-services.php:1229
1329
  msgid "Provider"
1330
  msgstr ""
1331
 
@@ -1417,7 +1416,7 @@ msgid "automated tax calculation and smoother payment setup"
1417
  msgstr ""
1418
 
1419
  #: classes/class-wc-connect-paypal-ec.php:323 i18n/strings.php:4
1420
- #: i18n/strings.php:168 i18n/strings.php:328 i18n/strings.php:409
1421
  msgid "Required"
1422
  msgstr ""
1423
 
@@ -1433,7 +1432,7 @@ msgstr ""
1433
  msgid "Dimensions"
1434
  msgstr ""
1435
 
1436
- #: i18n/strings.php:270 i18n/strings.php:397 i18n/strings.php:461
1437
  msgid "Close"
1438
  msgstr ""
1439
 
@@ -1544,17 +1543,17 @@ msgstr[1] ""
1544
  msgid "Unable to get your settings. Please refresh the page to try again."
1545
  msgstr ""
1546
 
1547
- #: i18n/strings.php:421
1548
  msgid "%(numSelected)d service selected"
1549
  msgid_plural "%(numSelected)d services selected"
1550
  msgstr[0] ""
1551
  msgstr[1] ""
1552
 
1553
- #: i18n/strings.php:419
1554
  msgid "Add and edit saved packages using the {{a}}Packaging Manager{{/a}}."
1555
  msgstr ""
1556
 
1557
- #: i18n/strings.php:374 i18n/strings.php:438
1558
  msgid "Tracking #: {{trackingLink/}}"
1559
  msgstr ""
1560
 
@@ -1594,7 +1593,7 @@ msgstr ""
1594
  msgid "Choose rate: %(pckg)s"
1595
  msgstr ""
1596
 
1597
- #: i18n/strings.php:386 i18n/strings.php:450
1598
  msgid "Refund label (-%(amount)s)"
1599
  msgstr ""
1600
 
@@ -1614,17 +1613,17 @@ msgstr ""
1614
  msgid "Ship in original packaging"
1615
  msgstr ""
1616
 
1617
- #: i18n/strings.php:365 i18n/strings.php:366 i18n/strings.php:429
1618
- #: i18n/strings.php:430
1619
  msgid "Request refund"
1620
  msgstr ""
1621
 
1622
- #: i18n/strings.php:368 i18n/strings.php:432
1623
  msgid "Reprint"
1624
  msgstr ""
1625
 
1626
- #: i18n/strings.php:58 i18n/strings.php:309 i18n/strings.php:396
1627
- #: i18n/strings.php:460
1628
  msgid "Paper size"
1629
  msgstr ""
1630
 
@@ -1640,11 +1639,11 @@ msgstr ""
1640
  msgid "Move item"
1641
  msgstr ""
1642
 
1643
- #: i18n/strings.php:425
1644
  msgid "Increase the rates calculated by the carrier to account for packaging and handling costs. You can also add a negative amount to save your customers money."
1645
  msgstr ""
1646
 
1647
- #: i18n/strings.php:475
1648
  msgid "Create new label"
1649
  msgstr ""
1650
 
@@ -1665,19 +1664,19 @@ msgid "Add a credit card"
1665
  msgstr ""
1666
 
1667
  #. translators: %d: Deleted Product ID
1668
- #: classes/class-wc-connect-compatibility-wc30.php:130
1669
  #: classes/class-wc-connect-compatibility-wc26.php:116
 
1670
  msgid "#%d - [Deleted product]"
1671
  msgstr ""
1672
 
1673
  #. translators: %1$d: Product ID, %2$s: Product Name
1674
- #: classes/class-wc-connect-compatibility-wc30.php:125
1675
  #: classes/class-wc-connect-compatibility-wc26.php:111
 
1676
  msgid "#%1$d - %2$s"
1677
  msgstr ""
1678
 
1679
  #. translators: %s Support url
1680
- #: woocommerce-services.php:1565
1681
  msgid "<a href=\"%s\">Support</a>"
1682
  msgstr ""
1683
 
@@ -1685,22 +1684,18 @@ msgstr ""
1685
  msgid "There was an error installing Jetpack. Please try installing it manually."
1686
  msgstr ""
1687
 
1688
- #: woocommerce-services.php:1066 woocommerce-services.php:1069
1689
- #: i18n/strings.php:43
1690
  msgid "Shipping Labels"
1691
  msgstr ""
1692
 
1693
- #. Author of the plugin
1694
- msgid "Automattic"
1695
- msgstr ""
1696
-
1697
  #. Plugin URI of the plugin
1698
  #. Author URI of the plugin
1699
  msgid "https://woocommerce.com/"
1700
  msgstr ""
1701
 
1702
- #: woocommerce-services.php:1515 woocommerce-services.php:1543
1703
- #: i18n/strings.php:143 i18n/strings.php:215
1704
  msgid "Phone"
1705
  msgstr ""
1706
 
@@ -1709,15 +1704,15 @@ msgstr ""
1709
  msgid "Connect"
1710
  msgstr ""
1711
 
1712
- #: i18n/strings.php:7 i18n/strings.php:171 i18n/strings.php:483
1713
  msgid "Save Settings"
1714
  msgstr ""
1715
 
1716
- #: i18n/strings.php:415
1717
  msgid "Your changes have been saved."
1718
  msgstr ""
1719
 
1720
- #: i18n/strings.php:416
1721
  msgid "There was a problem with one or more entries. Please fix the errors below and try saving again."
1722
  msgstr ""
1723
 
@@ -1725,11 +1720,11 @@ msgstr ""
1725
  msgid "Expand"
1726
  msgstr ""
1727
 
1728
- #: i18n/strings.php:411 i18n/strings.php:481
1729
  msgid "Dismiss"
1730
  msgstr ""
1731
 
1732
- #: i18n/strings.php:10 i18n/strings.php:413
1733
  msgid "You have unsaved changes."
1734
  msgstr ""
1735
 
@@ -1764,7 +1759,7 @@ msgstr ""
1764
  msgid "Unable to save your shipping packages. Please try again."
1765
  msgstr ""
1766
 
1767
- #: i18n/strings.php:41 i18n/strings.php:417
1768
  msgid "Save changes"
1769
  msgstr ""
1770
 
@@ -1776,32 +1771,32 @@ msgstr ""
1776
  msgid "Dimensions (L x W x H)"
1777
  msgstr ""
1778
 
1779
- #: i18n/strings.php:420
1780
  msgid "All services selected"
1781
  msgstr ""
1782
 
1783
- #: i18n/strings.php:37 i18n/strings.php:199 i18n/strings.php:422
1784
  msgid "Expand Services"
1785
  msgstr ""
1786
 
1787
- #: classes/class-wc-connect-label-reports.php:167 i18n/strings.php:400
1788
- #: i18n/strings.php:423 i18n/strings.php:464
1789
  msgid "Service"
1790
  msgstr ""
1791
 
1792
- #: i18n/strings.php:424
1793
  msgid "Price adjustment"
1794
  msgstr ""
1795
 
1796
- #: i18n/strings.php:418
1797
  msgid "Saved Packages"
1798
  msgstr ""
1799
 
1800
- #: woocommerce-services.php:1218 woocommerce-services.php:1225
1801
  msgid "Tracking"
1802
  msgstr ""
1803
 
1804
- #: i18n/strings.php:207 i18n/strings.php:473 i18n/strings.php:477
1805
  msgid "Create shipping label"
1806
  msgid_plural "Create shipping labels"
1807
  msgstr[0] ""
@@ -1874,51 +1869,51 @@ msgstr ""
1874
  msgid "The service and rate chosen by the customer at checkout is not available. Please choose another."
1875
  msgstr ""
1876
 
1877
- #: i18n/strings.php:387 i18n/strings.php:451
1878
  msgid "Request a refund"
1879
  msgstr ""
1880
 
1881
- #: i18n/strings.php:388 i18n/strings.php:452
1882
  msgid "You can request a refund for a shipping label that has not been used to ship a package. It will take at least %(days)s days to process."
1883
  msgstr ""
1884
 
1885
- #: i18n/strings.php:389 i18n/strings.php:453
1886
  msgid "Purchase date"
1887
  msgstr ""
1888
 
1889
- #: i18n/strings.php:390 i18n/strings.php:454
1890
  msgid "Amount eligible for refund"
1891
  msgstr ""
1892
 
1893
- #: i18n/strings.php:369 i18n/strings.php:393 i18n/strings.php:433
1894
- #: i18n/strings.php:457
1895
  msgid "Reprint shipping label"
1896
  msgstr ""
1897
 
1898
- #: i18n/strings.php:394 i18n/strings.php:458
1899
  msgid "If there was a printing error when you purchased the label, you can print it again."
1900
  msgstr ""
1901
 
1902
- #: i18n/strings.php:395 i18n/strings.php:459
1903
  msgid "NOTE: If you already used the label in a package, printing and using it again is a violation of our terms of service and may result in criminal charges."
1904
  msgstr ""
1905
 
1906
- #: i18n/strings.php:325 i18n/strings.php:392 i18n/strings.php:456
1907
  msgid "Print"
1908
  msgstr ""
1909
 
1910
  #: i18n/strings.php:16 i18n/strings.php:82 i18n/strings.php:122
1911
  #: i18n/strings.php:158 i18n/strings.php:167 i18n/strings.php:178
1912
- #: i18n/strings.php:263 i18n/strings.php:385 i18n/strings.php:391
1913
- #: i18n/strings.php:449 i18n/strings.php:455
1914
  msgid "Cancel"
1915
  msgstr ""
1916
 
1917
- #: i18n/strings.php:403 i18n/strings.php:467
1918
  msgid "N/A"
1919
  msgstr ""
1920
 
1921
- #: i18n/strings.php:8 i18n/strings.php:412 i18n/strings.php:472
1922
  msgid "More"
1923
  msgstr ""
1924
 
@@ -1961,7 +1956,7 @@ msgstr ""
1961
  msgid "Packaging"
1962
  msgstr ""
1963
 
1964
- #: woocommerce-services.php:1598
1965
  msgid "Section not loading? Visit the <a href=\"%s\">status page</a> for troubleshooting steps."
1966
  msgstr ""
1967
 
@@ -1973,7 +1968,7 @@ msgstr ""
1973
  msgid "Note: Jetpack is connected, but development mode is also enabled on this site. Please disable development mode."
1974
  msgstr ""
1975
 
1976
- #: woocommerce-services.php:1451
1977
  msgid "Shipping Label"
1978
  msgstr ""
1979
 
@@ -2030,24 +2025,24 @@ msgctxt "A service with an unknown title and unknown method_title"
2030
  msgid "Unknown"
2031
  msgstr ""
2032
 
2033
- #: i18n/strings.php:342
2034
  msgid "Support"
2035
  msgstr ""
2036
 
2037
- #: i18n/strings.php:330 i18n/strings.php:331
2038
  msgid "Debug"
2039
  msgstr ""
2040
 
2041
- #: i18n/strings.php:361
2042
  msgid "Services"
2043
  msgstr ""
2044
 
2045
- #: i18n/strings.php:345
2046
  msgctxt "This section displays the overall health of WooCommerce Shipping & Tax and the things it depends on"
2047
  msgid "Health"
2048
  msgstr ""
2049
 
2050
- #: i18n/strings.php:343
2051
  msgid "Need help?"
2052
  msgstr ""
2053
 
@@ -2055,11 +2050,11 @@ msgstr ""
2055
  msgid "Log is empty"
2056
  msgstr ""
2057
 
2058
- #: i18n/strings.php:334 i18n/strings.php:338
2059
  msgid "Disabled"
2060
  msgstr ""
2061
 
2062
- #: i18n/strings.php:333 i18n/strings.php:337
2063
  msgid "Enabled"
2064
  msgstr "Ativado"
2065
 
@@ -2083,27 +2078,27 @@ msgstr ""
2083
  msgid "Setup for this service has not yet been completed"
2084
  msgstr ""
2085
 
2086
- #: i18n/strings.php:350
2087
  msgid "Service data is up-to-date"
2088
  msgstr ""
2089
 
2090
- #: i18n/strings.php:349
2091
  msgid "Service data was found, but is more than one day old"
2092
  msgstr ""
2093
 
2094
- #: i18n/strings.php:348
2095
  msgid "Service data was found, but is more than three days old"
2096
  msgstr ""
2097
 
2098
- #: i18n/strings.php:351
2099
  msgid "Service data found, but may be out of date"
2100
  msgstr ""
2101
 
2102
- #: i18n/strings.php:352
2103
  msgid "No service data available"
2104
  msgstr ""
2105
 
2106
- #: i18n/strings.php:347
2107
  msgid "Jetpack"
2108
  msgstr ""
2109
 
@@ -2127,7 +2122,8 @@ msgstr ""
2127
  msgid "Please install and activate the Jetpack plugin, version %s or higher"
2128
  msgstr ""
2129
 
2130
- #: i18n/strings.php:346
 
2131
  msgid "WooCommerce"
2132
  msgstr ""
2133
 
@@ -2143,7 +2139,7 @@ msgstr ""
2143
  msgid "WooCommerce %1$s or higher is required (You are running %2$s)"
2144
  msgstr ""
2145
 
2146
- #: classes/class-wc-connect-error-notice.php:104 woocommerce-services.php:1634
2147
  msgid "Dismiss this notice"
2148
  msgstr ""
2149
 
51
  msgid "Live rates at checkout"
52
  msgstr ""
53
 
54
+ #: i18n/strings.php:403
55
  msgid "Last updated %s."
56
  msgstr ""
57
 
206
  msgid "WooCommerce Helper auth is missing"
207
  msgstr ""
208
 
209
+ #: i18n/strings.php:331 i18n/strings.php:422
210
  msgid "USPS labels without tracking are not eligible for refund."
211
  msgstr ""
212
 
226
  msgid "Loading"
227
  msgstr ""
228
 
229
+ #: i18n/strings.php:402
230
  msgid "WooCommerce Shipping & Tax Data"
231
  msgstr ""
232
 
233
+ #: i18n/strings.php:339 i18n/strings.php:430
234
  msgid "Print customs form"
235
  msgstr ""
236
 
277
  msgstr ""
278
 
279
  #. Plugin Name of the plugin
 
280
  #: classes/class-wc-connect-settings-pages.php:123
281
+ #: classes/class-wc-connect-privacy.php:36
282
  msgid "WooCommerce Shipping & Tax"
283
  msgstr ""
284
 
411
  msgid "Validating address\\u2026"
412
  msgstr ""
413
 
414
+ #: i18n/strings.php:326 i18n/strings.php:372 i18n/strings.php:463
415
  msgid "Purchasing\\u2026"
416
  msgstr ""
417
 
423
  msgid "Package %(index)s \\u2013 %(title)s"
424
  msgstr ""
425
 
426
+ #: i18n/strings.php:6 i18n/strings.php:170 i18n/strings.php:375
427
  msgid "Saving\\u2026"
428
  msgstr ""
429
 
437
  msgid "Your tax rates and settings will be automatically configured for %1$s, %2$s. <a href=\"https://docs.woocommerce.com/document/setting-up-taxes-in-woocommerce/#section-12\">Learn more about setting up tax rates for additional nexuses</a>"
438
  msgstr ""
439
 
440
+ #: i18n/strings.php:419
441
  msgid "%(itemCount)d item is ready to be fulfilled"
442
  msgid_plural "%(itemCount)d items are ready to be fulfilled"
443
  msgstr[0] ""
444
  msgstr[1] ""
445
 
446
+ #: i18n/strings.php:418
447
  msgid "%(itemCount)d item was fulfilled on {{span}}%(createdDate)s{{/span}}"
448
  msgid_plural "%(itemCount)d items were fulfilled on {{span}}%(createdDate)s{{/span}}"
449
  msgstr[0] ""
450
  msgstr[1] ""
451
 
452
+ #: i18n/strings.php:338 i18n/strings.php:429
453
  msgid "Schedule a pickup"
454
  msgstr ""
455
 
456
+ #: i18n/strings.php:334 i18n/strings.php:425
457
  msgid "Label images older than 180 days are deleted by our technology partners for general security and data privacy concerns."
458
  msgstr ""
459
 
460
+ #: i18n/strings.php:330 i18n/strings.php:421
461
  msgid "Labels older than 30 days cannot be refunded."
462
  msgstr ""
463
 
478
  msgid "WooCommerce Shipping & Tax requires the WooCommerce plugin to be installed and active. You can download %s here."
479
  msgstr ""
480
 
481
+ #: i18n/strings.php:466
482
  msgid "No tracking information available at this time"
483
  msgstr ""
484
 
485
+ #: i18n/strings.php:417
486
  msgid "Connection error: unable to create label at this time"
487
  msgstr ""
488
 
489
+ #: i18n/strings.php:413 i18n/strings.php:415
490
  msgid "Track Package"
491
  msgid_plural "Track Packages"
492
  msgstr[0] ""
493
  msgstr[1] ""
494
 
495
+ #: i18n/strings.php:329
496
  msgid "Which package would you like to track?"
497
  msgstr ""
498
 
499
+ #: i18n/strings.php:340 i18n/strings.php:371 i18n/strings.php:431
500
+ #: i18n/strings.php:462
501
  msgid "%(service)s label (#%(labelIndex)d)"
502
  msgstr ""
503
 
585
  msgid "0.0"
586
  msgstr ""
587
 
588
+ #: woocommerce-services.php:1453
589
  msgid "Shipment Tracking"
590
  msgstr ""
591
 
597
  msgid "Customs information incomplete"
598
  msgstr ""
599
 
600
+ #: woocommerce-services.php:1496
601
  msgid "Packing Log:"
602
  msgstr ""
603
 
604
+ #: woocommerce-services.php:1483
605
  msgid "Chosen Rate:"
606
  msgstr ""
607
 
608
+ #: woocommerce-services.php:1479
609
  msgid "Shipping Method ID:"
610
  msgstr ""
611
 
612
+ #: woocommerce-services.php:1475
613
  msgid "Shipping Method Name:"
614
  msgstr ""
615
 
616
+ #: woocommerce-services.php:1459
617
  msgid "Shipping Debug"
618
  msgstr ""
619
 
621
  msgid "<strong>\"%2$s\" is missing weight, length, width, or height.</strong><br />Shipping rates cannot be calculated. <a href=\"%1$s\">Enter dimensions and weight for %2$s</a> so your customers can purchase this item."
622
  msgstr ""
623
 
624
+ #: classes/class-wc-connect-api-client.php:588
625
  msgid "Unable to send request to WooCommerce Shipping & Tax server. The timestamp generated for the signature is too old."
626
  msgstr ""
627
 
628
+ #: classes/class-wc-connect-api-client.php:527
629
  msgid "Unable to send request to WooCommerce Shipping & Tax server. Jetpack Token is malformed."
630
  msgstr ""
631
 
632
+ #: classes/class-wc-connect-api-client.php:520
633
  msgid "Unable to send request to WooCommerce Shipping & Tax server. Jetpack Token is missing"
634
  msgstr ""
635
 
663
  msgstr ""
664
 
665
  #: classes/class-wc-connect-api-client.php:160
 
666
  msgid "No shipping rate could be calculated. No items in the package are shippable."
667
  msgstr ""
668
 
811
  msgid "%(message)s. Please modify the address and try again."
812
  msgstr ""
813
 
814
+ #: i18n/strings.php:337 i18n/strings.php:428
815
  msgid "View details"
816
  msgstr ""
817
 
818
+ #: i18n/strings.php:369 i18n/strings.php:460
819
  msgid "Items"
820
  msgstr ""
821
 
822
+ #: i18n/strings.php:368 i18n/strings.php:459
823
  msgid "Package"
824
  msgstr ""
825
 
826
+ #: i18n/strings.php:366 i18n/strings.php:457
827
  msgid "Receipt"
828
  msgstr ""
829
 
830
+ #: i18n/strings.php:365 i18n/strings.php:456
831
  msgid "Label #%(labelIndex)s details"
832
  msgstr ""
833
 
942
  msgid "Activate"
943
  msgstr ""
944
 
945
+ #: i18n/strings.php:342 i18n/strings.php:433
946
  msgid "No activity yet"
947
  msgstr ""
948
 
949
+ #: i18n/strings.php:350 i18n/strings.php:441
950
  msgid "Note"
951
  msgstr ""
952
 
953
+ #: i18n/strings.php:349 i18n/strings.php:440
954
  msgid "Refunded %(amount)s"
955
  msgstr ""
956
 
957
+ #: i18n/strings.php:347 i18n/strings.php:438
958
  msgid "%(service)s label (#%(labelNum)d) refund rejected"
959
  msgstr ""
960
 
961
+ #: i18n/strings.php:346 i18n/strings.php:437
962
  msgid "%(service)s label (#%(labelNum)d) refunded (%(amount)s)"
963
  msgstr ""
964
 
965
+ #: i18n/strings.php:345 i18n/strings.php:436
966
  msgid "%(service)s label (#%(labelNum)d) refund requested (%(amount)s)"
967
  msgstr ""
968
 
969
+ #: i18n/strings.php:344 i18n/strings.php:435
970
  msgid "Note sent to customer"
971
  msgstr ""
972
 
973
+ #: i18n/strings.php:343 i18n/strings.php:434
974
  msgid "Internal note"
975
  msgstr ""
976
 
977
+ #: i18n/strings.php:374 i18n/strings.php:465
978
  msgid "Show notes from %(date)s"
979
  msgstr ""
980
 
981
+ #: i18n/strings.php:373 i18n/strings.php:464
982
  msgid "%(count)s event"
983
  msgid_plural "%(count)s events"
984
  msgstr[0] ""
989
  msgid "WeChat Pay"
990
  msgstr ""
991
 
992
+ #: i18n/strings.php:351 i18n/strings.php:442
993
  msgid "Toggle menu"
994
  msgstr ""
995
 
997
  msgid "Return to Order #%(orderId)s"
998
  msgstr ""
999
 
1000
+ #: i18n/strings.php:393
1001
  msgid "Our team is here for you. View our {{docsA}}support docs{{/docsA}} or {{ticketA}}open a support ticket{{/ticketA}}."
1002
  msgstr ""
1003
 
1004
+ #: i18n/strings.php:384
1005
  msgid "Logging"
1006
  msgstr ""
1007
 
1008
+ #: i18n/strings.php:411
1009
  msgid "No services configured. {{a}}Add a shipping service{{/a}}"
1010
  msgstr ""
1011
 
1012
+ #: i18n/strings.php:409
1013
  msgid "Edit service settings"
1014
  msgstr ""
1015
 
1016
+ #: i18n/strings.php:408
1017
  msgid "Request was made %s - check logs below or {{a}}edit service settings{{/a}}"
1018
  msgstr ""
1019
 
1020
+ #: i18n/strings.php:407
1021
  msgid "Copy for support"
1022
  msgstr ""
1023
 
1024
+ #: i18n/strings.php:406
1025
  msgid "Last %s entry. {{a}}Show full log{{/a}}"
1026
  msgid_plural "Last %s entries. {{a}}Show full log{{/a}}"
1027
  msgstr[0] ""
1028
  msgstr[1] ""
1029
 
1030
+ #: i18n/strings.php:405
1031
  msgid "Log tail copied to clipboard"
1032
  msgstr ""
1033
 
1034
+ #: i18n/strings.php:11 i18n/strings.php:472
1035
  msgid "You have unsaved changes. Are you sure you want to leave this page?"
1036
  msgstr ""
1037
 
1060
  msgstr ""
1061
 
1062
  #: i18n/strings.php:5 i18n/strings.php:169 i18n/strings.php:295
1063
+ #: i18n/strings.php:378 i18n/strings.php:468
1064
  msgid "Optional"
1065
  msgstr ""
1066
 
1215
  msgid "Total"
1216
  msgstr ""
1217
 
1218
+ #: classes/class-wc-connect-label-reports.php:170 i18n/strings.php:348
1219
+ #: i18n/strings.php:439
1220
  msgid "Refund"
1221
  msgstr ""
1222
 
1256
  msgid "Export CSV"
1257
  msgstr ""
1258
 
1259
+ #: i18n/strings.php:390
1260
  msgid "Other Log"
1261
  msgstr ""
1262
 
1263
+ #: i18n/strings.php:389
1264
  msgid "Taxes Log"
1265
  msgstr ""
1266
 
1267
+ #: i18n/strings.php:388
1268
  msgid "Shipping Log"
1269
  msgstr ""
1270
 
1271
+ #: i18n/strings.php:381
1272
  msgid "Display troubleshooting information on the Cart and Checkout pages."
1273
  msgstr ""
1274
 
1275
+ #: i18n/strings.php:385
1276
  msgid "Write diagnostic messages to log files. Helpful when contacting support."
1277
  msgstr ""
1278
 
1316
  msgid "Link a PayPal account"
1317
  msgstr ""
1318
 
1319
+ #: i18n/strings.php:404
1320
  msgid "Refresh"
1321
  msgstr ""
1322
 
1323
+ #: woocommerce-services.php:1234
1324
  msgid "Tracking number"
1325
  msgstr ""
1326
 
1327
+ #: woocommerce-services.php:1233
1328
  msgid "Provider"
1329
  msgstr ""
1330
 
1416
  msgstr ""
1417
 
1418
  #: classes/class-wc-connect-paypal-ec.php:323 i18n/strings.php:4
1419
+ #: i18n/strings.php:168 i18n/strings.php:377 i18n/strings.php:467
1420
  msgid "Required"
1421
  msgstr ""
1422
 
1432
  msgid "Dimensions"
1433
  msgstr ""
1434
 
1435
+ #: i18n/strings.php:270 i18n/strings.php:364 i18n/strings.php:455
1436
  msgid "Close"
1437
  msgstr ""
1438
 
1543
  msgid "Unable to get your settings. Please refresh the page to try again."
1544
  msgstr ""
1545
 
1546
+ #: i18n/strings.php:479
1547
  msgid "%(numSelected)d service selected"
1548
  msgid_plural "%(numSelected)d services selected"
1549
  msgstr[0] ""
1550
  msgstr[1] ""
1551
 
1552
+ #: i18n/strings.php:477
1553
  msgid "Add and edit saved packages using the {{a}}Packaging Manager{{/a}}."
1554
  msgstr ""
1555
 
1556
+ #: i18n/strings.php:341 i18n/strings.php:432
1557
  msgid "Tracking #: {{trackingLink/}}"
1558
  msgstr ""
1559
 
1593
  msgid "Choose rate: %(pckg)s"
1594
  msgstr ""
1595
 
1596
+ #: i18n/strings.php:353 i18n/strings.php:444
1597
  msgid "Refund label (-%(amount)s)"
1598
  msgstr ""
1599
 
1613
  msgid "Ship in original packaging"
1614
  msgstr ""
1615
 
1616
+ #: i18n/strings.php:332 i18n/strings.php:333 i18n/strings.php:423
1617
+ #: i18n/strings.php:424
1618
  msgid "Request refund"
1619
  msgstr ""
1620
 
1621
+ #: i18n/strings.php:335 i18n/strings.php:426
1622
  msgid "Reprint"
1623
  msgstr ""
1624
 
1625
+ #: i18n/strings.php:58 i18n/strings.php:309 i18n/strings.php:363
1626
+ #: i18n/strings.php:454
1627
  msgid "Paper size"
1628
  msgstr ""
1629
 
1639
  msgid "Move item"
1640
  msgstr ""
1641
 
1642
+ #: i18n/strings.php:483
1643
  msgid "Increase the rates calculated by the carrier to account for packaging and handling costs. You can also add a negative amount to save your customers money."
1644
  msgstr ""
1645
 
1646
+ #: i18n/strings.php:414
1647
  msgid "Create new label"
1648
  msgstr ""
1649
 
1664
  msgstr ""
1665
 
1666
  #. translators: %d: Deleted Product ID
 
1667
  #: classes/class-wc-connect-compatibility-wc26.php:116
1668
+ #: classes/class-wc-connect-compatibility-wc30.php:130
1669
  msgid "#%d - [Deleted product]"
1670
  msgstr ""
1671
 
1672
  #. translators: %1$d: Product ID, %2$s: Product Name
 
1673
  #: classes/class-wc-connect-compatibility-wc26.php:111
1674
+ #: classes/class-wc-connect-compatibility-wc30.php:125
1675
  msgid "#%1$d - %2$s"
1676
  msgstr ""
1677
 
1678
  #. translators: %s Support url
1679
+ #: woocommerce-services.php:1569
1680
  msgid "<a href=\"%s\">Support</a>"
1681
  msgstr ""
1682
 
1684
  msgid "There was an error installing Jetpack. Please try installing it manually."
1685
  msgstr ""
1686
 
1687
+ #: i18n/strings.php:43 woocommerce-services.php:1066
1688
+ #: woocommerce-services.php:1069
1689
  msgid "Shipping Labels"
1690
  msgstr ""
1691
 
 
 
 
 
1692
  #. Plugin URI of the plugin
1693
  #. Author URI of the plugin
1694
  msgid "https://woocommerce.com/"
1695
  msgstr ""
1696
 
1697
+ #: i18n/strings.php:143 i18n/strings.php:215 woocommerce-services.php:1519
1698
+ #: woocommerce-services.php:1547
1699
  msgid "Phone"
1700
  msgstr ""
1701
 
1704
  msgid "Connect"
1705
  msgstr ""
1706
 
1707
+ #: i18n/strings.php:7 i18n/strings.php:171 i18n/strings.php:376
1708
  msgid "Save Settings"
1709
  msgstr ""
1710
 
1711
+ #: i18n/strings.php:473
1712
  msgid "Your changes have been saved."
1713
  msgstr ""
1714
 
1715
+ #: i18n/strings.php:474
1716
  msgid "There was a problem with one or more entries. Please fix the errors below and try saving again."
1717
  msgstr ""
1718
 
1720
  msgid "Expand"
1721
  msgstr ""
1722
 
1723
+ #: i18n/strings.php:328 i18n/strings.php:469
1724
  msgid "Dismiss"
1725
  msgstr ""
1726
 
1727
+ #: i18n/strings.php:10 i18n/strings.php:471
1728
  msgid "You have unsaved changes."
1729
  msgstr ""
1730
 
1759
  msgid "Unable to save your shipping packages. Please try again."
1760
  msgstr ""
1761
 
1762
+ #: i18n/strings.php:41 i18n/strings.php:475
1763
  msgid "Save changes"
1764
  msgstr ""
1765
 
1771
  msgid "Dimensions (L x W x H)"
1772
  msgstr ""
1773
 
1774
+ #: i18n/strings.php:478
1775
  msgid "All services selected"
1776
  msgstr ""
1777
 
1778
+ #: i18n/strings.php:37 i18n/strings.php:199 i18n/strings.php:480
1779
  msgid "Expand Services"
1780
  msgstr ""
1781
 
1782
+ #: classes/class-wc-connect-label-reports.php:167 i18n/strings.php:367
1783
+ #: i18n/strings.php:458 i18n/strings.php:481
1784
  msgid "Service"
1785
  msgstr ""
1786
 
1787
+ #: i18n/strings.php:482
1788
  msgid "Price adjustment"
1789
  msgstr ""
1790
 
1791
+ #: i18n/strings.php:476
1792
  msgid "Saved Packages"
1793
  msgstr ""
1794
 
1795
+ #: woocommerce-services.php:1222 woocommerce-services.php:1229
1796
  msgid "Tracking"
1797
  msgstr ""
1798
 
1799
+ #: i18n/strings.php:207 i18n/strings.php:412 i18n/strings.php:416
1800
  msgid "Create shipping label"
1801
  msgid_plural "Create shipping labels"
1802
  msgstr[0] ""
1869
  msgid "The service and rate chosen by the customer at checkout is not available. Please choose another."
1870
  msgstr ""
1871
 
1872
+ #: i18n/strings.php:354 i18n/strings.php:445
1873
  msgid "Request a refund"
1874
  msgstr ""
1875
 
1876
+ #: i18n/strings.php:355 i18n/strings.php:446
1877
  msgid "You can request a refund for a shipping label that has not been used to ship a package. It will take at least %(days)s days to process."
1878
  msgstr ""
1879
 
1880
+ #: i18n/strings.php:356 i18n/strings.php:447
1881
  msgid "Purchase date"
1882
  msgstr ""
1883
 
1884
+ #: i18n/strings.php:357 i18n/strings.php:448
1885
  msgid "Amount eligible for refund"
1886
  msgstr ""
1887
 
1888
+ #: i18n/strings.php:336 i18n/strings.php:360 i18n/strings.php:427
1889
+ #: i18n/strings.php:451
1890
  msgid "Reprint shipping label"
1891
  msgstr ""
1892
 
1893
+ #: i18n/strings.php:361 i18n/strings.php:452
1894
  msgid "If there was a printing error when you purchased the label, you can print it again."
1895
  msgstr ""
1896
 
1897
+ #: i18n/strings.php:362 i18n/strings.php:453
1898
  msgid "NOTE: If you already used the label in a package, printing and using it again is a violation of our terms of service and may result in criminal charges."
1899
  msgstr ""
1900
 
1901
+ #: i18n/strings.php:325 i18n/strings.php:359 i18n/strings.php:450
1902
  msgid "Print"
1903
  msgstr ""
1904
 
1905
  #: i18n/strings.php:16 i18n/strings.php:82 i18n/strings.php:122
1906
  #: i18n/strings.php:158 i18n/strings.php:167 i18n/strings.php:178
1907
+ #: i18n/strings.php:263 i18n/strings.php:352 i18n/strings.php:358
1908
+ #: i18n/strings.php:443 i18n/strings.php:449
1909
  msgid "Cancel"
1910
  msgstr ""
1911
 
1912
+ #: i18n/strings.php:370 i18n/strings.php:461
1913
  msgid "N/A"
1914
  msgstr ""
1915
 
1916
+ #: i18n/strings.php:8 i18n/strings.php:420 i18n/strings.php:470
1917
  msgid "More"
1918
  msgstr ""
1919
 
1956
  msgid "Packaging"
1957
  msgstr ""
1958
 
1959
+ #: woocommerce-services.php:1602
1960
  msgid "Section not loading? Visit the <a href=\"%s\">status page</a> for troubleshooting steps."
1961
  msgstr ""
1962
 
1968
  msgid "Note: Jetpack is connected, but development mode is also enabled on this site. Please disable development mode."
1969
  msgstr ""
1970
 
1971
+ #: woocommerce-services.php:1455
1972
  msgid "Shipping Label"
1973
  msgstr ""
1974
 
2025
  msgid "Unknown"
2026
  msgstr ""
2027
 
2028
+ #: i18n/strings.php:391
2029
  msgid "Support"
2030
  msgstr ""
2031
 
2032
+ #: i18n/strings.php:379 i18n/strings.php:380
2033
  msgid "Debug"
2034
  msgstr ""
2035
 
2036
+ #: i18n/strings.php:410
2037
  msgid "Services"
2038
  msgstr ""
2039
 
2040
+ #: i18n/strings.php:394
2041
  msgctxt "This section displays the overall health of WooCommerce Shipping & Tax and the things it depends on"
2042
  msgid "Health"
2043
  msgstr ""
2044
 
2045
+ #: i18n/strings.php:392
2046
  msgid "Need help?"
2047
  msgstr ""
2048
 
2050
  msgid "Log is empty"
2051
  msgstr ""
2052
 
2053
+ #: i18n/strings.php:383 i18n/strings.php:387
2054
  msgid "Disabled"
2055
  msgstr ""
2056
 
2057
+ #: i18n/strings.php:382 i18n/strings.php:386
2058
  msgid "Enabled"
2059
  msgstr "Ativado"
2060
 
2078
  msgid "Setup for this service has not yet been completed"
2079
  msgstr ""
2080
 
2081
+ #: i18n/strings.php:399
2082
  msgid "Service data is up-to-date"
2083
  msgstr ""
2084
 
2085
+ #: i18n/strings.php:398
2086
  msgid "Service data was found, but is more than one day old"
2087
  msgstr ""
2088
 
2089
+ #: i18n/strings.php:397
2090
  msgid "Service data was found, but is more than three days old"
2091
  msgstr ""
2092
 
2093
+ #: i18n/strings.php:400
2094
  msgid "Service data found, but may be out of date"
2095
  msgstr ""
2096
 
2097
+ #: i18n/strings.php:401
2098
  msgid "No service data available"
2099
  msgstr ""
2100
 
2101
+ #: i18n/strings.php:396
2102
  msgid "Jetpack"
2103
  msgstr ""
2104
 
2122
  msgid "Please install and activate the Jetpack plugin, version %s or higher"
2123
  msgstr ""
2124
 
2125
+ #. Author of the plugin
2126
+ #: i18n/strings.php:395
2127
  msgid "WooCommerce"
2128
  msgstr ""
2129
 
2139
  msgid "WooCommerce %1$s or higher is required (You are running %2$s)"
2140
  msgstr ""
2141
 
2142
+ #: classes/class-wc-connect-error-notice.php:104 woocommerce-services.php:1638
2143
  msgid "Dismiss this notice"
2144
  msgstr ""
2145
 
i18n/languages/woocommerce-services-ro_RO.json CHANGED
@@ -1 +1 @@
1
- {"0":[null,"0"],"":{"po-revision-date":"2021-01-12 11:34:28+0000","mime-version":"1.0","content-type":"text/plain; charset=UTF-8","content-transfer-encoding":"8bit","plural-forms":"nplurals=3; plural=(n == 1) ? 0 : ((n == 0 || n % 100 >= 2 && n % 100 <= 19) ? 1 : 2);","x-generator":"GlotPress/3.0.0-alpha.2","language":"ro","project-id-version":"Plugins - WooCommerce Shipping &amp; Tax - Stable (latest release)"},"Features":[null,""],"Carrier":[null,""],"Express delivery from the experts in international shipping":[null,""],"Live rates for %(carrierName)s at checkout":[null,""],"Ship with the largest delivery network in the United States":[null,""],"Discounted %(carrierName)s shipping labels":[null,""],"To be displayed at checkout, this carrier must be added as a shipping method to selected shipping zones":[null,""],"Add to shipping zones":[null,""],"Show live rates directly on your store - never under or overcharge for shipping again":[null,""],"Live rates at checkout":[null,""],"Last updated %s.":[null,""],"At least one of the new predefined packages has the same name as existing packages.":[null,""],"The new predefined package names are not unique.":[null,""],"At least one of the new custom packages has the same name as existing packages.":[null,""],"The new custom package names are not unique.":[null,""],"Go to shipping zones":[null,""],"Add DHL Express as a shipping method to selected shipping zones to display live rates at checkout.":[null,""],"DHL Express live rates are now available":[null,""],"State %1$s is invalid for %2$s.":[null,""],"%1$s %2$s is invalid for %3$s.":[null,""],"A %1$s is required for %2$s.":[null,""],"A country is required":[null,""],"Your store is over the limit for rate calls this month and your account will be charged for overages. To prevent future overage charges you can upgrade your plan.":[null,""],"There was an error trying to activate your subscription.":[null,""],"Your subscription was succesfully activated.":[null,""],"Manage":[null,""],"Usage":[null,""],"View and manage your subscription usage":[null,""],"Shipping method":[null,""],"The subscription is already active.":[null,""],"Set up your own carrier account to compare rates and print labels from multiple carriers in WooCommerce Shipping. Learn more about adding {{a}}carrier accounts{{/a}}.":[null,""],"There was an error connecting to your %(carrierName)s account. Please check that all of the information entered matches your %(carrierName)s account and try to connect again.":[null,""],"Your carrier account was connected successfully.":[null,""],"The date must be a valid date in the format YYYY-MM-DD":[null,""],"The invoice number needs to be 9 or 13 letters and digits in length":[null,""],"The company website format is not valid":[null,""],"The email format is not valid":[null,""],"The ZIP/Postal code needs to be 5 digits in length":[null,""],"The phone number needs to be 10 digits in length":[null,""],"The UPS account number needs to be 6 letters and digits in length":[null,""],"This will remove the connection with %(carrier_name)s. All of your %(carrier_name)s account information will be deleted and you won\\u2019t see %(carrier_name)s rates.":[null,""],"Disconnect your %(carrier_name)s account":[null,""],"There was an error trying to disconnect your carrier account":[null,""],"Your carrier account was disconnected succesfully.":[null,""],"DHL Express":[null,""],"Powered by WooCommerce Tax. If automated taxes are enabled, you'll need to enter prices exclusive of tax.":[null,""],"WooCommerce Helper auth is missing":[null,""],"USPS labels without tracking are not eligible for refund.":[null,""],"General Information":[null,""],"Connect your %(carrierName)s account":[null,""],"%(carrierName)s not supported.":[null,""],"Loading":[null,""],"WooCommerce Shipping & Tax Data":[null,""],"Print customs form":[null,""],"Test your WooCommerce Shipping & Tax connection":[null,""],"WooCommerce Shipping & Tax Status":[null,""],"Connect your store to activate WooCommerce Shipping & Tax":[null,""],"Connect Jetpack to activate WooCommerce Shipping & Tax":[null,""],"WooCommerce Shipping now supports DHL labels for international shipments. Purchase and print discounted labels from DHL and USPS right here.":[null,""],"Discounted DHL Shipping Labels":[null,""],"WooCommerce Shipping":[null,""],"Invalid WooCommerce Shipping & Tax service slug provided":[null,""],"WooCommerce Shipping & Tax":[null,""],"ZIP/Postal code":[null,""],"This action will delete any information entered on the form.":[null,""],"Cancel connection":[null,""],"Ok":[null,""],"UPS invoice control id":[null,""],"UPS invoice currency":[null,""],"UPS invoice amount":[null,""],"UPS invoice date":[null,""],"UPS invoice number":[null,""],"I have been issued an invoice from UPS within the past 90 days":[null,""],"UPS account information":[null,""],"Company website":[null,""],"Job title":[null,""],"Company name":[null,""],"This is the company info you used to create your UPS account":[null,""],"Company information":[null,""],"Email":[null,""],"Address 2 (optional)":[null,""],"Account number":[null,""],"This is the account number and address from your UPS profile":[null,""],"General information":[null,""],"If you need a UPS account number, go to {{a}}UPS.com{{/a}} to create a new account.":[null,""],"Set up your own UPS carrier account to compare rates and print labels from multiple carriers in WooCommerce Shipping. Learn more about adding {{a}}carrier accounts{{/a}}.":[null,""],"Connect your UPS account":[null,""],"Set up your own carrier account by adding your credentials here":[null,""],"Carrier account":[null,""],"Credentials":[null,""],"Adult signature required":[null,""],"Signature required":[null,""],"Other\\u2026":[null,""],"Select one\\u2026":[null,""],"Validating address\\u2026":[null,""],"Purchasing\\u2026":[null,""],"Your UPS account will be charged":[null,""],"Package %(index)s \\u2013 %(title)s":[null,""],"Saving\\u2026":[null,""],"Your tax rates and settings will be automatically configured for %1$s. <a href=\"https://docs.woocommerce.com/document/setting-up-taxes-in-woocommerce/#section-12\">Learn more about setting up tax rates for additional nexuses</a>":[null,""],"Your tax rates and settings will be automatically configured for %1$s, %2$s. <a href=\"https://docs.woocommerce.com/document/setting-up-taxes-in-woocommerce/#section-12\">Learn more about setting up tax rates for additional nexuses</a>":[null,""],"%(itemCount)d item is ready to be fulfilled":["%(itemCount)d items are ready to be fulfilled","","",""],"%(itemCount)d item was fulfilled on {{span}}%(createdDate)s{{/span}}":["%(itemCount)d items were fulfilled on {{span}}%(createdDate)s{{/span}}","","",""],"Schedule a pickup":[null,""],"Label images older than 180 days are deleted by our technology partners for general security and data privacy concerns.":[null,""],"Labels older than 30 days cannot be refunded.":[null,""],"Mark this order as complete and notify the customer":[null,""],"Notify the customer with shipment details":[null,""],"You save %s with WooCommerce Shipping":[null,""],"WooCommerce Shipping & Tax requires the WooCommerce plugin to be installed and active. You can download %s here.":[null,""],"No tracking information available at this time":[null,""],"Connection error: unable to create label at this time":[null,""],"Track Package":["Track Packages","","",""],"Which package would you like to track?":[null,""],"%(service)s label (#%(labelIndex)d)":[null,""],"To print this shipping label, {{a}}add a credit card to your account{{/a}}.":[null,""],"Add credit card":[null,"Adaugă card de credit"],"To print this shipping label, {{a}}choose a credit card to add to your account{{/a}}.":[null,""],"Choose credit card":[null,"Alege cardul de credit"],"Buy shipping label":["Buy shipping labels","Cumpără etichetă de livrare","Cumpără etichete de livrare","Cumpără etichete de livrare"],"shipping label ready":["shipping labels ready","eticheta de livrare este gata","etichetele de livrare sunt gata","etichetele de livrare sunt gata"],"Shipping from":[null,""],"Shipping summary":[null,"Rezumat livrare"],"Customer paid a {{shippingMethod/}} of {{shippingCost/}} for shipping":[null,""],"Shipping rates":[null,""],"HS Tariff number":[null,""],"Submit":[null,"Trimite"],"Total Weight (with package)":[null,""],"QTY":[null,""],"Weight":[null,"Greutate"],"Items to fulfill":[null,""],"Select a package type":[null,"Selectează un tip de pachet"],"Package details":[null,"Detalii pachet"],"Your shipping packages have been saved.":[null,"Pachetele de livrare au fost salvate."],"0.0":[null,""],"Shipment Tracking":[null,""],"Customs information valid":[null,""],"Customs information incomplete":[null,""],"Packing Log:":[null,""],"Chosen Rate:":[null,""],"Shipping Method ID:":[null,"ID metodă de livrare:"],"Shipping Method Name:":[null,"Nume metodă de livrare:"],"Shipping Debug":[null,""],"<strong>\"%2$s\" is missing weight, length, width, or height.</strong><br />Shipping rates cannot be calculated. <a href=\"%1$s\">Enter dimensions and weight for %2$s</a> so your customers can purchase this item.":[null,""],"Unable to send request to WooCommerce Shipping & Tax server. The timestamp generated for the signature is too old.":[null,""],"Unable to send request to WooCommerce Shipping & Tax server. Jetpack Token is malformed.":[null,""],"Unable to send request to WooCommerce Shipping & Tax server. Jetpack Token is missing":[null,""],"Error: The WooCommerce Shipping & Tax server returned: %1$s %2$s ( %3$d )":[null,""],"Error: The WooCommerce Shipping & Tax server returned ( %d ) and an empty response body.":[null,""],"Error: The WooCommerce Shipping & Tax server returned HTTP code: %d":[null,""],"Unable to encode body for request to WooCommerce Shipping & Tax server.":[null,""],"Unable to send request to WooCommerce Shipping & Tax server. Body must be an array.":[null,""],"Unable to send request to WooCommerce Shipping & Tax server. Jetpack connection does not implement get_access_token.":[null,""],"Unable to send request to WooCommerce Shipping & Tax server. Jetpack_Data was not found.":[null,""],"No shipping rate could be calculated. No items in the package are shippable.":[null,""],"Product ( ID: %d ) is missing a dimension value. Shipping rates cannot be calculated.":[null,""],"Product ( ID: %d ) did not include a weight. Shipping rates cannot be calculated.":[null,""],"Packing log:":[null,""],"Received rate: %1$s (%2$s)":[null,""],"Your customer selected {{shippingMethod/}}":[null,""],"Total rate: %(total)s":[null,""],"%(serviceName)s: %(rate)s":[null,""],"No rates found":[null,""],"WooCommerce Shipping gives you access to USPS Commercial Pricing, which is discounted over Retail rates.":[null,""],"more info":[null,"mai multe informații"],"ITN":[null,"ITN"],"Sanitary / Phytosanitary inspection":[null,""],"Quarantine":[null,"Carantină"],"None":[null,""],"Restriction type":[null,"Tip de restricție"],"Details":[null,"Detalii"],"Sample":[null,""],"Gift":[null,""],"Documents":[null,"Documente"],"Merchandise":[null,"Mărfuri"],"Contents type":[null,"Tip de conținut"],"Return to sender if package is unable to be delivered":[null,"Dacă pachetul nu poate fi livrat, returnează-l la expeditor"],"Value (per unit)":[null,"Valoare (pe bucată)"],"Weight (per unit)":[null,"Greutate (pe bucată)"],"Save customs form":[null,"Salvează formularul vamal"],"Customs":[null,"Vamă"],"Use address as entered":[null,"Folosește adresa așa cum este introdusă"],"View on Google Maps":[null,""],"Verify with USPS":[null,"Verifică cu USPS"],"Automatic verification failed for this address. It may still be a valid address \\u2014 use the tools below to manually verify.":[null,"Verificarea automată a eșuat pentru această adresă. Poate fi totuși o adresă validă - folosește instrumentele de mai jos pentru a o verifica manual."],"We were unable to automatically verify the address.":[null,"Nu am putut să verificăm automat adresa."],"We were unable to automatically verify the address \\u2014 %(error)s.":[null,"Nu am putut să verificăm automat adresa - %(error)s."],"You've edited the address, please revalidate it for accurate rates":[null,"Ai editat adresa, te rog s-o revalidezi pentru a avea impozite corecte"],"Verify address":[null,"Verifică adresa"],"%(message)s. Please modify the address and try again.":[null,"%(message)s. Te rog modifică adresa și încearcă din nou."],"View details":[null,"Vezi detalii"],"Items":[null,"Elemente"],"Package":[null,"Pachet"],"Receipt":[null,"Chitanță"],"Label #%(labelIndex)s details":[null,"Detalii etichetă #%(labelIndex)s"],"{{icon/}} Delete this package":[null,"{{icon/}} Șterge acest pachet"],"Done":[null,"Gata"],"Add boxes, envelopes, and other packages you use most frequently":[null,"Adaugă cutii, plicuri și alte tipuri de pachete pe care le folosești frecvent"],"Remove":[null,"Înlătură"],"Edit":[null,"Editează"],"Weight of empty package":[null,"Greutatea pachetului gol"],"Unique package name":[null,"Nume unic de pachet"],"Envelope":[null,"Plic"],"Box":[null,"Cutie"],"This field is required.":[null,"Acest câmp este obligatoriu."],"Payment":[null,"Plată"],"Email the label purchase receipts to %(ownerName)s (%(ownerLogin)s) at %(ownerEmail)s":[null,""],"Email Receipts":[null,"Chitanțe prin email"],"To purchase shipping labels, choose a credit card you have on file or add a new card.":[null,"Pentru a cumpăra etichete de livrare, alege un card de credit pe care îl ai în dosar sau adaugă un card nou."],"Choose a different card":[null,"Alege un alt card"],"To purchase shipping labels, add a credit card.":[null,"Pentru a cumpăra etichete de livrare, adaugă un card de credit."],"We'll charge the credit card on your account (%(card)s) to pay for the labels you print":[null,"Vom debita cardul de credit pentru contul tău (%(card)s) pentru a plăti etichetele pe care le imprimi"],"Credit cards are retrieved from the following WordPress.com account: %(wpcomLogin)s <%(wpcomEmail)s>":[null,"Cardurile de credit sunt preluate din următorul cont WordPress.com: %(wpcomLogin)s <%(wpcomEmail)s>"],"Only the site owner can change these settings. Please contact %(ownerName)s (%(ownerLogin)s) to change the shipping label settings.":[null,"Numai proprietarul sitului poate modifica aceste setări. Te rog contactează %(ownerName)s (%(ownerLogin)s) pentru a modifica setările etichetelor de livrare."],"Only the site owner can manage shipping label payment methods. Please contact %(ownerName)s (%(ownerLogin)s) to manage payment methods.":[null,"Numai proprietarul sitului poate administra metodele de plată cu etichete de livrare. Te rog contactează %(ownerName)s (%(ownerLogin)s) pentru administra metodele de plată."],"%(card)s ****%(digits)s":[null,"%(card)s ****%(digits)s"],"Print shipping labels yourself and save a trip to the post office":[null,"Imprimă-ți singur etichetele de livrare ca să nu mai mergi la oficiul poștal"],"H":[null,""],"W":[null,""],"L":[null,""],"Disconnect":[null,"Deconectează"],"Activate":[null,"Activează"],"No activity yet":[null,"Nicio activitate până acum"],"Note":[null,"Notă"],"Refunded %(amount)s":[null,""],"%(service)s label (#%(labelNum)d) refund rejected":[null,""],"%(service)s label (#%(labelNum)d) refunded (%(amount)s)":[null,""],"%(service)s label (#%(labelNum)d) refund requested (%(amount)s)":[null,""],"Note sent to customer":[null,"Notă trimisă clientului"],"Internal note":[null,"Notă internă"],"Show notes from %(date)s":[null,"Arată note din %(date)s"],"%(count)s event":["%(count)s events","%(count)s eveniment","%(count)s evenimente","%(count)s de evenimente"],"WeChat Pay":[null,"Plată WeChat"],"Toggle menu":[null,"Comută meniul"],"Return to Order #%(orderId)s":[null,""],"Our team is here for you. View our {{docsA}}support docs{{/docsA}} or {{ticketA}}open a support ticket{{/ticketA}}.":[null,""],"Logging":[null,""],"No services configured. {{a}}Add a shipping service{{/a}}":[null,"Niciun serviciu configurat. {{a}}Adaugă un serviciu de livrare{{/a}}"],"Edit service settings":[null,"Editează setări servicii"],"Request was made %s - check logs below or {{a}}edit service settings{{/a}}":[null,""],"Copy for support":[null,""],"Last %s entry. {{a}}Show full log{{/a}}":["Last %s entries. {{a}}Show full log{{/a}}","","",""],"Log tail copied to clipboard":[null,""],"You have unsaved changes. Are you sure you want to leave this page?":[null,""],"Value ($ per unit)":[null,"Valoare ($ pe bucată)"],"Weight (%s per unit)":[null,"Greutate (%s pe bucată)"],"Description":[null,"Descriere"],"Country where the product was manufactured or assembled":[null,"Țara unde produsul a fost fabricat sau asamblat"],"Origin country":[null,"Țară de origine"],"USPS":[null,""],"Optional":[null,"Opțional"],"Retry":[null,"Reîncearcă"],"shipping label printing":[null,"imprimare etichetă de livrare"],"shipping label printing and smoother payment setup":[null,""],"automated tax calculation and shipping label printing":[null,""],"automated tax calculation, shipping label printing, and smoother payment setup":[null,""],"Data resource description.":[null,""],"Data resource ID.":[null,""],"List of supported currencies.":[null,"Lista monedelor acceptate."],"List of supported states in a given country.":[null,""],"List of supported continents, countries, and states.":[null,""],"Sorry, you cannot view this resource.":[null,"Regret, nu poți vedea această resursă."],"Sorry, you cannot list resources.":[null,"Regret, nu poți afișa resursele."],"The unit weights are defined in for this country.":[null,""],"Thousands separator for displayed prices in this country.":[null,""],"Full name of state.":[null,""],"State code.":[null,""],"List of states in this country.":[null,""],"Number of decimal points shown in displayed prices for this country.":[null,""],"Full name of country.":[null,"Numele complet al țării."],"The unit lengths are defined in for this country.":[null,""],"Decimal separator for displayed prices for this country.":[null,"Separator pentru zecimale pentru prețurile afișate în această țară."],"Currency symbol position for this country.":[null,"Poziția pentru simbolul monedei în această țară."],"Default ISO4127 alpha-3 currency code for the country.":[null,""],"ISO3166 alpha-2 country code.":[null,""],"List of countries on this continent.":[null,"Lista țărilor de pe acest continent."],"Full name of continent.":[null,"Numele complet al continentului."],"There are no locations matching these parameters.":[null,"Nu există locații care să se potrivească cu acești parametri."],"2 character continent code.":[null,""],"Shipping label tracking number":[null,""],"Shipping label service":[null,""],"Warning: Erasing personal data will cause the ability to reprint or refund WooCommerce Shipping & Tax shipping labels to be lost on the affected orders.":[null,""],"By using this extension, you may be storing personal data or sharing data with external services. <a href=\"%s\" target=\"_blank\">Learn more about how this works, including what you may want to include in your privacy policy.</a>":[null,""],"There was a problem updating your saved credit cards.":[null,"A fost o problemă la actualizarea cardurilor de credit salvate."],"No labels found for this period":[null,"Nicio etichetă găsită în această perioadă"],"Total":[null,"Total"],"Refund":[null,"Rambursează"],"Price":[null,"Preț"],"Order":[null,"Comandă"],"Time":[null,"Oră"],"Requested":[null,""],"Last 7 days":[null,"Ultimele 7 zile"],"This month":[null,"Luna aceasta"],"Last month":[null,"Luna trecută"],"Year":[null,"An"],"Export CSV":[null,"Exportă CSV-ul"],"Other Log":[null,""],"Taxes Log":[null,""],"Shipping Log":[null,"Jurnal livrare"],"Display troubleshooting information on the Cart and Checkout pages.":[null,""],"Write diagnostic messages to log files. Helpful when contacting support.":[null,""],"Enter your email address at which to accept payments. You'll need to link your own account in order to perform anything other than \"sale\" transactions.":[null,""],"Payment Email":[null,""],"To authenticate payments with WooCommerce Shipping & Tax, <a href=\"%s\">click here</a>.":[null,""],"Payments will be authenticated by WooCommerce Shipping & Tax and directed to the following email address. To disable this feature and link a PayPal account, <a href=\"%s\">click here</a>.":[null,""],"%s (Note that \"authorizing payment only\" requires linking a PayPal account.)":[null,""],"Link account":[null,"Leagă contul"],"Link a new or existing PayPal account to make sure future orders are marked “Processing” instead of “On hold”, and so refunds can be issued without leaving WooCommerce.":[null,""],"Link your PayPal account":[null,""],"To issue refunds via PayPal Checkout, you will need to <a href=\"%s\">link a PayPal account</a> with the email address that received this payment.":[null,""],"Link a PayPal account":[null,""],"Refresh":[null,"Reîmprospătează"],"Tracking number":[null,"Număr de urmărire"],"Provider":[null,"Furnizor"],"WooCommerce Shipping & Tax is almost ready to go! Once you connect Jetpack you'll have access to %s.":[null,""],"Hosted services for WooCommerce: automated tax calculation, shipping label printing, and smoother payment setup.":[null,""],"Tax Class":[null,""],"Shipping":[null,"Livrare"],"Compound":[null,"Compusă"],"Priority":[null,"Prioritate"],"Tax Name":[null,"Nume taxă"],"Rate %":[null,""],"ZIP/Postcode":[null,""],"State Code":[null,""],"Country Code":[null,""],"Enable automated taxes":[null,"Activează taxele automate"],"Disable automated taxes":[null,"Dezactivează taxele automate"],"Automated taxes":[null,"Taxe automate"],"By clicking \"%1$s\", you agree to the <a href=\"%2$s\">Terms of Service</a> and to <a href=\"%3$s\">share certain data and settings</a> with WordPress.com and/or third parties.":[null,""],"Setup complete.":[null,""],"You can now enjoy %s.":[null,""],"WooCommerce Shipping & Tax is almost ready to go! Once you connect your store you'll have access to %s.":[null,""],"automated tax calculation":[null,""],"smoother payment setup":[null,""],"automated tax calculation and smoother payment setup":[null,""],"Required":[null,"Obligatoriu"],"Your shipping settings have been saved.":[null,"Setările de livrare au fost salvate."],"Unable to save your shipping settings. Please try again.":[null,"Nu pot să-ți salvez setările de livrare. Te rog încearcă din nou."],"Dimensions":[null,"Dimensiuni"],"Close":[null,"Închide"],"Packages to be Shipped":[null,"Pachete care să fie livrate"],"Add to a New Package":[null,"Adaugă într-un pachet nou"],"Add items":[null,"Adaugă elemente"],"Individually Shipped Item":[null,""],"Item Dimensions":[null,"Dimensiuni element"],"Please select a package":[null,"Te rog selectează un pachet"],"Service schemas were not loaded":[null,""],"Bad request":[null,""],"Order not found":[null,"Comandă negăsită"],"Got it, thanks!":[null,""],"Activate Jetpack and connect":[null,"Activează Jetpack și conectează"],"Install Jetpack and connect":[null,"Instalează Jetpack și conectează"],"Something went wrong. Please try connecting to Jetpack manually, or contact support on the WordPress.org forums.":[null,""],"Connecting...":[null,"Conectez..."],"Activating...":[null,"Activez..."],"When you're ready, purchase and print discounted labels from %s right here.":[null,""],"Discounted Shipping Labels":[null,""],"American Express":[null,"American Express"],"Discover":[null,"Discover"],"MasterCard":[null,"MasterCard"],"VISA":[null,"VISA"],"PayPal":[null,"PayPal"],"Add another credit card":[null,"Adaugă un alt card de credit"],"%(selectedCount)d package selected":["%(selectedCount)d packages selected","%(selectedCount)d pachet selectat","%(selectedCount)d pachete selectate","%(selectedCount)d de pachete selectate"],"Unable to get your settings. Please refresh the page to try again.":[null,""],"%(numSelected)d service selected":["%(numSelected)d services selected","%(numSelected)d serviciu selectat","%(numSelected)d servicii selectate","%(numSelected)d de servicii selectate"],"Add and edit saved packages using the {{a}}Packaging Manager{{/a}}.":[null,"Adaugă și editează pachetele salvate folosind {{a}}Managerul de ambalare{{/a}}."],"Tracking #: {{trackingLink/}}":[null,"Urmăresc #: {{trackingLink/}}"],"%(item)s from {{pckg/}}":[null,"%(item)s din {{pckg/}}"],"Which items would you like to add to {{pckg/}}?":[null,"Care elemente vrei să le adaugi în {{pckg/}}?"],"1 item in 1 package: %(weight)s %(unit)s total":[null,""],"%(itemsCount)d items in 1 package: %(weight)s %(unit)s total":[null,""],"%(itemsCount)d items in %(packageCount)d packages: %(weight)s %(unit)s total":[null,""],"{{itemLink/}} is currently saved for a later shipment.":[null,"{{itemLink/}} este salvat în prezent pentru o livrare ulterioară."],"{{itemLink/}} is currently shipped in its original packaging.":[null,"{{itemLink/}} este livrat în prezent în ambalajul original."],"{{itemLink/}} is currently in {{pckg/}}.":[null,"{{itemLink/}} este în prezent în {{pckg/}}."],"Choose rate: %(pckg)s":[null,"Alege impozitul: %(pckg)s"],"Refund label (-%(amount)s)":[null,"Etichetă de rambursare (-%(amount)s)"],"Where would you like to move it?":[null,"Unde vrei să-l muți?"],"Unsaved changes made to packages":[null,"Modificări nesalvate făcute la pachete"],"There are no items in this package.":[null,"Nu este niciun element în acest pachet."],"Ship in original packaging":[null,"Livrează în ambalajul original"],"Request refund":[null,"Cere rambursare"],"Reprint":[null,""],"Paper size":[null,"Dimensiune hârtie"],"No packages selected":[null,"Niciun pachet selectat"],"Move":[null,"Mută"],"Move item":[null,"Mută element"],"Increase the rates calculated by the carrier to account for packaging and handling costs. You can also add a negative amount to save your customers money.":[null,""],"Create new label":[null,"Creează etichetă nouă"],"All packages selected":[null,"Toate pachetele selectate"],"Add":[null,"Adaugă"],"Add item":[null,"Adaugă element"],"Add a credit card":[null,"Adaugă un card de credit"],"#%d - [Deleted product]":[null,"#%d - [produs șters]"],"#%1$d - %2$s":[null,"#%1$d - %2$s"],"<a href=\"%s\">Support</a>":[null,"<a href=\"%s\">Suport</a>"],"There was an error installing Jetpack. Please try installing it manually.":[null,""],"Shipping Labels":[null,"Etichete de livrare"],"Automattic":[null,"Automattic"],"https://woocommerce.com/":[null,"https://woocommerce.com/"],"Phone":[null,"Telefon"],"Connect":[null,"Conectare"],"Save Settings":[null,"Salvează setările"],"Your changes have been saved.":[null,"Modificările tale au fost salvate."],"There was a problem with one or more entries. Please fix the errors below and try saving again.":[null,"A existat o problemă cu una sau mai multe intrări. Te rog corectează erorile de mai jos și încearcă să salvezi din nou."],"Expand":[null,"Extinde"],"Dismiss":[null,"Respinge"],"You have unsaved changes.":[null,"Ai modificări nesalvate."],"Type of package":[null,"Tip de pachet"],"Add package":["Add packages","Adaugă pachet","",""],"Invalid value.":[null,"Valoare invalidă."],"This field is required":[null,"Acest câmp este obligatoriu"],"Package name":[null,"Nume pachet"],"This field must be unique":[null,"Acest câmp trebuie să fie unic"],"Unable to save your shipping packages. Please try again.":[null,"Nu pot să-ți salvez pachetele de livrare. Te rog încearcă din nou."],"Save changes":[null,"Salvează modificările"],"Untitled":[null,"Fără titlu"],"Dimensions (L x W x H)":[null,""],"All services selected":[null,"Toate serviciile selectate"],"Expand Services":[null,"Extinde serviciile"],"Service":[null,"Serviciu"],"Price adjustment":[null,"Ajustare preț"],"Saved Packages":[null,"Pachete salvate"],"Tracking":[null,"Urmărire"],"Create shipping label":["Create shipping labels","Creează etichetă de livrare","",""],"Name":[null,"Nume"],"Company":[null,"Companie"],"Address":[null,"Adresă"],"City":[null,"Oraș"],"State":[null,"Județ (provincie, stat)"],"Country":[null,"Țară"],"Invalid address":[null,"Adresă invalidă"],"Origin address":[null,"Adresă inițială"],"Destination address":[null,"Adresă de destinație"],"We have slightly modified the address entered. If correct, please use the suggested address to ensure accurate delivery.":[null,""],"Address entered":[null,"Adresă introdusă"],"Edit address":[null,"Editează adresa"],"Suggested address":[null,"Adresă sugerată"],"Use selected address":[null,"Folosește adresa selectată"],"Use these packages":[null,"Folosește aceste pachete"],"The service and rate chosen by the customer at checkout is not available. Please choose another.":[null,""],"Request a refund":[null,"Cere o rambursare"],"You can request a refund for a shipping label that has not been used to ship a package. It will take at least %(days)s days to process.":[null,""],"Purchase date":[null,"Data cumpărării"],"Amount eligible for refund":[null,"Sumă eligibilă pentru rambursare"],"Reprint shipping label":[null,""],"If there was a printing error when you purchased the label, you can print it again.":[null,""],"NOTE: If you already used the label in a package, printing and using it again is a violation of our terms of service and may result in criminal charges.":[null,""],"Print":[null,"Imprimă"],"Cancel":[null,"Anulează"],"N/A":[null,"Nu se aplică"],"More":[null,"Mai mult"],"Invalid PDF request.":[null,""],"Unknown package":[null,"Pachet necunoscut"],"Individual packaging":[null,""],"Unable to update service settings. Validation failed. %s":[null,""],"Unable to update service settings. The form data could not be read.":[null,""],"Unable to update service settings. Form data is missing service ID.":[null,""],"Unable to update settings. The form data could not be read.":[null,""],"Unable to update settings. %s":[null,""],"Packaging":[null,""],"Section not loading? Visit the <a href=\"%s\">status page</a> for troubleshooting steps.":[null,""],"Note: Jetpack development mode is enabled on this site. This site will not be able to obtain payment methods from WooCommerce Shipping & Tax production servers.":[null,""],"Note: Jetpack is connected, but development mode is also enabled on this site. Please disable development mode.":[null,""],"Shipping Label":[null,"Etichetă livrare"],"yd":[null,"yd"],"in":[null,"in"],"mm":[null,"mm"],"cm":[null,"cm"],"m":[null,"m"],"oz":[null,"oz"],"lbs":[null,"lbs"],"g":[null,"g"],"kg":[null,"kg"],"An invalid service ID was received.":[null,""],"An invalid service instance was received.":[null,""],"Rest of the World":[null,"Restul lumii"],"Support":[null,"Suport"],"Debug":[null,"Depanare"],"Services":[null,"Servicii"],"Need help?":[null,"Ai nevoie de ajutor?"],"Log is empty":[null,"Jurnalul este gol"],"Disabled":[null,""],"Enabled":[null,""],"%s Shipping Zone":[null,""],"The most recent rate request failed":[null,""],"The most recent rate request was successful":[null,""],"No rate requests have yet been made for this service":[null,""],"Setup for this service has not yet been completed":[null,""],"Service data is up-to-date":[null,""],"Service data was found, but is more than one day old":[null,""],"Service data was found, but is more than three days old":[null,""],"Service data found, but may be out of date":[null,""],"No service data available":[null,""],"Jetpack":[null,"Jetpack"],"Jetpack %s is connected and working correctly":[null,"Jetpack %s este conectat și funcționează corect"],"This is a Jetpack staging site":[null,""],"Jetpack is not connected to WordPress.com. Make sure the Jetpack plugin is installed, activated, and connected.":[null,""],"Jetpack %1$s or higher is required (You are running %2$s)":[null,""],"Please install and activate the Jetpack plugin, version %s or higher":[null,""],"WooCommerce":[null,"WooCommerce"],"WooCommerce %s is configured correctly":[null,"WooCommerce %s este configurat corect"],"Please set Base Location in WooCommerce Settings > General":[null,""],"WooCommerce %1$s or higher is required (You are running %2$s)":[null,""],"Dismiss this notice":[null,""],"ERROR: Your site has a problem connecting to the WooCommerce Shipping & Tax API. Please make sure your Jetpack connection is working.":[null,""],"Your site is succesfully communicating to the WooCommerce Shipping & Tax API.":[null,""],"This will test your WooCommerce Shipping & Tax connection to ensure everything is working correctly":[null,""],"Test Connection":[null,"Testează conexiunea"],"The WooCommerce Shipping & Tax brandname\u0004WooCommerce Shipping & Tax":[null,""],"The WooCommerce Shipping & Tax brandname\u0004WooCommerce Shipping":[null,""],"%s - ZIP/Postal code checkout field label\u0004Invalid %s entered.":[null,""],"%s - ZIP/Postal code checkout field label\u0004%s does not match the selected state.":[null,""],"date is of the form MM/YY\u0004Expires %(date)s":[null,"Expiră în %(date)s"],"A service with an unknown title and unknown method_title\u0004Unknown":[null,"Necunoscut"],"This section displays the overall health of WooCommerce Shipping & Tax and the things it depends on\u0004Health":[null,"Sănătate"]}
1
+ {"0":[null,"0"],"":{"po-revision-date":"2021-01-12 11:34:28+0000","mime-version":"1.0","content-type":"text/plain; charset=UTF-8","content-transfer-encoding":"8bit","plural-forms":"nplurals=3; plural=(n == 1) ? 0 : ((n == 0 || n % 100 >= 2 && n % 100 <= 19) ? 1 : 2);","x-generator":"GlotPress/3.0.0-alpha.2","language":"ro","project-id-version":"Plugins - WooCommerce Shipping &amp; Tax - Stable (latest release)"},"Features":[null,""],"Carrier":[null,""],"Express delivery from the experts in international shipping":[null,""],"Live rates for %(carrierName)s at checkout":[null,""],"Ship with the largest delivery network in the United States":[null,""],"Discounted %(carrierName)s shipping labels":[null,""],"To be displayed at checkout, this carrier must be added as a shipping method to selected shipping zones":[null,""],"Add to shipping zones":[null,""],"Show live rates directly on your store - never under or overcharge for shipping again":[null,""],"Live rates at checkout":[null,""],"Last updated %s.":[null,""],"At least one of the new predefined packages has the same name as existing packages.":[null,""],"The new predefined package names are not unique.":[null,""],"At least one of the new custom packages has the same name as existing packages.":[null,""],"The new custom package names are not unique.":[null,""],"Go to shipping zones":[null,""],"Add DHL Express as a shipping method to selected shipping zones to display live rates at checkout.":[null,""],"DHL Express live rates are now available":[null,""],"State %1$s is invalid for %2$s.":[null,""],"%1$s %2$s is invalid for %3$s.":[null,""],"A %1$s is required for %2$s.":[null,""],"A country is required":[null,""],"Your store is over the limit for rate calls this month and your account will be charged for overages. To prevent future overage charges you can upgrade your plan.":[null,""],"There was an error trying to activate your subscription.":[null,""],"Your subscription was succesfully activated.":[null,""],"Manage":[null,""],"Usage":[null,""],"View and manage your subscription usage":[null,""],"Shipping method":[null,""],"The subscription is already active.":[null,""],"Set up your own carrier account to compare rates and print labels from multiple carriers in WooCommerce Shipping. Learn more about adding {{a}}carrier accounts{{/a}}.":[null,""],"There was an error connecting to your %(carrierName)s account. Please check that all of the information entered matches your %(carrierName)s account and try to connect again.":[null,""],"Your carrier account was connected successfully.":[null,""],"The date must be a valid date in the format YYYY-MM-DD":[null,""],"The invoice number needs to be 9 or 13 letters and digits in length":[null,""],"The company website format is not valid":[null,""],"The email format is not valid":[null,""],"The ZIP/Postal code needs to be 5 digits in length":[null,""],"The phone number needs to be 10 digits in length":[null,""],"The UPS account number needs to be 6 letters and digits in length":[null,""],"This will remove the connection with %(carrier_name)s. All of your %(carrier_name)s account information will be deleted and you won\\u2019t see %(carrier_name)s rates.":[null,""],"Disconnect your %(carrier_name)s account":[null,""],"There was an error trying to disconnect your carrier account":[null,""],"Your carrier account was disconnected succesfully.":[null,""],"DHL Express":[null,""],"Powered by WooCommerce Tax. If automated taxes are enabled, you'll need to enter prices exclusive of tax.":[null,""],"WooCommerce Helper auth is missing":[null,""],"USPS labels without tracking are not eligible for refund.":[null,""],"General Information":[null,""],"Connect your %(carrierName)s account":[null,""],"%(carrierName)s not supported.":[null,""],"Loading":[null,""],"WooCommerce Shipping & Tax Data":[null,""],"Print customs form":[null,""],"Test your WooCommerce Shipping & Tax connection":[null,""],"WooCommerce Shipping & Tax Status":[null,""],"Connect your store to activate WooCommerce Shipping & Tax":[null,""],"Connect Jetpack to activate WooCommerce Shipping & Tax":[null,""],"WooCommerce Shipping now supports DHL labels for international shipments. Purchase and print discounted labels from DHL and USPS right here.":[null,""],"Discounted DHL Shipping Labels":[null,""],"WooCommerce Shipping":[null,""],"Invalid WooCommerce Shipping & Tax service slug provided":[null,""],"WooCommerce Shipping & Tax":[null,""],"ZIP/Postal code":[null,""],"This action will delete any information entered on the form.":[null,""],"Cancel connection":[null,""],"Ok":[null,""],"UPS invoice control id":[null,""],"UPS invoice currency":[null,""],"UPS invoice amount":[null,""],"UPS invoice date":[null,""],"UPS invoice number":[null,""],"I have been issued an invoice from UPS within the past 90 days":[null,""],"UPS account information":[null,""],"Company website":[null,""],"Job title":[null,""],"Company name":[null,""],"This is the company info you used to create your UPS account":[null,""],"Company information":[null,""],"Email":[null,""],"Address 2 (optional)":[null,""],"Account number":[null,""],"This is the account number and address from your UPS profile":[null,""],"General information":[null,""],"If you need a UPS account number, go to {{a}}UPS.com{{/a}} to create a new account.":[null,""],"Set up your own UPS carrier account to compare rates and print labels from multiple carriers in WooCommerce Shipping. Learn more about adding {{a}}carrier accounts{{/a}}.":[null,""],"Connect your UPS account":[null,""],"Set up your own carrier account by adding your credentials here":[null,""],"Carrier account":[null,""],"Credentials":[null,""],"Adult signature required":[null,""],"Signature required":[null,""],"Other\\u2026":[null,""],"Select one\\u2026":[null,""],"Validating address\\u2026":[null,""],"Purchasing\\u2026":[null,""],"Your UPS account will be charged":[null,""],"Package %(index)s \\u2013 %(title)s":[null,""],"Saving\\u2026":[null,""],"Your tax rates and settings will be automatically configured for %1$s. <a href=\"https://docs.woocommerce.com/document/setting-up-taxes-in-woocommerce/#section-12\">Learn more about setting up tax rates for additional nexuses</a>":[null,""],"Your tax rates and settings will be automatically configured for %1$s, %2$s. <a href=\"https://docs.woocommerce.com/document/setting-up-taxes-in-woocommerce/#section-12\">Learn more about setting up tax rates for additional nexuses</a>":[null,""],"%(itemCount)d item is ready to be fulfilled":["%(itemCount)d items are ready to be fulfilled","","",""],"%(itemCount)d item was fulfilled on {{span}}%(createdDate)s{{/span}}":["%(itemCount)d items were fulfilled on {{span}}%(createdDate)s{{/span}}","","",""],"Schedule a pickup":[null,""],"Label images older than 180 days are deleted by our technology partners for general security and data privacy concerns.":[null,""],"Labels older than 30 days cannot be refunded.":[null,""],"Mark this order as complete and notify the customer":[null,""],"Notify the customer with shipment details":[null,""],"You save %s with WooCommerce Shipping":[null,""],"WooCommerce Shipping & Tax requires the WooCommerce plugin to be installed and active. You can download %s here.":[null,""],"No tracking information available at this time":[null,""],"Connection error: unable to create label at this time":[null,""],"Track Package":["Track Packages","","",""],"Which package would you like to track?":[null,""],"%(service)s label (#%(labelIndex)d)":[null,""],"To print this shipping label, {{a}}add a credit card to your account{{/a}}.":[null,""],"Add credit card":[null,"Adaugă card de credit"],"To print this shipping label, {{a}}choose a credit card to add to your account{{/a}}.":[null,""],"Choose credit card":[null,"Alege cardul de credit"],"Buy shipping label":["Buy shipping labels","Cumpără etichetă de livrare","Cumpără etichete de livrare","Cumpără etichete de livrare"],"shipping label ready":["shipping labels ready","eticheta de livrare este gata","etichetele de livrare sunt gata","etichetele de livrare sunt gata"],"Shipping from":[null,""],"Shipping summary":[null,"Rezumat livrare"],"Customer paid a {{shippingMethod/}} of {{shippingCost/}} for shipping":[null,""],"Shipping rates":[null,""],"HS Tariff number":[null,""],"Submit":[null,"Trimite"],"Total Weight (with package)":[null,""],"QTY":[null,""],"Weight":[null,"Greutate"],"Items to fulfill":[null,""],"Select a package type":[null,"Selectează un tip de pachet"],"Package details":[null,"Detalii pachet"],"Your shipping packages have been saved.":[null,"Pachetele de livrare au fost salvate."],"0.0":[null,""],"Shipment Tracking":[null,""],"Customs information valid":[null,""],"Customs information incomplete":[null,""],"Packing Log:":[null,""],"Chosen Rate:":[null,""],"Shipping Method ID:":[null,"ID metodă de livrare:"],"Shipping Method Name:":[null,"Nume metodă de livrare:"],"Shipping Debug":[null,""],"<strong>\"%2$s\" is missing weight, length, width, or height.</strong><br />Shipping rates cannot be calculated. <a href=\"%1$s\">Enter dimensions and weight for %2$s</a> so your customers can purchase this item.":[null,""],"Unable to send request to WooCommerce Shipping & Tax server. The timestamp generated for the signature is too old.":[null,""],"Unable to send request to WooCommerce Shipping & Tax server. Jetpack Token is malformed.":[null,""],"Unable to send request to WooCommerce Shipping & Tax server. Jetpack Token is missing":[null,""],"Error: The WooCommerce Shipping & Tax server returned: %1$s %2$s ( %3$d )":[null,""],"Error: The WooCommerce Shipping & Tax server returned ( %d ) and an empty response body.":[null,""],"Error: The WooCommerce Shipping & Tax server returned HTTP code: %d":[null,""],"Unable to encode body for request to WooCommerce Shipping & Tax server.":[null,""],"Unable to send request to WooCommerce Shipping & Tax server. Body must be an array.":[null,""],"Unable to send request to WooCommerce Shipping & Tax server. Jetpack connection does not implement get_access_token.":[null,""],"Unable to send request to WooCommerce Shipping & Tax server. Jetpack_Data was not found.":[null,""],"No shipping rate could be calculated. No items in the package are shippable.":[null,""],"Product ( ID: %d ) is missing a dimension value. Shipping rates cannot be calculated.":[null,""],"Product ( ID: %d ) did not include a weight. Shipping rates cannot be calculated.":[null,""],"Packing log:":[null,""],"Received rate: %1$s (%2$s)":[null,""],"Your customer selected {{shippingMethod/}}":[null,""],"Total rate: %(total)s":[null,""],"%(serviceName)s: %(rate)s":[null,""],"No rates found":[null,""],"WooCommerce Shipping gives you access to USPS Commercial Pricing, which is discounted over Retail rates.":[null,""],"more info":[null,"mai multe informații"],"ITN":[null,"ITN"],"Sanitary / Phytosanitary inspection":[null,""],"Quarantine":[null,"Carantină"],"None":[null,""],"Restriction type":[null,"Tip de restricție"],"Details":[null,"Detalii"],"Sample":[null,""],"Gift":[null,""],"Documents":[null,"Documente"],"Merchandise":[null,"Mărfuri"],"Contents type":[null,"Tip de conținut"],"Return to sender if package is unable to be delivered":[null,"Dacă pachetul nu poate fi livrat, returnează-l la expeditor"],"Value (per unit)":[null,"Valoare (pe bucată)"],"Weight (per unit)":[null,"Greutate (pe bucată)"],"Save customs form":[null,"Salvează formularul vamal"],"Customs":[null,"Vamă"],"Use address as entered":[null,"Folosește adresa așa cum este introdusă"],"View on Google Maps":[null,""],"Verify with USPS":[null,"Verifică cu USPS"],"Automatic verification failed for this address. It may still be a valid address \\u2014 use the tools below to manually verify.":[null,"Verificarea automată a eșuat pentru această adresă. Poate fi totuși o adresă validă - folosește instrumentele de mai jos pentru a o verifica manual."],"We were unable to automatically verify the address.":[null,"Nu am putut să verificăm automat adresa."],"We were unable to automatically verify the address \\u2014 %(error)s.":[null,"Nu am putut să verificăm automat adresa - %(error)s."],"You've edited the address, please revalidate it for accurate rates":[null,"Ai editat adresa, te rog s-o revalidezi pentru a avea impozite corecte"],"Verify address":[null,"Verifică adresa"],"%(message)s. Please modify the address and try again.":[null,"%(message)s. Te rog modifică adresa și încearcă din nou."],"View details":[null,"Vezi detalii"],"Items":[null,"Elemente"],"Package":[null,"Pachet"],"Receipt":[null,"Chitanță"],"Label #%(labelIndex)s details":[null,"Detalii etichetă #%(labelIndex)s"],"{{icon/}} Delete this package":[null,"{{icon/}} Șterge acest pachet"],"Done":[null,"Gata"],"Add boxes, envelopes, and other packages you use most frequently":[null,"Adaugă cutii, plicuri și alte tipuri de pachete pe care le folosești frecvent"],"Remove":[null,"Înlătură"],"Edit":[null,"Editează"],"Weight of empty package":[null,"Greutatea pachetului gol"],"Unique package name":[null,"Nume unic de pachet"],"Envelope":[null,"Plic"],"Box":[null,"Cutie"],"This field is required.":[null,"Acest câmp este obligatoriu."],"Payment":[null,"Plată"],"Email the label purchase receipts to %(ownerName)s (%(ownerLogin)s) at %(ownerEmail)s":[null,""],"Email Receipts":[null,"Chitanțe prin email"],"To purchase shipping labels, choose a credit card you have on file or add a new card.":[null,"Pentru a cumpăra etichete de livrare, alege un card de credit pe care îl ai în dosar sau adaugă un card nou."],"Choose a different card":[null,"Alege un alt card"],"To purchase shipping labels, add a credit card.":[null,"Pentru a cumpăra etichete de livrare, adaugă un card de credit."],"We'll charge the credit card on your account (%(card)s) to pay for the labels you print":[null,"Vom debita cardul de credit pentru contul tău (%(card)s) pentru a plăti etichetele pe care le imprimi"],"Credit cards are retrieved from the following WordPress.com account: %(wpcomLogin)s <%(wpcomEmail)s>":[null,"Cardurile de credit sunt preluate din următorul cont WordPress.com: %(wpcomLogin)s <%(wpcomEmail)s>"],"Only the site owner can change these settings. Please contact %(ownerName)s (%(ownerLogin)s) to change the shipping label settings.":[null,"Numai proprietarul sitului poate modifica aceste setări. Te rog contactează %(ownerName)s (%(ownerLogin)s) pentru a modifica setările etichetelor de livrare."],"Only the site owner can manage shipping label payment methods. Please contact %(ownerName)s (%(ownerLogin)s) to manage payment methods.":[null,"Numai proprietarul sitului poate administra metodele de plată cu etichete de livrare. Te rog contactează %(ownerName)s (%(ownerLogin)s) pentru administra metodele de plată."],"%(card)s ****%(digits)s":[null,"%(card)s ****%(digits)s"],"Print shipping labels yourself and save a trip to the post office":[null,"Imprimă-ți singur etichetele de livrare ca să nu mai mergi la oficiul poștal"],"H":[null,""],"W":[null,""],"L":[null,""],"Disconnect":[null,"Deconectează"],"Activate":[null,"Activează"],"No activity yet":[null,"Nicio activitate până acum"],"Note":[null,"Notă"],"Refunded %(amount)s":[null,""],"%(service)s label (#%(labelNum)d) refund rejected":[null,""],"%(service)s label (#%(labelNum)d) refunded (%(amount)s)":[null,""],"%(service)s label (#%(labelNum)d) refund requested (%(amount)s)":[null,""],"Note sent to customer":[null,"Notă trimisă clientului"],"Internal note":[null,"Notă internă"],"Show notes from %(date)s":[null,"Arată note din %(date)s"],"%(count)s event":["%(count)s events","%(count)s eveniment","%(count)s evenimente","%(count)s de evenimente"],"WeChat Pay":[null,"Plată WeChat"],"Toggle menu":[null,"Comută meniul"],"Return to Order #%(orderId)s":[null,""],"Our team is here for you. View our {{docsA}}support docs{{/docsA}} or {{ticketA}}open a support ticket{{/ticketA}}.":[null,""],"Logging":[null,""],"No services configured. {{a}}Add a shipping service{{/a}}":[null,"Niciun serviciu configurat. {{a}}Adaugă un serviciu de livrare{{/a}}"],"Edit service settings":[null,"Editează setări servicii"],"Request was made %s - check logs below or {{a}}edit service settings{{/a}}":[null,""],"Copy for support":[null,""],"Last %s entry. {{a}}Show full log{{/a}}":["Last %s entries. {{a}}Show full log{{/a}}","","",""],"Log tail copied to clipboard":[null,""],"You have unsaved changes. Are you sure you want to leave this page?":[null,""],"Value ($ per unit)":[null,"Valoare ($ pe bucată)"],"Weight (%s per unit)":[null,"Greutate (%s pe bucată)"],"Description":[null,"Descriere"],"Country where the product was manufactured or assembled":[null,"Țara unde produsul a fost fabricat sau asamblat"],"Origin country":[null,"Țară de origine"],"USPS":[null,""],"Optional":[null,"Opțional"],"Retry":[null,"Reîncearcă"],"shipping label printing":[null,"imprimare etichetă de livrare"],"shipping label printing and smoother payment setup":[null,""],"automated tax calculation and shipping label printing":[null,""],"automated tax calculation, shipping label printing, and smoother payment setup":[null,""],"Data resource description.":[null,""],"Data resource ID.":[null,""],"List of supported currencies.":[null,"Lista monedelor acceptate."],"List of supported states in a given country.":[null,""],"List of supported continents, countries, and states.":[null,""],"Sorry, you cannot view this resource.":[null,"Regret, nu poți vedea această resursă."],"Sorry, you cannot list resources.":[null,"Regret, nu poți afișa resursele."],"The unit weights are defined in for this country.":[null,""],"Thousands separator for displayed prices in this country.":[null,""],"Full name of state.":[null,""],"State code.":[null,""],"List of states in this country.":[null,""],"Number of decimal points shown in displayed prices for this country.":[null,""],"Full name of country.":[null,"Numele complet al țării."],"The unit lengths are defined in for this country.":[null,""],"Decimal separator for displayed prices for this country.":[null,"Separator pentru zecimale pentru prețurile afișate în această țară."],"Currency symbol position for this country.":[null,"Poziția pentru simbolul monedei în această țară."],"Default ISO4127 alpha-3 currency code for the country.":[null,""],"ISO3166 alpha-2 country code.":[null,""],"List of countries on this continent.":[null,"Lista țărilor de pe acest continent."],"Full name of continent.":[null,"Numele complet al continentului."],"There are no locations matching these parameters.":[null,"Nu există locații care să se potrivească cu acești parametri."],"2 character continent code.":[null,""],"Shipping label tracking number":[null,""],"Shipping label service":[null,""],"Warning: Erasing personal data will cause the ability to reprint or refund WooCommerce Shipping & Tax shipping labels to be lost on the affected orders.":[null,""],"By using this extension, you may be storing personal data or sharing data with external services. <a href=\"%s\" target=\"_blank\">Learn more about how this works, including what you may want to include in your privacy policy.</a>":[null,""],"There was a problem updating your saved credit cards.":[null,"A fost o problemă la actualizarea cardurilor de credit salvate."],"No labels found for this period":[null,"Nicio etichetă găsită în această perioadă"],"Total":[null,"Total"],"Refund":[null,"Rambursează"],"Price":[null,"Preț"],"Order":[null,"Comandă"],"Time":[null,"Oră"],"Requested":[null,""],"Last 7 days":[null,"Ultimele 7 zile"],"This month":[null,"Luna aceasta"],"Last month":[null,"Luna trecută"],"Year":[null,"An"],"Export CSV":[null,"Exportă CSV-ul"],"Other Log":[null,""],"Taxes Log":[null,""],"Shipping Log":[null,"Jurnal livrare"],"Display troubleshooting information on the Cart and Checkout pages.":[null,""],"Write diagnostic messages to log files. Helpful when contacting support.":[null,""],"Enter your email address at which to accept payments. You'll need to link your own account in order to perform anything other than \"sale\" transactions.":[null,""],"Payment Email":[null,""],"To authenticate payments with WooCommerce Shipping & Tax, <a href=\"%s\">click here</a>.":[null,""],"Payments will be authenticated by WooCommerce Shipping & Tax and directed to the following email address. To disable this feature and link a PayPal account, <a href=\"%s\">click here</a>.":[null,""],"%s (Note that \"authorizing payment only\" requires linking a PayPal account.)":[null,""],"Link account":[null,"Leagă contul"],"Link a new or existing PayPal account to make sure future orders are marked “Processing” instead of “On hold”, and so refunds can be issued without leaving WooCommerce.":[null,""],"Link your PayPal account":[null,""],"To issue refunds via PayPal Checkout, you will need to <a href=\"%s\">link a PayPal account</a> with the email address that received this payment.":[null,""],"Link a PayPal account":[null,""],"Refresh":[null,"Reîmprospătează"],"Tracking number":[null,"Număr de urmărire"],"Provider":[null,"Furnizor"],"WooCommerce Shipping & Tax is almost ready to go! Once you connect Jetpack you'll have access to %s.":[null,""],"Hosted services for WooCommerce: automated tax calculation, shipping label printing, and smoother payment setup.":[null,""],"Tax Class":[null,""],"Shipping":[null,"Livrare"],"Compound":[null,"Compusă"],"Priority":[null,"Prioritate"],"Tax Name":[null,"Nume taxă"],"Rate %":[null,""],"ZIP/Postcode":[null,""],"State Code":[null,""],"Country Code":[null,""],"Enable automated taxes":[null,"Activează taxele automate"],"Disable automated taxes":[null,"Dezactivează taxele automate"],"Automated taxes":[null,"Taxe automate"],"By clicking \"%1$s\", you agree to the <a href=\"%2$s\">Terms of Service</a> and to <a href=\"%3$s\">share certain data and settings</a> with WordPress.com and/or third parties.":[null,""],"Setup complete.":[null,""],"You can now enjoy %s.":[null,""],"WooCommerce Shipping & Tax is almost ready to go! Once you connect your store you'll have access to %s.":[null,""],"automated tax calculation":[null,""],"smoother payment setup":[null,""],"automated tax calculation and smoother payment setup":[null,""],"Required":[null,"Obligatoriu"],"Your shipping settings have been saved.":[null,"Setările de livrare au fost salvate."],"Unable to save your shipping settings. Please try again.":[null,"Nu pot să-ți salvez setările de livrare. Te rog încearcă din nou."],"Dimensions":[null,"Dimensiuni"],"Close":[null,"Închide"],"Packages to be Shipped":[null,"Pachete care să fie livrate"],"Add to a New Package":[null,"Adaugă într-un pachet nou"],"Add items":[null,"Adaugă elemente"],"Individually Shipped Item":[null,""],"Item Dimensions":[null,"Dimensiuni element"],"Please select a package":[null,"Te rog selectează un pachet"],"Service schemas were not loaded":[null,""],"Bad request":[null,""],"Order not found":[null,"Comandă negăsită"],"Got it, thanks!":[null,""],"Activate Jetpack and connect":[null,"Activează Jetpack și conectează"],"Install Jetpack and connect":[null,"Instalează Jetpack și conectează"],"Something went wrong. Please try connecting to Jetpack manually, or contact support on the WordPress.org forums.":[null,""],"Connecting...":[null,"Conectez..."],"Activating...":[null,"Activez..."],"When you're ready, purchase and print discounted labels from %s right here.":[null,""],"Discounted Shipping Labels":[null,""],"American Express":[null,"American Express"],"Discover":[null,"Discover"],"MasterCard":[null,"MasterCard"],"VISA":[null,"VISA"],"PayPal":[null,"PayPal"],"Add another credit card":[null,"Adaugă un alt card de credit"],"%(selectedCount)d package selected":["%(selectedCount)d packages selected","%(selectedCount)d pachet selectat","%(selectedCount)d pachete selectate","%(selectedCount)d de pachete selectate"],"Unable to get your settings. Please refresh the page to try again.":[null,""],"%(numSelected)d service selected":["%(numSelected)d services selected","%(numSelected)d serviciu selectat","%(numSelected)d servicii selectate","%(numSelected)d de servicii selectate"],"Add and edit saved packages using the {{a}}Packaging Manager{{/a}}.":[null,"Adaugă și editează pachetele salvate folosind {{a}}Managerul de ambalare{{/a}}."],"Tracking #: {{trackingLink/}}":[null,"Urmăresc #: {{trackingLink/}}"],"%(item)s from {{pckg/}}":[null,"%(item)s din {{pckg/}}"],"Which items would you like to add to {{pckg/}}?":[null,"Care elemente vrei să le adaugi în {{pckg/}}?"],"1 item in 1 package: %(weight)s %(unit)s total":[null,""],"%(itemsCount)d items in 1 package: %(weight)s %(unit)s total":[null,""],"%(itemsCount)d items in %(packageCount)d packages: %(weight)s %(unit)s total":[null,""],"{{itemLink/}} is currently saved for a later shipment.":[null,"{{itemLink/}} este salvat în prezent pentru o livrare ulterioară."],"{{itemLink/}} is currently shipped in its original packaging.":[null,"{{itemLink/}} este livrat în prezent în ambalajul original."],"{{itemLink/}} is currently in {{pckg/}}.":[null,"{{itemLink/}} este în prezent în {{pckg/}}."],"Choose rate: %(pckg)s":[null,"Alege impozitul: %(pckg)s"],"Refund label (-%(amount)s)":[null,"Etichetă de rambursare (-%(amount)s)"],"Where would you like to move it?":[null,"Unde vrei să-l muți?"],"Unsaved changes made to packages":[null,"Modificări nesalvate făcute la pachete"],"There are no items in this package.":[null,"Nu este niciun element în acest pachet."],"Ship in original packaging":[null,"Livrează în ambalajul original"],"Request refund":[null,"Cere rambursare"],"Reprint":[null,""],"Paper size":[null,"Dimensiune hârtie"],"No packages selected":[null,"Niciun pachet selectat"],"Move":[null,"Mută"],"Move item":[null,"Mută element"],"Increase the rates calculated by the carrier to account for packaging and handling costs. You can also add a negative amount to save your customers money.":[null,""],"Create new label":[null,"Creează etichetă nouă"],"All packages selected":[null,"Toate pachetele selectate"],"Add":[null,"Adaugă"],"Add item":[null,"Adaugă element"],"Add a credit card":[null,"Adaugă un card de credit"],"#%d - [Deleted product]":[null,"#%d - [produs șters]"],"#%1$d - %2$s":[null,"#%1$d - %2$s"],"<a href=\"%s\">Support</a>":[null,"<a href=\"%s\">Suport</a>"],"There was an error installing Jetpack. Please try installing it manually.":[null,""],"Shipping Labels":[null,"Etichete de livrare"],"https://woocommerce.com/":[null,"https://woocommerce.com/"],"Phone":[null,"Telefon"],"Connect":[null,"Conectare"],"Save Settings":[null,"Salvează setările"],"Your changes have been saved.":[null,"Modificările tale au fost salvate."],"There was a problem with one or more entries. Please fix the errors below and try saving again.":[null,"A existat o problemă cu una sau mai multe intrări. Te rog corectează erorile de mai jos și încearcă să salvezi din nou."],"Expand":[null,"Extinde"],"Dismiss":[null,"Respinge"],"You have unsaved changes.":[null,"Ai modificări nesalvate."],"Type of package":[null,"Tip de pachet"],"Add package":["Add packages","Adaugă pachet","",""],"Invalid value.":[null,"Valoare invalidă."],"This field is required":[null,"Acest câmp este obligatoriu"],"Package name":[null,"Nume pachet"],"This field must be unique":[null,"Acest câmp trebuie să fie unic"],"Unable to save your shipping packages. Please try again.":[null,"Nu pot să-ți salvez pachetele de livrare. Te rog încearcă din nou."],"Save changes":[null,"Salvează modificările"],"Untitled":[null,"Fără titlu"],"Dimensions (L x W x H)":[null,""],"All services selected":[null,"Toate serviciile selectate"],"Expand Services":[null,"Extinde serviciile"],"Service":[null,"Serviciu"],"Price adjustment":[null,"Ajustare preț"],"Saved Packages":[null,"Pachete salvate"],"Tracking":[null,"Urmărire"],"Create shipping label":["Create shipping labels","Creează etichetă de livrare","",""],"Name":[null,"Nume"],"Company":[null,"Companie"],"Address":[null,"Adresă"],"City":[null,"Oraș"],"State":[null,"Județ (provincie, stat)"],"Country":[null,"Țară"],"Invalid address":[null,"Adresă invalidă"],"Origin address":[null,"Adresă inițială"],"Destination address":[null,"Adresă de destinație"],"We have slightly modified the address entered. If correct, please use the suggested address to ensure accurate delivery.":[null,""],"Address entered":[null,"Adresă introdusă"],"Edit address":[null,"Editează adresa"],"Suggested address":[null,"Adresă sugerată"],"Use selected address":[null,"Folosește adresa selectată"],"Use these packages":[null,"Folosește aceste pachete"],"The service and rate chosen by the customer at checkout is not available. Please choose another.":[null,""],"Request a refund":[null,"Cere o rambursare"],"You can request a refund for a shipping label that has not been used to ship a package. It will take at least %(days)s days to process.":[null,""],"Purchase date":[null,"Data cumpărării"],"Amount eligible for refund":[null,"Sumă eligibilă pentru rambursare"],"Reprint shipping label":[null,""],"If there was a printing error when you purchased the label, you can print it again.":[null,""],"NOTE: If you already used the label in a package, printing and using it again is a violation of our terms of service and may result in criminal charges.":[null,""],"Print":[null,"Imprimă"],"Cancel":[null,"Anulează"],"N/A":[null,"Nu se aplică"],"More":[null,"Mai mult"],"Invalid PDF request.":[null,""],"Unknown package":[null,"Pachet necunoscut"],"Individual packaging":[null,""],"Unable to update service settings. Validation failed. %s":[null,""],"Unable to update service settings. The form data could not be read.":[null,""],"Unable to update service settings. Form data is missing service ID.":[null,""],"Unable to update settings. The form data could not be read.":[null,""],"Unable to update settings. %s":[null,""],"Packaging":[null,""],"Section not loading? Visit the <a href=\"%s\">status page</a> for troubleshooting steps.":[null,""],"Note: Jetpack development mode is enabled on this site. This site will not be able to obtain payment methods from WooCommerce Shipping & Tax production servers.":[null,""],"Note: Jetpack is connected, but development mode is also enabled on this site. Please disable development mode.":[null,""],"Shipping Label":[null,"Etichetă livrare"],"yd":[null,"yd"],"in":[null,"in"],"mm":[null,"mm"],"cm":[null,"cm"],"m":[null,"m"],"oz":[null,"oz"],"lbs":[null,"lbs"],"g":[null,"g"],"kg":[null,"kg"],"An invalid service ID was received.":[null,""],"An invalid service instance was received.":[null,""],"Rest of the World":[null,"Restul lumii"],"Support":[null,"Suport"],"Debug":[null,"Depanare"],"Services":[null,"Servicii"],"Need help?":[null,"Ai nevoie de ajutor?"],"Log is empty":[null,"Jurnalul este gol"],"Disabled":[null,""],"Enabled":[null,""],"%s Shipping Zone":[null,""],"The most recent rate request failed":[null,""],"The most recent rate request was successful":[null,""],"No rate requests have yet been made for this service":[null,""],"Setup for this service has not yet been completed":[null,""],"Service data is up-to-date":[null,""],"Service data was found, but is more than one day old":[null,""],"Service data was found, but is more than three days old":[null,""],"Service data found, but may be out of date":[null,""],"No service data available":[null,""],"Jetpack":[null,"Jetpack"],"Jetpack %s is connected and working correctly":[null,"Jetpack %s este conectat și funcționează corect"],"This is a Jetpack staging site":[null,""],"Jetpack is not connected to WordPress.com. Make sure the Jetpack plugin is installed, activated, and connected.":[null,""],"Jetpack %1$s or higher is required (You are running %2$s)":[null,""],"Please install and activate the Jetpack plugin, version %s or higher":[null,""],"WooCommerce":[null,"WooCommerce"],"WooCommerce %s is configured correctly":[null,"WooCommerce %s este configurat corect"],"Please set Base Location in WooCommerce Settings > General":[null,""],"WooCommerce %1$s or higher is required (You are running %2$s)":[null,""],"Dismiss this notice":[null,""],"ERROR: Your site has a problem connecting to the WooCommerce Shipping & Tax API. Please make sure your Jetpack connection is working.":[null,""],"Your site is succesfully communicating to the WooCommerce Shipping & Tax API.":[null,""],"This will test your WooCommerce Shipping & Tax connection to ensure everything is working correctly":[null,""],"Test Connection":[null,"Testează conexiunea"],"The WooCommerce Shipping & Tax brandname\u0004WooCommerce Shipping & Tax":[null,""],"The WooCommerce Shipping & Tax brandname\u0004WooCommerce Shipping":[null,""],"%s - ZIP/Postal code checkout field label\u0004Invalid %s entered.":[null,""],"%s - ZIP/Postal code checkout field label\u0004%s does not match the selected state.":[null,""],"date is of the form MM/YY\u0004Expires %(date)s":[null,"Expiră în %(date)s"],"A service with an unknown title and unknown method_title\u0004Unknown":[null,"Necunoscut"],"This section displays the overall health of WooCommerce Shipping & Tax and the things it depends on\u0004Health":[null,"Sănătate"]}
i18n/languages/woocommerce-services-ro_RO.mo CHANGED
Binary file
i18n/languages/woocommerce-services-ro_RO.po CHANGED
@@ -51,7 +51,7 @@ msgstr ""
51
  msgid "Live rates at checkout"
52
  msgstr ""
53
 
54
- #: i18n/strings.php:354
55
  msgid "Last updated %s."
56
  msgstr ""
57
 
@@ -206,7 +206,7 @@ msgstr ""
206
  msgid "WooCommerce Helper auth is missing"
207
  msgstr ""
208
 
209
- #: i18n/strings.php:364 i18n/strings.php:428
210
  msgid "USPS labels without tracking are not eligible for refund."
211
  msgstr ""
212
 
@@ -226,11 +226,11 @@ msgstr ""
226
  msgid "Loading"
227
  msgstr ""
228
 
229
- #: i18n/strings.php:353
230
  msgid "WooCommerce Shipping & Tax Data"
231
  msgstr ""
232
 
233
- #: i18n/strings.php:372 i18n/strings.php:436
234
  msgid "Print customs form"
235
  msgstr ""
236
 
@@ -277,8 +277,8 @@ msgid "Invalid WooCommerce Shipping & Tax service slug provided"
277
  msgstr ""
278
 
279
  #. Plugin Name of the plugin
280
- #: classes/class-wc-connect-privacy.php:36
281
  #: classes/class-wc-connect-settings-pages.php:123
 
282
  msgid "WooCommerce Shipping & Tax"
283
  msgstr ""
284
 
@@ -411,7 +411,7 @@ msgstr ""
411
  msgid "Validating address\\u2026"
412
  msgstr ""
413
 
414
- #: i18n/strings.php:326 i18n/strings.php:405 i18n/strings.php:469
415
  msgid "Purchasing\\u2026"
416
  msgstr ""
417
 
@@ -423,7 +423,7 @@ msgstr ""
423
  msgid "Package %(index)s \\u2013 %(title)s"
424
  msgstr ""
425
 
426
- #: i18n/strings.php:6 i18n/strings.php:170 i18n/strings.php:482
427
  msgid "Saving\\u2026"
428
  msgstr ""
429
 
@@ -437,29 +437,29 @@ msgstr ""
437
  msgid "Your tax rates and settings will be automatically configured for %1$s, %2$s. <a href=\"https://docs.woocommerce.com/document/setting-up-taxes-in-woocommerce/#section-12\">Learn more about setting up tax rates for additional nexuses</a>"
438
  msgstr ""
439
 
440
- #: i18n/strings.php:480
441
  msgid "%(itemCount)d item is ready to be fulfilled"
442
  msgid_plural "%(itemCount)d items are ready to be fulfilled"
443
  msgstr[0] ""
444
  msgstr[1] ""
445
  msgstr[2] ""
446
 
447
- #: i18n/strings.php:479
448
  msgid "%(itemCount)d item was fulfilled on {{span}}%(createdDate)s{{/span}}"
449
  msgid_plural "%(itemCount)d items were fulfilled on {{span}}%(createdDate)s{{/span}}"
450
  msgstr[0] ""
451
  msgstr[1] ""
452
  msgstr[2] ""
453
 
454
- #: i18n/strings.php:371 i18n/strings.php:435
455
  msgid "Schedule a pickup"
456
  msgstr ""
457
 
458
- #: i18n/strings.php:367 i18n/strings.php:431
459
  msgid "Label images older than 180 days are deleted by our technology partners for general security and data privacy concerns."
460
  msgstr ""
461
 
462
- #: i18n/strings.php:363 i18n/strings.php:427
463
  msgid "Labels older than 30 days cannot be refunded."
464
  msgstr ""
465
 
@@ -480,27 +480,27 @@ msgstr ""
480
  msgid "WooCommerce Shipping & Tax requires the WooCommerce plugin to be installed and active. You can download %s here."
481
  msgstr ""
482
 
483
- #: i18n/strings.php:408
484
  msgid "No tracking information available at this time"
485
  msgstr ""
486
 
487
- #: i18n/strings.php:478
488
  msgid "Connection error: unable to create label at this time"
489
  msgstr ""
490
 
491
- #: i18n/strings.php:474 i18n/strings.php:476
492
  msgid "Track Package"
493
  msgid_plural "Track Packages"
494
  msgstr[0] ""
495
  msgstr[1] ""
496
  msgstr[2] ""
497
 
498
- #: i18n/strings.php:426
499
  msgid "Which package would you like to track?"
500
  msgstr ""
501
 
502
- #: i18n/strings.php:373 i18n/strings.php:404 i18n/strings.php:437
503
- #: i18n/strings.php:468
504
  msgid "%(service)s label (#%(labelIndex)d)"
505
  msgstr ""
506
 
@@ -590,7 +590,7 @@ msgstr "Pachetele de livrare au fost salvate."
590
  msgid "0.0"
591
  msgstr ""
592
 
593
- #: woocommerce-services.php:1449
594
  msgid "Shipment Tracking"
595
  msgstr ""
596
 
@@ -602,23 +602,23 @@ msgstr ""
602
  msgid "Customs information incomplete"
603
  msgstr ""
604
 
605
- #: woocommerce-services.php:1492
606
  msgid "Packing Log:"
607
  msgstr ""
608
 
609
- #: woocommerce-services.php:1479
610
  msgid "Chosen Rate:"
611
  msgstr ""
612
 
613
- #: woocommerce-services.php:1475
614
  msgid "Shipping Method ID:"
615
  msgstr "ID metodă de livrare:"
616
 
617
- #: woocommerce-services.php:1471
618
  msgid "Shipping Method Name:"
619
  msgstr "Nume metodă de livrare:"
620
 
621
- #: woocommerce-services.php:1455
622
  msgid "Shipping Debug"
623
  msgstr ""
624
 
@@ -626,15 +626,15 @@ msgstr ""
626
  msgid "<strong>\"%2$s\" is missing weight, length, width, or height.</strong><br />Shipping rates cannot be calculated. <a href=\"%1$s\">Enter dimensions and weight for %2$s</a> so your customers can purchase this item."
627
  msgstr ""
628
 
629
- #: classes/class-wc-connect-api-client.php:595
630
  msgid "Unable to send request to WooCommerce Shipping & Tax server. The timestamp generated for the signature is too old."
631
  msgstr ""
632
 
633
- #: classes/class-wc-connect-api-client.php:534
634
  msgid "Unable to send request to WooCommerce Shipping & Tax server. Jetpack Token is malformed."
635
  msgstr ""
636
 
637
- #: classes/class-wc-connect-api-client.php:527
638
  msgid "Unable to send request to WooCommerce Shipping & Tax server. Jetpack Token is missing"
639
  msgstr ""
640
 
@@ -668,7 +668,6 @@ msgid "Unable to send request to WooCommerce Shipping & Tax server. Jetpack_Data
668
  msgstr ""
669
 
670
  #: classes/class-wc-connect-api-client.php:160
671
- #: classes/class-wc-connect-api-client.php:187
672
  msgid "No shipping rate could be calculated. No items in the package are shippable."
673
  msgstr ""
674
 
@@ -817,23 +816,23 @@ msgstr "Verifică adresa"
817
  msgid "%(message)s. Please modify the address and try again."
818
  msgstr "%(message)s. Te rog modifică adresa și încearcă din nou."
819
 
820
- #: i18n/strings.php:370 i18n/strings.php:434
821
  msgid "View details"
822
  msgstr "Vezi detalii"
823
 
824
- #: i18n/strings.php:402 i18n/strings.php:466
825
  msgid "Items"
826
  msgstr "Elemente"
827
 
828
- #: i18n/strings.php:401 i18n/strings.php:465
829
  msgid "Package"
830
  msgstr "Pachet"
831
 
832
- #: i18n/strings.php:399 i18n/strings.php:463
833
  msgid "Receipt"
834
  msgstr "Chitanță"
835
 
836
- #: i18n/strings.php:398 i18n/strings.php:462
837
  msgid "Label #%(labelIndex)s details"
838
  msgstr "Detalii etichetă #%(labelIndex)s"
839
 
@@ -948,43 +947,43 @@ msgstr "Deconectează"
948
  msgid "Activate"
949
  msgstr "Activează"
950
 
951
- #: i18n/strings.php:375 i18n/strings.php:439
952
  msgid "No activity yet"
953
  msgstr "Nicio activitate până acum"
954
 
955
- #: i18n/strings.php:383 i18n/strings.php:447
956
  msgid "Note"
957
  msgstr "Notă"
958
 
959
- #: i18n/strings.php:382 i18n/strings.php:446
960
  msgid "Refunded %(amount)s"
961
  msgstr ""
962
 
963
- #: i18n/strings.php:380 i18n/strings.php:444
964
  msgid "%(service)s label (#%(labelNum)d) refund rejected"
965
  msgstr ""
966
 
967
- #: i18n/strings.php:379 i18n/strings.php:443
968
  msgid "%(service)s label (#%(labelNum)d) refunded (%(amount)s)"
969
  msgstr ""
970
 
971
- #: i18n/strings.php:378 i18n/strings.php:442
972
  msgid "%(service)s label (#%(labelNum)d) refund requested (%(amount)s)"
973
  msgstr ""
974
 
975
- #: i18n/strings.php:377 i18n/strings.php:441
976
  msgid "Note sent to customer"
977
  msgstr "Notă trimisă clientului"
978
 
979
- #: i18n/strings.php:376 i18n/strings.php:440
980
  msgid "Internal note"
981
  msgstr "Notă internă"
982
 
983
- #: i18n/strings.php:407 i18n/strings.php:471
984
  msgid "Show notes from %(date)s"
985
  msgstr "Arată note din %(date)s"
986
 
987
- #: i18n/strings.php:406 i18n/strings.php:470
988
  msgid "%(count)s event"
989
  msgid_plural "%(count)s events"
990
  msgstr[0] "%(count)s eveniment"
@@ -996,7 +995,7 @@ msgstr[2] "%(count)s de evenimente"
996
  msgid "WeChat Pay"
997
  msgstr "Plată WeChat"
998
 
999
- #: i18n/strings.php:384 i18n/strings.php:448
1000
  msgid "Toggle menu"
1001
  msgstr "Comută meniul"
1002
 
@@ -1004,42 +1003,42 @@ msgstr "Comută meniul"
1004
  msgid "Return to Order #%(orderId)s"
1005
  msgstr ""
1006
 
1007
- #: i18n/strings.php:344
1008
  msgid "Our team is here for you. View our {{docsA}}support docs{{/docsA}} or {{ticketA}}open a support ticket{{/ticketA}}."
1009
  msgstr ""
1010
 
1011
- #: i18n/strings.php:335
1012
  msgid "Logging"
1013
  msgstr ""
1014
 
1015
- #: i18n/strings.php:362
1016
  msgid "No services configured. {{a}}Add a shipping service{{/a}}"
1017
  msgstr "Niciun serviciu configurat. {{a}}Adaugă un serviciu de livrare{{/a}}"
1018
 
1019
- #: i18n/strings.php:360
1020
  msgid "Edit service settings"
1021
  msgstr "Editează setări servicii"
1022
 
1023
- #: i18n/strings.php:359
1024
  msgid "Request was made %s - check logs below or {{a}}edit service settings{{/a}}"
1025
  msgstr ""
1026
 
1027
- #: i18n/strings.php:358
1028
  msgid "Copy for support"
1029
  msgstr ""
1030
 
1031
- #: i18n/strings.php:357
1032
  msgid "Last %s entry. {{a}}Show full log{{/a}}"
1033
  msgid_plural "Last %s entries. {{a}}Show full log{{/a}}"
1034
  msgstr[0] ""
1035
  msgstr[1] ""
1036
  msgstr[2] ""
1037
 
1038
- #: i18n/strings.php:356
1039
  msgid "Log tail copied to clipboard"
1040
  msgstr ""
1041
 
1042
- #: i18n/strings.php:11 i18n/strings.php:414
1043
  msgid "You have unsaved changes. Are you sure you want to leave this page?"
1044
  msgstr ""
1045
 
@@ -1068,7 +1067,7 @@ msgid "USPS"
1068
  msgstr ""
1069
 
1070
  #: i18n/strings.php:5 i18n/strings.php:169 i18n/strings.php:295
1071
- #: i18n/strings.php:329 i18n/strings.php:410
1072
  msgid "Optional"
1073
  msgstr "Opțional"
1074
 
@@ -1223,8 +1222,8 @@ msgstr "Nicio etichetă găsită în această perioadă"
1223
  msgid "Total"
1224
  msgstr "Total"
1225
 
1226
- #: classes/class-wc-connect-label-reports.php:170 i18n/strings.php:381
1227
- #: i18n/strings.php:445
1228
  msgid "Refund"
1229
  msgstr "Rambursează"
1230
 
@@ -1264,23 +1263,23 @@ msgstr "An"
1264
  msgid "Export CSV"
1265
  msgstr "Exportă CSV-ul"
1266
 
1267
- #: i18n/strings.php:341
1268
  msgid "Other Log"
1269
  msgstr ""
1270
 
1271
- #: i18n/strings.php:340
1272
  msgid "Taxes Log"
1273
  msgstr ""
1274
 
1275
- #: i18n/strings.php:339
1276
  msgid "Shipping Log"
1277
  msgstr "Jurnal livrare"
1278
 
1279
- #: i18n/strings.php:332
1280
  msgid "Display troubleshooting information on the Cart and Checkout pages."
1281
  msgstr ""
1282
 
1283
- #: i18n/strings.php:336
1284
  msgid "Write diagnostic messages to log files. Helpful when contacting support."
1285
  msgstr ""
1286
 
@@ -1324,15 +1323,15 @@ msgstr ""
1324
  msgid "Link a PayPal account"
1325
  msgstr ""
1326
 
1327
- #: i18n/strings.php:355
1328
  msgid "Refresh"
1329
  msgstr "Reîmprospătează"
1330
 
1331
- #: woocommerce-services.php:1230
1332
  msgid "Tracking number"
1333
  msgstr "Număr de urmărire"
1334
 
1335
- #: woocommerce-services.php:1229
1336
  msgid "Provider"
1337
  msgstr "Furnizor"
1338
 
@@ -1424,7 +1423,7 @@ msgid "automated tax calculation and smoother payment setup"
1424
  msgstr ""
1425
 
1426
  #: classes/class-wc-connect-paypal-ec.php:323 i18n/strings.php:4
1427
- #: i18n/strings.php:168 i18n/strings.php:328 i18n/strings.php:409
1428
  msgid "Required"
1429
  msgstr "Obligatoriu"
1430
 
@@ -1440,7 +1439,7 @@ msgstr "Nu pot să-ți salvez setările de livrare. Te rog încearcă din nou."
1440
  msgid "Dimensions"
1441
  msgstr "Dimensiuni"
1442
 
1443
- #: i18n/strings.php:270 i18n/strings.php:397 i18n/strings.php:461
1444
  msgid "Close"
1445
  msgstr "Închide"
1446
 
@@ -1552,18 +1551,18 @@ msgstr[2] "%(selectedCount)d de pachete selectate"
1552
  msgid "Unable to get your settings. Please refresh the page to try again."
1553
  msgstr ""
1554
 
1555
- #: i18n/strings.php:421
1556
  msgid "%(numSelected)d service selected"
1557
  msgid_plural "%(numSelected)d services selected"
1558
  msgstr[0] "%(numSelected)d serviciu selectat"
1559
  msgstr[1] "%(numSelected)d servicii selectate"
1560
  msgstr[2] "%(numSelected)d de servicii selectate"
1561
 
1562
- #: i18n/strings.php:419
1563
  msgid "Add and edit saved packages using the {{a}}Packaging Manager{{/a}}."
1564
  msgstr "Adaugă și editează pachetele salvate folosind {{a}}Managerul de ambalare{{/a}}."
1565
 
1566
- #: i18n/strings.php:374 i18n/strings.php:438
1567
  msgid "Tracking #: {{trackingLink/}}"
1568
  msgstr "Urmăresc #: {{trackingLink/}}"
1569
 
@@ -1603,7 +1602,7 @@ msgstr "{{itemLink/}} este în prezent în {{pckg/}}."
1603
  msgid "Choose rate: %(pckg)s"
1604
  msgstr "Alege impozitul: %(pckg)s"
1605
 
1606
- #: i18n/strings.php:386 i18n/strings.php:450
1607
  msgid "Refund label (-%(amount)s)"
1608
  msgstr "Etichetă de rambursare (-%(amount)s)"
1609
 
@@ -1623,17 +1622,17 @@ msgstr "Nu este niciun element în acest pachet."
1623
  msgid "Ship in original packaging"
1624
  msgstr "Livrează în ambalajul original"
1625
 
1626
- #: i18n/strings.php:365 i18n/strings.php:366 i18n/strings.php:429
1627
- #: i18n/strings.php:430
1628
  msgid "Request refund"
1629
  msgstr "Cere rambursare"
1630
 
1631
- #: i18n/strings.php:368 i18n/strings.php:432
1632
  msgid "Reprint"
1633
  msgstr ""
1634
 
1635
- #: i18n/strings.php:58 i18n/strings.php:309 i18n/strings.php:396
1636
- #: i18n/strings.php:460
1637
  msgid "Paper size"
1638
  msgstr "Dimensiune hârtie"
1639
 
@@ -1649,11 +1648,11 @@ msgstr "Mută"
1649
  msgid "Move item"
1650
  msgstr "Mută element"
1651
 
1652
- #: i18n/strings.php:425
1653
  msgid "Increase the rates calculated by the carrier to account for packaging and handling costs. You can also add a negative amount to save your customers money."
1654
  msgstr ""
1655
 
1656
- #: i18n/strings.php:475
1657
  msgid "Create new label"
1658
  msgstr "Creează etichetă nouă"
1659
 
@@ -1674,19 +1673,19 @@ msgid "Add a credit card"
1674
  msgstr "Adaugă un card de credit"
1675
 
1676
  #. translators: %d: Deleted Product ID
1677
- #: classes/class-wc-connect-compatibility-wc30.php:130
1678
  #: classes/class-wc-connect-compatibility-wc26.php:116
 
1679
  msgid "#%d - [Deleted product]"
1680
  msgstr "#%d - [produs șters]"
1681
 
1682
  #. translators: %1$d: Product ID, %2$s: Product Name
1683
- #: classes/class-wc-connect-compatibility-wc30.php:125
1684
  #: classes/class-wc-connect-compatibility-wc26.php:111
 
1685
  msgid "#%1$d - %2$s"
1686
  msgstr "#%1$d - %2$s"
1687
 
1688
  #. translators: %s Support url
1689
- #: woocommerce-services.php:1565
1690
  msgid "<a href=\"%s\">Support</a>"
1691
  msgstr "<a href=\"%s\">Suport</a>"
1692
 
@@ -1694,22 +1693,18 @@ msgstr "<a href=\"%s\">Suport</a>"
1694
  msgid "There was an error installing Jetpack. Please try installing it manually."
1695
  msgstr ""
1696
 
1697
- #: woocommerce-services.php:1066 woocommerce-services.php:1069
1698
- #: i18n/strings.php:43
1699
  msgid "Shipping Labels"
1700
  msgstr "Etichete de livrare"
1701
 
1702
- #. Author of the plugin
1703
- msgid "Automattic"
1704
- msgstr "Automattic"
1705
-
1706
  #. Plugin URI of the plugin
1707
  #. Author URI of the plugin
1708
  msgid "https://woocommerce.com/"
1709
  msgstr "https://woocommerce.com/"
1710
 
1711
- #: woocommerce-services.php:1515 woocommerce-services.php:1543
1712
- #: i18n/strings.php:143 i18n/strings.php:215
1713
  msgid "Phone"
1714
  msgstr "Telefon"
1715
 
@@ -1718,15 +1713,15 @@ msgstr "Telefon"
1718
  msgid "Connect"
1719
  msgstr "Conectare"
1720
 
1721
- #: i18n/strings.php:7 i18n/strings.php:171 i18n/strings.php:483
1722
  msgid "Save Settings"
1723
  msgstr "Salvează setările"
1724
 
1725
- #: i18n/strings.php:415
1726
  msgid "Your changes have been saved."
1727
  msgstr "Modificările tale au fost salvate."
1728
 
1729
- #: i18n/strings.php:416
1730
  msgid "There was a problem with one or more entries. Please fix the errors below and try saving again."
1731
  msgstr "A existat o problemă cu una sau mai multe intrări. Te rog corectează erorile de mai jos și încearcă să salvezi din nou."
1732
 
@@ -1734,11 +1729,11 @@ msgstr "A existat o problemă cu una sau mai multe intrări. Te rog corectează
1734
  msgid "Expand"
1735
  msgstr "Extinde"
1736
 
1737
- #: i18n/strings.php:411 i18n/strings.php:481
1738
  msgid "Dismiss"
1739
  msgstr "Respinge"
1740
 
1741
- #: i18n/strings.php:10 i18n/strings.php:413
1742
  msgid "You have unsaved changes."
1743
  msgstr "Ai modificări nesalvate."
1744
 
@@ -1774,7 +1769,7 @@ msgstr "Acest câmp trebuie să fie unic"
1774
  msgid "Unable to save your shipping packages. Please try again."
1775
  msgstr "Nu pot să-ți salvez pachetele de livrare. Te rog încearcă din nou."
1776
 
1777
- #: i18n/strings.php:41 i18n/strings.php:417
1778
  msgid "Save changes"
1779
  msgstr "Salvează modificările"
1780
 
@@ -1786,32 +1781,32 @@ msgstr "Fără titlu"
1786
  msgid "Dimensions (L x W x H)"
1787
  msgstr ""
1788
 
1789
- #: i18n/strings.php:420
1790
  msgid "All services selected"
1791
  msgstr "Toate serviciile selectate"
1792
 
1793
- #: i18n/strings.php:37 i18n/strings.php:199 i18n/strings.php:422
1794
  msgid "Expand Services"
1795
  msgstr "Extinde serviciile"
1796
 
1797
- #: classes/class-wc-connect-label-reports.php:167 i18n/strings.php:400
1798
- #: i18n/strings.php:423 i18n/strings.php:464
1799
  msgid "Service"
1800
  msgstr "Serviciu"
1801
 
1802
- #: i18n/strings.php:424
1803
  msgid "Price adjustment"
1804
  msgstr "Ajustare preț"
1805
 
1806
- #: i18n/strings.php:418
1807
  msgid "Saved Packages"
1808
  msgstr "Pachete salvate"
1809
 
1810
- #: woocommerce-services.php:1218 woocommerce-services.php:1225
1811
  msgid "Tracking"
1812
  msgstr "Urmărire"
1813
 
1814
- #: i18n/strings.php:207 i18n/strings.php:473 i18n/strings.php:477
1815
  msgid "Create shipping label"
1816
  msgid_plural "Create shipping labels"
1817
  msgstr[0] "Creează etichetă de livrare"
@@ -1885,51 +1880,51 @@ msgstr "Folosește aceste pachete"
1885
  msgid "The service and rate chosen by the customer at checkout is not available. Please choose another."
1886
  msgstr ""
1887
 
1888
- #: i18n/strings.php:387 i18n/strings.php:451
1889
  msgid "Request a refund"
1890
  msgstr "Cere o rambursare"
1891
 
1892
- #: i18n/strings.php:388 i18n/strings.php:452
1893
  msgid "You can request a refund for a shipping label that has not been used to ship a package. It will take at least %(days)s days to process."
1894
  msgstr ""
1895
 
1896
- #: i18n/strings.php:389 i18n/strings.php:453
1897
  msgid "Purchase date"
1898
  msgstr "Data cumpărării"
1899
 
1900
- #: i18n/strings.php:390 i18n/strings.php:454
1901
  msgid "Amount eligible for refund"
1902
  msgstr "Sumă eligibilă pentru rambursare"
1903
 
1904
- #: i18n/strings.php:369 i18n/strings.php:393 i18n/strings.php:433
1905
- #: i18n/strings.php:457
1906
  msgid "Reprint shipping label"
1907
  msgstr ""
1908
 
1909
- #: i18n/strings.php:394 i18n/strings.php:458
1910
  msgid "If there was a printing error when you purchased the label, you can print it again."
1911
  msgstr ""
1912
 
1913
- #: i18n/strings.php:395 i18n/strings.php:459
1914
  msgid "NOTE: If you already used the label in a package, printing and using it again is a violation of our terms of service and may result in criminal charges."
1915
  msgstr ""
1916
 
1917
- #: i18n/strings.php:325 i18n/strings.php:392 i18n/strings.php:456
1918
  msgid "Print"
1919
  msgstr "Imprimă"
1920
 
1921
  #: i18n/strings.php:16 i18n/strings.php:82 i18n/strings.php:122
1922
  #: i18n/strings.php:158 i18n/strings.php:167 i18n/strings.php:178
1923
- #: i18n/strings.php:263 i18n/strings.php:385 i18n/strings.php:391
1924
- #: i18n/strings.php:449 i18n/strings.php:455
1925
  msgid "Cancel"
1926
  msgstr "Anulează"
1927
 
1928
- #: i18n/strings.php:403 i18n/strings.php:467
1929
  msgid "N/A"
1930
  msgstr "Nu se aplică"
1931
 
1932
- #: i18n/strings.php:8 i18n/strings.php:412 i18n/strings.php:472
1933
  msgid "More"
1934
  msgstr "Mai mult"
1935
 
@@ -1972,7 +1967,7 @@ msgstr ""
1972
  msgid "Packaging"
1973
  msgstr ""
1974
 
1975
- #: woocommerce-services.php:1598
1976
  msgid "Section not loading? Visit the <a href=\"%s\">status page</a> for troubleshooting steps."
1977
  msgstr ""
1978
 
@@ -1984,7 +1979,7 @@ msgstr ""
1984
  msgid "Note: Jetpack is connected, but development mode is also enabled on this site. Please disable development mode."
1985
  msgstr ""
1986
 
1987
- #: woocommerce-services.php:1451
1988
  msgid "Shipping Label"
1989
  msgstr "Etichetă livrare"
1990
 
@@ -2041,24 +2036,24 @@ msgctxt "A service with an unknown title and unknown method_title"
2041
  msgid "Unknown"
2042
  msgstr "Necunoscut"
2043
 
2044
- #: i18n/strings.php:342
2045
  msgid "Support"
2046
  msgstr "Suport"
2047
 
2048
- #: i18n/strings.php:330 i18n/strings.php:331
2049
  msgid "Debug"
2050
  msgstr "Depanare"
2051
 
2052
- #: i18n/strings.php:361
2053
  msgid "Services"
2054
  msgstr "Servicii"
2055
 
2056
- #: i18n/strings.php:345
2057
  msgctxt "This section displays the overall health of WooCommerce Shipping & Tax and the things it depends on"
2058
  msgid "Health"
2059
  msgstr "Sănătate"
2060
 
2061
- #: i18n/strings.php:343
2062
  msgid "Need help?"
2063
  msgstr "Ai nevoie de ajutor?"
2064
 
@@ -2066,11 +2061,11 @@ msgstr "Ai nevoie de ajutor?"
2066
  msgid "Log is empty"
2067
  msgstr "Jurnalul este gol"
2068
 
2069
- #: i18n/strings.php:334 i18n/strings.php:338
2070
  msgid "Disabled"
2071
  msgstr ""
2072
 
2073
- #: i18n/strings.php:333 i18n/strings.php:337
2074
  msgid "Enabled"
2075
  msgstr ""
2076
 
@@ -2094,27 +2089,27 @@ msgstr ""
2094
  msgid "Setup for this service has not yet been completed"
2095
  msgstr ""
2096
 
2097
- #: i18n/strings.php:350
2098
  msgid "Service data is up-to-date"
2099
  msgstr ""
2100
 
2101
- #: i18n/strings.php:349
2102
  msgid "Service data was found, but is more than one day old"
2103
  msgstr ""
2104
 
2105
- #: i18n/strings.php:348
2106
  msgid "Service data was found, but is more than three days old"
2107
  msgstr ""
2108
 
2109
- #: i18n/strings.php:351
2110
  msgid "Service data found, but may be out of date"
2111
  msgstr ""
2112
 
2113
- #: i18n/strings.php:352
2114
  msgid "No service data available"
2115
  msgstr ""
2116
 
2117
- #: i18n/strings.php:347
2118
  msgid "Jetpack"
2119
  msgstr "Jetpack"
2120
 
@@ -2138,7 +2133,8 @@ msgstr ""
2138
  msgid "Please install and activate the Jetpack plugin, version %s or higher"
2139
  msgstr ""
2140
 
2141
- #: i18n/strings.php:346
 
2142
  msgid "WooCommerce"
2143
  msgstr "WooCommerce"
2144
 
@@ -2154,7 +2150,7 @@ msgstr ""
2154
  msgid "WooCommerce %1$s or higher is required (You are running %2$s)"
2155
  msgstr ""
2156
 
2157
- #: classes/class-wc-connect-error-notice.php:104 woocommerce-services.php:1634
2158
  msgid "Dismiss this notice"
2159
  msgstr ""
2160
 
51
  msgid "Live rates at checkout"
52
  msgstr ""
53
 
54
+ #: i18n/strings.php:403
55
  msgid "Last updated %s."
56
  msgstr ""
57
 
206
  msgid "WooCommerce Helper auth is missing"
207
  msgstr ""
208
 
209
+ #: i18n/strings.php:331 i18n/strings.php:422
210
  msgid "USPS labels without tracking are not eligible for refund."
211
  msgstr ""
212
 
226
  msgid "Loading"
227
  msgstr ""
228
 
229
+ #: i18n/strings.php:402
230
  msgid "WooCommerce Shipping & Tax Data"
231
  msgstr ""
232
 
233
+ #: i18n/strings.php:339 i18n/strings.php:430
234
  msgid "Print customs form"
235
  msgstr ""
236
 
277
  msgstr ""
278
 
279
  #. Plugin Name of the plugin
 
280
  #: classes/class-wc-connect-settings-pages.php:123
281
+ #: classes/class-wc-connect-privacy.php:36
282
  msgid "WooCommerce Shipping & Tax"
283
  msgstr ""
284
 
411
  msgid "Validating address\\u2026"
412
  msgstr ""
413
 
414
+ #: i18n/strings.php:326 i18n/strings.php:372 i18n/strings.php:463
415
  msgid "Purchasing\\u2026"
416
  msgstr ""
417
 
423
  msgid "Package %(index)s \\u2013 %(title)s"
424
  msgstr ""
425
 
426
+ #: i18n/strings.php:6 i18n/strings.php:170 i18n/strings.php:375
427
  msgid "Saving\\u2026"
428
  msgstr ""
429
 
437
  msgid "Your tax rates and settings will be automatically configured for %1$s, %2$s. <a href=\"https://docs.woocommerce.com/document/setting-up-taxes-in-woocommerce/#section-12\">Learn more about setting up tax rates for additional nexuses</a>"
438
  msgstr ""
439
 
440
+ #: i18n/strings.php:419
441
  msgid "%(itemCount)d item is ready to be fulfilled"
442
  msgid_plural "%(itemCount)d items are ready to be fulfilled"
443
  msgstr[0] ""
444
  msgstr[1] ""
445
  msgstr[2] ""
446
 
447
+ #: i18n/strings.php:418
448
  msgid "%(itemCount)d item was fulfilled on {{span}}%(createdDate)s{{/span}}"
449
  msgid_plural "%(itemCount)d items were fulfilled on {{span}}%(createdDate)s{{/span}}"
450
  msgstr[0] ""
451
  msgstr[1] ""
452
  msgstr[2] ""
453
 
454
+ #: i18n/strings.php:338 i18n/strings.php:429
455
  msgid "Schedule a pickup"
456
  msgstr ""
457
 
458
+ #: i18n/strings.php:334 i18n/strings.php:425
459
  msgid "Label images older than 180 days are deleted by our technology partners for general security and data privacy concerns."
460
  msgstr ""
461
 
462
+ #: i18n/strings.php:330 i18n/strings.php:421
463
  msgid "Labels older than 30 days cannot be refunded."
464
  msgstr ""
465
 
480
  msgid "WooCommerce Shipping & Tax requires the WooCommerce plugin to be installed and active. You can download %s here."
481
  msgstr ""
482
 
483
+ #: i18n/strings.php:466
484
  msgid "No tracking information available at this time"
485
  msgstr ""
486
 
487
+ #: i18n/strings.php:417
488
  msgid "Connection error: unable to create label at this time"
489
  msgstr ""
490
 
491
+ #: i18n/strings.php:413 i18n/strings.php:415
492
  msgid "Track Package"
493
  msgid_plural "Track Packages"
494
  msgstr[0] ""
495
  msgstr[1] ""
496
  msgstr[2] ""
497
 
498
+ #: i18n/strings.php:329
499
  msgid "Which package would you like to track?"
500
  msgstr ""
501
 
502
+ #: i18n/strings.php:340 i18n/strings.php:371 i18n/strings.php:431
503
+ #: i18n/strings.php:462
504
  msgid "%(service)s label (#%(labelIndex)d)"
505
  msgstr ""
506
 
590
  msgid "0.0"
591
  msgstr ""
592
 
593
+ #: woocommerce-services.php:1453
594
  msgid "Shipment Tracking"
595
  msgstr ""
596
 
602
  msgid "Customs information incomplete"
603
  msgstr ""
604
 
605
+ #: woocommerce-services.php:1496
606
  msgid "Packing Log:"
607
  msgstr ""
608
 
609
+ #: woocommerce-services.php:1483
610
  msgid "Chosen Rate:"
611
  msgstr ""
612
 
613
+ #: woocommerce-services.php:1479
614
  msgid "Shipping Method ID:"
615
  msgstr "ID metodă de livrare:"
616
 
617
+ #: woocommerce-services.php:1475
618
  msgid "Shipping Method Name:"
619
  msgstr "Nume metodă de livrare:"
620
 
621
+ #: woocommerce-services.php:1459
622
  msgid "Shipping Debug"
623
  msgstr ""
624
 
626
  msgid "<strong>\"%2$s\" is missing weight, length, width, or height.</strong><br />Shipping rates cannot be calculated. <a href=\"%1$s\">Enter dimensions and weight for %2$s</a> so your customers can purchase this item."
627
  msgstr ""
628
 
629
+ #: classes/class-wc-connect-api-client.php:588
630
  msgid "Unable to send request to WooCommerce Shipping & Tax server. The timestamp generated for the signature is too old."
631
  msgstr ""
632
 
633
+ #: classes/class-wc-connect-api-client.php:527
634
  msgid "Unable to send request to WooCommerce Shipping & Tax server. Jetpack Token is malformed."
635
  msgstr ""
636
 
637
+ #: classes/class-wc-connect-api-client.php:520
638
  msgid "Unable to send request to WooCommerce Shipping & Tax server. Jetpack Token is missing"
639
  msgstr ""
640
 
668
  msgstr ""
669
 
670
  #: classes/class-wc-connect-api-client.php:160
 
671
  msgid "No shipping rate could be calculated. No items in the package are shippable."
672
  msgstr ""
673
 
816
  msgid "%(message)s. Please modify the address and try again."
817
  msgstr "%(message)s. Te rog modifică adresa și încearcă din nou."
818
 
819
+ #: i18n/strings.php:337 i18n/strings.php:428
820
  msgid "View details"
821
  msgstr "Vezi detalii"
822
 
823
+ #: i18n/strings.php:369 i18n/strings.php:460
824
  msgid "Items"
825
  msgstr "Elemente"
826
 
827
+ #: i18n/strings.php:368 i18n/strings.php:459
828
  msgid "Package"
829
  msgstr "Pachet"
830
 
831
+ #: i18n/strings.php:366 i18n/strings.php:457
832
  msgid "Receipt"
833
  msgstr "Chitanță"
834
 
835
+ #: i18n/strings.php:365 i18n/strings.php:456
836
  msgid "Label #%(labelIndex)s details"
837
  msgstr "Detalii etichetă #%(labelIndex)s"
838
 
947
  msgid "Activate"
948
  msgstr "Activează"
949
 
950
+ #: i18n/strings.php:342 i18n/strings.php:433
951
  msgid "No activity yet"
952
  msgstr "Nicio activitate până acum"
953
 
954
+ #: i18n/strings.php:350 i18n/strings.php:441
955
  msgid "Note"
956
  msgstr "Notă"
957
 
958
+ #: i18n/strings.php:349 i18n/strings.php:440
959
  msgid "Refunded %(amount)s"
960
  msgstr ""
961
 
962
+ #: i18n/strings.php:347 i18n/strings.php:438
963
  msgid "%(service)s label (#%(labelNum)d) refund rejected"
964
  msgstr ""
965
 
966
+ #: i18n/strings.php:346 i18n/strings.php:437
967
  msgid "%(service)s label (#%(labelNum)d) refunded (%(amount)s)"
968
  msgstr ""
969
 
970
+ #: i18n/strings.php:345 i18n/strings.php:436
971
  msgid "%(service)s label (#%(labelNum)d) refund requested (%(amount)s)"
972
  msgstr ""
973
 
974
+ #: i18n/strings.php:344 i18n/strings.php:435
975
  msgid "Note sent to customer"
976
  msgstr "Notă trimisă clientului"
977
 
978
+ #: i18n/strings.php:343 i18n/strings.php:434
979
  msgid "Internal note"
980
  msgstr "Notă internă"
981
 
982
+ #: i18n/strings.php:374 i18n/strings.php:465
983
  msgid "Show notes from %(date)s"
984
  msgstr "Arată note din %(date)s"
985
 
986
+ #: i18n/strings.php:373 i18n/strings.php:464
987
  msgid "%(count)s event"
988
  msgid_plural "%(count)s events"
989
  msgstr[0] "%(count)s eveniment"
995
  msgid "WeChat Pay"
996
  msgstr "Plată WeChat"
997
 
998
+ #: i18n/strings.php:351 i18n/strings.php:442
999
  msgid "Toggle menu"
1000
  msgstr "Comută meniul"
1001
 
1003
  msgid "Return to Order #%(orderId)s"
1004
  msgstr ""
1005
 
1006
+ #: i18n/strings.php:393
1007
  msgid "Our team is here for you. View our {{docsA}}support docs{{/docsA}} or {{ticketA}}open a support ticket{{/ticketA}}."
1008
  msgstr ""
1009
 
1010
+ #: i18n/strings.php:384
1011
  msgid "Logging"
1012
  msgstr ""
1013
 
1014
+ #: i18n/strings.php:411
1015
  msgid "No services configured. {{a}}Add a shipping service{{/a}}"
1016
  msgstr "Niciun serviciu configurat. {{a}}Adaugă un serviciu de livrare{{/a}}"
1017
 
1018
+ #: i18n/strings.php:409
1019
  msgid "Edit service settings"
1020
  msgstr "Editează setări servicii"
1021
 
1022
+ #: i18n/strings.php:408
1023
  msgid "Request was made %s - check logs below or {{a}}edit service settings{{/a}}"
1024
  msgstr ""
1025
 
1026
+ #: i18n/strings.php:407
1027
  msgid "Copy for support"
1028
  msgstr ""
1029
 
1030
+ #: i18n/strings.php:406
1031
  msgid "Last %s entry. {{a}}Show full log{{/a}}"
1032
  msgid_plural "Last %s entries. {{a}}Show full log{{/a}}"
1033
  msgstr[0] ""
1034
  msgstr[1] ""
1035
  msgstr[2] ""
1036
 
1037
+ #: i18n/strings.php:405
1038
  msgid "Log tail copied to clipboard"
1039
  msgstr ""
1040
 
1041
+ #: i18n/strings.php:11 i18n/strings.php:472
1042
  msgid "You have unsaved changes. Are you sure you want to leave this page?"
1043
  msgstr ""
1044
 
1067
  msgstr ""
1068
 
1069
  #: i18n/strings.php:5 i18n/strings.php:169 i18n/strings.php:295
1070
+ #: i18n/strings.php:378 i18n/strings.php:468
1071
  msgid "Optional"
1072
  msgstr "Opțional"
1073
 
1222
  msgid "Total"
1223
  msgstr "Total"
1224
 
1225
+ #: classes/class-wc-connect-label-reports.php:170 i18n/strings.php:348
1226
+ #: i18n/strings.php:439
1227
  msgid "Refund"
1228
  msgstr "Rambursează"
1229
 
1263
  msgid "Export CSV"
1264
  msgstr "Exportă CSV-ul"
1265
 
1266
+ #: i18n/strings.php:390
1267
  msgid "Other Log"
1268
  msgstr ""
1269
 
1270
+ #: i18n/strings.php:389
1271
  msgid "Taxes Log"
1272
  msgstr ""
1273
 
1274
+ #: i18n/strings.php:388
1275
  msgid "Shipping Log"
1276
  msgstr "Jurnal livrare"
1277
 
1278
+ #: i18n/strings.php:381
1279
  msgid "Display troubleshooting information on the Cart and Checkout pages."
1280
  msgstr ""
1281
 
1282
+ #: i18n/strings.php:385
1283
  msgid "Write diagnostic messages to log files. Helpful when contacting support."
1284
  msgstr ""
1285
 
1323
  msgid "Link a PayPal account"
1324
  msgstr ""
1325
 
1326
+ #: i18n/strings.php:404
1327
  msgid "Refresh"
1328
  msgstr "Reîmprospătează"
1329
 
1330
+ #: woocommerce-services.php:1234
1331
  msgid "Tracking number"
1332
  msgstr "Număr de urmărire"
1333
 
1334
+ #: woocommerce-services.php:1233
1335
  msgid "Provider"
1336
  msgstr "Furnizor"
1337
 
1423
  msgstr ""
1424
 
1425
  #: classes/class-wc-connect-paypal-ec.php:323 i18n/strings.php:4
1426
+ #: i18n/strings.php:168 i18n/strings.php:377 i18n/strings.php:467
1427
  msgid "Required"
1428
  msgstr "Obligatoriu"
1429
 
1439
  msgid "Dimensions"
1440
  msgstr "Dimensiuni"
1441
 
1442
+ #: i18n/strings.php:270 i18n/strings.php:364 i18n/strings.php:455
1443
  msgid "Close"
1444
  msgstr "Închide"
1445
 
1551
  msgid "Unable to get your settings. Please refresh the page to try again."
1552
  msgstr ""
1553
 
1554
+ #: i18n/strings.php:479
1555
  msgid "%(numSelected)d service selected"
1556
  msgid_plural "%(numSelected)d services selected"
1557
  msgstr[0] "%(numSelected)d serviciu selectat"
1558
  msgstr[1] "%(numSelected)d servicii selectate"
1559
  msgstr[2] "%(numSelected)d de servicii selectate"
1560
 
1561
+ #: i18n/strings.php:477
1562
  msgid "Add and edit saved packages using the {{a}}Packaging Manager{{/a}}."
1563
  msgstr "Adaugă și editează pachetele salvate folosind {{a}}Managerul de ambalare{{/a}}."
1564
 
1565
+ #: i18n/strings.php:341 i18n/strings.php:432
1566
  msgid "Tracking #: {{trackingLink/}}"
1567
  msgstr "Urmăresc #: {{trackingLink/}}"
1568
 
1602
  msgid "Choose rate: %(pckg)s"
1603
  msgstr "Alege impozitul: %(pckg)s"
1604
 
1605
+ #: i18n/strings.php:353 i18n/strings.php:444
1606
  msgid "Refund label (-%(amount)s)"
1607
  msgstr "Etichetă de rambursare (-%(amount)s)"
1608
 
1622
  msgid "Ship in original packaging"
1623
  msgstr "Livrează în ambalajul original"
1624
 
1625
+ #: i18n/strings.php:332 i18n/strings.php:333 i18n/strings.php:423
1626
+ #: i18n/strings.php:424
1627
  msgid "Request refund"
1628
  msgstr "Cere rambursare"
1629
 
1630
+ #: i18n/strings.php:335 i18n/strings.php:426
1631
  msgid "Reprint"
1632
  msgstr ""
1633
 
1634
+ #: i18n/strings.php:58 i18n/strings.php:309 i18n/strings.php:363
1635
+ #: i18n/strings.php:454
1636
  msgid "Paper size"
1637
  msgstr "Dimensiune hârtie"
1638
 
1648
  msgid "Move item"
1649
  msgstr "Mută element"
1650
 
1651
+ #: i18n/strings.php:483
1652
  msgid "Increase the rates calculated by the carrier to account for packaging and handling costs. You can also add a negative amount to save your customers money."
1653
  msgstr ""
1654
 
1655
+ #: i18n/strings.php:414
1656
  msgid "Create new label"
1657
  msgstr "Creează etichetă nouă"
1658
 
1673
  msgstr "Adaugă un card de credit"
1674
 
1675
  #. translators: %d: Deleted Product ID
 
1676
  #: classes/class-wc-connect-compatibility-wc26.php:116
1677
+ #: classes/class-wc-connect-compatibility-wc30.php:130
1678
  msgid "#%d - [Deleted product]"
1679
  msgstr "#%d - [produs șters]"
1680
 
1681
  #. translators: %1$d: Product ID, %2$s: Product Name
 
1682
  #: classes/class-wc-connect-compatibility-wc26.php:111
1683
+ #: classes/class-wc-connect-compatibility-wc30.php:125
1684
  msgid "#%1$d - %2$s"
1685
  msgstr "#%1$d - %2$s"
1686
 
1687
  #. translators: %s Support url
1688
+ #: woocommerce-services.php:1569
1689
  msgid "<a href=\"%s\">Support</a>"
1690
  msgstr "<a href=\"%s\">Suport</a>"
1691
 
1693
  msgid "There was an error installing Jetpack. Please try installing it manually."
1694
  msgstr ""
1695
 
1696
+ #: i18n/strings.php:43 woocommerce-services.php:1066
1697
+ #: woocommerce-services.php:1069
1698
  msgid "Shipping Labels"
1699
  msgstr "Etichete de livrare"
1700
 
 
 
 
 
1701
  #. Plugin URI of the plugin
1702
  #. Author URI of the plugin
1703
  msgid "https://woocommerce.com/"
1704
  msgstr "https://woocommerce.com/"
1705
 
1706
+ #: i18n/strings.php:143 i18n/strings.php:215 woocommerce-services.php:1519
1707
+ #: woocommerce-services.php:1547
1708
  msgid "Phone"
1709
  msgstr "Telefon"
1710
 
1713
  msgid "Connect"
1714
  msgstr "Conectare"
1715
 
1716
+ #: i18n/strings.php:7 i18n/strings.php:171 i18n/strings.php:376
1717
  msgid "Save Settings"
1718
  msgstr "Salvează setările"
1719
 
1720
+ #: i18n/strings.php:473
1721
  msgid "Your changes have been saved."
1722
  msgstr "Modificările tale au fost salvate."
1723
 
1724
+ #: i18n/strings.php:474
1725
  msgid "There was a problem with one or more entries. Please fix the errors below and try saving again."
1726
  msgstr "A existat o problemă cu una sau mai multe intrări. Te rog corectează erorile de mai jos și încearcă să salvezi din nou."
1727
 
1729
  msgid "Expand"
1730
  msgstr "Extinde"
1731
 
1732
+ #: i18n/strings.php:328 i18n/strings.php:469
1733
  msgid "Dismiss"
1734
  msgstr "Respinge"
1735
 
1736
+ #: i18n/strings.php:10 i18n/strings.php:471
1737
  msgid "You have unsaved changes."
1738
  msgstr "Ai modificări nesalvate."
1739
 
1769
  msgid "Unable to save your shipping packages. Please try again."
1770
  msgstr "Nu pot să-ți salvez pachetele de livrare. Te rog încearcă din nou."
1771
 
1772
+ #: i18n/strings.php:41 i18n/strings.php:475
1773
  msgid "Save changes"
1774
  msgstr "Salvează modificările"
1775
 
1781
  msgid "Dimensions (L x W x H)"
1782
  msgstr ""
1783
 
1784
+ #: i18n/strings.php:478
1785
  msgid "All services selected"
1786
  msgstr "Toate serviciile selectate"
1787
 
1788
+ #: i18n/strings.php:37 i18n/strings.php:199 i18n/strings.php:480
1789
  msgid "Expand Services"
1790
  msgstr "Extinde serviciile"
1791
 
1792
+ #: classes/class-wc-connect-label-reports.php:167 i18n/strings.php:367
1793
+ #: i18n/strings.php:458 i18n/strings.php:481
1794
  msgid "Service"
1795
  msgstr "Serviciu"
1796
 
1797
+ #: i18n/strings.php:482
1798
  msgid "Price adjustment"
1799
  msgstr "Ajustare preț"
1800
 
1801
+ #: i18n/strings.php:476
1802
  msgid "Saved Packages"
1803
  msgstr "Pachete salvate"
1804
 
1805
+ #: woocommerce-services.php:1222 woocommerce-services.php:1229
1806
  msgid "Tracking"
1807
  msgstr "Urmărire"
1808
 
1809
+ #: i18n/strings.php:207 i18n/strings.php:412 i18n/strings.php:416
1810
  msgid "Create shipping label"
1811
  msgid_plural "Create shipping labels"
1812
  msgstr[0] "Creează etichetă de livrare"
1880
  msgid "The service and rate chosen by the customer at checkout is not available. Please choose another."
1881
  msgstr ""
1882
 
1883
+ #: i18n/strings.php:354 i18n/strings.php:445
1884
  msgid "Request a refund"
1885
  msgstr "Cere o rambursare"
1886
 
1887
+ #: i18n/strings.php:355 i18n/strings.php:446
1888
  msgid "You can request a refund for a shipping label that has not been used to ship a package. It will take at least %(days)s days to process."
1889
  msgstr ""
1890
 
1891
+ #: i18n/strings.php:356 i18n/strings.php:447
1892
  msgid "Purchase date"
1893
  msgstr "Data cumpărării"
1894
 
1895
+ #: i18n/strings.php:357 i18n/strings.php:448
1896
  msgid "Amount eligible for refund"
1897
  msgstr "Sumă eligibilă pentru rambursare"
1898
 
1899
+ #: i18n/strings.php:336 i18n/strings.php:360 i18n/strings.php:427
1900
+ #: i18n/strings.php:451
1901
  msgid "Reprint shipping label"
1902
  msgstr ""
1903
 
1904
+ #: i18n/strings.php:361 i18n/strings.php:452
1905
  msgid "If there was a printing error when you purchased the label, you can print it again."
1906
  msgstr ""
1907
 
1908
+ #: i18n/strings.php:362 i18n/strings.php:453
1909
  msgid "NOTE: If you already used the label in a package, printing and using it again is a violation of our terms of service and may result in criminal charges."
1910
  msgstr ""
1911
 
1912
+ #: i18n/strings.php:325 i18n/strings.php:359 i18n/strings.php:450
1913
  msgid "Print"
1914
  msgstr "Imprimă"
1915
 
1916
  #: i18n/strings.php:16 i18n/strings.php:82 i18n/strings.php:122
1917
  #: i18n/strings.php:158 i18n/strings.php:167 i18n/strings.php:178
1918
+ #: i18n/strings.php:263 i18n/strings.php:352 i18n/strings.php:358
1919
+ #: i18n/strings.php:443 i18n/strings.php:449
1920
  msgid "Cancel"
1921
  msgstr "Anulează"
1922
 
1923
+ #: i18n/strings.php:370 i18n/strings.php:461
1924
  msgid "N/A"
1925
  msgstr "Nu se aplică"
1926
 
1927
+ #: i18n/strings.php:8 i18n/strings.php:420 i18n/strings.php:470
1928
  msgid "More"
1929
  msgstr "Mai mult"
1930
 
1967
  msgid "Packaging"
1968
  msgstr ""
1969
 
1970
+ #: woocommerce-services.php:1602
1971
  msgid "Section not loading? Visit the <a href=\"%s\">status page</a> for troubleshooting steps."
1972
  msgstr ""
1973
 
1979
  msgid "Note: Jetpack is connected, but development mode is also enabled on this site. Please disable development mode."
1980
  msgstr ""
1981
 
1982
+ #: woocommerce-services.php:1455
1983
  msgid "Shipping Label"
1984
  msgstr "Etichetă livrare"
1985
 
2036
  msgid "Unknown"
2037
  msgstr "Necunoscut"
2038
 
2039
+ #: i18n/strings.php:391
2040
  msgid "Support"
2041
  msgstr "Suport"
2042
 
2043
+ #: i18n/strings.php:379 i18n/strings.php:380
2044
  msgid "Debug"
2045
  msgstr "Depanare"
2046
 
2047
+ #: i18n/strings.php:410
2048
  msgid "Services"
2049
  msgstr "Servicii"
2050
 
2051
+ #: i18n/strings.php:394
2052
  msgctxt "This section displays the overall health of WooCommerce Shipping & Tax and the things it depends on"
2053
  msgid "Health"
2054
  msgstr "Sănătate"
2055
 
2056
+ #: i18n/strings.php:392
2057
  msgid "Need help?"
2058
  msgstr "Ai nevoie de ajutor?"
2059
 
2061
  msgid "Log is empty"
2062
  msgstr "Jurnalul este gol"
2063
 
2064
+ #: i18n/strings.php:383 i18n/strings.php:387
2065
  msgid "Disabled"
2066
  msgstr ""
2067
 
2068
+ #: i18n/strings.php:382 i18n/strings.php:386
2069
  msgid "Enabled"
2070
  msgstr ""
2071
 
2089
  msgid "Setup for this service has not yet been completed"
2090
  msgstr ""
2091
 
2092
+ #: i18n/strings.php:399
2093
  msgid "Service data is up-to-date"
2094
  msgstr ""
2095
 
2096
+ #: i18n/strings.php:398
2097
  msgid "Service data was found, but is more than one day old"
2098
  msgstr ""
2099
 
2100
+ #: i18n/strings.php:397
2101
  msgid "Service data was found, but is more than three days old"
2102
  msgstr ""
2103
 
2104
+ #: i18n/strings.php:400
2105
  msgid "Service data found, but may be out of date"
2106
  msgstr ""
2107
 
2108
+ #: i18n/strings.php:401
2109
  msgid "No service data available"
2110
  msgstr ""
2111
 
2112
+ #: i18n/strings.php:396
2113
  msgid "Jetpack"
2114
  msgstr "Jetpack"
2115
 
2133
  msgid "Please install and activate the Jetpack plugin, version %s or higher"
2134
  msgstr ""
2135
 
2136
+ #. Author of the plugin
2137
+ #: i18n/strings.php:395
2138
  msgid "WooCommerce"
2139
  msgstr "WooCommerce"
2140
 
2150
  msgid "WooCommerce %1$s or higher is required (You are running %2$s)"
2151
  msgstr ""
2152
 
2153
+ #: classes/class-wc-connect-error-notice.php:104 woocommerce-services.php:1638
2154
  msgid "Dismiss this notice"
2155
  msgstr ""
2156
 
i18n/languages/woocommerce-services-ru.json CHANGED
@@ -1 +1 @@
1
- {"0":[null,""],"":{"po-revision-date":"2019-07-26 09:06:01+0000","mime-version":"1.0","content-type":"text/plain; charset=UTF-8","content-transfer-encoding":"8bit","plural-forms":"nplurals=3; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : ((n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14)) ? 1 : 2);","x-generator":"GlotPress/3.0.0-alpha.2","language":"ru","project-id-version":"Plugins - WooCommerce Shipping &amp; Tax - Stable (latest release)"},"Features":[null,""],"Carrier":[null,""],"Express delivery from the experts in international shipping":[null,""],"Live rates for %(carrierName)s at checkout":[null,""],"Ship with the largest delivery network in the United States":[null,""],"Discounted %(carrierName)s shipping labels":[null,""],"To be displayed at checkout, this carrier must be added as a shipping method to selected shipping zones":[null,""],"Add to shipping zones":[null,""],"Show live rates directly on your store - never under or overcharge for shipping again":[null,""],"Live rates at checkout":[null,""],"Last updated %s.":[null,""],"At least one of the new predefined packages has the same name as existing packages.":[null,""],"The new predefined package names are not unique.":[null,""],"At least one of the new custom packages has the same name as existing packages.":[null,""],"The new custom package names are not unique.":[null,""],"Go to shipping zones":[null,""],"Add DHL Express as a shipping method to selected shipping zones to display live rates at checkout.":[null,""],"DHL Express live rates are now available":[null,""],"State %1$s is invalid for %2$s.":[null,""],"%1$s %2$s is invalid for %3$s.":[null,""],"A %1$s is required for %2$s.":[null,""],"A country is required":[null,""],"Your store is over the limit for rate calls this month and your account will be charged for overages. To prevent future overage charges you can upgrade your plan.":[null,""],"There was an error trying to activate your subscription.":[null,""],"Your subscription was succesfully activated.":[null,""],"Manage":[null,""],"Usage":[null,""],"View and manage your subscription usage":[null,""],"Shipping method":[null,""],"The subscription is already active.":[null,""],"Set up your own carrier account to compare rates and print labels from multiple carriers in WooCommerce Shipping. Learn more about adding {{a}}carrier accounts{{/a}}.":[null,""],"There was an error connecting to your %(carrierName)s account. Please check that all of the information entered matches your %(carrierName)s account and try to connect again.":[null,""],"Your carrier account was connected successfully.":[null,""],"The date must be a valid date in the format YYYY-MM-DD":[null,""],"The invoice number needs to be 9 or 13 letters and digits in length":[null,""],"The company website format is not valid":[null,""],"The email format is not valid":[null,""],"The ZIP/Postal code needs to be 5 digits in length":[null,""],"The phone number needs to be 10 digits in length":[null,""],"The UPS account number needs to be 6 letters and digits in length":[null,""],"This will remove the connection with %(carrier_name)s. All of your %(carrier_name)s account information will be deleted and you won\\u2019t see %(carrier_name)s rates.":[null,""],"Disconnect your %(carrier_name)s account":[null,""],"There was an error trying to disconnect your carrier account":[null,""],"Your carrier account was disconnected succesfully.":[null,""],"DHL Express":[null,""],"Powered by WooCommerce Tax. If automated taxes are enabled, you'll need to enter prices exclusive of tax.":[null,""],"WooCommerce Helper auth is missing":[null,""],"USPS labels without tracking are not eligible for refund.":[null,""],"General Information":[null,""],"Connect your %(carrierName)s account":[null,""],"%(carrierName)s not supported.":[null,""],"Loading":[null,""],"WooCommerce Shipping & Tax Data":[null,""],"Print customs form":[null,""],"Test your WooCommerce Shipping & Tax connection":[null,""],"WooCommerce Shipping & Tax Status":[null,""],"Connect your store to activate WooCommerce Shipping & Tax":[null,""],"Connect Jetpack to activate WooCommerce Shipping & Tax":[null,""],"WooCommerce Shipping now supports DHL labels for international shipments. Purchase and print discounted labels from DHL and USPS right here.":[null,""],"Discounted DHL Shipping Labels":[null,""],"WooCommerce Shipping":[null,""],"Invalid WooCommerce Shipping & Tax service slug provided":[null,""],"WooCommerce Shipping & Tax":[null,""],"ZIP/Postal code":[null,""],"This action will delete any information entered on the form.":[null,""],"Cancel connection":[null,""],"Ok":[null,""],"UPS invoice control id":[null,""],"UPS invoice currency":[null,""],"UPS invoice amount":[null,""],"UPS invoice date":[null,""],"UPS invoice number":[null,""],"I have been issued an invoice from UPS within the past 90 days":[null,""],"UPS account information":[null,""],"Company website":[null,""],"Job title":[null,""],"Company name":[null,""],"This is the company info you used to create your UPS account":[null,""],"Company information":[null,""],"Email":[null,""],"Address 2 (optional)":[null,""],"Account number":[null,""],"This is the account number and address from your UPS profile":[null,""],"General information":[null,""],"If you need a UPS account number, go to {{a}}UPS.com{{/a}} to create a new account.":[null,""],"Set up your own UPS carrier account to compare rates and print labels from multiple carriers in WooCommerce Shipping. Learn more about adding {{a}}carrier accounts{{/a}}.":[null,""],"Connect your UPS account":[null,""],"Set up your own carrier account by adding your credentials here":[null,""],"Carrier account":[null,""],"Credentials":[null,""],"Adult signature required":[null,""],"Signature required":[null,""],"Other\\u2026":[null,""],"Select one\\u2026":[null,""],"Validating address\\u2026":[null,""],"Purchasing\\u2026":[null,""],"Your UPS account will be charged":[null,""],"Package %(index)s \\u2013 %(title)s":[null,""],"Saving\\u2026":[null,""],"Your tax rates and settings will be automatically configured for %1$s. <a href=\"https://docs.woocommerce.com/document/setting-up-taxes-in-woocommerce/#section-12\">Learn more about setting up tax rates for additional nexuses</a>":[null,""],"Your tax rates and settings will be automatically configured for %1$s, %2$s. <a href=\"https://docs.woocommerce.com/document/setting-up-taxes-in-woocommerce/#section-12\">Learn more about setting up tax rates for additional nexuses</a>":[null,""],"%(itemCount)d item is ready to be fulfilled":["%(itemCount)d items are ready to be fulfilled","","",""],"%(itemCount)d item was fulfilled on {{span}}%(createdDate)s{{/span}}":["%(itemCount)d items were fulfilled on {{span}}%(createdDate)s{{/span}}","","",""],"Schedule a pickup":[null,""],"Label images older than 180 days are deleted by our technology partners for general security and data privacy concerns.":[null,""],"Labels older than 30 days cannot be refunded.":[null,""],"Mark this order as complete and notify the customer":[null,""],"Notify the customer with shipment details":[null,""],"You save %s with WooCommerce Shipping":[null,""],"WooCommerce Shipping & Tax requires the WooCommerce plugin to be installed and active. You can download %s here.":[null,""],"No tracking information available at this time":[null,""],"Connection error: unable to create label at this time":[null,""],"Track Package":["Track Packages","","",""],"Which package would you like to track?":[null,""],"%(service)s label (#%(labelIndex)d)":[null,""],"To print this shipping label, {{a}}add a credit card to your account{{/a}}.":[null,""],"Add credit card":[null,""],"To print this shipping label, {{a}}choose a credit card to add to your account{{/a}}.":[null,""],"Choose credit card":[null,""],"Buy shipping label":["Buy shipping labels","","",""],"shipping label ready":["shipping labels ready","","",""],"Shipping from":[null,""],"Shipping summary":[null,""],"Customer paid a {{shippingMethod/}} of {{shippingCost/}} for shipping":[null,""],"Shipping rates":[null,""],"HS Tariff number":[null,""],"Submit":[null,""],"Total Weight (with package)":[null,""],"QTY":[null,""],"Weight":[null,""],"Items to fulfill":[null,""],"Select a package type":[null,""],"Package details":[null,""],"Your shipping packages have been saved.":[null,""],"0.0":[null,""],"Shipment Tracking":[null,""],"Customs information valid":[null,""],"Customs information incomplete":[null,""],"Packing Log:":[null,""],"Chosen Rate:":[null,""],"Shipping Method ID:":[null,""],"Shipping Method Name:":[null,""],"Shipping Debug":[null,""],"<strong>\"%2$s\" is missing weight, length, width, or height.</strong><br />Shipping rates cannot be calculated. <a href=\"%1$s\">Enter dimensions and weight for %2$s</a> so your customers can purchase this item.":[null,""],"Unable to send request to WooCommerce Shipping & Tax server. The timestamp generated for the signature is too old.":[null,""],"Unable to send request to WooCommerce Shipping & Tax server. Jetpack Token is malformed.":[null,""],"Unable to send request to WooCommerce Shipping & Tax server. Jetpack Token is missing":[null,""],"Error: The WooCommerce Shipping & Tax server returned: %1$s %2$s ( %3$d )":[null,""],"Error: The WooCommerce Shipping & Tax server returned ( %d ) and an empty response body.":[null,""],"Error: The WooCommerce Shipping & Tax server returned HTTP code: %d":[null,""],"Unable to encode body for request to WooCommerce Shipping & Tax server.":[null,""],"Unable to send request to WooCommerce Shipping & Tax server. Body must be an array.":[null,""],"Unable to send request to WooCommerce Shipping & Tax server. Jetpack connection does not implement get_access_token.":[null,""],"Unable to send request to WooCommerce Shipping & Tax server. Jetpack_Data was not found.":[null,""],"No shipping rate could be calculated. No items in the package are shippable.":[null,""],"Product ( ID: %d ) is missing a dimension value. Shipping rates cannot be calculated.":[null,""],"Product ( ID: %d ) did not include a weight. Shipping rates cannot be calculated.":[null,""],"Packing log:":[null,""],"Received rate: %1$s (%2$s)":[null,""],"Your customer selected {{shippingMethod/}}":[null,""],"Total rate: %(total)s":[null,""],"%(serviceName)s: %(rate)s":[null,""],"No rates found":[null,""],"WooCommerce Shipping gives you access to USPS Commercial Pricing, which is discounted over Retail rates.":[null,""],"more info":[null,""],"ITN":[null,""],"Sanitary / Phytosanitary inspection":[null,""],"Quarantine":[null,""],"None":[null,""],"Restriction type":[null,""],"Details":[null,""],"Sample":[null,""],"Gift":[null,""],"Documents":[null,""],"Merchandise":[null,""],"Contents type":[null,""],"Return to sender if package is unable to be delivered":[null,""],"Value (per unit)":[null,""],"Weight (per unit)":[null,""],"Save customs form":[null,""],"Customs":[null,""],"Use address as entered":[null,""],"View on Google Maps":[null,""],"Verify with USPS":[null,""],"Automatic verification failed for this address. It may still be a valid address \\u2014 use the tools below to manually verify.":[null,""],"We were unable to automatically verify the address.":[null,""],"We were unable to automatically verify the address \\u2014 %(error)s.":[null,""],"You've edited the address, please revalidate it for accurate rates":[null,""],"Verify address":[null,""],"%(message)s. Please modify the address and try again.":[null,""],"View details":[null,""],"Items":[null,""],"Package":[null,""],"Receipt":[null,""],"Label #%(labelIndex)s details":[null,""],"{{icon/}} Delete this package":[null,""],"Done":[null,""],"Add boxes, envelopes, and other packages you use most frequently":[null,""],"Remove":[null,""],"Edit":[null,""],"Weight of empty package":[null,""],"Unique package name":[null,""],"Envelope":[null,""],"Box":[null,""],"This field is required.":[null,""],"Payment":[null,""],"Email the label purchase receipts to %(ownerName)s (%(ownerLogin)s) at %(ownerEmail)s":[null,""],"Email Receipts":[null,""],"To purchase shipping labels, choose a credit card you have on file or add a new card.":[null,""],"Choose a different card":[null,""],"To purchase shipping labels, add a credit card.":[null,""],"We'll charge the credit card on your account (%(card)s) to pay for the labels you print":[null,""],"Credit cards are retrieved from the following WordPress.com account: %(wpcomLogin)s <%(wpcomEmail)s>":[null,""],"Only the site owner can change these settings. Please contact %(ownerName)s (%(ownerLogin)s) to change the shipping label settings.":[null,""],"Only the site owner can manage shipping label payment methods. Please contact %(ownerName)s (%(ownerLogin)s) to manage payment methods.":[null,""],"%(card)s ****%(digits)s":[null,""],"Print shipping labels yourself and save a trip to the post office":[null,""],"H":[null,""],"W":[null,""],"L":[null,""],"Disconnect":[null,""],"Activate":[null,""],"No activity yet":[null,""],"Note":[null,""],"Refunded %(amount)s":[null,""],"%(service)s label (#%(labelNum)d) refund rejected":[null,""],"%(service)s label (#%(labelNum)d) refunded (%(amount)s)":[null,""],"%(service)s label (#%(labelNum)d) refund requested (%(amount)s)":[null,""],"Note sent to customer":[null,""],"Internal note":[null,""],"Show notes from %(date)s":[null,""],"%(count)s event":["%(count)s events","","",""],"WeChat Pay":[null,""],"Toggle menu":[null,""],"Return to Order #%(orderId)s":[null,""],"Our team is here for you. View our {{docsA}}support docs{{/docsA}} or {{ticketA}}open a support ticket{{/ticketA}}.":[null,""],"Logging":[null,""],"No services configured. {{a}}Add a shipping service{{/a}}":[null,""],"Edit service settings":[null,""],"Request was made %s - check logs below or {{a}}edit service settings{{/a}}":[null,""],"Copy for support":[null,""],"Last %s entry. {{a}}Show full log{{/a}}":["Last %s entries. {{a}}Show full log{{/a}}","","",""],"Log tail copied to clipboard":[null,""],"You have unsaved changes. Are you sure you want to leave this page?":[null,""],"Value ($ per unit)":[null,""],"Weight (%s per unit)":[null,""],"Description":[null,""],"Country where the product was manufactured or assembled":[null,""],"Origin country":[null,""],"USPS":[null,""],"Optional":[null,""],"Retry":[null,""],"shipping label printing":[null,""],"shipping label printing and smoother payment setup":[null,""],"automated tax calculation and shipping label printing":[null,""],"automated tax calculation, shipping label printing, and smoother payment setup":[null,""],"Data resource description.":[null,""],"Data resource ID.":[null,""],"List of supported currencies.":[null,""],"List of supported states in a given country.":[null,""],"List of supported continents, countries, and states.":[null,""],"Sorry, you cannot view this resource.":[null,""],"Sorry, you cannot list resources.":[null,""],"The unit weights are defined in for this country.":[null,""],"Thousands separator for displayed prices in this country.":[null,""],"Full name of state.":[null,""],"State code.":[null,""],"List of states in this country.":[null,""],"Number of decimal points shown in displayed prices for this country.":[null,""],"Full name of country.":[null,""],"The unit lengths are defined in for this country.":[null,""],"Decimal separator for displayed prices for this country.":[null,""],"Currency symbol position for this country.":[null,""],"Default ISO4127 alpha-3 currency code for the country.":[null,""],"ISO3166 alpha-2 country code.":[null,""],"List of countries on this continent.":[null,""],"Full name of continent.":[null,""],"There are no locations matching these parameters.":[null,""],"2 character continent code.":[null,""],"Shipping label tracking number":[null,""],"Shipping label service":[null,""],"Warning: Erasing personal data will cause the ability to reprint or refund WooCommerce Shipping & Tax shipping labels to be lost on the affected orders.":[null,""],"By using this extension, you may be storing personal data or sharing data with external services. <a href=\"%s\" target=\"_blank\">Learn more about how this works, including what you may want to include in your privacy policy.</a>":[null,"Используя это расширение, вы можете хранить личные данные или обмениваться данными с внешними службами. <a href=\"%s\" target=\"_blank\">Узнайте больше о том, как это работает, включая то, что вы можете включить в свою политику конфиденциальности</a>."],"There was a problem updating your saved credit cards.":[null,"Возникла проблема с обновлением данных ваших сохраненных банковских карт."],"No labels found for this period":[null,"Меток за данный период не обнаружено"],"Total":[null,"Всего"],"Refund":[null,"Возврат"],"Price":[null,"Цена"],"Order":[null,"Заказ"],"Time":[null,"Время"],"Requested":[null,""],"Last 7 days":[null,"Последние 7 дней"],"This month":[null,"Этот месяц"],"Last month":[null,"Прошлый месяц"],"Year":[null,"Год"],"Export CSV":[null,"Экспорт CSV"],"Other Log":[null,""],"Taxes Log":[null,""],"Shipping Log":[null,""],"Display troubleshooting information on the Cart and Checkout pages.":[null,""],"Write diagnostic messages to log files. Helpful when contacting support.":[null,""],"Enter your email address at which to accept payments. You'll need to link your own account in order to perform anything other than \"sale\" transactions.":[null,"Введите адрес электронной почты, по которому принимаются платежи. Вам нужно будет подключить свою учётную запись, чтобы какие-либо действия, кроме транзакций \"продажи\"."],"Payment Email":[null,""],"To authenticate payments with WooCommerce Shipping & Tax, <a href=\"%s\">click here</a>.":[null,""],"Payments will be authenticated by WooCommerce Shipping & Tax and directed to the following email address. To disable this feature and link a PayPal account, <a href=\"%s\">click here</a>.":[null,""],"%s (Note that \"authorizing payment only\" requires linking a PayPal account.)":[null,""],"Link account":[null,""],"Link a new or existing PayPal account to make sure future orders are marked “Processing” instead of “On hold”, and so refunds can be issued without leaving WooCommerce.":[null,""],"Link your PayPal account":[null,""],"To issue refunds via PayPal Checkout, you will need to <a href=\"%s\">link a PayPal account</a> with the email address that received this payment.":[null,""],"Link a PayPal account":[null,""],"Refresh":[null,""],"Tracking number":[null,""],"Provider":[null,""],"WooCommerce Shipping & Tax is almost ready to go! Once you connect Jetpack you'll have access to %s.":[null,""],"Hosted services for WooCommerce: automated tax calculation, shipping label printing, and smoother payment setup.":[null,""],"Tax Class":[null,""],"Shipping":[null,""],"Compound":[null,""],"Priority":[null,""],"Tax Name":[null,""],"Rate %":[null,""],"ZIP/Postcode":[null,""],"State Code":[null,""],"Country Code":[null,""],"Enable automated taxes":[null,""],"Disable automated taxes":[null,""],"Automated taxes":[null,""],"By clicking \"%1$s\", you agree to the <a href=\"%2$s\">Terms of Service</a> and to <a href=\"%3$s\">share certain data and settings</a> with WordPress.com and/or third parties.":[null,""],"Setup complete.":[null,""],"You can now enjoy %s.":[null,""],"WooCommerce Shipping & Tax is almost ready to go! Once you connect your store you'll have access to %s.":[null,""],"automated tax calculation":[null,""],"smoother payment setup":[null,""],"automated tax calculation and smoother payment setup":[null,""],"Required":[null,""],"Your shipping settings have been saved.":[null,""],"Unable to save your shipping settings. Please try again.":[null,""],"Dimensions":[null,""],"Close":[null,""],"Packages to be Shipped":[null,""],"Add to a New Package":[null,""],"Add items":[null,""],"Individually Shipped Item":[null,""],"Item Dimensions":[null,""],"Please select a package":[null,""],"Service schemas were not loaded":[null,""],"Bad request":[null,""],"Order not found":[null,""],"Got it, thanks!":[null,""],"Activate Jetpack and connect":[null,""],"Install Jetpack and connect":[null,""],"Something went wrong. Please try connecting to Jetpack manually, or contact support on the WordPress.org forums.":[null,""],"Connecting...":[null,""],"Activating...":[null,""],"When you're ready, purchase and print discounted labels from %s right here.":[null,""],"Discounted Shipping Labels":[null,""],"American Express":[null,""],"Discover":[null,""],"MasterCard":[null,""],"VISA":[null,""],"PayPal":[null,""],"Add another credit card":[null,""],"%(selectedCount)d package selected":["%(selectedCount)d packages selected","","",""],"Unable to get your settings. Please refresh the page to try again.":[null,""],"%(numSelected)d service selected":["%(numSelected)d services selected","","",""],"Add and edit saved packages using the {{a}}Packaging Manager{{/a}}.":[null,""],"Tracking #: {{trackingLink/}}":[null,""],"%(item)s from {{pckg/}}":[null,""],"Which items would you like to add to {{pckg/}}?":[null,""],"1 item in 1 package: %(weight)s %(unit)s total":[null,""],"%(itemsCount)d items in 1 package: %(weight)s %(unit)s total":[null,""],"%(itemsCount)d items in %(packageCount)d packages: %(weight)s %(unit)s total":[null,""],"{{itemLink/}} is currently saved for a later shipment.":[null,""],"{{itemLink/}} is currently shipped in its original packaging.":[null,""],"{{itemLink/}} is currently in {{pckg/}}.":[null,""],"Choose rate: %(pckg)s":[null,""],"Refund label (-%(amount)s)":[null,""],"Where would you like to move it?":[null,""],"Unsaved changes made to packages":[null,""],"There are no items in this package.":[null,""],"Ship in original packaging":[null,""],"Request refund":[null,""],"Reprint":[null,""],"Paper size":[null,""],"No packages selected":[null,""],"Move":[null,""],"Move item":[null,""],"Increase the rates calculated by the carrier to account for packaging and handling costs. You can also add a negative amount to save your customers money.":[null,""],"Create new label":[null,""],"All packages selected":[null,""],"Add":[null,""],"Add item":[null,""],"Add a credit card":[null,""],"#%d - [Deleted product]":[null,""],"#%1$d - %2$s":[null,""],"<a href=\"%s\">Support</a>":[null,""],"There was an error installing Jetpack. Please try installing it manually.":[null,""],"Shipping Labels":[null,""],"Automattic":[null,""],"https://woocommerce.com/":[null,""],"Phone":[null,""],"Connect":[null,""],"Save Settings":[null,""],"Your changes have been saved.":[null,""],"There was a problem with one or more entries. Please fix the errors below and try saving again.":[null,""],"Expand":[null,""],"Dismiss":[null,""],"You have unsaved changes.":[null,""],"Type of package":[null,""],"Add package":["Add packages","","",""],"Invalid value.":[null,""],"This field is required":[null,""],"Package name":[null,""],"This field must be unique":[null,""],"Unable to save your shipping packages. Please try again.":[null,""],"Save changes":[null,""],"Untitled":[null,""],"Dimensions (L x W x H)":[null,""],"All services selected":[null,""],"Expand Services":[null,""],"Service":[null,""],"Price adjustment":[null,""],"Saved Packages":[null,""],"Tracking":[null,""],"Create shipping label":["Create shipping labels","","",""],"Name":[null,""],"Company":[null,""],"Address":[null,""],"City":[null,""],"State":[null,""],"Country":[null,""],"Invalid address":[null,""],"Origin address":[null,""],"Destination address":[null,""],"We have slightly modified the address entered. If correct, please use the suggested address to ensure accurate delivery.":[null,""],"Address entered":[null,""],"Edit address":[null,""],"Suggested address":[null,""],"Use selected address":[null,""],"Use these packages":[null,""],"The service and rate chosen by the customer at checkout is not available. Please choose another.":[null,""],"Request a refund":[null,""],"You can request a refund for a shipping label that has not been used to ship a package. It will take at least %(days)s days to process.":[null,""],"Purchase date":[null,""],"Amount eligible for refund":[null,""],"Reprint shipping label":[null,""],"If there was a printing error when you purchased the label, you can print it again.":[null,""],"NOTE: If you already used the label in a package, printing and using it again is a violation of our terms of service and may result in criminal charges.":[null,""],"Print":[null,""],"Cancel":[null,""],"N/A":[null,""],"More":[null,""],"Invalid PDF request.":[null,""],"Unknown package":[null,""],"Individual packaging":[null,""],"Unable to update service settings. Validation failed. %s":[null,""],"Unable to update service settings. The form data could not be read.":[null,""],"Unable to update service settings. Form data is missing service ID.":[null,""],"Unable to update settings. The form data could not be read.":[null,""],"Unable to update settings. %s":[null,""],"Packaging":[null,""],"Section not loading? Visit the <a href=\"%s\">status page</a> for troubleshooting steps.":[null,""],"Note: Jetpack development mode is enabled on this site. This site will not be able to obtain payment methods from WooCommerce Shipping & Tax production servers.":[null,""],"Note: Jetpack is connected, but development mode is also enabled on this site. Please disable development mode.":[null,""],"Shipping Label":[null,""],"yd":[null,""],"in":[null,""],"mm":[null,""],"cm":[null,""],"m":[null,""],"oz":[null,""],"lbs":[null,""],"g":[null,""],"kg":[null,""],"An invalid service ID was received.":[null,""],"An invalid service instance was received.":[null,""],"Rest of the World":[null,""],"Support":[null,""],"Debug":[null,""],"Services":[null,""],"Need help?":[null,""],"Log is empty":[null,""],"Disabled":[null,""],"Enabled":[null,""],"%s Shipping Zone":[null,""],"The most recent rate request failed":[null,""],"The most recent rate request was successful":[null,""],"No rate requests have yet been made for this service":[null,""],"Setup for this service has not yet been completed":[null,""],"Service data is up-to-date":[null,""],"Service data was found, but is more than one day old":[null,""],"Service data was found, but is more than three days old":[null,""],"Service data found, but may be out of date":[null,""],"No service data available":[null,""],"Jetpack":[null,""],"Jetpack %s is connected and working correctly":[null,""],"This is a Jetpack staging site":[null,""],"Jetpack is not connected to WordPress.com. Make sure the Jetpack plugin is installed, activated, and connected.":[null,""],"Jetpack %1$s or higher is required (You are running %2$s)":[null,""],"Please install and activate the Jetpack plugin, version %s or higher":[null,""],"WooCommerce":[null,""],"WooCommerce %s is configured correctly":[null,""],"Please set Base Location in WooCommerce Settings > General":[null,""],"WooCommerce %1$s or higher is required (You are running %2$s)":[null,""],"Dismiss this notice":[null,""],"ERROR: Your site has a problem connecting to the WooCommerce Shipping & Tax API. Please make sure your Jetpack connection is working.":[null,""],"Your site is succesfully communicating to the WooCommerce Shipping & Tax API.":[null,""],"This will test your WooCommerce Shipping & Tax connection to ensure everything is working correctly":[null,""],"Test Connection":[null,""],"The WooCommerce Shipping & Tax brandname\u0004WooCommerce Shipping & Tax":[null,""],"The WooCommerce Shipping & Tax brandname\u0004WooCommerce Shipping":[null,""],"%s - ZIP/Postal code checkout field label\u0004Invalid %s entered.":[null,""],"%s - ZIP/Postal code checkout field label\u0004%s does not match the selected state.":[null,""],"date is of the form MM/YY\u0004Expires %(date)s":[null,""],"A service with an unknown title and unknown method_title\u0004Unknown":[null,""],"This section displays the overall health of WooCommerce Shipping & Tax and the things it depends on\u0004Health":[null,""]}
1
+ {"0":[null,""],"":{"po-revision-date":"2019-07-26 09:06:01+0000","mime-version":"1.0","content-type":"text/plain; charset=UTF-8","content-transfer-encoding":"8bit","plural-forms":"nplurals=3; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : ((n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14)) ? 1 : 2);","x-generator":"GlotPress/3.0.0-alpha.2","language":"ru","project-id-version":"Plugins - WooCommerce Shipping &amp; Tax - Stable (latest release)"},"Features":[null,""],"Carrier":[null,""],"Express delivery from the experts in international shipping":[null,""],"Live rates for %(carrierName)s at checkout":[null,""],"Ship with the largest delivery network in the United States":[null,""],"Discounted %(carrierName)s shipping labels":[null,""],"To be displayed at checkout, this carrier must be added as a shipping method to selected shipping zones":[null,""],"Add to shipping zones":[null,""],"Show live rates directly on your store - never under or overcharge for shipping again":[null,""],"Live rates at checkout":[null,""],"Last updated %s.":[null,""],"At least one of the new predefined packages has the same name as existing packages.":[null,""],"The new predefined package names are not unique.":[null,""],"At least one of the new custom packages has the same name as existing packages.":[null,""],"The new custom package names are not unique.":[null,""],"Go to shipping zones":[null,""],"Add DHL Express as a shipping method to selected shipping zones to display live rates at checkout.":[null,""],"DHL Express live rates are now available":[null,""],"State %1$s is invalid for %2$s.":[null,""],"%1$s %2$s is invalid for %3$s.":[null,""],"A %1$s is required for %2$s.":[null,""],"A country is required":[null,""],"Your store is over the limit for rate calls this month and your account will be charged for overages. To prevent future overage charges you can upgrade your plan.":[null,""],"There was an error trying to activate your subscription.":[null,""],"Your subscription was succesfully activated.":[null,""],"Manage":[null,""],"Usage":[null,""],"View and manage your subscription usage":[null,""],"Shipping method":[null,""],"The subscription is already active.":[null,""],"Set up your own carrier account to compare rates and print labels from multiple carriers in WooCommerce Shipping. Learn more about adding {{a}}carrier accounts{{/a}}.":[null,""],"There was an error connecting to your %(carrierName)s account. Please check that all of the information entered matches your %(carrierName)s account and try to connect again.":[null,""],"Your carrier account was connected successfully.":[null,""],"The date must be a valid date in the format YYYY-MM-DD":[null,""],"The invoice number needs to be 9 or 13 letters and digits in length":[null,""],"The company website format is not valid":[null,""],"The email format is not valid":[null,""],"The ZIP/Postal code needs to be 5 digits in length":[null,""],"The phone number needs to be 10 digits in length":[null,""],"The UPS account number needs to be 6 letters and digits in length":[null,""],"This will remove the connection with %(carrier_name)s. All of your %(carrier_name)s account information will be deleted and you won\\u2019t see %(carrier_name)s rates.":[null,""],"Disconnect your %(carrier_name)s account":[null,""],"There was an error trying to disconnect your carrier account":[null,""],"Your carrier account was disconnected succesfully.":[null,""],"DHL Express":[null,""],"Powered by WooCommerce Tax. If automated taxes are enabled, you'll need to enter prices exclusive of tax.":[null,""],"WooCommerce Helper auth is missing":[null,""],"USPS labels without tracking are not eligible for refund.":[null,""],"General Information":[null,""],"Connect your %(carrierName)s account":[null,""],"%(carrierName)s not supported.":[null,""],"Loading":[null,""],"WooCommerce Shipping & Tax Data":[null,""],"Print customs form":[null,""],"Test your WooCommerce Shipping & Tax connection":[null,""],"WooCommerce Shipping & Tax Status":[null,""],"Connect your store to activate WooCommerce Shipping & Tax":[null,""],"Connect Jetpack to activate WooCommerce Shipping & Tax":[null,""],"WooCommerce Shipping now supports DHL labels for international shipments. Purchase and print discounted labels from DHL and USPS right here.":[null,""],"Discounted DHL Shipping Labels":[null,""],"WooCommerce Shipping":[null,""],"Invalid WooCommerce Shipping & Tax service slug provided":[null,""],"WooCommerce Shipping & Tax":[null,""],"ZIP/Postal code":[null,""],"This action will delete any information entered on the form.":[null,""],"Cancel connection":[null,""],"Ok":[null,""],"UPS invoice control id":[null,""],"UPS invoice currency":[null,""],"UPS invoice amount":[null,""],"UPS invoice date":[null,""],"UPS invoice number":[null,""],"I have been issued an invoice from UPS within the past 90 days":[null,""],"UPS account information":[null,""],"Company website":[null,""],"Job title":[null,""],"Company name":[null,""],"This is the company info you used to create your UPS account":[null,""],"Company information":[null,""],"Email":[null,""],"Address 2 (optional)":[null,""],"Account number":[null,""],"This is the account number and address from your UPS profile":[null,""],"General information":[null,""],"If you need a UPS account number, go to {{a}}UPS.com{{/a}} to create a new account.":[null,""],"Set up your own UPS carrier account to compare rates and print labels from multiple carriers in WooCommerce Shipping. Learn more about adding {{a}}carrier accounts{{/a}}.":[null,""],"Connect your UPS account":[null,""],"Set up your own carrier account by adding your credentials here":[null,""],"Carrier account":[null,""],"Credentials":[null,""],"Adult signature required":[null,""],"Signature required":[null,""],"Other\\u2026":[null,""],"Select one\\u2026":[null,""],"Validating address\\u2026":[null,""],"Purchasing\\u2026":[null,""],"Your UPS account will be charged":[null,""],"Package %(index)s \\u2013 %(title)s":[null,""],"Saving\\u2026":[null,""],"Your tax rates and settings will be automatically configured for %1$s. <a href=\"https://docs.woocommerce.com/document/setting-up-taxes-in-woocommerce/#section-12\">Learn more about setting up tax rates for additional nexuses</a>":[null,""],"Your tax rates and settings will be automatically configured for %1$s, %2$s. <a href=\"https://docs.woocommerce.com/document/setting-up-taxes-in-woocommerce/#section-12\">Learn more about setting up tax rates for additional nexuses</a>":[null,""],"%(itemCount)d item is ready to be fulfilled":["%(itemCount)d items are ready to be fulfilled","","",""],"%(itemCount)d item was fulfilled on {{span}}%(createdDate)s{{/span}}":["%(itemCount)d items were fulfilled on {{span}}%(createdDate)s{{/span}}","","",""],"Schedule a pickup":[null,""],"Label images older than 180 days are deleted by our technology partners for general security and data privacy concerns.":[null,""],"Labels older than 30 days cannot be refunded.":[null,""],"Mark this order as complete and notify the customer":[null,""],"Notify the customer with shipment details":[null,""],"You save %s with WooCommerce Shipping":[null,""],"WooCommerce Shipping & Tax requires the WooCommerce plugin to be installed and active. You can download %s here.":[null,""],"No tracking information available at this time":[null,""],"Connection error: unable to create label at this time":[null,""],"Track Package":["Track Packages","","",""],"Which package would you like to track?":[null,""],"%(service)s label (#%(labelIndex)d)":[null,""],"To print this shipping label, {{a}}add a credit card to your account{{/a}}.":[null,""],"Add credit card":[null,""],"To print this shipping label, {{a}}choose a credit card to add to your account{{/a}}.":[null,""],"Choose credit card":[null,""],"Buy shipping label":["Buy shipping labels","","",""],"shipping label ready":["shipping labels ready","","",""],"Shipping from":[null,""],"Shipping summary":[null,""],"Customer paid a {{shippingMethod/}} of {{shippingCost/}} for shipping":[null,""],"Shipping rates":[null,""],"HS Tariff number":[null,""],"Submit":[null,""],"Total Weight (with package)":[null,""],"QTY":[null,""],"Weight":[null,""],"Items to fulfill":[null,""],"Select a package type":[null,""],"Package details":[null,""],"Your shipping packages have been saved.":[null,""],"0.0":[null,""],"Shipment Tracking":[null,""],"Customs information valid":[null,""],"Customs information incomplete":[null,""],"Packing Log:":[null,""],"Chosen Rate:":[null,""],"Shipping Method ID:":[null,""],"Shipping Method Name:":[null,""],"Shipping Debug":[null,""],"<strong>\"%2$s\" is missing weight, length, width, or height.</strong><br />Shipping rates cannot be calculated. <a href=\"%1$s\">Enter dimensions and weight for %2$s</a> so your customers can purchase this item.":[null,""],"Unable to send request to WooCommerce Shipping & Tax server. The timestamp generated for the signature is too old.":[null,""],"Unable to send request to WooCommerce Shipping & Tax server. Jetpack Token is malformed.":[null,""],"Unable to send request to WooCommerce Shipping & Tax server. Jetpack Token is missing":[null,""],"Error: The WooCommerce Shipping & Tax server returned: %1$s %2$s ( %3$d )":[null,""],"Error: The WooCommerce Shipping & Tax server returned ( %d ) and an empty response body.":[null,""],"Error: The WooCommerce Shipping & Tax server returned HTTP code: %d":[null,""],"Unable to encode body for request to WooCommerce Shipping & Tax server.":[null,""],"Unable to send request to WooCommerce Shipping & Tax server. Body must be an array.":[null,""],"Unable to send request to WooCommerce Shipping & Tax server. Jetpack connection does not implement get_access_token.":[null,""],"Unable to send request to WooCommerce Shipping & Tax server. Jetpack_Data was not found.":[null,""],"No shipping rate could be calculated. No items in the package are shippable.":[null,""],"Product ( ID: %d ) is missing a dimension value. Shipping rates cannot be calculated.":[null,""],"Product ( ID: %d ) did not include a weight. Shipping rates cannot be calculated.":[null,""],"Packing log:":[null,""],"Received rate: %1$s (%2$s)":[null,""],"Your customer selected {{shippingMethod/}}":[null,""],"Total rate: %(total)s":[null,""],"%(serviceName)s: %(rate)s":[null,""],"No rates found":[null,""],"WooCommerce Shipping gives you access to USPS Commercial Pricing, which is discounted over Retail rates.":[null,""],"more info":[null,""],"ITN":[null,""],"Sanitary / Phytosanitary inspection":[null,""],"Quarantine":[null,""],"None":[null,""],"Restriction type":[null,""],"Details":[null,""],"Sample":[null,""],"Gift":[null,""],"Documents":[null,""],"Merchandise":[null,""],"Contents type":[null,""],"Return to sender if package is unable to be delivered":[null,""],"Value (per unit)":[null,""],"Weight (per unit)":[null,""],"Save customs form":[null,""],"Customs":[null,""],"Use address as entered":[null,""],"View on Google Maps":[null,""],"Verify with USPS":[null,""],"Automatic verification failed for this address. It may still be a valid address \\u2014 use the tools below to manually verify.":[null,""],"We were unable to automatically verify the address.":[null,""],"We were unable to automatically verify the address \\u2014 %(error)s.":[null,""],"You've edited the address, please revalidate it for accurate rates":[null,""],"Verify address":[null,""],"%(message)s. Please modify the address and try again.":[null,""],"View details":[null,""],"Items":[null,""],"Package":[null,""],"Receipt":[null,""],"Label #%(labelIndex)s details":[null,""],"{{icon/}} Delete this package":[null,""],"Done":[null,""],"Add boxes, envelopes, and other packages you use most frequently":[null,""],"Remove":[null,""],"Edit":[null,""],"Weight of empty package":[null,""],"Unique package name":[null,""],"Envelope":[null,""],"Box":[null,""],"This field is required.":[null,""],"Payment":[null,""],"Email the label purchase receipts to %(ownerName)s (%(ownerLogin)s) at %(ownerEmail)s":[null,""],"Email Receipts":[null,""],"To purchase shipping labels, choose a credit card you have on file or add a new card.":[null,""],"Choose a different card":[null,""],"To purchase shipping labels, add a credit card.":[null,""],"We'll charge the credit card on your account (%(card)s) to pay for the labels you print":[null,""],"Credit cards are retrieved from the following WordPress.com account: %(wpcomLogin)s <%(wpcomEmail)s>":[null,""],"Only the site owner can change these settings. Please contact %(ownerName)s (%(ownerLogin)s) to change the shipping label settings.":[null,""],"Only the site owner can manage shipping label payment methods. Please contact %(ownerName)s (%(ownerLogin)s) to manage payment methods.":[null,""],"%(card)s ****%(digits)s":[null,""],"Print shipping labels yourself and save a trip to the post office":[null,""],"H":[null,""],"W":[null,""],"L":[null,""],"Disconnect":[null,""],"Activate":[null,""],"No activity yet":[null,""],"Note":[null,""],"Refunded %(amount)s":[null,""],"%(service)s label (#%(labelNum)d) refund rejected":[null,""],"%(service)s label (#%(labelNum)d) refunded (%(amount)s)":[null,""],"%(service)s label (#%(labelNum)d) refund requested (%(amount)s)":[null,""],"Note sent to customer":[null,""],"Internal note":[null,""],"Show notes from %(date)s":[null,""],"%(count)s event":["%(count)s events","","",""],"WeChat Pay":[null,""],"Toggle menu":[null,""],"Return to Order #%(orderId)s":[null,""],"Our team is here for you. View our {{docsA}}support docs{{/docsA}} or {{ticketA}}open a support ticket{{/ticketA}}.":[null,""],"Logging":[null,""],"No services configured. {{a}}Add a shipping service{{/a}}":[null,""],"Edit service settings":[null,""],"Request was made %s - check logs below or {{a}}edit service settings{{/a}}":[null,""],"Copy for support":[null,""],"Last %s entry. {{a}}Show full log{{/a}}":["Last %s entries. {{a}}Show full log{{/a}}","","",""],"Log tail copied to clipboard":[null,""],"You have unsaved changes. Are you sure you want to leave this page?":[null,""],"Value ($ per unit)":[null,""],"Weight (%s per unit)":[null,""],"Description":[null,""],"Country where the product was manufactured or assembled":[null,""],"Origin country":[null,""],"USPS":[null,""],"Optional":[null,""],"Retry":[null,""],"shipping label printing":[null,""],"shipping label printing and smoother payment setup":[null,""],"automated tax calculation and shipping label printing":[null,""],"automated tax calculation, shipping label printing, and smoother payment setup":[null,""],"Data resource description.":[null,""],"Data resource ID.":[null,""],"List of supported currencies.":[null,""],"List of supported states in a given country.":[null,""],"List of supported continents, countries, and states.":[null,""],"Sorry, you cannot view this resource.":[null,""],"Sorry, you cannot list resources.":[null,""],"The unit weights are defined in for this country.":[null,""],"Thousands separator for displayed prices in this country.":[null,""],"Full name of state.":[null,""],"State code.":[null,""],"List of states in this country.":[null,""],"Number of decimal points shown in displayed prices for this country.":[null,""],"Full name of country.":[null,""],"The unit lengths are defined in for this country.":[null,""],"Decimal separator for displayed prices for this country.":[null,""],"Currency symbol position for this country.":[null,""],"Default ISO4127 alpha-3 currency code for the country.":[null,""],"ISO3166 alpha-2 country code.":[null,""],"List of countries on this continent.":[null,""],"Full name of continent.":[null,""],"There are no locations matching these parameters.":[null,""],"2 character continent code.":[null,""],"Shipping label tracking number":[null,""],"Shipping label service":[null,""],"Warning: Erasing personal data will cause the ability to reprint or refund WooCommerce Shipping & Tax shipping labels to be lost on the affected orders.":[null,""],"By using this extension, you may be storing personal data or sharing data with external services. <a href=\"%s\" target=\"_blank\">Learn more about how this works, including what you may want to include in your privacy policy.</a>":[null,"Используя это расширение, вы можете хранить личные данные или обмениваться данными с внешними службами. <a href=\"%s\" target=\"_blank\">Узнайте больше о том, как это работает, включая то, что вы можете включить в свою политику конфиденциальности</a>."],"There was a problem updating your saved credit cards.":[null,"Возникла проблема с обновлением данных ваших сохраненных банковских карт."],"No labels found for this period":[null,"Меток за данный период не обнаружено"],"Total":[null,"Всего"],"Refund":[null,"Возврат"],"Price":[null,"Цена"],"Order":[null,"Заказ"],"Time":[null,"Время"],"Requested":[null,""],"Last 7 days":[null,"Последние 7 дней"],"This month":[null,"Этот месяц"],"Last month":[null,"Прошлый месяц"],"Year":[null,"Год"],"Export CSV":[null,"Экспорт CSV"],"Other Log":[null,""],"Taxes Log":[null,""],"Shipping Log":[null,""],"Display troubleshooting information on the Cart and Checkout pages.":[null,""],"Write diagnostic messages to log files. Helpful when contacting support.":[null,""],"Enter your email address at which to accept payments. You'll need to link your own account in order to perform anything other than \"sale\" transactions.":[null,"Введите адрес электронной почты, по которому принимаются платежи. Вам нужно будет подключить свою учётную запись, чтобы какие-либо действия, кроме транзакций \"продажи\"."],"Payment Email":[null,""],"To authenticate payments with WooCommerce Shipping & Tax, <a href=\"%s\">click here</a>.":[null,""],"Payments will be authenticated by WooCommerce Shipping & Tax and directed to the following email address. To disable this feature and link a PayPal account, <a href=\"%s\">click here</a>.":[null,""],"%s (Note that \"authorizing payment only\" requires linking a PayPal account.)":[null,""],"Link account":[null,""],"Link a new or existing PayPal account to make sure future orders are marked “Processing” instead of “On hold”, and so refunds can be issued without leaving WooCommerce.":[null,""],"Link your PayPal account":[null,""],"To issue refunds via PayPal Checkout, you will need to <a href=\"%s\">link a PayPal account</a> with the email address that received this payment.":[null,""],"Link a PayPal account":[null,""],"Refresh":[null,""],"Tracking number":[null,""],"Provider":[null,""],"WooCommerce Shipping & Tax is almost ready to go! Once you connect Jetpack you'll have access to %s.":[null,""],"Hosted services for WooCommerce: automated tax calculation, shipping label printing, and smoother payment setup.":[null,""],"Tax Class":[null,""],"Shipping":[null,""],"Compound":[null,""],"Priority":[null,""],"Tax Name":[null,""],"Rate %":[null,""],"ZIP/Postcode":[null,""],"State Code":[null,""],"Country Code":[null,""],"Enable automated taxes":[null,""],"Disable automated taxes":[null,""],"Automated taxes":[null,""],"By clicking \"%1$s\", you agree to the <a href=\"%2$s\">Terms of Service</a> and to <a href=\"%3$s\">share certain data and settings</a> with WordPress.com and/or third parties.":[null,""],"Setup complete.":[null,""],"You can now enjoy %s.":[null,""],"WooCommerce Shipping & Tax is almost ready to go! Once you connect your store you'll have access to %s.":[null,""],"automated tax calculation":[null,""],"smoother payment setup":[null,""],"automated tax calculation and smoother payment setup":[null,""],"Required":[null,""],"Your shipping settings have been saved.":[null,""],"Unable to save your shipping settings. Please try again.":[null,""],"Dimensions":[null,""],"Close":[null,""],"Packages to be Shipped":[null,""],"Add to a New Package":[null,""],"Add items":[null,""],"Individually Shipped Item":[null,""],"Item Dimensions":[null,""],"Please select a package":[null,""],"Service schemas were not loaded":[null,""],"Bad request":[null,""],"Order not found":[null,""],"Got it, thanks!":[null,""],"Activate Jetpack and connect":[null,""],"Install Jetpack and connect":[null,""],"Something went wrong. Please try connecting to Jetpack manually, or contact support on the WordPress.org forums.":[null,""],"Connecting...":[null,""],"Activating...":[null,""],"When you're ready, purchase and print discounted labels from %s right here.":[null,""],"Discounted Shipping Labels":[null,""],"American Express":[null,""],"Discover":[null,""],"MasterCard":[null,""],"VISA":[null,""],"PayPal":[null,""],"Add another credit card":[null,""],"%(selectedCount)d package selected":["%(selectedCount)d packages selected","","",""],"Unable to get your settings. Please refresh the page to try again.":[null,""],"%(numSelected)d service selected":["%(numSelected)d services selected","","",""],"Add and edit saved packages using the {{a}}Packaging Manager{{/a}}.":[null,""],"Tracking #: {{trackingLink/}}":[null,""],"%(item)s from {{pckg/}}":[null,""],"Which items would you like to add to {{pckg/}}?":[null,""],"1 item in 1 package: %(weight)s %(unit)s total":[null,""],"%(itemsCount)d items in 1 package: %(weight)s %(unit)s total":[null,""],"%(itemsCount)d items in %(packageCount)d packages: %(weight)s %(unit)s total":[null,""],"{{itemLink/}} is currently saved for a later shipment.":[null,""],"{{itemLink/}} is currently shipped in its original packaging.":[null,""],"{{itemLink/}} is currently in {{pckg/}}.":[null,""],"Choose rate: %(pckg)s":[null,""],"Refund label (-%(amount)s)":[null,""],"Where would you like to move it?":[null,""],"Unsaved changes made to packages":[null,""],"There are no items in this package.":[null,""],"Ship in original packaging":[null,""],"Request refund":[null,""],"Reprint":[null,""],"Paper size":[null,""],"No packages selected":[null,""],"Move":[null,""],"Move item":[null,""],"Increase the rates calculated by the carrier to account for packaging and handling costs. You can also add a negative amount to save your customers money.":[null,""],"Create new label":[null,""],"All packages selected":[null,""],"Add":[null,""],"Add item":[null,""],"Add a credit card":[null,""],"#%d - [Deleted product]":[null,""],"#%1$d - %2$s":[null,""],"<a href=\"%s\">Support</a>":[null,""],"There was an error installing Jetpack. Please try installing it manually.":[null,""],"Shipping Labels":[null,""],"https://woocommerce.com/":[null,""],"Phone":[null,""],"Connect":[null,""],"Save Settings":[null,""],"Your changes have been saved.":[null,""],"There was a problem with one or more entries. Please fix the errors below and try saving again.":[null,""],"Expand":[null,""],"Dismiss":[null,""],"You have unsaved changes.":[null,""],"Type of package":[null,""],"Add package":["Add packages","","",""],"Invalid value.":[null,""],"This field is required":[null,""],"Package name":[null,""],"This field must be unique":[null,""],"Unable to save your shipping packages. Please try again.":[null,""],"Save changes":[null,""],"Untitled":[null,""],"Dimensions (L x W x H)":[null,""],"All services selected":[null,""],"Expand Services":[null,""],"Service":[null,""],"Price adjustment":[null,""],"Saved Packages":[null,""],"Tracking":[null,""],"Create shipping label":["Create shipping labels","","",""],"Name":[null,""],"Company":[null,""],"Address":[null,""],"City":[null,""],"State":[null,""],"Country":[null,""],"Invalid address":[null,""],"Origin address":[null,""],"Destination address":[null,""],"We have slightly modified the address entered. If correct, please use the suggested address to ensure accurate delivery.":[null,""],"Address entered":[null,""],"Edit address":[null,""],"Suggested address":[null,""],"Use selected address":[null,""],"Use these packages":[null,""],"The service and rate chosen by the customer at checkout is not available. Please choose another.":[null,""],"Request a refund":[null,""],"You can request a refund for a shipping label that has not been used to ship a package. It will take at least %(days)s days to process.":[null,""],"Purchase date":[null,""],"Amount eligible for refund":[null,""],"Reprint shipping label":[null,""],"If there was a printing error when you purchased the label, you can print it again.":[null,""],"NOTE: If you already used the label in a package, printing and using it again is a violation of our terms of service and may result in criminal charges.":[null,""],"Print":[null,""],"Cancel":[null,""],"N/A":[null,""],"More":[null,""],"Invalid PDF request.":[null,""],"Unknown package":[null,""],"Individual packaging":[null,""],"Unable to update service settings. Validation failed. %s":[null,""],"Unable to update service settings. The form data could not be read.":[null,""],"Unable to update service settings. Form data is missing service ID.":[null,""],"Unable to update settings. The form data could not be read.":[null,""],"Unable to update settings. %s":[null,""],"Packaging":[null,""],"Section not loading? Visit the <a href=\"%s\">status page</a> for troubleshooting steps.":[null,""],"Note: Jetpack development mode is enabled on this site. This site will not be able to obtain payment methods from WooCommerce Shipping & Tax production servers.":[null,""],"Note: Jetpack is connected, but development mode is also enabled on this site. Please disable development mode.":[null,""],"Shipping Label":[null,""],"yd":[null,""],"in":[null,""],"mm":[null,""],"cm":[null,""],"m":[null,""],"oz":[null,""],"lbs":[null,""],"g":[null,""],"kg":[null,""],"An invalid service ID was received.":[null,""],"An invalid service instance was received.":[null,""],"Rest of the World":[null,""],"Support":[null,""],"Debug":[null,""],"Services":[null,""],"Need help?":[null,""],"Log is empty":[null,""],"Disabled":[null,""],"Enabled":[null,""],"%s Shipping Zone":[null,""],"The most recent rate request failed":[null,""],"The most recent rate request was successful":[null,""],"No rate requests have yet been made for this service":[null,""],"Setup for this service has not yet been completed":[null,""],"Service data is up-to-date":[null,""],"Service data was found, but is more than one day old":[null,""],"Service data was found, but is more than three days old":[null,""],"Service data found, but may be out of date":[null,""],"No service data available":[null,""],"Jetpack":[null,""],"Jetpack %s is connected and working correctly":[null,""],"This is a Jetpack staging site":[null,""],"Jetpack is not connected to WordPress.com. Make sure the Jetpack plugin is installed, activated, and connected.":[null,""],"Jetpack %1$s or higher is required (You are running %2$s)":[null,""],"Please install and activate the Jetpack plugin, version %s or higher":[null,""],"WooCommerce":[null,""],"WooCommerce %s is configured correctly":[null,""],"Please set Base Location in WooCommerce Settings > General":[null,""],"WooCommerce %1$s or higher is required (You are running %2$s)":[null,""],"Dismiss this notice":[null,""],"ERROR: Your site has a problem connecting to the WooCommerce Shipping & Tax API. Please make sure your Jetpack connection is working.":[null,""],"Your site is succesfully communicating to the WooCommerce Shipping & Tax API.":[null,""],"This will test your WooCommerce Shipping & Tax connection to ensure everything is working correctly":[null,""],"Test Connection":[null,""],"The WooCommerce Shipping & Tax brandname\u0004WooCommerce Shipping & Tax":[null,""],"The WooCommerce Shipping & Tax brandname\u0004WooCommerce Shipping":[null,""],"%s - ZIP/Postal code checkout field label\u0004Invalid %s entered.":[null,""],"%s - ZIP/Postal code checkout field label\u0004%s does not match the selected state.":[null,""],"date is of the form MM/YY\u0004Expires %(date)s":[null,""],"A service with an unknown title and unknown method_title\u0004Unknown":[null,""],"This section displays the overall health of WooCommerce Shipping & Tax and the things it depends on\u0004Health":[null,""]}
i18n/languages/woocommerce-services-ru.po CHANGED
@@ -51,7 +51,7 @@ msgstr ""
51
  msgid "Live rates at checkout"
52
  msgstr ""
53
 
54
- #: i18n/strings.php:354
55
  msgid "Last updated %s."
56
  msgstr ""
57
 
@@ -206,7 +206,7 @@ msgstr ""
206
  msgid "WooCommerce Helper auth is missing"
207
  msgstr ""
208
 
209
- #: i18n/strings.php:364 i18n/strings.php:428
210
  msgid "USPS labels without tracking are not eligible for refund."
211
  msgstr ""
212
 
@@ -226,11 +226,11 @@ msgstr ""
226
  msgid "Loading"
227
  msgstr ""
228
 
229
- #: i18n/strings.php:353
230
  msgid "WooCommerce Shipping & Tax Data"
231
  msgstr ""
232
 
233
- #: i18n/strings.php:372 i18n/strings.php:436
234
  msgid "Print customs form"
235
  msgstr ""
236
 
@@ -277,8 +277,8 @@ msgid "Invalid WooCommerce Shipping & Tax service slug provided"
277
  msgstr ""
278
 
279
  #. Plugin Name of the plugin
280
- #: classes/class-wc-connect-privacy.php:36
281
  #: classes/class-wc-connect-settings-pages.php:123
 
282
  msgid "WooCommerce Shipping & Tax"
283
  msgstr ""
284
 
@@ -411,7 +411,7 @@ msgstr ""
411
  msgid "Validating address\\u2026"
412
  msgstr ""
413
 
414
- #: i18n/strings.php:326 i18n/strings.php:405 i18n/strings.php:469
415
  msgid "Purchasing\\u2026"
416
  msgstr ""
417
 
@@ -423,7 +423,7 @@ msgstr ""
423
  msgid "Package %(index)s \\u2013 %(title)s"
424
  msgstr ""
425
 
426
- #: i18n/strings.php:6 i18n/strings.php:170 i18n/strings.php:482
427
  msgid "Saving\\u2026"
428
  msgstr ""
429
 
@@ -437,29 +437,29 @@ msgstr ""
437
  msgid "Your tax rates and settings will be automatically configured for %1$s, %2$s. <a href=\"https://docs.woocommerce.com/document/setting-up-taxes-in-woocommerce/#section-12\">Learn more about setting up tax rates for additional nexuses</a>"
438
  msgstr ""
439
 
440
- #: i18n/strings.php:480
441
  msgid "%(itemCount)d item is ready to be fulfilled"
442
  msgid_plural "%(itemCount)d items are ready to be fulfilled"
443
  msgstr[0] ""
444
  msgstr[1] ""
445
  msgstr[2] ""
446
 
447
- #: i18n/strings.php:479
448
  msgid "%(itemCount)d item was fulfilled on {{span}}%(createdDate)s{{/span}}"
449
  msgid_plural "%(itemCount)d items were fulfilled on {{span}}%(createdDate)s{{/span}}"
450
  msgstr[0] ""
451
  msgstr[1] ""
452
  msgstr[2] ""
453
 
454
- #: i18n/strings.php:371 i18n/strings.php:435
455
  msgid "Schedule a pickup"
456
  msgstr ""
457
 
458
- #: i18n/strings.php:367 i18n/strings.php:431
459
  msgid "Label images older than 180 days are deleted by our technology partners for general security and data privacy concerns."
460
  msgstr ""
461
 
462
- #: i18n/strings.php:363 i18n/strings.php:427
463
  msgid "Labels older than 30 days cannot be refunded."
464
  msgstr ""
465
 
@@ -480,27 +480,27 @@ msgstr ""
480
  msgid "WooCommerce Shipping & Tax requires the WooCommerce plugin to be installed and active. You can download %s here."
481
  msgstr ""
482
 
483
- #: i18n/strings.php:408
484
  msgid "No tracking information available at this time"
485
  msgstr ""
486
 
487
- #: i18n/strings.php:478
488
  msgid "Connection error: unable to create label at this time"
489
  msgstr ""
490
 
491
- #: i18n/strings.php:474 i18n/strings.php:476
492
  msgid "Track Package"
493
  msgid_plural "Track Packages"
494
  msgstr[0] ""
495
  msgstr[1] ""
496
  msgstr[2] ""
497
 
498
- #: i18n/strings.php:426
499
  msgid "Which package would you like to track?"
500
  msgstr ""
501
 
502
- #: i18n/strings.php:373 i18n/strings.php:404 i18n/strings.php:437
503
- #: i18n/strings.php:468
504
  msgid "%(service)s label (#%(labelIndex)d)"
505
  msgstr ""
506
 
@@ -590,7 +590,7 @@ msgstr ""
590
  msgid "0.0"
591
  msgstr ""
592
 
593
- #: woocommerce-services.php:1449
594
  msgid "Shipment Tracking"
595
  msgstr ""
596
 
@@ -602,23 +602,23 @@ msgstr ""
602
  msgid "Customs information incomplete"
603
  msgstr ""
604
 
605
- #: woocommerce-services.php:1492
606
  msgid "Packing Log:"
607
  msgstr ""
608
 
609
- #: woocommerce-services.php:1479
610
  msgid "Chosen Rate:"
611
  msgstr ""
612
 
613
- #: woocommerce-services.php:1475
614
  msgid "Shipping Method ID:"
615
  msgstr ""
616
 
617
- #: woocommerce-services.php:1471
618
  msgid "Shipping Method Name:"
619
  msgstr ""
620
 
621
- #: woocommerce-services.php:1455
622
  msgid "Shipping Debug"
623
  msgstr ""
624
 
@@ -626,15 +626,15 @@ msgstr ""
626
  msgid "<strong>\"%2$s\" is missing weight, length, width, or height.</strong><br />Shipping rates cannot be calculated. <a href=\"%1$s\">Enter dimensions and weight for %2$s</a> so your customers can purchase this item."
627
  msgstr ""
628
 
629
- #: classes/class-wc-connect-api-client.php:595
630
  msgid "Unable to send request to WooCommerce Shipping & Tax server. The timestamp generated for the signature is too old."
631
  msgstr ""
632
 
633
- #: classes/class-wc-connect-api-client.php:534
634
  msgid "Unable to send request to WooCommerce Shipping & Tax server. Jetpack Token is malformed."
635
  msgstr ""
636
 
637
- #: classes/class-wc-connect-api-client.php:527
638
  msgid "Unable to send request to WooCommerce Shipping & Tax server. Jetpack Token is missing"
639
  msgstr ""
640
 
@@ -668,7 +668,6 @@ msgid "Unable to send request to WooCommerce Shipping & Tax server. Jetpack_Data
668
  msgstr ""
669
 
670
  #: classes/class-wc-connect-api-client.php:160
671
- #: classes/class-wc-connect-api-client.php:187
672
  msgid "No shipping rate could be calculated. No items in the package are shippable."
673
  msgstr ""
674
 
@@ -817,23 +816,23 @@ msgstr ""
817
  msgid "%(message)s. Please modify the address and try again."
818
  msgstr ""
819
 
820
- #: i18n/strings.php:370 i18n/strings.php:434
821
  msgid "View details"
822
  msgstr ""
823
 
824
- #: i18n/strings.php:402 i18n/strings.php:466
825
  msgid "Items"
826
  msgstr ""
827
 
828
- #: i18n/strings.php:401 i18n/strings.php:465
829
  msgid "Package"
830
  msgstr ""
831
 
832
- #: i18n/strings.php:399 i18n/strings.php:463
833
  msgid "Receipt"
834
  msgstr ""
835
 
836
- #: i18n/strings.php:398 i18n/strings.php:462
837
  msgid "Label #%(labelIndex)s details"
838
  msgstr ""
839
 
@@ -948,43 +947,43 @@ msgstr ""
948
  msgid "Activate"
949
  msgstr ""
950
 
951
- #: i18n/strings.php:375 i18n/strings.php:439
952
  msgid "No activity yet"
953
  msgstr ""
954
 
955
- #: i18n/strings.php:383 i18n/strings.php:447
956
  msgid "Note"
957
  msgstr ""
958
 
959
- #: i18n/strings.php:382 i18n/strings.php:446
960
  msgid "Refunded %(amount)s"
961
  msgstr ""
962
 
963
- #: i18n/strings.php:380 i18n/strings.php:444
964
  msgid "%(service)s label (#%(labelNum)d) refund rejected"
965
  msgstr ""
966
 
967
- #: i18n/strings.php:379 i18n/strings.php:443
968
  msgid "%(service)s label (#%(labelNum)d) refunded (%(amount)s)"
969
  msgstr ""
970
 
971
- #: i18n/strings.php:378 i18n/strings.php:442
972
  msgid "%(service)s label (#%(labelNum)d) refund requested (%(amount)s)"
973
  msgstr ""
974
 
975
- #: i18n/strings.php:377 i18n/strings.php:441
976
  msgid "Note sent to customer"
977
  msgstr ""
978
 
979
- #: i18n/strings.php:376 i18n/strings.php:440
980
  msgid "Internal note"
981
  msgstr ""
982
 
983
- #: i18n/strings.php:407 i18n/strings.php:471
984
  msgid "Show notes from %(date)s"
985
  msgstr ""
986
 
987
- #: i18n/strings.php:406 i18n/strings.php:470
988
  msgid "%(count)s event"
989
  msgid_plural "%(count)s events"
990
  msgstr[0] ""
@@ -996,7 +995,7 @@ msgstr[2] ""
996
  msgid "WeChat Pay"
997
  msgstr ""
998
 
999
- #: i18n/strings.php:384 i18n/strings.php:448
1000
  msgid "Toggle menu"
1001
  msgstr ""
1002
 
@@ -1004,42 +1003,42 @@ msgstr ""
1004
  msgid "Return to Order #%(orderId)s"
1005
  msgstr ""
1006
 
1007
- #: i18n/strings.php:344
1008
  msgid "Our team is here for you. View our {{docsA}}support docs{{/docsA}} or {{ticketA}}open a support ticket{{/ticketA}}."
1009
  msgstr ""
1010
 
1011
- #: i18n/strings.php:335
1012
  msgid "Logging"
1013
  msgstr ""
1014
 
1015
- #: i18n/strings.php:362
1016
  msgid "No services configured. {{a}}Add a shipping service{{/a}}"
1017
  msgstr ""
1018
 
1019
- #: i18n/strings.php:360
1020
  msgid "Edit service settings"
1021
  msgstr ""
1022
 
1023
- #: i18n/strings.php:359
1024
  msgid "Request was made %s - check logs below or {{a}}edit service settings{{/a}}"
1025
  msgstr ""
1026
 
1027
- #: i18n/strings.php:358
1028
  msgid "Copy for support"
1029
  msgstr ""
1030
 
1031
- #: i18n/strings.php:357
1032
  msgid "Last %s entry. {{a}}Show full log{{/a}}"
1033
  msgid_plural "Last %s entries. {{a}}Show full log{{/a}}"
1034
  msgstr[0] ""
1035
  msgstr[1] ""
1036
  msgstr[2] ""
1037
 
1038
- #: i18n/strings.php:356
1039
  msgid "Log tail copied to clipboard"
1040
  msgstr ""
1041
 
1042
- #: i18n/strings.php:11 i18n/strings.php:414
1043
  msgid "You have unsaved changes. Are you sure you want to leave this page?"
1044
  msgstr ""
1045
 
@@ -1068,7 +1067,7 @@ msgid "USPS"
1068
  msgstr ""
1069
 
1070
  #: i18n/strings.php:5 i18n/strings.php:169 i18n/strings.php:295
1071
- #: i18n/strings.php:329 i18n/strings.php:410
1072
  msgid "Optional"
1073
  msgstr ""
1074
 
@@ -1223,8 +1222,8 @@ msgstr "Меток за данный период не обнаружено"
1223
  msgid "Total"
1224
  msgstr "Всего"
1225
 
1226
- #: classes/class-wc-connect-label-reports.php:170 i18n/strings.php:381
1227
- #: i18n/strings.php:445
1228
  msgid "Refund"
1229
  msgstr "Возврат"
1230
 
@@ -1264,23 +1263,23 @@ msgstr "Год"
1264
  msgid "Export CSV"
1265
  msgstr "Экспорт CSV"
1266
 
1267
- #: i18n/strings.php:341
1268
  msgid "Other Log"
1269
  msgstr ""
1270
 
1271
- #: i18n/strings.php:340
1272
  msgid "Taxes Log"
1273
  msgstr ""
1274
 
1275
- #: i18n/strings.php:339
1276
  msgid "Shipping Log"
1277
  msgstr ""
1278
 
1279
- #: i18n/strings.php:332
1280
  msgid "Display troubleshooting information on the Cart and Checkout pages."
1281
  msgstr ""
1282
 
1283
- #: i18n/strings.php:336
1284
  msgid "Write diagnostic messages to log files. Helpful when contacting support."
1285
  msgstr ""
1286
 
@@ -1324,15 +1323,15 @@ msgstr ""
1324
  msgid "Link a PayPal account"
1325
  msgstr ""
1326
 
1327
- #: i18n/strings.php:355
1328
  msgid "Refresh"
1329
  msgstr ""
1330
 
1331
- #: woocommerce-services.php:1230
1332
  msgid "Tracking number"
1333
  msgstr ""
1334
 
1335
- #: woocommerce-services.php:1229
1336
  msgid "Provider"
1337
  msgstr ""
1338
 
@@ -1424,7 +1423,7 @@ msgid "automated tax calculation and smoother payment setup"
1424
  msgstr ""
1425
 
1426
  #: classes/class-wc-connect-paypal-ec.php:323 i18n/strings.php:4
1427
- #: i18n/strings.php:168 i18n/strings.php:328 i18n/strings.php:409
1428
  msgid "Required"
1429
  msgstr ""
1430
 
@@ -1440,7 +1439,7 @@ msgstr ""
1440
  msgid "Dimensions"
1441
  msgstr ""
1442
 
1443
- #: i18n/strings.php:270 i18n/strings.php:397 i18n/strings.php:461
1444
  msgid "Close"
1445
  msgstr ""
1446
 
@@ -1552,18 +1551,18 @@ msgstr[2] ""
1552
  msgid "Unable to get your settings. Please refresh the page to try again."
1553
  msgstr ""
1554
 
1555
- #: i18n/strings.php:421
1556
  msgid "%(numSelected)d service selected"
1557
  msgid_plural "%(numSelected)d services selected"
1558
  msgstr[0] ""
1559
  msgstr[1] ""
1560
  msgstr[2] ""
1561
 
1562
- #: i18n/strings.php:419
1563
  msgid "Add and edit saved packages using the {{a}}Packaging Manager{{/a}}."
1564
  msgstr ""
1565
 
1566
- #: i18n/strings.php:374 i18n/strings.php:438
1567
  msgid "Tracking #: {{trackingLink/}}"
1568
  msgstr ""
1569
 
@@ -1603,7 +1602,7 @@ msgstr ""
1603
  msgid "Choose rate: %(pckg)s"
1604
  msgstr ""
1605
 
1606
- #: i18n/strings.php:386 i18n/strings.php:450
1607
  msgid "Refund label (-%(amount)s)"
1608
  msgstr ""
1609
 
@@ -1623,17 +1622,17 @@ msgstr ""
1623
  msgid "Ship in original packaging"
1624
  msgstr ""
1625
 
1626
- #: i18n/strings.php:365 i18n/strings.php:366 i18n/strings.php:429
1627
- #: i18n/strings.php:430
1628
  msgid "Request refund"
1629
  msgstr ""
1630
 
1631
- #: i18n/strings.php:368 i18n/strings.php:432
1632
  msgid "Reprint"
1633
  msgstr ""
1634
 
1635
- #: i18n/strings.php:58 i18n/strings.php:309 i18n/strings.php:396
1636
- #: i18n/strings.php:460
1637
  msgid "Paper size"
1638
  msgstr ""
1639
 
@@ -1649,11 +1648,11 @@ msgstr ""
1649
  msgid "Move item"
1650
  msgstr ""
1651
 
1652
- #: i18n/strings.php:425
1653
  msgid "Increase the rates calculated by the carrier to account for packaging and handling costs. You can also add a negative amount to save your customers money."
1654
  msgstr ""
1655
 
1656
- #: i18n/strings.php:475
1657
  msgid "Create new label"
1658
  msgstr ""
1659
 
@@ -1674,19 +1673,19 @@ msgid "Add a credit card"
1674
  msgstr ""
1675
 
1676
  #. translators: %d: Deleted Product ID
1677
- #: classes/class-wc-connect-compatibility-wc30.php:130
1678
  #: classes/class-wc-connect-compatibility-wc26.php:116
 
1679
  msgid "#%d - [Deleted product]"
1680
  msgstr ""
1681
 
1682
  #. translators: %1$d: Product ID, %2$s: Product Name
1683
- #: classes/class-wc-connect-compatibility-wc30.php:125
1684
  #: classes/class-wc-connect-compatibility-wc26.php:111
 
1685
  msgid "#%1$d - %2$s"
1686
  msgstr ""
1687
 
1688
  #. translators: %s Support url
1689
- #: woocommerce-services.php:1565
1690
  msgid "<a href=\"%s\">Support</a>"
1691
  msgstr ""
1692
 
@@ -1694,22 +1693,18 @@ msgstr ""
1694
  msgid "There was an error installing Jetpack. Please try installing it manually."
1695
  msgstr ""
1696
 
1697
- #: woocommerce-services.php:1066 woocommerce-services.php:1069
1698
- #: i18n/strings.php:43
1699
  msgid "Shipping Labels"
1700
  msgstr ""
1701
 
1702
- #. Author of the plugin
1703
- msgid "Automattic"
1704
- msgstr ""
1705
-
1706
  #. Plugin URI of the plugin
1707
  #. Author URI of the plugin
1708
  msgid "https://woocommerce.com/"
1709
  msgstr ""
1710
 
1711
- #: woocommerce-services.php:1515 woocommerce-services.php:1543
1712
- #: i18n/strings.php:143 i18n/strings.php:215
1713
  msgid "Phone"
1714
  msgstr ""
1715
 
@@ -1718,15 +1713,15 @@ msgstr ""
1718
  msgid "Connect"
1719
  msgstr ""
1720
 
1721
- #: i18n/strings.php:7 i18n/strings.php:171 i18n/strings.php:483
1722
  msgid "Save Settings"
1723
  msgstr ""
1724
 
1725
- #: i18n/strings.php:415
1726
  msgid "Your changes have been saved."
1727
  msgstr ""
1728
 
1729
- #: i18n/strings.php:416
1730
  msgid "There was a problem with one or more entries. Please fix the errors below and try saving again."
1731
  msgstr ""
1732
 
@@ -1734,11 +1729,11 @@ msgstr ""
1734
  msgid "Expand"
1735
  msgstr ""
1736
 
1737
- #: i18n/strings.php:411 i18n/strings.php:481
1738
  msgid "Dismiss"
1739
  msgstr ""
1740
 
1741
- #: i18n/strings.php:10 i18n/strings.php:413
1742
  msgid "You have unsaved changes."
1743
  msgstr ""
1744
 
@@ -1774,7 +1769,7 @@ msgstr ""
1774
  msgid "Unable to save your shipping packages. Please try again."
1775
  msgstr ""
1776
 
1777
- #: i18n/strings.php:41 i18n/strings.php:417
1778
  msgid "Save changes"
1779
  msgstr ""
1780
 
@@ -1786,32 +1781,32 @@ msgstr ""
1786
  msgid "Dimensions (L x W x H)"
1787
  msgstr ""
1788
 
1789
- #: i18n/strings.php:420
1790
  msgid "All services selected"
1791
  msgstr ""
1792
 
1793
- #: i18n/strings.php:37 i18n/strings.php:199 i18n/strings.php:422
1794
  msgid "Expand Services"
1795
  msgstr ""
1796
 
1797
- #: classes/class-wc-connect-label-reports.php:167 i18n/strings.php:400
1798
- #: i18n/strings.php:423 i18n/strings.php:464
1799
  msgid "Service"
1800
  msgstr ""
1801
 
1802
- #: i18n/strings.php:424
1803
  msgid "Price adjustment"
1804
  msgstr ""
1805
 
1806
- #: i18n/strings.php:418
1807
  msgid "Saved Packages"
1808
  msgstr ""
1809
 
1810
- #: woocommerce-services.php:1218 woocommerce-services.php:1225
1811
  msgid "Tracking"
1812
  msgstr ""
1813
 
1814
- #: i18n/strings.php:207 i18n/strings.php:473 i18n/strings.php:477
1815
  msgid "Create shipping label"
1816
  msgid_plural "Create shipping labels"
1817
  msgstr[0] ""
@@ -1885,51 +1880,51 @@ msgstr ""
1885
  msgid "The service and rate chosen by the customer at checkout is not available. Please choose another."
1886
  msgstr ""
1887
 
1888
- #: i18n/strings.php:387 i18n/strings.php:451
1889
  msgid "Request a refund"
1890
  msgstr ""
1891
 
1892
- #: i18n/strings.php:388 i18n/strings.php:452
1893
  msgid "You can request a refund for a shipping label that has not been used to ship a package. It will take at least %(days)s days to process."
1894
  msgstr ""
1895
 
1896
- #: i18n/strings.php:389 i18n/strings.php:453
1897
  msgid "Purchase date"
1898
  msgstr ""
1899
 
1900
- #: i18n/strings.php:390 i18n/strings.php:454
1901
  msgid "Amount eligible for refund"
1902
  msgstr ""
1903
 
1904
- #: i18n/strings.php:369 i18n/strings.php:393 i18n/strings.php:433
1905
- #: i18n/strings.php:457
1906
  msgid "Reprint shipping label"
1907
  msgstr ""
1908
 
1909
- #: i18n/strings.php:394 i18n/strings.php:458
1910
  msgid "If there was a printing error when you purchased the label, you can print it again."
1911
  msgstr ""
1912
 
1913
- #: i18n/strings.php:395 i18n/strings.php:459
1914
  msgid "NOTE: If you already used the label in a package, printing and using it again is a violation of our terms of service and may result in criminal charges."
1915
  msgstr ""
1916
 
1917
- #: i18n/strings.php:325 i18n/strings.php:392 i18n/strings.php:456
1918
  msgid "Print"
1919
  msgstr ""
1920
 
1921
  #: i18n/strings.php:16 i18n/strings.php:82 i18n/strings.php:122
1922
  #: i18n/strings.php:158 i18n/strings.php:167 i18n/strings.php:178
1923
- #: i18n/strings.php:263 i18n/strings.php:385 i18n/strings.php:391
1924
- #: i18n/strings.php:449 i18n/strings.php:455
1925
  msgid "Cancel"
1926
  msgstr ""
1927
 
1928
- #: i18n/strings.php:403 i18n/strings.php:467
1929
  msgid "N/A"
1930
  msgstr ""
1931
 
1932
- #: i18n/strings.php:8 i18n/strings.php:412 i18n/strings.php:472
1933
  msgid "More"
1934
  msgstr ""
1935
 
@@ -1972,7 +1967,7 @@ msgstr ""
1972
  msgid "Packaging"
1973
  msgstr ""
1974
 
1975
- #: woocommerce-services.php:1598
1976
  msgid "Section not loading? Visit the <a href=\"%s\">status page</a> for troubleshooting steps."
1977
  msgstr ""
1978
 
@@ -1984,7 +1979,7 @@ msgstr ""
1984
  msgid "Note: Jetpack is connected, but development mode is also enabled on this site. Please disable development mode."
1985
  msgstr ""
1986
 
1987
- #: woocommerce-services.php:1451
1988
  msgid "Shipping Label"
1989
  msgstr ""
1990
 
@@ -2041,24 +2036,24 @@ msgctxt "A service with an unknown title and unknown method_title"
2041
  msgid "Unknown"
2042
  msgstr ""
2043
 
2044
- #: i18n/strings.php:342
2045
  msgid "Support"
2046
  msgstr ""
2047
 
2048
- #: i18n/strings.php:330 i18n/strings.php:331
2049
  msgid "Debug"
2050
  msgstr ""
2051
 
2052
- #: i18n/strings.php:361
2053
  msgid "Services"
2054
  msgstr ""
2055
 
2056
- #: i18n/strings.php:345
2057
  msgctxt "This section displays the overall health of WooCommerce Shipping & Tax and the things it depends on"
2058
  msgid "Health"
2059
  msgstr ""
2060
 
2061
- #: i18n/strings.php:343
2062
  msgid "Need help?"
2063
  msgstr ""
2064
 
@@ -2066,11 +2061,11 @@ msgstr ""
2066
  msgid "Log is empty"
2067
  msgstr ""
2068
 
2069
- #: i18n/strings.php:334 i18n/strings.php:338
2070
  msgid "Disabled"
2071
  msgstr ""
2072
 
2073
- #: i18n/strings.php:333 i18n/strings.php:337
2074
  msgid "Enabled"
2075
  msgstr ""
2076
 
@@ -2094,27 +2089,27 @@ msgstr ""
2094
  msgid "Setup for this service has not yet been completed"
2095
  msgstr ""
2096
 
2097
- #: i18n/strings.php:350
2098
  msgid "Service data is up-to-date"
2099
  msgstr ""
2100
 
2101
- #: i18n/strings.php:349
2102
  msgid "Service data was found, but is more than one day old"
2103
  msgstr ""
2104
 
2105
- #: i18n/strings.php:348
2106
  msgid "Service data was found, but is more than three days old"
2107
  msgstr ""
2108
 
2109
- #: i18n/strings.php:351
2110
  msgid "Service data found, but may be out of date"
2111
  msgstr ""
2112
 
2113
- #: i18n/strings.php:352
2114
  msgid "No service data available"
2115
  msgstr ""
2116
 
2117
- #: i18n/strings.php:347
2118
  msgid "Jetpack"
2119
  msgstr ""
2120
 
@@ -2138,7 +2133,8 @@ msgstr ""
2138
  msgid "Please install and activate the Jetpack plugin, version %s or higher"
2139
  msgstr ""
2140
 
2141
- #: i18n/strings.php:346
 
2142
  msgid "WooCommerce"
2143
  msgstr ""
2144
 
@@ -2154,7 +2150,7 @@ msgstr ""
2154
  msgid "WooCommerce %1$s or higher is required (You are running %2$s)"
2155
  msgstr ""
2156
 
2157
- #: classes/class-wc-connect-error-notice.php:104 woocommerce-services.php:1634
2158
  msgid "Dismiss this notice"
2159
  msgstr ""
2160
 
51
  msgid "Live rates at checkout"
52
  msgstr ""
53
 
54
+ #: i18n/strings.php:403
55
  msgid "Last updated %s."
56
  msgstr ""
57
 
206
  msgid "WooCommerce Helper auth is missing"
207
  msgstr ""
208
 
209
+ #: i18n/strings.php:331 i18n/strings.php:422
210
  msgid "USPS labels without tracking are not eligible for refund."
211
  msgstr ""
212
 
226
  msgid "Loading"
227
  msgstr ""
228
 
229
+ #: i18n/strings.php:402
230
  msgid "WooCommerce Shipping & Tax Data"
231
  msgstr ""
232
 
233
+ #: i18n/strings.php:339 i18n/strings.php:430
234
  msgid "Print customs form"
235
  msgstr ""
236
 
277
  msgstr ""
278
 
279
  #. Plugin Name of the plugin
 
280
  #: classes/class-wc-connect-settings-pages.php:123
281
+ #: classes/class-wc-connect-privacy.php:36
282
  msgid "WooCommerce Shipping & Tax"
283
  msgstr ""
284
 
411
  msgid "Validating address\\u2026"
412
  msgstr ""
413
 
414
+ #: i18n/strings.php:326 i18n/strings.php:372 i18n/strings.php:463
415
  msgid "Purchasing\\u2026"
416
  msgstr ""
417
 
423
  msgid "Package %(index)s \\u2013 %(title)s"
424
  msgstr ""
425
 
426
+ #: i18n/strings.php:6 i18n/strings.php:170 i18n/strings.php:375
427
  msgid "Saving\\u2026"
428
  msgstr ""
429
 
437
  msgid "Your tax rates and settings will be automatically configured for %1$s, %2$s. <a href=\"https://docs.woocommerce.com/document/setting-up-taxes-in-woocommerce/#section-12\">Learn more about setting up tax rates for additional nexuses</a>"
438
  msgstr ""
439
 
440
+ #: i18n/strings.php:419
441
  msgid "%(itemCount)d item is ready to be fulfilled"
442
  msgid_plural "%(itemCount)d items are ready to be fulfilled"
443
  msgstr[0] ""
444
  msgstr[1] ""
445
  msgstr[2] ""
446
 
447
+ #: i18n/strings.php:418
448
  msgid "%(itemCount)d item was fulfilled on {{span}}%(createdDate)s{{/span}}"
449
  msgid_plural "%(itemCount)d items were fulfilled on {{span}}%(createdDate)s{{/span}}"
450
  msgstr[0] ""
451
  msgstr[1] ""
452
  msgstr[2] ""
453
 
454
+ #: i18n/strings.php:338 i18n/strings.php:429
455
  msgid "Schedule a pickup"
456
  msgstr ""
457
 
458
+ #: i18n/strings.php:334 i18n/strings.php:425
459
  msgid "Label images older than 180 days are deleted by our technology partners for general security and data privacy concerns."
460
  msgstr ""
461
 
462
+ #: i18n/strings.php:330 i18n/strings.php:421
463
  msgid "Labels older than 30 days cannot be refunded."
464
  msgstr ""
465
 
480
  msgid "WooCommerce Shipping & Tax requires the WooCommerce plugin to be installed and active. You can download %s here."
481
  msgstr ""
482
 
483
+ #: i18n/strings.php:466
484
  msgid "No tracking information available at this time"
485
  msgstr ""
486
 
487
+ #: i18n/strings.php:417
488
  msgid "Connection error: unable to create label at this time"
489
  msgstr ""
490
 
491
+ #: i18n/strings.php:413 i18n/strings.php:415
492
  msgid "Track Package"
493
  msgid_plural "Track Packages"
494
  msgstr[0] ""
495
  msgstr[1] ""
496
  msgstr[2] ""
497
 
498
+ #: i18n/strings.php:329
499
  msgid "Which package would you like to track?"
500
  msgstr ""
501
 
502
+ #: i18n/strings.php:340 i18n/strings.php:371 i18n/strings.php:431
503
+ #: i18n/strings.php:462
504
  msgid "%(service)s label (#%(labelIndex)d)"
505
  msgstr ""
506
 
590
  msgid "0.0"
591
  msgstr ""
592
 
593
+ #: woocommerce-services.php:1453
594
  msgid "Shipment Tracking"
595
  msgstr ""
596
 
602
  msgid "Customs information incomplete"
603
  msgstr ""
604
 
605
+ #: woocommerce-services.php:1496
606
  msgid "Packing Log:"
607
  msgstr ""
608
 
609
+ #: woocommerce-services.php:1483
610
  msgid "Chosen Rate:"
611
  msgstr ""
612
 
613
+ #: woocommerce-services.php:1479
614
  msgid "Shipping Method ID:"
615
  msgstr ""
616
 
617
+ #: woocommerce-services.php:1475
618
  msgid "Shipping Method Name:"
619
  msgstr ""
620
 
621
+ #: woocommerce-services.php:1459
622
  msgid "Shipping Debug"
623
  msgstr ""
624
 
626
  msgid "<strong>\"%2$s\" is missing weight, length, width, or height.</strong><br />Shipping rates cannot be calculated. <a href=\"%1$s\">Enter dimensions and weight for %2$s</a> so your customers can purchase this item."
627
  msgstr ""
628
 
629
+ #: classes/class-wc-connect-api-client.php:588
630
  msgid "Unable to send request to WooCommerce Shipping & Tax server. The timestamp generated for the signature is too old."
631
  msgstr ""
632
 
633
+ #: classes/class-wc-connect-api-client.php:527
634
  msgid "Unable to send request to WooCommerce Shipping & Tax server. Jetpack Token is malformed."
635
  msgstr ""
636
 
637
+ #: classes/class-wc-connect-api-client.php:520
638
  msgid "Unable to send request to WooCommerce Shipping & Tax server. Jetpack Token is missing"
639
  msgstr ""
640
 
668
  msgstr ""
669
 
670
  #: classes/class-wc-connect-api-client.php:160
 
671
  msgid "No shipping rate could be calculated. No items in the package are shippable."
672
  msgstr ""
673
 
816
  msgid "%(message)s. Please modify the address and try again."
817
  msgstr ""
818
 
819
+ #: i18n/strings.php:337 i18n/strings.php:428
820
  msgid "View details"
821
  msgstr ""
822
 
823
+ #: i18n/strings.php:369 i18n/strings.php:460
824
  msgid "Items"
825
  msgstr ""
826
 
827
+ #: i18n/strings.php:368 i18n/strings.php:459
828
  msgid "Package"
829
  msgstr ""
830
 
831
+ #: i18n/strings.php:366 i18n/strings.php:457
832
  msgid "Receipt"
833
  msgstr ""
834
 
835
+ #: i18n/strings.php:365 i18n/strings.php:456
836
  msgid "Label #%(labelIndex)s details"
837
  msgstr ""
838
 
947
  msgid "Activate"
948
  msgstr ""
949
 
950
+ #: i18n/strings.php:342 i18n/strings.php:433
951
  msgid "No activity yet"
952
  msgstr ""
953
 
954
+ #: i18n/strings.php:350 i18n/strings.php:441
955
  msgid "Note"
956
  msgstr ""
957
 
958
+ #: i18n/strings.php:349 i18n/strings.php:440
959
  msgid "Refunded %(amount)s"
960
  msgstr ""
961
 
962
+ #: i18n/strings.php:347 i18n/strings.php:438
963
  msgid "%(service)s label (#%(labelNum)d) refund rejected"
964
  msgstr ""
965
 
966
+ #: i18n/strings.php:346 i18n/strings.php:437
967
  msgid "%(service)s label (#%(labelNum)d) refunded (%(amount)s)"
968
  msgstr ""
969
 
970
+ #: i18n/strings.php:345 i18n/strings.php:436
971
  msgid "%(service)s label (#%(labelNum)d) refund requested (%(amount)s)"
972
  msgstr ""
973
 
974
+ #: i18n/strings.php:344 i18n/strings.php:435
975
  msgid "Note sent to customer"
976
  msgstr ""
977
 
978
+ #: i18n/strings.php:343 i18n/strings.php:434
979
  msgid "Internal note"
980
  msgstr ""
981
 
982
+ #: i18n/strings.php:374 i18n/strings.php:465
983
  msgid "Show notes from %(date)s"
984
  msgstr ""
985
 
986
+ #: i18n/strings.php:373 i18n/strings.php:464
987
  msgid "%(count)s event"
988
  msgid_plural "%(count)s events"
989
  msgstr[0] ""
995
  msgid "WeChat Pay"
996
  msgstr ""
997
 
998
+ #: i18n/strings.php:351 i18n/strings.php:442
999
  msgid "Toggle menu"
1000
  msgstr ""
1001
 
1003
  msgid "Return to Order #%(orderId)s"
1004
  msgstr ""
1005
 
1006
+ #: i18n/strings.php:393
1007
  msgid "Our team is here for you. View our {{docsA}}support docs{{/docsA}} or {{ticketA}}open a support ticket{{/ticketA}}."
1008
  msgstr ""
1009
 
1010
+ #: i18n/strings.php:384
1011
  msgid "Logging"
1012
  msgstr ""
1013
 
1014
+ #: i18n/strings.php:411
1015
  msgid "No services configured. {{a}}Add a shipping service{{/a}}"
1016
  msgstr ""
1017
 
1018
+ #: i18n/strings.php:409
1019
  msgid "Edit service settings"
1020
  msgstr ""
1021
 
1022
+ #: i18n/strings.php:408
1023
  msgid "Request was made %s - check logs below or {{a}}edit service settings{{/a}}"
1024
  msgstr ""
1025
 
1026
+ #: i18n/strings.php:407
1027
  msgid "Copy for support"
1028
  msgstr ""
1029
 
1030
+ #: i18n/strings.php:406
1031
  msgid "Last %s entry. {{a}}Show full log{{/a}}"
1032
  msgid_plural "Last %s entries. {{a}}Show full log{{/a}}"
1033
  msgstr[0] ""
1034
  msgstr[1] ""
1035
  msgstr[2] ""
1036
 
1037
+ #: i18n/strings.php:405
1038
  msgid "Log tail copied to clipboard"
1039
  msgstr ""
1040
 
1041
+ #: i18n/strings.php:11 i18n/strings.php:472
1042
  msgid "You have unsaved changes. Are you sure you want to leave this page?"
1043
  msgstr ""
1044
 
1067
  msgstr ""
1068
 
1069
  #: i18n/strings.php:5 i18n/strings.php:169 i18n/strings.php:295
1070
+ #: i18n/strings.php:378 i18n/strings.php:468
1071
  msgid "Optional"
1072
  msgstr ""
1073
 
1222
  msgid "Total"
1223
  msgstr "Всего"
1224
 
1225
+ #: classes/class-wc-connect-label-reports.php:170 i18n/strings.php:348
1226
+ #: i18n/strings.php:439
1227
  msgid "Refund"
1228
  msgstr "Возврат"
1229
 
1263
  msgid "Export CSV"
1264
  msgstr "Экспорт CSV"
1265
 
1266
+ #: i18n/strings.php:390
1267
  msgid "Other Log"
1268
  msgstr ""
1269
 
1270
+ #: i18n/strings.php:389
1271
  msgid "Taxes Log"
1272
  msgstr ""
1273
 
1274
+ #: i18n/strings.php:388
1275
  msgid "Shipping Log"
1276
  msgstr ""
1277
 
1278
+ #: i18n/strings.php:381
1279
  msgid "Display troubleshooting information on the Cart and Checkout pages."
1280
  msgstr ""
1281
 
1282
+ #: i18n/strings.php:385
1283
  msgid "Write diagnostic messages to log files. Helpful when contacting support."
1284
  msgstr ""
1285
 
1323
  msgid "Link a PayPal account"
1324
  msgstr ""
1325
 
1326
+ #: i18n/strings.php:404
1327
  msgid "Refresh"
1328
  msgstr ""
1329
 
1330
+ #: woocommerce-services.php:1234
1331
  msgid "Tracking number"
1332
  msgstr ""
1333
 
1334
+ #: woocommerce-services.php:1233
1335
  msgid "Provider"
1336
  msgstr ""
1337
 
1423
  msgstr ""
1424
 
1425
  #: classes/class-wc-connect-paypal-ec.php:323 i18n/strings.php:4
1426
+ #: i18n/strings.php:168 i18n/strings.php:377 i18n/strings.php:467
1427
  msgid "Required"
1428
  msgstr ""
1429
 
1439
  msgid "Dimensions"
1440
  msgstr ""
1441
 
1442
+ #: i18n/strings.php:270 i18n/strings.php:364 i18n/strings.php:455
1443
  msgid "Close"
1444
  msgstr ""
1445
 
1551
  msgid "Unable to get your settings. Please refresh the page to try again."
1552
  msgstr ""
1553
 
1554
+ #: i18n/strings.php:479
1555
  msgid "%(numSelected)d service selected"
1556
  msgid_plural "%(numSelected)d services selected"
1557
  msgstr[0] ""
1558
  msgstr[1] ""
1559
  msgstr[2] ""
1560
 
1561
+ #: i18n/strings.php:477
1562
  msgid "Add and edit saved packages using the {{a}}Packaging Manager{{/a}}."
1563
  msgstr ""
1564
 
1565
+ #: i18n/strings.php:341 i18n/strings.php:432
1566
  msgid "Tracking #: {{trackingLink/}}"
1567
  msgstr ""
1568
 
1602
  msgid "Choose rate: %(pckg)s"
1603
  msgstr ""
1604
 
1605
+ #: i18n/strings.php:353 i18n/strings.php:444
1606
  msgid "Refund label (-%(amount)s)"
1607
  msgstr ""
1608
 
1622
  msgid "Ship in original packaging"
1623
  msgstr ""
1624
 
1625
+ #: i18n/strings.php:332 i18n/strings.php:333 i18n/strings.php:423
1626
+ #: i18n/strings.php:424
1627
  msgid "Request refund"
1628
  msgstr ""
1629
 
1630
+ #: i18n/strings.php:335 i18n/strings.php:426
1631
  msgid "Reprint"
1632
  msgstr ""
1633
 
1634
+ #: i18n/strings.php:58 i18n/strings.php:309 i18n/strings.php:363
1635
+ #: i18n/strings.php:454
1636
  msgid "Paper size"
1637
  msgstr ""
1638
 
1648
  msgid "Move item"
1649
  msgstr ""
1650
 
1651
+ #: i18n/strings.php:483
1652
  msgid "Increase the rates calculated by the carrier to account for packaging and handling costs. You can also add a negative amount to save your customers money."
1653
  msgstr ""
1654
 
1655
+ #: i18n/strings.php:414
1656
  msgid "Create new label"
1657
  msgstr ""
1658
 
1673
  msgstr ""
1674
 
1675
  #. translators: %d: Deleted Product ID
 
1676
  #: classes/class-wc-connect-compatibility-wc26.php:116
1677
+ #: classes/class-wc-connect-compatibility-wc30.php:130
1678
  msgid "#%d - [Deleted product]"
1679
  msgstr ""
1680
 
1681
  #. translators: %1$d: Product ID, %2$s: Product Name
 
1682
  #: classes/class-wc-connect-compatibility-wc26.php:111
1683
+ #: classes/class-wc-connect-compatibility-wc30.php:125
1684
  msgid "#%1$d - %2$s"
1685
  msgstr ""
1686
 
1687
  #. translators: %s Support url
1688
+ #: woocommerce-services.php:1569
1689
  msgid "<a href=\"%s\">Support</a>"
1690
  msgstr ""
1691
 
1693
  msgid "There was an error installing Jetpack. Please try installing it manually."
1694
  msgstr ""
1695
 
1696
+ #: i18n/strings.php:43 woocommerce-services.php:1066
1697
+ #: woocommerce-services.php:1069
1698
  msgid "Shipping Labels"
1699
  msgstr ""
1700
 
 
 
 
 
1701
  #. Plugin URI of the plugin
1702
  #. Author URI of the plugin
1703
  msgid "https://woocommerce.com/"
1704
  msgstr ""
1705
 
1706
+ #: i18n/strings.php:143 i18n/strings.php:215 woocommerce-services.php:1519
1707
+ #: woocommerce-services.php:1547
1708
  msgid "Phone"
1709
  msgstr ""
1710
 
1713
  msgid "Connect"
1714
  msgstr ""
1715
 
1716
+ #: i18n/strings.php:7 i18n/strings.php:171 i18n/strings.php:376
1717
  msgid "Save Settings"
1718
  msgstr ""
1719
 
1720
+ #: i18n/strings.php:473
1721
  msgid "Your changes have been saved."
1722
  msgstr ""
1723
 
1724
+ #: i18n/strings.php:474
1725
  msgid "There was a problem with one or more entries. Please fix the errors below and try saving again."
1726
  msgstr ""
1727
 
1729
  msgid "Expand"
1730
  msgstr ""
1731
 
1732
+ #: i18n/strings.php:328 i18n/strings.php:469
1733
  msgid "Dismiss"
1734
  msgstr ""
1735
 
1736
+ #: i18n/strings.php:10 i18n/strings.php:471
1737
  msgid "You have unsaved changes."
1738
  msgstr ""
1739
 
1769
  msgid "Unable to save your shipping packages. Please try again."
1770
  msgstr ""
1771
 
1772
+ #: i18n/strings.php:41 i18n/strings.php:475
1773
  msgid "Save changes"
1774
  msgstr ""
1775
 
1781
  msgid "Dimensions (L x W x H)"
1782
  msgstr ""
1783
 
1784
+ #: i18n/strings.php:478
1785
  msgid "All services selected"
1786
  msgstr ""
1787
 
1788
+ #: i18n/strings.php:37 i18n/strings.php:199 i18n/strings.php:480
1789
  msgid "Expand Services"
1790
  msgstr ""
1791
 
1792
+ #: classes/class-wc-connect-label-reports.php:167 i18n/strings.php:367
1793
+ #: i18n/strings.php:458 i18n/strings.php:481
1794
  msgid "Service"
1795
  msgstr ""
1796
 
1797
+ #: i18n/strings.php:482
1798
  msgid "Price adjustment"
1799
  msgstr ""
1800
 
1801
+ #: i18n/strings.php:476
1802
  msgid "Saved Packages"
1803
  msgstr ""
1804
 
1805
+ #: woocommerce-services.php:1222 woocommerce-services.php:1229
1806
  msgid "Tracking"
1807
  msgstr ""
1808
 
1809
+ #: i18n/strings.php:207 i18n/strings.php:412 i18n/strings.php:416
1810
  msgid "Create shipping label"
1811
  msgid_plural "Create shipping labels"
1812
  msgstr[0] ""
1880
  msgid "The service and rate chosen by the customer at checkout is not available. Please choose another."
1881
  msgstr ""
1882
 
1883
+ #: i18n/strings.php:354 i18n/strings.php:445
1884
  msgid "Request a refund"
1885
  msgstr ""
1886
 
1887
+ #: i18n/strings.php:355 i18n/strings.php:446
1888
  msgid "You can request a refund for a shipping label that has not been used to ship a package. It will take at least %(days)s days to process."
1889
  msgstr ""
1890
 
1891
+ #: i18n/strings.php:356 i18n/strings.php:447
1892
  msgid "Purchase date"
1893
  msgstr ""
1894
 
1895
+ #: i18n/strings.php:357 i18n/strings.php:448
1896
  msgid "Amount eligible for refund"
1897
  msgstr ""
1898
 
1899
+ #: i18n/strings.php:336 i18n/strings.php:360 i18n/strings.php:427
1900
+ #: i18n/strings.php:451
1901
  msgid "Reprint shipping label"
1902
  msgstr ""
1903
 
1904
+ #: i18n/strings.php:361 i18n/strings.php:452
1905
  msgid "If there was a printing error when you purchased the label, you can print it again."
1906
  msgstr ""
1907
 
1908
+ #: i18n/strings.php:362 i18n/strings.php:453
1909
  msgid "NOTE: If you already used the label in a package, printing and using it again is a violation of our terms of service and may result in criminal charges."
1910
  msgstr ""
1911
 
1912
+ #: i18n/strings.php:325 i18n/strings.php:359 i18n/strings.php:450
1913
  msgid "Print"
1914
  msgstr ""
1915
 
1916
  #: i18n/strings.php:16 i18n/strings.php:82 i18n/strings.php:122
1917
  #: i18n/strings.php:158 i18n/strings.php:167 i18n/strings.php:178
1918
+ #: i18n/strings.php:263 i18n/strings.php:352 i18n/strings.php:358
1919
+ #: i18n/strings.php:443 i18n/strings.php:449
1920
  msgid "Cancel"
1921
  msgstr ""
1922
 
1923
+ #: i18n/strings.php:370 i18n/strings.php:461
1924
  msgid "N/A"
1925
  msgstr ""
1926
 
1927
+ #: i18n/strings.php:8 i18n/strings.php:420 i18n/strings.php:470
1928
  msgid "More"
1929
  msgstr ""
1930
 
1967
  msgid "Packaging"
1968
  msgstr ""
1969
 
1970
+ #: woocommerce-services.php:1602
1971
  msgid "Section not loading? Visit the <a href=\"%s\">status page</a> for troubleshooting steps."
1972
  msgstr ""
1973
 
1979
  msgid "Note: Jetpack is connected, but development mode is also enabled on this site. Please disable development mode."
1980
  msgstr ""
1981
 
1982
+ #: woocommerce-services.php:1455
1983
  msgid "Shipping Label"
1984
  msgstr ""
1985
 
2036
  msgid "Unknown"
2037
  msgstr ""
2038
 
2039
+ #: i18n/strings.php:391
2040
  msgid "Support"
2041
  msgstr ""
2042
 
2043
+ #: i18n/strings.php:379 i18n/strings.php:380
2044
  msgid "Debug"
2045
  msgstr ""
2046
 
2047
+ #: i18n/strings.php:410
2048
  msgid "Services"
2049
  msgstr ""
2050
 
2051
+ #: i18n/strings.php:394
2052
  msgctxt "This section displays the overall health of WooCommerce Shipping & Tax and the things it depends on"
2053
  msgid "Health"
2054
  msgstr ""
2055
 
2056
+ #: i18n/strings.php:392
2057
  msgid "Need help?"
2058
  msgstr ""
2059
 
2061
  msgid "Log is empty"
2062
  msgstr ""
2063
 
2064
+ #: i18n/strings.php:383 i18n/strings.php:387
2065
  msgid "Disabled"
2066
  msgstr ""
2067
 
2068
+ #: i18n/strings.php:382 i18n/strings.php:386
2069
  msgid "Enabled"
2070
  msgstr ""
2071
 
2089
  msgid "Setup for this service has not yet been completed"
2090
  msgstr ""
2091
 
2092
+ #: i18n/strings.php:399
2093
  msgid "Service data is up-to-date"
2094
  msgstr ""
2095
 
2096
+ #: i18n/strings.php:398
2097
  msgid "Service data was found, but is more than one day old"
2098
  msgstr ""
2099
 
2100
+ #: i18n/strings.php:397
2101
  msgid "Service data was found, but is more than three days old"
2102
  msgstr ""
2103
 
2104
+ #: i18n/strings.php:400
2105
  msgid "Service data found, but may be out of date"
2106
  msgstr ""
2107
 
2108
+ #: i18n/strings.php:401
2109
  msgid "No service data available"
2110
  msgstr ""
2111
 
2112
+ #: i18n/strings.php:396
2113
  msgid "Jetpack"
2114
  msgstr ""
2115
 
2133
  msgid "Please install and activate the Jetpack plugin, version %s or higher"
2134
  msgstr ""
2135
 
2136
+ #. Author of the plugin
2137
+ #: i18n/strings.php:395
2138
  msgid "WooCommerce"
2139
  msgstr ""
2140
 
2150
  msgid "WooCommerce %1$s or higher is required (You are running %2$s)"
2151
  msgstr ""
2152
 
2153
+ #: classes/class-wc-connect-error-notice.php:104 woocommerce-services.php:1638
2154
  msgid "Dismiss this notice"
2155
  msgstr ""
2156
 
i18n/languages/woocommerce-services-sv_SE.json CHANGED
@@ -1 +1 @@
1
- {"0":[null,"0"],"":{"po-revision-date":"2021-02-08 16:00:43+0000","mime-version":"1.0","content-type":"text/plain; charset=UTF-8","content-transfer-encoding":"8bit","plural-forms":"nplurals=2; plural=n != 1;","x-generator":"GlotPress/3.0.0-alpha.2","language":"sv_SE","project-id-version":"Plugins - WooCommerce Shipping &amp; Tax - Stable (latest release)"},"Features":[null,""],"Carrier":[null,""],"Express delivery from the experts in international shipping":[null,""],"Live rates for %(carrierName)s at checkout":[null,""],"Ship with the largest delivery network in the United States":[null,""],"Discounted %(carrierName)s shipping labels":[null,""],"To be displayed at checkout, this carrier must be added as a shipping method to selected shipping zones":[null,""],"Add to shipping zones":[null,""],"Show live rates directly on your store - never under or overcharge for shipping again":[null,""],"Live rates at checkout":[null,""],"Last updated %s.":[null,""],"At least one of the new predefined packages has the same name as existing packages.":[null,""],"The new predefined package names are not unique.":[null,""],"At least one of the new custom packages has the same name as existing packages.":[null,""],"The new custom package names are not unique.":[null,""],"Go to shipping zones":[null,""],"Add DHL Express as a shipping method to selected shipping zones to display live rates at checkout.":[null,""],"DHL Express live rates are now available":[null,""],"State %1$s is invalid for %2$s.":[null,""],"%1$s %2$s is invalid for %3$s.":[null,""],"A %1$s is required for %2$s.":[null,""],"A country is required":[null,""],"Your store is over the limit for rate calls this month and your account will be charged for overages. To prevent future overage charges you can upgrade your plan.":[null,""],"There was an error trying to activate your subscription.":[null,""],"Your subscription was succesfully activated.":[null,"Din prenumeration har aktiverats!"],"Manage":[null,"Hantera"],"Usage":[null,"Användning"],"View and manage your subscription usage":[null,""],"Shipping method":[null,""],"The subscription is already active.":[null,"Prenumerationen är redan aktiv."],"Set up your own carrier account to compare rates and print labels from multiple carriers in WooCommerce Shipping. Learn more about adding {{a}}carrier accounts{{/a}}.":[null,""],"There was an error connecting to your %(carrierName)s account. Please check that all of the information entered matches your %(carrierName)s account and try to connect again.":[null,""],"Your carrier account was connected successfully.":[null,""],"The date must be a valid date in the format YYYY-MM-DD":[null,""],"The invoice number needs to be 9 or 13 letters and digits in length":[null,""],"The company website format is not valid":[null,"Formatet på företagets webbplats är inte giltigt"],"The email format is not valid":[null,"E-postformatet är inte giltigt"],"The ZIP/Postal code needs to be 5 digits in length":[null,""],"The phone number needs to be 10 digits in length":[null,"Telefonnumret måste vara tio siffror långt"],"The UPS account number needs to be 6 letters and digits in length":[null,""],"This will remove the connection with %(carrier_name)s. All of your %(carrier_name)s account information will be deleted and you won\\u2019t see %(carrier_name)s rates.":[null,""],"Disconnect your %(carrier_name)s account":[null,""],"There was an error trying to disconnect your carrier account":[null,""],"Your carrier account was disconnected succesfully.":[null,""],"DHL Express":[null,"DHL Express"],"Powered by WooCommerce Tax. If automated taxes are enabled, you'll need to enter prices exclusive of tax.":[null,""],"WooCommerce Helper auth is missing":[null,""],"USPS labels without tracking are not eligible for refund.":[null,""],"General Information":[null,"Allmän information"],"Connect your %(carrierName)s account":[null,""],"%(carrierName)s not supported.":[null,"%(carrierName)s stöds inte."],"Loading":[null,"Laddar in"],"WooCommerce Shipping & Tax Data":[null,""],"Print customs form":[null,"Skriv ut anpassat formulär"],"Test your WooCommerce Shipping & Tax connection":[null,""],"WooCommerce Shipping & Tax Status":[null,"Status för WooCommerce Shipping & Tax"],"Connect your store to activate WooCommerce Shipping & Tax":[null,"Anslut din butik för att aktivera WooCommerce Shipping & Tax"],"Connect Jetpack to activate WooCommerce Shipping & Tax":[null,"Anslut Jetpack för att aktivera WooCommerce Shipping & Tax"],"WooCommerce Shipping now supports DHL labels for international shipments. Purchase and print discounted labels from DHL and USPS right here.":[null,""],"Discounted DHL Shipping Labels":[null,""],"WooCommerce Shipping":[null,"WooCommerce Shipping"],"Invalid WooCommerce Shipping & Tax service slug provided":[null,""],"WooCommerce Shipping & Tax":[null,"WooCommerce Shipping & Tax"],"ZIP/Postal code":[null,"Postnummer"],"This action will delete any information entered on the form.":[null,""],"Cancel connection":[null,"Avbryt anslutning"],"Ok":[null,"Ok"],"UPS invoice control id":[null,""],"UPS invoice currency":[null,""],"UPS invoice amount":[null,""],"UPS invoice date":[null,""],"UPS invoice number":[null,""],"I have been issued an invoice from UPS within the past 90 days":[null,""],"UPS account information":[null,""],"Company website":[null,"Företagets webbplats"],"Job title":[null,"Jobbtitel"],"Company name":[null,"Företagsnamn"],"This is the company info you used to create your UPS account":[null,"Detta är företagsinformationen du använder för att skapa ditt UPS-konto"],"Company information":[null,"Företagsinformation"],"Email":[null,"E-post"],"Address 2 (optional)":[null,"Adress 2 (valfritt)"],"Account number":[null,"Kontonummer"],"This is the account number and address from your UPS profile":[null,"Detta är kontonumret och adressen från din UPS-profil"],"General information":[null,"Allmän information"],"If you need a UPS account number, go to {{a}}UPS.com{{/a}} to create a new account.":[null,""],"Set up your own UPS carrier account to compare rates and print labels from multiple carriers in WooCommerce Shipping. Learn more about adding {{a}}carrier accounts{{/a}}.":[null,""],"Connect your UPS account":[null,"Anslut ditt UPS-konto"],"Set up your own carrier account by adding your credentials here":[null,""],"Carrier account":[null,""],"Credentials":[null,"Uppgifter"],"Adult signature required":[null,"Signatur av vuxen krävs"],"Signature required":[null,"Signatur obligatoriskt"],"Other\\u2026":[null,""],"Select one\\u2026":[null,""],"Validating address\\u2026":[null,""],"Purchasing\\u2026":[null,""],"Your UPS account will be charged":[null,""],"Package %(index)s \\u2013 %(title)s":[null,""],"Saving\\u2026":[null,""],"Your tax rates and settings will be automatically configured for %1$s. <a href=\"https://docs.woocommerce.com/document/setting-up-taxes-in-woocommerce/#section-12\">Learn more about setting up tax rates for additional nexuses</a>":[null,""],"Your tax rates and settings will be automatically configured for %1$s, %2$s. <a href=\"https://docs.woocommerce.com/document/setting-up-taxes-in-woocommerce/#section-12\">Learn more about setting up tax rates for additional nexuses</a>":[null,""],"%(itemCount)d item is ready to be fulfilled":["%(itemCount)d items are ready to be fulfilled","",""],"%(itemCount)d item was fulfilled on {{span}}%(createdDate)s{{/span}}":["%(itemCount)d items were fulfilled on {{span}}%(createdDate)s{{/span}}","",""],"Schedule a pickup":[null,""],"Label images older than 180 days are deleted by our technology partners for general security and data privacy concerns.":[null,""],"Labels older than 30 days cannot be refunded.":[null,""],"Mark this order as complete and notify the customer":[null,"Markera denna beställning som slutförd och avisera kunden"],"Notify the customer with shipment details":[null,""],"You save %s with WooCommerce Shipping":[null,"Du sparar %s med WooCommerce Shipping"],"WooCommerce Shipping & Tax requires the WooCommerce plugin to be installed and active. You can download %s here.":[null,""],"No tracking information available at this time":[null,"Ingen spårningsinformation tillgänglig just nu"],"Connection error: unable to create label at this time":[null,"Anslutningsfel: kan inte skapa etikett just nu"],"Track Package":["Track Packages","Spåra paket","Spåra paket"],"Which package would you like to track?":[null,"Vilket paket vill du spåra?"],"%(service)s label (#%(labelIndex)d)":[null,"%(service)s etikett (#%(labelIndex)d)"],"To print this shipping label, {{a}}add a credit card to your account{{/a}}.":[null,""],"Add credit card":[null,"Lägg till kreditkort"],"To print this shipping label, {{a}}choose a credit card to add to your account{{/a}}.":[null,""],"Choose credit card":[null,"Välj kreditkort"],"Buy shipping label":["Buy shipping labels","Köp fraktetikett","Köp fraktetiketter"],"shipping label ready":["shipping labels ready","",""],"Shipping from":[null,""],"Shipping summary":[null,""],"Customer paid a {{shippingMethod/}} of {{shippingCost/}} for shipping":[null,""],"Shipping rates":[null,"Fraktavgifter"],"HS Tariff number":[null,""],"Submit":[null,"Skicka"],"Total Weight (with package)":[null,"Total vikt (med paket)"],"QTY":[null,"ANTAL"],"Weight":[null,"Vikt"],"Items to fulfill":[null,""],"Select a package type":[null,"Välj en pakettyp"],"Package details":[null,""],"Your shipping packages have been saved.":[null,""],"0.0":[null,"0.0"],"Shipment Tracking":[null,""],"Customs information valid":[null,""],"Customs information incomplete":[null,""],"Packing Log:":[null,""],"Chosen Rate:":[null,""],"Shipping Method ID:":[null,""],"Shipping Method Name:":[null,""],"Shipping Debug":[null,""],"<strong>\"%2$s\" is missing weight, length, width, or height.</strong><br />Shipping rates cannot be calculated. <a href=\"%1$s\">Enter dimensions and weight for %2$s</a> so your customers can purchase this item.":[null,""],"Unable to send request to WooCommerce Shipping & Tax server. The timestamp generated for the signature is too old.":[null,""],"Unable to send request to WooCommerce Shipping & Tax server. Jetpack Token is malformed.":[null,""],"Unable to send request to WooCommerce Shipping & Tax server. Jetpack Token is missing":[null,""],"Error: The WooCommerce Shipping & Tax server returned: %1$s %2$s ( %3$d )":[null,""],"Error: The WooCommerce Shipping & Tax server returned ( %d ) and an empty response body.":[null,""],"Error: The WooCommerce Shipping & Tax server returned HTTP code: %d":[null,""],"Unable to encode body for request to WooCommerce Shipping & Tax server.":[null,""],"Unable to send request to WooCommerce Shipping & Tax server. Body must be an array.":[null,""],"Unable to send request to WooCommerce Shipping & Tax server. Jetpack connection does not implement get_access_token.":[null,""],"Unable to send request to WooCommerce Shipping & Tax server. Jetpack_Data was not found.":[null,""],"No shipping rate could be calculated. No items in the package are shippable.":[null,""],"Product ( ID: %d ) is missing a dimension value. Shipping rates cannot be calculated.":[null,""],"Product ( ID: %d ) did not include a weight. Shipping rates cannot be calculated.":[null,""],"Packing log:":[null,""],"Received rate: %1$s (%2$s)":[null,""],"Your customer selected {{shippingMethod/}}":[null,"Din kund valde {{shippingMethod/}}"],"Total rate: %(total)s":[null,""],"%(serviceName)s: %(rate)s":[null,""],"No rates found":[null,""],"WooCommerce Shipping gives you access to USPS Commercial Pricing, which is discounted over Retail rates.":[null,""],"more info":[null,"mer information"],"ITN":[null,"ITN"],"Sanitary / Phytosanitary inspection":[null,""],"Quarantine":[null,"Karantän"],"None":[null,"Ingen"],"Restriction type":[null,"Begränsningstyp"],"Details":[null,"Detaljer"],"Sample":[null,"Prov"],"Gift":[null,"Gåva"],"Documents":[null,"Dokument"],"Merchandise":[null,""],"Contents type":[null,"Innehållstyp"],"Return to sender if package is unable to be delivered":[null,""],"Value (per unit)":[null,"Värde (per enhet)"],"Weight (per unit)":[null,"Vikt (per enhet)"],"Save customs form":[null,"Spara anpassat formulär"],"Customs":[null,"Anpassade"],"Use address as entered":[null,"Använd adress som angetts"],"View on Google Maps":[null,"Visa på Google Maps"],"Verify with USPS":[null,"Verifiera med USPS"],"Automatic verification failed for this address. It may still be a valid address \\u2014 use the tools below to manually verify.":[null,""],"We were unable to automatically verify the address.":[null,"Vi kunde inte automatiskt verifiera adressen."],"We were unable to automatically verify the address \\u2014 %(error)s.":[null,""],"You've edited the address, please revalidate it for accurate rates":[null,""],"Verify address":[null,"Verifiera adress"],"%(message)s. Please modify the address and try again.":[null,"%(message)s. Ändra adressen och försök igen."],"View details":[null,"Visa detaljer"],"Items":[null,"Varor"],"Package":[null,"Paket"],"Receipt":[null,"Kvitto"],"Label #%(labelIndex)s details":[null,""],"{{icon/}} Delete this package":[null,"{{icon/}} Ta bort detta paket"],"Done":[null,"Klart"],"Add boxes, envelopes, and other packages you use most frequently":[null,""],"Remove":[null,"Ta bort"],"Edit":[null,"Redigera"],"Weight of empty package":[null,"Vikt för tomt paket"],"Unique package name":[null,"Unikt paketnamn"],"Envelope":[null,"Kuvert"],"Box":[null,"Låda"],"This field is required.":[null,"Detta fält är obligatoriskt."],"Payment":[null,"Betalning"],"Email the label purchase receipts to %(ownerName)s (%(ownerLogin)s) at %(ownerEmail)s":[null,""],"Email Receipts":[null,"E-postkvitton"],"To purchase shipping labels, choose a credit card you have on file or add a new card.":[null,""],"Choose a different card":[null,"Välj ett annat kort"],"To purchase shipping labels, add a credit card.":[null,"För att köpa fraktetiketter, lägg till ett kreditkort."],"We'll charge the credit card on your account (%(card)s) to pay for the labels you print":[null,""],"Credit cards are retrieved from the following WordPress.com account: %(wpcomLogin)s <%(wpcomEmail)s>":[null,""],"Only the site owner can change these settings. Please contact %(ownerName)s (%(ownerLogin)s) to change the shipping label settings.":[null,""],"Only the site owner can manage shipping label payment methods. Please contact %(ownerName)s (%(ownerLogin)s) to manage payment methods.":[null,""],"%(card)s ****%(digits)s":[null,"%(card)s ****%(digits)s"],"Print shipping labels yourself and save a trip to the post office":[null,""],"H":[null,"H"],"W":[null,"B"],"L":[null,"L"],"Disconnect":[null,"Koppla från"],"Activate":[null,"Aktivera"],"No activity yet":[null,"Ingen aktivitet ännu"],"Note":[null,"Obs"],"Refunded %(amount)s":[null,"Återbetalt %(amount)s"],"%(service)s label (#%(labelNum)d) refund rejected":[null,""],"%(service)s label (#%(labelNum)d) refunded (%(amount)s)":[null,""],"%(service)s label (#%(labelNum)d) refund requested (%(amount)s)":[null,""],"Note sent to customer":[null,"Notering skickad till kunden"],"Internal note":[null,"Intern notering"],"Show notes from %(date)s":[null,"Visa anteckningar från %(date)s"],"%(count)s event":["%(count)s events","%(count)s händelse","%(count)s händelser"],"WeChat Pay":[null,"WeChat Pay"],"Toggle menu":[null,"Slå på/av meny"],"Return to Order #%(orderId)s":[null,""],"Our team is here for you. View our {{docsA}}support docs{{/docsA}} or {{ticketA}}open a support ticket{{/ticketA}}.":[null,""],"Logging":[null,"Loggning"],"No services configured. {{a}}Add a shipping service{{/a}}":[null,""],"Edit service settings":[null,""],"Request was made %s - check logs below or {{a}}edit service settings{{/a}}":[null,""],"Copy for support":[null,"Kopiera för support"],"Last %s entry. {{a}}Show full log{{/a}}":["Last %s entries. {{a}}Show full log{{/a}}","",""],"Log tail copied to clipboard":[null,""],"You have unsaved changes. Are you sure you want to leave this page?":[null,"Du har osparade ändringar. Är du säker på att du vill lämna denna sida?"],"Value ($ per unit)":[null,"Värde ($ per enhet)"],"Weight (%s per unit)":[null,"Vikt (%s per enhet)"],"Description":[null,"Beskrivning"],"Country where the product was manufactured or assembled":[null,"Land där produkten tillverkades eller monterades"],"Origin country":[null,"Ursprungsland"],"USPS":[null,"USPS"],"Optional":[null,"Valfritt"],"Retry":[null,"Försök igen"],"shipping label printing":[null,""],"shipping label printing and smoother payment setup":[null,""],"automated tax calculation and shipping label printing":[null,""],"automated tax calculation, shipping label printing, and smoother payment setup":[null,""],"Data resource description.":[null,""],"Data resource ID.":[null,""],"List of supported currencies.":[null,"Lista på valutor som stöds."],"List of supported states in a given country.":[null,"Lista över delstater som stöds i ett givet land."],"List of supported continents, countries, and states.":[null,"Lista över stödda kontinenter, länder och stater."],"Sorry, you cannot view this resource.":[null,"Du kan inte visa denna resurs."],"Sorry, you cannot list resources.":[null,"Du kan inte lista resurser."],"The unit weights are defined in for this country.":[null,""],"Thousands separator for displayed prices in this country.":[null,"Tusentalsavgränsare för visade priser i detta land."],"Full name of state.":[null,"Fullständigt namn på staten."],"State code.":[null,""],"List of states in this country.":[null,"Lista över stater i detta land."],"Number of decimal points shown in displayed prices for this country.":[null,"Antal decimaler som visas i visade priser för detta land."],"Full name of country.":[null,"Fullständigt namn på landet."],"The unit lengths are defined in for this country.":[null,""],"Decimal separator for displayed prices for this country.":[null,"Decimala gränsare för visade priser för detta land."],"Currency symbol position for this country.":[null,""],"Default ISO4127 alpha-3 currency code for the country.":[null,"Standard ISO4127 alfa-3 valutakod för landet."],"ISO3166 alpha-2 country code.":[null,"ISO3166 alfa-2 landskod."],"List of countries on this continent.":[null,"Lista på länder på denna kontinent."],"Full name of continent.":[null,""],"There are no locations matching these parameters.":[null,"Det finns inga platser som matchar dessa parametrar."],"2 character continent code.":[null,""],"Shipping label tracking number":[null,""],"Shipping label service":[null,""],"Warning: Erasing personal data will cause the ability to reprint or refund WooCommerce Shipping & Tax shipping labels to be lost on the affected orders.":[null,""],"By using this extension, you may be storing personal data or sharing data with external services. <a href=\"%s\" target=\"_blank\">Learn more about how this works, including what you may want to include in your privacy policy.</a>":[null,""],"There was a problem updating your saved credit cards.":[null,"Det var ett problem att uppdatera dina sparade kreditkort."],"No labels found for this period":[null,"Inga etiketter hittades för denna period"],"Total":[null,"Totalt"],"Refund":[null,"Återbetalning"],"Price":[null,"Pris"],"Order":[null,"Beställning"],"Time":[null,"Tid"],"Requested":[null,""],"Last 7 days":[null,"Senaste 7 dagarna"],"This month":[null,"Denna månad"],"Last month":[null,"Förra månaden"],"Year":[null,"År"],"Export CSV":[null,"Exportera CSV"],"Other Log":[null,"Andra loggar"],"Taxes Log":[null,""],"Shipping Log":[null,""],"Display troubleshooting information on the Cart and Checkout pages.":[null,""],"Write diagnostic messages to log files. Helpful when contacting support.":[null,"Skriv diagnostiska meddelanden till loggfiler. Användbart när du kontaktar support."],"Enter your email address at which to accept payments. You'll need to link your own account in order to perform anything other than \"sale\" transactions.":[null,""],"Payment Email":[null,""],"To authenticate payments with WooCommerce Shipping & Tax, <a href=\"%s\">click here</a>.":[null,""],"Payments will be authenticated by WooCommerce Shipping & Tax and directed to the following email address. To disable this feature and link a PayPal account, <a href=\"%s\">click here</a>.":[null,""],"%s (Note that \"authorizing payment only\" requires linking a PayPal account.)":[null,""],"Link account":[null,"Länka konto"],"Link a new or existing PayPal account to make sure future orders are marked “Processing” instead of “On hold”, and so refunds can be issued without leaving WooCommerce.":[null,""],"Link your PayPal account":[null,"Länka ditt PayPal-konto"],"To issue refunds via PayPal Checkout, you will need to <a href=\"%s\">link a PayPal account</a> with the email address that received this payment.":[null,""],"Link a PayPal account":[null,"Länka ett PayPal-konto"],"Refresh":[null,"Uppdatera"],"Tracking number":[null,"Spårningsnummer"],"Provider":[null,"Leverantör"],"WooCommerce Shipping & Tax is almost ready to go! Once you connect Jetpack you'll have access to %s.":[null,""],"Hosted services for WooCommerce: automated tax calculation, shipping label printing, and smoother payment setup.":[null,""],"Tax Class":[null,"Momssats"],"Shipping":[null,"Frakt"],"Compound":[null,""],"Priority":[null,"Prioritet"],"Tax Name":[null,"Momsnamn"],"Rate %":[null,"Betygsätt %"],"ZIP/Postcode":[null,"Postnummer"],"State Code":[null,""],"Country Code":[null,"Landskod"],"Enable automated taxes":[null,"Aktivera automatisk moms"],"Disable automated taxes":[null,"Inaktivera automatisk moms"],"Automated taxes":[null,"Automatisk moms"],"By clicking \"%1$s\", you agree to the <a href=\"%2$s\">Terms of Service</a> and to <a href=\"%3$s\">share certain data and settings</a> with WordPress.com and/or third parties.":[null,""],"Setup complete.":[null,"Inställningen är slutförd."],"You can now enjoy %s.":[null,"Du kan nu använda %s."],"WooCommerce Shipping & Tax is almost ready to go! Once you connect your store you'll have access to %s.":[null,""],"automated tax calculation":[null,"automatisk momsberäkning"],"smoother payment setup":[null,"smidig betalningskonfigurering"],"automated tax calculation and smoother payment setup":[null,"automatisk momsberäkning och smidigare betalningsinställning"],"Required":[null,"Obligatorisk"],"Your shipping settings have been saved.":[null,"Dina leveransinställningar har sparats."],"Unable to save your shipping settings. Please try again.":[null,""],"Dimensions":[null,"Mått"],"Close":[null,"Stäng"],"Packages to be Shipped":[null,"Paket att skicka"],"Add to a New Package":[null,"Lägg till i ett nytt paket"],"Add items":[null,""],"Individually Shipped Item":[null,"Individuellt skickade varor"],"Item Dimensions":[null,"Mått på vara"],"Please select a package":[null,"Vänligen ange emballage"],"Service schemas were not loaded":[null,""],"Bad request":[null,""],"Order not found":[null,"Beställningen hittades inte"],"Got it, thanks!":[null,"Jag fattar, tack!"],"Activate Jetpack and connect":[null,"Aktivera Jetpack och anslut"],"Install Jetpack and connect":[null,"Installera Jetpack och anslut"],"Something went wrong. Please try connecting to Jetpack manually, or contact support on the WordPress.org forums.":[null,"Något gick fel. Försök att ansluta till Jetpack manuellt, eller kontakta support på WordPress.org-forumet."],"Connecting...":[null,"Ansluter…"],"Activating...":[null,"Aktiverar…"],"When you're ready, purchase and print discounted labels from %s right here.":[null,""],"Discounted Shipping Labels":[null,"Rabatterade fraktetiketter"],"American Express":[null,"American Express"],"Discover":[null,"Discover"],"MasterCard":[null,"MasterCard"],"VISA":[null,"VISA"],"PayPal":[null,"PayPal"],"Add another credit card":[null,"Lägg till ett annat kreditkort"],"%(selectedCount)d package selected":["%(selectedCount)d packages selected","%(selectedCount)d paket valt","%(selectedCount)d paket valda"],"Unable to get your settings. Please refresh the page to try again.":[null,"Det går inte att få dina inställningar. Uppdatera sidan för att försöka igen."],"%(numSelected)d service selected":["%(numSelected)d services selected","%(numSelected)d tjänst vald","%(numSelected)d tjänster valda"],"Add and edit saved packages using the {{a}}Packaging Manager{{/a}}.":[null,""],"Tracking #: {{trackingLink/}}":[null,""],"%(item)s from {{pckg/}}":[null,"%(item)s från {{pckg/}}"],"Which items would you like to add to {{pckg/}}?":[null,""],"1 item in 1 package: %(weight)s %(unit)s total":[null,""],"%(itemsCount)d items in 1 package: %(weight)s %(unit)s total":[null,""],"%(itemsCount)d items in %(packageCount)d packages: %(weight)s %(unit)s total":[null,""],"{{itemLink/}} is currently saved for a later shipment.":[null,""],"{{itemLink/}} is currently shipped in its original packaging.":[null,""],"{{itemLink/}} is currently in {{pckg/}}.":[null,"{{itemLink/}} är för närvarande i {{pckg/}}."],"Choose rate: %(pckg)s":[null,""],"Refund label (-%(amount)s)":[null,""],"Where would you like to move it?":[null,"Var skulle du vilja flytta det?"],"Unsaved changes made to packages":[null,"Osparade ändringar gjorda i paket"],"There are no items in this package.":[null,"Det finns inga varor i detta paket."],"Ship in original packaging":[null,"Levereras i originalförpackning"],"Request refund":[null,"Begär återbetalning"],"Reprint":[null,"Skriv ut igen"],"Paper size":[null,"Pappersstorlek"],"No packages selected":[null,"Inga paket valda"],"Move":[null,"Flytta"],"Move item":[null,""],"Increase the rates calculated by the carrier to account for packaging and handling costs. You can also add a negative amount to save your customers money.":[null,""],"Create new label":[null,"Skapa ny etikett"],"All packages selected":[null,"Alla paket valda"],"Add":[null,"Lägg till"],"Add item":[null,""],"Add a credit card":[null,"Lägg till ett kreditkort"],"#%d - [Deleted product]":[null,"#%d - [Ta bort produkt]"],"#%1$d - %2$s":[null,"#%1$d - %2$s"],"<a href=\"%s\">Support</a>":[null,"<a href=\"%s\">Support</a>"],"There was an error installing Jetpack. Please try installing it manually.":[null,"Det var det fel att installera JetPack. Prova installera det manuellt."],"Shipping Labels":[null,"Fraktetiketter"],"Automattic":[null,"Automattic"],"https://woocommerce.com/":[null,"https://woocommerce.com/"],"Phone":[null,"Telefon"],"Connect":[null,"Anslut"],"Save Settings":[null,"Spara inställningar"],"Your changes have been saved.":[null,"Dina ändringar har sparats."],"There was a problem with one or more entries. Please fix the errors below and try saving again.":[null,""],"Expand":[null,"Expandera"],"Dismiss":[null,"Avfärda"],"You have unsaved changes.":[null,"Du har osparade ändringar."],"Type of package":[null,"Typ av paket"],"Add package":["Add packages","Lägg till paket",""],"Invalid value.":[null,"Ogiltigt värde."],"This field is required":[null,"Detta fält är obligatoriskt"],"Package name":[null,"Paketnamn"],"This field must be unique":[null,"Detta fält måste vara unikt"],"Unable to save your shipping packages. Please try again.":[null,""],"Save changes":[null,"Spara ändringar"],"Untitled":[null,"Utan rubrik"],"Dimensions (L x W x H)":[null,"Dimensioner (L x B x H)"],"All services selected":[null,"Alla tjänster valda"],"Expand Services":[null,"Expandera tjänster"],"Service":[null,"Tjänst"],"Price adjustment":[null,"Prisjustering"],"Saved Packages":[null,"Sparade paket"],"Tracking":[null,"Spårning"],"Create shipping label":["Create shipping labels","Skapa fraktetikett",""],"Name":[null,"Namn"],"Company":[null,"Företag"],"Address":[null,"Adress"],"City":[null,"Ort"],"State":[null,"Delstat"],"Country":[null,"Land"],"Invalid address":[null,"Ogiltig adress"],"Origin address":[null,"Ursprungsadress"],"Destination address":[null,"Destinations adress"],"We have slightly modified the address entered. If correct, please use the suggested address to ensure accurate delivery.":[null,""],"Address entered":[null,"Adress angiven"],"Edit address":[null,"Redigera adress"],"Suggested address":[null,"Föreslagen adress"],"Use selected address":[null,"Använd vald adress"],"Use these packages":[null,"Använd dessa paket"],"The service and rate chosen by the customer at checkout is not available. Please choose another.":[null,""],"Request a refund":[null,"Begär en återbetalning"],"You can request a refund for a shipping label that has not been used to ship a package. It will take at least %(days)s days to process.":[null,""],"Purchase date":[null,"Inköpsdatum"],"Amount eligible for refund":[null,"Belopp berättigat till återbetalning"],"Reprint shipping label":[null,""],"If there was a printing error when you purchased the label, you can print it again.":[null,"Om det uppstod ett utskriftsfel när du köpte etiketten kan du skriva ut den igen."],"NOTE: If you already used the label in a package, printing and using it again is a violation of our terms of service and may result in criminal charges.":[null,"OBS! Om du redan använt etiketten i ett paket, är det en kränkning av våra användarvillkor och det kan leda till straffavgifter."],"Print":[null,"Skriv ut"],"Cancel":[null,"Avbryt"],"N/A":[null,"N/A"],"More":[null,"Mer"],"Invalid PDF request.":[null,"Ogiltig PDF-begäran."],"Unknown package":[null,"Okänt paket"],"Individual packaging":[null,""],"Unable to update service settings. Validation failed. %s":[null,"Det gick inte att uppdatera serviceinställningarna. Validering misslyckades. %s"],"Unable to update service settings. The form data could not be read.":[null,"Det gick inte att uppdatera serviceinställningarna. Formulärdata kunde inte läsas."],"Unable to update service settings. Form data is missing service ID.":[null,""],"Unable to update settings. The form data could not be read.":[null,"Det gick inte att uppdatera inställningarna. Formulärdata kunde inte läsas."],"Unable to update settings. %s":[null,"Det gick inte att uppdatera inställningarna. %s"],"Packaging":[null,""],"Section not loading? Visit the <a href=\"%s\">status page</a> for troubleshooting steps.":[null,""],"Note: Jetpack development mode is enabled on this site. This site will not be able to obtain payment methods from WooCommerce Shipping & Tax production servers.":[null,""],"Note: Jetpack is connected, but development mode is also enabled on this site. Please disable development mode.":[null,"Obs! Jetpack är ansluten, men utvecklingsläget är också aktiverat på denna webbplats. Inaktivera utvecklingsläget."],"Shipping Label":[null,"Fraktetikett"],"yd":[null,"yd"],"in":[null,"in"],"mm":[null,"mm"],"cm":[null,"cm"],"m":[null,"m"],"oz":[null,"oz"],"lbs":[null,"lbs"],"g":[null,"g"],"kg":[null,"kg"],"An invalid service ID was received.":[null,""],"An invalid service instance was received.":[null,""],"Rest of the World":[null,"Resten av världen"],"Support":[null,"Support"],"Debug":[null,"Felsök"],"Services":[null,"Tjänster"],"Need help?":[null,"Behöver du hjälp?"],"Log is empty":[null,"Loggen är tom"],"Disabled":[null,"Inaktiverad"],"Enabled":[null,"Aktiverad"],"%s Shipping Zone":[null,"%s fraktzon"],"The most recent rate request failed":[null,""],"The most recent rate request was successful":[null,""],"No rate requests have yet been made for this service":[null,""],"Setup for this service has not yet been completed":[null,"Inställningen för denna tjänst har ännu inte slutförts"],"Service data is up-to-date":[null,""],"Service data was found, but is more than one day old":[null,""],"Service data was found, but is more than three days old":[null,""],"Service data found, but may be out of date":[null,""],"No service data available":[null,""],"Jetpack":[null,"Jetpack"],"Jetpack %s is connected and working correctly":[null,"Jetpack %s är ansluten och fungerar korrekt"],"This is a Jetpack staging site":[null,""],"Jetpack is not connected to WordPress.com. Make sure the Jetpack plugin is installed, activated, and connected.":[null,"Jetpack är inte ansluten till WordPress.com. Se till att tillägget Jetpack är installerat, aktiverat och anslutet."],"Jetpack %1$s or higher is required (You are running %2$s)":[null,""],"Please install and activate the Jetpack plugin, version %s or higher":[null,"Installera och aktivera tillägget Jetpack, version %s eller högre"],"WooCommerce":[null,"WooCommerce"],"WooCommerce %s is configured correctly":[null,"WooCommerce %s är korrekt konfigurerad"],"Please set Base Location in WooCommerce Settings > General":[null,"Ställ in basplats i WooCommerce-inställningar > Allmänt"],"WooCommerce %1$s or higher is required (You are running %2$s)":[null,""],"Dismiss this notice":[null,"Avfärda denna notis"],"ERROR: Your site has a problem connecting to the WooCommerce Shipping & Tax API. Please make sure your Jetpack connection is working.":[null,""],"Your site is succesfully communicating to the WooCommerce Shipping & Tax API.":[null,""],"This will test your WooCommerce Shipping & Tax connection to ensure everything is working correctly":[null,""],"Test Connection":[null,""],"The WooCommerce Shipping & Tax brandname\u0004WooCommerce Shipping & Tax":[null,"WooCommerce Shipping & Tax"],"The WooCommerce Shipping & Tax brandname\u0004WooCommerce Shipping":[null,"WooCommerce Shipping"],"%s - ZIP/Postal code checkout field label\u0004Invalid %s entered.":[null,"Ogiltigt %s angivet."],"%s - ZIP/Postal code checkout field label\u0004%s does not match the selected state.":[null,"%s matchar inte den valda delstaten."],"date is of the form MM/YY\u0004Expires %(date)s":[null,"Löper ut %(date)s"],"A service with an unknown title and unknown method_title\u0004Unknown":[null,"Okänd"],"This section displays the overall health of WooCommerce Shipping & Tax and the things it depends on\u0004Health":[null,"Hälsa"]}
1
+ {"0":[null,"0"],"":{"po-revision-date":"2021-04-30 20:15:23+0000","mime-version":"1.0","content-type":"text/plain; charset=UTF-8","content-transfer-encoding":"8bit","plural-forms":"nplurals=2; plural=n != 1;","x-generator":"GlotPress/3.0.0-alpha.2","language":"sv_SE","project-id-version":"Plugins - WooCommerce Shipping &amp; Tax - Stable (latest release)"},"Features":[null,"Funktioner"],"Carrier":[null,"Fraktbolag"],"Express delivery from the experts in international shipping":[null,""],"Live rates for %(carrierName)s at checkout":[null,""],"Ship with the largest delivery network in the United States":[null,""],"Discounted %(carrierName)s shipping labels":[null,""],"To be displayed at checkout, this carrier must be added as a shipping method to selected shipping zones":[null,""],"Add to shipping zones":[null,""],"Show live rates directly on your store - never under or overcharge for shipping again":[null,""],"Live rates at checkout":[null,""],"Last updated %s.":[null,""],"At least one of the new predefined packages has the same name as existing packages.":[null,""],"The new predefined package names are not unique.":[null,""],"At least one of the new custom packages has the same name as existing packages.":[null,""],"The new custom package names are not unique.":[null,""],"Go to shipping zones":[null,""],"Add DHL Express as a shipping method to selected shipping zones to display live rates at checkout.":[null,""],"DHL Express live rates are now available":[null,""],"State %1$s is invalid for %2$s.":[null,""],"%1$s %2$s is invalid for %3$s.":[null,"%1$s %2$s är ogiltig för %3$s."],"A %1$s is required for %2$s.":[null,"A %1$s är obligatoriskt för %2$s."],"A country is required":[null,"Ett land är obligatoriskt"],"Your store is over the limit for rate calls this month and your account will be charged for overages. To prevent future overage charges you can upgrade your plan.":[null,""],"There was an error trying to activate your subscription.":[null,"Det var ett fel vid försöket att aktivera din prenumeration."],"Your subscription was succesfully activated.":[null,"Din prenumeration har aktiverats!"],"Manage":[null,"Hantera"],"Usage":[null,"Användning"],"View and manage your subscription usage":[null,"Visa och hantera din prenumerationsanvändning"],"Shipping method":[null,"Fraktmetod"],"The subscription is already active.":[null,"Prenumerationen är redan aktiv."],"Set up your own carrier account to compare rates and print labels from multiple carriers in WooCommerce Shipping. Learn more about adding {{a}}carrier accounts{{/a}}.":[null,""],"There was an error connecting to your %(carrierName)s account. Please check that all of the information entered matches your %(carrierName)s account and try to connect again.":[null,""],"Your carrier account was connected successfully.":[null,""],"The date must be a valid date in the format YYYY-MM-DD":[null,""],"The invoice number needs to be 9 or 13 letters and digits in length":[null,""],"The company website format is not valid":[null,"Formatet på företagets webbplats är inte giltigt"],"The email format is not valid":[null,"E-postformatet är inte giltigt"],"The ZIP/Postal code needs to be 5 digits in length":[null,""],"The phone number needs to be 10 digits in length":[null,"Telefonnumret måste vara tio siffror långt"],"The UPS account number needs to be 6 letters and digits in length":[null,""],"This will remove the connection with %(carrier_name)s. All of your %(carrier_name)s account information will be deleted and you won\\u2019t see %(carrier_name)s rates.":[null,""],"Disconnect your %(carrier_name)s account":[null,"Koppla från ditt %(carrier_name)s-konto"],"There was an error trying to disconnect your carrier account":[null,""],"Your carrier account was disconnected succesfully.":[null,""],"DHL Express":[null,"DHL Express"],"Powered by WooCommerce Tax. If automated taxes are enabled, you'll need to enter prices exclusive of tax.":[null,""],"WooCommerce Helper auth is missing":[null,""],"USPS labels without tracking are not eligible for refund.":[null,""],"General Information":[null,"Allmän information"],"Connect your %(carrierName)s account":[null,"Anslut ditt %(carrierName)s-konto"],"%(carrierName)s not supported.":[null,"%(carrierName)s stöds inte."],"Loading":[null,"Laddar in"],"WooCommerce Shipping & Tax Data":[null,""],"Print customs form":[null,"Skriv ut anpassat formulär"],"Test your WooCommerce Shipping & Tax connection":[null,""],"WooCommerce Shipping & Tax Status":[null,"Status för WooCommerce Shipping & Tax"],"Connect your store to activate WooCommerce Shipping & Tax":[null,"Anslut din butik för att aktivera WooCommerce Shipping & Tax"],"Connect Jetpack to activate WooCommerce Shipping & Tax":[null,"Anslut Jetpack för att aktivera WooCommerce Shipping & Tax"],"WooCommerce Shipping now supports DHL labels for international shipments. Purchase and print discounted labels from DHL and USPS right here.":[null,""],"Discounted DHL Shipping Labels":[null,""],"WooCommerce Shipping":[null,"WooCommerce Shipping"],"Invalid WooCommerce Shipping & Tax service slug provided":[null,""],"WooCommerce Shipping & Tax":[null,"WooCommerce Shipping & Tax"],"ZIP/Postal code":[null,"Postnummer"],"This action will delete any information entered on the form.":[null,""],"Cancel connection":[null,"Avbryt anslutning"],"Ok":[null,"Ok"],"UPS invoice control id":[null,""],"UPS invoice currency":[null,""],"UPS invoice amount":[null,""],"UPS invoice date":[null,""],"UPS invoice number":[null,""],"I have been issued an invoice from UPS within the past 90 days":[null,""],"UPS account information":[null,""],"Company website":[null,"Företagets webbplats"],"Job title":[null,"Jobbtitel"],"Company name":[null,"Företagsnamn"],"This is the company info you used to create your UPS account":[null,"Detta är företagsinformationen du använder för att skapa ditt UPS-konto"],"Company information":[null,"Företagsinformation"],"Email":[null,"E-post"],"Address 2 (optional)":[null,"Adress 2 (valfritt)"],"Account number":[null,"Kontonummer"],"This is the account number and address from your UPS profile":[null,"Detta är kontonumret och adressen från din UPS-profil"],"General information":[null,"Allmän information"],"If you need a UPS account number, go to {{a}}UPS.com{{/a}} to create a new account.":[null,""],"Set up your own UPS carrier account to compare rates and print labels from multiple carriers in WooCommerce Shipping. Learn more about adding {{a}}carrier accounts{{/a}}.":[null,""],"Connect your UPS account":[null,"Anslut ditt UPS-konto"],"Set up your own carrier account by adding your credentials here":[null,""],"Carrier account":[null,""],"Credentials":[null,"Uppgifter"],"Adult signature required":[null,"Signatur av vuxen krävs"],"Signature required":[null,"Signatur obligatoriskt"],"Other\\u2026":[null,""],"Select one\\u2026":[null,""],"Validating address\\u2026":[null,""],"Purchasing\\u2026":[null,""],"Your UPS account will be charged":[null,""],"Package %(index)s \\u2013 %(title)s":[null,""],"Saving\\u2026":[null,""],"Your tax rates and settings will be automatically configured for %1$s. <a href=\"https://docs.woocommerce.com/document/setting-up-taxes-in-woocommerce/#section-12\">Learn more about setting up tax rates for additional nexuses</a>":[null,""],"Your tax rates and settings will be automatically configured for %1$s, %2$s. <a href=\"https://docs.woocommerce.com/document/setting-up-taxes-in-woocommerce/#section-12\">Learn more about setting up tax rates for additional nexuses</a>":[null,""],"%(itemCount)d item is ready to be fulfilled":["%(itemCount)d items are ready to be fulfilled","",""],"%(itemCount)d item was fulfilled on {{span}}%(createdDate)s{{/span}}":["%(itemCount)d items were fulfilled on {{span}}%(createdDate)s{{/span}}","",""],"Schedule a pickup":[null,""],"Label images older than 180 days are deleted by our technology partners for general security and data privacy concerns.":[null,""],"Labels older than 30 days cannot be refunded.":[null,"Etiketter äldre än 30 dagar kan inte återbetalas."],"Mark this order as complete and notify the customer":[null,"Markera denna beställning som slutförd och avisera kunden"],"Notify the customer with shipment details":[null,""],"You save %s with WooCommerce Shipping":[null,"Du sparar %s med WooCommerce Shipping"],"WooCommerce Shipping & Tax requires the WooCommerce plugin to be installed and active. You can download %s here.":[null,""],"No tracking information available at this time":[null,"Ingen spårningsinformation tillgänglig just nu"],"Connection error: unable to create label at this time":[null,"Anslutningsfel: kan inte skapa etikett just nu"],"Track Package":["Track Packages","Spåra paket","Spåra paket"],"Which package would you like to track?":[null,"Vilket paket vill du spåra?"],"%(service)s label (#%(labelIndex)d)":[null,"%(service)s etikett (#%(labelIndex)d)"],"To print this shipping label, {{a}}add a credit card to your account{{/a}}.":[null,""],"Add credit card":[null,"Lägg till kreditkort"],"To print this shipping label, {{a}}choose a credit card to add to your account{{/a}}.":[null,""],"Choose credit card":[null,"Välj kreditkort"],"Buy shipping label":["Buy shipping labels","Köp fraktetikett","Köp fraktetiketter"],"shipping label ready":["shipping labels ready","",""],"Shipping from":[null,""],"Shipping summary":[null,""],"Customer paid a {{shippingMethod/}} of {{shippingCost/}} for shipping":[null,""],"Shipping rates":[null,"Fraktavgifter"],"HS Tariff number":[null,""],"Submit":[null,"Skicka"],"Total Weight (with package)":[null,"Total vikt (med paket)"],"QTY":[null,"ANTAL"],"Weight":[null,"Vikt"],"Items to fulfill":[null,""],"Select a package type":[null,"Välj en pakettyp"],"Package details":[null,"Paketdetaljer"],"Your shipping packages have been saved.":[null,""],"0.0":[null,"0.0"],"Shipment Tracking":[null,"Fraktspårning"],"Customs information valid":[null,"Anpassad information giltig"],"Customs information incomplete":[null,"Anpassad information ofullständig"],"Packing Log:":[null,""],"Chosen Rate:":[null,""],"Shipping Method ID:":[null,""],"Shipping Method Name:":[null,""],"Shipping Debug":[null,""],"<strong>\"%2$s\" is missing weight, length, width, or height.</strong><br />Shipping rates cannot be calculated. <a href=\"%1$s\">Enter dimensions and weight for %2$s</a> so your customers can purchase this item.":[null,""],"Unable to send request to WooCommerce Shipping & Tax server. The timestamp generated for the signature is too old.":[null,""],"Unable to send request to WooCommerce Shipping & Tax server. Jetpack Token is malformed.":[null,""],"Unable to send request to WooCommerce Shipping & Tax server. Jetpack Token is missing":[null,""],"Error: The WooCommerce Shipping & Tax server returned: %1$s %2$s ( %3$d )":[null,""],"Error: The WooCommerce Shipping & Tax server returned ( %d ) and an empty response body.":[null,""],"Error: The WooCommerce Shipping & Tax server returned HTTP code: %d":[null,""],"Unable to encode body for request to WooCommerce Shipping & Tax server.":[null,""],"Unable to send request to WooCommerce Shipping & Tax server. Body must be an array.":[null,""],"Unable to send request to WooCommerce Shipping & Tax server. Jetpack connection does not implement get_access_token.":[null,""],"Unable to send request to WooCommerce Shipping & Tax server. Jetpack_Data was not found.":[null,""],"No shipping rate could be calculated. No items in the package are shippable.":[null,""],"Product ( ID: %d ) is missing a dimension value. Shipping rates cannot be calculated.":[null,""],"Product ( ID: %d ) did not include a weight. Shipping rates cannot be calculated.":[null,""],"Packing log:":[null,""],"Received rate: %1$s (%2$s)":[null,""],"Your customer selected {{shippingMethod/}}":[null,"Din kund valde {{shippingMethod/}}"],"Total rate: %(total)s":[null,""],"%(serviceName)s: %(rate)s":[null,""],"No rates found":[null,""],"WooCommerce Shipping gives you access to USPS Commercial Pricing, which is discounted over Retail rates.":[null,""],"more info":[null,"mer information"],"ITN":[null,"ITN"],"Sanitary / Phytosanitary inspection":[null,""],"Quarantine":[null,"Karantän"],"None":[null,"Ingen"],"Restriction type":[null,"Begränsningstyp"],"Details":[null,"Detaljer"],"Sample":[null,"Prov"],"Gift":[null,"Gåva"],"Documents":[null,"Dokument"],"Merchandise":[null,""],"Contents type":[null,"Innehållstyp"],"Return to sender if package is unable to be delivered":[null,""],"Value (per unit)":[null,"Värde (per enhet)"],"Weight (per unit)":[null,"Vikt (per enhet)"],"Save customs form":[null,"Spara anpassat formulär"],"Customs":[null,"Anpassade"],"Use address as entered":[null,"Använd adress som angetts"],"View on Google Maps":[null,"Visa på Google Maps"],"Verify with USPS":[null,"Verifiera med USPS"],"Automatic verification failed for this address. It may still be a valid address \\u2014 use the tools below to manually verify.":[null,""],"We were unable to automatically verify the address.":[null,"Vi kunde inte automatiskt verifiera adressen."],"We were unable to automatically verify the address \\u2014 %(error)s.":[null,""],"You've edited the address, please revalidate it for accurate rates":[null,""],"Verify address":[null,"Verifiera adress"],"%(message)s. Please modify the address and try again.":[null,"%(message)s. Ändra adressen och försök igen."],"View details":[null,"Visa detaljer"],"Items":[null,"Varor"],"Package":[null,"Paket"],"Receipt":[null,"Kvitto"],"Label #%(labelIndex)s details":[null,""],"{{icon/}} Delete this package":[null,"{{icon/}} Ta bort detta paket"],"Done":[null,"Klart"],"Add boxes, envelopes, and other packages you use most frequently":[null,""],"Remove":[null,"Ta bort"],"Edit":[null,"Redigera"],"Weight of empty package":[null,"Vikt för tomt paket"],"Unique package name":[null,"Unikt paketnamn"],"Envelope":[null,"Kuvert"],"Box":[null,"Låda"],"This field is required.":[null,"Detta fält är obligatoriskt."],"Payment":[null,"Betalning"],"Email the label purchase receipts to %(ownerName)s (%(ownerLogin)s) at %(ownerEmail)s":[null,""],"Email Receipts":[null,"E-postkvitton"],"To purchase shipping labels, choose a credit card you have on file or add a new card.":[null,""],"Choose a different card":[null,"Välj ett annat kort"],"To purchase shipping labels, add a credit card.":[null,"För att köpa fraktetiketter, lägg till ett kreditkort."],"We'll charge the credit card on your account (%(card)s) to pay for the labels you print":[null,""],"Credit cards are retrieved from the following WordPress.com account: %(wpcomLogin)s <%(wpcomEmail)s>":[null,""],"Only the site owner can change these settings. Please contact %(ownerName)s (%(ownerLogin)s) to change the shipping label settings.":[null,""],"Only the site owner can manage shipping label payment methods. Please contact %(ownerName)s (%(ownerLogin)s) to manage payment methods.":[null,""],"%(card)s ****%(digits)s":[null,"%(card)s ****%(digits)s"],"Print shipping labels yourself and save a trip to the post office":[null,""],"H":[null,"H"],"W":[null,"B"],"L":[null,"L"],"Disconnect":[null,"Koppla från"],"Activate":[null,"Aktivera"],"No activity yet":[null,"Ingen aktivitet ännu"],"Note":[null,"Obs"],"Refunded %(amount)s":[null,"Återbetalt %(amount)s"],"%(service)s label (#%(labelNum)d) refund rejected":[null,""],"%(service)s label (#%(labelNum)d) refunded (%(amount)s)":[null,""],"%(service)s label (#%(labelNum)d) refund requested (%(amount)s)":[null,""],"Note sent to customer":[null,"Notering skickad till kunden"],"Internal note":[null,"Intern notering"],"Show notes from %(date)s":[null,"Visa anteckningar från %(date)s"],"%(count)s event":["%(count)s events","%(count)s händelse","%(count)s händelser"],"WeChat Pay":[null,"WeChat Pay"],"Toggle menu":[null,"Slå på/av meny"],"Return to Order #%(orderId)s":[null,""],"Our team is here for you. View our {{docsA}}support docs{{/docsA}} or {{ticketA}}open a support ticket{{/ticketA}}.":[null,""],"Logging":[null,"Loggning"],"No services configured. {{a}}Add a shipping service{{/a}}":[null,""],"Edit service settings":[null,""],"Request was made %s - check logs below or {{a}}edit service settings{{/a}}":[null,""],"Copy for support":[null,"Kopiera för support"],"Last %s entry. {{a}}Show full log{{/a}}":["Last %s entries. {{a}}Show full log{{/a}}","",""],"Log tail copied to clipboard":[null,""],"You have unsaved changes. Are you sure you want to leave this page?":[null,"Du har osparade ändringar. Är du säker på att du vill lämna denna sida?"],"Value ($ per unit)":[null,"Värde ($ per enhet)"],"Weight (%s per unit)":[null,"Vikt (%s per enhet)"],"Description":[null,"Beskrivning"],"Country where the product was manufactured or assembled":[null,"Land där produkten tillverkades eller monterades"],"Origin country":[null,"Ursprungsland"],"USPS":[null,"USPS"],"Optional":[null,"Valfritt"],"Retry":[null,"Försök igen"],"shipping label printing":[null,""],"shipping label printing and smoother payment setup":[null,""],"automated tax calculation and shipping label printing":[null,""],"automated tax calculation, shipping label printing, and smoother payment setup":[null,""],"Data resource description.":[null,""],"Data resource ID.":[null,""],"List of supported currencies.":[null,"Lista på valutor som stöds."],"List of supported states in a given country.":[null,"Lista över delstater som stöds i ett givet land."],"List of supported continents, countries, and states.":[null,"Lista över stödda kontinenter, länder och stater."],"Sorry, you cannot view this resource.":[null,"Du kan inte visa denna resurs."],"Sorry, you cannot list resources.":[null,"Du kan inte lista resurser."],"The unit weights are defined in for this country.":[null,""],"Thousands separator for displayed prices in this country.":[null,"Tusentalsavgränsare för visade priser i detta land."],"Full name of state.":[null,"Fullständigt namn på staten."],"State code.":[null,""],"List of states in this country.":[null,"Lista över stater i detta land."],"Number of decimal points shown in displayed prices for this country.":[null,"Antal decimaler som visas i visade priser för detta land."],"Full name of country.":[null,"Fullständigt namn på landet."],"The unit lengths are defined in for this country.":[null,""],"Decimal separator for displayed prices for this country.":[null,"Decimala gränsare för visade priser för detta land."],"Currency symbol position for this country.":[null,"Valutasymbolens position för detta land."],"Default ISO4127 alpha-3 currency code for the country.":[null,"Standard ISO4127 alfa-3 valutakod för landet."],"ISO3166 alpha-2 country code.":[null,"ISO3166 alfa-2 landskod."],"List of countries on this continent.":[null,"Lista på länder på denna kontinent."],"Full name of continent.":[null,""],"There are no locations matching these parameters.":[null,"Det finns inga platser som matchar dessa parametrar."],"2 character continent code.":[null,""],"Shipping label tracking number":[null,""],"Shipping label service":[null,""],"Warning: Erasing personal data will cause the ability to reprint or refund WooCommerce Shipping & Tax shipping labels to be lost on the affected orders.":[null,""],"By using this extension, you may be storing personal data or sharing data with external services. <a href=\"%s\" target=\"_blank\">Learn more about how this works, including what you may want to include in your privacy policy.</a>":[null,""],"There was a problem updating your saved credit cards.":[null,"Det var ett problem att uppdatera dina sparade kreditkort."],"No labels found for this period":[null,"Inga etiketter hittades för denna period"],"Total":[null,"Totalt"],"Refund":[null,"Återbetalning"],"Price":[null,"Pris"],"Order":[null,"Beställning"],"Time":[null,"Tid"],"Requested":[null,""],"Last 7 days":[null,"Senaste 7 dagarna"],"This month":[null,"Denna månad"],"Last month":[null,"Förra månaden"],"Year":[null,"År"],"Export CSV":[null,"Exportera CSV"],"Other Log":[null,"Andra loggar"],"Taxes Log":[null,""],"Shipping Log":[null,""],"Display troubleshooting information on the Cart and Checkout pages.":[null,""],"Write diagnostic messages to log files. Helpful when contacting support.":[null,"Skriv diagnostiska meddelanden till loggfiler. Användbart när du kontaktar support."],"Enter your email address at which to accept payments. You'll need to link your own account in order to perform anything other than \"sale\" transactions.":[null,""],"Payment Email":[null,""],"To authenticate payments with WooCommerce Shipping & Tax, <a href=\"%s\">click here</a>.":[null,""],"Payments will be authenticated by WooCommerce Shipping & Tax and directed to the following email address. To disable this feature and link a PayPal account, <a href=\"%s\">click here</a>.":[null,""],"%s (Note that \"authorizing payment only\" requires linking a PayPal account.)":[null,""],"Link account":[null,"Länka konto"],"Link a new or existing PayPal account to make sure future orders are marked “Processing” instead of “On hold”, and so refunds can be issued without leaving WooCommerce.":[null,""],"Link your PayPal account":[null,"Länka ditt PayPal-konto"],"To issue refunds via PayPal Checkout, you will need to <a href=\"%s\">link a PayPal account</a> with the email address that received this payment.":[null,""],"Link a PayPal account":[null,"Länka ett PayPal-konto"],"Refresh":[null,"Uppdatera"],"Tracking number":[null,"Spårningsnummer"],"Provider":[null,"Leverantör"],"WooCommerce Shipping & Tax is almost ready to go! Once you connect Jetpack you'll have access to %s.":[null,""],"Hosted services for WooCommerce: automated tax calculation, shipping label printing, and smoother payment setup.":[null,""],"Tax Class":[null,"Momssats"],"Shipping":[null,"Frakt"],"Compound":[null,""],"Priority":[null,"Prioritet"],"Tax Name":[null,"Momsnamn"],"Rate %":[null,"Betygsätt %"],"ZIP/Postcode":[null,"Postnummer"],"State Code":[null,""],"Country Code":[null,"Landskod"],"Enable automated taxes":[null,"Aktivera automatisk moms"],"Disable automated taxes":[null,"Inaktivera automatisk moms"],"Automated taxes":[null,"Automatisk moms"],"By clicking \"%1$s\", you agree to the <a href=\"%2$s\">Terms of Service</a> and to <a href=\"%3$s\">share certain data and settings</a> with WordPress.com and/or third parties.":[null,""],"Setup complete.":[null,"Inställningen är slutförd."],"You can now enjoy %s.":[null,"Du kan nu använda %s."],"WooCommerce Shipping & Tax is almost ready to go! Once you connect your store you'll have access to %s.":[null,""],"automated tax calculation":[null,"automatisk momsberäkning"],"smoother payment setup":[null,"smidig betalningskonfigurering"],"automated tax calculation and smoother payment setup":[null,"automatisk momsberäkning och smidigare betalningsinställning"],"Required":[null,"Obligatorisk"],"Your shipping settings have been saved.":[null,"Dina leveransinställningar har sparats."],"Unable to save your shipping settings. Please try again.":[null,""],"Dimensions":[null,"Mått"],"Close":[null,"Stäng"],"Packages to be Shipped":[null,"Paket att skicka"],"Add to a New Package":[null,"Lägg till i ett nytt paket"],"Add items":[null,""],"Individually Shipped Item":[null,"Individuellt skickade varor"],"Item Dimensions":[null,"Mått på vara"],"Please select a package":[null,"Vänligen ange emballage"],"Service schemas were not loaded":[null,""],"Bad request":[null,""],"Order not found":[null,"Beställningen hittades inte"],"Got it, thanks!":[null,"Jag fattar, tack!"],"Activate Jetpack and connect":[null,"Aktivera Jetpack och anslut"],"Install Jetpack and connect":[null,"Installera Jetpack och anslut"],"Something went wrong. Please try connecting to Jetpack manually, or contact support on the WordPress.org forums.":[null,"Något gick fel. Försök att ansluta till Jetpack manuellt, eller kontakta support på WordPress.org-forumet."],"Connecting...":[null,"Ansluter…"],"Activating...":[null,"Aktiverar…"],"When you're ready, purchase and print discounted labels from %s right here.":[null,""],"Discounted Shipping Labels":[null,"Rabatterade fraktetiketter"],"American Express":[null,"American Express"],"Discover":[null,"Discover"],"MasterCard":[null,"MasterCard"],"VISA":[null,"VISA"],"PayPal":[null,"PayPal"],"Add another credit card":[null,"Lägg till ett annat kreditkort"],"%(selectedCount)d package selected":["%(selectedCount)d packages selected","%(selectedCount)d paket valt","%(selectedCount)d paket valda"],"Unable to get your settings. Please refresh the page to try again.":[null,"Det går inte att få dina inställningar. Uppdatera sidan för att försöka igen."],"%(numSelected)d service selected":["%(numSelected)d services selected","%(numSelected)d tjänst vald","%(numSelected)d tjänster valda"],"Add and edit saved packages using the {{a}}Packaging Manager{{/a}}.":[null,""],"Tracking #: {{trackingLink/}}":[null,""],"%(item)s from {{pckg/}}":[null,"%(item)s från {{pckg/}}"],"Which items would you like to add to {{pckg/}}?":[null,""],"1 item in 1 package: %(weight)s %(unit)s total":[null,""],"%(itemsCount)d items in 1 package: %(weight)s %(unit)s total":[null,""],"%(itemsCount)d items in %(packageCount)d packages: %(weight)s %(unit)s total":[null,""],"{{itemLink/}} is currently saved for a later shipment.":[null,""],"{{itemLink/}} is currently shipped in its original packaging.":[null,""],"{{itemLink/}} is currently in {{pckg/}}.":[null,"{{itemLink/}} är för närvarande i {{pckg/}}."],"Choose rate: %(pckg)s":[null,""],"Refund label (-%(amount)s)":[null,""],"Where would you like to move it?":[null,"Var skulle du vilja flytta det?"],"Unsaved changes made to packages":[null,"Osparade ändringar gjorda i paket"],"There are no items in this package.":[null,"Det finns inga varor i detta paket."],"Ship in original packaging":[null,"Levereras i originalförpackning"],"Request refund":[null,"Begär återbetalning"],"Reprint":[null,"Skriv ut igen"],"Paper size":[null,"Pappersstorlek"],"No packages selected":[null,"Inga paket valda"],"Move":[null,"Flytta"],"Move item":[null,"Flytta vara"],"Increase the rates calculated by the carrier to account for packaging and handling costs. You can also add a negative amount to save your customers money.":[null,""],"Create new label":[null,"Skapa ny etikett"],"All packages selected":[null,"Alla paket valda"],"Add":[null,"Lägg till"],"Add item":[null,""],"Add a credit card":[null,"Lägg till ett kreditkort"],"#%d - [Deleted product]":[null,"#%d - [Ta bort produkt]"],"#%1$d - %2$s":[null,"#%1$d - %2$s"],"<a href=\"%s\">Support</a>":[null,"<a href=\"%s\">Support</a>"],"There was an error installing Jetpack. Please try installing it manually.":[null,"Det var det fel att installera JetPack. Prova installera det manuellt."],"Shipping Labels":[null,"Fraktetiketter"],"https://woocommerce.com/":[null,"https://woocommerce.com/"],"Phone":[null,"Telefon"],"Connect":[null,"Anslut"],"Save Settings":[null,"Spara inställningar"],"Your changes have been saved.":[null,"Dina ändringar har sparats."],"There was a problem with one or more entries. Please fix the errors below and try saving again.":[null,""],"Expand":[null,"Expandera"],"Dismiss":[null,"Avfärda"],"You have unsaved changes.":[null,"Du har osparade ändringar."],"Type of package":[null,"Typ av paket"],"Add package":["Add packages","Lägg till paket",""],"Invalid value.":[null,"Ogiltigt värde."],"This field is required":[null,"Detta fält är obligatoriskt"],"Package name":[null,"Paketnamn"],"This field must be unique":[null,"Detta fält måste vara unikt"],"Unable to save your shipping packages. Please try again.":[null,""],"Save changes":[null,"Spara ändringar"],"Untitled":[null,"Utan rubrik"],"Dimensions (L x W x H)":[null,"Dimensioner (L x B x H)"],"All services selected":[null,"Alla tjänster valda"],"Expand Services":[null,"Expandera tjänster"],"Service":[null,"Tjänst"],"Price adjustment":[null,"Prisjustering"],"Saved Packages":[null,"Sparade paket"],"Tracking":[null,"Spårning"],"Create shipping label":["Create shipping labels","Skapa fraktetikett",""],"Name":[null,"Namn"],"Company":[null,"Företag"],"Address":[null,"Adress"],"City":[null,"Ort"],"State":[null,"Delstat"],"Country":[null,"Land"],"Invalid address":[null,"Ogiltig adress"],"Origin address":[null,"Ursprungsadress"],"Destination address":[null,"Destinations adress"],"We have slightly modified the address entered. If correct, please use the suggested address to ensure accurate delivery.":[null,""],"Address entered":[null,"Adress angiven"],"Edit address":[null,"Redigera adress"],"Suggested address":[null,"Föreslagen adress"],"Use selected address":[null,"Använd vald adress"],"Use these packages":[null,"Använd dessa paket"],"The service and rate chosen by the customer at checkout is not available. Please choose another.":[null,""],"Request a refund":[null,"Begär en återbetalning"],"You can request a refund for a shipping label that has not been used to ship a package. It will take at least %(days)s days to process.":[null,""],"Purchase date":[null,"Inköpsdatum"],"Amount eligible for refund":[null,"Belopp berättigat till återbetalning"],"Reprint shipping label":[null,""],"If there was a printing error when you purchased the label, you can print it again.":[null,"Om det uppstod ett utskriftsfel när du köpte etiketten kan du skriva ut den igen."],"NOTE: If you already used the label in a package, printing and using it again is a violation of our terms of service and may result in criminal charges.":[null,"OBS! Om du redan använt etiketten i ett paket, är det en kränkning av våra användarvillkor och det kan leda till straffavgifter."],"Print":[null,"Skriv ut"],"Cancel":[null,"Avbryt"],"N/A":[null,"N/A"],"More":[null,"Mer"],"Invalid PDF request.":[null,"Ogiltig PDF-begäran."],"Unknown package":[null,"Okänt paket"],"Individual packaging":[null,""],"Unable to update service settings. Validation failed. %s":[null,"Det gick inte att uppdatera serviceinställningarna. Validering misslyckades. %s"],"Unable to update service settings. The form data could not be read.":[null,"Det gick inte att uppdatera serviceinställningarna. Formulärdata kunde inte läsas."],"Unable to update service settings. Form data is missing service ID.":[null,""],"Unable to update settings. The form data could not be read.":[null,"Det gick inte att uppdatera inställningarna. Formulärdata kunde inte läsas."],"Unable to update settings. %s":[null,"Det gick inte att uppdatera inställningarna. %s"],"Packaging":[null,""],"Section not loading? Visit the <a href=\"%s\">status page</a> for troubleshooting steps.":[null,""],"Note: Jetpack development mode is enabled on this site. This site will not be able to obtain payment methods from WooCommerce Shipping & Tax production servers.":[null,""],"Note: Jetpack is connected, but development mode is also enabled on this site. Please disable development mode.":[null,"Obs! Jetpack är ansluten, men utvecklingsläget är också aktiverat på denna webbplats. Inaktivera utvecklingsläget."],"Shipping Label":[null,"Fraktetikett"],"yd":[null,"yd"],"in":[null,"in"],"mm":[null,"mm"],"cm":[null,"cm"],"m":[null,"m"],"oz":[null,"oz"],"lbs":[null,"lbs"],"g":[null,"g"],"kg":[null,"kg"],"An invalid service ID was received.":[null,""],"An invalid service instance was received.":[null,""],"Rest of the World":[null,"Resten av världen"],"Support":[null,"Support"],"Debug":[null,"Felsök"],"Services":[null,"Tjänster"],"Need help?":[null,"Behöver du hjälp?"],"Log is empty":[null,"Loggen är tom"],"Disabled":[null,"Inaktiverad"],"Enabled":[null,"Aktiverad"],"%s Shipping Zone":[null,"%s fraktzon"],"The most recent rate request failed":[null,""],"The most recent rate request was successful":[null,""],"No rate requests have yet been made for this service":[null,""],"Setup for this service has not yet been completed":[null,"Inställningen för denna tjänst har ännu inte slutförts"],"Service data is up-to-date":[null,""],"Service data was found, but is more than one day old":[null,""],"Service data was found, but is more than three days old":[null,""],"Service data found, but may be out of date":[null,""],"No service data available":[null,""],"Jetpack":[null,"Jetpack"],"Jetpack %s is connected and working correctly":[null,"Jetpack %s är ansluten och fungerar korrekt"],"This is a Jetpack staging site":[null,""],"Jetpack is not connected to WordPress.com. Make sure the Jetpack plugin is installed, activated, and connected.":[null,"Jetpack är inte ansluten till WordPress.com. Se till att tillägget Jetpack är installerat, aktiverat och anslutet."],"Jetpack %1$s or higher is required (You are running %2$s)":[null,""],"Please install and activate the Jetpack plugin, version %s or higher":[null,"Installera och aktivera tillägget Jetpack, version %s eller högre"],"WooCommerce":[null,"WooCommerce"],"WooCommerce %s is configured correctly":[null,"WooCommerce %s är korrekt konfigurerad"],"Please set Base Location in WooCommerce Settings > General":[null,"Ställ in basplats i WooCommerce-inställningar > Allm