solidus_core 3.2.0.alpha → 3.2.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: b1b866f15d9df0394383e7f634858ee99f21ed214e8fae6928af514a6421ddbc
4
- data.tar.gz: d2f5c689bf6debe86f5b9be575eea7640e496606f8933b85a1d2e7a2cb90123c
3
+ metadata.gz: 885f6226175c0938deb833bd6f0654e62093c00321ef995d65b35e1a9cf3c900
4
+ data.tar.gz: 3fd4df6e93392f0788b289f6e88bfd0edbb56b065a69097e480ee63a3568fd63
5
5
  SHA512:
6
- metadata.gz: df2acde7ab4aa4b01e3d5b187b6c47a911714c868237a1ba494095a43bdd07bac5082e2080d4aabc563576d502fecda0d28a94b9cef53db8e6c1e1c89a0cbc97
7
- data.tar.gz: c183f6200f52b585a4ae391bd8b412c6a4f58e987fcc6ceb3cd1cf6835b92b1019f6077e4a13c75dbe6a4c0dd64c81fe7c4d8d3deeed2b8fbadc67ed74148cb5
6
+ metadata.gz: 1c72990d1160aeaf6817c304fa01a5d77737deee3fc775fbd15bdd85b8dbe9c5456ee9568bbbf1bea00bc4cf43b5b311473f678fefcdca3c84ae3d788a70d05e
7
+ data.tar.gz: 0052f5fcde83289daf4ea3a0efe90045963073b2c5ca19fc2fcd3afa824806ac69b0d13bef6d95b8205a009d368d304f68be4f76234aaf7f3aaeb7dcf04e6456
@@ -55,7 +55,7 @@ module Spree
55
55
 
56
56
  def display_country
57
57
  if country_iso
58
- "#{country_iso} (#{country.name})"
58
+ "#{country_iso} (#{I18n.t(country_iso, scope: [:spree, :country_names])})"
59
59
  else
60
60
  I18n.t(:any_country, scope: [:spree, :admin, :prices])
61
61
  end
@@ -0,0 +1,134 @@
1
+ # i18n-tasks finds and manages missing and unused translations: https://github.com/glebm/i18n-tasks
2
+
3
+ # The "main" locale.
4
+ base_locale: en
5
+ ## All available locales are inferred from the data by default. Alternatively, specify them explicitly:
6
+ # locales: [es, fr]
7
+ ## Reporting locale, default: en. Available: en, ru.
8
+ # internal_locale: en
9
+
10
+ # Read and write translations.
11
+ data:
12
+ ## Translations are read from the file system. Supported format: YAML, JSON.
13
+ ## Provide a custom adapter:
14
+ # adapter: I18n::Tasks::Data::FileSystem
15
+
16
+ # Locale files or `File.find` patterns where translations are read from:
17
+ read:
18
+ ## Default:
19
+ # - config/locales/%{locale}.yml
20
+ ## More files:
21
+ # - config/locales/**/*.%{locale}.yml
22
+
23
+ # Locale files to write new keys to, based on a list of key pattern => file rules. Matched from top to bottom:
24
+ # `i18n-tasks normalize -p` will force move the keys according to these rules
25
+ write:
26
+ ## For example, write devise and simple form keys to their respective files:
27
+ # - ['{devise, simple_form}.*', 'config/locales/\1.%{locale}.yml']
28
+ ## Catch-all default:
29
+ # - config/locales/%{locale}.yml
30
+
31
+ # External locale data (e.g. gems).
32
+ # This data is not considered unused and is never written to.
33
+ external:
34
+ ## Example (replace %#= with %=):
35
+ # - "<%#= %x[bundle info vagrant --path].chomp %>/templates/locales/%{locale}.yml"
36
+
37
+ ## Specify the router (see Readme for details). Valid values: conservative_router, pattern_router, or a custom class.
38
+ # router: conservative_router
39
+
40
+ yaml:
41
+ write:
42
+ # do not wrap lines at 80 characters
43
+ line_width: -1
44
+
45
+ ## Pretty-print JSON:
46
+ # json:
47
+ # write:
48
+ # indent: ' '
49
+ # space: ' '
50
+ # object_nl: "\n"
51
+ # array_nl: "\n"
52
+
53
+ # Find translate calls
54
+ search:
55
+ ## Paths or `File.find` patterns to search in:
56
+ # paths:
57
+ # - app/
58
+
59
+ ## Root directories for relative keys resolution.
60
+ # relative_roots:
61
+ # - app/controllers
62
+ # - app/helpers
63
+ # - app/mailers
64
+ # - app/presenters
65
+ # - app/views
66
+
67
+ ## Files or `File.fnmatch` patterns to exclude from search. Some files are always excluded regardless of this setting:
68
+ ## %w(*.jpg *.png *.gif *.svg *.ico *.eot *.otf *.ttf *.woff *.woff2 *.pdf *.css *.sass *.scss *.less *.yml *.json)
69
+ exclude:
70
+ - app/assets/images
71
+ - app/assets/fonts
72
+ - app/assets/videos
73
+
74
+ ## Alternatively, the only files or `File.fnmatch patterns` to search in `paths`:
75
+ ## If specified, this settings takes priority over `exclude`, but `exclude` still applies.
76
+ # only: ["*.rb", "*.html.slim"]
77
+
78
+ ## If `strict` is `false`, guess usages such as t("categories.#{category}.title"). The default is `true`.
79
+ # strict: true
80
+
81
+ ## Multiple scanners can be used. Their results are merged.
82
+ ## The options specified above are passed down to each scanner. Per-scanner options can be specified as well.
83
+ ## See this example of a custom scanner: https://github.com/glebm/i18n-tasks/wiki/A-custom-scanner-example
84
+
85
+ ## Translation Services
86
+ # translation:
87
+ # # Google Translate
88
+ # # Get an API key and set billing info at https://code.google.com/apis/console to use Google Translate
89
+ # google_translate_api_key: "AbC-dEf5"
90
+ # # DeepL Pro Translate
91
+ # # Get an API key and subscription at https://www.deepl.com/pro to use DeepL Pro
92
+ # deepl_api_key: "48E92789-57A3-466A-9959-1A1A1A1A1A1A"
93
+
94
+ ## Do not consider these keys missing:
95
+ ignore_missing:
96
+ - 'number.currency.format.separator'
97
+ # - 'errors.messages.{accepted,blank,invalid,too_short,too_long}'
98
+ # - '{devise,simple_form}.*'
99
+
100
+ ## Consider these keys used:
101
+ #ignore_unused:
102
+ # - 'activerecord.attributes.*'
103
+ # - '{devise,kaminari,will_paginate}.*'
104
+ # - 'simple_form.{yes,no}'
105
+ # - 'simple_form.{placeholders,hints,labels}.*'
106
+ # - 'simple_form.{error_notification,required}.:'
107
+
108
+ ## Exclude these keys from the `i18n-tasks eq-base' report:
109
+ # ignore_eq_base:
110
+ # all:
111
+ # - common.ok
112
+ # fr,es:
113
+ # - common.brand
114
+
115
+ ## Exclude these keys from the `i18n-tasks check-consistent-interpolations` report:
116
+ # ignore_inconsistent_interpolations:
117
+ # - 'activerecord.attributes.*'
118
+
119
+ ## Ignore these keys completely:
120
+ # ignore:
121
+ # - kaminari.*
122
+
123
+ ## Sometimes, it isn't possible for i18n-tasks to match the key correctly,
124
+ ## e.g. in case of a relative key defined in a helper method.
125
+ ## In these cases you can use the built-in PatternMapper to map patterns to keys, e.g.:
126
+ #
127
+ # <%# I18n::Tasks.add_scanner 'I18n::Tasks::Scanners::PatternMapper',
128
+ # only: %w(*.html.haml *.html.slim),
129
+ # patterns: [['= title\b', '.page_title']] %>
130
+ #
131
+ # The PatternMapper can also match key literals via a special %{key} interpolation, e.g.:
132
+ #
133
+ # <%# I18n::Tasks.add_scanner 'I18n::Tasks::Scanners::PatternMapper',
134
+ # patterns: [['\bSpree\.t[( ]\s*%{key}', 'spree.%{key}']] %>
@@ -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
@@ -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,12 +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
867
- new:
868
- new_price: New Price
869
853
  master_variant_table:
