solidus_core 2.11.10 → 3.3.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/Rakefile +6 -2
- data/app/assets/javascripts/spree.js.erb +0 -51
- data/app/controllers/spree/base_controller.rb +1 -1
- data/app/helpers/spree/base_helper.rb +1 -1
- data/app/helpers/spree/products_helper.rb +2 -2
- data/app/helpers/spree/store_helper.rb +0 -11
- data/app/mailers/spree/carton_mailer.rb +1 -5
- data/app/models/concerns/spree/active_storage_adapter/attachment.rb +30 -11
- data/app/models/concerns/spree/active_storage_adapter.rb +1 -1
- data/app/models/concerns/spree/adjustment_source.rb +0 -15
- data/app/models/concerns/spree/calculated_adjustments.rb +0 -18
- data/app/models/concerns/spree/default_price.rb +39 -10
- data/app/models/concerns/spree/ransackable_attributes.rb +24 -4
- data/app/models/concerns/spree/soft_deletable.rb +2 -4
- data/app/models/concerns/spree/user_address_book.rb +10 -37
- data/app/models/concerns/spree/user_methods.rb +38 -13
- data/app/models/spree/ability.rb +0 -37
- data/app/models/spree/address/name.rb +2 -20
- data/app/models/spree/address.rb +8 -186
- data/app/models/spree/adjustment.rb +7 -33
- data/app/models/spree/base.rb +0 -53
- data/app/models/spree/calculator/flat_fee.rb +21 -0
- data/app/models/spree/calculator/flexi_rate.rb +0 -5
- data/app/models/spree/calculator.rb +0 -7
- data/app/models/spree/carton.rb +1 -1
- data/app/models/spree/country.rb +2 -7
- data/app/models/spree/credit_card.rb +1 -28
- data/app/models/spree/customer_return.rb +5 -7
- data/app/models/spree/image/active_storage_attachment.rb +2 -7
- data/app/models/spree/image/paperclip_attachment.rb +2 -2
- data/app/models/spree/image.rb +0 -7
- data/app/models/spree/inventory_unit.rb +0 -21
- data/app/models/spree/line_item.rb +6 -49
- data/app/models/spree/log_entry.rb +74 -1
- data/app/models/spree/option_type.rb +1 -1
- data/app/models/spree/option_value.rb +10 -1
- data/app/models/spree/order/number_generator.rb +7 -1
- data/app/models/spree/order.rb +82 -170
- data/app/models/spree/order_cancellations.rb +4 -24
- data/app/models/spree/order_contents.rb +2 -1
- data/app/models/spree/order_inventory.rb +1 -1
- data/app/models/spree/order_merger.rb +2 -2
- data/app/models/spree/order_promotion.rb +1 -1
- data/app/models/spree/order_shipping.rb +6 -9
- data/app/models/spree/order_taxation.rb +6 -4
- data/app/models/spree/order_updater.rb +17 -16
- data/app/models/spree/payment/cancellation.rb +1 -1
- data/app/models/spree/payment/processing.rb +58 -55
- data/app/models/spree/payment.rb +0 -3
- data/app/models/spree/payment_create.rb +1 -13
- data/app/models/spree/payment_method/bogus_credit_card.rb +6 -7
- data/app/models/spree/payment_method/credit_card.rb +1 -3
- data/app/models/spree/payment_method/simple_bogus_credit_card.rb +8 -0
- data/app/models/spree/payment_method.rb +26 -110
- data/app/models/spree/price.rb +3 -3
- data/app/models/spree/product/scopes.rb +24 -33
- data/app/models/spree/product.rb +15 -42
- data/app/models/spree/product_property.rb +1 -1
- data/app/models/spree/promotion/actions/create_adjustment.rb +4 -3
- data/app/models/spree/promotion/actions/create_item_adjustments.rb +5 -9
- data/app/models/spree/promotion/actions/create_quantity_adjustments.rb +0 -3
- data/app/models/spree/promotion/actions/free_shipping.rb +1 -0
- data/app/models/spree/promotion/order_adjustments_recalculator.rb +92 -0
- data/app/models/spree/promotion/rules/item_total.rb +50 -6
- data/app/models/spree/promotion/rules/product.rb +20 -8
- data/app/models/spree/promotion/rules/store.rb +4 -0
- data/app/models/spree/promotion/rules/taxon.rb +6 -15
- data/app/models/spree/promotion/rules/user.rb +4 -0
- data/app/models/spree/promotion.rb +39 -32
- data/app/models/spree/promotion_action.rb +6 -9
- data/app/models/spree/promotion_code/batch_builder.rb +0 -14
- data/app/models/spree/promotion_code.rb +11 -7
- data/app/models/spree/promotion_handler/cart.rb +26 -6
- data/app/models/spree/promotion_rule.rb +5 -0
- data/app/models/spree/property.rb +1 -1
- data/app/models/spree/refund.rb +8 -52
- data/app/models/spree/reimbursement.rb +5 -43
- data/app/models/spree/reimbursement_performer.rb +2 -8
- data/app/models/spree/reimbursement_type/credit.rb +1 -4
- data/app/models/spree/reimbursement_type/reimbursement_helpers.rb +1 -2
- data/app/models/spree/reimbursement_type/store_credit.rb +1 -4
- data/app/models/spree/return_authorization.rb +2 -5
- data/app/models/spree/return_item.rb +4 -24
- data/app/models/spree/shipment.rb +3 -56
- data/app/models/spree/shipping_method.rb +0 -25
- data/app/models/spree/shipping_rate.rb +0 -2
- data/app/models/spree/shipping_rate_tax.rb +1 -1
- data/app/models/spree/state.rb +1 -5
- data/app/models/spree/stock/allocator/on_hand_first.rb +2 -2
- data/app/models/spree/stock/availability.rb +11 -3
- data/app/models/spree/stock/quantifier.rb +12 -8
- data/app/models/spree/stock/simple_coordinator.rb +8 -26
- data/app/models/spree/stock/splitter/base.rb +2 -7
- data/app/models/spree/stock_item.rb +2 -8
- data/app/models/spree/stock_location.rb +2 -2
- data/app/models/spree/stock_movement.rb +2 -2
- data/app/models/spree/store.rb +0 -12
- data/app/models/spree/store_credit.rb +14 -1
- data/app/models/spree/store_credit_category.rb +0 -32
- data/app/models/spree/store_credit_prioritizer.rb +17 -0
- data/app/models/spree/tax/item_tax.rb +3 -2
- data/app/models/spree/tax/order_tax.rb +3 -1
- data/app/models/spree/tax/tax_helpers.rb +2 -2
- data/app/models/spree/tax/tax_location.rb +4 -7
- data/app/models/spree/tax_calculator/default.rb +31 -0
- data/app/models/spree/tax_calculator/shipping_rate.rb +2 -13
- data/app/models/spree/tax_rate.rb +9 -27
- data/app/models/spree/taxon/active_storage_attachment.rb +2 -7
- data/app/models/spree/taxon/paperclip_attachment.rb +3 -8
- data/app/models/spree/taxon.rb +1 -12
- data/app/models/spree/taxonomy.rb +1 -1
- data/app/models/spree/user_address.rb +0 -5
- data/app/models/spree/user_last_url_storer/rules/authentication_rule.rb +1 -1
- data/app/models/spree/variant/price_selector.rb +34 -4
- data/app/models/spree/variant.rb +52 -66
- data/app/models/spree/zone.rb +1 -1
- data/app/subscribers/spree/mailer_subscriber.rb +4 -0
- data/app/subscribers/spree/order_mailer_subscriber.rb +35 -0
- data/config/i18n-tasks.yml +134 -0
- data/config/locales/en.yml +406 -263
- data/db/migrate/20180416083007_add_apply_to_all_to_variant_property_rule.rb +1 -1
- data/db/migrate/20201127212108_add_type_before_removal_to_spree_payment_methods.rb +7 -0
- data/db/migrate/20210312061050_change_column_null_on_prices.rb +7 -0
- data/db/migrate/20220317165036_set_promotions_with_any_policy_to_all_if_possible.rb +20 -0
- data/db/migrate/20220805202442_add_level_to_spree_tax_rates.rb +5 -0
- data/db/migrate/20221123152807_add_shipping_category_to_spree_variants.rb +5 -0
- data/db/seeds.rb +4 -1
- data/lib/generators/solidus/install/app_templates/authentication/custom.rb +21 -0
- data/lib/generators/solidus/install/app_templates/authentication/devise.rb +16 -0
- data/lib/generators/solidus/install/app_templates/authentication/existing.rb +10 -0
- data/lib/generators/solidus/install/app_templates/authentication/none.rb +1 -0
- data/lib/generators/solidus/install/app_templates/frontend/break_down_solidus_gem.rb +54 -0
- data/lib/generators/solidus/install/app_templates/frontend/classic.rb +16 -0
- data/lib/generators/solidus/install/app_templates/frontend/none.rb +2 -0
- data/lib/generators/solidus/install/app_templates/frontend/starter.rb +3 -0
- data/lib/generators/solidus/install/app_templates/payment_method/bolt.rb +13 -0
- data/lib/generators/solidus/install/app_templates/payment_method/none.rb +1 -0
- data/lib/generators/solidus/install/app_templates/payment_method/paypal.rb +10 -0
- data/lib/generators/solidus/install/install_generator.rb +247 -149
- data/lib/generators/solidus/install/templates/config/initializers/spree.rb.tt +15 -60
- data/lib/generators/solidus/install/templates/vendor/assets/javascripts/spree/backend/all.js +2 -2
- data/lib/generators/solidus/update/templates/config/initializers/new_solidus_defaults.rb.tt +30 -0
- data/lib/generators/solidus/update/update_generator.rb +112 -0
- data/lib/generators/spree/custom_user/custom_user_generator.rb +6 -4
- data/lib/generators/spree/custom_user/templates/authentication_helpers.rb.tt +2 -6
- data/lib/generators/spree/custom_user/templates/migration.rb.tt +7 -3
- data/lib/generators/spree/dummy/dummy_generator.rb +12 -9
- data/lib/generators/spree/dummy/templates/rails/application.rb.tt +0 -1
- data/lib/generators/spree/dummy/templates/rails/database.yml +81 -39
- data/lib/generators/spree/dummy/templates/rails/storage.yml +3 -0
- data/lib/generators/spree/dummy/templates/rails/test.rb +2 -0
- data/lib/spree/app_configuration.rb +134 -64
- data/lib/spree/bus.rb +20 -0
- data/lib/spree/core/class_constantizer.rb +2 -0
- data/lib/spree/core/controller_helpers/auth.rb +10 -15
- data/lib/spree/core/controller_helpers/current_host.rb +5 -3
- data/lib/spree/core/controller_helpers/order.rb +12 -32
- data/lib/spree/core/controller_helpers/payment_parameters.rb +0 -54
- data/lib/spree/core/controller_helpers/pricing.rb +0 -8
- data/lib/spree/core/controller_helpers/search.rb +1 -1
- data/lib/spree/core/controller_helpers/strong_parameters.rb +0 -4
- data/lib/spree/core/engine.rb +54 -50
- data/lib/spree/core/environment_extension.rb +0 -9
- data/lib/spree/core/product_filters.rb +1 -41
- data/lib/spree/core/role_configuration.rb +0 -14
- data/lib/spree/core/search/base.rb +18 -35
- data/lib/spree/core/state_machines/order.rb +2 -2
- data/lib/spree/core/state_machines.rb +2 -11
- data/lib/spree/core/stock_configuration.rb +18 -0
- data/lib/spree/core/validators/email.rb +5 -3
- data/lib/spree/core/version.rb +5 -1
- data/lib/spree/core/versioned_value.rb +75 -0
- data/lib/spree/core.rb +40 -11
- data/lib/spree/deprecation.rb +1 -1
- data/lib/spree/event/configuration.rb +0 -5
- data/lib/spree/event/subscriber.rb +0 -18
- data/lib/spree/event/subscriber_registry.rb +7 -7
- data/lib/spree/event.rb +1 -32
- data/lib/spree/i18n.rb +0 -22
- data/lib/spree/migrations.rb +13 -11
- data/lib/spree/money.rb +3 -18
- data/lib/spree/permission_sets/default_customer.rb +8 -1
- data/lib/spree/permitted_attributes.rb +17 -59
- data/lib/spree/preferences/configuration.rb +84 -0
- data/lib/spree/preferences/preferable.rb +13 -0
- data/lib/spree/preferences/preferable_class_methods.rb +37 -4
- data/lib/spree/preferences/preference_differentiator.rb +29 -0
- data/lib/spree/preferences/static_model_preferences.rb +25 -10
- data/lib/spree/rails_compatibility.rb +106 -0
- data/lib/spree/testing_support/blacklist_urls.rb +1 -1
- data/lib/spree/testing_support/bus_helpers.rb +101 -0
- data/lib/spree/testing_support/capybara_ext.rb +0 -30
- data/lib/spree/testing_support/common_rake.rb +71 -23
- data/lib/spree/testing_support/controller_requests.rb +0 -82
- data/lib/spree/testing_support/dummy_app/assets/javascripts/spree/backend/all.js +1 -1
- data/lib/spree/testing_support/dummy_app/assets/javascripts/spree/frontend/all.js +1 -1
- data/lib/spree/testing_support/dummy_app/database.yml +42 -22
- data/lib/spree/testing_support/dummy_app/migrations.rb +0 -3
- data/lib/spree/testing_support/dummy_app.rb +47 -34
- data/lib/spree/testing_support/factories/address_factory.rb +9 -6
- data/lib/spree/testing_support/factories/calculator_factory.rb +3 -0
- data/lib/spree/testing_support/factories/country_factory.rb +1 -2
- data/lib/spree/testing_support/factories/inventory_unit_factory.rb +1 -1
- data/lib/spree/testing_support/factories/order_factory.rb +8 -5
- data/lib/spree/testing_support/factories/product_factory.rb +4 -1
- data/lib/spree/testing_support/factories/promotion_factory.rb +28 -14
- data/lib/spree/testing_support/factories/refund_factory.rb +0 -1
- data/lib/spree/testing_support/factories/state_factory.rb +8 -2
- data/lib/spree/testing_support/factories/store_credit_factory.rb +4 -4
- data/lib/spree/testing_support/factories/user_factory.rb +6 -0
- data/lib/spree/testing_support/factory_bot.rb +2 -2
- data/lib/spree/testing_support/order_walkthrough.rb +6 -8
- data/lib/spree/testing_support/preferences.rb +0 -25
- data/lib/spree/testing_support/silence_deprecations.rb +9 -0
- data/lib/tasks/colorado_delivery_fee.rake +28 -0
- data/lib/tasks/payment_method.rake +29 -0
- data/lib/tasks/solidus/check_orders_with_invalid_email.rake +18 -0
- data/lib/tasks/solidus/delete_prices_with_nil_amount.rake +8 -0
- data/lib/tasks/solidus/split_promotions_with_any_match_policy.rake +33 -0
- data/solidus_core.gemspec +14 -7
- metadata +127 -78
- data/app/mailers/spree/test_mailer.rb +0 -13
- data/app/models/concerns/spree/user_payment_source.rb +0 -26
- data/app/models/spree/calculator/free_shipping.rb +0 -22
- data/app/models/spree/calculator/percent_per_item.rb +0 -51
- data/app/models/spree/calculator/price_sack.rb +0 -28
- data/app/models/spree/gateway/bogus.rb +0 -13
- data/app/models/spree/gateway/bogus_simple.rb +0 -13
- data/app/models/spree/gateway.rb +0 -14
- data/app/models/spree/order/checkout.rb +0 -244
- data/app/models/spree/order_capturing.rb +0 -50
- data/app/models/spree/promotion_handler/free_shipping.rb +0 -9
- data/app/models/spree/tax/shipping_rate_taxer.rb +0 -24
- data/lib/generators/solidus/install/templates/vendor/assets/javascripts/spree/frontend/all.js +0 -10
- data/lib/generators/solidus/install/templates/vendor/assets/stylesheets/spree/frontend/all.css +0 -9
- data/lib/generators/spree/install/install_generator.rb +0 -15
- data/lib/solidus/migrations/rename_gateways.rb +0 -41
- data/lib/spree/core/current_store.rb +0 -24
- data/lib/spree/paranoia_deprecations.rb +0 -41
- data/lib/spree/promo/environment.rb +0 -12
- data/lib/spree/testing_support/bar_ability.rb +0 -19
- data/lib/tasks/core.rake +0 -104
- data/lib/tasks/email.rake +0 -12
- data/lib/tasks/migrations/copy_order_bill_address_to_credit_card.rake +0 -119
- data/lib/tasks/migrations/migrate_address_names.rake +0 -158
- data/lib/tasks/migrations/migrate_default_billing_addresses_to_address_book.rake +0 -26
- data/lib/tasks/migrations/migrate_shipping_rate_taxes.rake +0 -22
- data/lib/tasks/migrations/migrate_user_addresses.rake +0 -34
- data/lib/tasks/migrations/rename_gateways.rake +0 -23
- data/lib/tasks/order_capturing.rake +0 -27
- data/lib/tasks/upgrade.rake +0 -13
data/config/locales/en.yml
CHANGED
@@ -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:
|
@@ -26,8 +24,6 @@ en:
|
|
26
24
|
address2: Street Address (cont'd)
|
27
25
|
city: City
|
28
26
|
company: Company
|
29
|
-
firstname: First Name
|
30
|
-
lastname: Last Name
|
31
27
|
name: Name
|
32
28
|
phone: Phone
|
33
29
|
zipcode: Zip Code
|
@@ -76,7 +72,6 @@ en:
|
|
76
72
|
created_at: Date/Time
|
77
73
|
name: Name
|
78
74
|
number: Return Number
|
79
|
-
pre_tax_total: Pre-Tax Total
|
80
75
|
reimbursement_status: Reimbursement status
|
81
76
|
total: Total
|
82
77
|
total_excluding_vat: Pre-Tax Total
|
@@ -97,8 +92,8 @@ en:
|
|
97
92
|
quantity: Quantity
|
98
93
|
total: Total price
|
99
94
|
spree/log_entry:
|
100
|
-
details: Message
|
101
95
|
created_at: Date/Time
|
96
|
+
details: Message
|
102
97
|
spree/option_type:
|
103
98
|
name: Name
|
104
99
|
presentation: Presentation
|
@@ -130,8 +125,6 @@ en:
|
|
130
125
|
spree/order/bill_address:
|
131
126
|
address1: Billing address street
|
132
127
|
city: Billing address city
|
133
|
-
firstname: Billing address first name
|
134
|
-
lastname: Billing address last name
|
135
128
|
name: Billing address name
|
136
129
|
phone: Billing address phone
|
137
130
|
state: Billing address state
|
@@ -139,8 +132,6 @@ en:
|
|
139
132
|
spree/order/ship_address:
|
140
133
|
address1: Shipping address street
|
141
134
|
city: Shipping address city
|
142
|
-
firstname: Shipping address first name
|
143
|
-
lastname: Shipping address last name
|
144
135
|
name: Shipping address name
|
145
136
|
phone: Shipping address phone
|
146
137
|
state: Shipping address state
|
@@ -152,8 +143,8 @@ en:
|
|
152
143
|
response_code: Transaction ID
|
153
144
|
state: State
|
154
145
|
spree/payment_capture_event:
|
155
|
-
created_at: Date/Time
|
156
146
|
amount: Amount
|
147
|
+
created_at: Date/Time
|
157
148
|
spree/payment_method:
|
158
149
|
active: Active
|
159
150
|
auto_capture: Auto Capture
|
@@ -220,8 +211,7 @@ en:
|
|
220
211
|
description: Must be the customer's first order
|
221
212
|
spree/promotion/rules/first_repeat_purchase_since:
|
222
213
|
description: Available only to user who have not purchased in a while
|
223
|
-
form_text: 'Apply this promotion to users whose last order was more than X
|
224
|
-
days ago: '
|
214
|
+
form_text: 'Apply this promotion to users whose last order was more than X days ago: '
|
225
215
|
spree/promotion/rules/item_total:
|
226
216
|
description: Order total meets these criteria
|
227
217
|
spree/promotion/rules/landing_page:
|
@@ -282,7 +272,6 @@ en:
|
|
282
272
|
type: Type
|
283
273
|
spree/return_authorization:
|
284
274
|
amount: Amount
|
285
|
-
pre_tax_total: Pre-Tax Total
|
286
275
|
total_excluding_vat: Pre-Tax Total
|
287
276
|
spree/return_item:
|
288
277
|
acceptance_status: Acceptance Status
|
@@ -313,15 +302,15 @@ en:
|
|
313
302
|
name: Name
|
314
303
|
spree/shipping_method:
|
315
304
|
admin_name: Internal Name
|
305
|
+
available_to_all: Available to all stock locations
|
316
306
|
available_to_users: Available to users
|
317
307
|
carrier: Carrier
|
318
308
|
code: Code
|
319
309
|
display_on: Display
|
320
310
|
name: Name
|
321
311
|
service_level: Service Level
|
322
|
-
tracking_url: Tracking URL
|
323
312
|
stock_locations: Stock Locations
|
324
|
-
|
313
|
+
tracking_url: Tracking URL
|
325
314
|
spree/shipping_rate:
|
326
315
|
amount: Amount
|
327
316
|
label: Label
|
@@ -357,12 +346,12 @@ en:
|
|
357
346
|
variant: Variant
|
358
347
|
spree/store:
|
359
348
|
available_locales: Locales Available in the Storefront
|
349
|
+
bcc_email: BCC Email
|
360
350
|
cart_tax_country_iso: Tax Country for Empty Carts
|
361
351
|
code: Slug
|
362
352
|
default: Default
|
363
353
|
default_currency: Default Currency
|
364
354
|
mail_from_address: Mail From Address
|
365
|
-
bcc_email: BCC Email
|
366
355
|
meta_description: Meta Description
|
367
356
|
meta_keywords: Meta Keywords
|
368
357
|
name: Site Name
|
@@ -373,7 +362,7 @@ en:
|
|
373
362
|
amount_authorized: Amount Authorized
|
374
363
|
amount_credited: Amount Credited
|
375
364
|
amount_used: Amount Used
|
376
|
-
category_id:
|
365
|
+
category_id: Category
|
377
366
|
created_at: Issued On
|
378
367
|
created_by_id: Created By
|
379
368
|
invalidated_at: Invalidated
|
@@ -426,6 +415,7 @@ en:
|
|
426
415
|
depth: Depth
|
427
416
|
height: Height
|
428
417
|
price: Price
|
418
|
+
shipping_category: Variant Shipping Category
|
429
419
|
sku: SKU
|
430
420
|
tax_category: Variant Tax Category
|
431
421
|
weight: Weight
|
@@ -442,17 +432,14 @@ en:
|
|
442
432
|
spree/calculator/tiered_flat_rate:
|
443
433
|
attributes:
|
444
434
|
base:
|
445
|
-
keys_should_be_positive_number: Tier keys should all be numbers larger
|
446
|
-
than 0
|
435
|
+
keys_should_be_positive_number: Tier keys should all be numbers larger than 0
|
447
436
|
preferred_tiers:
|
448
437
|
should_be_hash: should be a hash
|
449
438
|
spree/calculator/tiered_percent:
|
450
439
|
attributes:
|
451
440
|
base:
|
452
|
-
keys_should_be_positive_number: Tier keys should all be numbers larger
|
453
|
-
|
454
|
-
values_should_be_percent: Tier values should all be percentages between
|
455
|
-
0% and 100%
|
441
|
+
keys_should_be_positive_number: Tier keys should all be numbers larger than 0
|
442
|
+
values_should_be_percent: Tier values should all be percentages between 0% and 100%
|
456
443
|
preferred_tiers:
|
457
444
|
should_be_hash: should be a hash
|
458
445
|
spree/classification:
|
@@ -467,15 +454,14 @@ en:
|
|
467
454
|
spree/inventory_unit:
|
468
455
|
attributes:
|
469
456
|
base:
|
470
|
-
cannot_destroy_shipment_state: Cannot destroy an inventory unit for
|
471
|
-
a %{state} shipment
|
457
|
+
cannot_destroy_shipment_state: Cannot destroy an inventory unit for a %{state} shipment
|
472
458
|
state:
|
473
459
|
cannot_destroy: Cannot destroy a %{state} inventory unit
|
474
460
|
spree/line_item:
|
475
461
|
attributes:
|
476
462
|
price:
|
477
|
-
not_a_number: is not valid
|
478
463
|
does_not_match_order_currency: Line item price currency must match order currency!
|
464
|
+
not_a_number: is not valid
|
479
465
|
spree/price:
|
480
466
|
attributes:
|
481
467
|
currency:
|
@@ -495,21 +481,17 @@ en:
|
|
495
481
|
spree/reimbursement:
|
496
482
|
attributes:
|
497
483
|
base:
|
498
|
-
return_items_order_id_does_not_match: One or more of the return items
|
499
|
-
specified do not belong to the same order as the reimbursement.
|
484
|
+
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.
|
500
485
|
spree/return_item:
|
501
486
|
attributes:
|
502
487
|
inventory_unit:
|
503
|
-
other_completed_return_item_exists: "%{inventory_unit_id} has already
|
504
|
-
been taken by return item %{return_item_id}"
|
488
|
+
other_completed_return_item_exists: "%{inventory_unit_id} has already been taken by return item %{return_item_id}"
|
505
489
|
reimbursement:
|
506
|
-
cannot_be_associated_unless_accepted: cannot be associated to a return
|
507
|
-
item that is not accepted.
|
490
|
+
cannot_be_associated_unless_accepted: cannot be associated to a return item that is not accepted.
|
508
491
|
spree/shipment:
|
509
492
|
attributes:
|
510
493
|
base:
|
511
|
-
cannot_remove_items_shipment_state: Cannot remove items from a %{state}
|
512
|
-
shipment
|
494
|
+
cannot_remove_items_shipment_state: Cannot remove items from a %{state} shipment
|
513
495
|
state:
|
514
496
|
cannot_destroy: Cannot destroy a %{state} shipment
|
515
497
|
spree/store:
|
@@ -546,6 +528,9 @@ en:
|
|
546
528
|
spree/calculator/distributed_amount:
|
547
529
|
one: Distributed Amount
|
548
530
|
other: Distributed Amount
|
531
|
+
spree/calculator/flat_fee:
|
532
|
+
one: Flat Fee
|
533
|
+
other: Flat Fee
|
549
534
|
spree/calculator/flat_percent_item_total:
|
550
535
|
one: Flat Percent
|
551
536
|
other: Flat Percent
|
@@ -770,6 +755,10 @@ en:
|
|
770
755
|
not_saved:
|
771
756
|
one: '1 error prohibited this %{resource} from being saved:'
|
772
757
|
other: "%{count} errors prohibited this %{resource} from being saved:"
|
758
|
+
number:
|
759
|
+
percentage:
|
760
|
+
format:
|
761
|
+
precision: 1
|
773
762
|
spree:
|
774
763
|
abbreviation: Abbreviation
|
775
764
|
accept: Accept
|
@@ -811,8 +800,6 @@ en:
|
|
811
800
|
add_option_value: Add Option Value
|
812
801
|
add_product: Add Product
|
813
802
|
add_product_properties: Add Product Properties
|
814
|
-
add_variant_properties: Add Variant Properties
|
815
|
-
applies_to_all_variant_properties: Applies to all Variant Properties above
|
816
803
|
add_rule_of_type: Add rule of type
|
817
804
|
add_state: Add State
|
818
805
|
add_stock: Add Stock
|
@@ -834,6 +821,7 @@ en:
|
|
834
821
|
line_item: "%{promotion} (%{promotion_name})"
|
835
822
|
order: "%{promotion} (%{promotion_name})"
|
836
823
|
tax_rates:
|
824
|
+
flat_fee: "%{name}"
|
837
825
|
sales_tax: "%{name}"
|
838
826
|
sales_tax_with_rate: "%{name} %{amount}"
|
839
827
|
vat: "%{name} (Included in Price)"
|
@@ -862,8 +850,7 @@ en:
|
|
862
850
|
payments:
|
863
851
|
source_forms:
|
864
852
|
storecredit:
|
865
|
-
not_supported: Creating store credit payments via the admin is not currently
|
866
|
-
supported.
|
853
|
+
not_supported: Creating store credit payments via the admin is not currently supported.
|
867
854
|
prices:
|
868
855
|
any_country: Any Country
|
869
856
|
edit:
|
@@ -872,8 +859,17 @@ en:
|
|
872
859
|
amount_greater_than: Amount greater than
|
873
860
|
amount_less_than: Amount less than
|
874
861
|
new_price: New Price
|
862
|
+
master_variant_table:
|
863
|
+
master_variant: Master Variant Prices
|
875
864
|
new:
|
876
865
|
new_price: New Price
|
866
|
+
table:
|
867
|
+
variant_pricing: Variant Prices
|
868
|
+
promotion_status:
|
869
|
+
active: Active
|
870
|
+
expired: Expired
|
871
|
+
inactive: Inactive
|
872
|
+
not_started: Not started
|
877
873
|
promotions:
|
878
874
|
actions:
|
879
875
|
calculator_label: Calculated by
|
@@ -890,14 +886,9 @@ en:
|
|
890
886
|
expires_at_placeholder: Never
|
891
887
|
general: General
|
892
888
|
starts_at_placeholder: Immediately
|
893
|
-
promotion_status:
|
894
|
-
active: Active
|
895
|
-
expired: Expired
|
896
|
-
inactive: Inactive
|
897
|
-
not_started: Not started
|
898
889
|
shipping_methods:
|
899
890
|
form:
|
900
|
-
stock_locations_placeholder:
|
891
|
+
stock_locations_placeholder: Choose stock locations
|
901
892
|
stock_locations:
|
902
893
|
form:
|
903
894
|
address: Address
|
@@ -923,10 +914,9 @@ en:
|
|
923
914
|
amount_used_cannot_be_greater: cannot be greater than the credited amount
|
924
915
|
amount_used_not_zero: is greater than zero. Can not delete store credit
|
925
916
|
cannot_be_modified: cannot be modified
|
926
|
-
cannot_change_used_store_credit: Store credit that has been claimed cannot
|
927
|
-
be changed
|
928
|
-
update_reason_required: A reason for the change must be selected
|
917
|
+
cannot_change_used_store_credit: Store credit that has been claimed cannot be changed
|
929
918
|
store_credit_reason_required: A reason for the change must be selected
|
919
|
+
update_reason_required: A reason for the change must be selected
|
930
920
|
history: Store credit history
|
931
921
|
invalidate_store_credit: Invalidating store credit
|
932
922
|
invalidated: Invalidated
|
@@ -991,10 +981,8 @@ en:
|
|
991
981
|
edit:
|
992
982
|
api_access: API Access
|
993
983
|
clear_key: Clear key
|
994
|
-
confirm_clear_key: Are you sure you want to clear this user's API key? It
|
995
|
-
|
996
|
-
confirm_regenerate_key: Are you sure you want to regenerate this user's
|
997
|
-
API key? It will invalidate the existing key.
|
984
|
+
confirm_clear_key: Are you sure you want to clear this user's API key? It will invalidate the existing key.
|
985
|
+
confirm_regenerate_key: Are you sure you want to regenerate this user's API key? It will invalidate the existing key.
|
998
986
|
generate_key: Generate API key
|
999
987
|
key: Key
|
1000
988
|
no_key: No key
|
@@ -1006,12 +994,16 @@ en:
|
|
1006
994
|
edit_variant: Edit Variant
|
1007
995
|
form:
|
1008
996
|
dimensions: Dimensions
|
997
|
+
options: Options
|
1009
998
|
pricing: Pricing
|
1010
|
-
pricing_hint: These values are populated from the product details page and
|
1011
|
-
|
999
|
+
pricing_hint: These values are populated from the product details page and can be overridden below
|
1000
|
+
properties: Properties
|
1001
|
+
use_product_shipping_category: Use Product Shipping Category
|
1012
1002
|
use_product_tax_category: Use Product Tax Category
|
1013
1003
|
new:
|
1014
1004
|
new_variant: New Variant
|
1005
|
+
table:
|
1006
|
+
no_variants_found: No variants found for '%{term}'
|
1015
1007
|
table_filter:
|
1016
1008
|
show_deleted: Show Deleted Variants
|
1017
1009
|
administration: Administration
|
@@ -1034,6 +1026,7 @@ en:
|
|
1034
1026
|
analytics_desc_list_4: It's completely free!
|
1035
1027
|
analytics_trackers: Analytics Trackers
|
1036
1028
|
and: and
|
1029
|
+
applies_to_all_variant_properties: Applies to all Variant Properties above
|
1037
1030
|
apply_code: Apply Code
|
1038
1031
|
approve: Approve
|
1039
1032
|
approved_at: Approved at
|
@@ -1091,13 +1084,13 @@ en:
|
|
1091
1084
|
base_amount: Base Amount
|
1092
1085
|
base_percent: Base Percent
|
1093
1086
|
bill_address: Bill Address
|
1087
|
+
bill_address_required: Valid billing address required
|
1094
1088
|
billing: Billing
|
1095
1089
|
billing_address: Billing Address
|
1096
1090
|
both: Both
|
1097
1091
|
calculated_reimbursements: Calculated Reimbursements
|
1098
1092
|
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
|
1093
|
+
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
1094
|
cancel: Cancel
|
1102
1095
|
cancel_inventory: Cancel Items
|
1103
1096
|
canceled: Canceled
|
@@ -1105,19 +1098,14 @@ en:
|
|
1105
1098
|
canceler: Canceler
|
1106
1099
|
cancellation: Cancellation
|
1107
1100
|
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}
|
1101
|
+
cannot_create_payment_without_payment_methods_html: You cannot create a payment for an order without any payment methods defined. %{link}
|
1110
1102
|
cannot_create_returns: Cannot create returns as this order has no shipped units.
|
1111
1103
|
cannot_edit_orders: You may only edit your current shopping cart.
|
1112
1104
|
cannot_perform_operation: Cannot perform requested operation
|
1113
|
-
cannot_rebuild_shipments_order_completed: Cannot rebuild shipments for a completed
|
1114
|
-
|
1115
|
-
|
1116
|
-
|
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.
|
1105
|
+
cannot_rebuild_shipments_order_completed: Cannot rebuild shipments for a completed order.
|
1106
|
+
cannot_rebuild_shipments_shipments_not_pending: Cannot rebuild shipments for an order with non-pending shipments.
|
1107
|
+
cannot_set_shipping_method_without_address: Cannot set shipping method until customer details are provided.
|
1108
|
+
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
1109
|
capture: Capture
|
1122
1110
|
capture_events: Capture events
|
1123
1111
|
card_code: Card Code
|
@@ -1148,8 +1136,7 @@ en:
|
|
1148
1136
|
city: City
|
1149
1137
|
clear_cache: Clear Cache
|
1150
1138
|
clear_cache_ok: Cache was flushed
|
1151
|
-
clear_cache_warning: Clearing cache will temporarily reduce the performance of
|
1152
|
-
your store.
|
1139
|
+
clear_cache_warning: Clearing cache will temporarily reduce the performance of your store.
|
1153
1140
|
clone: Clone
|
1154
1141
|
close: Close
|
1155
1142
|
closed: Closed
|
@@ -1167,37 +1154,278 @@ en:
|
|
1167
1154
|
continue_shopping: Continue shopping
|
1168
1155
|
cost_currency: Cost Currency
|
1169
1156
|
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.
|
1157
|
+
could_not_connect_to_jirafe: Could not connect to Jirafe to sync data. This will be automatically retried later.
|
1172
1158
|
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.
|
1159
|
+
could_not_create_stock_movement: There was a problem saving this stock movement. Please try again.
|
1175
1160
|
count_on_hand: Count On Hand
|
1176
1161
|
countries: Countries
|
1177
1162
|
country: Country
|
1178
1163
|
country_based: Country Based
|
1179
1164
|
country_name: Name
|
1180
1165
|
country_names:
|
1166
|
+
AD: Andorra
|
1167
|
+
AE: United Arab Emirates
|
1168
|
+
AF: Afghanistan
|
1169
|
+
AG: Antigua and Barbuda
|
1170
|
+
AI: Anguilla
|
1171
|
+
AL: Albania
|
1172
|
+
AM: Armenia
|
1173
|
+
AO: Angola
|
1174
|
+
AQ: Antarctica
|
1175
|
+
AR: Argentina
|
1176
|
+
AS: American Samoa
|
1177
|
+
AT: Austria
|
1178
|
+
AU: Australia
|
1179
|
+
AW: Aruba
|
1180
|
+
AX: Åland Islands
|
1181
|
+
AZ: Azerbaijan
|
1182
|
+
BA: Bosnia and Herzegovina
|
1183
|
+
BB: Barbados
|
1184
|
+
BD: Bangladesh
|
1185
|
+
BE: Belgium
|
1186
|
+
BF: Burkina Faso
|
1187
|
+
BG: Bulgaria
|
1188
|
+
BH: Bahrain
|
1189
|
+
BI: Burundi
|
1190
|
+
BJ: Benin
|
1191
|
+
BL: Saint Barthélemy
|
1192
|
+
BM: Bermuda
|
1193
|
+
BN: Brunei Darussalam
|
1194
|
+
BO: Bolivia, Plurinational State of
|
1195
|
+
BQ: Bonaire, Sint Eustatius and Saba
|
1196
|
+
BR: Brazil
|
1197
|
+
BS: Bahamas
|
1198
|
+
BT: Bhutan
|
1199
|
+
BV: Bouvet Island
|
1200
|
+
BW: Botswana
|
1201
|
+
BY: Belarus
|
1202
|
+
BZ: Belize
|
1181
1203
|
CA: Canada
|
1204
|
+
CC: Cocos (Keeling) Islands
|
1205
|
+
CD: Congo, The Democratic Republic of the
|
1206
|
+
CF: Central African Republic
|
1207
|
+
CG: Congo
|
1208
|
+
CH: Switzerland
|
1209
|
+
CI: Côte d'Ivoire
|
1210
|
+
CK: Cook Islands
|
1211
|
+
CL: Chile
|
1212
|
+
CM: Cameroon
|
1213
|
+
CN: China
|
1214
|
+
CO: Colombia
|
1215
|
+
CR: Costa Rica
|
1216
|
+
CU: Cuba
|
1217
|
+
CV: Cabo Verde
|
1218
|
+
CW: Curaçao
|
1219
|
+
CX: Christmas Island
|
1220
|
+
CY: Cyprus
|
1221
|
+
CZ: Czechia
|
1222
|
+
DE: Germany
|
1223
|
+
DJ: Djibouti
|
1224
|
+
DK: Denmark
|
1225
|
+
DM: Dominica
|
1226
|
+
DO: Dominican Republic
|
1227
|
+
DZ: Algeria
|
1228
|
+
EC: Ecuador
|
1229
|
+
EE: Estonia
|
1230
|
+
EG: Egypt
|
1231
|
+
EH: Western Sahara
|
1232
|
+
ER: Eritrea
|
1233
|
+
ES: Spain
|
1234
|
+
ET: Ethiopia
|
1235
|
+
FI: Finland
|
1236
|
+
FJ: Fiji
|
1237
|
+
FK: Falkland Islands (Malvinas)
|
1238
|
+
FM: Micronesia, Federated States of
|
1239
|
+
FO: Faroe Islands
|
1240
|
+
FR: France
|
1182
1241
|
FRA: France
|
1242
|
+
GA: Gabon
|
1243
|
+
GB: United Kingdom
|
1244
|
+
GD: Grenada
|
1245
|
+
GE: Georgia
|
1246
|
+
GF: French Guiana
|
1247
|
+
GG: Guernsey
|
1248
|
+
GH: Ghana
|
1249
|
+
GI: Gibraltar
|
1250
|
+
GL: Greenland
|
1251
|
+
GM: Gambia
|
1252
|
+
GN: Guinea
|
1253
|
+
GP: Guadeloupe
|
1254
|
+
GQ: Equatorial Guinea
|
1255
|
+
GR: Greece
|
1256
|
+
GS: South Georgia and the South Sandwich Islands
|
1257
|
+
GT: Guatemala
|
1258
|
+
GU: Guam
|
1259
|
+
GW: Guinea-Bissau
|
1260
|
+
GY: Guyana
|
1261
|
+
HK: Hong Kong
|
1262
|
+
HM: Heard Island and McDonald Islands
|
1263
|
+
HN: Honduras
|
1264
|
+
HR: Croatia
|
1265
|
+
HT: Haiti
|
1266
|
+
HU: Hungary
|
1267
|
+
ID: Indonesia
|
1268
|
+
IE: Ireland
|
1269
|
+
IL: Israel
|
1270
|
+
IM: Isle of Man
|
1271
|
+
IN: India
|
1272
|
+
IO: British Indian Ocean Territory
|
1273
|
+
IQ: Iraq
|
1274
|
+
IR: Iran, Islamic Republic of
|
1275
|
+
IS: Iceland
|
1276
|
+
IT: Italy
|
1183
1277
|
ITA: Italy
|
1278
|
+
JE: Jersey
|
1279
|
+
JM: Jamaica
|
1280
|
+
JO: Jordan
|
1281
|
+
JP: Japan
|
1282
|
+
KE: Kenya
|
1283
|
+
KG: Kyrgyzstan
|
1284
|
+
KH: Cambodia
|
1285
|
+
KI: Kiribati
|
1286
|
+
KM: Comoros
|
1287
|
+
KN: Saint Kitts and Nevis
|
1288
|
+
KP: Korea, Democratic People's Republic of
|
1289
|
+
KR: Korea, Republic of
|
1290
|
+
KW: Kuwait
|
1291
|
+
KY: Cayman Islands
|
1292
|
+
KZ: Kazakhstan
|
1293
|
+
LA: Lao People's Democratic Republic
|
1294
|
+
LB: Lebanon
|
1295
|
+
LC: Saint Lucia
|
1296
|
+
LI: Liechtenstein
|
1297
|
+
LK: Sri Lanka
|
1298
|
+
LR: Liberia
|
1299
|
+
LS: Lesotho
|
1300
|
+
LT: Lithuania
|
1301
|
+
LU: Luxembourg
|
1302
|
+
LV: Latvia
|
1303
|
+
LY: Libya
|
1304
|
+
MA: Morocco
|
1305
|
+
MC: Monaco
|
1306
|
+
MD: Moldova, Republic of
|
1307
|
+
ME: Montenegro
|
1308
|
+
MF: Saint Martin (French part)
|
1309
|
+
MG: Madagascar
|
1310
|
+
MH: Marshall Islands
|
1311
|
+
MK: North Macedonia
|
1312
|
+
ML: Mali
|
1313
|
+
MM: Myanmar
|
1314
|
+
MN: Mongolia
|
1315
|
+
MO: Macao
|
1316
|
+
MP: Northern Mariana Islands
|
1317
|
+
MQ: Martinique
|
1318
|
+
MR: Mauritania
|
1319
|
+
MS: Montserrat
|
1320
|
+
MT: Malta
|
1321
|
+
MU: Mauritius
|
1322
|
+
MV: Maldives
|
1323
|
+
MW: Malawi
|
1324
|
+
MX: Mexico
|
1325
|
+
MY: Malaysia
|
1326
|
+
MZ: Mozambique
|
1327
|
+
NA: Namibia
|
1328
|
+
NC: New Caledonia
|
1329
|
+
NE: Niger
|
1330
|
+
NF: Norfolk Island
|
1331
|
+
NG: Nigeria
|
1332
|
+
NI: Nicaragua
|
1333
|
+
NL: Netherlands
|
1334
|
+
'NO': Norway
|
1335
|
+
NP: Nepal
|
1336
|
+
NR: Nauru
|
1337
|
+
NU: Niue
|
1338
|
+
NZ: New Zealand
|
1339
|
+
OM: Oman
|
1340
|
+
PA: Panama
|
1341
|
+
PE: Peru
|
1342
|
+
PF: French Polynesia
|
1343
|
+
PG: Papua New Guinea
|
1344
|
+
PH: Philippines
|
1345
|
+
PK: Pakistan
|
1346
|
+
PL: Poland
|
1347
|
+
PM: Saint Pierre and Miquelon
|
1348
|
+
PN: Pitcairn
|
1349
|
+
PR: Puerto Rico
|
1350
|
+
PS: Palestine, State of
|
1351
|
+
PT: Portugal
|
1352
|
+
PW: Palau
|
1353
|
+
PY: Paraguay
|
1354
|
+
QA: Qatar
|
1355
|
+
RE: Réunion
|
1356
|
+
RO: Romania
|
1357
|
+
RS: Serbia
|
1358
|
+
RU: Russia
|
1359
|
+
RW: Rwanda
|
1360
|
+
SA: Saudi Arabia
|
1361
|
+
SB: Solomon Islands
|
1362
|
+
SC: Seychelles
|
1363
|
+
SD: Sudan
|
1364
|
+
SE: Sweden
|
1365
|
+
SG: Singapore
|
1366
|
+
SH: Saint Helena, Ascension and Tristan da Cunha
|
1367
|
+
SI: Slovenia
|
1368
|
+
SJ: Svalbard and Jan Mayen
|
1369
|
+
SK: Slovakia
|
1370
|
+
SL: Sierra Leone
|
1371
|
+
SM: San Marino
|
1372
|
+
SN: Senegal
|
1373
|
+
SO: Somalia
|
1374
|
+
SR: Suriname
|
1375
|
+
SS: South Sudan
|
1376
|
+
ST: Sao Tome and Principe
|
1377
|
+
SV: El Salvador
|
1378
|
+
SX: Sint Maarten (Dutch part)
|
1379
|
+
SY: Syrian Arab Republic
|
1380
|
+
SZ: Eswatini
|
1381
|
+
TC: Turks and Caicos Islands
|
1382
|
+
TD: Chad
|
1383
|
+
TF: French Southern Territories
|
1384
|
+
TG: Togo
|
1385
|
+
TH: Thailand
|
1386
|
+
TJ: Tajikistan
|
1387
|
+
TK: Tokelau
|
1388
|
+
TL: Timor-Leste
|
1389
|
+
TM: Turkmenistan
|
1390
|
+
TN: Tunisia
|
1391
|
+
TO: Tonga
|
1392
|
+
TR: Turkey
|
1393
|
+
TT: Trinidad and Tobago
|
1394
|
+
TV: Tuvalu
|
1395
|
+
TW: Taiwan
|
1396
|
+
TZ: Tanzania, United Republic of
|
1397
|
+
UA: Ukraine
|
1398
|
+
UG: Uganda
|
1399
|
+
UM: United States Minor Outlying Islands
|
1184
1400
|
US: United States of America
|
1401
|
+
UY: Uruguay
|
1402
|
+
UZ: Uzbekistan
|
1403
|
+
VA: Holy See (Vatican City State)
|
1404
|
+
VC: Saint Vincent and the Grenadines
|
1405
|
+
VE: Venezuela, Bolivarian Republic of
|
1406
|
+
VG: Virgin Islands, British
|
1407
|
+
VI: Virgin Islands, U.S.
|
1408
|
+
VN: Vietnam
|
1409
|
+
VU: Vanuatu
|
1410
|
+
WF: Wallis and Futuna
|
1411
|
+
WS: Samoa
|
1412
|
+
YE: Yemen
|
1413
|
+
YT: Mayotte
|
1414
|
+
ZA: South Africa
|
1415
|
+
ZM: Zambia
|
1416
|
+
ZW: Zimbabwe
|
1185
1417
|
coupon: Coupon
|
1186
1418
|
coupon_code: Coupon code
|
1187
|
-
coupon_code_already_applied: The coupon code has already been applied to this
|
1188
|
-
order
|
1419
|
+
coupon_code_already_applied: The coupon code has already been applied to this order
|
1189
1420
|
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
|
1421
|
+
coupon_code_better_exists: The previously applied coupon code results in a better deal
|
1192
1422
|
coupon_code_expired: The coupon code is expired
|
1193
1423
|
coupon_code_max_usage: Coupon code usage limit exceeded
|
1194
1424
|
coupon_code_not_eligible: This coupon code is not eligible for this order
|
1195
1425
|
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.
|
1426
|
+
coupon_code_not_present: The coupon code you are trying to remove is not present on this order.
|
1198
1427
|
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.
|
1428
|
+
coupon_code_unknown_error: This coupon code could not be applied to the cart at this time.
|
1201
1429
|
create: Create
|
1202
1430
|
create_a_new_account: Create a new account
|
1203
1431
|
create_one: Create One.
|
@@ -1228,10 +1456,8 @@ en:
|
|
1228
1456
|
jirafe:
|
1229
1457
|
app_id: App ID
|
1230
1458
|
app_token: App Token
|
1231
|
-
currently_unavailable: Jirafe is currently unavailable. Spree will automatically
|
1232
|
-
|
1233
|
-
explanation: The fields below may already be populated if you chose to register
|
1234
|
-
with Jirafe from the admin dashboard.
|
1459
|
+
currently_unavailable: Jirafe is currently unavailable. Spree will automatically connect to Jirafe once it is available.
|
1460
|
+
explanation: The fields below may already be populated if you chose to register with Jirafe from the admin dashboard.
|
1235
1461
|
header: Jirafe Analytics Settings
|
1236
1462
|
site_id: Site ID
|
1237
1463
|
token: Token
|
@@ -1247,8 +1473,7 @@ en:
|
|
1247
1473
|
default_refund_amount: Default Refund Amount
|
1248
1474
|
delete: Delete
|
1249
1475
|
deleted_successfully: Deleted successfully
|
1250
|
-
deleted_variants_present: Some line items in this order have products that are
|
1251
|
-
no longer available.
|
1476
|
+
deleted_variants_present: Some line items in this order have products that are no longer available.
|
1252
1477
|
delivery: Delivery
|
1253
1478
|
depth: Depth
|
1254
1479
|
description: Description
|
@@ -1288,25 +1513,17 @@ en:
|
|
1288
1513
|
editing_zone: Editing Zone
|
1289
1514
|
eligibility_errors:
|
1290
1515
|
messages:
|
1291
|
-
has_excluded_product: Your cart contains a product that prevents this coupon
|
1292
|
-
|
1293
|
-
|
1294
|
-
|
1295
|
-
|
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}.
|
1516
|
+
has_excluded_product: Your cart contains a product that prevents this coupon code from being applied.
|
1517
|
+
has_excluded_taxon: Your cart contains a product from an excluded category that prevents this coupon code from being applied.
|
1518
|
+
item_total_doesnt_match_with_operator: This coupon code can't be applied to orders %{operator} %{amount}.
|
1519
|
+
item_total_less_than: This coupon code can't be applied to orders less than %{amount}.
|
1520
|
+
item_total_less_than_or_equal: This coupon code can't be applied to orders less than or equal to %{amount}.
|
1299
1521
|
limit_once_per_user: This coupon code can only be used once per user.
|
1300
|
-
missing_product: This coupon code can't be applied because you don't have
|
1301
|
-
|
1302
|
-
|
1303
|
-
|
1304
|
-
|
1305
|
-
this coupon code.
|
1306
|
-
no_matching_taxons: You need to add a product from an applicable category
|
1307
|
-
before applying this coupon code.
|
1308
|
-
no_user_or_email_specified: You need to login or provide your email before
|
1309
|
-
applying this coupon code.
|
1522
|
+
missing_product: This coupon code can't be applied because you don't have all of the necessary products in your cart.
|
1523
|
+
missing_taxon: You need to add a product from all applicable categories before applying this coupon code.
|
1524
|
+
no_applicable_products: You need to add an applicable product before applying this coupon code.
|
1525
|
+
no_matching_taxons: You need to add a product from an applicable category before applying this coupon code.
|
1526
|
+
no_user_or_email_specified: You need to login or provide your email before applying this coupon code.
|
1310
1527
|
no_user_specified: You need to login before applying this coupon code.
|
1311
1528
|
not_first_order: This coupon code can only be applied to your first order.
|
1312
1529
|
email: Email
|
@@ -1318,12 +1535,10 @@ en:
|
|
1318
1535
|
error: error
|
1319
1536
|
errors:
|
1320
1537
|
messages:
|
1321
|
-
cannot_delete_finalized_stock_location: Stock Location cannot be destroyed
|
1322
|
-
if you have open stock transfers.
|
1538
|
+
cannot_delete_finalized_stock_location: Stock Location cannot be destroyed if you have open stock transfers.
|
1323
1539
|
could_not_create_taxon: Could not create taxon
|
1324
1540
|
no_payment_methods_available: No payment methods are configured for this environment
|
1325
|
-
no_shipping_methods_available: No shipping methods available for selected
|
1326
|
-
location, please change your address and try again.
|
1541
|
+
no_shipping_methods_available: No shipping methods available for selected location, please change your address and try again.
|
1327
1542
|
errors_prohibited_this_record_from_being_saved:
|
1328
1543
|
one: 1 error prohibited this record from being saved
|
1329
1544
|
other: "%{count} errors prohibited this record from being saved"
|
@@ -1342,9 +1557,7 @@ en:
|
|
1342
1557
|
user:
|
1343
1558
|
signup: User signup
|
1344
1559
|
exceptions:
|
1345
|
-
count_on_hand_setter: Cannot set count_on_hand manually, as it is set automatically
|
1346
|
-
by the recalculate_count_on_hand callback. Please use `update_column(:count_on_hand,
|
1347
|
-
value)` instead.
|
1560
|
+
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.
|
1348
1561
|
exchange_for: Exchange For
|
1349
1562
|
excl: excl.
|
1350
1563
|
existing_shipments: Existing shipments
|
@@ -1395,78 +1608,47 @@ en:
|
|
1395
1608
|
hide_out_of_stock: Hide out of stock
|
1396
1609
|
hints:
|
1397
1610
|
spree/calculator:
|
1398
|
-
|
1399
|
-
|
1400
|
-
|
1401
|
-
shipping_methods: This is used to calculate the shipping rates on a per order or
|
1402
|
-
per package rate.
|
1403
|
-
promotions: This is used to determine the promotional discount to be applied to an
|
1404
|
-
order, an item, or shipping charges.
|
1611
|
+
promotions: This is used to determine the promotional discount to be applied to an order, an item, or shipping charges.
|
1612
|
+
shipping_methods: This is used to calculate the shipping rates on a per order or per package rate.
|
1613
|
+
tax_rates: The "Default Tax" calculator is used for 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. "Flat Fee" can be used for any taxes that require a flat fee be charged to the customer.
|
1405
1614
|
spree/price:
|
1406
|
-
country: 'This determines in what country the price is valid.<br/>Default:
|
1407
|
-
|
1408
|
-
|
1409
|
-
below, but will be used to populate all new variants
|
1410
|
-
options: These options are used to create variants in the variants table.
|
1411
|
-
They can be changed in the variants tab
|
1615
|
+
country: 'This determines in what country the price is valid.<br/>Default: Any Country'
|
1616
|
+
master_variant: Changing master variant prices will not change variant prices below, but will be used to populate all new variants
|
1617
|
+
options: These options are used to create variants in the variants table. They can be changed in the variants tab
|
1412
1618
|
spree/product:
|
1413
|
-
available_on: This sets the availability date for the product. If this value
|
1414
|
-
|
1415
|
-
|
1416
|
-
|
1417
|
-
|
1418
|
-
that day on anymore.
|
1419
|
-
promotionable: 'This determines whether or not promotions can apply to this
|
1420
|
-
product.<br/>Default: Checked'
|
1421
|
-
shipping_category: 'This determines what kind of shipping this product requires.<br/>
|
1422
|
-
Default: Default'
|
1423
|
-
tax_category: 'This determines what kind of taxation is applied to this product.<br/>
|
1424
|
-
Default: %{default_tax_category}'
|
1619
|
+
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.
|
1620
|
+
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.
|
1621
|
+
promotionable: 'This determines whether or not promotions can apply to this product.<br/>Default: Checked'
|
1622
|
+
shipping_category: 'This determines what kind of shipping this product requires.<br/> Default: Default'
|
1623
|
+
tax_category: 'This determines what kind of taxation is applied to this product.<br/> Default: %{default_tax_category}'
|
1425
1624
|
spree/promotion:
|
1426
|
-
expires_at: This determines when the promotion expires. <br/> If no value
|
1427
|
-
|
1428
|
-
starts_at: This determines when the promotion can be applied to orders. <br/>
|
1429
|
-
If no value is specified, the promotion will be immediately available.
|
1430
|
-
promo_code_will_be_disabled: Selecting this option, promo codes will be disabled for this promotion
|
1431
|
-
because all its rules / actions will be applied automatically to all orders.
|
1625
|
+
expires_at: This determines when the promotion expires. <br/> If no value is specified, the promotion will never expire.
|
1626
|
+
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.
|
1627
|
+
starts_at: This determines when the promotion can be applied to orders. <br/> If no value is specified, the promotion will be immediately available.
|
1432
1628
|
spree/shipping_method:
|
1433
|
-
available_to_all: Uncheck to select specific stock locations this
|
1434
|
-
shipping method will be available in.
|
1629
|
+
available_to_all: Uncheck to select specific stock locations this shipping method will be available in.
|
1435
1630
|
spree/stock_location:
|
1436
|
-
active: 'This determines whether stock from this location can be used when
|
1437
|
-
|
1438
|
-
|
1439
|
-
|
1440
|
-
|
1441
|
-
|
1442
|
-
fulfillable: 'When unchecked, this indicates that items in this location don''t
|
1443
|
-
require actual fulfilment. Stock will not be checked when shipping and emails
|
1444
|
-
will not be sent.<br/> Default: Checked'
|
1445
|
-
propagate_all_variants: 'When checked, this will create a stock item for each variant
|
1446
|
-
in this stock location.<br/> Default: Checked'
|
1447
|
-
restock_inventory: 'When checked, returned inventory can be added back to
|
1448
|
-
this location''s stock levels.<br/> Default: checked'
|
1631
|
+
active: 'This determines whether stock from this location can be used when building packages.<br/> Default: Checked'
|
1632
|
+
backorderable_default: 'When checked, stock items in this location will default to allowing backorders.<br/> Default: Unchecked'
|
1633
|
+
check_stock_on_transfer: 'When checked, inventory levels will be checked when performing stock transfers.<br/> Default: Checked'
|
1634
|
+
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'
|
1635
|
+
propagate_all_variants: 'When checked, this will create a stock item for each variant in this stock location.<br/> Default: Checked'
|
1636
|
+
restock_inventory: 'When checked, returned inventory can be added back to this location''s stock levels.<br/> Default: checked'
|
1449
1637
|
spree/store:
|
1450
|
-
available_locales: This determines which locales are available for your customers
|
1451
|
-
|
1452
|
-
|
1453
|
-
(orders which don't yet have an address).<br/> Default: None."
|
1454
|
-
code: 'An identifier for your store. Developers may need this value if you operate
|
1455
|
-
multiple storefronts.'
|
1638
|
+
available_locales: This determines which locales are available for your customers to choose from in the storefront.
|
1639
|
+
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.'
|
1640
|
+
code: An identifier for your store. Developers may need this value if you operate multiple storefronts.
|
1456
1641
|
spree/tax_category:
|
1457
|
-
is_default:
|
1642
|
+
is_default: When checked, this tax category will be selected by default when creating new products or variants.
|
1458
1643
|
spree/tax_rate:
|
1459
|
-
|
1460
|
-
|
1461
|
-
date value is specified, the tax rate will be immediately available. <br
|
1462
|
-
/> If no expiration date value is specified, the tax rate will never expire
|
1644
|
+
tax_rate_level: Item-level taxes will be applied as adjustments on line items and shipments. Order-level taxes will create an adjustment on the order. Care should be taken when chosing order-level adjustments as they aren't considered in refunds or in discounts. The default is item-level.
|
1645
|
+
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
|
1463
1646
|
spree/variant:
|
1464
1647
|
deleted: Deleted Variant
|
1465
1648
|
deleted_explanation: This variant was deleted on %{date}.
|
1466
|
-
deleted_explanation_with_replacement: This variant was deleted on %{date}.
|
1467
|
-
|
1468
|
-
tax_category: 'This determines what kind of taxation is applied to this variant.<br/>
|
1469
|
-
Default: Use tax category of the product associated with this variant'
|
1649
|
+
deleted_explanation_with_replacement: This variant was deleted on %{date}. It has since been replaced by another with the same SKU.
|
1650
|
+
shipping_category: 'This determines what kind of shipping this variant requires.<br/> Default: Use shipping category of the product associated with this variant'
|
1651
|
+
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'
|
1470
1652
|
home: Home
|
1471
1653
|
i18n:
|
1472
1654
|
available_locales: Available Locales
|
@@ -1485,15 +1667,12 @@ en:
|
|
1485
1667
|
identifier: Identifier
|
1486
1668
|
image: Image
|
1487
1669
|
images: Images
|
1488
|
-
implement_eligible_for_return: 'Must implement #eligible_for_return? for your
|
1489
|
-
|
1490
|
-
implement_requires_manual_intervention: 'Must implement #requires_manual_intervention?
|
1491
|
-
for your EligibilityValidator.'
|
1670
|
+
implement_eligible_for_return: 'Must implement #eligible_for_return? for your EligibilityValidator.'
|
1671
|
+
implement_requires_manual_intervention: 'Must implement #requires_manual_intervention? for your EligibilityValidator.'
|
1492
1672
|
inactive: Inactive
|
1493
1673
|
incl: incl.
|
1494
1674
|
included_in_price: Included in Price
|
1495
|
-
included_price_validation: cannot be selected unless you have set a Default Tax
|
1496
|
-
Zone
|
1675
|
+
included_price_validation: cannot be selected unless you have set a Default Tax Zone
|
1497
1676
|
incomplete: Incomplete
|
1498
1677
|
info_number_of_skus_not_shown:
|
1499
1678
|
one: and one other
|
@@ -1502,8 +1681,7 @@ en:
|
|
1502
1681
|
instructions_to_reset_password: Please enter your email on the form below
|
1503
1682
|
insufficient_stock: Insufficient stock available, only %{on_hand} remaining
|
1504
1683
|
insufficient_stock_for_order: Insufficient stock for order
|
1505
|
-
insufficient_stock_lines_present: Some line items in this order have insufficient
|
1506
|
-
quantity.
|
1684
|
+
insufficient_stock_lines_present: Some line items in this order have insufficient quantity.
|
1507
1685
|
intercept_email_address: Intercept Email Address
|
1508
1686
|
intercept_email_instructions: Override email recipient and replace with this address.
|
1509
1687
|
invalid_exchange_variant: Invalid exchange variant.
|
@@ -1515,7 +1693,7 @@ en:
|
|
1515
1693
|
inventory_adjustment: Inventory Adjustment
|
1516
1694
|
inventory_canceled: Inventory canceled
|
1517
1695
|
inventory_error_flash_for_insufficient_quantity: "%{names} became unavailable."
|
1518
|
-
inventory_error_flash_for_insufficient_shipment_quantity:
|
1696
|
+
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.
|
1519
1697
|
inventory_not_available: Inventory not available for %{item}.
|
1520
1698
|
inventory_state: Inventory State
|
1521
1699
|
inventory_states:
|
@@ -1528,20 +1706,20 @@ en:
|
|
1528
1706
|
iso_name: Iso Name
|
1529
1707
|
item: Item
|
1530
1708
|
item_description: Item Description
|
1531
|
-
|
1532
|
-
all: All Items Selected
|
1533
|
-
none: No Item Selected
|
1534
|
-
one: One Item Selected
|
1535
|
-
custom: Items Selected
|
1709
|
+
item_level: Item-level
|
1536
1710
|
item_total: Item Total
|
1537
1711
|
item_total_rule:
|
1538
1712
|
operators:
|
1539
1713
|
gt: greater than
|
1540
1714
|
gte: greater than or equal to
|
1541
|
-
items_cannot_be_shipped: We are unable to calculate shipping rates for the selected
|
1542
|
-
items.
|
1715
|
+
items_cannot_be_shipped: We are unable to calculate shipping rates for the selected items.
|
1543
1716
|
items_in_rmas: Items in RMA's (Return Merchandise Authorizations)
|
1544
1717
|
items_reimbursed: Items reimbursed
|
1718
|
+
items_selected:
|
1719
|
+
all: All Items Selected
|
1720
|
+
custom: Items Selected
|
1721
|
+
none: No Item Selected
|
1722
|
+
one: One Item Selected
|
1545
1723
|
items_to_be_reimbursed: Items to be reimbursed
|
1546
1724
|
jirafe: Jirafe
|
1547
1725
|
landing_page_rule:
|
@@ -1575,8 +1753,7 @@ en:
|
|
1575
1753
|
logs: Logs
|
1576
1754
|
look_for_similar_items: Look for similar items
|
1577
1755
|
make_refund: Make refund
|
1578
|
-
make_sure_the_above_reimbursement_amount_is_correct: Make sure the above reimbursement
|
1579
|
-
amount is correct
|
1756
|
+
make_sure_the_above_reimbursement_amount_is_correct: Make sure the above reimbursement amount is correct
|
1580
1757
|
manage_promotion_categories: Manage Promotion Categories
|
1581
1758
|
manage_stock: Store Stock
|
1582
1759
|
manage_variants: Manage Variants
|
@@ -1606,8 +1783,7 @@ en:
|
|
1606
1783
|
name_contains: Name Contains
|
1607
1784
|
name_on_card: Name on card
|
1608
1785
|
name_or_sku: Name or SKU (enter at least first 4 characters of product name)
|
1609
|
-
negative_movement_absent_item: Cannot create negative movement for absent stock
|
1610
|
-
item.
|
1786
|
+
negative_movement_absent_item: Cannot create negative movement for absent stock item.
|
1611
1787
|
new: New
|
1612
1788
|
new_adjustment: New Adjustment
|
1613
1789
|
new_adjustment_reason: New Adjustment Reason
|
@@ -1650,8 +1826,7 @@ en:
|
|
1650
1826
|
no_actions_added: No actions added
|
1651
1827
|
no_images_found: No images found
|
1652
1828
|
no_inventory_selected: No inventory selected
|
1653
|
-
no_option_values_on_product_html: This product has no associated option values.
|
1654
|
-
Add some to it through Option Types in the %{link}.
|
1829
|
+
no_option_values_on_product_html: This product has no associated option values. Add some to it through Option Types in the %{link}.
|
1655
1830
|
no_orders_found: No orders found
|
1656
1831
|
no_payment_found: No payment found
|
1657
1832
|
no_payment_methods_found: No payment methods found
|
@@ -1676,12 +1851,10 @@ en:
|
|
1676
1851
|
normal_amount: Normal Amount
|
1677
1852
|
not: not
|
1678
1853
|
not_available: N/A
|
1679
|
-
not_enough_stock: There is not enough inventory at the source location to complete
|
1680
|
-
this transfer.
|
1854
|
+
not_enough_stock: There is not enough inventory at the source location to complete this transfer.
|
1681
1855
|
not_found: "%{resource} is not found"
|
1682
1856
|
note: Note
|
1683
|
-
note_already_received_a_refund: 'Note: This order has already received a refund. Make
|
1684
|
-
sure the above reimbursement amount is correct.'
|
1857
|
+
note_already_received_a_refund: 'Note: This order has already received a refund. Make sure the above reimbursement amount is correct.'
|
1685
1858
|
notice_messages:
|
1686
1859
|
product_cloned: Product has been cloned
|
1687
1860
|
product_deleted: Product has been deleted
|
@@ -1712,19 +1885,18 @@ en:
|
|
1712
1885
|
order_details: Order Details
|
1713
1886
|
order_email_resent: Order Email Resent
|
1714
1887
|
order_information: Order Information
|
1888
|
+
order_level: Order-level
|
1715
1889
|
order_mailer:
|
1716
1890
|
cancel_email:
|
1717
1891
|
dear_customer: Dear Customer,
|
1718
|
-
instructions: Your order has been CANCELED. Please retain this cancellation
|
1719
|
-
information for your records.
|
1892
|
+
instructions: Your order has been CANCELED. Please retain this cancellation information for your records.
|
1720
1893
|
order_summary_canceled: Order Summary [CANCELED]
|
1721
1894
|
subject: Cancellation of Order
|
1722
1895
|
subtotal: 'Subtotal:'
|
1723
1896
|
total: 'Order Total:'
|
1724
1897
|
confirm_email:
|
1725
1898
|
dear_customer: Dear Customer,
|
1726
|
-
instructions: Please review and retain the following order information for
|
1727
|
-
your records.
|
1899
|
+
instructions: Please review and retain the following order information for your records.
|
1728
1900
|
order_summary: Order Summary
|
1729
1901
|
subject: Order Confirmation
|
1730
1902
|
subtotal: 'Subtotal:'
|
@@ -1732,8 +1904,7 @@ en:
|
|
1732
1904
|
total: 'Order Total:'
|
1733
1905
|
inventory_cancellation:
|
1734
1906
|
dear_customer: Dear Customer,
|
1735
|
-
instructions: Some items in your order have been CANCELED. Please retain
|
1736
|
-
this cancellation information for your records.
|
1907
|
+
instructions: Some items in your order have been CANCELED. Please retain this cancellation information for your records.
|
1737
1908
|
order_summary_canceled: Canceled Items
|
1738
1909
|
subject: Cancellation of Items
|
1739
1910
|
order_mutex_admin_error: Order is being modified by someone else. Please try again.
|
@@ -1779,15 +1950,11 @@ en:
|
|
1779
1950
|
payment_identifier: Payment Identifier
|
1780
1951
|
payment_information: Payment Information
|
1781
1952
|
payment_method: Payment Method
|
1782
|
-
payment_method_not_supported: That payment method is unsupported. Please choose
|
1783
|
-
|
1784
|
-
payment_method_settings_warning: If you are changing the payment method type,
|
1785
|
-
you must save first before you can edit the payment method settings
|
1953
|
+
payment_method_not_supported: That payment method is unsupported. Please choose another one.
|
1954
|
+
payment_method_settings_warning: If you are changing the payment method type, you must save first before you can edit the payment method settings
|
1786
1955
|
payment_methods: Payment Methods
|
1787
|
-
payment_processing_failed: Payment could not be processed, please check the details
|
1788
|
-
|
1789
|
-
payment_processor_choose_banner_text: If you need help choosing a payment processor,
|
1790
|
-
please visit
|
1956
|
+
payment_processing_failed: Payment could not be processed, please check the details you entered
|
1957
|
+
payment_processor_choose_banner_text: If you need help choosing a payment processor, please visit
|
1791
1958
|
payment_processor_choose_link: our payments page
|
1792
1959
|
payment_state: Payment State
|
1793
1960
|
payment_states:
|
@@ -1831,8 +1998,7 @@ en:
|
|
1831
1998
|
product: Product
|
1832
1999
|
product_details: Product Details
|
1833
2000
|
product_has_no_description: This product has no description
|
1834
|
-
product_not_available_in_this_currency: This product is not available in the selected
|
1835
|
-
currency.
|
2001
|
+
product_not_available_in_this_currency: This product is not available in the selected currency.
|
1836
2002
|
product_properties: Product Properties
|
1837
2003
|
product_rule:
|
1838
2004
|
choose_products: Choose products
|
@@ -1843,8 +2009,8 @@ en:
|
|
1843
2009
|
product_source:
|
1844
2010
|
group: From product group
|
1845
2011
|
manual: Manually choose
|
1846
|
-
|
1847
|
-
|
2012
|
+
product_without_default_price_cta: Please, create a Master Price!
|
2013
|
+
product_without_default_price_info: This Product has no price in the default currency (%{default_currency}).
|
1848
2014
|
products: Products
|
1849
2015
|
promotion: Promotion
|
1850
2016
|
promotion_action: Promotion Action
|
@@ -1866,9 +2032,7 @@ en:
|
|
1866
2032
|
any: Match any of these rules
|
1867
2033
|
promotion_rule: Promotion Rule
|
1868
2034
|
promotion_successfully_created: Promotion has been successfully created!
|
1869
|
-
promotion_total_changed_before_complete: One or more of the promotions on your
|
1870
|
-
order have become ineligible and were removed. Please check the new order amounts
|
1871
|
-
and try again.
|
2035
|
+
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.
|
1872
2036
|
promotion_uses: Promotion uses
|
1873
2037
|
promotionable: Promotable
|
1874
2038
|
promotions: Promotions
|
@@ -1946,24 +2110,20 @@ en:
|
|
1946
2110
|
resumed: Resumed
|
1947
2111
|
return: return
|
1948
2112
|
return_authorization: Return Merchandise Authorization
|
1949
|
-
return_authorization_fire_error: Cannot perform this action on return merchandise
|
1950
|
-
authorization
|
2113
|
+
return_authorization_fire_error: Cannot perform this action on return merchandise authorization
|
1951
2114
|
return_authorization_states:
|
1952
2115
|
authorized: Authorized
|
1953
2116
|
canceled: Canceled
|
1954
2117
|
return_authorization_updated: Return merchandise authorization updated
|
1955
2118
|
return_authorizations: Return Merchandise Authorizations
|
1956
2119
|
return_item_inventory_unit_ineligible: Return item's inventory unit must be shipped
|
1957
|
-
return_item_inventory_unit_reimbursed: Return item's inventory unit is already
|
1958
|
-
reimbursed
|
2120
|
+
return_item_inventory_unit_reimbursed: Return item's inventory unit is already reimbursed
|
1959
2121
|
return_item_order_not_completed: Return item's order must be completed
|
1960
2122
|
return_item_rma_ineligible: Return item requires an RMA
|
1961
2123
|
return_item_time_period_ineligible: Return item is outside the eligible time period
|
1962
2124
|
return_items: Return Items
|
1963
|
-
return_items_cannot_be_associated_with_multiple_orders: Return items cannot be
|
1964
|
-
|
1965
|
-
return_items_cannot_be_created_for_inventory_units_that_are_already_awaiting_exchange: Return
|
1966
|
-
items cannot be created for inventory units that are already awaiting exchange.
|
2125
|
+
return_items_cannot_be_associated_with_multiple_orders: Return items cannot be associated with multiple orders.
|
2126
|
+
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.
|
1967
2127
|
return_number: Return Number
|
1968
2128
|
return_quantity: Return Quantity
|
1969
2129
|
return_reasons: Return Reasons
|
@@ -2003,7 +2163,6 @@ en:
|
|
2003
2163
|
ship: ship
|
2004
2164
|
ship_address: Ship Address
|
2005
2165
|
ship_address_required: Valid shipping address required
|
2006
|
-
bill_address_required: Valid billing address required
|
2007
2166
|
ship_total: Ship Total
|
2008
2167
|
shipment: Shipment
|
2009
2168
|
shipment_adjustments: Shipment adjustments
|
@@ -2069,11 +2228,9 @@ en:
|
|
2069
2228
|
special_instructions: Special Instructions
|
2070
2229
|
split: Split
|
2071
2230
|
split_failed: Unable to complete split
|
2072
|
-
spree_gateway_error_flash_for_checkout: There was a problem with your payment
|
2073
|
-
information. Please check your information and try again.
|
2231
|
+
spree_gateway_error_flash_for_checkout: There was a problem with your payment information. Please check your information and try again.
|
2074
2232
|
ssl:
|
2075
|
-
change_protocol: Please switch to using HTTP (rather than HTTPS) and retry this
|
2076
|
-
request.
|
2233
|
+
change_protocol: Please switch to using HTTP (rather than HTTPS) and retry this request.
|
2077
2234
|
start: Start
|
2078
2235
|
state: State
|
2079
2236
|
state_based: State Based
|
@@ -2087,11 +2244,9 @@ en:
|
|
2087
2244
|
stock_location: Stock Location
|
2088
2245
|
stock_location_info: Stock location info
|
2089
2246
|
stock_locations: Stock Locations
|
2090
|
-
stock_locations_need_a_default_country: You must create a default country before
|
2091
|
-
creating a stock location.
|
2247
|
+
stock_locations_need_a_default_country: You must create a default country before creating a stock location.
|
2092
2248
|
stock_management: Product Stock
|
2093
|
-
stock_management_requires_a_stock_location: Please create a stock location in
|
2094
|
-
order to manage stock.
|
2249
|
+
stock_management_requires_a_stock_location: Please create a stock location in order to manage stock.
|
2095
2250
|
stock_movements: Stock Movements
|
2096
2251
|
stock_movements_for_stock_location: Stock Movements for %{stock_location_name}
|
2097
2252
|
stock_successfully_transferred: Stock was successfully transferred between locations.
|
@@ -2114,8 +2269,7 @@ en:
|
|
2114
2269
|
invalidate: Invalidated
|
2115
2270
|
void: Credit
|
2116
2271
|
errors:
|
2117
|
-
cannot_invalidate_uncaptured_authorization: Cannot invalidate a store credit
|
2118
|
-
with an uncaptured authorization
|
2272
|
+
cannot_invalidate_uncaptured_authorization: Cannot invalidate a store credit with an uncaptured authorization
|
2119
2273
|
unable_to_fund: Unable to pay for order using store credits
|
2120
2274
|
expiring: Expiring
|
2121
2275
|
insufficient_authorized_amount: Unable to capture more than authorized amount
|
@@ -2126,8 +2280,7 @@ en:
|
|
2126
2280
|
successful_action: Successful store credit %{action}
|
2127
2281
|
unable_to_credit: 'Unable to credit code: %{auth_code}'
|
2128
2282
|
unable_to_find: Could not find store credit
|
2129
|
-
unable_to_find_for_action: 'Could not find store credit for auth code: %{auth_code}
|
2130
|
-
for action: %{action}'
|
2283
|
+
unable_to_find_for_action: 'Could not find store credit for auth code: %{auth_code} for action: %{action}'
|
2131
2284
|
unable_to_void: 'Unable to void code: %{auth_code}'
|
2132
2285
|
user_has_no_store_credits: User does not have any available store credit
|
2133
2286
|
store_credit_category:
|
@@ -2149,8 +2302,8 @@ en:
|
|
2149
2302
|
tax_category: Tax Category
|
2150
2303
|
tax_code: Tax Code
|
2151
2304
|
tax_included: Tax (incl.)
|
2152
|
-
tax_rate_amount_explanation: Tax
|
2153
|
-
|
2305
|
+
tax_rate_amount_explanation: When using the "Default Tax" calculator, the amount is treated as a decimal amount to aid in calculations. (i.e. If the tax rate is 5% then enter 0.05) If using the "Flat Fee" calculator, the amount is used for the static fee.
|
2306
|
+
tax_rate_level: Tax Rate Level
|
2154
2307
|
tax_rates: Tax Rates
|
2155
2308
|
taxon: Taxon
|
2156
2309
|
taxon_attachment_removal_error: There was an error removing the attachment
|
@@ -2165,10 +2318,8 @@ en:
|
|
2165
2318
|
taxonomies: Taxonomies
|
2166
2319
|
taxonomy: Taxonomy
|
2167
2320
|
taxonomy_edit: Edit taxonomy
|
2168
|
-
taxonomy_tree_error: The requested change has not been accepted and the tree has
|
2169
|
-
|
2170
|
-
taxonomy_tree_instruction: "* Right click a child in the tree to access the menu
|
2171
|
-
for adding, deleting or sorting a child."
|
2321
|
+
taxonomy_tree_error: The requested change has not been accepted and the tree has been returned to its previous state, please try again.
|
2322
|
+
taxonomy_tree_instruction: "* Right click a child in the tree to access the menu for adding, deleting or sorting a child."
|
2172
2323
|
taxons: Taxons
|
2173
2324
|
test: Test
|
2174
2325
|
test_mailer:
|
@@ -2177,12 +2328,9 @@ en:
|
|
2177
2328
|
message: If you have received this email, then your email settings are correct.
|
2178
2329
|
subject: Test Mail
|
2179
2330
|
test_mode: Test Mode
|
2180
|
-
thank_you_for_your_order: Thank you for your business. Please print out a copy
|
2181
|
-
|
2182
|
-
|
2183
|
-
an item to the order to continue.
|
2184
|
-
there_were_problems_with_the_following_fields: There were problems with the following
|
2185
|
-
fields
|
2331
|
+
thank_you_for_your_order: Thank you for your business. Please print out a copy of this confirmation page for your records.
|
2332
|
+
there_are_no_items_for_this_order: There are no items for this order. Please add an item to the order to continue.
|
2333
|
+
there_were_problems_with_the_following_fields: There were problems with the following fields
|
2186
2334
|
this_order_has_already_received_a_refund: This order has already received a refund
|
2187
2335
|
thumbnail: Thumbnail
|
2188
2336
|
tiered_flat_rate: Tiered Flat Rate
|
@@ -2213,8 +2361,7 @@ en:
|
|
2213
2361
|
type: Type
|
2214
2362
|
type_to_search: Type to search
|
2215
2363
|
unable_to_connect_to_gateway: Unable to connect to gateway.
|
2216
|
-
unable_to_create_reimbursements: Unable to create reimbursements because there
|
2217
|
-
are items pending manual intervention.
|
2364
|
+
unable_to_create_reimbursements: Unable to create reimbursements because there are items pending manual intervention.
|
2218
2365
|
unable_to_find_all_inventory_units: Unable to find all specified inventory units
|
2219
2366
|
under_price: Under %{price}
|
2220
2367
|
unfinalize_all_adjustments: Unfinalize All Adjustments
|
@@ -2240,12 +2387,9 @@ en:
|
|
2240
2387
|
choose_users: Choose Users
|
2241
2388
|
users: Users
|
2242
2389
|
validation:
|
2243
|
-
cannot_be_less_than_shipped_units: cannot be less than the number of shipped
|
2244
|
-
|
2245
|
-
|
2246
|
-
item as some inventory units have shipped.
|
2247
|
-
exceeds_available_stock: exceeds available stock. Please ensure line items have
|
2248
|
-
a valid quantity.
|
2390
|
+
cannot_be_less_than_shipped_units: cannot be less than the number of shipped units.
|
2391
|
+
cannot_destroy_line_item_as_inventory_units_have_shipped: Cannot destroy line item as some inventory units have shipped.
|
2392
|
+
exceeds_available_stock: exceeds available stock. Please ensure line items have a valid quantity.
|
2249
2393
|
is_too_large: is too large -- stock on hand cannot cover requested quantity!
|
2250
2394
|
must_be_int: must be an integer
|
2251
2395
|
must_be_non_negative: must be a non-negative value
|
@@ -2254,7 +2398,6 @@ en:
|
|
2254
2398
|
value: Value
|
2255
2399
|
variant: Variant
|
2256
2400
|
variant_placeholder: Choose a Variant
|
2257
|
-
variant_pricing: Variant Pricing
|
2258
2401
|
variant_properties: Variant Properties
|
2259
2402
|
variant_search: Variant Search
|
2260
2403
|
variant_search_placeholder: SKU or Option Value
|