solidus_core 3.1.6 → 3.2.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (96) hide show
  1. checksums.yaml +4 -4
  2. data/app/helpers/spree/products_helper.rb +1 -1
  3. data/app/models/concerns/spree/active_storage_adapter/attachment.rb +23 -10
  4. data/app/models/concerns/spree/active_storage_adapter.rb +1 -1
  5. data/app/models/concerns/spree/user_address_book.rb +11 -1
  6. data/app/models/concerns/spree/user_methods.rb +20 -1
  7. data/app/models/spree/adjustment.rb +1 -0
  8. data/app/models/spree/carton.rb +1 -1
  9. data/app/models/spree/log_entry.rb +74 -1
  10. data/app/models/spree/option_value.rb +9 -0
  11. data/app/models/spree/order.rb +68 -29
  12. data/app/models/spree/order_contents.rb +2 -1
  13. data/app/models/spree/order_inventory.rb +1 -1
  14. data/app/models/spree/order_merger.rb +2 -2
  15. data/app/models/spree/order_taxation.rb +6 -4
  16. data/app/models/spree/order_updater.rb +4 -3
  17. data/app/models/spree/payment_method.rb +11 -0
  18. data/app/models/spree/price.rb +1 -1
  19. data/app/models/spree/product/scopes.rb +21 -3
  20. data/app/models/spree/product.rb +1 -1
  21. data/app/models/spree/promotion/actions/create_adjustment.rb +4 -0
  22. data/app/models/spree/promotion/actions/create_item_adjustments.rb +5 -6
  23. data/app/models/spree/promotion/rules/product.rb +20 -8
  24. data/app/models/spree/promotion/rules/store.rb +4 -0
  25. data/app/models/spree/promotion/rules/taxon.rb +4 -0
  26. data/app/models/spree/promotion/rules/user.rb +4 -0
  27. data/app/models/spree/promotion.rb +34 -23
  28. data/app/models/spree/promotion_action.rb +4 -0
  29. data/app/models/spree/promotion_code.rb +8 -4
  30. data/app/models/spree/promotion_handler/cart.rb +26 -6
  31. data/app/models/spree/promotion_rule.rb +5 -0
  32. data/app/models/spree/reimbursement.rb +2 -2
  33. data/app/models/spree/return_item.rb +1 -2
  34. data/app/models/spree/stock/allocator/on_hand_first.rb +2 -2
  35. data/app/models/spree/stock/quantifier.rb +12 -8
  36. data/app/models/spree/stock/simple_coordinator.rb +2 -1
  37. data/app/models/spree/tax/item_tax.rb +3 -2
  38. data/app/models/spree/tax/order_tax.rb +3 -1
  39. data/app/models/spree/tax/tax_location.rb +4 -7
  40. data/app/models/spree/tax_rate.rb +2 -0
  41. data/app/models/spree/variant.rb +1 -1
  42. data/app/subscribers/spree/mailer_subscriber.rb +4 -0
  43. data/app/subscribers/spree/order_mailer_subscriber.rb +35 -0
  44. data/config/i18n-tasks.yml +134 -0
  45. data/config/locales/en.yml +391 -257
  46. data/db/migrate/20201127212108_add_type_before_removal_to_spree_payment_methods.rb +7 -0
  47. data/db/migrate/20220317165036_set_promotions_with_any_policy_to_all_if_possible.rb +20 -0
  48. data/lib/generators/solidus/install/install_generator/bundler_context.rb +97 -0
  49. data/lib/generators/solidus/install/install_generator/install_frontend.rb +53 -0
  50. data/lib/generators/solidus/install/install_generator/support_solidus_frontend_extraction.rb +48 -0
  51. data/lib/generators/solidus/install/install_generator.rb +58 -50
  52. data/lib/generators/solidus/install/templates/config/initializers/spree.rb.tt +6 -16
  53. data/lib/generators/solidus/install/templates/vendor/assets/javascripts/spree/backend/all.js +2 -2
  54. data/lib/spree/app_configuration.rb +43 -0
  55. data/lib/spree/bus.rb +20 -0
  56. data/lib/spree/core/controller_helpers/auth.rb +9 -1
  57. data/lib/spree/core/controller_helpers/current_host.rb +1 -3
  58. data/lib/spree/core/controller_helpers/order.rb +10 -10
  59. data/lib/spree/core/controller_helpers/search.rb +1 -1
  60. data/lib/spree/core/engine.rb +39 -8
  61. data/lib/spree/core/state_machines/order.rb +1 -1
  62. data/lib/spree/core/stock_configuration.rb +18 -0
  63. data/lib/spree/core/validators/email.rb +3 -1
  64. data/lib/spree/core/version.rb +2 -2
  65. data/lib/spree/core.rb +20 -0
  66. data/lib/spree/event/subscriber_registry.rb +4 -6
  67. data/lib/spree/event.rb +1 -1
  68. data/lib/spree/migrations.rb +1 -1
  69. data/lib/spree/permission_sets/default_customer.rb +8 -1
  70. data/lib/spree/permitted_attributes.rb +4 -4
  71. data/lib/spree/preferences/configuration.rb +34 -12
  72. data/lib/spree/preferences/preferable_class_methods.rb +1 -1
  73. data/lib/spree/preferences/preference_differentiator.rb +2 -1
  74. data/lib/spree/preferences/static_model_preferences.rb +0 -2
  75. data/lib/spree/rails_compatibility.rb +99 -0
  76. data/lib/spree/testing_support/bus_helpers.rb +101 -0
  77. data/lib/spree/testing_support/common_rake.rb +47 -19
  78. data/lib/spree/testing_support/dummy_app/assets/javascripts/spree/backend/all.js +1 -1
  79. data/lib/spree/testing_support/dummy_app/assets/javascripts/spree/frontend/all.js +1 -1
  80. data/lib/spree/testing_support/dummy_app.rb +6 -2
  81. data/lib/spree/testing_support/factories/address_factory.rb +7 -2
  82. data/lib/spree/testing_support/factories/inventory_unit_factory.rb +1 -1
  83. data/lib/spree/testing_support/factories/order_factory.rb +8 -4
  84. data/lib/spree/testing_support/factories/product_factory.rb +4 -1
  85. data/lib/spree/testing_support/factories/store_credit_factory.rb +4 -4
  86. data/lib/spree/testing_support/factories/user_factory.rb +6 -0
  87. data/lib/spree/testing_support/factory_bot.rb +1 -1
  88. data/lib/spree/testing_support/order_walkthrough.rb +5 -4
  89. data/lib/spree/testing_support/silence_deprecations.rb +9 -0
  90. data/lib/tasks/payment_method.rake +29 -0
  91. data/lib/tasks/solidus/delete_prices_with_nil_amount.rake +2 -2
  92. data/lib/tasks/solidus/split_promotions_with_any_match_policy.rake +33 -0
  93. data/solidus_core.gemspec +7 -2
  94. metadata +90 -24
  95. data/lib/generators/solidus/install/templates/vendor/assets/javascripts/spree/frontend/all.js +0 -10
  96. data/lib/generators/solidus/install/templates/vendor/assets/stylesheets/spree/frontend/all.css +0 -9
@@ -12,13 +12,11 @@ en:
12
12
  spree/fulfilment_changer:
13
13
  attributes:
14
14
  current_shipment:
15
- can_not_have_backordered_inventory_units: has backordered inventory
16
- units
15
+ can_not_have_backordered_inventory_units: has backordered inventory units
17
16
  has_already_been_shipped: has already been shipped
18
17
  desired_shipment:
19
18
  can_not_transfer_within_same_shipment: can not be same as current shipment
20
- not_enough_stock_at_desired_location: not enough stock in desired stock
21
- location
19
+ not_enough_stock_at_desired_location: not enough stock in desired stock location
22
20
  activerecord:
23
21
  attributes:
24
22
  spree/address:
@@ -94,8 +92,8 @@ en:
94
92
  quantity: Quantity
95
93
  total: Total price
96
94
  spree/log_entry:
97
- details: Message
98
95
  created_at: Date/Time
96
+ details: Message
99
97
  spree/option_type:
100
98
  name: Name
101
99
  presentation: Presentation
@@ -145,8 +143,8 @@ en:
145
143
  response_code: Transaction ID