870
854
  master_variant: Master Variant Prices
855
+ new:
856
+ new_price: New Price
871
857
  table:
872
858
  variant_pricing: Variant Prices
859
+ promotion_status:
860
+ active: Active
861
+ expired: Expired
862
+ inactive: Inactive
863
+ not_started: Not started
873
864
  promotions:
874
865
  actions:
875
866
  calculator_label: Calculated by
@@ -886,14 +877,9 @@ en:
886
877
  expires_at_placeholder: Never
887
878
  general: General
888
879
  starts_at_placeholder: Immediately
889
- promotion_status:
890
- active: Active
891
- expired: Expired
892
- inactive: Inactive
893
- not_started: Not started
894
880
  shipping_methods:
895
881
  form:
896
- stock_locations_placeholder: 'Choose stock locations'
882
+ stock_locations_placeholder: Choose stock locations
897
883
  stock_locations:
898
884
  form:
899
885
  address: Address
@@ -919,10 +905,9 @@ en:
919
905
  amount_used_cannot_be_greater: cannot be greater than the credited amount
920
906
  amount_used_not_zero: is greater than zero. Can not delete store credit
921
907
  cannot_be_modified: cannot be modified
922
- cannot_change_used_store_credit: Store credit that has been claimed cannot
923
- be changed
924
- 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
925
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
926
911
  history: Store credit history
927
912
  invalidate_store_credit: Invalidating store credit
928
913
  invalidated: Invalidated
@@ -987,10 +972,8 @@ en:
987
972
  edit:
988
973
  api_access: API Access
989
974
  clear_key: Clear key
990
- confirm_clear_key: Are you sure you want to clear this user's API key? It
991
- will invalidate the existing key.
992
- confirm_regenerate_key: Are you sure you want to regenerate this user's
993
- 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.
994
977
  generate_key: Generate API key
995
978
  key: Key
996
979
  no_key: No key
@@ -1004,8 +987,7 @@ en:
1004
987
  dimensions: Dimensions
1005
988
  options: Options
1006
989
  pricing: Pricing
