solidus_core 3.0.0 → 4.5.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/README.md +1 -2
- data/Rakefile +7 -2
- data/app/assets/images/logo/solidus.svg +18 -1
- data/app/assets/images/logo/solidus_logo.png +0 -0
- data/app/controllers/spree/base_controller.rb +1 -3
- data/app/helpers/spree/base_helper.rb +3 -3
- data/app/helpers/spree/core/controller_helpers/auth.rb +66 -0
- data/app/helpers/spree/core/controller_helpers/common.rb +82 -0
- data/app/helpers/spree/core/controller_helpers/order.rb +86 -0
- data/app/helpers/spree/core/controller_helpers/payment_parameters.rb +165 -0
- data/{lib/spree/core/controller_helpers/current_host.rb → app/helpers/spree/core/controller_helpers/pricing.rb} +6 -4
- data/app/helpers/spree/core/controller_helpers/search.rb +16 -0
- data/app/helpers/spree/core/controller_helpers/store.rb +19 -0
- data/app/helpers/spree/core/controller_helpers/strong_parameters.rb +74 -0
- data/app/helpers/spree/products_helper.rb +2 -2
- data/app/mailers/spree/base_mailer.rb +1 -1
- data/app/mailers/spree/carton_mailer.rb +1 -1
- data/app/mailers/spree/order_mailer.rb +3 -3
- data/app/mailers/spree/reimbursement_mailer.rb +1 -1
- data/app/models/concerns/spree/active_storage_adapter/attachment.rb +30 -11
- data/app/models/concerns/spree/active_storage_adapter/normalization.rb +1 -1
- data/app/models/concerns/spree/active_storage_adapter.rb +1 -18
- data/app/models/concerns/spree/default_price.rb +30 -10
- data/app/models/concerns/spree/display_money.rb +1 -1
- data/app/models/concerns/spree/metadata.rb +64 -0
- data/app/models/concerns/spree/named_type.rb +2 -0
- data/app/models/concerns/spree/ordered_property_value_list.rb +2 -2
- data/app/models/concerns/spree/ransackable_attributes.rb +9 -5
- data/app/models/concerns/spree/user_address_book.rb +19 -10
- data/app/models/concerns/spree/user_methods.rb +40 -6
- data/app/models/spree/address.rb +11 -9
- data/app/models/spree/adjustment.rb +15 -76
- data/app/models/spree/adjustment_reason.rb +2 -0
- data/app/models/spree/calculator/flat_fee.rb +21 -0
- data/app/models/spree/calculator/returns/default_refund_amount.rb +1 -1
- data/app/models/spree/carton.rb +3 -3
- data/app/models/spree/core/state_machines/inventory_unit.rb +42 -0
- data/app/models/spree/core/state_machines/order/class_methods.rb +217 -0
- data/app/models/spree/core/state_machines/order.rb +42 -0
- data/app/models/spree/core/state_machines/payment.rb +61 -0
- data/app/models/spree/core/state_machines/reimbursement.rb +33 -0
- data/app/models/spree/core/state_machines/return_authorization.rb +32 -0
- data/app/models/spree/core/state_machines/return_item/acceptance_status.rb +51 -0
- data/app/models/spree/core/state_machines/return_item/reception_status.rb +42 -0
- data/app/models/spree/core/state_machines/shipment.rb +58 -0
- data/app/models/spree/country.rb +1 -1
- data/app/models/spree/credit_card.rb +13 -10
- data/app/models/spree/customer_return.rb +6 -3
- data/app/models/spree/deprecated_configurable_class.rb +40 -0
- data/app/models/spree/fulfilment_changer.rb +56 -29
- 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/inventory_unit.rb +2 -2
- data/app/models/spree/item_total.rb +28 -0
- data/app/models/spree/legacy_user.rb +1 -0
- data/app/models/spree/line_item.rb +26 -8
- data/app/models/spree/log_entry.rb +98 -1
- data/app/models/spree/money.rb +120 -0
- data/app/models/spree/null_promotion_adjuster.rb +13 -0
- data/app/models/spree/null_promotion_advertiser.rb +9 -0
- data/app/models/spree/null_promotion_finder.rb +9 -0
- data/app/models/spree/null_promotion_handler.rb +44 -0
- data/app/models/spree/option_type.rb +1 -1
- data/app/models/spree/option_value.rb +4 -3
- data/app/models/spree/order/number_generator.rb +7 -1
- data/app/models/spree/order.rb +143 -96
- data/app/models/spree/order_cancellations.rb +8 -8
- data/app/models/spree/order_inventory.rb +7 -5
- data/app/models/spree/order_merger.rb +5 -7
- data/app/models/spree/order_mutex.rb +2 -2
- data/app/models/spree/order_shipping.rb +15 -19
- data/app/models/spree/order_taxation.rb +7 -4
- data/app/models/spree/order_update_attributes.rb +3 -1
- data/app/models/spree/order_updater.rb +25 -63
- data/app/models/spree/payment/processing.rb +60 -57
- data/app/models/spree/payment.rb +14 -27
- data/app/models/spree/payment_create.rb +1 -1
- data/app/models/spree/payment_method/bogus_credit_card.rb +18 -14
- data/app/models/spree/payment_method/credit_card.rb +0 -4
- data/app/models/spree/payment_method/simple_bogus_credit_card.rb +18 -4
- data/app/models/spree/payment_method/store_credit.rb +1 -1
- data/app/models/spree/payment_method.rb +29 -10
- data/app/models/spree/payment_source.rb +5 -1
- data/app/models/spree/permission_set.rb +11 -0
- data/app/models/spree/permission_sets/base.rb +45 -0
- data/app/models/spree/permission_sets/configuration_display.rb +53 -0
- data/app/models/spree/permission_sets/configuration_management.rb +52 -0
- data/app/models/spree/permission_sets/dashboard_display.rb +28 -0
- data/app/models/spree/permission_sets/default_customer.rb +83 -0
- data/app/models/spree/permission_sets/order_display.rb +50 -0
- data/app/models/spree/permission_sets/order_management.rb +50 -0
- data/app/models/spree/permission_sets/product_display.rb +43 -0
- data/app/models/spree/permission_sets/product_management.rb +47 -0
- data/app/models/spree/permission_sets/restricted_stock_display.rb +33 -0
- data/app/models/spree/permission_sets/restricted_stock_management.rb +33 -0
- data/app/models/spree/permission_sets/stock_display.rb +26 -0
- data/app/models/spree/permission_sets/stock_management.rb +26 -0
- data/app/models/spree/permission_sets/super_user.rb +26 -0
- data/app/models/spree/permission_sets/user_display.rb +27 -0
- data/app/models/spree/permission_sets/user_management.rb +44 -0
- data/app/models/spree/preference.rb +1 -1
- data/app/models/spree/price.rb +3 -3
- data/app/models/spree/product/scopes.rb +23 -10
- data/app/models/spree/product.rb +30 -23
- data/app/models/spree/product_property.rb +1 -1
- data/app/models/spree/property.rb +1 -1
- data/app/models/spree/refund.rb +13 -3
- data/app/models/spree/refund_reason.rb +6 -1
- data/app/models/spree/reimbursement.rb +6 -6
- data/app/models/spree/reimbursement_performer.rb +3 -3
- data/app/models/spree/reimbursement_tax_calculator.rb +3 -3
- data/app/models/spree/reimbursement_type/credit.rb +1 -1
- data/app/models/spree/reimbursement_type/reimbursement_helpers.rb +6 -6
- data/app/models/spree/reimbursement_type/store_credit.rb +1 -1
- data/app/models/spree/reimbursement_type.rb +6 -1
- data/app/models/spree/return_authorization.rb +3 -1
- data/app/models/spree/return_item.rb +13 -15
- data/app/models/spree/return_reason.rb +6 -1
- data/app/models/spree/role.rb +3 -1
- data/app/models/spree/role_permission.rb +8 -0
- data/app/models/spree/shipment.rb +12 -10
- data/app/models/spree/shipping_category.rb +2 -0
- data/app/models/spree/shipping_rate.rb +2 -3
- data/app/models/spree/shipping_rate_tax.rb +1 -1
- data/app/models/spree/{order_contents.rb → simple_order_contents.rb} +10 -13
- data/app/models/spree/state.rb +1 -1
- 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/estimator.rb +1 -1
- data/app/models/spree/stock/inventory_unit_builder.rb +1 -1
- data/app/models/spree/stock/package.rb +2 -2
- data/app/models/spree/stock/quantifier.rb +12 -8
- data/app/models/spree/stock/simple_coordinator.rb +38 -28
- data/app/models/spree/stock/splitter/shipping_category.rb +1 -1
- data/app/models/spree/stock_item.rb +2 -1
- data/app/models/spree/stock_location.rb +7 -7
- data/app/models/spree/stock_movement.rb +2 -2
- data/app/models/spree/store.rb +3 -1
- data/app/models/spree/store_credit.rb +31 -16
- data/app/models/spree/store_credit_event.rb +4 -3
- data/app/models/spree/store_credit_prioritizer.rb +17 -0
- data/app/models/spree/store_credit_reason.rb +6 -1
- data/app/models/spree/store_selector/by_server_name.rb +1 -1
- 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 +14 -3
- data/app/models/spree/tax/tax_location.rb +4 -7
- data/app/models/spree/tax_calculator/default.rb +32 -1
- data/app/models/spree/tax_calculator/shipping_rate.rb +2 -2
- data/app/models/spree/tax_category.rb +3 -1
- data/app/models/spree/tax_rate.rb +14 -1
- data/app/models/spree/taxon/active_storage_attachment.rb +2 -2
- data/app/models/spree/taxon/paperclip_attachment.rb +4 -4
- data/app/models/spree/taxon.rb +25 -3
- data/app/models/spree/taxon_brand_selector.rb +22 -0
- data/app/models/spree/taxonomy.rb +4 -3
- data/app/models/spree/unauthorized_redirect_handler.rb +24 -0
- data/app/models/spree/unit_cancel.rb +1 -2
- data/app/models/spree/user_address.rb +9 -3
- data/app/models/spree/user_last_url_storer/rules/authentication_rule.rb +1 -1
- data/app/models/spree/variant/price_selector.rb +25 -8
- data/app/models/spree/variant/scopes.rb +4 -0
- data/app/models/spree/variant/vat_price_generator.rb +1 -1
- data/app/models/spree/variant.rb +64 -37
- data/app/models/spree/wallet/add_payment_sources_to_wallet.rb +4 -4
- data/app/models/spree/wallet.rb +2 -2
- data/app/models/spree/zone.rb +1 -1
- data/app/subscribers/spree/order_mailer_subscriber.rb +35 -0
- data/app/views/layouts/spree/base_mailer.html.erb +2 -2
- data/app/views/spree/order_mailer/cancel_email.html.erb +1 -1
- data/app/views/spree/order_mailer/cancel_email.text.erb +1 -1
- data/app/views/spree/order_mailer/confirm_email.html.erb +5 -5
- data/app/views/spree/order_mailer/confirm_email.text.erb +5 -5
- data/app/views/spree/order_mailer/inventory_cancellation_email.html.erb +0 -1
- data/config/i18n-tasks.yml +134 -0
- data/config/locales/en.yml +439 -338
- data/db/default/spree/permission_sets.rb +10 -0
- data/db/default/spree/return_reasons.rb +3 -1
- data/db/default/spree/states.rb +2 -2
- data/db/migrate/20160101010000_solidus_one_four.rb +0 -127
- data/db/migrate/20180710170104_create_spree_store_credit_reasons_table.rb +2 -2
- 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/20210815004823_add_unique_index_to_option_values_variants.rb +16 -0
- data/db/migrate/20220419170826_remove_archived_user_addresses.rb +12 -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/migrate/20230321161854_change_column_null_option_values_option_type_id.rb +5 -0
- data/db/migrate/20230425103509_remove_taxon_position.rb +5 -0
- data/db/migrate/20230427095534_drop_deprecated_address_id_from_shipments.rb +11 -0
- data/db/migrate/20240821173254_create_spree_permission_sets_in_core.rb +9 -0
- data/db/migrate/20240821173341_create_spree_roles_permissions_in_core.rb +9 -0
- data/db/migrate/20240821173641_add_description_to_spree_roles.rb +5 -0
- data/db/migrate/20240904152041_add_privilege_and_category_to_spree_permission_sets.rb +6 -0
- data/db/migrate/20250129061658_add_metadata_to_spree_resources.rb +28 -0
- data/db/migrate/20250201172950_add_gtin_and_condition_to_spree_variant.rb +6 -0
- data/db/migrate/20250207104016_add_primary_taxon_to_products.rb +7 -0
- data/db/migrate/20250221152004_add_metadata_to_users.rb +13 -0
- data/db/seeds.rb +5 -1
- data/lib/generators/solidus/install/app_templates/authentication/custom.rb +16 -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/none.rb +1 -0
- data/lib/generators/solidus/install/app_templates/frontend/starter.rb +1 -0
- data/lib/generators/solidus/install/app_templates/payment_method/braintree.rb +5 -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 +5 -0
- data/lib/generators/solidus/install/app_templates/payment_method/stripe.rb +5 -0
- data/lib/generators/solidus/install/install_generator.rb +210 -156
- data/lib/generators/solidus/install/templates/config/initializers/spree.rb.tt +27 -33
- 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 +124 -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 +1 -2
- data/lib/generators/spree/dummy/templates/rails/database.yml +48 -63
- data/lib/generators/spree/dummy/templates/rails/manifest.js +3 -0
- data/lib/generators/spree/dummy/templates/rails/test.rb +7 -2
- data/lib/spree/app_configuration.rb +220 -71
- data/lib/spree/bus.rb +11 -0
- data/lib/spree/core/class_constantizer.rb +2 -2
- data/lib/spree/core/controller_helpers/auth.rb +5 -69
- data/lib/spree/core/controller_helpers/common.rb +5 -80
- data/lib/spree/core/controller_helpers/order.rb +5 -86
- data/lib/spree/core/controller_helpers/payment_parameters.rb +5 -165
- data/lib/spree/core/controller_helpers/pricing.rb +5 -17
- data/lib/spree/core/controller_helpers/search.rb +5 -14
- data/lib/spree/core/controller_helpers/store.rb +5 -17
- data/lib/spree/core/controller_helpers/strong_parameters.rb +5 -71
- data/lib/spree/core/engine.rb +49 -16
- data/lib/spree/core/environment/calculators.rb +35 -3
- data/lib/spree/core/environment/promotions.rb +25 -4
- data/lib/spree/core/environment_extension.rb +16 -2
- data/lib/spree/core/importer/order.rb +6 -6
- data/lib/spree/core/importer/product.rb +3 -3
- data/lib/spree/core/nested_class_set.rb +28 -0
- data/lib/spree/core/null_promotion_configuration.rb +84 -0
- data/lib/spree/core/product_duplicator.rb +1 -1
- data/lib/spree/core/product_filters.rb +2 -2
- data/lib/spree/core/search/base.rb +18 -9
- data/lib/spree/core/search/variant.rb +2 -2
- data/lib/spree/core/state_machines/inventory_unit.rb +5 -40
- data/lib/spree/core/state_machines/order.rb +5 -247
- data/lib/spree/core/state_machines/payment.rb +5 -59
- data/lib/spree/core/state_machines/reimbursement.rb +5 -31
- data/lib/spree/core/state_machines/return_authorization.rb +5 -30
- data/lib/spree/core/state_machines/return_item/acceptance_status.rb +5 -49
- data/lib/spree/core/state_machines/return_item/reception_status.rb +5 -40
- data/lib/spree/core/state_machines/shipment.rb +5 -56
- data/lib/spree/core/state_machines.rb +48 -81
- data/lib/spree/core/stock_configuration.rb +18 -0
- data/lib/spree/core/validators/email.rb +2 -4
- data/lib/spree/core/version.rb +5 -1
- data/lib/spree/core/versioned_value.rb +75 -0
- data/lib/spree/core.rb +40 -16
- data/lib/spree/deprecated_instance_variable_proxy.rb +57 -0
- data/lib/spree/deprecation.rb +3 -51
- data/lib/spree/deprecator.rb +9 -0
- data/lib/spree/i18n.rb +1 -1
- data/lib/spree/mailer_previews/carton_preview.rb +1 -1
- data/lib/spree/migration_helpers.rb +3 -3
- data/lib/spree/migrations.rb +13 -11
- data/lib/spree/money.rb +5 -118
- data/lib/spree/permission_sets/base.rb +5 -30
- data/lib/spree/permission_sets/configuration_display.rb +5 -23
- data/lib/spree/permission_sets/configuration_management.rb +5 -23
- data/lib/spree/permission_sets/dashboard_display.rb +5 -9
- data/lib/spree/permission_sets/default_customer.rb +5 -35
- data/lib/spree/permission_sets/order_display.rb +5 -19
- data/lib/spree/permission_sets/order_management.rb +5 -20
- data/lib/spree/permission_sets/product_display.rb +5 -17
- data/lib/spree/permission_sets/product_management.rb +5 -19
- data/lib/spree/permission_sets/restricted_stock_display.rb +5 -16
- data/lib/spree/permission_sets/restricted_stock_management.rb +5 -16
- data/lib/spree/permission_sets/stock_display.rb +5 -10
- data/lib/spree/permission_sets/stock_management.rb +5 -10
- data/lib/spree/permission_sets/super_user.rb +5 -9
- data/lib/spree/permission_sets/user_display.rb +5 -11
- data/lib/spree/permission_sets/user_management.rb +5 -23
- data/lib/spree/permission_sets.rb +5 -18
- data/lib/spree/permitted_attributes.rb +35 -14
- data/lib/spree/preferences/configuration.rb +88 -0
- data/lib/spree/preferences/persistable.rb +7 -1
- data/lib/spree/preferences/preferable.rb +13 -0
- data/lib/spree/preferences/preferable_class_methods.rb +12 -4
- data/lib/spree/preferences/preference_differentiator.rb +29 -0
- data/lib/spree/preferences/static_model_preferences.rb +25 -10
- data/lib/spree/preferences/store.rb +2 -2
- 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 +11 -1
- data/lib/spree/testing_support/common_rake.rb +76 -23
- data/lib/spree/testing_support/dummy_ability.rb +7 -0
- data/lib/spree/testing_support/dummy_app/assets/javascripts/spree/backend/all.js +1 -1
- data/lib/spree/testing_support/dummy_app/assets/stylesheets/solidus_admin/tailwind.css +1 -0
- data/lib/spree/testing_support/dummy_app/database.yml +39 -28
- data/lib/spree/testing_support/dummy_app/migrations.rb +8 -15
- data/lib/spree/testing_support/dummy_app/rake_tasks.rb +3 -10
- data/lib/spree/testing_support/dummy_app.rb +71 -42
- data/lib/spree/testing_support/extension_rake.rb +2 -2
- data/lib/spree/testing_support/factories/address_factory.rb +9 -13
- data/lib/spree/testing_support/factories/adjustment_factory.rb +1 -13
- data/lib/spree/testing_support/factories/adjustment_reason_factory.rb +0 -5
- data/lib/spree/testing_support/factories/calculator_factory.rb +4 -10
- data/lib/spree/testing_support/factories/carton_factory.rb +2 -10
- data/lib/spree/testing_support/factories/country_factory.rb +1 -7
- data/lib/spree/testing_support/factories/credit_card_factory.rb +0 -5
- data/lib/spree/testing_support/factories/customer_return_factory.rb +2 -11
- data/lib/spree/testing_support/factories/image_factory.rb +0 -5
- data/lib/spree/testing_support/factories/inventory_unit_factory.rb +4 -14
- data/lib/spree/testing_support/factories/line_item_factory.rb +0 -8
- data/lib/spree/testing_support/factories/option_type_factory.rb +0 -8
- data/lib/spree/testing_support/factories/option_value_factory.rb +0 -5
- data/lib/spree/testing_support/factories/order_factory.rb +19 -38
- data/lib/spree/testing_support/factories/payment_factory.rb +0 -10
- data/lib/spree/testing_support/factories/payment_method_factory.rb +0 -5
- data/lib/spree/testing_support/factories/price_factory.rb +0 -7
- data/lib/spree/testing_support/factories/product_factory.rb +5 -13
- data/lib/spree/testing_support/factories/product_option_type_factory.rb +0 -8
- data/lib/spree/testing_support/factories/product_property_factory.rb +0 -8
- data/lib/spree/testing_support/factories/property_factory.rb +0 -5
- data/lib/spree/testing_support/factories/refund_factory.rb +0 -8
- data/lib/spree/testing_support/factories/refund_reason_factory.rb +0 -5
- data/lib/spree/testing_support/factories/reimbursement_factory.rb +0 -7
- data/lib/spree/testing_support/factories/reimbursement_type_factory.rb +0 -5
- data/lib/spree/testing_support/factories/return_authorization_factory.rb +0 -9
- data/lib/spree/testing_support/factories/return_item_factory.rb +0 -9
- data/lib/spree/testing_support/factories/return_reason_factory.rb +0 -5
- data/lib/spree/testing_support/factories/role_factory.rb +0 -5
- data/lib/spree/testing_support/factories/shipment_factory.rb +1 -11
- data/lib/spree/testing_support/factories/shipping_category_factory.rb +0 -5
- data/lib/spree/testing_support/factories/shipping_method_factory.rb +0 -9
- data/lib/spree/testing_support/factories/shipping_rate_factory.rb +0 -8
- data/lib/spree/testing_support/factories/state_factory.rb +8 -10
- data/lib/spree/testing_support/factories/stock_item_factory.rb +5 -9
- data/lib/spree/testing_support/factories/stock_location_factory.rb +0 -9
- data/lib/spree/testing_support/factories/stock_movement_factory.rb +0 -7
- data/lib/spree/testing_support/factories/stock_package_factory.rb +1 -9
- data/lib/spree/testing_support/factories/store_credit_category_factory.rb +0 -5
- data/lib/spree/testing_support/factories/store_credit_event_factory.rb +0 -8
- data/lib/spree/testing_support/factories/store_credit_factory.rb +4 -13
- data/lib/spree/testing_support/factories/store_credit_reason_factory.rb +0 -5
- data/lib/spree/testing_support/factories/store_credit_type_factory.rb +0 -5
- data/lib/spree/testing_support/factories/store_factory.rb +0 -5
- data/lib/spree/testing_support/factories/tax_category_factory.rb +0 -8
- data/lib/spree/testing_support/factories/tax_rate_factory.rb +0 -9
- data/lib/spree/testing_support/factories/taxon_factory.rb +5 -10
- data/lib/spree/testing_support/factories/taxonomy_factory.rb +3 -6
- data/lib/spree/testing_support/factories/user_factory.rb +6 -9
- data/lib/spree/testing_support/factories/variant_factory.rb +0 -10
- data/lib/spree/testing_support/factories/variant_property_rule_condition_factory.rb +0 -8
- data/lib/spree/testing_support/factories/variant_property_rule_factory.rb +0 -9
- data/lib/spree/testing_support/factories/variant_property_rule_value_factory.rb +0 -8
- data/lib/spree/testing_support/factories/zone_factory.rb +1 -9
- data/lib/spree/testing_support/factory_bot.rb +6 -29
- data/lib/spree/testing_support/flaky.rb +22 -0
- data/lib/spree/testing_support/order_walkthrough.rb +7 -6
- data/lib/spree/testing_support/sequences.rb +0 -5
- data/lib/spree/testing_support/shared_examples/calculator.rb +10 -0
- data/lib/spree/testing_support/shared_examples/order_factory.rb +141 -0
- data/lib/spree/testing_support/shared_examples/working_factory.rb +15 -0
- data/lib/spree/testing_support/silence_deprecations.rb +9 -0
- data/lib/spree/user_class_handle.rb +2 -2
- data/lib/tasks/colorado_delivery_fee.rake +28 -0
- data/lib/tasks/payment_method.rake +29 -0
- data/lib/tasks/solidus/delete_prices_with_nil_amount.rake +8 -0
- data/solidus_core.gemspec +18 -8
- metadata +233 -117
- data/app/jobs/spree/promotion_code_batch_job.rb +0 -26
- data/app/mailers/spree/promotion_code_batch_mailer.rb +0 -15
- data/app/models/spree/calculator/distributed_amount.rb +0 -33
- data/app/models/spree/calculator/flat_percent_item_total.rb +0 -23
- data/app/models/spree/calculator/flexi_rate.rb +0 -22
- data/app/models/spree/calculator/percent_on_line_item.rb +0 -13
- data/app/models/spree/calculator/tiered_flat_rate.rb +0 -52
- data/app/models/spree/calculator/tiered_percent.rb +0 -62
- data/app/models/spree/line_item_action.rb +0 -8
- data/app/models/spree/order_promotion.rb +0 -27
- data/app/models/spree/promotion/actions/create_adjustment.rb +0 -77
- data/app/models/spree/promotion/actions/create_item_adjustments.rb +0 -99
- data/app/models/spree/promotion/actions/create_quantity_adjustments.rb +0 -139
- data/app/models/spree/promotion/actions/free_shipping.rb +0 -58
- data/app/models/spree/promotion/rules/first_order.rb +0 -38
- data/app/models/spree/promotion/rules/first_repeat_purchase_since.rb +0 -36
- data/app/models/spree/promotion/rules/item_total.rb +0 -53
- data/app/models/spree/promotion/rules/nth_order.rb +0 -45
- data/app/models/spree/promotion/rules/one_use_per_user.rb +0 -25
- data/app/models/spree/promotion/rules/option_value.rb +0 -50
- data/app/models/spree/promotion/rules/product.rb +0 -74
- data/app/models/spree/promotion/rules/store.rb +0 -22
- data/app/models/spree/promotion/rules/taxon.rb +0 -87
- data/app/models/spree/promotion/rules/user.rb +0 -30
- data/app/models/spree/promotion/rules/user_logged_in.rb +0 -20
- data/app/models/spree/promotion/rules/user_role.rb +0 -45
- data/app/models/spree/promotion.rb +0 -284
- data/app/models/spree/promotion_action.rb +0 -43
- data/app/models/spree/promotion_category.rb +0 -8
- data/app/models/spree/promotion_chooser.rb +0 -34
- data/app/models/spree/promotion_code/batch_builder.rb +0 -64
- data/app/models/spree/promotion_code.rb +0 -50
- data/app/models/spree/promotion_code_batch.rb +0 -27
- data/app/models/spree/promotion_handler/cart.rb +0 -55
- data/app/models/spree/promotion_handler/coupon.rb +0 -123
- data/app/models/spree/promotion_handler/page.rb +0 -26
- data/app/models/spree/promotion_handler/shipping.rb +0 -61
- data/app/models/spree/promotion_rule.rb +0 -55
- data/app/models/spree/promotion_rule_role.rb +0 -8
- data/app/models/spree/promotion_rule_store.rb +0 -10
- data/app/models/spree/promotion_rule_taxon.rb +0 -8
- data/app/models/spree/promotion_rule_user.rb +0 -10
- data/app/models/spree/tax/shipping_rate_taxer.rb +0 -24
- data/app/subscribers/spree/mailer_subscriber.rb +0 -25
- data/app/views/spree/promotion_code_batch_mailer/promotion_code_batch_errored.text.erb +0 -2
- data/app/views/spree/promotion_code_batch_mailer/promotion_code_batch_finished.text.erb +0 -2
- data/db/migrate/20161017102621_create_spree_promotion_code_batch.rb +0 -38
- data/db/migrate/20180202190713_create_promotion_rule_stores.rb +0 -12
- data/db/migrate/20180328172631_add_join_characters_to_promotion_code_batch.rb +0 -11
- data/db/migrate/20190106184413_remove_code_from_spree_promotions.rb +0 -42
- 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/dummy/templates/rails/script/rails +0 -6
- data/lib/solidus/migrations/promotions_with_code_handlers.rb +0 -66
- data/lib/spree/event/adapters/active_support_notifications.rb +0 -67
- data/lib/spree/event/configuration.rb +0 -25
- data/lib/spree/event/subscriber.rb +0 -86
- data/lib/spree/event/subscriber_registry.rb +0 -94
- data/lib/spree/event.rb +0 -119
- data/lib/spree/permission_sets/promotion_display.rb +0 -15
- data/lib/spree/permission_sets/promotion_management.rb +0 -15
- data/lib/spree/testing_support/dummy_app/assets/javascripts/spree/frontend/all.js +0 -10
- data/lib/spree/testing_support/dummy_app/assets/stylesheets/spree/frontend/all.css +0 -9
- data/lib/spree/testing_support/dummy_app/views/layouts/application.html.erb +0 -1
- data/lib/spree/testing_support/factories/order_promotion_factory.rb +0 -16
- data/lib/spree/testing_support/factories/promotion_category_factory.rb +0 -12
- data/lib/spree/testing_support/factories/promotion_code_factory.rb +0 -16
- data/lib/spree/testing_support/factories/promotion_factory.rb +0 -92
- data/lib/spree/testing_support/factories.rb +0 -11
- data/lib/spree/testing_support.rb +0 -31
- data/lib/tasks/upgrade.rake +0 -15
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:
|
@@ -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
|
@@ -106,6 +104,7 @@ en:
|
|
106
104
|
additional_tax_total: Tax
|
107
105
|
approved_at: Approved at
|
108
106
|
approver_id: Approver
|
107
|
+
bill_address: Billing Address
|
109
108
|
canceled_at: Canceled at
|
110
109
|
canceler_id: Canceler
|
111
110
|
checkout_complete: Checkout Complete
|
@@ -119,6 +118,7 @@ en:
|
|
119
118
|
item_total: Item Total
|
120
119
|
number: Number
|
121
120
|
payment_state: Payment State
|
121
|
+
ship_address: Shipping Address
|
122
122
|
shipment_state: Shipment State
|
123
123
|
shipment_total: Ship Total
|
124
124
|
special_instructions: Special Instructions
|
@@ -145,8 +145,8 @@ en:
|
|
145
145
|
response_code: Transaction ID
|
146
146
|
state: State
|
147
147
|
spree/payment_capture_event:
|
148
|
-
created_at: Date/Time
|
149
148
|
amount: Amount
|
149
|
+
created_at: Date/Time
|
150
150
|
spree/payment_method:
|
151
151
|
active: Active
|
152
152
|
auto_capture: Auto Capture
|
@@ -166,11 +166,13 @@ en:
|
|
166
166
|
variant: Variant
|
167
167
|
spree/product:
|
168
168
|
available_on: Available On
|
169
|
+
condition: Master Condition
|
169
170
|
cost_currency: Cost Currency
|
170
171
|
cost_price: Cost Price
|
171
172
|
depth: Depth
|
172
173
|
description: Description
|
173
174
|
discontinue_on: Discontinue on
|
175
|
+
gtin: Master GTIN
|
174
176
|
height: Height
|
175
177
|
master_price: Master Price
|
176
178
|
meta_description: Meta Description
|
@@ -179,8 +181,11 @@ en:
|
|
179
181
|
name: Name
|
180
182
|
on_hand: On Hand
|
181
183
|
price: Master Price
|
184
|
+
primary_taxon: Primary Taxon
|
185
|
+
primary_taxon_id: Primary Taxon
|
182
186
|
promotionable: Promotable
|
183
187
|
shipping_category: Shipping Category
|
188
|
+
sku: Master SKU
|
184
189
|
slug: Slug
|
185
190
|
tax_category: Tax Category
|
186
191
|
weight: Weight
|
@@ -213,12 +218,13 @@ en:
|
|
213
218
|
description: Must be the customer's first order
|
214
219
|
spree/promotion/rules/first_repeat_purchase_since:
|
215
220
|
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: '
|
221
|
+
form_text: 'Apply this promotion to users whose last order was more than X days ago: '
|
218
222
|
spree/promotion/rules/item_total:
|
219
223
|
description: Order total meets these criteria
|
220
224
|
spree/promotion/rules/landing_page:
|
221
225
|
description: Customer must have visited the specified page
|
226
|
+
spree/promotion/rules/minimum_quantity:
|
227
|
+
description: Order contains minimum quantity of applicable items
|
222
228
|
spree/promotion/rules/nth_order:
|
223
229
|
description: Apply a promotion to every nth order a user has completed.
|
224
230
|
form_text: 'Apply this promotion on the users Nth order: '
|
@@ -305,15 +311,15 @@ en:
|
|
305
311
|
name: Name
|
306
312
|
spree/shipping_method:
|
307
313
|
admin_name: Internal Name
|
314
|
+
available_to_all: Available to all stock locations
|
308
315
|
available_to_users: Available to users
|
309
316
|
carrier: Carrier
|
310
317
|
code: Code
|
311
318
|
display_on: Display
|
312
319
|
name: Name
|
313
320
|
service_level: Service Level
|
314
|
-
tracking_url: Tracking URL
|
315
321
|
stock_locations: Stock Locations
|
316
|
-
|
322
|
+
tracking_url: Tracking URL
|
317
323
|
spree/shipping_rate:
|
318
324
|
amount: Amount
|
319
325
|
label: Label
|
@@ -349,12 +355,12 @@ en:
|
|
349
355
|
variant: Variant
|
350
356
|
spree/store:
|
351
357
|
available_locales: Locales Available in the Storefront
|
358
|
+
bcc_email: BCC Email
|
352
359
|
cart_tax_country_iso: Tax Country for Empty Carts
|
353
360
|
code: Slug
|
354
361
|
default: Default
|
355
362
|
default_currency: Default Currency
|
356
363
|
mail_from_address: Mail From Address
|
357
|
-
bcc_email: BCC Email
|
358
364
|
meta_description: Meta Description
|
359
365
|
meta_keywords: Meta Keywords
|
360
366
|
name: Site Name
|
@@ -365,7 +371,7 @@ en:
|
|
365
371
|
amount_authorized: Amount Authorized
|
366
372
|
amount_credited: Amount Credited
|
367
373
|
amount_used: Amount Used
|
368
|
-
category_id:
|
374
|
+
category_id: Category
|
369
375
|
created_at: Issued On
|
370
376
|
created_by_id: Created By
|
371
377
|
invalidated_at: Invalidated
|
@@ -408,16 +414,20 @@ en:
|
|
408
414
|
analytics_id: Analytics ID
|
409
415
|
spree/user:
|
410
416
|
email: Email
|
417
|
+
last_active: Last active
|
411
418
|
lifetime_value: Total spent
|
412
419
|
password: Password
|
413
420
|
password_confirmation: Password Confirmation
|
414
421
|
spree_roles: Roles
|
415
422
|
spree/variant:
|
423
|
+
condition: Condition
|
416
424
|
cost_currency: Cost Currency
|
417
425
|
cost_price: Cost Price
|
418
426
|
depth: Depth
|
427
|
+
gtin: GTIN
|
419
428
|
height: Height
|
420
429
|
price: Price
|
430
|
+
shipping_category: Variant Shipping Category
|
421
431
|
sku: SKU
|
422
432
|
tax_category: Variant Tax Category
|
423
433
|
weight: Weight
|
@@ -434,17 +444,14 @@ en:
|
|
434
444
|
spree/calculator/tiered_flat_rate:
|
435
445
|
attributes:
|
436
446
|
base:
|
437
|
-
keys_should_be_positive_number: Tier keys should all be numbers larger
|
438
|
-
than 0
|
447
|
+
keys_should_be_positive_number: Tier keys should all be numbers larger than 0
|
439
448
|
preferred_tiers:
|
440
449
|
should_be_hash: should be a hash
|
441
450
|
spree/calculator/tiered_percent:
|
442
451
|
attributes:
|
443
452
|
base:
|
444
|
-
keys_should_be_positive_number: Tier keys should all be numbers larger
|
445
|
-
|
446
|
-
values_should_be_percent: Tier values should all be percentages between
|
447
|
-
0% and 100%
|
453
|
+
keys_should_be_positive_number: Tier keys should all be numbers larger than 0
|
454
|
+
values_should_be_percent: Tier values should all be percentages between 0% and 100%
|
448
455
|
preferred_tiers:
|
449
456
|
should_be_hash: should be a hash
|
450
457
|
spree/classification:
|
@@ -459,15 +466,14 @@ en:
|
|
459
466
|
spree/inventory_unit:
|
460
467
|
attributes:
|
461
468
|
base:
|
462
|
-
cannot_destroy_shipment_state: Cannot destroy an inventory unit for
|
463
|
-
a %{state} shipment
|
469
|
+
cannot_destroy_shipment_state: Cannot destroy an inventory unit for a %{state} shipment
|
464
470
|
state:
|
465
471
|
cannot_destroy: Cannot destroy a %{state} inventory unit
|
466
472
|
spree/line_item:
|
467
473
|
attributes:
|
468
474
|
price:
|
469
|
-
not_a_number: is not valid
|
470
475
|
does_not_match_order_currency: Line item price currency must match order currency!
|
476
|
+
not_a_number: is not valid
|
471
477
|
spree/price:
|
472
478
|
attributes:
|
473
479
|
currency:
|
@@ -487,27 +493,29 @@ en:
|
|
487
493
|
spree/reimbursement:
|
488
494
|
attributes:
|
489
495
|
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.
|
496
|
+
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
497
|
spree/return_item:
|
493
498
|
attributes:
|
494
499
|
inventory_unit:
|
495
|
-
other_completed_return_item_exists: "%{inventory_unit_id} has already
|
496
|
-
been taken by return item %{return_item_id}"
|
500
|
+
other_completed_return_item_exists: "%{inventory_unit_id} has already been taken by return item %{return_item_id}"
|
497
501
|
reimbursement:
|
498
|
-
cannot_be_associated_unless_accepted: cannot be associated to a return
|
499
|
-
item that is not accepted.
|
502
|
+
cannot_be_associated_unless_accepted: cannot be associated to a return item that is not accepted.
|
500
503
|
spree/shipment:
|
501
504
|
attributes:
|
502
505
|
base:
|
503
|
-
cannot_remove_items_shipment_state: Cannot remove items from a %{state}
|
504
|
-
shipment
|
506
|
+
cannot_remove_items_shipment_state: Cannot remove items from a %{state} shipment
|
505
507
|
state:
|
506
508
|
cannot_destroy: Cannot destroy a %{state} shipment
|
507
509
|
spree/store:
|
508
510
|
attributes:
|
509
511
|
base:
|
510
512
|
cannot_destroy_default_store: Cannot destroy the default Store.
|
513
|
+
spree/taxon:
|
514
|
+
attributes:
|
515
|
+
name:
|
516
|
+
must_be_unique_under_same_parent: must be unique under the same parent Taxon
|
517
|
+
taxonomy_id:
|
518
|
+
can_have_only_one_root: can only have one root Taxon
|
511
519
|
spree/user_address:
|
512
520
|
attributes:
|
513
521
|
user_id:
|
@@ -538,6 +546,9 @@ en:
|
|
538
546
|
spree/calculator/distributed_amount:
|
539
547
|
one: Distributed Amount
|
540
548
|
other: Distributed Amount
|
549
|
+
spree/calculator/flat_fee:
|
550
|
+
one: Flat Fee
|
551
|
+
other: Flat Fee
|
541
552
|
spree/calculator/flat_percent_item_total:
|
542
553
|
one: Flat Percent
|
543
554
|
other: Flat Percent
|
@@ -652,6 +663,7 @@ en:
|
|
652
663
|
spree/promotion/rules/first_repeat_purchase_since: First Repeat Purchase Since
|
653
664
|
spree/promotion/rules/item_total: Item Total
|
654
665
|
spree/promotion/rules/landing_page: Landing Page
|
666
|
+
spree/promotion/rules/minimum_quantity: Minimum Quantity
|
655
667
|
spree/promotion/rules/nth_order: Nth Order
|
656
668
|
spree/promotion/rules/one_use_per_user: One Use Per User
|
657
669
|
spree/promotion/rules/option_value: Option Value(s)
|
@@ -762,6 +774,10 @@ en:
|
|
762
774
|
not_saved:
|
763
775
|
one: '1 error prohibited this %{resource} from being saved:'
|
764
776
|
other: "%{count} errors prohibited this %{resource} from being saved:"
|
777
|
+
number:
|
778
|
+
percentage:
|
779
|
+
format:
|
780
|
+
precision: 1
|
765
781
|
spree:
|
766
782
|
abbreviation: Abbreviation
|
767
783
|
accept: Accept
|
@@ -803,8 +819,6 @@ en:
|
|
803
819
|
add_option_value: Add Option Value
|
804
820
|
add_product: Add Product
|
805
821
|
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
822
|
add_rule_of_type: Add rule of type
|
809
823
|
add_state: Add State
|
810
824
|
add_stock: Add Stock
|
@@ -826,6 +840,7 @@ en:
|
|
826
840
|
line_item: "%{promotion} (%{promotion_name})"
|
827
841
|
order: "%{promotion} (%{promotion_name})"
|
828
842
|
tax_rates:
|
843
|
+
flat_fee: "%{name}"
|
829
844
|
sales_tax: "%{name}"
|
830
845
|
sales_tax_with_rate: "%{name} %{amount}"
|
831
846
|
vat: "%{name} (Included in Price)"
|
@@ -854,8 +869,7 @@ en:
|
|
854
869
|
payments:
|
855
870
|
source_forms:
|
856
871
|
storecredit:
|
857
|
-
not_supported: Creating store credit payments via the admin is not currently
|
858
|
-
supported.
|
872
|
+
not_supported: Creating store credit payments via the admin is not currently supported.
|
859
873
|
prices:
|
860
874
|
any_country: Any Country
|
861
875
|
edit:
|
@@ -864,32 +878,15 @@ en:
|
|
864
878
|
amount_greater_than: Amount greater than
|
865
879
|
amount_less_than: Amount less than
|
866
880
|
new_price: New Price
|
881
|
+
master_variant_table:
|
882
|
+
master_variant: Master Variant Prices
|
867
883
|
new:
|
868
884
|
new_price: New Price
|
869
|
-
|
870
|
-
|
871
|
-
calculator_label: Calculated by
|
872
|
-
activations_edit:
|
873
|
-
auto: All orders will attempt to use this promotion
|
874
|
-
multiple_codes_html: This promotion uses %{count} promotion codes
|
875
|
-
single_code_html: 'This promotion uses the promotion code: <code>%{code}</code>'
|
876
|
-
activations_new:
|
877
|
-
auto: Apply to all orders
|
878
|
-
multiple_codes: Multiple promotion codes
|
879
|
-
single_code: Single promotion code
|
880
|
-
form:
|
881
|
-
activation: Activation
|
882
|
-
expires_at_placeholder: Never
|
883
|
-
general: General
|
884
|
-
starts_at_placeholder: Immediately
|
885
|
-
promotion_status:
|
886
|
-
active: Active
|
887
|
-
expired: Expired
|
888
|
-
inactive: Inactive
|
889
|
-
not_started: Not started
|
885
|
+
table:
|
886
|
+
variant_pricing: Variant Prices
|
890
887
|
shipping_methods:
|
891
888
|
form:
|
892
|
-
stock_locations_placeholder:
|
889
|
+
stock_locations_placeholder: Choose stock locations
|
893
890
|
stock_locations:
|
894
891
|
form:
|
895
892
|
address: Address
|
@@ -915,10 +912,9 @@ en:
|
|
915
912
|
amount_used_cannot_be_greater: cannot be greater than the credited amount
|
916
913
|
amount_used_not_zero: is greater than zero. Can not delete store credit
|
917
914
|
cannot_be_modified: cannot be modified
|
918
|
-
cannot_change_used_store_credit: Store credit that has been claimed cannot
|
919
|
-
be changed
|
920
|
-
update_reason_required: A reason for the change must be selected
|
915
|
+
cannot_change_used_store_credit: Store credit that has been claimed cannot be changed
|
921
916
|
store_credit_reason_required: A reason for the change must be selected
|
917
|
+
update_reason_required: A reason for the change must be selected
|
922
918
|
history: Store credit history
|
923
919
|
invalidate_store_credit: Invalidating store credit
|
924
920
|
invalidated: Invalidated
|
@@ -953,8 +949,6 @@ en:
|
|
953
949
|
overview: Overview
|
954
950
|
payments: Payments
|
955
951
|
products: Products
|
956
|
-
promotion_categories: Promotion Categories
|
957
|
-
promotions: Promotions
|
958
952
|
properties: Property Types
|
959
953
|
rma: RMA
|
960
954
|
settings: Settings
|
@@ -983,10 +977,8 @@ en:
|
|
983
977
|
edit:
|
984
978
|
api_access: API Access
|
985
979
|
clear_key: Clear key
|
986
|
-
confirm_clear_key: Are you sure you want to clear this user's API key? It
|
987
|
-
|
988
|
-
confirm_regenerate_key: Are you sure you want to regenerate this user's
|
989
|
-
API key? It will invalidate the existing key.
|
980
|
+
confirm_clear_key: Are you sure you want to clear this user's API key? It will invalidate the existing key.
|
981
|
+
confirm_regenerate_key: Are you sure you want to regenerate this user's API key? It will invalidate the existing key.
|
990
982
|
generate_key: Generate API key
|
991
983
|
key: Key
|
992
984
|
no_key: No key
|
@@ -998,12 +990,16 @@ en:
|
|
998
990
|
edit_variant: Edit Variant
|
999
991
|
form:
|
1000
992
|
dimensions: Dimensions
|
993
|
+
options: Options
|
1001
994
|
pricing: Pricing
|
1002
|
-
pricing_hint: These values are populated from the product details page and
|
1003
|
-
|
995
|
+
pricing_hint: These values are populated from the product details page and can be overridden below
|
996
|
+
properties: Properties
|
997
|
+
use_product_shipping_category: Use Product Shipping Category
|
1004
998
|
use_product_tax_category: Use Product Tax Category
|
1005
999
|
new:
|
1006
1000
|
new_variant: New Variant
|
1001
|
+
table:
|
1002
|
+
no_variants_found: No variants found for '%{term}'
|
1007
1003
|
table_filter:
|
1008
1004
|
show_deleted: Show Deleted Variants
|
1009
1005
|
administration: Administration
|
@@ -1026,6 +1022,7 @@ en:
|
|
1026
1022
|
analytics_desc_list_4: It's completely free!
|
1027
1023
|
analytics_trackers: Analytics Trackers
|
1028
1024
|
and: and
|
1025
|
+
applies_to_all_variant_properties: Applies to all Variant Properties above
|
1029
1026
|
apply_code: Apply Code
|
1030
1027
|
approve: Approve
|
1031
1028
|
approved_at: Approved at
|
@@ -1053,8 +1050,6 @@ en:
|
|
1053
1050
|
back_to_payment_methods_list: Back To Payment Methods List
|
1054
1051
|
back_to_payments_list: Back To Payments List
|
1055
1052
|
back_to_products_list: Back To Products List
|
1056
|
-
back_to_promotion_categories_list: Back To Promotions Categories List
|
1057
|
-
back_to_promotions_list: Back To Promotions List
|
1058
1053
|
back_to_properties_list: Back To Property Types List
|
1059
1054
|
back_to_refund_reason_list: Back To Refund Reason List
|
1060
1055
|
back_to_reimbursement_type_list: Back To Reimbursement Type List
|
@@ -1080,16 +1075,17 @@ en:
|
|
1080
1075
|
backordered: Backordered
|
1081
1076
|
backorders_allowed: backorders allowed
|
1082
1077
|
balance_due: Balance Due
|
1083
|
-
base_amount: Base Amount
|
1084
1078
|
base_percent: Base Percent
|
1085
1079
|
bill_address: Bill Address
|
1080
|
+
bill_address_required: Valid billing address required
|
1086
1081
|
billing: Billing
|
1087
1082
|
billing_address: Billing Address
|
1088
1083
|
both: Both
|
1084
|
+
brand: Brand
|
1085
|
+
brands: Brands
|
1089
1086
|
calculated_reimbursements: Calculated Reimbursements
|
1090
1087
|
calculator: Calculator
|
1091
|
-
calculator_settings_warning: If you are changing the calculator type or preference
|
1092
|
-
source, you must save first before you can edit the calculator settings
|
1088
|
+
calculator_settings_warning: If you are changing the calculator type or preference source, you must save first before you can edit the calculator settings
|
1093
1089
|
cancel: Cancel
|
1094
1090
|
cancel_inventory: Cancel Items
|
1095
1091
|
canceled: Canceled
|
@@ -1097,19 +1093,14 @@ en:
|
|
1097
1093
|
canceler: Canceler
|
1098
1094
|
cancellation: Cancellation
|
1099
1095
|
cannot_create_payment_link: Please define some payment methods first.
|
1100
|
-
cannot_create_payment_without_payment_methods_html: You cannot create a payment
|
1101
|
-
for an order without any payment methods defined. %{link}
|
1096
|
+
cannot_create_payment_without_payment_methods_html: You cannot create a payment for an order without any payment methods defined. %{link}
|
1102
1097
|
cannot_create_returns: Cannot create returns as this order has no shipped units.
|
1103
1098
|
cannot_edit_orders: You may only edit your current shopping cart.
|
1104
1099
|
cannot_perform_operation: Cannot perform requested operation
|
1105
|
-
cannot_rebuild_shipments_order_completed: Cannot rebuild shipments for a completed
|
1106
|
-
|
1107
|
-
|
1108
|
-
|
1109
|
-
cannot_set_shipping_method_without_address: Cannot set shipping method until customer
|
1110
|
-
details are provided.
|
1111
|
-
cannot_update_email: You do not have access to update this user's email address.
|
1112
|
-
<br />Please contact a superuser if you need to perform this action.
|
1100
|
+
cannot_rebuild_shipments_order_completed: Cannot rebuild shipments for a completed order.
|
1101
|
+
cannot_rebuild_shipments_shipments_not_pending: Cannot rebuild shipments for an order with non-pending shipments.
|
1102
|
+
cannot_set_shipping_method_without_address: Cannot set shipping method until customer details are provided.
|
1103
|
+
cannot_update_email: You do not have access to update this user's email address. <br>Please contact a superuser if you need to perform this action.
|
1113
1104
|
capture: Capture
|
1114
1105
|
capture_events: Capture events
|
1115
1106
|
card_code: Card Code
|
@@ -1133,15 +1124,13 @@ en:
|
|
1133
1124
|
choose_a_taxon_to_sort_products_for: Choose a taxon to sort products for
|
1134
1125
|
choose_currency: Choose Currency
|
1135
1126
|
choose_dashboard_locale: Choose Dashboard Locale
|
1127
|
+
choose_dashboard_theme: Choose Dashboard Theme
|
1136
1128
|
choose_location: Choose Location
|
1137
|
-
choose_promotion_action: Choose Action
|
1138
|
-
choose_promotion_rule: Choose Rule
|
1139
1129
|
choose_reason: Choose Reason
|
1140
1130
|
city: City
|
1141
1131
|
clear_cache: Clear Cache
|
1142
1132
|
clear_cache_ok: Cache was flushed
|
1143
|
-
clear_cache_warning: Clearing cache will temporarily reduce the performance of
|
1144
|
-
your store.
|
1133
|
+
clear_cache_warning: Clearing cache will temporarily reduce the performance of your store.
|
1145
1134
|
clone: Clone
|
1146
1135
|
close: Close
|
1147
1136
|
closed: Closed
|
@@ -1149,6 +1138,11 @@ en:
|
|
1149
1138
|
company: Company
|
1150
1139
|
complete: complete
|
1151
1140
|
complete_order: Complete Order
|
1141
|
+
condition:
|
1142
|
+
damaged: Damaged
|
1143
|
+
new: New
|
1144
|
+
refurbished: Refurbished
|
1145
|
+
used: Used
|
1152
1146
|
configuration: Configuration
|
1153
1147
|
configurations: Configurations
|
1154
1148
|
confirm: Confirm
|
@@ -1159,41 +1153,281 @@ en:
|
|
1159
1153
|
continue_shopping: Continue shopping
|
1160
1154
|
cost_currency: Cost Currency
|
1161
1155
|
cost_price: Cost Price
|
1162
|
-
could_not_connect_to_jirafe: Could not connect to Jirafe to sync data. This will
|
1163
|
-
be automatically retried later.
|
1156
|
+
could_not_connect_to_jirafe: Could not connect to Jirafe to sync data. This will be automatically retried later.
|
1164
1157
|
could_not_create_customer_return: Could not create customer return
|
1165
|
-
could_not_create_stock_movement: There was a problem saving this stock movement.
|
1166
|
-
Please try again.
|
1158
|
+
could_not_create_stock_movement: There was a problem saving this stock movement. Please try again.
|
1167
1159
|
count_on_hand: Count On Hand
|
1168
1160
|
countries: Countries
|
1169
1161
|
country: Country
|
1170
1162
|
country_based: Country Based
|
1171
1163
|
country_name: Name
|
1172
1164
|
country_names:
|
1165
|
+
AD: Andorra
|
1166
|
+
AE: United Arab Emirates
|
1167
|
+
AF: Afghanistan
|
1168
|
+
AG: Antigua and Barbuda
|
1169
|
+
AI: Anguilla
|
1170
|
+
AL: Albania
|
1171
|
+
AM: Armenia
|
1172
|
+
AO: Angola
|
1173
|
+
AQ: Antarctica
|
1174
|
+
AR: Argentina
|
1175
|
+
AS: American Samoa
|
1176
|
+
AT: Austria
|
1177
|
+
AU: Australia
|
1178
|
+
AW: Aruba
|
1179
|
+
AX: Åland Islands
|
1180
|
+
AZ: Azerbaijan
|
1181
|
+
BA: Bosnia and Herzegovina
|
1182
|
+
BB: Barbados
|
1183
|
+
BD: Bangladesh
|
1184
|
+
BE: Belgium
|
1185
|
+
BF: Burkina Faso
|
1186
|
+
BG: Bulgaria
|
1187
|
+
BH: Bahrain
|
1188
|
+
BI: Burundi
|
1189
|
+
BJ: Benin
|
1190
|
+
BL: Saint Barthélemy
|
1191
|
+
BM: Bermuda
|
1192
|
+
BN: Brunei Darussalam
|
1193
|
+
BO: Bolivia, Plurinational State of
|
1194
|
+
BQ: Bonaire, Sint Eustatius and Saba
|
1195
|
+
BR: Brazil
|
1196
|
+
BS: Bahamas
|
1197
|
+
BT: Bhutan
|
1198
|
+
BV: Bouvet Island
|
1199
|
+
BW: Botswana
|
1200
|
+
BY: Belarus
|
1201
|
+
BZ: Belize
|
1173
1202
|
CA: Canada
|
1203
|
+
CC: Cocos (Keeling) Islands
|
1204
|
+
CD: Congo, The Democratic Republic of the
|
1205
|
+
CF: Central African Republic
|
1206
|
+
CG: Congo
|
1207
|
+
CH: Switzerland
|
1208
|
+
CI: Côte d'Ivoire
|
1209
|
+
CK: Cook Islands
|
1210
|
+
CL: Chile
|
1211
|
+
CM: Cameroon
|
1212
|
+
CN: China
|
1213
|
+
CO: Colombia
|
1214
|
+
CR: Costa Rica
|
1215
|
+
CU: Cuba
|
1216
|
+
CV: Cabo Verde
|
1217
|
+
CW: Curaçao
|
1218
|
+
CX: Christmas Island
|
1219
|
+
CY: Cyprus
|
1220
|
+
CZ: Czechia
|
1221
|
+
DE: Germany
|
1222
|
+
DJ: Djibouti
|
1223
|
+
DK: Denmark
|
1224
|
+
DM: Dominica
|
1225
|
+
DO: Dominican Republic
|
1226
|
+
DZ: Algeria
|
1227
|
+
EC: Ecuador
|
1228
|
+
EE: Estonia
|
1229
|
+
EG: Egypt
|
1230
|
+
EH: Western Sahara
|
1231
|
+
ER: Eritrea
|
1232
|
+
ES: Spain
|
1233
|
+
ET: Ethiopia
|
1234
|
+
FI: Finland
|
1235
|
+
FJ: Fiji
|
1236
|
+
FK: Falkland Islands (Malvinas)
|
1237
|
+
FM: Micronesia, Federated States of
|
1238
|
+
FO: Faroe Islands
|
1239
|
+
FR: France
|
1174
1240
|
FRA: France
|
1241
|
+
GA: Gabon
|
1242
|
+
GB: United Kingdom
|
1243
|
+
GD: Grenada
|
1244
|
+
GE: Georgia
|
1245
|
+
GF: French Guiana
|
1246
|
+
GG: Guernsey
|
1247
|
+
GH: Ghana
|
1248
|
+
GI: Gibraltar
|
1249
|
+
GL: Greenland
|
1250
|
+
GM: Gambia
|
1251
|
+
GN: Guinea
|
1252
|
+
GP: Guadeloupe
|
1253
|
+
GQ: Equatorial Guinea
|
1254
|
+
GR: Greece
|
1255
|
+
GS: South Georgia and the South Sandwich Islands
|
1256
|
+
GT: Guatemala
|
1257
|
+
GU: Guam
|
1258
|
+
GW: Guinea-Bissau
|
1259
|
+
GY: Guyana
|
1260
|
+
HK: Hong Kong
|
1261
|
+
HM: Heard Island and McDonald Islands
|
1262
|
+
HN: Honduras
|
1263
|
+
HR: Croatia
|
1264
|
+
HT: Haiti
|
1265
|
+
HU: Hungary
|
1266
|
+
ID: Indonesia
|
1267
|
+
IE: Ireland
|
1268
|
+
IL: Israel
|
1269
|
+
IM: Isle of Man
|
1270
|
+
IN: India
|
1271
|
+
IO: British Indian Ocean Territory
|
1272
|
+
IQ: Iraq
|
1273
|
+
IR: Iran, Islamic Republic of
|
1274
|
+
IS: Iceland
|
1275
|
+
IT: Italy
|
1175
1276
|
ITA: Italy
|
1277
|
+
JE: Jersey
|
1278
|
+
JM: Jamaica
|
1279
|
+
JO: Jordan
|
1280
|
+
JP: Japan
|
1281
|
+
KE: Kenya
|
1282
|
+
KG: Kyrgyzstan
|
1283
|
+
KH: Cambodia
|
1284
|
+
KI: Kiribati
|
1285
|
+
KM: Comoros
|
1286
|
+
KN: Saint Kitts and Nevis
|
1287
|
+
KP: Korea, Democratic People's Republic of
|
1288
|
+
KR: Korea, Republic of
|
1289
|
+
KW: Kuwait
|
1290
|
+
KY: Cayman Islands
|
1291
|
+
KZ: Kazakhstan
|
1292
|
+
LA: Lao People's Democratic Republic
|
1293
|
+
LB: Lebanon
|
1294
|
+
LC: Saint Lucia
|
1295
|
+
LI: Liechtenstein
|
1296
|
+
LK: Sri Lanka
|
1297
|
+
LR: Liberia
|
1298
|
+
LS: Lesotho
|
1299
|
+
LT: Lithuania
|
1300
|
+
LU: Luxembourg
|
1301
|
+
LV: Latvia
|
1302
|
+
LY: Libya
|
1303
|
+
MA: Morocco
|
1304
|
+
MC: Monaco
|
1305
|
+
MD: Moldova, Republic of
|
1306
|
+
ME: Montenegro
|
1307
|
+
MF: Saint Martin (French part)
|
1308
|
+
MG: Madagascar
|
1309
|
+
MH: Marshall Islands
|
1310
|
+
MK: North Macedonia
|
1311
|
+
ML: Mali
|
1312
|
+
MM: Myanmar
|
1313
|
+
MN: Mongolia
|
1314
|
+
MO: Macao
|
1315
|
+
MP: Northern Mariana Islands
|
1316
|
+
MQ: Martinique
|
1317
|
+
MR: Mauritania
|
1318
|
+
MS: Montserrat
|
1319
|
+
MT: Malta
|
1320
|
+
MU: Mauritius
|
1321
|
+
MV: Maldives
|
1322
|
+
MW: Malawi
|
1323
|
+
MX: Mexico
|
1324
|
+
MY: Malaysia
|
1325
|
+
MZ: Mozambique
|
1326
|
+
NA: Namibia
|
1327
|
+
NC: New Caledonia
|
1328
|
+
NE: Niger
|
1329
|
+
NF: Norfolk Island
|
1330
|
+
NG: Nigeria
|
1331
|
+
NI: Nicaragua
|
1332
|
+
NL: Netherlands
|
1333
|
+
'NO': Norway
|
1334
|
+
NP: Nepal
|
1335
|
+
NR: Nauru
|
1336
|
+
NU: Niue
|
1337
|
+
NZ: New Zealand
|
1338
|
+
OM: Oman
|
1339
|
+
PA: Panama
|
1340
|
+
PE: Peru
|
1341
|
+
PF: French Polynesia
|
1342
|
+
PG: Papua New Guinea
|
1343
|
+
PH: Philippines
|
1344
|
+
PK: Pakistan
|
1345
|
+
PL: Poland
|
1346
|
+
PM: Saint Pierre and Miquelon
|
1347
|
+
PN: Pitcairn
|
1348
|
+
PR: Puerto Rico
|
1349
|
+
PS: Palestine, State of
|
1350
|
+
PT: Portugal
|
1351
|
+
PW: Palau
|
1352
|
+
PY: Paraguay
|
1353
|
+
QA: Qatar
|
1354
|
+
RE: Réunion
|
1355
|
+
RO: Romania
|
1356
|
+
RS: Serbia
|
1357
|
+
RU: Russia
|
1358
|
+
RW: Rwanda
|
1359
|
+
SA: Saudi Arabia
|
1360
|
+
SB: Solomon Islands
|
1361
|
+
SC: Seychelles
|
1362
|
+
SD: Sudan
|
1363
|
+
SE: Sweden
|
1364
|
+
SG: Singapore
|
1365
|
+
SH: Saint Helena, Ascension and Tristan da Cunha
|
1366
|
+
SI: Slovenia
|
1367
|
+
SJ: Svalbard and Jan Mayen
|
1368
|
+
SK: Slovakia
|
1369
|
+
SL: Sierra Leone
|
1370
|
+
SM: San Marino
|
1371
|
+
SN: Senegal
|
1372
|
+
SO: Somalia
|
1373
|
+
SR: Suriname
|
1374
|
+
SS: South Sudan
|
1375
|
+
ST: Sao Tome and Principe
|
1376
|
+
SV: El Salvador
|
1377
|
+
SX: Sint Maarten (Dutch part)
|
1378
|
+
SY: Syrian Arab Republic
|
1379
|
+
SZ: Eswatini
|
1380
|
+
TC: Turks and Caicos Islands
|
1381
|
+
TD: Chad
|
1382
|
+
TF: French Southern Territories
|
1383
|
+
TG: Togo
|
1384
|
+
TH: Thailand
|
1385
|
+
TJ: Tajikistan
|
1386
|
+
TK: Tokelau
|
1387
|
+
TL: Timor-Leste
|
1388
|
+
TM: Turkmenistan
|
1389
|
+
TN: Tunisia
|
1390
|
+
TO: Tonga
|
1391
|
+
TR: Turkey
|
1392
|
+
TT: Trinidad and Tobago
|
1393
|
+
TV: Tuvalu
|
1394
|
+
TW: Taiwan
|
1395
|
+
TZ: Tanzania, United Republic of
|
1396
|
+
UA: Ukraine
|
1397
|
+
UG: Uganda
|
1398
|
+
UM: United States Minor Outlying Islands
|
1176
1399
|
US: United States of America
|
1400
|
+
UY: Uruguay
|
1401
|
+
UZ: Uzbekistan
|
1402
|
+
VA: Holy See (Vatican City State)
|
1403
|
+
VC: Saint Vincent and the Grenadines
|
1404
|
+
VE: Venezuela, Bolivarian Republic of
|
1405
|
+
VG: Virgin Islands, British
|
1406
|
+
VI: Virgin Islands, U.S.
|
1407
|
+
VN: Vietnam
|
1408
|
+
VU: Vanuatu
|
1409
|
+
WF: Wallis and Futuna
|
1410
|
+
WS: Samoa
|
1411
|
+
YE: Yemen
|
1412
|
+
YT: Mayotte
|
1413
|
+
ZA: South Africa
|
1414
|
+
ZM: Zambia
|
1415
|
+
ZW: Zimbabwe
|
1177
1416
|
coupon: Coupon
|
1178
1417
|
coupon_code: Coupon code
|
1179
|
-
coupon_code_already_applied: The coupon code has already been applied to this
|
1180
|
-
order
|
1418
|
+
coupon_code_already_applied: The coupon code has already been applied to this order
|
1181
1419
|
coupon_code_applied: The coupon code was successfully applied to your order.
|
1182
|
-
coupon_code_better_exists: The previously applied coupon code results in a better
|
1183
|
-
deal
|
1420
|
+
coupon_code_better_exists: The previously applied coupon code results in a better deal
|
1184
1421
|
coupon_code_expired: The coupon code is expired
|
1185
1422
|
coupon_code_max_usage: Coupon code usage limit exceeded
|
1186
1423
|
coupon_code_not_eligible: This coupon code is not eligible for this order
|
1187
1424
|
coupon_code_not_found: The coupon code you entered doesn't exist. Please try again.
|
1188
|
-
coupon_code_not_present: The coupon code you are trying to remove is not present
|
1189
|
-
on this order.
|
1425
|
+
coupon_code_not_present: The coupon code you are trying to remove is not present on this order.
|
1190
1426
|
coupon_code_removed: The coupon code was successfully removed from this order.
|
1191
|
-
coupon_code_unknown_error: This coupon code could not be applied to the cart at
|
1192
|
-
this time.
|
1427
|
+
coupon_code_unknown_error: This coupon code could not be applied to the cart at this time.
|
1193
1428
|
create: Create
|
1194
1429
|
create_a_new_account: Create a new account
|
1195
1430
|
create_one: Create One.
|
1196
|
-
create_promotion_code: Create promotion code
|
1197
1431
|
create_reimbursement: Create reimbursement
|
1198
1432
|
created_at: Created At
|
1199
1433
|
created_by: Created by
|
@@ -1207,7 +1441,6 @@ en:
|
|
1207
1441
|
currency: Currency
|
1208
1442
|
currency_settings: Currency Settings
|
1209
1443
|
current: Current
|
1210
|
-
current_promotion_usage: 'Current Usage: %{count}'
|
1211
1444
|
customer: Customer
|
1212
1445
|
customer_details: Customer Details
|
1213
1446
|
customer_details_updated: Customer Details Updated
|
@@ -1220,10 +1453,8 @@ en:
|
|
1220
1453
|
jirafe:
|
1221
1454
|
app_id: App ID
|
1222
1455
|
app_token: App Token
|
1223
|
-
currently_unavailable: Jirafe is currently unavailable. Spree will automatically
|
1224
|
-
|
1225
|
-
explanation: The fields below may already be populated if you chose to register
|
1226
|
-
with Jirafe from the admin dashboard.
|
1456
|
+
currently_unavailable: Jirafe is currently unavailable. Spree will automatically connect to Jirafe once it is available.
|
1457
|
+
explanation: The fields below may already be populated if you chose to register with Jirafe from the admin dashboard.
|
1227
1458
|
header: Jirafe Analytics Settings
|
1228
1459
|
site_id: Site ID
|
1229
1460
|
token: Token
|
@@ -1233,14 +1464,13 @@ en:
|
|
1233
1464
|
date_picker:
|
1234
1465
|
first_day: 0
|
1235
1466
|
format: "%Y/%m/%d"
|
1236
|
-
js_format:
|
1467
|
+
js_format: Y/m/d
|
1237
1468
|
date_range: Date Range
|
1238
1469
|
default: Default
|
1239
1470
|
default_refund_amount: Default Refund Amount
|
1240
1471
|
delete: Delete
|
1241
1472
|
deleted_successfully: Deleted successfully
|
1242
|
-
deleted_variants_present: Some line items in this order have products that are
|
1243
|
-
no longer available.
|
1473
|
+
deleted_variants_present: Some line items in this order have products that are no longer available.
|
1244
1474
|
delivery: Delivery
|
1245
1475
|
depth: Depth
|
1246
1476
|
description: Description
|
@@ -1249,10 +1479,8 @@ en:
|
|
1249
1479
|
destroy: Destroy
|
1250
1480
|
details: Details
|
1251
1481
|
discount_amount: Discount Amount
|
1252
|
-
discount_rules: Discount Rules
|
1253
1482
|
dismiss_banner: No. Thanks! I'm not interested, do not display this message again
|
1254
1483
|
display: Display
|
1255
|
-
download_promotion_codes_list: Download codes list
|
1256
1484
|
edit: Edit
|
1257
1485
|
edit_refund_reason: Edit Refund Reason
|
1258
1486
|
editing_adjustment_reason: Editing Adjustment Reason
|
@@ -1260,8 +1488,6 @@ en:
|
|
1260
1488
|
editing_option_type: Editing Option Type
|
1261
1489
|
editing_payment_method: Editing Payment Method
|
1262
1490
|
editing_product: Editing Product
|
1263
|
-
editing_promotion: Editing Promotion
|
1264
|
-
editing_promotion_category: Editing Promotion Category
|
1265
1491
|
editing_property: Editing Property Type
|
1266
1492
|
editing_refund: Editing Refund
|
1267
1493
|
editing_refund_reason: Editing Refund Reason
|
@@ -1280,27 +1506,22 @@ en:
|
|
1280
1506
|
editing_zone: Editing Zone
|
1281
1507
|
eligibility_errors:
|
1282
1508
|
messages:
|
1283
|
-
has_excluded_product: Your cart contains a product that prevents this coupon
|
1284
|
-
|
1285
|
-
|
1286
|
-
|
1287
|
-
|
1288
|
-
%{amount}.
|
1289
|
-
item_total_less_than_or_equal: This coupon code can't be applied to orders
|
1290
|
-
less than or equal to %{amount}.
|
1509
|
+
has_excluded_product: Your cart contains a product that prevents this coupon code from being applied.
|
1510
|
+
has_excluded_taxon: Your cart contains a product from an excluded category that prevents this coupon code from being applied.
|
1511
|
+
item_total_doesnt_match_with_operator: This coupon code can't be applied to orders %{operator} %{amount}.
|
1512
|
+
item_total_less_than: This coupon code can't be applied to orders less than %{amount}.
|
1513
|
+
item_total_less_than_or_equal: This coupon code can't be applied to orders less than or equal to %{amount}.
|
1291
1514
|
limit_once_per_user: This coupon code can only be used once per user.
|
1292
|
-
missing_product: This coupon code can't be applied because you don't have
|
1293
|
-
|
1294
|
-
|
1295
|
-
|
1296
|
-
|
1297
|
-
this coupon code.
|
1298
|
-
no_matching_taxons: You need to add a product from an applicable category
|
1299
|
-
before applying this coupon code.
|
1300
|
-
no_user_or_email_specified: You need to login or provide your email before
|
1301
|
-
applying this coupon code.
|
1515
|
+
missing_product: This coupon code can't be applied because you don't have all of the necessary products in your cart.
|
1516
|
+
missing_taxon: You need to add a product from all applicable categories before applying this coupon code.
|
1517
|
+
no_applicable_products: You need to add an applicable product before applying this coupon code.
|
1518
|
+
no_matching_taxons: You need to add a product from an applicable category before applying this coupon code.
|
1519
|
+
no_user_or_email_specified: You need to login or provide your email before applying this coupon code.
|
1302
1520
|
no_user_specified: You need to login before applying this coupon code.
|
1303
1521
|
not_first_order: This coupon code can only be applied to your first order.
|
1522
|
+
quantity_less_than_minimum:
|
1523
|
+
one: You need to add a least 1 applicable item to your order.
|
1524
|
+
other: You need to add a least %{count} applicable items to your order.
|
1304
1525
|
email: Email
|
1305
1526
|
empty: Empty
|
1306
1527
|
empty_cart: Empty Cart
|
@@ -1308,14 +1529,13 @@ en:
|
|
1308
1529
|
end: End
|
1309
1530
|
ending_in: Ending in
|
1310
1531
|
error: error
|
1532
|
+
error_user_destroy_with_orders: Cannot delete a user with orders
|
1311
1533
|
errors:
|
1312
1534
|
messages:
|
1313
|
-
cannot_delete_finalized_stock_location: Stock Location cannot be destroyed
|
1314
|
-
if you have open stock transfers.
|
1535
|
+
cannot_delete_finalized_stock_location: Stock Location cannot be destroyed if you have open stock transfers.
|
1315
1536
|
could_not_create_taxon: Could not create taxon
|
1316
1537
|
no_payment_methods_available: No payment methods are configured for this environment
|
1317
|
-
no_shipping_methods_available: No shipping methods available for selected
|
1318
|
-
location, please change your address and try again.
|
1538
|
+
no_shipping_methods_available: No shipping methods available for selected location, please change your address and try again.
|
1319
1539
|
errors_prohibited_this_record_from_being_saved:
|
1320
1540
|
one: 1 error prohibited this record from being saved
|
1321
1541
|
other: "%{count} errors prohibited this record from being saved"
|
@@ -1334,9 +1554,7 @@ en:
|
|
1334
1554
|
user:
|
1335
1555
|
signup: User signup
|
1336
1556
|
exceptions:
|
1337
|
-
count_on_hand_setter: Cannot set count_on_hand manually, as it is set automatically
|
1338
|
-
by the recalculate_count_on_hand callback. Please use `update_column(:count_on_hand,
|
1339
|
-
value)` instead.
|
1557
|
+
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.
|
1340
1558
|
exchange_for: Exchange For
|
1341
1559
|
excl: excl.
|
1342
1560
|
existing_shipments: Existing shipments
|
@@ -1371,10 +1589,8 @@ en:
|
|
1371
1589
|
gateway_config_unavailable: Gateway unavailable for environment
|
1372
1590
|
gateway_error: Gateway Error
|
1373
1591
|
general: General
|
1374
|
-
general_settings: Store
|
1375
1592
|
google_analytics: Google Analytics
|
1376
1593
|
google_analytics_id: Analytics ID
|
1377
|
-
group_size: Group size
|
1378
1594
|
guest_checkout: Guest Checkout
|
1379
1595
|
guest_user_account: Checkout as a Guest
|
1380
1596
|
has_no_shipped_units: has no shipped units
|
@@ -1387,78 +1603,43 @@ en:
|
|
1387
1603
|
hide_out_of_stock: Hide out of stock
|
1388
1604
|
hints:
|
1389
1605
|
spree/calculator:
|
1390
|
-
|
1391
|
-
|
1392
|
-
calculator required by your store.
|
1393
|
-
shipping_methods: This is used to calculate the shipping rates on a per order or
|
1394
|
-
per package rate.
|
1395
|
-
promotions: This is used to determine the promotional discount to be applied to an
|
1396
|
-
order, an item, or shipping charges.
|
1606
|
+
shipping_methods: This is used to calculate the shipping rates on a per order or per package rate.
|
1607
|
+
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.
|
1397
1608
|
spree/price:
|
1398
|
-
country: 'This determines in what country the price is valid.<br
|
1399
|
-
|
1400
|
-
|
1401
|
-
below, but will be used to populate all new variants
|
1402
|
-
options: These options are used to create variants in the variants table.
|
1403
|
-
They can be changed in the variants tab
|
1609
|
+
country: 'This determines in what country the price is valid.<br>Default: Any Country'
|
1610
|
+
master_variant: Changing master variant prices will not change variant prices below, but will be used to populate all new variants
|
1611
|
+
options: These options are used to create variants in the variants table. They can be changed in the variants tab
|
1404
1612
|
spree/product:
|
1405
|
-
available_on: This sets the availability date for the product. If this value
|
1406
|
-
|
1407
|
-
|
1408
|
-
|
1409
|
-
|
1410
|
-
that day on anymore.
|
1411
|
-
promotionable: 'This determines whether or not promotions can apply to this
|
1412
|
-
product.<br/>Default: Checked'
|
1413
|
-
shipping_category: 'This determines what kind of shipping this product requires.<br/>
|
1414
|
-
Default: Default'
|
1415
|
-
tax_category: 'This determines what kind of taxation is applied to this product.<br/>
|
1416
|
-
Default: %{default_tax_category}'
|
1417
|
-
spree/promotion:
|
1418
|
-
expires_at: This determines when the promotion expires. <br/> If no value
|
1419
|
-
is specified, the promotion will never expire.
|
1420
|
-
starts_at: This determines when the promotion can be applied to orders. <br/>
|
1421
|
-
If no value is specified, the promotion will be immediately available.
|
1422
|
-
promo_code_will_be_disabled: Selecting this option, promo codes will be disabled for this promotion
|
1423
|
-
because all its rules / actions will be applied automatically to all orders.
|
1613
|
+
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.
|
1614
|
+
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.
|
1615
|
+
promotionable: 'This determines whether or not promotions can apply to this product.<br>Default: Checked'
|
1616
|
+
shipping_category: 'This determines what kind of shipping this product requires.<br> Default: Default'
|
1617
|
+
tax_category: 'This determines what kind of taxation is applied to this product.<br> Default: %{default_tax_category}'
|
1424
1618
|
spree/shipping_method:
|
1425
|
-
available_to_all: Uncheck to select specific stock locations this
|
1426
|
-
shipping method will be available in.
|
1619
|
+
available_to_all: Uncheck to select specific stock locations this shipping method will be available in.
|
1427
1620
|
spree/stock_location:
|
1428
|
-
active: 'This determines whether stock from this location can be used when
|
1429
|
-
|
1430
|
-
|
1431
|
-
|
1432
|
-
|
1433
|
-
|
1434
|
-
fulfillable: 'When unchecked, this indicates that items in this location don''t
|
1435
|
-
require actual fulfilment. Stock will not be checked when shipping and emails
|
1436
|
-
will not be sent.<br/> Default: Checked'
|
1437
|
-
propagate_all_variants: 'When checked, this will create a stock item for each variant
|
1438
|
-
in this stock location.<br/> Default: Checked'
|
1439
|
-
restock_inventory: 'When checked, returned inventory can be added back to
|
1440
|
-
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'
|
1441
1627
|
spree/store:
|
1442
|
-
available_locales: This determines which locales are available for your customers
|
1443
|
-
|
1444
|
-
|
1445
|
-
|
1446
|
-
code: 'An identifier for your store. Developers may need this value if you operate
|
1447
|
-
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.
|
1631
|
+
default_currency: This determines which currency will be used for the storefront's product prices. Please, be aware that changing this configuration, only products that have prices in the selected currency will be listed on your storefront. <br><br>This setting won't change the default currency used when you create a product. For that, only the global `Spree::Config.currency` is taken into account.
|
1448
1632
|
spree/tax_category:
|
1449
|
-
is_default:
|
1633
|
+
is_default: When checked, this tax category will be selected by default when creating new products or variants.
|
1450
1634
|
spree/tax_rate:
|
1451
|
-
|
1452
|
-
|
1453
|
-
date value is specified, the tax rate will be immediately available. <br
|
1454
|
-
/> If no expiration date value is specified, the tax rate will never expire
|
1635
|
+
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.
|
1636
|
+
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
|
1455
1637
|
spree/variant:
|
1456
1638
|
deleted: Deleted Variant
|
1457
1639
|
deleted_explanation: This variant was deleted on %{date}.
|
1458
|
-
deleted_explanation_with_replacement: This variant was deleted on %{date}.
|
1459
|
-
|
1460
|
-
tax_category: 'This determines what kind of taxation is applied to this variant.<br
|
1461
|
-
Default: Use tax category of the product associated with this variant'
|
1640
|
+
deleted_explanation_with_replacement: This variant was deleted on %{date}. It has since been replaced by another with the same SKU.
|
1641
|
+
shipping_category: 'This determines what kind of shipping this variant requires.<br> Default: Use shipping category of the product associated with this variant'
|
1642
|
+
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'
|
1462
1643
|
home: Home
|
1463
1644
|
i18n:
|
1464
1645
|
available_locales: Available Locales
|
@@ -1477,15 +1658,12 @@ en:
|
|
1477
1658
|
identifier: Identifier
|
1478
1659
|
image: Image
|
1479
1660
|
images: Images
|
1480
|
-
implement_eligible_for_return: 'Must implement #eligible_for_return? for your
|
1481
|
-
|
1482
|
-
implement_requires_manual_intervention: 'Must implement #requires_manual_intervention?
|
1483
|
-
for your EligibilityValidator.'
|
1661
|
+
implement_eligible_for_return: 'Must implement #eligible_for_return? for your EligibilityValidator.'
|
1662
|
+
implement_requires_manual_intervention: 'Must implement #requires_manual_intervention? for your EligibilityValidator.'
|
1484
1663
|
inactive: Inactive
|
1485
1664
|
incl: incl.
|
1486
1665
|
included_in_price: Included in Price
|
1487
|
-
included_price_validation: cannot be selected unless you have set a Default Tax
|
1488
|
-
Zone
|
1666
|
+
included_price_validation: cannot be selected unless you have set a Default Tax Zone
|
1489
1667
|
incomplete: Incomplete
|
1490
1668
|
info_number_of_skus_not_shown:
|
1491
1669
|
one: and one other
|
@@ -1494,20 +1672,17 @@ en:
|
|
1494
1672
|
instructions_to_reset_password: Please enter your email on the form below
|
1495
1673
|
insufficient_stock: Insufficient stock available, only %{on_hand} remaining
|
1496
1674
|
insufficient_stock_for_order: Insufficient stock for order
|
1497
|
-
insufficient_stock_lines_present: Some line items in this order have insufficient
|
1498
|
-
quantity.
|
1675
|
+
insufficient_stock_lines_present: Some line items in this order have insufficient quantity.
|
1499
1676
|
intercept_email_address: Intercept Email Address
|
1500
1677
|
intercept_email_instructions: Override email recipient and replace with this address.
|
1501
1678
|
invalid_exchange_variant: Invalid exchange variant.
|
1502
1679
|
invalid_payment_method_type: Invalid payment method type.
|
1503
|
-
invalid_promotion_action: Invalid promotion action.
|
1504
|
-
invalid_promotion_rule: Invalid promotion rule.
|
1505
1680
|
invalidate: Invalidate
|
1506
1681
|
inventory: Inventory
|
1507
1682
|
inventory_adjustment: Inventory Adjustment
|
1508
1683
|
inventory_canceled: Inventory canceled
|
1509
1684
|
inventory_error_flash_for_insufficient_quantity: "%{names} became unavailable."
|
1510
|
-
inventory_error_flash_for_insufficient_shipment_quantity:
|
1685
|
+
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.
|
1511
1686
|
inventory_not_available: Inventory not available for %{item}.
|
1512
1687
|
inventory_state: Inventory State
|
1513
1688
|
inventory_states:
|
@@ -1520,20 +1695,20 @@ en:
|
|
1520
1695
|
iso_name: Iso Name
|
1521
1696
|
item: Item
|
1522
1697
|
item_description: Item Description
|
1523
|
-
|
1524
|
-
all: All Items Selected
|
1525
|
-
none: No Item Selected
|
1526
|
-
one: One Item Selected
|
1527
|
-
custom: Items Selected
|
1698
|
+
item_level: Item-level
|
1528
1699
|
item_total: Item Total
|
1529
1700
|
item_total_rule:
|
1530
1701
|
operators:
|
1531
1702
|
gt: greater than
|
1532
1703
|
gte: greater than or equal to
|
1533
|
-
items_cannot_be_shipped: We are unable to calculate shipping rates for the selected
|
1534
|
-
items.
|
1704
|
+
items_cannot_be_shipped: We are unable to calculate shipping rates for the selected items.
|
1535
1705
|
items_in_rmas: Items in RMA's (Return Merchandise Authorizations)
|
1536
1706
|
items_reimbursed: Items reimbursed
|
1707
|
+
items_selected:
|
1708
|
+
all: All Items Selected
|
1709
|
+
custom: Items Selected
|
1710
|
+
none: No Item Selected
|
1711
|
+
one: One Item Selected
|
1537
1712
|
items_to_be_reimbursed: Items to be reimbursed
|
1538
1713
|
jirafe: Jirafe
|
1539
1714
|
landing_page_rule:
|
@@ -1567,9 +1742,7 @@ en:
|
|
1567
1742
|
logs: Logs
|
1568
1743
|
look_for_similar_items: Look for similar items
|
1569
1744
|
make_refund: Make refund
|
1570
|
-
make_sure_the_above_reimbursement_amount_is_correct: Make sure the above reimbursement
|
1571
|
-
amount is correct
|
1572
|
-
manage_promotion_categories: Manage Promotion Categories
|
1745
|
+
make_sure_the_above_reimbursement_amount_is_correct: Make sure the above reimbursement amount is correct
|
1573
1746
|
manage_stock: Store Stock
|
1574
1747
|
manage_variants: Manage Variants
|
1575
1748
|
manual_intervention_required: Manual intervention required
|
@@ -1598,8 +1771,10 @@ en:
|
|
1598
1771
|
name_contains: Name Contains
|
1599
1772
|
name_on_card: Name on card
|
1600
1773
|
name_or_sku: Name or SKU (enter at least first 4 characters of product name)
|
1601
|
-
|
1602
|
-
|
1774
|
+
navigation:
|
1775
|
+
switch_to_legacy: Show Legacy UI
|
1776
|
+
switch_to_solidus_admin: Show Legacy UI
|
1777
|
+
negative_movement_absent_item: Cannot create negative movement for absent stock item.
|
1603
1778
|
new: New
|
1604
1779
|
new_adjustment: New Adjustment
|
1605
1780
|
new_adjustment_reason: New Adjustment Reason
|
@@ -1613,9 +1788,6 @@ en:
|
|
1613
1788
|
new_payment: New Payment
|
1614
1789
|
new_payment_method: New Payment Method
|
1615
1790
|
new_product: New Product
|
1616
|
-
new_promotion: New Promotion
|
1617
|
-
new_promotion_category: New Promotion Category
|
1618
|
-
new_promotion_code_batch: New Promotion Code Batch
|
1619
1791
|
new_property: New Property Type
|
1620
1792
|
new_refund: New Refund
|
1621
1793
|
new_refund_reason: New Refund Reason
|
@@ -1639,23 +1811,19 @@ en:
|
|
1639
1811
|
new_variant: New Variant
|
1640
1812
|
new_zone: New Zone
|
1641
1813
|
next: Next
|
1642
|
-
no_actions_added: No actions added
|
1643
1814
|
no_images_found: No images found
|
1644
1815
|
no_inventory_selected: No inventory selected
|
1645
|
-
no_option_values_on_product_html: This product has no associated option values.
|
1646
|
-
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}.
|
1647
1817
|
no_orders_found: No orders found
|
1648
1818
|
no_payment_found: No payment found
|
1649
1819
|
no_payment_methods_found: No payment methods found
|
1650
1820
|
no_pending_payments: No pending payments
|
1651
1821
|
no_products_found: No products found
|
1652
|
-
no_promotions_found: No promotions found
|
1653
1822
|
no_resource: No %{resource} found.
|
1654
1823
|
no_resource_found: No %{resource} found
|
1655
1824
|
no_resource_found_html: No %{resource} found, %{add_one_link}!
|
1656
1825
|
no_resource_found_link: Add One
|
1657
1826
|
no_results: No results
|
1658
|
-
no_rules_added: No rules added
|
1659
1827
|
no_shipping_method_selected: No shipping method selected.
|
1660
1828
|
no_shipping_methods_found: No shipping methods found
|
1661
1829
|
no_stock_locations_found: No stock locations found
|
@@ -1668,12 +1836,10 @@ en:
|
|
1668
1836
|
normal_amount: Normal Amount
|
1669
1837
|
not: not
|
1670
1838
|
not_available: N/A
|
1671
|
-
not_enough_stock: There is not enough inventory at the source location to complete
|
1672
|
-
this transfer.
|
1839
|
+
not_enough_stock: There is not enough inventory at the source location to complete this transfer.
|
1673
1840
|
not_found: "%{resource} is not found"
|
1674
1841
|
note: Note
|
1675
|
-
note_already_received_a_refund: 'Note: This order has already received a refund. Make
|
1676
|
-
sure the above reimbursement amount is correct.'
|
1842
|
+
note_already_received_a_refund: 'Note: This order has already received a refund. Make sure the above reimbursement amount is correct.'
|
1677
1843
|
notice_messages:
|
1678
1844
|
product_cloned: Product has been cloned
|
1679
1845
|
product_deleted: Product has been deleted
|
@@ -1681,6 +1847,8 @@ en:
|
|
1681
1847
|
product_not_deleted: Product could not be deleted
|
1682
1848
|
variant_deleted: Variant has been deleted
|
1683
1849
|
variant_not_deleted: Variant could not be deleted
|
1850
|
+
null_promotion_handler:
|
1851
|
+
coupon_code_applied: Coupon code has been applied.
|
1684
1852
|
num_orders: "# Orders"
|
1685
1853
|
number: Number
|
1686
1854
|
number_of_codes: "%{count} codes"
|
@@ -1701,22 +1869,22 @@ en:
|
|
1701
1869
|
order_approved: Order approved
|
1702
1870
|
order_canceled: Order canceled
|
1703
1871
|
order_completed: Order completed
|
1872
|
+
order_count: Order Count
|
1704
1873
|
order_details: Order Details
|
1705
1874
|
order_email_resent: Order Email Resent
|
1706
1875
|
order_information: Order Information
|
1876
|
+
order_level: Order-level
|
1707
1877
|
order_mailer:
|
1708
1878
|
cancel_email:
|
1709
1879
|
dear_customer: Dear Customer,
|
1710
|
-
instructions: Your order has been CANCELED. Please retain this cancellation
|
1711
|
-
information for your records.
|
1880
|
+
instructions: Your order has been CANCELED. Please retain this cancellation information for your records.
|
1712
1881
|
order_summary_canceled: Order Summary [CANCELED]
|
1713
1882
|
subject: Cancellation of Order
|
1714
1883
|
subtotal: 'Subtotal:'
|
1715
1884
|
total: 'Order Total:'
|
1716
1885
|
confirm_email:
|
1717
1886
|
dear_customer: Dear Customer,
|
1718
|
-
instructions: Please review and retain the following order information for
|
1719
|
-
your records.
|
1887
|
+
instructions: Please review and retain the following order information for your records.
|
1720
1888
|
order_summary: Order Summary
|
1721
1889
|
subject: Order Confirmation
|
1722
1890
|
subtotal: 'Subtotal:'
|
@@ -1724,8 +1892,7 @@ en:
|
|
1724
1892
|
total: 'Order Total:'
|
1725
1893
|
inventory_cancellation:
|
1726
1894
|
dear_customer: Dear Customer,
|
1727
|
-
instructions: Some items in your order have been CANCELED. Please retain
|
1728
|
-
this cancellation information for your records.
|
1895
|
+
instructions: Some items in your order have been CANCELED. Please retain this cancellation information for your records.
|
1729
1896
|
order_summary_canceled: Canceled Items
|
1730
1897
|
subject: Cancellation of Items
|
1731
1898
|
order_mutex_admin_error: Order is being modified by someone else. Please try again.
|
@@ -1771,15 +1938,11 @@ en:
|
|
1771
1938
|
payment_identifier: Payment Identifier
|
1772
1939
|
payment_information: Payment Information
|
1773
1940
|
payment_method: Payment Method
|
1774
|
-
payment_method_not_supported: That payment method is unsupported. Please choose
|
1775
|
-
|
1776
|
-
payment_method_settings_warning: If you are changing the payment method type,
|
1777
|
-
you must save first before you can edit the payment method settings
|
1941
|
+
payment_method_not_supported: That payment method is unsupported. Please choose another one.
|
1942
|
+
payment_method_settings_warning: If you are changing the payment method type, you must save first before you can edit the payment method settings
|
1778
1943
|
payment_methods: Payment Methods
|
1779
|
-
payment_processing_failed: Payment could not be processed, please check the details
|
1780
|
-
|
1781
|
-
payment_processor_choose_banner_text: If you need help choosing a payment processor,
|
1782
|
-
please visit
|
1944
|
+
payment_processing_failed: Payment could not be processed, please check the details you entered
|
1945
|
+
payment_processor_choose_banner_text: If you need help choosing a payment processor, please visit
|
1783
1946
|
payment_processor_choose_link: our payments page
|
1784
1947
|
payment_state: Payment State
|
1785
1948
|
payment_states:
|
@@ -1823,24 +1986,12 @@ en:
|
|
1823
1986
|
product: Product
|
1824
1987
|
product_details: Product Details
|
1825
1988
|
product_has_no_description: This product has no description
|
1826
|
-
product_not_available_in_this_currency: This product is not available in the selected
|
1827
|
-
currency.
|
1989
|
+
product_not_available_in_this_currency: This product is not available in the selected currency.
|
1828
1990
|
product_properties: Product Properties
|
1829
|
-
|
1830
|
-
|
1831
|
-
label: Order must contain %{select} of these products
|
1832
|
-
match_all: all
|
1833
|
-
match_any: at least one
|
1834
|
-
match_none: none
|
1835
|
-
product_source:
|
1836
|
-
group: From product group
|
1837
|
-
manual: Manually choose
|
1838
|
-
product_without_default_price_info: 'This Product has no price in the default currency (%{default_currency}).'
|
1839
|
-
product_without_default_price_cta: 'Please, create a Master Price!'
|
1991
|
+
product_without_default_price_cta: Please, create a Master Price!
|
1992
|
+
product_without_default_price_info: This Product has no price in the default currency (%{default_currency}).
|
1840
1993
|
products: Products
|
1841
1994
|
promotion: Promotion
|
1842
|
-
promotion_action: Promotion Action
|
1843
|
-
promotion_actions: Actions
|
1844
1995
|
promotion_code_batch_mailer:
|
1845
1996
|
promotion_code_batch_errored:
|
1846
1997
|
message: 'Promotion code batch errored (%{error}) for promotion: '
|
@@ -1848,22 +1999,7 @@ en:
|
|
1848
1999
|
promotion_code_batch_finished:
|
1849
2000
|
message: 'All %{number_of_codes} codes have been created for promotion: '
|
1850
2001
|
subject: Promotion code batch finished
|
1851
|
-
|
1852
|
-
errored: 'Errored: %{error}'
|
1853
|
-
finished: All %{number_of_codes} codes have been created.
|
1854
|
-
processing: 'Processing: %{number_of_codes_processed} / %{number_of_codes}'
|
1855
|
-
promotion_form:
|
1856
|
-
match_policies:
|
1857
|
-
all: Match all of these rules
|
1858
|
-
any: Match any of these rules
|
1859
|
-
promotion_rule: Promotion Rule
|
1860
|
-
promotion_successfully_created: Promotion has been successfully created!
|
1861
|
-
promotion_total_changed_before_complete: One or more of the promotions on your
|
1862
|
-
order have become ineligible and were removed. Please check the new order amounts
|
1863
|
-
and try again.
|
1864
|
-
promotion_uses: Promotion uses
|
1865
|
-
promotionable: Promotable
|
1866
|
-
promotions: Promotions
|
2002
|
+
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.
|
1867
2003
|
propagate_all_variants: Propagate all variants
|
1868
2004
|
properties: Property Types
|
1869
2005
|
property: Property Type
|
@@ -1938,24 +2074,20 @@ en:
|
|
1938
2074
|
resumed: Resumed
|
1939
2075
|
return: return
|
1940
2076
|
return_authorization: Return Merchandise Authorization
|
1941
|
-
return_authorization_fire_error: Cannot perform this action on return merchandise
|
1942
|
-
authorization
|
2077
|
+
return_authorization_fire_error: Cannot perform this action on return merchandise authorization
|
1943
2078
|
return_authorization_states:
|
1944
2079
|
authorized: Authorized
|
1945
2080
|
canceled: Canceled
|
1946
2081
|
return_authorization_updated: Return merchandise authorization updated
|
1947
2082
|
return_authorizations: Return Merchandise Authorizations
|
1948
2083
|
return_item_inventory_unit_ineligible: Return item's inventory unit must be shipped
|
1949
|
-
return_item_inventory_unit_reimbursed: Return item's inventory unit is already
|
1950
|
-
reimbursed
|
2084
|
+
return_item_inventory_unit_reimbursed: Return item's inventory unit is already reimbursed
|
1951
2085
|
return_item_order_not_completed: Return item's order must be completed
|
1952
2086
|
return_item_rma_ineligible: Return item requires an RMA
|
1953
2087
|
return_item_time_period_ineligible: Return item is outside the eligible time period
|
1954
2088
|
return_items: Return Items
|
1955
|
-
return_items_cannot_be_associated_with_multiple_orders: Return items cannot be
|
1956
|
-
|
1957
|
-
return_items_cannot_be_created_for_inventory_units_that_are_already_awaiting_exchange: Return
|
1958
|
-
items cannot be created for inventory units that are already awaiting exchange.
|
2089
|
+
return_items_cannot_be_associated_with_multiple_orders: Return items cannot be associated with multiple orders.
|
2090
|
+
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.
|
1959
2091
|
return_number: Return Number
|
1960
2092
|
return_quantity: Return Quantity
|
1961
2093
|
return_reasons: Return Reasons
|
@@ -1968,7 +2100,6 @@ en:
|
|
1968
2100
|
rma_number: RMA Number
|
1969
2101
|
rma_value: RMA Value
|
1970
2102
|
roles: Roles
|
1971
|
-
rules: Rules
|
1972
2103
|
sales_total: Sales Total
|
1973
2104
|
sales_total_description: Sales Total For All Orders
|
1974
2105
|
sales_totals: Sales Totals
|
@@ -1979,6 +2110,7 @@ en:
|
|
1979
2110
|
scope: Scope
|
1980
2111
|
search: Search
|
1981
2112
|
search_results: Search results for '%{keywords}'
|
2113
|
+
search_results_all: Show all results for '%{keywords}'
|
1982
2114
|
searching: Searching
|
1983
2115
|
secure_connection_type: Secure Connection Type
|
1984
2116
|
security_settings: Security Settings
|
@@ -1995,7 +2127,6 @@ en:
|
|
1995
2127
|
ship: ship
|
1996
2128
|
ship_address: Ship Address
|
1997
2129
|
ship_address_required: Valid shipping address required
|
1998
|
-
bill_address_required: Valid billing address required
|
1999
2130
|
ship_total: Ship Total
|
2000
2131
|
shipment: Shipment
|
2001
2132
|
shipment_adjustments: Shipment adjustments
|
@@ -2061,11 +2192,9 @@ en:
|
|
2061
2192
|
special_instructions: Special Instructions
|
2062
2193
|
split: Split
|
2063
2194
|
split_failed: Unable to complete split
|
2064
|
-
spree_gateway_error_flash_for_checkout: There was a problem with your payment
|
2065
|
-
information. Please check your information and try again.
|
2195
|
+
spree_gateway_error_flash_for_checkout: There was a problem with your payment information. Please check your information and try again.
|
2066
2196
|
ssl:
|
2067
|
-
change_protocol: Please switch to using HTTP (rather than HTTPS) and retry this
|
2068
|
-
request.
|
2197
|
+
change_protocol: Please switch to using HTTP (rather than HTTPS) and retry this request.
|
2069
2198
|
start: Start
|
2070
2199
|
state: State
|
2071
2200
|
state_based: State Based
|
@@ -2079,11 +2208,9 @@ en:
|
|
2079
2208
|
stock_location: Stock Location
|
2080
2209
|
stock_location_info: Stock location info
|
2081
2210
|
stock_locations: Stock Locations
|
2082
|
-
stock_locations_need_a_default_country: You must create a default country before
|
2083
|
-
creating a stock location.
|
2211
|
+
stock_locations_need_a_default_country: You must create a default country before creating a stock location.
|
2084
2212
|
stock_management: Product Stock
|
2085
|
-
stock_management_requires_a_stock_location: Please create a stock location in
|
2086
|
-
order to manage stock.
|
2213
|
+
stock_management_requires_a_stock_location: Please create a stock location in order to manage stock.
|
2087
2214
|
stock_movements: Stock Movements
|
2088
2215
|
stock_movements_for_stock_location: Stock Movements for %{stock_location_name}
|
2089
2216
|
stock_successfully_transferred: Stock was successfully transferred between locations.
|
@@ -2106,8 +2233,7 @@ en:
|
|
2106
2233
|
invalidate: Invalidated
|
2107
2234
|
void: Credit
|
2108
2235
|
errors:
|
2109
|
-
cannot_invalidate_uncaptured_authorization: Cannot invalidate a store credit
|
2110
|
-
with an uncaptured authorization
|
2236
|
+
cannot_invalidate_uncaptured_authorization: Cannot invalidate a store credit with an uncaptured authorization
|
2111
2237
|
unable_to_fund: Unable to pay for order using store credits
|
2112
2238
|
expiring: Expiring
|
2113
2239
|
insufficient_authorized_amount: Unable to capture more than authorized amount
|
@@ -2118,14 +2244,11 @@ en:
|
|
2118
2244
|
successful_action: Successful store credit %{action}
|
2119
2245
|
unable_to_credit: 'Unable to credit code: %{auth_code}'
|
2120
2246
|
unable_to_find: Could not find store credit
|
2121
|
-
unable_to_find_for_action: 'Could not find store credit for auth code: %{auth_code}
|
2122
|
-
for action: %{action}'
|
2247
|
+
unable_to_find_for_action: 'Could not find store credit for auth code: %{auth_code} for action: %{action}'
|
2123
2248
|
unable_to_void: 'Unable to void code: %{auth_code}'
|
2124
2249
|
user_has_no_store_credits: User does not have any available store credit
|
2125
2250
|
store_credit_category:
|
2126
2251
|
default: Default
|
2127
|
-
store_rule:
|
2128
|
-
choose_stores: Choose Stores
|
2129
2252
|
street_address: Street Address
|
2130
2253
|
street_address_2: Street Address (cont'd)
|
2131
2254
|
subtotal: Subtotal
|
@@ -2141,26 +2264,18 @@ en:
|
|
2141
2264
|
tax_category: Tax Category
|
2142
2265
|
tax_code: Tax Code
|
2143
2266
|
tax_included: Tax (incl.)
|
2144
|
-
tax_rate_amount_explanation: Tax
|
2145
|
-
|
2267
|
+
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.
|
2268
|
+
tax_rate_level: Tax Rate Level
|
2146
2269
|
tax_rates: Tax Rates
|
2147
2270
|
taxon: Taxon
|
2148
2271
|
taxon_attachment_removal_error: There was an error removing the attachment
|
2149
2272
|
taxon_edit: Edit Taxon
|
2150
2273
|
taxon_placeholder: Add a Taxon
|
2151
|
-
taxon_rule:
|
2152
|
-
choose_taxons: Choose taxons
|
2153
|
-
label: Order must contain %{select} of these taxons
|
2154
|
-
match_all: all
|
2155
|
-
match_any: at least one
|
2156
|
-
match_none: none
|
2157
2274
|
taxonomies: Taxonomies
|
2158
2275
|
taxonomy: Taxonomy
|
2159
2276
|
taxonomy_edit: Edit taxonomy
|
2160
|
-
taxonomy_tree_error: The requested change has not been accepted and the tree has
|
2161
|
-
|
2162
|
-
taxonomy_tree_instruction: "* Right click a child in the tree to access the menu
|
2163
|
-
for adding, deleting or sorting a child."
|
2277
|
+
taxonomy_tree_error: The requested change has not been accepted and the tree has been returned to its previous state, please try again.
|
2278
|
+
taxonomy_tree_instruction: "* Right click a child in the tree to access the menu for adding, deleting or sorting a child."
|
2164
2279
|
taxons: Taxons
|
2165
2280
|
test: Test
|
2166
2281
|
test_mailer:
|
@@ -2169,12 +2284,10 @@ en:
|
|
2169
2284
|
message: If you have received this email, then your email settings are correct.
|
2170
2285
|
subject: Test Mail
|
2171
2286
|
test_mode: Test Mode
|
2172
|
-
thank_you_for_your_order: Thank you for your business. Please print out a copy
|
2173
|
-
|
2174
|
-
there_are_no_items_for_this_order: There are no items for this order. Please add
|
2175
|
-
|
2176
|
-
there_were_problems_with_the_following_fields: There were problems with the following
|
2177
|
-
fields
|
2287
|
+
thank_you_for_your_order: Thank you for your business. Please print out a copy of this confirmation page for your records.
|
2288
|
+
theme_changed: Theme Changed
|
2289
|
+
there_are_no_items_for_this_order: There are no items for this order. Please add an item to the order to continue.
|
2290
|
+
there_were_problems_with_the_following_fields: There were problems with the following fields
|
2178
2291
|
this_order_has_already_received_a_refund: This order has already received a refund
|
2179
2292
|
thumbnail: Thumbnail
|
2180
2293
|
tiered_flat_rate: Tiered Flat Rate
|
@@ -2205,13 +2318,13 @@ en:
|
|
2205
2318
|
type: Type
|
2206
2319
|
type_to_search: Type to search
|
2207
2320
|
unable_to_connect_to_gateway: Unable to connect to gateway.
|
2208
|
-
unable_to_create_reimbursements: Unable to create reimbursements because there
|
2209
|
-
are items pending manual intervention.
|
2321
|
+
unable_to_create_reimbursements: Unable to create reimbursements because there are items pending manual intervention.
|
2210
2322
|
unable_to_find_all_inventory_units: Unable to find all specified inventory units
|
2211
2323
|
under_price: Under %{price}
|
2212
2324
|
unfinalize_all_adjustments: Unfinalize All Adjustments
|
2213
2325
|
unlock: Unlock
|
2214
2326
|
unrecognized_card_type: Unrecognized Card Type
|
2327
|
+
unset: Unset
|
2215
2328
|
unshippable_items: Unshippable Items
|
2216
2329
|
update: Update
|
2217
2330
|
updated_successfully: Updated Successfully
|
@@ -2223,21 +2336,11 @@ en:
|
|
2223
2336
|
use_new_cc: Use a new card
|
2224
2337
|
use_new_cc_or_payment_method: Use a new card / payment method
|
2225
2338
|
user: User
|
2226
|
-
user_role_rule:
|
2227
|
-
choose_roles: Choose Roles
|
2228
|
-
label: User must contain %{select} of these roles
|
2229
|
-
match_all: all
|
2230
|
-
match_any: at least one
|
2231
|
-
user_rule:
|
2232
|
-
choose_users: Choose Users
|
2233
2339
|
users: Users
|
2234
2340
|
validation:
|
2235
|
-
cannot_be_less_than_shipped_units: cannot be less than the number of shipped
|
2236
|
-
|
2237
|
-
|
2238
|
-
item as some inventory units have shipped.
|
2239
|
-
exceeds_available_stock: exceeds available stock. Please ensure line items have
|
2240
|
-
a valid quantity.
|
2341
|
+
cannot_be_less_than_shipped_units: cannot be less than the number of shipped units.
|
2342
|
+
cannot_destroy_line_item_as_inventory_units_have_shipped: Cannot destroy line item as some inventory units have shipped.
|
2343
|
+
exceeds_available_stock: exceeds available stock. Please ensure line items have a valid quantity.
|
2241
2344
|
is_too_large: is too large -- stock on hand cannot cover requested quantity!
|
2242
2345
|
must_be_int: must be an integer
|
2243
2346
|
must_be_non_negative: must be a non-negative value
|
@@ -2246,7 +2349,6 @@ en:
|
|
2246
2349
|
value: Value
|
2247
2350
|
variant: Variant
|
2248
2351
|
variant_placeholder: Choose a Variant
|
2249
|
-
variant_pricing: Variant Pricing
|
2250
2352
|
variant_properties: Variant Properties
|
2251
2353
|
variant_search: Variant Search
|
2252
2354
|
variant_search_placeholder: SKU or Option Value
|
@@ -2255,7 +2357,6 @@ en:
|
|
2255
2357
|
variants: Variants
|
2256
2358
|
version: Version
|
2257
2359
|
view_product: View Product On Store
|
2258
|
-
view_promotion_codes_list: View codes list
|
2259
2360
|
void: Void
|
2260
2361
|
weight: Weight
|
2261
2362
|
what_is_a_cvv: What is a (CVV) Credit Card Code?
|