146
144
  state: State
147
145
  spree/payment_capture_event:
148
- created_at: Date/Time
149
146
  amount: Amount
147
+ created_at: Date/Time
150
148
  spree/payment_method:
151
149
  active: Active
152
150
  auto_capture: Auto Capture
@@ -213,8 +211,7 @@ en:
213
211
  description: Must be the customer's first order
214
212
  spree/promotion/rules/first_repeat_purchase_since:
215
213
  description: Available only to user who have not purchased in a while
216
- form_text: 'Apply this promotion to users whose last order was more than X
217
- days ago: '
214
+ form_text: 'Apply this promotion to users whose last order was more than X days ago: '
218
215
  spree/promotion/rules/item_total:
219
216
  description: Order total meets these criteria
220
217
  spree/promotion/rules/landing_page:
@@ -305,15 +302,15 @@ en:
305
302
  name: Name
306
303
  spree/shipping_method:
307
304
  admin_name: Internal Name
305
+ available_to_all: Available to all stock locations
308
306
  available_to_users: Available to users
309
307
  carrier: Carrier
310
308
  code: Code
311
309
  display_on: Display
312
310
  name: Name
313
311
  service_level: Service Level
314
- tracking_url: Tracking URL
315
312
  stock_locations: Stock Locations
316
- available_to_all: Available to all stock locations
313
+ tracking_url: Tracking URL
317
314
  spree/shipping_rate:
318
315
  amount: Amount
319
316
  label: Label
@@ -349,12 +346,12 @@ en:
349
346
  variant: Variant
350
347
  spree/store:
351
348
  available_locales: Locales Available in the Storefront
349
+ bcc_email: BCC Email
352
350
  cart_tax_country_iso: Tax Country for Empty Carts
353
351
  code: Slug
354
352
  default: Default
355
353
  default_currency: Default Currency
356
354
  mail_from_address: Mail From Address
357
- bcc_email: BCC Email
358
355
  meta_description: Meta Description
359
356
  meta_keywords: Meta Keywords
360
357
  name: Site Name
@@ -365,7 +362,7 @@ en:
365
362
  amount_authorized: Amount Authorized
366
363
  amount_credited: Amount Credited
367
364
  amount_used: Amount Used
368
- category_id: Credit Type
365
+ category_id: Category
369
366
  created_at: Issued On
370
367
  created_by_id: Created By
371
368
  invalidated_at: Invalidated
@@ -434,17 +431,14 @@ en:
434
431
  spree/calculator/tiered_flat_rate:
435
432
  attributes:
436
433
  base:
437
- keys_should_be_positive_number: Tier keys should all be numbers larger
438
- than 0
434
+ keys_should_be_positive_number: Tier keys should all be numbers larger than 0
439
435
  preferred_tiers:
440
436
  should_be_hash: should be a hash
441
437
  spree/calculator/tiered_percent:
442
438
  attributes:
443
439
  base:
444
- keys_should_be_positive_number: Tier keys should all be numbers larger
445
- than 0
446
- values_should_be_percent: Tier values should all be percentages between
447
- 0% and 100%
440
+ keys_should_be_positive_number: Tier keys should all be numbers larger than 0
441
+ values_should_be_percent: Tier values should all be percentages between 0% and 100%
448
442
  preferred_tiers:
449
443
  should_be_hash: should be a hash
450
444
  spree/classification:
@@ -459,15 +453,14 @@ en:
459
453
  spree/inventory_unit:
460
454
  attributes:
461
455
  base:
462
- cannot_destroy_shipment_state: Cannot destroy an inventory unit for
463
- a %{state} shipment
456
+ cannot_destroy_shipment_state: Cannot destroy an inventory unit for a %{state} shipment
464
457
  state:
465
458
  cannot_destroy: Cannot destroy a %{state} inventory unit
466
459
  spree/line_item:
467
460
  attributes:
468
461
  price:
469
- not_a_number: is not valid
470
462
  does_not_match_order_currency: Line item price currency must match order currency!
463
+ not_a_number: is not valid
471
464
  spree/price:
472
465
  attributes:
473
466
  currency:
@@ -487,21 +480,17 @@ en:
487
480
  spree/reimbursement:
488
481
  attributes:
489
482
  base:
490
- return_items_order_id_does_not_match: One or more of the return items
491
- specified do not belong to the same order as the reimbursement.
483
+ return_items_order_id_does_not_match: One or more of the return items specified do not belong to the same order as the reimbursement.
492
484
  spree/return_item:
493
485
  attributes:
494
486
  inventory_unit:
495
- other_completed_return_item_exists: "%{inventory_unit_id} has already
496
- been taken by return item %{return_item_id}"
487
+ other_completed_return_item_exists: "%{inventory_unit_id} has already been taken by return item %{return_item_id}"
497
488
  reimbursement:
498
- cannot_be_associated_unless_accepted: cannot be associated to a return
499
- item that is not accepted.
489
+ cannot_be_associated_unless_accepted: cannot be associated to a return item that is not accepted.
500
490
  spree/shipment:
501
491
  attributes:
502
492
  base:
503
- cannot_remove_items_shipment_state: Cannot remove items from a %{state}
504
- shipment
493
+ cannot_remove_items_shipment_state: Cannot remove items from a %{state} shipment
505
494
  state:
506
495
  cannot_destroy: Cannot destroy a %{state} shipment
507
496
  spree/store:
@@ -803,8 +792,6 @@ en:
803
792
  add_option_value: Add Option Value
804
793
  add_product: Add Product
805
794
  add_product_properties: Add Product Properties
806
- add_variant_properties: Add Variant Properties
807
- applies_to_all_variant_properties: Applies to all Variant Properties above
808
795
  add_rule_of_type: Add rule of type
809
796
  add_state: Add State
810
797
  add_stock: Add Stock
@@ -854,8 +841,7 @@ en:
854
841
  payments:
855
842
  source_forms:
856
843
  storecredit:
857
- not_supported: Creating store credit payments via the admin is not currently
858
- supported.
844
+ not_supported: Creating store credit payments via the admin is not currently supported.
859
845
  prices:
860
846
  any_country: Any Country
861
847
  edit:
@@ -864,8 +850,17 @@ en:
864
850
  amount_greater_than: Amount greater than
865
851
  amount_less_than: Amount less than
866
852
  new_price: New Price
853
+ master_variant_table:
854
+ master_variant: Master Variant Prices
867
855
  new:
868
856
  new_price: New Price
857
+ table:
858
+ variant_pricing: Variant Prices
859
+ promotion_status:
860
+ active: Active
861
+ expired: Expired
862
+ inactive: Inactive
863
+ not_started: Not started
869
864
  promotions:
870
865
  actions:
871
866
  calculator_label: Calculated by
@@ -882,14 +877,9 @@ en:
882
877
  expires_at_placeholder: Never
883
878
  general: General
884
879
  starts_at_placeholder: Immediately
885
- promotion_status:
886
- active: Active
887
- expired: Expired
888
- inactive: Inactive
889
- not_started: Not started
890
880
  shipping_methods:
891
881
  form:
892
- stock_locations_placeholder: 'Choose stock locations'
882
+ stock_locations_placeholder: Choose stock locations
893
883
  stock_locations:
894
884
  form:
895
885
  address: Address
@@ -915,10 +905,9 @@ en:
915
905
  amount_used_cannot_be_greater: cannot be greater than the credited amount
916
906
  amount_used_not_zero: is greater than zero. Can not delete store credit
917
907
  cannot_be_modified: cannot be modified
918
- cannot_change_used_store_credit: Store credit that has been claimed cannot
919
- be changed
920
- update_reason_required: A reason for the change must be selected
908
+ cannot_change_used_store_credit: Store credit that has been claimed cannot be changed
921
909
  store_credit_reason_required: A reason for the change must be selected
910
+ update_reason_required: A reason for the change must be selected
922
911
  history: Store credit history
923
912
  invalidate_store_credit: Invalidating store credit
924
913
  invalidated: Invalidated
@@ -983,10 +972,8 @@ en:
983
972
  edit:
984
973
  api_access: API Access
985
974
  clear_key: Clear key