1007
- pricing_hint: These values are populated from the product details page and
1008
- can be overridden below
990
+ pricing_hint: These values are populated from the product details page and can be overridden below
1009
991
  properties: Properties
1010
992
  use_product_tax_category: Use Product Tax Category
1011
993
  new:
@@ -1034,6 +1016,7 @@ en:
1034
1016
  analytics_desc_list_4: It's completely free!
1035
1017
  analytics_trackers: Analytics Trackers
1036
1018
  and: and
1019
+ applies_to_all_variant_properties: Applies to all Variant Properties above
1037
1020
  apply_code: Apply Code
1038
1021
  approve: Approve
1039
1022
  approved_at: Approved at
@@ -1091,13 +1074,13 @@ en:
1091
1074
  base_amount: Base Amount
1092
1075
  base_percent: Base Percent
1093
1076
  bill_address: Bill Address
1077
+ bill_address_required: Valid billing address required
1094
1078
  billing: Billing
1095
1079
  billing_address: Billing Address
1096
1080
  both: Both
1097
1081
  calculated_reimbursements: Calculated Reimbursements
1098
1082
  calculator: Calculator
1099
- calculator_settings_warning: If you are changing the calculator type or preference
1100
- 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
1101
1084
  cancel: Cancel
1102
1085
  cancel_inventory: Cancel Items
1103
1086
  canceled: Canceled
@@ -1105,19 +1088,14 @@ en:
1105
1088
  canceler: Canceler
1106
1089
  cancellation: Cancellation
1107
1090
  cannot_create_payment_link: Please define some payment methods first.
1108
- cannot_create_payment_without_payment_methods_html: You cannot create a payment
1109
- 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}
1110
1092
  cannot_create_returns: Cannot create returns as this order has no shipped units.
1111
1093
  cannot_edit_orders: You may only edit your current shopping cart.
1112
1094
  cannot_perform_operation: Cannot perform requested operation
1113
- cannot_rebuild_shipments_order_completed: Cannot rebuild shipments for a completed
1114
- order.
1115
- cannot_rebuild_shipments_shipments_not_pending: Cannot rebuild shipments for an
1116
- order with non-pending shipments.
1117
- cannot_set_shipping_method_without_address: Cannot set shipping method until customer
1118
- details are provided.
1119
- cannot_update_email: You do not have access to update this user's email address.
1120
- <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.
1121
1099
  capture: Capture
1122
1100
  capture_events: Capture events
1123
1101
  card_code: Card Code
@@ -1148,8 +1126,7 @@ en:
1148
1126
  city: City
1149
1127
  clear_cache: Clear Cache
1150
1128
  clear_cache_ok: Cache was flushed
1151
- clear_cache_warning: Clearing cache will temporarily reduce the performance of
1152
- your store.
1129
+ clear_cache_warning: Clearing cache will temporarily reduce the performance of your store.
1153
1130
  clone: Clone
1154
1131
  close: Close
1155
1132
  closed: Closed
@@ -1167,37 +1144,278 @@ en:
1167
1144
  continue_shopping: Continue shopping
1168
1145
  cost_currency: Cost Currency
1169
1146
  cost_price: Cost Price
1170
- could_not_connect_to_jirafe: Could not connect to Jirafe to sync data. This will
1171
- be automatically retried later.
1147
+ could_not_connect_to_jirafe: Could not connect to Jirafe to sync data. This will be automatically retried later.
1172
1148
  could_not_create_customer_return: Could not create customer return
1173
- could_not_create_stock_movement: There was a problem saving this stock movement.
1174
- Please try again.
1149
+ could_not_create_stock_movement: There was a problem saving this stock movement. Please try again.
1175
1150
  count_on_hand: Count On Hand
1176
1151
  countries: Countries
1177
1152
  country: Country
1178
1153
  country_based: Country Based
1179
1154
  country_name: Name
1180
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
1181
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
1182
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
1183
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
1184
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
1185
1407
  coupon: Coupon
1186
1408
  coupon_code: Coupon code
1187
- coupon_code_already_applied: The coupon code has already been applied to this
1188
- order
1409
+ coupon_code_already_applied: The coupon code has already been applied to this order
1189
1410
  coupon_code_applied: The coupon code was successfully applied to your order.
1190
- coupon_code_better_exists: The previously applied coupon code results in a better
1191
- deal
1411
+ coupon_code_better_exists: The previously applied coupon code results in a better deal
1192
1412
  coupon_code_expired: The coupon code is expired
1193
1413
  coupon_code_max_usage: Coupon code usage limit exceeded
1194
1414
  coupon_code_not_eligible: This coupon code is not eligible for this order
1195
1415
  coupon_code_not_found: The coupon code you entered doesn't exist. Please try again.
1196
- coupon_code_not_present: The coupon code you are trying to remove is not present
1197
- on this order.
1416
+ coupon_code_not_present: The coupon code you are trying to remove is not present on this order.
1198
1417
  coupon_code_removed: The coupon code was successfully removed from this order.
1199
- coupon_code_unknown_error: This coupon code could not be applied to the cart at
1200
- this time.
1418
+ coupon_code_unknown_error: This coupon code could not be applied to the cart at this time.
1201
1419
  create: Create
1202
1420
  create_a_new_account: Create a new account
1203
1421
  create_one: Create One.
@@ -1228,10 +1446,8 @@ en:
1228
1446
  jirafe:
1229
1447
  app_id: App ID
1230
1448
  app_token: App Token
1231
- currently_unavailable: Jirafe is currently unavailable. Spree will automatically
1232
- connect to Jirafe once it is available.
1233
- explanation: The fields below may already be populated if you chose to register
1234
- 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.
1235
1451
  header: Jirafe Analytics Settings
1236
1452
  site_id: Site ID
1237
1453
  token: Token
@@ -1247,8 +1463,7 @@ en:
1247
1463
  default_refund_amount: Default Refund Amount
1248
1464
  delete: Delete
1249
1465
  deleted_successfully: Deleted successfully
1250
- deleted_variants_present: Some line items in this order have products that are
1251
- no longer available.
1466
+ deleted_variants_present: Some line items in this order have products that are no longer available.
1252
1467
  delivery: Delivery
1253
1468
  depth: Depth
1254
1469
  description: Description
@@ -1288,27 +1503,17 @@ en:
1288
1503
  editing_zone: Editing Zone
1289
1504
  eligibility_errors:
1290
1505
  messages:
1291
- has_excluded_product: Your cart contains a product that prevents this coupon
1292
- code from being applied.
1293
- has_excluded_taxon: Your cart contains a product from an excluded category
1294
- that prevents this coupon code from being applied.
1295
- item_total_less_than: This coupon code can't be applied to orders less than
1296
- %{amount}.
1297
- item_total_less_than_or_equal: This coupon code can't be applied to orders
1298
- less than or equal to %{amount}.
1299
- item_total_doesnt_match_with_operator: This coupon code can't be applied to
1300
- 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}.
1301
1511
  limit_once_per_user: This coupon code can only be used once per user.
1302
- missing_product: This coupon code can't be applied because you don't have
1303
- all of the necessary products in your cart.
1304
- missing_taxon: You need to add a product from all applicable categories before
1305
- applying this coupon code.
1306
- no_applicable_products: You need to add an applicable product before applying
1307
- this coupon code.
1308
- no_matching_taxons: You need to add a product from an applicable category
1309
- before applying this coupon code.
1310
- no_user_or_email_specified: You need to login or provide your email before
1311
- 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.
1312
1517
  no_user_specified: You need to login before applying this coupon code.
1313
1518
  not_first_order: This coupon code can only be applied to your first order.
1314
1519
  email: Email
@@ -1320,12 +1525,10 @@ en:
1320
1525
  error: error
1321
1526
  errors:
1322
1527
  messages:
1323
- cannot_delete_finalized_stock_location: Stock Location cannot be destroyed
1324
- if you have open stock transfers.
1528
+ cannot_delete_finalized_stock_location: Stock Location cannot be destroyed if you have open stock transfers.
1325
1529
  could_not_create_taxon: Could not create taxon
1326
1530
  no_payment_methods_available: No payment methods are configured for this environment
1327
- no_shipping_methods_available: No shipping methods available for selected
1328
- 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.
1329
1532
  errors_prohibited_this_record_from_being_saved:
1330
1533
  one: 1 error prohibited this record from being saved
1331
1534
  other: "%{count} errors prohibited this record from being saved"
@@ -1344,9 +1547,7 @@ en:
1344
1547
  user:
1345
1548
  signup: User signup
1346
1549
  exceptions:
1347
- count_on_hand_setter: Cannot set count_on_hand manually, as it is set automatically
1348
- by the recalculate_count_on_hand callback. Please use `update_column(:count_on_hand,
1349
- 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.
1350
1551
  exchange_for: Exchange For
1351
1552
  excl: excl.
1352
1553
  existing_shipments: Existing shipments
@@ -1397,78 +1598,45 @@ en:
1397
1598
  hide_out_of_stock: Hide out of stock
1398
1599
  hints:
1399
1600
  spree/calculator:
1400
- tax_rates: This is used to calculate both sales tax (United States-style taxes)
1401
- and value-added tax (VAT). Typically this calculator should be the only tax
1402
- calculator required by your store.
1403
- shipping_methods: This is used to calculate the shipping rates on a per order or
1404
- per package rate.
1405
- promotions: This is used to determine the promotional discount to be applied to an
1406
- 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.
1407
1604
  spree/price:
1408
- country: 'This determines in what country the price is valid.<br/>Default:
1409
- Any Country'
1410
- master_variant: Changing master variant prices will not change variant prices
1411
- below, but will be used to populate all new variants
1412
- options: These options are used to create variants in the variants table.
1413
- 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
1414
1608
  spree/product:
1415
- available_on: This sets the availability date for the product. If this value
1416
- is not set, or it is set to a date in the future, then the product is not
1417
- available on the storefront.
1418
- discontinue_on: This sets the discontinue date for the product. If this value
1419
- is set to a date, then the product is not available on the storefront from
1420
- that day on anymore.
1421
- promotionable: 'This determines whether or not promotions can apply to this
1422
- product.<br/>Default: Checked'
1423
- shipping_category: 'This determines what kind of shipping this product requires.<br/>
1424
- Default: Default'
1425
- tax_category: 'This determines what kind of taxation is applied to this product.<br/>
1426
- 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}'
1427
1614
  spree/promotion:
1428
- expires_at: This determines when the promotion expires. <br/> If no value
1429
- is specified, the promotion will never expire.
1430
- starts_at: This determines when the promotion can be applied to orders. <br/>
1431
- If no value is specified, the promotion will be immediately available.
1432
- promo_code_will_be_disabled: Selecting this option, promo codes will be disabled for this promotion
1433
- 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.
1434
1618
  spree/shipping_method:
1435
- available_to_all: Uncheck to select specific stock locations this
1436
- shipping method will be available in.
1619
+ available_to_all: Uncheck to select specific stock locations this shipping method will be available in.
1437
1620
  spree/stock_location:
1438
- active: 'This determines whether stock from this location can be used when
1439
- building packages.<br/> Default: Checked'
1440
- backorderable_default: 'When checked, stock items in this location will default
1441
- to allowing backorders.<br/> Default: Unchecked'
1442
- check_stock_on_transfer: 'When checked, inventory levels will be checked when
1443
- performing stock transfers.<br/> Default: Checked'
1444
- fulfillable: 'When unchecked, this indicates that items in this location don''t
1445
- require actual fulfilment. Stock will not be checked when shipping and emails
1446
- will not be sent.<br/> Default: Checked'
1447
- propagate_all_variants: 'When checked, this will create a stock item for each variant
1448
- in this stock location.<br/> Default: Checked'
1449
- restock_inventory: 'When checked, returned inventory can be added back to
1450
- 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'
1451
1627
  spree/store:
1452
- available_locales: This determines which locales are available for your customers
1453
- to choose from in the storefront.
1454
- cart_tax_country_iso: "This determines which country is used for taxes on carts
1455
- (orders which don't yet have an address).<br/> Default: None."
1456
- code: 'An identifier for your store. Developers may need this value if you operate
1457
- 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.
1458
1631
  spree/tax_category:
1459
- 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.
1460
1633
  spree/tax_rate:
1461
- validity_period: This determines the validity period within which the tax
1462
- rate is valid and will be applied to eligible items. <br /> If no start
1463
- date value is specified, the tax rate will be immediately available. <br
1464
- /> 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
1465
1635
  spree/variant:
1466
1636
  deleted: Deleted Variant
1467
1637
  deleted_explanation: This variant was deleted on %{date}.
1468
- deleted_explanation_with_replacement: This variant was deleted on %{date}.
1469
- It has since been replaced by another with the same SKU.
1470
- tax_category: 'This determines what kind of taxation is applied to this variant.<br/>
1471
- 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'
1472
1640
  home: Home
1473
1641
  i18n:
1474
1642
  available_locales: Available Locales
@@ -1487,15 +1655,12 @@ en:
1487
1655
  identifier: Identifier
1488
1656
  image: Image
1489
1657
  images: Images
1490
- implement_eligible_for_return: 'Must implement #eligible_for_return? for your
1491
- EligibilityValidator.'
1492
- implement_requires_manual_intervention: 'Must implement #requires_manual_intervention?
1493
- 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.'
1494
1660
  inactive: Inactive
1495
1661
  incl: incl.
1496
1662
  included_in_price: Included in Price
1497
- included_price_validation: cannot be selected unless you have set a Default Tax
1498
- Zone
1663
+ included_price_validation: cannot be selected unless you have set a Default Tax Zone
1499
1664
  incomplete: Incomplete
1500
1665
  info_number_of_skus_not_shown:
1501
1666
  one: and one other
@@ -1504,8 +1669,7 @@ en:
1504
1669
  instructions_to_reset_password: Please enter your email on the form below
1505
1670
  insufficient_stock: Insufficient stock available, only %{on_hand} remaining
1506
1671
  insufficient_stock_for_order: Insufficient stock for order
1507
- insufficient_stock_lines_present: Some line items in this order have insufficient
1508
- quantity.
1672
+ insufficient_stock_lines_present: Some line items in this order have insufficient quantity.
1509
1673
  intercept_email_address: Intercept Email Address
1510
1674
  intercept_email_instructions: Override email recipient and replace with this address.
1511
1675
  invalid_exchange_variant: Invalid exchange variant.
@@ -1517,7 +1681,7 @@ en:
1517
1681
  inventory_adjustment: Inventory Adjustment
1518
1682
  inventory_canceled: Inventory canceled
1519
1683
  inventory_error_flash_for_insufficient_quantity: "%{names} became unavailable."
1520
- 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.
1521
1685
  inventory_not_available: Inventory not available for %{item}.
1522
1686
  inventory_state: Inventory State
1523
1687
  inventory_states:
@@ -1530,20 +1694,19 @@ en:
1530
1694
  iso_name: Iso Name
1531
1695
  item: Item
1532
1696
  item_description: Item Description
1533
- items_selected:
1534
- all: All Items Selected
1535
- none: No Item Selected
1536
- one: One Item Selected
1537
- custom: Items Selected
1538
1697
  item_total: Item Total
1539
1698
  item_total_rule:
1540
1699
  operators:
1541
1700
  gt: greater than
1542
1701
  gte: greater than or equal to
1543
- items_cannot_be_shipped: We are unable to calculate shipping rates for the selected
1544
- items.
1702
+ items_cannot_be_shipped: We are unable to calculate shipping rates for the selected items.
1545
1703
  items_in_rmas: Items in RMA's (Return Merchandise Authorizations)
1546
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
1547
1710
  items_to_be_reimbursed: Items to be reimbursed
1548
1711
  jirafe: Jirafe
1549
1712
  landing_page_rule:
@@ -1577,8 +1740,7 @@ en:
1577
1740
  logs: Logs
1578
1741
  look_for_similar_items: Look for similar items
1579
1742
  make_refund: Make refund
1580
- make_sure_the_above_reimbursement_amount_is_correct: Make sure the above reimbursement
1581
- amount is correct
1743
+ make_sure_the_above_reimbursement_amount_is_correct: Make sure the above reimbursement amount is correct
1582
1744
  manage_promotion_categories: Manage Promotion Categories
1583
1745
  manage_stock: Store Stock
1584
1746
  manage_variants: Manage Variants
@@ -1608,8 +1770,7 @@ en:
1608
1770
  name_contains: Name Contains
1609
1771
  name_on_card: Name on card
1610
1772
  name_or_sku: Name or SKU (enter at least first 4 characters of product name)
1611
- negative_movement_absent_item: Cannot create negative movement for absent stock
1612
- item.
1773
+ negative_movement_absent_item: Cannot create negative movement for absent stock item.
1613
1774
  new: New
1614
1775
  new_adjustment: New Adjustment
1615
1776
  new_adjustment_reason: New Adjustment Reason
@@ -1652,8 +1813,7 @@ en:
1652
1813
  no_actions_added: No actions added
1653
1814
  no_images_found: No images found
1654
1815
  no_inventory_selected: No inventory selected
1655
- no_option_values_on_product_html: This product has no associated option values.
1656
- 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}.
1657
1817
  no_orders_found: No orders found
1658
1818
  no_payment_found: No payment found
1659
1819
  no_payment_methods_found: No payment methods found
@@ -1678,12 +1838,10 @@ en:
1678
1838
  normal_amount: Normal Amount
1679
1839
  not: not
1680
1840
  not_available: N/A
1681
- not_enough_stock: There is not enough inventory at the source location to complete
1682
- this transfer.
1841
+ not_enough_stock: There is not enough inventory at the source location to complete this transfer.
1683
1842
  not_found: "%{resource} is not found"
1684
1843
  note: Note
1685
- note_already_received_a_refund: 'Note: This order has already received a refund. Make
1686
- 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.'
1687
1845
  notice_messages:
1688
1846
  product_cloned: Product has been cloned
1689
1847
  product_deleted: Product has been deleted
@@ -1717,16 +1875,14 @@ en:
1717
1875
  order_mailer:
1718
1876
  cancel_email:
1719
1877
  dear_customer: Dear Customer,
1720
- instructions: Your order has been CANCELED. Please retain this cancellation
1721
- information for your records.
1878
+ instructions: Your order has been CANCELED. Please retain this cancellation information for your records.
1722
1879
  order_summary_canceled: Order Summary [CANCELED]
1723
1880
  subject: Cancellation of Order
1724
1881
  subtotal: 'Subtotal:'
1725
1882
  total: 'Order Total:'
1726
1883
  confirm_email:
1727
1884
  dear_customer: Dear Customer,
1728
- instructions: Please review and retain the following order information for
1729
- your records.
1885
+ instructions: Please review and retain the following order information for your records.
1730
1886
  order_summary: Order Summary
1731
1887
  subject: Order Confirmation
1732
1888
  subtotal: 'Subtotal:'
@@ -1734,8 +1890,7 @@ en:
1734
1890
  total: 'Order Total:'
1735
1891
  inventory_cancellation:
1736
1892
  dear_customer: Dear Customer,
1737
- instructions: Some items in your order have been CANCELED. Please retain
1738
- this cancellation information for your records.
1893
+ instructions: Some items in your order have been CANCELED. Please retain this cancellation information for your records.
1739
1894
  order_summary_canceled: Canceled Items
1740
1895
  subject: Cancellation of Items
1741
1896
  order_mutex_admin_error: Order is being modified by someone else. Please try again.
@@ -1781,15 +1936,11 @@ en:
1781
1936
  payment_identifier: Payment Identifier
1782
1937
  payment_information: Payment Information
1783
1938
  payment_method: Payment Method
1784
- payment_method_not_supported: That payment method is unsupported. Please choose
1785
- another one.
1786
- payment_method_settings_warning: If you are changing the payment method type,
1787
- 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
1788
1941
  payment_methods: Payment Methods
1789
- payment_processing_failed: Payment could not be processed, please check the details
1790
- you entered
1791
- payment_processor_choose_banner_text: If you need help choosing a payment processor,
1792
- 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
1793
1944
  payment_processor_choose_link: our payments page
1794
1945
  payment_state: Payment State
1795
1946
  payment_states:
@@ -1833,8 +1984,7 @@ en:
1833
1984
  product: Product
1834
1985
  product_details: Product Details
1835
1986
  product_has_no_description: This product has no description
1836
- product_not_available_in_this_currency: This product is not available in the selected
1837
- currency.
1987
+ product_not_available_in_this_currency: This product is not available in the selected currency.
1838
1988
  product_properties: Product Properties
1839
1989
  product_rule:
1840
1990
  choose_products: Choose products
@@ -1845,8 +1995,8 @@ en:
1845
1995
  product_source:
1846
1996
  group: From product group
1847
1997
  manual: Manually choose
1848
- product_without_default_price_info: 'This Product has no price in the default currency (%{default_currency}).'
1849
- 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}).
1850
2000
  products: Products
1851
2001
  promotion: Promotion
1852
2002
  promotion_action: Promotion Action
@@ -1868,9 +2018,7 @@ en:
1868
2018
  any: Match any of these rules
1869
2019
  promotion_rule: Promotion Rule
1870
2020
  promotion_successfully_created: Promotion has been successfully created!
1871
- promotion_total_changed_before_complete: One or more of the promotions on your
1872
- order have become ineligible and were removed. Please check the new order amounts
1873
- 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.
1874
2022
  promotion_uses: Promotion uses
1875
2023
  promotionable: Promotable
1876
2024
  promotions: Promotions
@@ -1948,24 +2096,20 @@ en:
1948
2096
  resumed: Resumed
1949
2097
  return: return
1950
2098
  return_authorization: Return Merchandise Authorization
1951
- return_authorization_fire_error: Cannot perform this action on return merchandise
1952
- authorization
2099
+ return_authorization_fire_error: Cannot perform this action on return merchandise authorization
1953
2100
  return_authorization_states:
1954
2101
  authorized: Authorized
1955
2102
  canceled: Canceled
1956
2103
  return_authorization_updated: Return merchandise authorization updated
1957
2104
  return_authorizations: Return Merchandise Authorizations
1958
2105
  return_item_inventory_unit_ineligible: Return item's inventory unit must be shipped
1959
- return_item_inventory_unit_reimbursed: Return item's inventory unit is already
1960
- reimbursed
2106
+ return_item_inventory_unit_reimbursed: Return item's inventory unit is already reimbursed
1961
2107
  return_item_order_not_completed: Return item's order must be completed
1962
2108
  return_item_rma_ineligible: Return item requires an RMA
1963
2109
  return_item_time_period_ineligible: Return item is outside the eligible time period
1964
2110
  return_items: Return Items
1965
- return_items_cannot_be_associated_with_multiple_orders: Return items cannot be
1966
- associated with multiple orders.
1967
- return_items_cannot_be_created_for_inventory_units_that_are_already_awaiting_exchange: Return
1968
- 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.
1969
2113
  return_number: Return Number
1970
2114
  return_quantity: Return Quantity
1971
2115
  return_reasons: Return Reasons
@@ -2005,7 +2149,6 @@ en:
2005
2149
  ship: ship
2006
2150
  ship_address: Ship Address
2007
2151
  ship_address_required: Valid shipping address required
2008
- bill_address_required: Valid billing address required
2009
2152
  ship_total: Ship Total
2010
2153
  shipment: Shipment
2011
2154
  shipment_adjustments: Shipment adjustments
@@ -2071,11 +2214,9 @@ en:
2071
2214
  special_instructions: Special Instructions
2072
2215
  split: Split
2073
2216
  split_failed: Unable to complete split
2074
- spree_gateway_error_flash_for_checkout: There was a problem with your payment
2075
- 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.
2076
2218
  ssl:
2077
- change_protocol: Please switch to using HTTP (rather than HTTPS) and retry this
2078
- request.
2219
+ change_protocol: Please switch to using HTTP (rather than HTTPS) and retry this request.
2079
2220
  start: Start
2080
2221
  state: State
2081
2222
  state_based: State Based
@@ -2089,11 +2230,9 @@ en:
2089
2230
  stock_location: Stock Location
2090
2231
  stock_location_info: Stock location info
2091
2232
  stock_locations: Stock Locations
2092
- stock_locations_need_a_default_country: You must create a default country before
2093
- creating a stock location.
2233
+ stock_locations_need_a_default_country: You must create a default country before creating a stock location.
2094
2234
  stock_management: Product Stock
2095
- stock_management_requires_a_stock_location: Please create a stock location in
2096
- order to manage stock.
2235
+ stock_management_requires_a_stock_location: Please create a stock location in order to manage stock.
2097
2236
  stock_movements: Stock Movements
2098
2237
  stock_movements_for_stock_location: Stock Movements for %{stock_location_name}
2099
2238
  stock_successfully_transferred: Stock was successfully transferred between locations.
@@ -2116,8 +2255,7 @@ en:
2116
2255
  invalidate: Invalidated
2117
2256
  void: Credit
2118
2257
  errors:
2119
- cannot_invalidate_uncaptured_authorization: Cannot invalidate a store credit
2120
- with an uncaptured authorization
2258
+ cannot_invalidate_uncaptured_authorization: Cannot invalidate a store credit with an uncaptured authorization
2121
2259
  unable_to_fund: Unable to pay for order using store credits
2122
2260
  expiring: Expiring
2123
2261
  insufficient_authorized_amount: Unable to capture more than authorized amount
@@ -2128,8 +2266,7 @@ en:
2128
2266
  successful_action: Successful store credit %{action}
2129
2267
  unable_to_credit: 'Unable to credit code: %{auth_code}'
2130
2268
  unable_to_find: Could not find store credit
2131
- unable_to_find_for_action: 'Could not find store credit for auth code: %{auth_code}
2132
- for action: %{action}'
2269
+ unable_to_find_for_action: 'Could not find store credit for auth code: %{auth_code} for action: %{action}'
2133
2270
  unable_to_void: 'Unable to void code: %{auth_code}'
2134
2271
  user_has_no_store_credits: User does not have any available store credit
2135
2272
  store_credit_category:
@@ -2151,8 +2288,7 @@ en:
2151
2288
  tax_category: Tax Category
2152
2289
  tax_code: Tax Code
2153
2290
  tax_included: Tax (incl.)
2154
- tax_rate_amount_explanation: Tax rates are a decimal amount to aid in calculations,
2155
- (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)
2156
2292
  tax_rates: Tax Rates
2157
2293
  taxon: Taxon
2158
2294
  taxon_attachment_removal_error: There was an error removing the attachment
@@ -2167,10 +2303,8 @@ en:
2167
2303
  taxonomies: Taxonomies
2168
2304
  taxonomy: Taxonomy
2169
2305
  taxonomy_edit: Edit taxonomy
2170
- taxonomy_tree_error: The requested change has not been accepted and the tree has
2171
- been returned to its previous state, please try again.
2172
- taxonomy_tree_instruction: "* Right click a child in the tree to access the menu
2173
- 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."
2174
2308
  taxons: Taxons
2175
2309
  test: Test
2176
2310
  test_mailer:
@@ -2179,12 +2313,9 @@ en:
2179
2313
  message: If you have received this email, then your email settings are correct.
2180
2314
  subject: Test Mail
2181
2315
  test_mode: Test Mode
2182
- thank_you_for_your_order: Thank you for your business. Please print out a copy
2183
- of this confirmation page for your records.
2184
- there_are_no_items_for_this_order: There are no items for this order. Please add
2185
- an item to the order to continue.
2186
- there_were_problems_with_the_following_fields: There were problems with the following
2187
- 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
2188
2319
  this_order_has_already_received_a_refund: This order has already received a refund
2189
2320
  thumbnail: Thumbnail
2190
2321
  tiered_flat_rate: Tiered Flat Rate
@@ -2215,8 +2346,7 @@ en:
2215
2346
  type: Type
2216
2347
  type_to_search: Type to search
2217
2348
  unable_to_connect_to_gateway: Unable to connect to gateway.
2218
- unable_to_create_reimbursements: Unable to create reimbursements because there
2219
- are items pending manual intervention.
2349
+ unable_to_create_reimbursements: Unable to create reimbursements because there are items pending manual intervention.
2220
2350
  unable_to_find_all_inventory_units: Unable to find all specified inventory units
2221
2351
  under_price: Under %{price}
2222
2352
  unfinalize_all_adjustments: Unfinalize All Adjustments
@@ -2242,12 +2372,9 @@ en:
2242
2372
  choose_users: Choose Users
2243
2373
  users: Users
2244
2374
  validation:
2245
- cannot_be_less_than_shipped_units: cannot be less than the number of shipped
2246
- units.
2247
- cannot_destroy_line_item_as_inventory_units_have_shipped: Cannot destroy line
2248
- item as some inventory units have shipped.
2249
- exceeds_available_stock: exceeds available stock. Please ensure line items have
2250
- 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.
2251
2378
  is_too_large: is too large -- stock on hand cannot cover requested quantity!
2252
2379
  must_be_int: must be an integer
2253
2380
  must_be_non_negative: must be a non-negative value
@@ -38,7 +38,10 @@ module Solidus
38
38
 
39
39
  # TODO: Move installation of solidus_auth_devise to the
40
40
  # solidus_starter_frontend template
41
- BundlerContext.bundle_cleanly { `bundle add solidus_auth_devise` } unless auth_present?(installer_adds_auth)
41
+ unless auth_present?(installer_adds_auth)
42
+ BundlerContext.bundle_cleanly { `bundle add solidus_auth_devise` }
43
+ @generator_context.generate('solidus:auth:install --auto-run-migrations')
44
+ end
42
45
  `LOCATION="https://raw.githubusercontent.com/solidusio/solidus_starter_frontend/main/template.rb" bin/rails app:template`
43
46
  end
44
47
 
@@ -1,14 +1,14 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Spree
4
- VERSION = "3.2.0.alpha"
4
+ VERSION = "3.2.0"
5
5
 
6
6
  def self.solidus_version
7
7
  VERSION
8
8
  end
9
9
 
10
10
  def self.previous_solidus_minor_version
11
- '3.0'
11
+ '3.1'
12
12
  end
13
13
 
14
14
  def self.solidus_gem_version
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: solidus_core
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.2.0.alpha
4
+ version: 3.2.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Solidus Team
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2022-08-16 00:00:00.000000000 Z
11
+ date: 2022-08-18 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: actionmailer
@@ -714,6 +714,7 @@ files:
714
714
  - app/views/spree/shared/_error_messages.html.erb
715
715
  - app/views/spree/test_mailer/test_email.html.erb
716
716
  - app/views/spree/test_mailer/test_email.text.erb
717
+ - config/i18n-tasks.yml
717
718
  - config/initializers/assets.rb
718
719
  - config/initializers/friendly_id.rb
719
720
  - config/initializers/inflections.rb