986
- confirm_clear_key: Are you sure you want to clear this user's API key? It
987
- will invalidate the existing key.
988
- confirm_regenerate_key: Are you sure you want to regenerate this user's
989
- API key? It will invalidate the existing key.
975
+ confirm_clear_key: Are you sure you want to clear this user's API key? It will invalidate the existing key.
976
+ confirm_regenerate_key: Are you sure you want to regenerate this user's API key? It will invalidate the existing key.
990
977
  generate_key: Generate API key
991
978
  key: Key
992
979
  no_key: No key
@@ -998,12 +985,15 @@ en:
998
985
  edit_variant: Edit Variant
999
986
  form:
1000
987
  dimensions: Dimensions
988
+ options: Options
1001
989
  pricing: Pricing
1002
- pricing_hint: These values are populated from the product details page and
1003
- can be overridden below
990
+ pricing_hint: These values are populated from the product details page and can be overridden below
991
+ properties: Properties
1004
992
  use_product_tax_category: Use Product Tax Category
1005
993
  new:
1006
994
  new_variant: New Variant
995
+ table:
996
+ no_variants_found: No variants found for '%{term}'
1007
997
  table_filter:
1008
998
  show_deleted: Show Deleted Variants
1009
999
  administration: Administration
@@ -1026,6 +1016,7 @@ en:
1026
1016
  analytics_desc_list_4: It's completely free!
1027
1017
  analytics_trackers: Analytics Trackers
1028
1018
  and: and
1019
+ applies_to_all_variant_properties: Applies to all Variant Properties above
1029
1020
  apply_code: Apply Code
1030
1021
  approve: Approve
1031
1022
  approved_at: Approved at
@@ -1083,13 +1074,13 @@ en:
1083
1074
  base_amount: Base Amount
1084
1075
  base_percent: Base Percent
1085
1076
  bill_address: Bill Address
1077
+ bill_address_required: Valid billing address required
1086
1078
  billing: Billing
1087
1079
  billing_address: Billing Address
1088
1080
  both: Both
1089
1081
  calculated_reimbursements: Calculated Reimbursements
1090
1082
  calculator: Calculator
1091
- calculator_settings_warning: If you are changing the calculator type or preference
1092
- source, you must save first before you can edit the calculator settings
1083
+ calculator_settings_warning: If you are changing the calculator type or preference source, you must save first before you can edit the calculator settings
1093
1084
  cancel: Cancel
1094
1085
  cancel_inventory: Cancel Items
1095
1086
  canceled: Canceled
@@ -1097,19 +1088,14 @@ en:
1097
1088
  canceler: Canceler
1098
1089
  cancellation: Cancellation
1099
1090
  cannot_create_payment_link: Please define some payment methods first.
1100
- cannot_create_payment_without_payment_methods_html: You cannot create a payment
1101
- for an order without any payment methods defined. %{link}
1091
+ cannot_create_payment_without_payment_methods_html: You cannot create a payment for an order without any payment methods defined. %{link}
1102
1092
  cannot_create_returns: Cannot create returns as this order has no shipped units.
1103
1093
  cannot_edit_orders: You may only edit your current shopping cart.
1104
1094
  cannot_perform_operation: Cannot perform requested operation
1105
- cannot_rebuild_shipments_order_completed: Cannot rebuild shipments for a completed
1106
- order.
1107
- cannot_rebuild_shipments_shipments_not_pending: Cannot rebuild shipments for an
1108
- order with non-pending shipments.
1109
- cannot_set_shipping_method_without_address: Cannot set shipping method until customer
1110
- details are provided.
1111
- cannot_update_email: You do not have access to update this user's email address.
1112
- <br />Please contact a superuser if you need to perform this action.
1095
+ cannot_rebuild_shipments_order_completed: Cannot rebuild shipments for a completed order.
1096
+ cannot_rebuild_shipments_shipments_not_pending: Cannot rebuild shipments for an order with non-pending shipments.
1097
+ cannot_set_shipping_method_without_address: Cannot set shipping method until customer details are provided.
1098
+ cannot_update_email: You do not have access to update this user's email address. <br />Please contact a superuser if you need to perform this action.
1113
1099
  capture: Capture
1114
1100
  capture_events: Capture events
1115
1101
  card_code: Card Code
@@ -1140,8 +1126,7 @@ en:
1140
1126
  city: City
1141
1127
  clear_cache: Clear Cache
1142
1128
  clear_cache_ok: Cache was flushed
1143
- clear_cache_warning: Clearing cache will temporarily reduce the performance of
1144
- your store.
1129
+ clear_cache_warning: Clearing cache will temporarily reduce the performance of your store.
1145
1130
  clone: Clone
1146
1131
  close: Close
1147
1132
  closed: Closed
@@ -1159,37 +1144,278 @@ en:
1159
1144
  continue_shopping: Continue shopping
1160
1145
  cost_currency: Cost Currency
1161
1146
  cost_price: Cost Price
1162
- could_not_connect_to_jirafe: Could not connect to Jirafe to sync data. This will
1163
- be automatically retried later.
1147
+ could_not_connect_to_jirafe: Could not connect to Jirafe to sync data. This will be automatically retried later.
1164
1148
  could_not_create_customer_return: Could not create customer return
1165
- could_not_create_stock_movement: There was a problem saving this stock movement.
1166
- Please try again.
1149
+ could_not_create_stock_movement: There was a problem saving this stock movement. Please try again.
1167
1150
  count_on_hand: Count On Hand
1168
1151
  countries: Countries
1169
1152
  country: Country
1170
1153
  country_based: Country Based
1171
1154
  country_name: Name
1172
1155
  country_names:
1156
+ AD: Andorra
1157
+ AE: United Arab Emirates
1158
+ AF: Afghanistan
1159
+ AG: Antigua and Barbuda
1160
+ AI: Anguilla
1161
+ AL: Albania
1162
+ AM: Armenia
1163
+ AO: Angola
1164
+ AQ: Antarctica
1165
+ AR: Argentina
1166
+ AS: American Samoa
1167
+ AT: Austria
1168
+ AU: Australia
1169
+ AW: Aruba
1170
+ AX: Åland Islands
1171
+ AZ: Azerbaijan
1172
+ BA: Bosnia and Herzegovina
1173
+ BB: Barbados
1174
+ BD: Bangladesh
1175
+ BE: Belgium
1176
+ BF: Burkina Faso
1177
+ BG: Bulgaria
1178
+ BH: Bahrain
1179
+ BI: Burundi
1180
+ BJ: Benin
1181
+ BL: Saint Barthélemy
1182
+ BM: Bermuda
1183
+ BN: Brunei Darussalam
1184
+ BO: Bolivia, Plurinational State of
1185
+ BQ: Bonaire, Sint Eustatius and Saba
1186
+ BR: Brazil
1187
+ BS: Bahamas
1188
+ BT: Bhutan
1189
+ BV: Bouvet Island
1190
+ BW: Botswana
1191
+ BY: Belarus
1192
+ BZ: Belize
1173
1193
  CA: Canada
1194
+ CC: Cocos (Keeling) Islands
1195
+ CD: Congo, The Democratic Republic of the
1196
+ CF: Central African Republic
1197
+ CG: Congo
1198
+ CH: Switzerland
1199
+ CI: Côte d'Ivoire
1200
+ CK: Cook Islands
1201
+ CL: Chile
1202
+ CM: Cameroon
1203
+ CN: China
1204
+ CO: Colombia
1205
+ CR: Costa Rica
1206
+ CU: Cuba
1207
+ CV: Cabo Verde
1208
+ CW: Curaçao
1209
+ CX: Christmas Island
1210
+ CY: Cyprus
1211
+ CZ: Czechia
1212
+ DE: Germany
1213
+ DJ: Djibouti
1214
+ DK: Denmark
1215
+ DM: Dominica
1216
+ DO: Dominican Republic
1217
+ DZ: Algeria
1218
+ EC: Ecuador
1219
+ EE: Estonia
1220
+ EG: Egypt
1221
+ EH: Western Sahara
1222
+ ER: Eritrea
1223
+ ES: Spain
1224
+ ET: Ethiopia
1225
+ FI: Finland
1226
+ FJ: Fiji
1227
+ FK: Falkland Islands (Malvinas)
1228
+ FM: Micronesia, Federated States of
1229
+ FO: Faroe Islands
1230
+ FR: France
1174
1231
  FRA: France
1232
+ GA: Gabon
1233
+ GB: United Kingdom
1234
+ GD: Grenada
1235
+ GE: Georgia
1236
+ GF: French Guiana
1237
+ GG: Guernsey
1238
+ GH: Ghana
1239
+ GI: Gibraltar
1240
+ GL: Greenland
1241
+ GM: Gambia
1242
+ GN: Guinea
1243
+ GP: Guadeloupe
1244
+ GQ: Equatorial Guinea
1245
+ GR: Greece
1246
+ GS: South Georgia and the South Sandwich Islands
1247
+ GT: Guatemala
1248
+ GU: Guam
1249
+ GW: Guinea-Bissau
1250
+ GY: Guyana
1251
+ HK: Hong Kong
1252
+ HM: Heard Island and McDonald Islands
1253
+ HN: Honduras
1254
+ HR: Croatia
1255
+ HT: Haiti
1256
+ HU: Hungary
1257
+ ID: Indonesia
1258
+ IE: Ireland
1259
+ IL: Israel
1260
+ IM: Isle of Man
1261
+ IN: India
1262
+ IO: British Indian Ocean Territory
1263
+ IQ: Iraq
1264
+ IR: Iran, Islamic Republic of
1265
+ IS: Iceland
1266
+ IT: Italy
1175
1267
  ITA: Italy
1268
+ JE: Jersey
1269
+ JM: Jamaica
1270
+ JO: Jordan
1271
+ JP: Japan
1272
+ KE: Kenya
1273
+ KG: Kyrgyzstan
1274
+ KH: Cambodia
1275
+ KI: Kiribati
1276
+ KM: Comoros
1277
+ KN: Saint Kitts and Nevis
1278
+ KP: Korea, Democratic People's Republic of
1279
+ KR: Korea, Republic of
1280
+ KW: Kuwait
1281
+ KY: Cayman Islands
1282
+ KZ: Kazakhstan
1283
+ LA: Lao People's Democratic Republic
1284
+ LB: Lebanon
1285
+ LC: Saint Lucia
1286
+ LI: Liechtenstein
1287
+ LK: Sri Lanka
1288
+ LR: Liberia
1289
+ LS: Lesotho
1290
+ LT: Lithuania
1291
+ LU: Luxembourg
1292
+ LV: Latvia
1293
+ LY: Libya
1294
+ MA: Morocco
1295
+ MC: Monaco
1296
+ MD: Moldova, Republic of
1297
+ ME: Montenegro
1298
+ MF: Saint Martin (French part)
1299
+ MG: Madagascar
1300
+ MH: Marshall Islands
1301
+ MK: North Macedonia
1302
+ ML: Mali
1303
+ MM: Myanmar
1304
+ MN: Mongolia
1305
+ MO: Macao
1306
+ MP: Northern Mariana Islands
1307
+ MQ: Martinique
1308
+ MR: Mauritania
1309
+ MS: Montserrat
1310
+ MT: Malta
1311
+ MU: Mauritius
1312
+ MV: Maldives
1313
+ MW: Malawi
1314
+ MX: Mexico
1315
+ MY: Malaysia
1316
+ MZ: Mozambique
1317
+ NA: Namibia
1318
+ NC: New Caledonia
1319
+ NE: Niger
1320
+ NF: Norfolk Island
1321
+ NG: Nigeria
1322
+ NI: Nicaragua
1323
+ NL: Netherlands
1324
+ 'NO': Norway
1325
+ NP: Nepal
1326
+ NR: Nauru
1327
+ NU: Niue
1328
+ NZ: New Zealand
1329
+ OM: Oman
1330
+ PA: Panama
1331
+ PE: Peru
1332
+ PF: French Polynesia
1333
+ PG: Papua New Guinea
1334
+ PH: Philippines
1335
+ PK: Pakistan
1336
+ PL: Poland
1337
+ PM: Saint Pierre and Miquelon
1338
+ PN: Pitcairn
1339
+ PR: Puerto Rico
1340
+ PS: Palestine, State of
1341
+ PT: Portugal
1342
+ PW: Palau
1343
+ PY: Paraguay
1344
+ QA: Qatar
1345
+ RE: Réunion
1346
+ RO: Romania
1347
+ RS: Serbia
1348
+ RU: Russia
1349
+ RW: Rwanda
1350
+ SA: Saudi Arabia
1351
+ SB: Solomon Islands
1352
+ SC: Seychelles
1353
+ SD: Sudan
1354
+ SE: Sweden
1355
+ SG: Singapore
1356
+ SH: Saint Helena, Ascension and Tristan da Cunha
1357
+ SI: Slovenia
1358
+ SJ: Svalbard and Jan Mayen
1359
+ SK: Slovakia
1360
+ SL: Sierra Leone
1361
+ SM: San Marino
1362
+ SN: Senegal
1363
+ SO: Somalia
1364
+ SR: Suriname
1365
+ SS: South Sudan
1366
+ ST: Sao Tome and Principe
1367
+ SV: El Salvador
1368
+ SX: Sint Maarten (Dutch part)
1369
+ SY: Syrian Arab Republic
1370
+ SZ: Eswatini
1371
+ TC: Turks and Caicos Islands
1372
+ TD: Chad
1373
+ TF: French Southern Territories
1374
+ TG: Togo
1375
+ TH: Thailand
1376
+ TJ: Tajikistan
1377
+ TK: Tokelau
1378
+ TL: Timor-Leste
1379
+ TM: Turkmenistan
1380
+ TN: Tunisia
1381
+ TO: Tonga
1382
+ TR: Turkey
1383
+ TT: Trinidad and Tobago
1384
+ TV: Tuvalu
1385
+ TW: Taiwan
1386
+ TZ: Tanzania, United Republic of
1387
+ UA: Ukraine
1388
+ UG: Uganda
1389
+ UM: United States Minor Outlying Islands
1176
1390
  US: United States of America
1391
+ UY: Uruguay
1392
+ UZ: Uzbekistan
1393
+ VA: Holy See (Vatican City State)
1394
+ VC: Saint Vincent and the Grenadines
1395
+ VE: Venezuela, Bolivarian Republic of
1396
+ VG: Virgin Islands, British
1397
+ VI: Virgin Islands, U.S.
1398
+ VN: Vietnam
1399
+ VU: Vanuatu
1400
+ WF: Wallis and Futuna
1401
+ WS: Samoa
1402
+ YE: Yemen
1403
+ YT: Mayotte
1404
+ ZA: South Africa
1405
+ ZM: Zambia
1406
+ ZW: Zimbabwe
1177
1407
  coupon: Coupon
1178
1408
  coupon_code: Coupon code
1179
- coupon_code_already_applied: The coupon code has already been applied to this
1180
- order
1409
+ coupon_code_already_applied: The coupon code has already been applied to this order
1181
1410
  coupon_code_applied: The coupon code was successfully applied to your order.
1182
- coupon_code_better_exists: The previously applied coupon code results in a better
1183
- deal
1411
+ coupon_code_better_exists: The previously applied coupon code results in a better deal
1184
1412
  coupon_code_expired: The coupon code is expired
1185
1413
  coupon_code_max_usage: Coupon code usage limit exceeded
1186
1414
  coupon_code_not_eligible: This coupon code is not eligible for this order
1187
1415
  coupon_code_not_found: The coupon code you entered doesn't exist. Please try again.
1188
- coupon_code_not_present: The coupon code you are trying to remove is not present
1189
- on this order.
1416
+ coupon_code_not_present: The coupon code you are trying to remove is not present on this order.
1190
1417
  coupon_code_removed: The coupon code was successfully removed from this order.
1191
- coupon_code_unknown_error: This coupon code could not be applied to the cart at
1192
- this time.
1418
+ coupon_code_unknown_error: This coupon code could not be applied to the cart at this time.
1193
1419
  create: Create
1194
1420
  create_a_new_account: Create a new account
1195
1421
  create_one: Create One.
@@ -1220,10 +1446,8 @@ en:
1220
1446
  jirafe:
1221
1447
  app_id: App ID
1222
1448
  app_token: App Token
1223
- currently_unavailable: Jirafe is currently unavailable. Spree will automatically
1224
- connect to Jirafe once it is available.
1225
- explanation: The fields below may already be populated if you chose to register
1226
- with Jirafe from the admin dashboard.
1449
+ currently_unavailable: Jirafe is currently unavailable. Spree will automatically connect to Jirafe once it is available.
1450
+ explanation: The fields below may already be populated if you chose to register with Jirafe from the admin dashboard.
1227
1451
  header: Jirafe Analytics Settings
1228
1452
  site_id: Site ID
1229
1453
  token: Token
@@ -1239,8 +1463,7 @@ en:
1239
1463
  default_refund_amount: Default Refund Amount
1240
1464
  delete: Delete
1241
1465
  deleted_successfully: Deleted successfully
1242
- deleted_variants_present: Some line items in this order have products that are
1243
- no longer available.
1466
+ deleted_variants_present: Some line items in this order have products that are no longer available.
1244
1467
  delivery: Delivery
1245
1468
  depth: Depth
1246
1469
  description: Description
@@ -1280,27 +1503,17 @@ en:
1280
1503
  editing_zone: Editing Zone
1281
1504
  eligibility_errors:
1282
1505
  messages:
1283
- has_excluded_product: Your cart contains a product that prevents this coupon
1284
- code from being applied.
1285
- has_excluded_taxon: Your cart contains a product from an excluded category
1286
- that prevents this coupon code from being applied.
1287
- item_total_less_than: This coupon code can't be applied to orders less than
1288
- %{amount}.
1289
- item_total_less_than_or_equal: This coupon code can't be applied to orders
1290
- less than or equal to %{amount}.
1291
- item_total_doesnt_match_with_operator: This coupon code can't be applied to
1292
- orders %{operator} %{amount}.
1506
+ has_excluded_product: Your cart contains a product that prevents this coupon code from being applied.
1507
+ has_excluded_taxon: Your cart contains a product from an excluded category that prevents this coupon code from being applied.
1508
+ item_total_doesnt_match_with_operator: This coupon code can't be applied to orders %{operator} %{amount}.
1509
+ item_total_less_than: This coupon code can't be applied to orders less than %{amount}.
1510
+ item_total_less_than_or_equal: This coupon code can't be applied to orders less than or equal to %{amount}.
1293
1511
  limit_once_per_user: This coupon code can only be used once per user.
1294
- missing_product: This coupon code can't be applied because you don't have
1295
- all of the necessary products in your cart.
1296
- missing_taxon: You need to add a product from all applicable categories before
1297
- applying this coupon code.
1298
- no_applicable_products: You need to add an applicable product before applying
1299
- this coupon code.
1300
- no_matching_taxons: You need to add a product from an applicable category
1301
- before applying this coupon code.
1302
- no_user_or_email_specified: You need to login or provide your email before
1303
- applying this coupon code.
1512
+ missing_product: This coupon code can't be applied because you don't have all of the necessary products in your cart.
1513
+ missing_taxon: You need to add a product from all applicable categories before applying this coupon code.
1514
+ no_applicable_products: You need to add an applicable product before applying this coupon code.
1515
+ no_matching_taxons: You need to add a product from an applicable category before applying this coupon code.
1516
+ no_user_or_email_specified: You need to login or provide your email before applying this coupon code.
1304
1517
  no_user_specified: You need to login before applying this coupon code.
1305
1518
  not_first_order: This coupon code can only be applied to your first order.
1306
1519
  email: Email
@@ -1312,12 +1525,10 @@ en:
1312
1525
  error: error
1313
1526
  errors:
1314
1527
  messages:
1315
- cannot_delete_finalized_stock_location: Stock Location cannot be destroyed
1316
- if you have open stock transfers.
1528
+ cannot_delete_finalized_stock_location: Stock Location cannot be destroyed if you have open stock transfers.
1317
1529
  could_not_create_taxon: Could not create taxon
1318
1530
  no_payment_methods_available: No payment methods are configured for this environment
1319
- no_shipping_methods_available: No shipping methods available for selected
1320
- location, please change your address and try again.
1531
+ no_shipping_methods_available: No shipping methods available for selected location, please change your address and try again.
1321
1532
  errors_prohibited_this_record_from_being_saved:
1322
1533
  one: 1 error prohibited this record from being saved
1323
1534
  other: "%{count} errors prohibited this record from being saved"
@@ -1336,9 +1547,7 @@ en:
1336
1547
  user:
1337
1548
  signup: User signup
1338
1549
  exceptions:
1339
- count_on_hand_setter: Cannot set count_on_hand manually, as it is set automatically
1340
- by the recalculate_count_on_hand callback. Please use `update_column(:count_on_hand,
1341
- value)` instead.
1550
+ count_on_hand_setter: Cannot set count_on_hand manually, as it is set automatically by the recalculate_count_on_hand callback. Please use `update_column(:count_on_hand, value)` instead.
1342
1551
  exchange_for: Exchange For
1343
1552
  excl: excl.
1344
1553
  existing_shipments: Existing shipments
@@ -1389,78 +1598,45 @@ en:
1389
1598
  hide_out_of_stock: Hide out of stock
1390
1599
  hints:
1391
1600
  spree/calculator:
1392
- tax_rates: This is used to calculate both sales tax (United States-style taxes)
1393
- and value-added tax (VAT). Typically this calculator should be the only tax
1394
- calculator required by your store.
1395
- shipping_methods: This is used to calculate the shipping rates on a per order or
1396
- per package rate.
1397
- promotions: This is used to determine the promotional discount to be applied to an
1398
- order, an item, or shipping charges.
1601
+ promotions: This is used to determine the promotional discount to be applied to an order, an item, or shipping charges.
1602
+ shipping_methods: This is used to calculate the shipping rates on a per order or per package rate.
1603
+ tax_rates: This is used to calculate both sales tax (United States-style taxes) and value-added tax (VAT). Typically this calculator should be the only tax calculator required by your store.
1399
1604
  spree/price:
1400
- country: 'This determines in what country the price is valid.<br/>Default:
1401
- Any Country'
1402
- master_variant: Changing master variant prices will not change variant prices
1403
- below, but will be used to populate all new variants
1404
- options: These options are used to create variants in the variants table.
1405
- They can be changed in the variants tab
1605
+ country: 'This determines in what country the price is valid.<br/>Default: Any Country'
1606
+ master_variant: Changing master variant prices will not change variant prices below, but will be used to populate all new variants
1607
+ options: These options are used to create variants in the variants table. They can be changed in the variants tab
1406
1608
  spree/product:
1407
- available_on: This sets the availability date for the product. If this value
1408
- is not set, or it is set to a date in the future, then the product is not
1409
- available on the storefront.
1410
- discontinue_on: This sets the discontinue date for the product. If this value
1411
- is set to a date, then the product is not available on the storefront from
1412
- that day on anymore.
1413
- promotionable: 'This determines whether or not promotions can apply to this
1414
- product.<br/>Default: Checked'
1415
- shipping_category: 'This determines what kind of shipping this product requires.<br/>
1416
- Default: Default'
1417
- tax_category: 'This determines what kind of taxation is applied to this product.<br/>
1418
- Default: %{default_tax_category}'
1609
+ available_on: This sets the availability date for the product. If this value is not set, or it is set to a date in the future, then the product is not available on the storefront.
1610
+ discontinue_on: This sets the discontinue date for the product. If this value is set to a date, then the product is not available on the storefront from that day on anymore.
1611
+ promotionable: 'This determines whether or not promotions can apply to this product.<br/>Default: Checked'
1612
+ shipping_category: 'This determines what kind of shipping this product requires.<br/> Default: Default'
1613
+ tax_category: 'This determines what kind of taxation is applied to this product.<br/> Default: %{default_tax_category}'
1419
1614
  spree/promotion:
1420
- expires_at: This determines when the promotion expires. <br/> If no value
1421
- is specified, the promotion will never expire.
1422
- starts_at: This determines when the promotion can be applied to orders. <br/>
1423
- If no value is specified, the promotion will be immediately available.
1424
- promo_code_will_be_disabled: Selecting this option, promo codes will be disabled for this promotion
1425
- because all its rules / actions will be applied automatically to all orders.
1615
+ expires_at: This determines when the promotion expires. <br/> If no value is specified, the promotion will never expire.
1616
+ promo_code_will_be_disabled: Selecting this option, promo codes will be disabled for this promotion because all its rules / actions will be applied automatically to all orders.
1617
+ starts_at: This determines when the promotion can be applied to orders. <br/> If no value is specified, the promotion will be immediately available.
1426
1618
  spree/shipping_method:
1427
- available_to_all: Uncheck to select specific stock locations this
1428
- shipping method will be available in.
1619
+ available_to_all: Uncheck to select specific stock locations this shipping method will be available in.
1429
1620
  spree/stock_location:
1430
- active: 'This determines whether stock from this location can be used when
1431
- building packages.<br/> Default: Checked'
1432
- backorderable_default: 'When checked, stock items in this location will default
1433
- to allowing backorders.<br/> Default: Unchecked'
1434
- check_stock_on_transfer: 'When checked, inventory levels will be checked when
1435
- performing stock transfers.<br/> Default: Checked'
1436
- fulfillable: 'When unchecked, this indicates that items in this location don''t
1437
- require actual fulfilment. Stock will not be checked when shipping and emails
1438
- will not be sent.<br/> Default: Checked'
1439
- propagate_all_variants: 'When checked, this will create a stock item for each variant
1440
- in this stock location.<br/> Default: Checked'
1441
- restock_inventory: 'When checked, returned inventory can be added back to
1442
- this location''s stock levels.<br/> Default: checked'
1621
+ active: 'This determines whether stock from this location can be used when building packages.<br/> Default: Checked'
1622
+ backorderable_default: 'When checked, stock items in this location will default to allowing backorders.<br/> Default: Unchecked'
1623
+ check_stock_on_transfer: 'When checked, inventory levels will be checked when performing stock transfers.<br/> Default: Checked'
1624
+ fulfillable: 'When unchecked, this indicates that items in this location don''t require actual fulfilment. Stock will not be checked when shipping and emails will not be sent.<br/> Default: Checked'
1625
+ propagate_all_variants: 'When checked, this will create a stock item for each variant in this stock location.<br/> Default: Checked'
1626
+ restock_inventory: 'When checked, returned inventory can be added back to this location''s stock levels.<br/> Default: checked'
1443
1627
  spree/store:
1444
- available_locales: This determines which locales are available for your customers
1445
- to choose from in the storefront.
1446
- cart_tax_country_iso: "This determines which country is used for taxes on carts
1447
- (orders which don't yet have an address).<br/> Default: None."
1448
- code: 'An identifier for your store. Developers may need this value if you operate
1449
- multiple storefronts.'
1628
+ available_locales: This determines which locales are available for your customers to choose from in the storefront.
1629
+ cart_tax_country_iso: 'This determines which country is used for taxes on carts (orders which don''t yet have an address).<br/> Default: None.'
1630
+ code: An identifier for your store. Developers may need this value if you operate multiple storefronts.
1450
1631
  spree/tax_category:
1451
- is_default: 'When checked, this tax category will be selected by default when creating new products or variants.'
1632
+ is_default: When checked, this tax category will be selected by default when creating new products or variants.
1452
1633
  spree/tax_rate:
1453
- validity_period: This determines the validity period within which the tax
1454
- rate is valid and will be applied to eligible items. <br /> If no start
1455
- date value is specified, the tax rate will be immediately available. <br
1456
- /> If no expiration date value is specified, the tax rate will never expire
1634
+ validity_period: This determines the validity period within which the tax rate is valid and will be applied to eligible items. <br /> If no start date value is specified, the tax rate will be immediately available. <br /> If no expiration date value is specified, the tax rate will never expire
1457
1635
  spree/variant:
1458
1636
  deleted: Deleted Variant
1459
1637
  deleted_explanation: This variant was deleted on %{date}.
1460
- deleted_explanation_with_replacement: This variant was deleted on %{date}.
1461
- It has since been replaced by another with the same SKU.
1462
- tax_category: 'This determines what kind of taxation is applied to this variant.<br/>
1463
- Default: Use tax category of the product associated with this variant'
1638
+ deleted_explanation_with_replacement: This variant was deleted on %{date}. It has since been replaced by another with the same SKU.
1639
+ tax_category: 'This determines what kind of taxation is applied to this variant.<br/> Default: Use tax category of the product associated with this variant'
1464
1640
  home: Home
1465
1641
  i18n:
1466
1642
  available_locales: Available Locales
@@ -1479,15 +1655,12 @@ en:
1479
1655
  identifier: Identifier
1480
1656
  image: Image
1481
1657
  images: Images
1482
- implement_eligible_for_return: 'Must implement #eligible_for_return? for your
1483
- EligibilityValidator.'
1484
- implement_requires_manual_intervention: 'Must implement #requires_manual_intervention?
1485
- for your EligibilityValidator.'
1658
+ implement_eligible_for_return: 'Must implement #eligible_for_return? for your EligibilityValidator.'
1659
+ implement_requires_manual_intervention: 'Must implement #requires_manual_intervention? for your EligibilityValidator.'
1486
1660
  inactive: Inactive
1487
1661
  incl: incl.
1488
1662
  included_in_price: Included in Price
1489
- included_price_validation: cannot be selected unless you have set a Default Tax
1490
- Zone
1663
+ included_price_validation: cannot be selected unless you have set a Default Tax Zone
1491
1664
  incomplete: Incomplete
1492
1665
  info_number_of_skus_not_shown:
1493
1666
  one: and one other
@@ -1496,8 +1669,7 @@ en:
1496
1669
  instructions_to_reset_password: Please enter your email on the form below
1497
1670
  insufficient_stock: Insufficient stock available, only %{on_hand} remaining
1498
1671
  insufficient_stock_for_order: Insufficient stock for order
1499
- insufficient_stock_lines_present: Some line items in this order have insufficient
1500
- quantity.
1672
+ insufficient_stock_lines_present: Some line items in this order have insufficient quantity.
1501
1673
  intercept_email_address: Intercept Email Address
1502
1674
  intercept_email_instructions: Override email recipient and replace with this address.
1503
1675
  invalid_exchange_variant: Invalid exchange variant.
@@ -1509,7 +1681,7 @@ en:
1509
1681
  inventory_adjustment: Inventory Adjustment
1510
1682
  inventory_canceled: Inventory canceled
1511
1683
  inventory_error_flash_for_insufficient_quantity: "%{names} became unavailable."
1512
- inventory_error_flash_for_insufficient_shipment_quantity: "Quantity selected of %{unavailable_items} is not available. Still, items may be available from another stock location, please try again."
1684
+ inventory_error_flash_for_insufficient_shipment_quantity: Quantity selected of %{unavailable_items} is not available. Still, items may be available from another stock location, please try again.
1513
1685
  inventory_not_available: Inventory not available for %{item}.
1514
1686
  inventory_state: Inventory State
1515
1687
  inventory_states:
@@ -1522,20 +1694,19 @@ en:
1522
1694
  iso_name: Iso Name
1523
1695
  item: Item
1524
1696
  item_description: Item Description
1525
- items_selected:
1526
- all: All Items Selected
1527
- none: No Item Selected
1528
- one: One Item Selected
1529
- custom: Items Selected
1530
1697
  item_total: Item Total
1531
1698
  item_total_rule:
1532
1699
  operators:
1533
1700
  gt: greater than
1534
1701
  gte: greater than or equal to
1535
- items_cannot_be_shipped: We are unable to calculate shipping rates for the selected
1536
- items.
1702
+ items_cannot_be_shipped: We are unable to calculate shipping rates for the selected items.
1537
1703
  items_in_rmas: Items in RMA's (Return Merchandise Authorizations)
1538
1704
  items_reimbursed: Items reimbursed
1705
+ items_selected:
1706
+ all: All Items Selected
1707
+ custom: Items Selected
1708
+ none: No Item Selected
1709
+ one: One Item Selected
1539
1710
  items_to_be_reimbursed: Items to be reimbursed
1540
1711
  jirafe: Jirafe
1541
1712
  landing_page_rule:
@@ -1569,8 +1740,7 @@ en:
1569
1740
  logs: Logs
1570
1741
  look_for_similar_items: Look for similar items
1571
1742
  make_refund: Make refund
1572
- make_sure_the_above_reimbursement_amount_is_correct: Make sure the above reimbursement
1573
- amount is correct
1743
+ make_sure_the_above_reimbursement_amount_is_correct: Make sure the above reimbursement amount is correct
1574
1744
  manage_promotion_categories: Manage Promotion Categories
1575
1745
  manage_stock: Store Stock
1576
1746
  manage_variants: Manage Variants
@@ -1600,8 +1770,7 @@ en:
1600
1770
  name_contains: Name Contains
1601
1771
  name_on_card: Name on card
1602
1772
  name_or_sku: Name or SKU (enter at least first 4 characters of product name)
1603
- negative_movement_absent_item: Cannot create negative movement for absent stock
1604
- item.
1773
+ negative_movement_absent_item: Cannot create negative movement for absent stock item.
1605
1774
  new: New
1606
1775
  new_adjustment: New Adjustment
1607
1776
  new_adjustment_reason: New Adjustment Reason
@@ -1644,8 +1813,7 @@ en:
1644
1813
  no_actions_added: No actions added
1645
1814
  no_images_found: No images found
1646
1815
  no_inventory_selected: No inventory selected
1647
- no_option_values_on_product_html: This product has no associated option values.
1648
- Add some to it through Option Types in the %{link}.
1816
+ no_option_values_on_product_html: This product has no associated option values. Add some to it through Option Types in the %{link}.
1649
1817
  no_orders_found: No orders found
1650
1818
  no_payment_found: No payment found
1651
1819
  no_payment_methods_found: No payment methods found
@@ -1670,12 +1838,10 @@ en:
1670
1838
  normal_amount: Normal Amount
1671
1839
  not: not
1672
1840
  not_available: N/A
1673
- not_enough_stock: There is not enough inventory at the source location to complete
1674
- this transfer.
1841
+ not_enough_stock: There is not enough inventory at the source location to complete this transfer.
1675
1842
  not_found: "%{resource} is not found"
1676
1843
  note: Note
1677
- note_already_received_a_refund: 'Note: This order has already received a refund. Make
1678
- sure the above reimbursement amount is correct.'
1844
+ note_already_received_a_refund: 'Note: This order has already received a refund. Make sure the above reimbursement amount is correct.'
1679
1845
  notice_messages:
1680
1846
  product_cloned: Product has been cloned
1681
1847
  product_deleted: Product has been deleted
@@ -1709,16 +1875,14 @@ en:
1709
1875
  order_mailer:
1710
1876
  cancel_email:
1711
1877
  dear_customer: Dear Customer,
1712
- instructions: Your order has been CANCELED. Please retain this cancellation
1713
- information for your records.
1878
+ instructions: Your order has been CANCELED. Please retain this cancellation information for your records.
1714
1879
  order_summary_canceled: Order Summary [CANCELED]
1715
1880
  subject: Cancellation of Order
1716
1881
  subtotal: 'Subtotal:'
1717
1882
  total: 'Order Total:'
1718
1883
  confirm_email:
1719
1884
  dear_customer: Dear Customer,
1720
- instructions: Please review and retain the following order information for
1721
- your records.
1885
+ instructions: Please review and retain the following order information for your records.
1722
1886
  order_summary: Order Summary
1723
1887
  subject: Order Confirmation
1724
1888
  subtotal: 'Subtotal:'
@@ -1726,8 +1890,7 @@ en:
1726
1890
  total: 'Order Total:'
1727
1891
  inventory_cancellation:
1728
1892
  dear_customer: Dear Customer,
1729
- instructions: Some items in your order have been CANCELED. Please retain
1730
- this cancellation information for your records.
1893
+ instructions: Some items in your order have been CANCELED. Please retain this cancellation information for your records.
1731
1894
  order_summary_canceled: Canceled Items
1732
1895
  subject: Cancellation of Items
1733
1896
  order_mutex_admin_error: Order is being modified by someone else. Please try again.
@@ -1773,15 +1936,11 @@ en:
1773
1936
  payment_identifier: Payment Identifier
1774
1937
  payment_information: Payment Information
1775
1938
  payment_method: Payment Method
1776
- payment_method_not_supported: That payment method is unsupported. Please choose
1777
- another one.
1778
- payment_method_settings_warning: If you are changing the payment method type,
1779
- you must save first before you can edit the payment method settings
1939
+ payment_method_not_supported: That payment method is unsupported. Please choose another one.
1940
+ payment_method_settings_warning: If you are changing the payment method type, you must save first before you can edit the payment method settings
1780
1941
  payment_methods: Payment Methods
1781
- payment_processing_failed: Payment could not be processed, please check the details
1782
- you entered
1783
- payment_processor_choose_banner_text: If you need help choosing a payment processor,
1784
- please visit
1942
+ payment_processing_failed: Payment could not be processed, please check the details you entered
1943
+ payment_processor_choose_banner_text: If you need help choosing a payment processor, please visit
1785
1944
  payment_processor_choose_link: our payments page
1786
1945
  payment_state: Payment State
1787
1946
  payment_states:
@@ -1825,8 +1984,7 @@ en:
1825
1984
  product: Product
1826
1985
  product_details: Product Details
1827
1986
  product_has_no_description: This product has no description
1828
- product_not_available_in_this_currency: This product is not available in the selected
1829
- currency.
1987
+ product_not_available_in_this_currency: This product is not available in the selected currency.
1830
1988
  product_properties: Product Properties
1831
1989
  product_rule:
1832
1990
  choose_products: Choose products
@@ -1837,8 +1995,8 @@ en:
1837
1995
  product_source:
1838
1996
  group: From product group
1839
1997
  manual: Manually choose
1840
- product_without_default_price_info: 'This Product has no price in the default currency (%{default_currency}).'
1841
- product_without_default_price_cta: 'Please, create a Master Price!'
1998
+ product_without_default_price_cta: Please, create a Master Price!
1999
+ product_without_default_price_info: This Product has no price in the default currency (%{default_currency}).
1842
2000
  products: Products
1843
2001
  promotion: Promotion
1844
2002
  promotion_action: Promotion Action
@@ -1860,9 +2018,7 @@ en:
1860
2018
  any: Match any of these rules
1861
2019
  promotion_rule: Promotion Rule
1862
2020
  promotion_successfully_created: Promotion has been successfully created!
1863
- promotion_total_changed_before_complete: One or more of the promotions on your
1864
- order have become ineligible and were removed. Please check the new order amounts
1865
- and try again.
2021
+ promotion_total_changed_before_complete: One or more of the promotions on your order have become ineligible and were removed. Please check the new order amounts and try again.
1866
2022
  promotion_uses: Promotion uses
1867
2023
  promotionable: Promotable
1868
2024
  promotions: Promotions
@@ -1940,24 +2096,20 @@ en:
1940
2096
  resumed: Resumed
1941
2097
  return: return
1942
2098
  return_authorization: Return Merchandise Authorization
1943
- return_authorization_fire_error: Cannot perform this action on return merchandise
1944
- authorization
2099
+ return_authorization_fire_error: Cannot perform this action on return merchandise authorization
1945
2100
  return_authorization_states:
1946
2101
  authorized: Authorized
1947
2102
  canceled: Canceled
1948
2103
  return_authorization_updated: Return merchandise authorization updated
1949
2104
  return_authorizations: Return Merchandise Authorizations
1950
2105
  return_item_inventory_unit_ineligible: Return item's inventory unit must be shipped
1951
- return_item_inventory_unit_reimbursed: Return item's inventory unit is already
1952
- reimbursed
2106
+ return_item_inventory_unit_reimbursed: Return item's inventory unit is already reimbursed
1953
2107
  return_item_order_not_completed: Return item's order must be completed
1954
2108
  return_item_rma_ineligible: Return item requires an RMA
1955
2109
  return_item_time_period_ineligible: Return item is outside the eligible time period
1956
2110
  return_items: Return Items
1957
- return_items_cannot_be_associated_with_multiple_orders: Return items cannot be
1958
- associated with multiple orders.
1959
- return_items_cannot_be_created_for_inventory_units_that_are_already_awaiting_exchange: Return
1960
- items cannot be created for inventory units that are already awaiting exchange.
2111
+ return_items_cannot_be_associated_with_multiple_orders: Return items cannot be associated with multiple orders.
2112
+ return_items_cannot_be_created_for_inventory_units_that_are_already_awaiting_exchange: Return items cannot be created for inventory units that are already awaiting exchange.
1961
2113
  return_number: Return Number
1962
2114
  return_quantity: Return Quantity
1963
2115
  return_reasons: Return Reasons
@@ -1997,7 +2149,6 @@ en:
1997
2149
  ship: ship
1998
2150
  ship_address: Ship Address
1999
2151
  ship_address_required: Valid shipping address required
2000
- bill_address_required: Valid billing address required
2001
2152
  ship_total: Ship Total
2002
2153
  shipment: Shipment
2003
2154
  shipment_adjustments: Shipment adjustments
@@ -2063,11 +2214,9 @@ en:
2063
2214
  special_instructions: Special Instructions
2064
2215
  split: Split
2065
2216
  split_failed: Unable to complete split
2066
- spree_gateway_error_flash_for_checkout: There was a problem with your payment
2067
- information. Please check your information and try again.
2217
+ spree_gateway_error_flash_for_checkout: There was a problem with your payment information. Please check your information and try again.
2068
2218
  ssl:
2069
- change_protocol: Please switch to using HTTP (rather than HTTPS) and retry this
2070
- request.
2219
+ change_protocol: Please switch to using HTTP (rather than HTTPS) and retry this request.
2071
2220
  start: Start
2072
2221
  state: State
2073
2222
  state_based: State Based
@@ -2081,11 +2230,9 @@ en:
2081
2230
  stock_location: Stock Location
2082
2231
  stock_location_info: Stock location info
2083
2232
  stock_locations: Stock Locations
2084
- stock_locations_need_a_default_country: You must create a default country before
2085
- creating a stock location.
2233
+ stock_locations_need_a_default_country: You must create a default country before creating a stock location.
2086
2234
  stock_management: Product Stock
2087
- stock_management_requires_a_stock_location: Please create a stock location in
2088
- order to manage stock.
2235
+ stock_management_requires_a_stock_location: Please create a stock location in order to manage stock.
2089
2236
  stock_movements: Stock Movements
2090
2237
  stock_movements_for_stock_location: Stock Movements for %{stock_location_name}
2091
2238
  stock_successfully_transferred: Stock was successfully transferred between locations.
@@ -2108,8 +2255,7 @@ en:
2108
2255
  invalidate: Invalidated
2109
2256
  void: Credit
2110
2257
  errors:
2111
- cannot_invalidate_uncaptured_authorization: Cannot invalidate a store credit
2112
- with an uncaptured authorization
2258
+ cannot_invalidate_uncaptured_authorization: Cannot invalidate a store credit with an uncaptured authorization
2113
2259
  unable_to_fund: Unable to pay for order using store credits
2114
2260
  expiring: Expiring
2115
2261
  insufficient_authorized_amount: Unable to capture more than authorized amount
@@ -2120,8 +2266,7 @@ en:
2120
2266
  successful_action: Successful store credit %{action}
2121
2267
  unable_to_credit: 'Unable to credit code: %{auth_code}'
2122
2268
  unable_to_find: Could not find store credit
2123
- unable_to_find_for_action: 'Could not find store credit for auth code: %{auth_code}
2124
- for action: %{action}'
2269
+ unable_to_find_for_action: 'Could not find store credit for auth code: %{auth_code} for action: %{action}'
2125
2270
  unable_to_void: 'Unable to void code: %{auth_code}'
2126
2271
  user_has_no_store_credits: User does not have any available store credit
2127
2272
  store_credit_category:
@@ -2143,8 +2288,7 @@ en:
2143
2288
  tax_category: Tax Category
2144
2289
  tax_code: Tax Code
2145
2290
  tax_included: Tax (incl.)
2146
- tax_rate_amount_explanation: Tax rates are a decimal amount to aid in calculations,
2147
- (i.e. if the tax rate is 5% then enter 0.05)
2291
+ tax_rate_amount_explanation: Tax rates are a decimal amount to aid in calculations, (i.e. if the tax rate is 5% then enter 0.05)
2148
2292
  tax_rates: Tax Rates
2149
2293
  taxon: Taxon
2150
2294
  taxon_attachment_removal_error: There was an error removing the attachment
@@ -2159,10 +2303,8 @@ en:
2159
2303
  taxonomies: Taxonomies
2160
2304
  taxonomy: Taxonomy
2161
2305
  taxonomy_edit: Edit taxonomy
2162
- taxonomy_tree_error: The requested change has not been accepted and the tree has
2163
- been returned to its previous state, please try again.
2164
- taxonomy_tree_instruction: "* Right click a child in the tree to access the menu
2165
- for adding, deleting or sorting a child."
2306
+ taxonomy_tree_error: The requested change has not been accepted and the tree has been returned to its previous state, please try again.
2307
+ taxonomy_tree_instruction: "* Right click a child in the tree to access the menu for adding, deleting or sorting a child."
2166
2308
  taxons: Taxons
2167
2309
  test: Test
2168
2310
  test_mailer:
@@ -2171,12 +2313,9 @@ en:
2171
2313
  message: If you have received this email, then your email settings are correct.
2172
2314
  subject: Test Mail
2173
2315
  test_mode: Test Mode
2174
- thank_you_for_your_order: Thank you for your business. Please print out a copy
2175
- of this confirmation page for your records.
2176
- there_are_no_items_for_this_order: There are no items for this order. Please add
2177
- an item to the order to continue.
2178
- there_were_problems_with_the_following_fields: There were problems with the following
2179
- fields
2316
+ thank_you_for_your_order: Thank you for your business. Please print out a copy of this confirmation page for your records.
2317
+ there_are_no_items_for_this_order: There are no items for this order. Please add an item to the order to continue.
2318
+ there_were_problems_with_the_following_fields: There were problems with the following fields
2180
2319
  this_order_has_already_received_a_refund: This order has already received a refund
2181
2320
  thumbnail: Thumbnail
2182
2321
  tiered_flat_rate: Tiered Flat Rate
@@ -2207,8 +2346,7 @@ en:
2207
2346
  type: Type
2208
2347
  type_to_search: Type to search
2209
2348
  unable_to_connect_to_gateway: Unable to connect to gateway.
2210
- unable_to_create_reimbursements: Unable to create reimbursements because there
2211
- are items pending manual intervention.
2349
+ unable_to_create_reimbursements: Unable to create reimbursements because there are items pending manual intervention.
2212
2350
  unable_to_find_all_inventory_units: Unable to find all specified inventory units
2213
2351
  under_price: Under %{price}
2214
2352
  unfinalize_all_adjustments: Unfinalize All Adjustments
@@ -2234,12 +2372,9 @@ en:
2234
2372
  choose_users: Choose Users
2235
2373
  users: Users
2236
2374
  validation:
2237
- cannot_be_less_than_shipped_units: cannot be less than the number of shipped
2238
- units.
2239
- cannot_destroy_line_item_as_inventory_units_have_shipped: Cannot destroy line
2240
- item as some inventory units have shipped.
2241
- exceeds_available_stock: exceeds available stock. Please ensure line items have
2242
- a valid quantity.
2375
+ cannot_be_less_than_shipped_units: cannot be less than the number of shipped units.
2376
+ cannot_destroy_line_item_as_inventory_units_have_shipped: Cannot destroy line item as some inventory units have shipped.
2377
+ exceeds_available_stock: exceeds available stock. Please ensure line items have a valid quantity.
2243
2378
  is_too_large: is too large -- stock on hand cannot cover requested quantity!
2244
2379
  must_be_int: must be an integer
2245
2380
  must_be_non_negative: must be a non-negative value
@@ -2248,7 +2383,6 @@ en:
2248
2383
  value: Value
2249
2384
  variant: Variant
2250
2385
  variant_placeholder: Choose a Variant
2251
- variant_pricing: Variant Pricing
2252
2386
  variant_properties: Variant Properties
2253
2387
  variant_search: Variant Search
2254
2388
  variant_search_placeholder: SKU or Option Value