solidus_core_devise_token_auth 2.8.0.alpha.0
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 +7 -0
- data/.yardopts +1 -0
- data/LICENSE +26 -0
- data/README.md +69 -0
- data/Rakefile +37 -0
- data/app/assets/config/solidus_core_manifest.js +1 -0
- data/app/assets/images/logo/solidus_logo.png +0 -0
- data/app/assets/images/noimage/large.png +0 -0
- data/app/assets/images/noimage/mini.png +0 -0
- data/app/assets/images/noimage/product.png +0 -0
- data/app/assets/images/noimage/small.png +0 -0
- data/app/assets/javascripts/spree.js.erb +72 -0
- data/app/controllers/spree/base_controller.rb +15 -0
- data/app/helpers/spree/base_helper.rb +160 -0
- data/app/helpers/spree/checkout_helper.rb +33 -0
- data/app/helpers/spree/products_helper.rb +74 -0
- data/app/helpers/spree/store_helper.rb +23 -0
- data/app/helpers/spree/taxons_helper.rb +22 -0
- data/app/jobs/spree/promotion_code_batch_job.rb +26 -0
- data/app/mailers/spree/base_mailer.rb +18 -0
- data/app/mailers/spree/carton_mailer.rb +29 -0
- data/app/mailers/spree/order_mailer.rb +36 -0
- data/app/mailers/spree/promotion_code_batch_mailer.rb +15 -0
- data/app/mailers/spree/reimbursement_mailer.rb +13 -0
- data/app/mailers/spree/test_mailer.rb +11 -0
- data/app/models/concerns/spree/adjustment_source.rb +27 -0
- data/app/models/concerns/spree/calculated_adjustments.rb +40 -0
- data/app/models/concerns/spree/default_price.rb +27 -0
- data/app/models/concerns/spree/display_money.rb +34 -0
- data/app/models/concerns/spree/named_type.rb +14 -0
- data/app/models/concerns/spree/ordered_property_value_list.rb +28 -0
- data/app/models/concerns/spree/ransackable_attributes.rb +22 -0
- data/app/models/concerns/spree/user_address_book.rb +149 -0
- data/app/models/concerns/spree/user_methods.rb +77 -0
- data/app/models/concerns/spree/user_payment_source.rb +26 -0
- data/app/models/concerns/spree/user_reporting.rb +24 -0
- data/app/models/spree/ability.rb +64 -0
- data/app/models/spree/address.rb +222 -0
- data/app/models/spree/adjustment.rb +168 -0
- data/app/models/spree/adjustment_reason.rb +12 -0
- data/app/models/spree/asset.rb +8 -0
- data/app/models/spree/base.rb +46 -0
- data/app/models/spree/billing_integration.rb +23 -0
- data/app/models/spree/calculator/default_tax.rb +60 -0
- data/app/models/spree/calculator/distributed_amount.rb +33 -0
- data/app/models/spree/calculator/flat_percent_item_total.rb +20 -0
- data/app/models/spree/calculator/flat_rate.rb +18 -0
- data/app/models/spree/calculator/flexi_rate.rb +27 -0
- data/app/models/spree/calculator/free_shipping.rb +21 -0
- data/app/models/spree/calculator/percent_on_line_item.rb +13 -0
- data/app/models/spree/calculator/percent_per_item.rb +49 -0
- data/app/models/spree/calculator/price_sack.rb +27 -0
- data/app/models/spree/calculator/returns/default_refund_amount.rb +34 -0
- data/app/models/spree/calculator/shipping/flat_percent_item_total.rb +21 -0
- data/app/models/spree/calculator/shipping/flat_rate.rb +17 -0
- data/app/models/spree/calculator/shipping/flexi_rate.rb +34 -0
- data/app/models/spree/calculator/shipping/per_item.rb +21 -0
- data/app/models/spree/calculator/shipping/price_sack.rb +27 -0
- data/app/models/spree/calculator/tiered_flat_rate.rb +52 -0
- data/app/models/spree/calculator/tiered_percent.rb +61 -0
- data/app/models/spree/calculator.rb +49 -0
- data/app/models/spree/carton.rb +59 -0
- data/app/models/spree/classification.rb +13 -0
- data/app/models/spree/country.rb +28 -0
- data/app/models/spree/credit_card.rb +197 -0
- data/app/models/spree/customer_return.rb +78 -0
- data/app/models/spree/distributed_amounts_handler.rb +43 -0
- data/app/models/spree/exchange.rb +45 -0
- data/app/models/spree/fulfilment_changer.rb +135 -0
- data/app/models/spree/gallery/product_gallery.rb +18 -0
- data/app/models/spree/gallery/variant_gallery.rb +18 -0
- data/app/models/spree/gateway/bogus.rb +13 -0
- data/app/models/spree/gateway/bogus_simple.rb +13 -0
- data/app/models/spree/gateway.rb +14 -0
- data/app/models/spree/image.rb +56 -0
- data/app/models/spree/inventory_unit.rb +159 -0
- data/app/models/spree/legacy_user.rb +26 -0
- data/app/models/spree/line_item.rb +206 -0
- data/app/models/spree/line_item_action.rb +8 -0
- data/app/models/spree/log_entry.rb +11 -0
- data/app/models/spree/option_type.rb +32 -0
- data/app/models/spree/option_value.rb +33 -0
- data/app/models/spree/option_values_variant.rb +8 -0
- data/app/models/spree/order/checkout.rb +243 -0
- data/app/models/spree/order/number_generator.rb +45 -0
- data/app/models/spree/order/payments.rb +55 -0
- data/app/models/spree/order.rb +914 -0
- data/app/models/spree/order_cancellations.rb +125 -0
- data/app/models/spree/order_capturing.rb +50 -0
- data/app/models/spree/order_contents.rb +126 -0
- data/app/models/spree/order_inventory.rb +115 -0
- data/app/models/spree/order_merger.rb +143 -0
- data/app/models/spree/order_mutex.rb +35 -0
- data/app/models/spree/order_promotion.rb +27 -0
- data/app/models/spree/order_shipping.rb +89 -0
- data/app/models/spree/order_taxation.rb +81 -0
- data/app/models/spree/order_update_attributes.rb +41 -0
- data/app/models/spree/order_updater.rb +271 -0
- data/app/models/spree/payment/cancellation.rb +62 -0
- data/app/models/spree/payment/processing.rb +225 -0
- data/app/models/spree/payment.rb +284 -0
- data/app/models/spree/payment_capture_event.rb +11 -0
- data/app/models/spree/payment_create.rb +93 -0
- data/app/models/spree/payment_method/bogus_credit_card.rb +90 -0
- data/app/models/spree/payment_method/check.rb +40 -0
- data/app/models/spree/payment_method/credit_card.rb +43 -0
- data/app/models/spree/payment_method/simple_bogus_credit_card.rb +26 -0
- data/app/models/spree/payment_method/store_credit.rb +122 -0
- data/app/models/spree/payment_method.rb +281 -0
- data/app/models/spree/payment_source.rb +47 -0
- data/app/models/spree/preference.rb +7 -0
- data/app/models/spree/price.rb +89 -0
- data/app/models/spree/product/scopes.rb +259 -0
- data/app/models/spree/product.rb +400 -0
- data/app/models/spree/product_option_type.rb +9 -0
- data/app/models/spree/product_promotion_rule.rb +8 -0
- data/app/models/spree/product_property.rb +14 -0
- data/app/models/spree/promotion/actions/create_adjustment.rb +80 -0
- data/app/models/spree/promotion/actions/create_item_adjustments.rb +102 -0
- data/app/models/spree/promotion/actions/create_quantity_adjustments.rb +142 -0
- data/app/models/spree/promotion/actions/free_shipping.rb +57 -0
- data/app/models/spree/promotion/rules/first_order.rb +40 -0
- data/app/models/spree/promotion/rules/first_repeat_purchase_since.rb +36 -0
- data/app/models/spree/promotion/rules/item_total.rb +45 -0
- data/app/models/spree/promotion/rules/nth_order.rb +45 -0
- data/app/models/spree/promotion/rules/one_use_per_user.rb +25 -0
- data/app/models/spree/promotion/rules/option_value.rb +50 -0
- data/app/models/spree/promotion/rules/product.rb +74 -0
- data/app/models/spree/promotion/rules/store.rb +22 -0
- data/app/models/spree/promotion/rules/taxon.rb +103 -0
- data/app/models/spree/promotion/rules/user.rb +30 -0
- data/app/models/spree/promotion/rules/user_logged_in.rb +20 -0
- data/app/models/spree/promotion/rules/user_role.rb +45 -0
- data/app/models/spree/promotion.rb +260 -0
- data/app/models/spree/promotion_action.rb +53 -0
- data/app/models/spree/promotion_category.rb +8 -0
- data/app/models/spree/promotion_chooser.rb +34 -0
- data/app/models/spree/promotion_code/batch_builder.rb +78 -0
- data/app/models/spree/promotion_code.rb +44 -0
- data/app/models/spree/promotion_code_batch.rb +27 -0
- data/app/models/spree/promotion_handler/cart.rb +55 -0
- data/app/models/spree/promotion_handler/coupon.rb +92 -0
- data/app/models/spree/promotion_handler/free_shipping.rb +9 -0
- data/app/models/spree/promotion_handler/page.rb +26 -0
- data/app/models/spree/promotion_handler/shipping.rb +61 -0
- data/app/models/spree/promotion_rule.rb +51 -0
- data/app/models/spree/promotion_rule_role.rb +8 -0
- data/app/models/spree/promotion_rule_store.rb +10 -0
- data/app/models/spree/promotion_rule_taxon.rb +8 -0
- data/app/models/spree/promotion_rule_user.rb +10 -0
- data/app/models/spree/property.rb +20 -0
- data/app/models/spree/refund.rb +90 -0
- data/app/models/spree/refund_reason.rb +15 -0
- data/app/models/spree/reimbursement/credit.rb +29 -0
- data/app/models/spree/reimbursement/reimbursement_type_engine.rb +56 -0
- data/app/models/spree/reimbursement/reimbursement_type_validator.rb +17 -0
- data/app/models/spree/reimbursement.rb +186 -0
- data/app/models/spree/reimbursement_performer.rb +40 -0
- data/app/models/spree/reimbursement_tax_calculator.rb +35 -0
- data/app/models/spree/reimbursement_type/credit.rb +15 -0
- data/app/models/spree/reimbursement_type/exchange.rb +11 -0
- data/app/models/spree/reimbursement_type/original_payment.rb +15 -0
- data/app/models/spree/reimbursement_type/reimbursement_helpers.rb +72 -0
- data/app/models/spree/reimbursement_type/store_credit.rb +29 -0
- data/app/models/spree/reimbursement_type.rb +18 -0
- data/app/models/spree/return_authorization.rb +90 -0
- data/app/models/spree/return_item/eligibility_validator/base_validator.rb +30 -0
- data/app/models/spree/return_item/eligibility_validator/default.rb +36 -0
- data/app/models/spree/return_item/eligibility_validator/inventory_shipped.rb +22 -0
- data/app/models/spree/return_item/eligibility_validator/no_reimbursements.rb +22 -0
- data/app/models/spree/return_item/eligibility_validator/order_completed.rb +22 -0
- data/app/models/spree/return_item/eligibility_validator/rma_required.rb +22 -0
- data/app/models/spree/return_item/eligibility_validator/time_since_purchase.rb +22 -0
- data/app/models/spree/return_item/exchange_variant_eligibility/same_option_value.rb +47 -0
- data/app/models/spree/return_item/exchange_variant_eligibility/same_product.rb +13 -0
- data/app/models/spree/return_item.rb +320 -0
- data/app/models/spree/return_reason.rb +14 -0
- data/app/models/spree/returns_calculator.rb +9 -0
- data/app/models/spree/role.rb +14 -0
- data/app/models/spree/role_user.rb +11 -0
- data/app/models/spree/shipment.rb +431 -0
- data/app/models/spree/shipping_calculator.rb +23 -0
- data/app/models/spree/shipping_category.rb +10 -0
- data/app/models/spree/shipping_manifest.rb +30 -0
- data/app/models/spree/shipping_method.rb +133 -0
- data/app/models/spree/shipping_method_category.rb +8 -0
- data/app/models/spree/shipping_method_stock_location.rb +6 -0
- data/app/models/spree/shipping_method_zone.rb +8 -0
- data/app/models/spree/shipping_rate.rb +48 -0
- data/app/models/spree/shipping_rate_tax.rb +39 -0
- data/app/models/spree/state.rb +40 -0
- data/app/models/spree/state_change.rb +17 -0
- data/app/models/spree/stock/availability.rb +72 -0
- data/app/models/spree/stock/availability_validator.rb +36 -0
- data/app/models/spree/stock/content_item.rb +50 -0
- data/app/models/spree/stock/differentiator.rb +47 -0
- data/app/models/spree/stock/estimator.rb +71 -0
- data/app/models/spree/stock/inventory_unit_builder.rb +23 -0
- data/app/models/spree/stock/inventory_validator.rb +16 -0
- data/app/models/spree/stock/location_sorter/base.rb +38 -0
- data/app/models/spree/stock/location_sorter/default_first.rb +15 -0
- data/app/models/spree/stock/location_sorter/unsorted.rb +14 -0
- data/app/models/spree/stock/package.rb +142 -0
- data/app/models/spree/stock/quantifier.rb +49 -0
- data/app/models/spree/stock/shipping_rate_selector.rb +17 -0
- data/app/models/spree/stock/shipping_rate_sorter.rb +17 -0
- data/app/models/spree/stock/simple_coordinator.rb +119 -0
- data/app/models/spree/stock/splitter/backordered.rb +23 -0
- data/app/models/spree/stock/splitter/base.rb +35 -0
- data/app/models/spree/stock/splitter/shipping_category.rb +35 -0
- data/app/models/spree/stock/splitter/weight.rb +32 -0
- data/app/models/spree/stock/splitter_chain.rb +34 -0
- data/app/models/spree/stock_item.rb +128 -0
- data/app/models/spree/stock_location.rb +127 -0
- data/app/models/spree/stock_movement.rb +28 -0
- data/app/models/spree/stock_quantities.rb +83 -0
- data/app/models/spree/store.rb +83 -0
- data/app/models/spree/store_credit.rb +293 -0
- data/app/models/spree/store_credit_category.rb +18 -0
- data/app/models/spree/store_credit_event.rb +66 -0
- data/app/models/spree/store_credit_type.rb +10 -0
- data/app/models/spree/store_credit_update_reason.rb +4 -0
- data/app/models/spree/store_payment_method.rb +8 -0
- data/app/models/spree/store_selector/by_server_name.rb +32 -0
- data/app/models/spree/store_selector/legacy.rb +50 -0
- data/app/models/spree/store_shipping_method.rb +8 -0
- data/app/models/spree/tax/item_tax.rb +22 -0
- data/app/models/spree/tax/order_adjuster.rb +22 -0
- data/app/models/spree/tax/order_tax.rb +20 -0
- data/app/models/spree/tax/shipping_rate_taxer.rb +24 -0
- data/app/models/spree/tax/tax_helpers.rb +17 -0
- data/app/models/spree/tax/tax_location.rb +39 -0
- data/app/models/spree/tax_calculator/default.rb +85 -0
- data/app/models/spree/tax_calculator/shipping_rate.rb +58 -0
- data/app/models/spree/tax_category.rb +30 -0
- data/app/models/spree/tax_rate.rb +147 -0
- data/app/models/spree/tax_rate_tax_category.rb +8 -0
- data/app/models/spree/taxon.rb +144 -0
- data/app/models/spree/taxonomy.rb +29 -0
- data/app/models/spree/unit_cancel.rb +36 -0
- data/app/models/spree/user_address.rb +23 -0
- data/app/models/spree/user_class_handle.rb +28 -0
- data/app/models/spree/user_stock_location.rb +8 -0
- data/app/models/spree/validations/db_maximum_length_validator.rb +23 -0
- data/app/models/spree/variant/price_selector.rb +37 -0
- data/app/models/spree/variant/pricing_options.rb +98 -0
- data/app/models/spree/variant/scopes.rb +42 -0
- data/app/models/spree/variant/vat_price_generator.rb +63 -0
- data/app/models/spree/variant.rb +465 -0
- data/app/models/spree/variant_property_rule.rb +44 -0
- data/app/models/spree/variant_property_rule_condition.rb +10 -0
- data/app/models/spree/variant_property_rule_value.rb +12 -0
- data/app/models/spree/wallet/add_payment_sources_to_wallet.rb +40 -0
- data/app/models/spree/wallet/default_payment_builder.rb +28 -0
- data/app/models/spree/wallet.rb +78 -0
- data/app/models/spree/wallet_payment_source.rb +19 -0
- data/app/models/spree/zone.rb +148 -0
- data/app/models/spree/zone_member.rb +10 -0
- data/app/views/layouts/spree/base_mailer.html.erb +784 -0
- data/app/views/spree/carton_mailer/shipped_email.html.erb +34 -0
- data/app/views/spree/carton_mailer/shipped_email.text.erb +16 -0
- data/app/views/spree/order_mailer/cancel_email.html.erb +45 -0
- data/app/views/spree/order_mailer/cancel_email.text.erb +16 -0
- data/app/views/spree/order_mailer/confirm_email.html.erb +84 -0
- data/app/views/spree/order_mailer/confirm_email.text.erb +38 -0
- data/app/views/spree/order_mailer/inventory_cancellation_email.html.erb +26 -0
- data/app/views/spree/order_mailer/inventory_cancellation_email.text.erb +10 -0
- data/app/views/spree/promotion_code_batch_mailer/promotion_code_batch_errored.text.erb +2 -0
- data/app/views/spree/promotion_code_batch_mailer/promotion_code_batch_finished.text.erb +2 -0
- data/app/views/spree/reimbursement_mailer/reimbursement_email.html.erb +39 -0
- data/app/views/spree/reimbursement_mailer/reimbursement_email.text.erb +17 -0
- data/app/views/spree/shared/_base_mailer_footer.html.erb +1 -0
- data/app/views/spree/shared/_base_mailer_header.html.erb +1 -0
- data/app/views/spree/shared/_error_messages.html.erb +11 -0
- data/app/views/spree/test_mailer/test_email.html.erb +40 -0
- data/app/views/spree/test_mailer/test_email.text.erb +4 -0
- data/config/initializers/assets.rb +5 -0
- data/config/initializers/friendly_id.rb +90 -0
- data/config/locales/en.yml +2107 -0
- data/db/default/spree/countries.rb +45 -0
- data/db/default/spree/refund_reasons.rb +3 -0
- data/db/default/spree/return_reasons.rb +11 -0
- data/db/default/spree/roles.rb +3 -0
- data/db/default/spree/shipping_categories.rb +3 -0
- data/db/default/spree/states.rb +14 -0
- data/db/default/spree/stock_locations.rb +4 -0
- data/db/default/spree/store_credit.rb +22 -0
- data/db/default/spree/stores.rb +10 -0
- data/db/default/spree/zones.rb +13 -0
- data/db/migrate/20160101010000_solidus_one_four.rb +1102 -0
- data/db/migrate/20160420044191_create_spree_wallet_payment_sources.rb +27 -0
- data/db/migrate/20160420181916_migrate_credit_cards_to_wallet_payment_sources.rb +29 -0
- data/db/migrate/20160924135758_remove_is_default_from_prices.rb +7 -0
- data/db/migrate/20161009141333_remove_currency_from_line_items.rb +7 -0
- data/db/migrate/20161014221052_add_available_to_columns_and_remove_display_on_from_payment_methods.rb +30 -0
- data/db/migrate/20161017102621_create_spree_promotion_code_batch.rb +38 -0
- data/db/migrate/20161123154034_add_available_to_users_and_remove_display_on_from_shipping_methods.rb +22 -0
- data/db/migrate/20161129035810_add_index_to_spree_payments_number.rb +7 -0
- data/db/migrate/20170223235001_remove_spree_store_credits_column.rb +7 -0
- data/db/migrate/20170317035819_add_lft_and_rgt_indexes_to_taxons.rb +8 -0
- data/db/migrate/20170319191942_remove_order_id_from_inventory_units.rb +30 -0
- data/db/migrate/20170412103617_transform_tax_rate_category_relation.rb +50 -0
- data/db/migrate/20170422134804_add_roles_unique_constraints.rb +8 -0
- data/db/migrate/20170522143442_add_time_range_to_tax_rate.rb +8 -0
- data/db/migrate/20170608074534_rename_bogus_gateways.rb +17 -0
- data/db/migrate/20170831201542_remove_default_tax_from_spree_zones.rb +7 -0
- data/db/migrate/20180202190713_create_promotion_rule_stores.rb +12 -0
- data/db/migrate/20180202222641_create_store_shipping_methods.rb +12 -0
- data/db/migrate/20180313220213_add_available_locales_to_stores.rb +9 -0
- data/db/migrate/20180322142651_add_amount_remaining_to_store_credit_events.rb +61 -0
- data/db/migrate/20180328172631_add_join_characters_to_promotion_code_batch.rb +11 -0
- data/db/seeds.rb +17 -0
- data/lib/generators/spree/custom_user/custom_user_generator.rb +43 -0
- data/lib/generators/spree/custom_user/templates/authentication_helpers.rb.tt +40 -0
- data/lib/generators/spree/custom_user/templates/migration.rb.tt +30 -0
- data/lib/generators/spree/dummy/dummy_generator.rb +148 -0
- data/lib/generators/spree/dummy/templates/rails/application.rb.tt +10 -0
- data/lib/generators/spree/dummy/templates/rails/boot.rb +6 -0
- data/lib/generators/spree/dummy/templates/rails/database.yml +71 -0
- data/lib/generators/spree/dummy/templates/rails/routes.rb +2 -0
- data/lib/generators/spree/dummy/templates/rails/script/rails +6 -0
- data/lib/generators/spree/dummy/templates/rails/test.rb +33 -0
- data/lib/generators/spree/install/install_generator.rb +189 -0
- data/lib/generators/spree/install/templates/config/initializers/spree.rb.tt +67 -0
- data/lib/generators/spree/install/templates/vendor/assets/javascripts/spree/backend/all.js +10 -0
- data/lib/generators/spree/install/templates/vendor/assets/javascripts/spree/frontend/all.js +10 -0
- data/lib/generators/spree/install/templates/vendor/assets/stylesheets/spree/backend/all.css +9 -0
- data/lib/generators/spree/install/templates/vendor/assets/stylesheets/spree/frontend/all.css +9 -0
- data/lib/solidus/migrations/rename_gateways.rb +39 -0
- data/lib/solidus_core.rb +3 -0
- data/lib/spree/app_configuration.rb +529 -0
- data/lib/spree/config.rb +5 -0
- data/lib/spree/core/active_merchant_dependencies.rb +13 -0
- data/lib/spree/core/class_constantizer.rb +33 -0
- data/lib/spree/core/controller_helpers/auth.rb +83 -0
- data/lib/spree/core/controller_helpers/common.rb +82 -0
- data/lib/spree/core/controller_helpers/order.rb +107 -0
- data/lib/spree/core/controller_helpers/payment_parameters.rb +221 -0
- data/lib/spree/core/controller_helpers/pricing.rb +30 -0
- data/lib/spree/core/controller_helpers/search.rb +16 -0
- data/lib/spree/core/controller_helpers/store.rb +19 -0
- data/lib/spree/core/controller_helpers/strong_parameters.rb +63 -0
- data/lib/spree/core/current_store.rb +24 -0
- data/lib/spree/core/engine.rb +61 -0
- data/lib/spree/core/environment/calculators.rb +18 -0
- data/lib/spree/core/environment.rb +22 -0
- data/lib/spree/core/environment_extension.rb +31 -0
- data/lib/spree/core/importer/order.rb +203 -0
- data/lib/spree/core/importer/product.rb +65 -0
- data/lib/spree/core/importer.rb +11 -0
- data/lib/spree/core/permalinks.rb +67 -0
- data/lib/spree/core/product_duplicator.rb +75 -0
- data/lib/spree/core/product_filters.rb +197 -0
- data/lib/spree/core/role_configuration.rb +88 -0
- data/lib/spree/core/search/base.rb +120 -0
- data/lib/spree/core/search/variant.rb +66 -0
- data/lib/spree/core/stock_configuration.rb +26 -0
- data/lib/spree/core/validators/email.rb +30 -0
- data/lib/spree/core/version.rb +11 -0
- data/lib/spree/core.rb +92 -0
- data/lib/spree/deprecation.rb +7 -0
- data/lib/spree/i18n.rb +35 -0
- data/lib/spree/localized_number.rb +30 -0
- data/lib/spree/mailer_previews/carton_preview.rb +13 -0
- data/lib/spree/mailer_previews/order_preview.rb +25 -0
- data/lib/spree/mailer_previews/reimbursement_preview.rb +13 -0
- data/lib/spree/migration_helpers.rb +21 -0
- data/lib/spree/migrations.rb +85 -0
- data/lib/spree/money.rb +133 -0
- data/lib/spree/paranoia_deprecations.rb +21 -0
- data/lib/spree/permission_sets/base.rb +32 -0
- data/lib/spree/permission_sets/configuration_display.rb +25 -0
- data/lib/spree/permission_sets/configuration_management.rb +25 -0
- data/lib/spree/permission_sets/dashboard_display.rb +11 -0
- data/lib/spree/permission_sets/default_customer.rb +37 -0
- data/lib/spree/permission_sets/order_display.rb +21 -0
- data/lib/spree/permission_sets/order_management.rb +22 -0
- data/lib/spree/permission_sets/product_display.rb +19 -0
- data/lib/spree/permission_sets/product_management.rb +21 -0
- data/lib/spree/permission_sets/promotion_display.rb +15 -0
- data/lib/spree/permission_sets/promotion_management.rb +14 -0
- data/lib/spree/permission_sets/restricted_stock_display.rb +18 -0
- data/lib/spree/permission_sets/restricted_stock_management.rb +18 -0
- data/lib/spree/permission_sets/stock_display.rb +12 -0
- data/lib/spree/permission_sets/stock_management.rb +12 -0
- data/lib/spree/permission_sets/super_user.rb +11 -0
- data/lib/spree/permission_sets/user_display.rb +13 -0
- data/lib/spree/permission_sets/user_management.rb +21 -0
- data/lib/spree/permission_sets.rb +20 -0
- data/lib/spree/permitted_attributes.rb +133 -0
- data/lib/spree/preferences/configuration.rb +107 -0
- data/lib/spree/preferences/preferable.rb +180 -0
- data/lib/spree/preferences/preferable_class_methods.rb +88 -0
- data/lib/spree/preferences/scoped_store.rb +36 -0
- data/lib/spree/preferences/static_model_preferences.rb +49 -0
- data/lib/spree/preferences/statically_configurable.rb +39 -0
- data/lib/spree/preferences/store.rb +91 -0
- data/lib/spree/promo/environment.rb +13 -0
- data/lib/spree/testing_support/ability_helpers.rb +107 -0
- data/lib/spree/testing_support/authorization_helpers.rb +69 -0
- data/lib/spree/testing_support/bar_ability.rb +19 -0
- data/lib/spree/testing_support/caching.rb +33 -0
- data/lib/spree/testing_support/capybara_ext.rb +147 -0
- data/lib/spree/testing_support/common_rake.rb +38 -0
- data/lib/spree/testing_support/controller_requests.rb +108 -0
- data/lib/spree/testing_support/dummy_app/assets/javascripts/spree/backend/all.js +10 -0
- data/lib/spree/testing_support/dummy_app/assets/javascripts/spree/frontend/all.js +10 -0
- data/lib/spree/testing_support/dummy_app/assets/stylesheets/spree/backend/all.css +9 -0
- data/lib/spree/testing_support/dummy_app/assets/stylesheets/spree/frontend/all.css +9 -0
- data/lib/spree/testing_support/dummy_app/database.yml +33 -0
- data/lib/spree/testing_support/dummy_app/migrations.rb +47 -0
- data/lib/spree/testing_support/dummy_app/rake_tasks.rb +67 -0
- data/lib/spree/testing_support/dummy_app/routes.rb +5 -0
- data/lib/spree/testing_support/dummy_app/views/layouts/application.html.erb +1 -0
- data/lib/spree/testing_support/dummy_app.rb +120 -0
- data/lib/spree/testing_support/extension_rake.rb +11 -0
- data/lib/spree/testing_support/factories/address_factory.rb +45 -0
- data/lib/spree/testing_support/factories/adjustment_factory.rb +45 -0
- data/lib/spree/testing_support/factories/adjustment_reason_factory.rb +8 -0
- data/lib/spree/testing_support/factories/calculator_factory.rb +26 -0
- data/lib/spree/testing_support/factories/carton_factory.rb +26 -0
- data/lib/spree/testing_support/factories/country_factory.rb +21 -0
- data/lib/spree/testing_support/factories/credit_card_factory.rb +17 -0
- data/lib/spree/testing_support/factories/customer_return_factory.rb +35 -0
- data/lib/spree/testing_support/factories/image_factory.rb +7 -0
- data/lib/spree/testing_support/factories/inventory_unit_factory.rb +26 -0
- data/lib/spree/testing_support/factories/line_item_factory.rb +18 -0
- data/lib/spree/testing_support/factories/option_type_factory.rb +8 -0
- data/lib/spree/testing_support/factories/option_value_factory.rb +10 -0
- data/lib/spree/testing_support/factories/order_factory.rb +160 -0
- data/lib/spree/testing_support/factories/order_promotion_factory.rb +11 -0
- data/lib/spree/testing_support/factories/payment_factory.rb +51 -0
- data/lib/spree/testing_support/factories/payment_method_factory.rb +32 -0
- data/lib/spree/testing_support/factories/price_factory.rb +11 -0
- data/lib/spree/testing_support/factories/product_factory.rb +50 -0
- data/lib/spree/testing_support/factories/product_option_type_factory.rb +11 -0
- data/lib/spree/testing_support/factories/product_property_factory.rb +11 -0
- data/lib/spree/testing_support/factories/promotion_category_factory.rb +7 -0
- data/lib/spree/testing_support/factories/promotion_code_factory.rb +11 -0
- data/lib/spree/testing_support/factories/promotion_factory.rb +64 -0
- data/lib/spree/testing_support/factories/property_factory.rb +8 -0
- data/lib/spree/testing_support/factories/refund_factory.rb +21 -0
- data/lib/spree/testing_support/factories/refund_reason_factory.rb +7 -0
- data/lib/spree/testing_support/factories/reimbursement_factory.rb +21 -0
- data/lib/spree/testing_support/factories/reimbursement_type_factory.rb +9 -0
- data/lib/spree/testing_support/factories/return_authorization_factory.rb +20 -0
- data/lib/spree/testing_support/factories/return_item_factory.rb +23 -0
- data/lib/spree/testing_support/factories/return_reason_factory.rb +7 -0
- data/lib/spree/testing_support/factories/role_factory.rb +11 -0
- data/lib/spree/testing_support/factories/shipment_factory.rb +37 -0
- data/lib/spree/testing_support/factories/shipping_category_factory.rb +7 -0
- data/lib/spree/testing_support/factories/shipping_method_factory.rb +42 -0
- data/lib/spree/testing_support/factories/shipping_rate_factory.rb +11 -0
- data/lib/spree/testing_support/factories/state_factory.rb +28 -0
- data/lib/spree/testing_support/factories/stock_item_factory.rb +14 -0
- data/lib/spree/testing_support/factories/stock_location_factory.rb +41 -0
- data/lib/spree/testing_support/factories/stock_movement_factory.rb +15 -0
- data/lib/spree/testing_support/factories/stock_package_factory.rb +28 -0
- data/lib/spree/testing_support/factories/store_credit_category_factory.rb +7 -0
- data/lib/spree/testing_support/factories/store_credit_event_factory.rb +30 -0
- data/lib/spree/testing_support/factories/store_credit_factory.rb +16 -0
- data/lib/spree/testing_support/factories/store_credit_type_factory.rb +13 -0
- data/lib/spree/testing_support/factories/store_credit_update_reason_factory.rb +7 -0
- data/lib/spree/testing_support/factories/store_factory.rb +10 -0
- data/lib/spree/testing_support/factories/tax_category_factory.rb +10 -0
- data/lib/spree/testing_support/factories/tax_rate_factory.rb +14 -0
- data/lib/spree/testing_support/factories/taxon_factory.rb +11 -0
- data/lib/spree/testing_support/factories/taxonomy_factory.rb +7 -0
- data/lib/spree/testing_support/factories/user_factory.rb +21 -0
- data/lib/spree/testing_support/factories/variant_factory.rb +43 -0
- data/lib/spree/testing_support/factories/variant_property_rule_condition_factory.rb +11 -0
- data/lib/spree/testing_support/factories/variant_property_rule_factory.rb +22 -0
- data/lib/spree/testing_support/factories/variant_property_rule_value_factory.rb +11 -0
- data/lib/spree/testing_support/factories/zone_factory.rb +24 -0
- data/lib/spree/testing_support/factories.rb +7 -0
- data/lib/spree/testing_support/flash.rb +29 -0
- data/lib/spree/testing_support/order_walkthrough.rb +87 -0
- data/lib/spree/testing_support/preferences.rb +34 -0
- data/lib/spree/testing_support/sequences.rb +8 -0
- data/lib/spree/testing_support/shared_examples/gallery.rb +18 -0
- data/lib/spree/testing_support/url_helpers.rb +11 -0
- data/lib/spree_core.rb +3 -0
- data/lib/tasks/core.rake +104 -0
- data/lib/tasks/email.rake +9 -0
- data/lib/tasks/migrations/copy_order_bill_address_to_credit_card.rake +115 -0
- data/lib/tasks/migrations/migrate_shipping_rate_taxes.rake +20 -0
- data/lib/tasks/migrations/migrate_user_addresses.rake +31 -0
- data/lib/tasks/migrations/rename_gateways.rake +21 -0
- data/lib/tasks/order_capturing.rake +25 -0
- data/script/rails +10 -0
- data/solidus_core.gemspec +48 -0
- data/spec/fixtures/thinking-cat.jpg +0 -0
- data/spec/helpers/base_helper_spec.rb +168 -0
- data/spec/helpers/products_helper_spec.rb +200 -0
- data/spec/helpers/taxons_helper_spec.rb +41 -0
- data/spec/jobs/promotion_code_batch_job_spec.rb +96 -0
- data/spec/lib/calculated_adjustments_spec.rb +133 -0
- data/spec/lib/i18n_spec.rb +92 -0
- data/spec/lib/search/base_spec.rb +87 -0
- data/spec/lib/search/variant_spec.rb +115 -0
- data/spec/lib/spree/core/class_constantizer_spec.rb +71 -0
- data/spec/lib/spree/core/controller_helpers/auth_spec.rb +69 -0
- data/spec/lib/spree/core/controller_helpers/order_spec.rb +126 -0
- data/spec/lib/spree/core/controller_helpers/payment_parameters_spec.rb +195 -0
- data/spec/lib/spree/core/controller_helpers/pricing_spec.rb +81 -0
- data/spec/lib/spree/core/controller_helpers/search_spec.rb +21 -0
- data/spec/lib/spree/core/controller_helpers/store_spec.rb +18 -0
- data/spec/lib/spree/core/controller_helpers/strong_parameters_spec.rb +41 -0
- data/spec/lib/spree/core/current_store_spec.rb +33 -0
- data/spec/lib/spree/core/environment_extension_spec.rb +36 -0
- data/spec/lib/spree/core/importer/order_spec.rb +484 -0
- data/spec/lib/spree/core/role_configuration_spec.rb +155 -0
- data/spec/lib/spree/core/stock_configuration_spec.rb +59 -0
- data/spec/lib/spree/core/testing_support/factories/address_factory_spec.rb +61 -0
- data/spec/lib/spree/core/testing_support/factories/adjustment_factory_spec.rb +20 -0
- data/spec/lib/spree/core/testing_support/factories/adjustment_reason_factory_spec.rb +14 -0
- data/spec/lib/spree/core/testing_support/factories/calculator_factory_spec.rb +44 -0
- data/spec/lib/spree/core/testing_support/factories/carton_factory_spec.rb +14 -0
- data/spec/lib/spree/core/testing_support/factories/country_factory_spec.rb +14 -0
- data/spec/lib/spree/core/testing_support/factories/credit_card_factory_spec.rb +14 -0
- data/spec/lib/spree/core/testing_support/factories/customer_return_factory_spec.rb +39 -0
- data/spec/lib/spree/core/testing_support/factories/image_factory_spec.rb +14 -0
- data/spec/lib/spree/core/testing_support/factories/inventory_unit_factory_spec.rb +14 -0
- data/spec/lib/spree/core/testing_support/factories/line_item_factory_spec.rb +14 -0
- data/spec/lib/spree/core/testing_support/factories/option_type_factory_spec.rb +14 -0
- data/spec/lib/spree/core/testing_support/factories/option_value_factory_spec.rb +14 -0
- data/spec/lib/spree/core/testing_support/factories/order_factory_spec.rb +376 -0
- data/spec/lib/spree/core/testing_support/factories/order_promotion_factory_spec.rb +14 -0
- data/spec/lib/spree/core/testing_support/factories/payment_factory_spec.rb +40 -0
- data/spec/lib/spree/core/testing_support/factories/payment_method_factory_spec.rb +32 -0
- data/spec/lib/spree/core/testing_support/factories/price_factory_spec.rb +14 -0
- data/spec/lib/spree/core/testing_support/factories/product_factory_spec.rb +32 -0
- data/spec/lib/spree/core/testing_support/factories/product_option_type_factory_spec.rb +14 -0
- data/spec/lib/spree/core/testing_support/factories/product_property_factory_spec.rb +14 -0
- data/spec/lib/spree/core/testing_support/factories/promotion_category_factory_spec.rb +14 -0
- data/spec/lib/spree/core/testing_support/factories/promotion_code_factory_spec.rb +14 -0
- data/spec/lib/spree/core/testing_support/factories/promotion_factory_spec.rb +32 -0
- data/spec/lib/spree/core/testing_support/factories/property_factory_spec.rb +14 -0
- data/spec/lib/spree/core/testing_support/factories/refund_factory_spec.rb +14 -0
- data/spec/lib/spree/core/testing_support/factories/refund_reason_factory_spec.rb +14 -0
- data/spec/lib/spree/core/testing_support/factories/reimbursement_factory_spec.rb +20 -0
- data/spec/lib/spree/core/testing_support/factories/reimbursement_type_factory_spec.rb +14 -0
- data/spec/lib/spree/core/testing_support/factories/return_authorization_factory_spec.rb +14 -0
- data/spec/lib/spree/core/testing_support/factories/return_item_factory_spec.rb +20 -0
- data/spec/lib/spree/core/testing_support/factories/return_reason_factory_spec.rb +14 -0
- data/spec/lib/spree/core/testing_support/factories/role_factory_spec.rb +20 -0
- data/spec/lib/spree/core/testing_support/factories/shipment_factory_spec.rb +14 -0
- data/spec/lib/spree/core/testing_support/factories/shipping_category_factory_spec.rb +14 -0
- data/spec/lib/spree/core/testing_support/factories/shipping_method_factory_spec.rb +44 -0
- data/spec/lib/spree/core/testing_support/factories/shipping_rate_factory_spec.rb +14 -0
- data/spec/lib/spree/core/testing_support/factories/state_factory_spec.rb +59 -0
- data/spec/lib/spree/core/testing_support/factories/stock_item_factory_spec.rb +14 -0
- data/spec/lib/spree/core/testing_support/factories/stock_location_factory_spec.rb +35 -0
- data/spec/lib/spree/core/testing_support/factories/stock_movement_factory_spec.rb +14 -0
- data/spec/lib/spree/core/testing_support/factories/stock_package_factory_spec.rb +28 -0
- data/spec/lib/spree/core/testing_support/factories/store_credit_category_factory_spec.rb +14 -0
- data/spec/lib/spree/core/testing_support/factories/store_credit_event_factory_spec.rb +43 -0
- data/spec/lib/spree/core/testing_support/factories/store_credit_factory_spec.rb +14 -0
- data/spec/lib/spree/core/testing_support/factories/store_credit_type_factory_spec.rb +20 -0
- data/spec/lib/spree/core/testing_support/factories/store_credit_update_reason_factory_spec.rb +14 -0
- data/spec/lib/spree/core/testing_support/factories/store_factory_spec.rb +14 -0
- data/spec/lib/spree/core/testing_support/factories/tax_category_factory_spec.rb +14 -0
- data/spec/lib/spree/core/testing_support/factories/tax_rate_factory_spec.rb +14 -0
- data/spec/lib/spree/core/testing_support/factories/taxon_factory_spec.rb +14 -0
- data/spec/lib/spree/core/testing_support/factories/taxonomy_factory_spec.rb +14 -0
- data/spec/lib/spree/core/testing_support/factories/user_factory_spec.rb +24 -0
- data/spec/lib/spree/core/testing_support/factories/variant_factory_spec.rb +56 -0
- data/spec/lib/spree/core/testing_support/factories/variant_property_rule_condition_factory_spec.rb +14 -0
- data/spec/lib/spree/core/testing_support/factories/variant_property_rule_factory_spec.rb +14 -0
- data/spec/lib/spree/core/testing_support/factories/variant_property_rule_value_factory_spec.rb +14 -0
- data/spec/lib/spree/core/testing_support/factories/zone_factory_spec.rb +20 -0
- data/spec/lib/spree/core/testing_support/preferences_spec.rb +28 -0
- data/spec/lib/spree/core/validators/email_spec.rb +53 -0
- data/spec/lib/spree/core/version_spec.rb +19 -0
- data/spec/lib/spree/localized_number_spec.rb +45 -0
- data/spec/lib/spree/migrations_spec.rb +32 -0
- data/spec/lib/spree/money_spec.rb +305 -0
- data/spec/lib/spree/permission_sets/default_customer_spec.rb +22 -0
- data/spec/lib/tasks/dummy_task.rake +12 -0
- data/spec/lib/tasks/dummy_task_spec.rb +30 -0
- data/spec/lib/tasks/migrations/migrate_shipping_rate_taxes_spec.rb +19 -0
- data/spec/mailers/carton_mailer_spec.rb +44 -0
- data/spec/mailers/order_mailer_spec.rb +117 -0
- data/spec/mailers/promotion_code_batch_mailer_spec.rb +47 -0
- data/spec/mailers/reimbursement_mailer_spec.rb +36 -0
- data/spec/mailers/test_mailer_spec.rb +11 -0
- data/spec/models/spree/ability_spec.rb +279 -0
- data/spec/models/spree/address_spec.rb +375 -0
- data/spec/models/spree/adjustment_reason_spec.rb +11 -0
- data/spec/models/spree/adjustment_spec.rb +339 -0
- data/spec/models/spree/app_configuration_spec.rb +55 -0
- data/spec/models/spree/asset_spec.rb +25 -0
- data/spec/models/spree/calculator/default_tax_spec.rb +260 -0
- data/spec/models/spree/calculator/distributed_amount_spec.rb +82 -0
- data/spec/models/spree/calculator/flat_percent_item_total_spec.rb +30 -0
- data/spec/models/spree/calculator/flat_rate_spec.rb +52 -0
- data/spec/models/spree/calculator/flexi_rate_spec.rb +158 -0
- data/spec/models/spree/calculator/free_shipping_spec.rb +8 -0
- data/spec/models/spree/calculator/percent_on_line_item_spec.rb +20 -0
- data/spec/models/spree/calculator/percent_per_item_spec.rb +12 -0
- data/spec/models/spree/calculator/price_sack_spec.rb +35 -0
- data/spec/models/spree/calculator/refunds/default_refund_amount_spec.rb +70 -0
- data/spec/models/spree/calculator/shipping/flat_percent_item_total_spec.rb +39 -0
- data/spec/models/spree/calculator/shipping/flat_rate_spec.rb +18 -0
- data/spec/models/spree/calculator/shipping/flexi_rate_spec.rb +56 -0
- data/spec/models/spree/calculator/shipping/per_item_spec.rb +25 -0
- data/spec/models/spree/calculator/shipping/price_sack_spec.rb +35 -0
- data/spec/models/spree/calculator/tiered_flat_rate_spec.rb +99 -0
- data/spec/models/spree/calculator/tiered_percent_spec.rb +191 -0
- data/spec/models/spree/calculator_spec.rb +43 -0
- data/spec/models/spree/carton_spec.rb +137 -0
- data/spec/models/spree/classification_spec.rb +114 -0
- data/spec/models/spree/concerns/display_money_spec.rb +44 -0
- data/spec/models/spree/concerns/ordered_property_value_list_spec.rb +52 -0
- data/spec/models/spree/concerns/user_address_book_spec.rb +358 -0
- data/spec/models/spree/concerns/user_methods_spec.rb +121 -0
- data/spec/models/spree/country_spec.rb +78 -0
- data/spec/models/spree/credit_card_spec.rb +373 -0
- data/spec/models/spree/customer_return_spec.rb +293 -0
- data/spec/models/spree/distributed_amounts_handler_spec.rb +83 -0
- data/spec/models/spree/exchange_spec.rb +76 -0
- data/spec/models/spree/fulfilment_changer_spec.rb +307 -0
- data/spec/models/spree/gallery/product_gallery_spec.rb +21 -0
- data/spec/models/spree/gallery/variant_gallery_spec.rb +21 -0
- data/spec/models/spree/gateway/bogus_simple.rb +14 -0
- data/spec/models/spree/gateway/bogus_spec.rb +14 -0
- data/spec/models/spree/gateway_spec.rb +14 -0
- data/spec/models/spree/image_spec.rb +25 -0
- data/spec/models/spree/inventory_unit_spec.rb +312 -0
- data/spec/models/spree/line_item_spec.rb +240 -0
- data/spec/models/spree/option_type_spec.rb +16 -0
- data/spec/models/spree/option_value_spec.rb +52 -0
- data/spec/models/spree/order/address_spec.rb +52 -0
- data/spec/models/spree/order/adjustments_spec.rb +29 -0
- data/spec/models/spree/order/callbacks_spec.rb +44 -0
- data/spec/models/spree/order/checkout_spec.rb +744 -0
- data/spec/models/spree/order/finalizing_spec.rb +111 -0
- data/spec/models/spree/order/number_generator_spec.rb +47 -0
- data/spec/models/spree/order/outstanding_balance_integration_spec.rb +137 -0
- data/spec/models/spree/order/payment_spec.rb +280 -0
- data/spec/models/spree/order/risk_assessment_spec.rb +70 -0
- data/spec/models/spree/order/state_machine_spec.rb +122 -0
- data/spec/models/spree/order/totals_spec.rb +26 -0
- data/spec/models/spree/order/updating_spec.rb +18 -0
- data/spec/models/spree/order/validations_spec.rb +17 -0
- data/spec/models/spree/order_cancellations_spec.rb +192 -0
- data/spec/models/spree/order_capturing_spec.rb +16 -0
- data/spec/models/spree/order_contents_spec.rb +362 -0
- data/spec/models/spree/order_inventory_spec.rb +278 -0
- data/spec/models/spree/order_merger_spec.rb +159 -0
- data/spec/models/spree/order_mutex_spec.rb +89 -0
- data/spec/models/spree/order_promotion_spec.rb +33 -0
- data/spec/models/spree/order_shipping_spec.rb +247 -0
- data/spec/models/spree/order_spec.rb +1633 -0
- data/spec/models/spree/order_taxation_spec.rb +128 -0
- data/spec/models/spree/order_update_attributes_spec.rb +49 -0
- data/spec/models/spree/order_updater_spec.rb +560 -0
- data/spec/models/spree/payment/cancellation_spec.rb +83 -0
- data/spec/models/spree/payment_create_spec.rb +205 -0
- data/spec/models/spree/payment_method/bogus_credit_card_spec.rb +10 -0
- data/spec/models/spree/payment_method/check_spec.rb +80 -0
- data/spec/models/spree/payment_method/credit_card_spec.rb +68 -0
- data/spec/models/spree/payment_method/simple_bogus_credit_card_spec.rb +20 -0
- data/spec/models/spree/payment_method/store_credit_spec.rb +325 -0
- data/spec/models/spree/payment_method_spec.rb +408 -0
- data/spec/models/spree/payment_spec.rb +1274 -0
- data/spec/models/spree/permission_sets/base_spec.rb +14 -0
- data/spec/models/spree/permission_sets/configuration_display.rb +79 -0
- data/spec/models/spree/permission_sets/configuration_management_spec.rb +49 -0
- data/spec/models/spree/permission_sets/dashboard_display_spec.rb +23 -0
- data/spec/models/spree/permission_sets/order_display_spec.rb +56 -0
- data/spec/models/spree/permission_sets/order_management_spec.rb +43 -0
- data/spec/models/spree/permission_sets/product_display_spec.rb +57 -0
- data/spec/models/spree/permission_sets/product_management_spec.rb +39 -0
- data/spec/models/spree/permission_sets/promotion_display_spec.rb +41 -0
- data/spec/models/spree/permission_sets/promotion_management_spec.rb +27 -0
- data/spec/models/spree/permission_sets/restricted_stock_display_spec.rb +42 -0
- data/spec/models/spree/permission_sets/restricted_stock_management_spec.rb +42 -0
- data/spec/models/spree/permission_sets/stock_display_spec.rb +25 -0
- data/spec/models/spree/permission_sets/stock_management_spec.rb +23 -0
- data/spec/models/spree/permission_sets/user_display_spec.rb +39 -0
- data/spec/models/spree/permission_sets/user_management_spec.rb +56 -0
- data/spec/models/spree/preference_spec.rb +79 -0
- data/spec/models/spree/preferences/configuration_spec.rb +27 -0
- data/spec/models/spree/preferences/preferable_spec.rb +334 -0
- data/spec/models/spree/preferences/scoped_store_spec.rb +62 -0
- data/spec/models/spree/preferences/static_model_preferences_spec.rb +79 -0
- data/spec/models/spree/preferences/statically_configurable_spec.rb +67 -0
- data/spec/models/spree/preferences/store_spec.rb +40 -0
- data/spec/models/spree/price_spec.rb +150 -0
- data/spec/models/spree/product/scopes_spec.rb +164 -0
- data/spec/models/spree/product_duplicator_spec.rb +92 -0
- data/spec/models/spree/product_filter_spec.rb +28 -0
- data/spec/models/spree/product_property_spec.rb +20 -0
- data/spec/models/spree/product_spec.rb +584 -0
- data/spec/models/spree/promotion/actions/create_adjustment_spec.rb +126 -0
- data/spec/models/spree/promotion/actions/create_item_adjustments_spec.rb +198 -0
- data/spec/models/spree/promotion/actions/create_quantity_adjustments_spec.rb +298 -0
- data/spec/models/spree/promotion/actions/free_shipping_spec.rb +61 -0
- data/spec/models/spree/promotion/rules/first_order_spec.rb +77 -0
- data/spec/models/spree/promotion/rules/first_repeat_purchase_since_spec.rb +71 -0
- data/spec/models/spree/promotion/rules/item_total_spec.rb +113 -0
- data/spec/models/spree/promotion/rules/nth_order_spec.rb +72 -0
- data/spec/models/spree/promotion/rules/one_use_per_user_spec.rb +44 -0
- data/spec/models/spree/promotion/rules/option_value_spec.rb +96 -0
- data/spec/models/spree/promotion/rules/product_spec.rb +178 -0
- data/spec/models/spree/promotion/rules/store_spec.rb +35 -0
- data/spec/models/spree/promotion/rules/taxon_spec.rb +174 -0
- data/spec/models/spree/promotion/rules/user_logged_in_spec.rb +28 -0
- data/spec/models/spree/promotion/rules/user_role_spec.rb +88 -0
- data/spec/models/spree/promotion/rules/user_spec.rb +39 -0
- data/spec/models/spree/promotion_action_spec.rb +44 -0
- data/spec/models/spree/promotion_category_spec.rb +19 -0
- data/spec/models/spree/promotion_code/batch_builder_spec.rb +107 -0
- data/spec/models/spree/promotion_code_batch_spec.rb +54 -0
- data/spec/models/spree/promotion_code_spec.rb +206 -0
- data/spec/models/spree/promotion_handler/cart_spec.rb +132 -0
- data/spec/models/spree/promotion_handler/coupon_spec.rb +365 -0
- data/spec/models/spree/promotion_handler/page_spec.rb +45 -0
- data/spec/models/spree/promotion_handler/shipping_spec.rb +96 -0
- data/spec/models/spree/promotion_rule_spec.rb +34 -0
- data/spec/models/spree/promotion_spec.rb +834 -0
- data/spec/models/spree/refund_spec.rb +199 -0
- data/spec/models/spree/reimbursement/credit_spec.rb +38 -0
- data/spec/models/spree/reimbursement/reimbursement_type_engine_spec.rb +144 -0
- data/spec/models/spree/reimbursement/reimbursement_type_validator_spec.rb +85 -0
- data/spec/models/spree/reimbursement_performer_spec.rb +32 -0
- data/spec/models/spree/reimbursement_spec.rb +253 -0
- data/spec/models/spree/reimbursement_tax_calculator_spec.rb +52 -0
- data/spec/models/spree/reimbursement_type/credit_spec.rb +55 -0
- data/spec/models/spree/reimbursement_type/exchange_spec.rb +47 -0
- data/spec/models/spree/reimbursement_type/original_payment_spec.rb +109 -0
- data/spec/models/spree/reimbursement_type/store_credit_spec.rb +99 -0
- data/spec/models/spree/return_authorization_spec.rb +226 -0
- data/spec/models/spree/return_item/eligibility_validator/default_spec.rb +79 -0
- data/spec/models/spree/return_item/eligibility_validator/inventory_shipped_spec.rb +59 -0
- data/spec/models/spree/return_item/eligibility_validator/no_reimbursements_spec.rb +86 -0
- data/spec/models/spree/return_item/eligibility_validator/order_completed_spec.rb +35 -0
- data/spec/models/spree/return_item/eligibility_validator/rma_required_spec.rb +31 -0
- data/spec/models/spree/return_item/eligibility_validator/time_since_purchase_spec.rb +42 -0
- data/spec/models/spree/return_item/exchange_variant_eligibility/same_option_value_spec.rb +66 -0
- data/spec/models/spree/return_item/exchange_variant_eligibility/same_product_spec.rb +43 -0
- data/spec/models/spree/return_item_spec.rb +776 -0
- data/spec/models/spree/returns_calculator_spec.rb +16 -0
- data/spec/models/spree/shipment_spec.rb +907 -0
- data/spec/models/spree/shipping_calculator_spec.rb +57 -0
- data/spec/models/spree/shipping_manifest_spec.rb +110 -0
- data/spec/models/spree/shipping_method_spec.rb +260 -0
- data/spec/models/spree/shipping_rate_spec.rb +154 -0
- data/spec/models/spree/shipping_rate_tax_spec.rb +79 -0
- data/spec/models/spree/state_spec.rb +43 -0
- data/spec/models/spree/stock/availability_spec.rb +143 -0
- data/spec/models/spree/stock/availability_validator_spec.rb +140 -0
- data/spec/models/spree/stock/content_item_spec.rb +70 -0
- data/spec/models/spree/stock/differentiator_spec.rb +41 -0
- data/spec/models/spree/stock/estimator_spec.rb +240 -0
- data/spec/models/spree/stock/inventory_unit_builder_spec.rb +34 -0
- data/spec/models/spree/stock/location_sorter/default_first_spec.rb +20 -0
- data/spec/models/spree/stock/location_sorter/unsorted_spec.rb +19 -0
- data/spec/models/spree/stock/package_spec.rb +182 -0
- data/spec/models/spree/stock/quantifier_spec.rb +113 -0
- data/spec/models/spree/stock/shipping_rate_selector_spec.rb +18 -0
- data/spec/models/spree/stock/shipping_rate_sorter_spec.rb +18 -0
- data/spec/models/spree/stock/simple_coordinator_spec.rb +247 -0
- data/spec/models/spree/stock/splitter/backordered_spec.rb +31 -0
- data/spec/models/spree/stock/splitter/base_spec.rb +22 -0
- data/spec/models/spree/stock/splitter/shipping_category_spec.rb +48 -0
- data/spec/models/spree/stock/splitter/weight_spec.rb +31 -0
- data/spec/models/spree/stock/splitter_chain_spec.rb +66 -0
- data/spec/models/spree/stock_item_spec.rb +347 -0
- data/spec/models/spree/stock_location_spec.rb +288 -0
- data/spec/models/spree/stock_movement_spec.rb +58 -0
- data/spec/models/spree/stock_quantities_spec.rb +249 -0
- data/spec/models/spree/store_credit_category_spec.rb +19 -0
- data/spec/models/spree/store_credit_event_spec.rb +328 -0
- data/spec/models/spree/store_credit_spec.rb +900 -0
- data/spec/models/spree/store_selector/by_server_name_spec.rb +28 -0
- data/spec/models/spree/store_selector/legacy_spec.rb +46 -0
- data/spec/models/spree/store_spec.rb +156 -0
- data/spec/models/spree/tax/order_adjuster_spec.rb +35 -0
- data/spec/models/spree/tax/shipping_rate_taxer_spec.rb +59 -0
- data/spec/models/spree/tax/tax_location_spec.rb +79 -0
- data/spec/models/spree/tax/taxation_integration_spec.rb +815 -0
- data/spec/models/spree/tax_calculator/default_spec.rb +56 -0
- data/spec/models/spree/tax_category_spec.rb +29 -0
- data/spec/models/spree/tax_rate_spec.rb +316 -0
- data/spec/models/spree/taxon_spec.rb +169 -0
- data/spec/models/spree/taxonomy_spec.rb +15 -0
- data/spec/models/spree/unit_cancel_spec.rb +61 -0
- data/spec/models/spree/user_spec.rb +247 -0
- data/spec/models/spree/validations/db_maximum_length_validator_spec.rb +33 -0
- data/spec/models/spree/variant/price_selector_spec.rb +90 -0
- data/spec/models/spree/variant/pricing_options_spec.rb +181 -0
- data/spec/models/spree/variant/scopes_spec.rb +94 -0
- data/spec/models/spree/variant/vat_price_generator_spec.rb +77 -0
- data/spec/models/spree/variant_property_rule_condition_spec.rb +17 -0
- data/spec/models/spree/variant_property_rule_spec.rb +85 -0
- data/spec/models/spree/variant_property_rule_value_spec.rb +20 -0
- data/spec/models/spree/variant_spec.rb +822 -0
- data/spec/models/spree/wallet_payment_source_spec.rb +48 -0
- data/spec/models/spree/wallet_spec.rb +155 -0
- data/spec/models/spree/zone_spec.rb +248 -0
- data/spec/rails_helper.rb +45 -0
- data/spec/shared_examples/calculator_shared_examples.rb +10 -0
- data/spec/spec_helper.rb +39 -0
- data/spec/support/big_decimal.rb +7 -0
- data/spec/support/concerns/default_price.rb +36 -0
- data/spec/support/concerns/payment_source.rb +66 -0
- data/spec/support/concerns/working_factories.rb +15 -0
- data/spec/support/dummy_ability.rb +7 -0
- data/spec/support/shared_contexts/rake.rb +32 -0
- data/vendor/assets/javascripts/jquery.payment.js +648 -0
- data/vendor/assets/javascripts/jsuri.js +2 -0
- data/vendor/assets/stylesheets/normalize.css +375 -0
- metadata +1226 -0
|
@@ -0,0 +1,2107 @@
|
|
|
1
|
+
en:
|
|
2
|
+
activemodel:
|
|
3
|
+
attributes:
|
|
4
|
+
spree/order_cancellations:
|
|
5
|
+
quantity: Quantity
|
|
6
|
+
state: State
|
|
7
|
+
shipment: Shipment
|
|
8
|
+
cancel: Cancel
|
|
9
|
+
errors:
|
|
10
|
+
models:
|
|
11
|
+
spree/fulfilment_changer:
|
|
12
|
+
attributes:
|
|
13
|
+
desired_shipment:
|
|
14
|
+
can_not_transfer_within_same_shipment: can not be same as current shipment
|
|
15
|
+
not_enough_stock_at_desired_location: not enough stock in desired stock location
|
|
16
|
+
current_shipment:
|
|
17
|
+
has_already_been_shipped: has already been shipped
|
|
18
|
+
can_not_have_backordered_inventory_units: has backordered inventory units
|
|
19
|
+
activerecord:
|
|
20
|
+
attributes:
|
|
21
|
+
spree/address:
|
|
22
|
+
address1: Street Address
|
|
23
|
+
address2: Street Address (cont'd)
|
|
24
|
+
city: City
|
|
25
|
+
company: Company
|
|
26
|
+
firstname: First Name
|
|
27
|
+
lastname: Last Name
|
|
28
|
+
phone: Phone
|
|
29
|
+
zipcode: Zip Code
|
|
30
|
+
spree/adjustment:
|
|
31
|
+
adjustable: Adjustable
|
|
32
|
+
amount: Amount
|
|
33
|
+
label: Label
|
|
34
|
+
name: Name
|
|
35
|
+
state: State
|
|
36
|
+
adjustment_reason_id: Reason
|
|
37
|
+
spree/adjustment_reason:
|
|
38
|
+
active: Active
|
|
39
|
+
code: Code
|
|
40
|
+
name: Name
|
|
41
|
+
state: State
|
|
42
|
+
spree/calculator/flat_rate:
|
|
43
|
+
preferred_amount: Amount
|
|
44
|
+
spree/calculator/tiered_flat_rate:
|
|
45
|
+
preferred_base_amount: Base Amount
|
|
46
|
+
preferred_currency: Currency
|
|
47
|
+
preferred_tiers: Tiers
|
|
48
|
+
spree/calculator/tiered_percent:
|
|
49
|
+
preferred_base_percent: Base Percent
|
|
50
|
+
preferred_currency: Currency
|
|
51
|
+
preferred_tiers: Tiers
|
|
52
|
+
spree/carton:
|
|
53
|
+
tracking: Tracking
|
|
54
|
+
spree/country:
|
|
55
|
+
iso: ISO
|
|
56
|
+
iso3: ISO3
|
|
57
|
+
iso_name: ISO Name
|
|
58
|
+
name: Name
|
|
59
|
+
numcode: ISO Code
|
|
60
|
+
states_required: States Required
|
|
61
|
+
spree/credit_card:
|
|
62
|
+
base: ''
|
|
63
|
+
cc_type: Brand
|
|
64
|
+
card_code: Card Code
|
|
65
|
+
expiration: Expiration
|
|
66
|
+
month: Month
|
|
67
|
+
name: Name
|
|
68
|
+
number: Card Number
|
|
69
|
+
verification_value: Verification Value
|
|
70
|
+
year: Year
|
|
71
|
+
spree/customer_return:
|
|
72
|
+
number: Return Number
|
|
73
|
+
pre_tax_total: Pre-Tax Total
|
|
74
|
+
total: Total
|
|
75
|
+
total_excluding_vat: Pre-Tax Total
|
|
76
|
+
created_at: "Date/Time"
|
|
77
|
+
reimbursement_status: Reimbursement status
|
|
78
|
+
name: Name
|
|
79
|
+
spree/image:
|
|
80
|
+
alt: Alternative Text
|
|
81
|
+
attachment: Filename
|
|
82
|
+
spree/inventory_unit:
|
|
83
|
+
state: State
|
|
84
|
+
spree/legacy_user:
|
|
85
|
+
email: Email
|
|
86
|
+
password: Password
|
|
87
|
+
password_confirmation: Password Confirmation
|
|
88
|
+
spree_roles: Roles
|
|
89
|
+
spree/line_item:
|
|
90
|
+
description: Item Description
|
|
91
|
+
name: Name
|
|
92
|
+
price: Price
|
|
93
|
+
quantity: Quantity
|
|
94
|
+
total: Total price
|
|
95
|
+
spree/option_type:
|
|
96
|
+
name: Name
|
|
97
|
+
presentation: Presentation
|
|
98
|
+
spree/option_value:
|
|
99
|
+
name: Name
|
|
100
|
+
presentation: Presentation
|
|
101
|
+
spree/order:
|
|
102
|
+
additional_tax_total: Tax
|
|
103
|
+
approved_at: Approved at
|
|
104
|
+
approver_id: Approver
|
|
105
|
+
canceled_at: Canceled at
|
|
106
|
+
canceler_id: Canceler
|
|
107
|
+
checkout_complete: Checkout Complete
|
|
108
|
+
completed_at: Completed At
|
|
109
|
+
coupon_code: Coupon Code
|
|
110
|
+
created_at: Order Date
|
|
111
|
+
email: Customer E-Mail
|
|
112
|
+
included_tax_total: Tax (incl.)
|
|
113
|
+
ip_address: IP Address
|
|
114
|
+
item_total: Item Total
|
|
115
|
+
number: Number
|
|
116
|
+
payment_state: Payment State
|
|
117
|
+
shipment_state: Shipment State
|
|
118
|
+
shipment_total: Ship Total
|
|
119
|
+
special_instructions: Special Instructions
|
|
120
|
+
state: State
|
|
121
|
+
total: Total
|
|
122
|
+
considered_risky: Risky
|
|
123
|
+
spree/order/bill_address:
|
|
124
|
+
address1: Billing address street
|
|
125
|
+
city: Billing address city
|
|
126
|
+
firstname: Billing address first name
|
|
127
|
+
lastname: Billing address last name
|
|
128
|
+
phone: Billing address phone
|
|
129
|
+
state: Billing address state
|
|
130
|
+
zipcode: Billing address zipcode
|
|
131
|
+
spree/order/ship_address:
|
|
132
|
+
address1: Shipping address street
|
|
133
|
+
city: Shipping address city
|
|
134
|
+
firstname: Shipping address first name
|
|
135
|
+
lastname: Shipping address last name
|
|
136
|
+
phone: Shipping address phone
|
|
137
|
+
state: Shipping address state
|
|
138
|
+
zipcode: Shipping address zipcode
|
|
139
|
+
spree/payment:
|
|
140
|
+
amount: Amount
|
|
141
|
+
created_at: Date/Time
|
|
142
|
+
number: Identifier
|
|
143
|
+
response_code: Transaction ID
|
|
144
|
+
state: State
|
|
145
|
+
spree/payment_method:
|
|
146
|
+
active: Active
|
|
147
|
+
auto_capture: Auto Capture
|
|
148
|
+
description: Description
|
|
149
|
+
display_on: Display
|
|
150
|
+
name: Name
|
|
151
|
+
preference_source: Preference Source
|
|
152
|
+
type: Type
|
|
153
|
+
spree/price:
|
|
154
|
+
currency: Currency
|
|
155
|
+
amount: Price
|
|
156
|
+
is_default: Currently Valid
|
|
157
|
+
spree/product:
|
|
158
|
+
available_on: Available On
|
|
159
|
+
cost_currency: Cost Currency
|
|
160
|
+
cost_price: Cost Price
|
|
161
|
+
description: Description
|
|
162
|
+
depth: Depth
|
|
163
|
+
height: Height
|
|
164
|
+
master_price: Master Price
|
|
165
|
+
meta_description: Meta Description
|
|
166
|
+
meta_keywords: Meta Keywords
|
|
167
|
+
meta_title: Meta Title
|
|
168
|
+
name: Name
|
|
169
|
+
on_hand: On Hand
|
|
170
|
+
price: Master Price
|
|
171
|
+
promotionable: Promotable
|
|
172
|
+
shipping_category: Shipping Category
|
|
173
|
+
slug: Slug
|
|
174
|
+
tax_category: Tax Category
|
|
175
|
+
weight: Weight
|
|
176
|
+
width: Width
|
|
177
|
+
spree/product_property:
|
|
178
|
+
value: Value
|
|
179
|
+
spree/promotion:
|
|
180
|
+
apply_automatically: Apply Automatically
|
|
181
|
+
code: Code
|
|
182
|
+
description: Description
|
|
183
|
+
event_name: Event Name
|
|
184
|
+
expires_at: End
|
|
185
|
+
name: Name
|
|
186
|
+
path: Path
|
|
187
|
+
per_code_usage_limit: Per code usage limit
|
|
188
|
+
promotion_uses: Promotion Uses
|
|
189
|
+
starts_at: Start
|
|
190
|
+
status: Status
|
|
191
|
+
usage_limit: Usage Limit
|
|
192
|
+
spree/promotion/actions/create_adjustment:
|
|
193
|
+
description: Creates a promotion credit adjustment on the order
|
|
194
|
+
spree/promotion/actions/create_item_adjustments:
|
|
195
|
+
description: Creates a promotion credit adjustment on a line item
|
|
196
|
+
spree/promotion/actions/create_quantity_adjustments:
|
|
197
|
+
description: Creates an adjustment on a line item based on quantity
|
|
198
|
+
spree/promotion/actions/free_shipping:
|
|
199
|
+
description: Makes all shipments for the order free
|
|
200
|
+
spree/promotion/rules/item_total:
|
|
201
|
+
description: Order total meets these criteria
|
|
202
|
+
spree/promotion/rules/first_order:
|
|
203
|
+
description: Must be the customer's first order
|
|
204
|
+
spree/promotion/rules/landing_page:
|
|
205
|
+
description: Customer must have visited the specified page
|
|
206
|
+
spree/promotion/rules/one_use_per_user:
|
|
207
|
+
description: Only One Use Per User
|
|
208
|
+
spree/promotion/rules/option_value:
|
|
209
|
+
description: Order includes specified product(s) with matching option value(s)
|
|
210
|
+
spree/promotion/rules/product:
|
|
211
|
+
description: Order includes specified product(s)
|
|
212
|
+
spree/promotion/rules/user:
|
|
213
|
+
description: Available only to the specified users
|
|
214
|
+
spree/promotion/rules/user_logged_in:
|
|
215
|
+
description: Available only to logged in users
|
|
216
|
+
spree/promotion/rules/taxon:
|
|
217
|
+
description: Order includes products with specified taxon(s)
|
|
218
|
+
spree/promotion/rules/nth_order:
|
|
219
|
+
description: Apply a promotion to every nth order a user has completed.
|
|
220
|
+
form_text: "Apply this promotion on the users Nth order: "
|
|
221
|
+
spree/promotion/rules/first_repeat_purchase_since:
|
|
222
|
+
description: Available only to user who have not purchased in a while
|
|
223
|
+
form_text: "Apply this promotion to users whose last order was more than X days ago: "
|
|
224
|
+
spree/promotion/rules/user_role:
|
|
225
|
+
description: Order includes User with specified Role(s)
|
|
226
|
+
spree/promotion/rules/store:
|
|
227
|
+
description: Available only to the specified stores
|
|
228
|
+
spree/promotion_category:
|
|
229
|
+
name: Name
|
|
230
|
+
spree/property:
|
|
231
|
+
name: Name
|
|
232
|
+
presentation: Presentation
|
|
233
|
+
spree/refund:
|
|
234
|
+
amount: Amount
|
|
235
|
+
description: Description
|
|
236
|
+
refund_reason_id: Reason
|
|
237
|
+
spree/refund_reason:
|
|
238
|
+
active: Active
|
|
239
|
+
name: Name
|
|
240
|
+
code: Code
|
|
241
|
+
spree/reimbursement:
|
|
242
|
+
created_at: "Date/Time"
|
|
243
|
+
number: Number
|
|
244
|
+
reimbursement_status: Status
|
|
245
|
+
total: Total
|
|
246
|
+
spree/reimbursement/credit:
|
|
247
|
+
amount: Amount
|
|
248
|
+
spree/reimbursement_type:
|
|
249
|
+
name: Name
|
|
250
|
+
type: Type
|
|
251
|
+
created_at: "Date/Time"
|
|
252
|
+
spree/return_authorization:
|
|
253
|
+
amount: Amount
|
|
254
|
+
pre_tax_total: Pre-Tax Total
|
|
255
|
+
total_excluding_vat: Pre-Tax Total
|
|
256
|
+
spree/return_item:
|
|
257
|
+
acceptance_status: Acceptance status
|
|
258
|
+
acceptance_status_errors: Acceptance errors
|
|
259
|
+
amount: Amount Before Sales Tax
|
|
260
|
+
charged: Charged
|
|
261
|
+
exchange_variant: Exchange for
|
|
262
|
+
inventory_unit_state: State
|
|
263
|
+
item_received?: "Item Received?"
|
|
264
|
+
override_reimbursement_type_id: Reimbursement Type Override
|
|
265
|
+
preferred_reimbursement_type_id: Preferred Reimbursement Type
|
|
266
|
+
reception_status: Reception Status
|
|
267
|
+
resellable: "Resellable?"
|
|
268
|
+
return_reason: Reason
|
|
269
|
+
total: Total
|
|
270
|
+
spree/return_reason:
|
|
271
|
+
name: Name
|
|
272
|
+
active: Active
|
|
273
|
+
created_at: "Date/Time"
|
|
274
|
+
memo: Memo
|
|
275
|
+
number: RMA Number
|
|
276
|
+
state: State
|
|
277
|
+
spree/role:
|
|
278
|
+
name: Name
|
|
279
|
+
spree/shipping_category:
|
|
280
|
+
name: Name
|
|
281
|
+
spree/shipment:
|
|
282
|
+
tracking: Tracking Number
|
|
283
|
+
spree/shipping_method:
|
|
284
|
+
admin_name: Internal Name
|
|
285
|
+
carrier: Carrier
|
|
286
|
+
code: Code
|
|
287
|
+
display_on: Display
|
|
288
|
+
name: Name
|
|
289
|
+
service_level: Service Level
|
|
290
|
+
tracking_url: Tracking URL
|
|
291
|
+
spree/shipping_rate:
|
|
292
|
+
label: Label
|
|
293
|
+
tax_rate: Tax Rate
|
|
294
|
+
shipping_rate: Shipping Rate
|
|
295
|
+
amount: Amount
|
|
296
|
+
spree/state:
|
|
297
|
+
abbr: Abbreviation
|
|
298
|
+
name: Name
|
|
299
|
+
spree/store:
|
|
300
|
+
url: Site URL
|
|
301
|
+
default: Default
|
|
302
|
+
meta_description: Meta Description
|
|
303
|
+
meta_keywords: Meta Keywords
|
|
304
|
+
seo_title: Seo Title
|
|
305
|
+
name: Site Name
|
|
306
|
+
mail_from_address: Mail From Address
|
|
307
|
+
cart_tax_country_iso: Tax Country for Empty Carts
|
|
308
|
+
available_locales: Locales available in the storefront
|
|
309
|
+
spree/store_credit:
|
|
310
|
+
amount: Amount
|
|
311
|
+
amount_authorized: Amount Authorized
|
|
312
|
+
amount_credited: Amount Credited
|
|
313
|
+
amount_used: Amount Used
|
|
314
|
+
category_id: Credit Type
|
|
315
|
+
created_at: Issued On
|
|
316
|
+
created_by_id: Created By
|
|
317
|
+
invalidated_at: Invalidated
|
|
318
|
+
memo: Memo
|
|
319
|
+
spree/store_credit_event:
|
|
320
|
+
action: Action
|
|
321
|
+
amount_remaining: Total Unused
|
|
322
|
+
user_total_amount: Total Amount
|
|
323
|
+
spree/store_credit_update_reason:
|
|
324
|
+
name: Reason For Updating
|
|
325
|
+
spree/stock_item:
|
|
326
|
+
count_on_hand: Count On Hand
|
|
327
|
+
spree/stock_location:
|
|
328
|
+
admin_name: Internal Name
|
|
329
|
+
active: Active
|
|
330
|
+
address1: Street Address
|
|
331
|
+
address2: Street Address (cont'd)
|
|
332
|
+
backorderable_default: Backorderable default
|
|
333
|
+
check_stock_on_transfer: Check stock on transfer
|
|
334
|
+
city: City
|
|
335
|
+
code: Code
|
|
336
|
+
country_id: Country
|
|
337
|
+
default: Default
|
|
338
|
+
fulfillable: Fulfillable
|
|
339
|
+
internal_name: Internal Name
|
|
340
|
+
name: Name
|
|
341
|
+
phone: Phone
|
|
342
|
+
propagate_all_variants: Propagate all variants
|
|
343
|
+
restock_inventory: Restock Inventory
|
|
344
|
+
state_id: State
|
|
345
|
+
zipcode: Zip
|
|
346
|
+
spree/stock_movement:
|
|
347
|
+
originated_by: Originated By
|
|
348
|
+
quantity: Quantity
|
|
349
|
+
variant: Variant
|
|
350
|
+
spree/tax_category:
|
|
351
|
+
description: Description
|
|
352
|
+
name: Name
|
|
353
|
+
is_default: Default
|
|
354
|
+
tax_code: Tax Code
|
|
355
|
+
spree/tax_rate:
|
|
356
|
+
amount: Rate
|
|
357
|
+
included_in_price: Included In Price
|
|
358
|
+
name: Name
|
|
359
|
+
show_rate_in_label: Show Rate In Label
|
|
360
|
+
starts_at: Start date
|
|
361
|
+
expires_at: Expiration date
|
|
362
|
+
spree/taxon:
|
|
363
|
+
description: Description
|
|
364
|
+
icon: Icon
|
|
365
|
+
meta_description: Meta Description
|
|
366
|
+
meta_keywords: Meta Keywords
|
|
367
|
+
meta_title: Meta Title
|
|
368
|
+
name: Name
|
|
369
|
+
permalink: Permalink
|
|
370
|
+
position: Position
|
|
371
|
+
spree/taxonomy:
|
|
372
|
+
name: Name
|
|
373
|
+
spree/tracker:
|
|
374
|
+
analytics_id: Analytics ID
|
|
375
|
+
active: Active
|
|
376
|
+
spree/user:
|
|
377
|
+
email: Email
|
|
378
|
+
password: Password
|
|
379
|
+
password_confirmation: Password Confirmation
|
|
380
|
+
spree_roles: Roles
|
|
381
|
+
lifetime_value: Total spent
|
|
382
|
+
spree/variant:
|
|
383
|
+
cost_currency: Cost Currency
|
|
384
|
+
cost_price: Cost Price
|
|
385
|
+
depth: Depth
|
|
386
|
+
height: Height
|
|
387
|
+
price: Price
|
|
388
|
+
sku: SKU
|
|
389
|
+
tax_category: Variant tax category
|
|
390
|
+
weight: Weight
|
|
391
|
+
width: Width
|
|
392
|
+
spree/zone:
|
|
393
|
+
description: Description
|
|
394
|
+
name: Name
|
|
395
|
+
models:
|
|
396
|
+
# LegacyUser maps to this model_name so we want to provide translations for it
|
|
397
|
+
user:
|
|
398
|
+
one: User
|
|
399
|
+
other: Users
|
|
400
|
+
spree/address:
|
|
401
|
+
one: Address
|
|
402
|
+
other: Addresses
|
|
403
|
+
spree/adjustment:
|
|
404
|
+
one: Adjustment
|
|
405
|
+
other: Adjustments
|
|
406
|
+
spree/adjustment_reason:
|
|
407
|
+
one: Adjustment Reason
|
|
408
|
+
other: Adjustment Reasons
|
|
409
|
+
spree/calculator:
|
|
410
|
+
one: Base Calculator
|
|
411
|
+
other: Base Calculators
|
|
412
|
+
spree/calculator/default_tax:
|
|
413
|
+
one: Default Tax
|
|
414
|
+
other: Default Tax
|
|
415
|
+
spree/calculator/distributed_amount:
|
|
416
|
+
one: Distributed Amount
|
|
417
|
+
other: Distributed Amount
|
|
418
|
+
spree/calculator/flat_percent_item_total:
|
|
419
|
+
one: Flat Percent
|
|
420
|
+
other: Flat Percent
|
|
421
|
+
spree/calculator/flat_rate:
|
|
422
|
+
one: Flat Rate
|
|
423
|
+
other: Flat Rate
|
|
424
|
+
spree/calculator/flexi_rate:
|
|
425
|
+
one: Flexible Rate
|
|
426
|
+
other: Flexible Rate
|
|
427
|
+
spree/calculator/free_shipping:
|
|
428
|
+
one: Free Shipping
|
|
429
|
+
other: Free Shipping
|
|
430
|
+
spree/calculator/percent_on_line_item:
|
|
431
|
+
one: Percent Per Item
|
|
432
|
+
other: Percent Per Item
|
|
433
|
+
spree/calculator/percent_per_item:
|
|
434
|
+
one: Percent Per Item
|
|
435
|
+
other: Percent Per Item
|
|
436
|
+
spree/calculator/price_sack:
|
|
437
|
+
one: Price Sack
|
|
438
|
+
other: Price Sack
|
|
439
|
+
spree/calculator/tiered_percent:
|
|
440
|
+
one: Tiered Percent
|
|
441
|
+
other: Tiered Percent
|
|
442
|
+
spree/calculator/tiered_flat_rate:
|
|
443
|
+
one: Tiered Flat Rate
|
|
444
|
+
other: Tiered Flat Rate
|
|
445
|
+
spree/calculator/returns/default_refund_amount:
|
|
446
|
+
one: Default Refund Amount
|
|
447
|
+
other: Default Refund Amount
|
|
448
|
+
spree/calculator/shipping/flat_percent_item_total:
|
|
449
|
+
one: Flat Percent
|
|
450
|
+
other: Flat Percent
|
|
451
|
+
spree/calculator/shipping/flat_rate:
|
|
452
|
+
one: Flat rate
|
|
453
|
+
other: Flat rate
|
|
454
|
+
spree/calculator/shipping/flexi_rate:
|
|
455
|
+
one: Flexible Rate per package item
|
|
456
|
+
other: Flexible Rate per package item
|
|
457
|
+
spree/calculator/shipping/per_item:
|
|
458
|
+
one: Flat rate per package item
|
|
459
|
+
other: Flat rate per package item
|
|
460
|
+
spree/calculator/shipping/price_sack:
|
|
461
|
+
one: Price sack
|
|
462
|
+
other: Price sack
|
|
463
|
+
spree/country:
|
|
464
|
+
one: Country
|
|
465
|
+
other: Countries
|
|
466
|
+
spree/credit_card:
|
|
467
|
+
one: Credit Card
|
|
468
|
+
other: Credit Cards
|
|
469
|
+
spree/customer_return:
|
|
470
|
+
one: Customer Return
|
|
471
|
+
other: Customer Returns
|
|
472
|
+
spree/exchange:
|
|
473
|
+
one: Exchange
|
|
474
|
+
other: Exchanges
|
|
475
|
+
spree/image:
|
|
476
|
+
one: Image
|
|
477
|
+
other: Images
|
|
478
|
+
spree/inventory_unit:
|
|
479
|
+
one: Inventory Unit
|
|
480
|
+
other: Inventory Units
|
|
481
|
+
spree/legacy_user:
|
|
482
|
+
one: User
|
|
483
|
+
other: Users
|
|
484
|
+
spree/line_item:
|
|
485
|
+
one: Line Item
|
|
486
|
+
other: Line Items
|
|
487
|
+
spree/log_entry:
|
|
488
|
+
one: Log Entry
|
|
489
|
+
other: Log Entries
|
|
490
|
+
spree/option_type:
|
|
491
|
+
one: Option Type
|
|
492
|
+
other: Option Types
|
|
493
|
+
spree/option_value:
|
|
494
|
+
one: Option Value
|
|
495
|
+
other: Option Values
|
|
496
|
+
spree/order:
|
|
497
|
+
one: Order
|
|
498
|
+
other: Orders
|
|
499
|
+
spree/payment:
|
|
500
|
+
one: Payment
|
|
501
|
+
other: Payments
|
|
502
|
+
spree/payment_capture_event:
|
|
503
|
+
one: Capture Event
|
|
504
|
+
other: Capture Events
|
|
505
|
+
spree/payment_method:
|
|
506
|
+
one: Payment Method
|
|
507
|
+
other: Payment Methods
|
|
508
|
+
spree/payment_method/check: Check Payments
|
|
509
|
+
spree/payment_method/store_credit: Store Credit Payments
|
|
510
|
+
spree/payment_method/bogus_credit_card: Bogus Credit Card Payments
|
|
511
|
+
spree/payment_method/simple_bogus_credit_card: Simple Bogus Credit Card Payments
|
|
512
|
+
spree/price:
|
|
513
|
+
one: Price
|
|
514
|
+
other: Prices
|
|
515
|
+
spree/product:
|
|
516
|
+
one: Product
|
|
517
|
+
other: Products
|
|
518
|
+
spree/product_property:
|
|
519
|
+
one: Product Property
|
|
520
|
+
other: Product Properties
|
|
521
|
+
spree/promotion:
|
|
522
|
+
one: Promotion
|
|
523
|
+
other: Promotions
|
|
524
|
+
spree/promotion/actions/create_adjustment: Create whole-order adjustment
|
|
525
|
+
spree/promotion/actions/create_item_adjustments: Create per-line-item adjustment
|
|
526
|
+
spree/promotion/actions/create_quantity_adjustments: Create per-quantity adjustment
|
|
527
|
+
spree/promotion/actions/free_shipping: Free shipping
|
|
528
|
+
spree/promotion/rules/first_order: First order
|
|
529
|
+
spree/promotion/rules/item_total: Item total
|
|
530
|
+
spree/promotion/rules/landing_page: Landing Page
|
|
531
|
+
spree/promotion/rules/one_use_per_user: One Use Per User
|
|
532
|
+
spree/promotion/rules/option_value: Option Value(s)
|
|
533
|
+
spree/promotion/rules/product: Product(s)
|
|
534
|
+
spree/promotion/rules/user: User
|
|
535
|
+
spree/promotion/rules/user_logged_in: User Logged In
|
|
536
|
+
spree/promotion/rules/taxon: Taxon(s)
|
|
537
|
+
spree/promotion/rules/nth_order: Nth Order
|
|
538
|
+
spree/promotion/rules/first_repeat_purchase_since: First Repeat Purchase Since
|
|
539
|
+
spree/promotion/rules/user_role: User Role(s)
|
|
540
|
+
spree/promotion_category:
|
|
541
|
+
one: Promotion Category
|
|
542
|
+
other: Promotion Categories
|
|
543
|
+
spree/promotion_code_batch:
|
|
544
|
+
one: Promotion Code Batch
|
|
545
|
+
other: Promotion Code Batches
|
|
546
|
+
spree/promotion_code:
|
|
547
|
+
one: Promotion Code
|
|
548
|
+
other: Promotion Codes
|
|
549
|
+
spree/property:
|
|
550
|
+
one: Property Type
|
|
551
|
+
other: Property Types
|
|
552
|
+
spree/refund:
|
|
553
|
+
one: Refund
|
|
554
|
+
other: Refunds
|
|
555
|
+
spree/refund_reason:
|
|
556
|
+
one: Refund Reason
|
|
557
|
+
other: Refund Reasons
|
|
558
|
+
spree/reimbursement:
|
|
559
|
+
one: Reimbursement
|
|
560
|
+
other: Reimbursements
|
|
561
|
+
spree/reimbursement_type:
|
|
562
|
+
one: Reimbursement Type
|
|
563
|
+
other: Reimbursement Types
|
|
564
|
+
spree/return_authorization:
|
|
565
|
+
one: Return Authorization
|
|
566
|
+
other: Return Authorizations
|
|
567
|
+
spree/return_reason:
|
|
568
|
+
one: RMA Reason
|
|
569
|
+
other: RMA Reasons
|
|
570
|
+
spree/role:
|
|
571
|
+
one: Roles
|
|
572
|
+
other: Roles
|
|
573
|
+
spree/shipment:
|
|
574
|
+
one: Shipment
|
|
575
|
+
other: Shipments
|
|
576
|
+
spree/shipping_category:
|
|
577
|
+
one: Shipping Category
|
|
578
|
+
other: Shipping Categories
|
|
579
|
+
spree/shipping_method:
|
|
580
|
+
one: Shipping Method
|
|
581
|
+
other: Shipping Methods
|
|
582
|
+
spree/state:
|
|
583
|
+
one: State
|
|
584
|
+
other: States
|
|
585
|
+
spree/stock: stock
|
|
586
|
+
spree/stock_item:
|
|
587
|
+
one: Stock Item
|
|
588
|
+
other: Stock Items
|
|
589
|
+
spree/stock_movement:
|
|
590
|
+
one: Stock Movement
|
|
591
|
+
other: Stock Movements
|
|
592
|
+
spree/stock_location:
|
|
593
|
+
one: Stock Location
|
|
594
|
+
other: Stock Locations
|
|
595
|
+
spree/store:
|
|
596
|
+
one: Store
|
|
597
|
+
other: Stores
|
|
598
|
+
spree/store_credit:
|
|
599
|
+
one: Store Credit
|
|
600
|
+
other: Store Credits
|
|
601
|
+
spree/store_credit_category:
|
|
602
|
+
one: Category
|
|
603
|
+
other: Categories
|
|
604
|
+
spree/tax_category:
|
|
605
|
+
one: Tax Category
|
|
606
|
+
other: Tax Categories
|
|
607
|
+
spree/tax_rate:
|
|
608
|
+
one: Tax Rate
|
|
609
|
+
other: Tax Rates
|
|
610
|
+
spree/taxon:
|
|
611
|
+
one: Taxon
|
|
612
|
+
other: Taxons
|
|
613
|
+
spree/taxonomy:
|
|
614
|
+
one: Taxonomy
|
|
615
|
+
other: Taxonomies
|
|
616
|
+
spree/tracker:
|
|
617
|
+
one: Analytics Tracker
|
|
618
|
+
other: Analytics Trackers
|
|
619
|
+
spree/user:
|
|
620
|
+
one: User
|
|
621
|
+
other: Users
|
|
622
|
+
spree/variant:
|
|
623
|
+
one: Variant
|
|
624
|
+
other: Variants
|
|
625
|
+
spree/zone:
|
|
626
|
+
one: Zone
|
|
627
|
+
other: Zones
|
|
628
|
+
errors:
|
|
629
|
+
models:
|
|
630
|
+
spree/address:
|
|
631
|
+
attributes:
|
|
632
|
+
state:
|
|
633
|
+
does_not_match_country: does not match the country
|
|
634
|
+
spree/calculator/tiered_flat_rate:
|
|
635
|
+
attributes:
|
|
636
|
+
base:
|
|
637
|
+
keys_should_be_positive_number: "Tier keys should all be numbers larger than 0"
|
|
638
|
+
preferred_tiers:
|
|
639
|
+
should_be_hash: "should be a hash"
|
|
640
|
+
spree/calculator/tiered_percent:
|
|
641
|
+
attributes:
|
|
642
|
+
base:
|
|
643
|
+
keys_should_be_positive_number: "Tier keys should all be numbers larger than 0"
|
|
644
|
+
values_should_be_percent: "Tier values should all be percentages between 0% and 100%"
|
|
645
|
+
preferred_tiers:
|
|
646
|
+
should_be_hash: "should be a hash"
|
|
647
|
+
spree/classification:
|
|
648
|
+
attributes:
|
|
649
|
+
taxon_id:
|
|
650
|
+
already_linked: "is already linked to this product"
|
|
651
|
+
spree/credit_card:
|
|
652
|
+
attributes:
|
|
653
|
+
base:
|
|
654
|
+
card_expired: "Card has expired"
|
|
655
|
+
expiry_invalid: "Card expiration is invalid"
|
|
656
|
+
spree/inventory_unit:
|
|
657
|
+
attributes:
|
|
658
|
+
state:
|
|
659
|
+
cannot_destroy: "Cannot destroy a %{state} inventory unit"
|
|
660
|
+
base:
|
|
661
|
+
cannot_destroy_shipment_state: "Cannot destroy an inventory unit for a %{state} shipment"
|
|
662
|
+
spree/line_item:
|
|
663
|
+
attributes:
|
|
664
|
+
price:
|
|
665
|
+
not_a_number: "is not valid"
|
|
666
|
+
spree/price:
|
|
667
|
+
attributes:
|
|
668
|
+
currency:
|
|
669
|
+
invalid_code: "is not a valid currency code"
|
|
670
|
+
spree/promotion:
|
|
671
|
+
attributes:
|
|
672
|
+
apply_automatically:
|
|
673
|
+
disallowed_with_code: Disallowed for promotions with a code
|
|
674
|
+
disallowed_with_path: Disallowed for promotions with a path
|
|
675
|
+
spree/refund:
|
|
676
|
+
attributes:
|
|
677
|
+
amount:
|
|
678
|
+
greater_than_allowed: is greater than the allowed amount.
|
|
679
|
+
spree/reimbursement:
|
|
680
|
+
attributes:
|
|
681
|
+
base:
|
|
682
|
+
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.
|
|
683
|
+
spree/return_item:
|
|
684
|
+
attributes:
|
|
685
|
+
reimbursement:
|
|
686
|
+
cannot_be_associated_unless_accepted: cannot be associated to a return item that is not accepted.
|
|
687
|
+
inventory_unit:
|
|
688
|
+
other_completed_return_item_exists: "%{inventory_unit_id} has already been taken by return item %{return_item_id}"
|
|
689
|
+
spree/shipment:
|
|
690
|
+
attributes:
|
|
691
|
+
state:
|
|
692
|
+
cannot_destroy: "Cannot destroy a %{state} shipment"
|
|
693
|
+
base:
|
|
694
|
+
cannot_remove_items_shipment_state: "Cannot remove items from a %{state} shipment"
|
|
695
|
+
spree/store:
|
|
696
|
+
attributes:
|
|
697
|
+
base:
|
|
698
|
+
cannot_destroy_default_store: Cannot destroy the default Store.
|
|
699
|
+
spree/user_address:
|
|
700
|
+
attributes:
|
|
701
|
+
user_id:
|
|
702
|
+
default_address_exists: "already has a default address"
|
|
703
|
+
spree/wallet_payment_source:
|
|
704
|
+
attributes:
|
|
705
|
+
payment_source:
|
|
706
|
+
has_to_be_payment_source_class: "has to be a Spree::PaymentSource"
|
|
707
|
+
time:
|
|
708
|
+
formats:
|
|
709
|
+
solidus:
|
|
710
|
+
long: '%B %d, %Y %-l:%M %p'
|
|
711
|
+
short: "%b %-d '%y %-l:%M%P"
|
|
712
|
+
devise:
|
|
713
|
+
confirmations:
|
|
714
|
+
confirmed: Your account was successfully confirmed. You are now signed in.
|
|
715
|
+
send_instructions: You will receive an email with instructions about how to confirm your account in a few minutes.
|
|
716
|
+
failure:
|
|
717
|
+
inactive: Your account was not activated yet.
|
|
718
|
+
invalid: Invalid email or password.
|
|
719
|
+
invalid_token: Invalid authentication token.
|
|
720
|
+
locked: Your account is locked.
|
|
721
|
+
timeout: Your session expired, please sign in again to continue.
|
|
722
|
+
unauthenticated: You need to sign in or sign up before continuing.
|
|
723
|
+
unconfirmed: You have to confirm your account before continuing.
|
|
724
|
+
mailer:
|
|
725
|
+
confirmation_instructions:
|
|
726
|
+
subject: Confirmation instructions
|
|
727
|
+
reset_password_instructions:
|
|
728
|
+
subject: Reset password instructions
|
|
729
|
+
unlock_instructions:
|
|
730
|
+
subject: Unlock Instructions
|
|
731
|
+
oauth_callbacks:
|
|
732
|
+
failure: "Could not authorize you from %{kind} because %{reason}."
|
|
733
|
+
success: Successfully authorized from %{kind} account.
|
|
734
|
+
unlocks:
|
|
735
|
+
send_instructions: You will receive an email with instructions about how to unlock your account in a few minutes.
|
|
736
|
+
unlocked: Your account was successfully unlocked. You are now signed in.
|
|
737
|
+
user_passwords:
|
|
738
|
+
user:
|
|
739
|
+
cannot_be_blank: Your password cannot be blank.
|
|
740
|
+
send_instructions: You will receive an email with instructions about how to reset your password in a few minutes.
|
|
741
|
+
updated: Your password was changed successfully. You are now signed in.
|
|
742
|
+
user_registrations:
|
|
743
|
+
destroyed: Bye! Your account was successfully cancelled. We hope to see you again soon.
|
|
744
|
+
inactive_signed_up: You have signed up successfully. However, we could not sign you in because your account is %{reason}.
|
|
745
|
+
signed_up: Welcome! You have signed up successfully.
|
|
746
|
+
updated: You updated your account successfully.
|
|
747
|
+
user_sessions:
|
|
748
|
+
signed_in: Signed in successfully.
|
|
749
|
+
signed_out: Signed out successfully.
|
|
750
|
+
errors:
|
|
751
|
+
messages:
|
|
752
|
+
already_confirmed: was already confirmed
|
|
753
|
+
not_found: not found
|
|
754
|
+
not_locked: was not locked
|
|
755
|
+
not_saved:
|
|
756
|
+
one: ! '1 error prohibited this %{resource} from being saved:'
|
|
757
|
+
other: ! '%{count} errors prohibited this %{resource} from being saved:'
|
|
758
|
+
spree:
|
|
759
|
+
abbreviation: Abbreviation
|
|
760
|
+
accept: Accept
|
|
761
|
+
acceptance_status: Acceptance status
|
|
762
|
+
acceptance_errors: Acceptance errors
|
|
763
|
+
accepted: Accepted
|
|
764
|
+
account: Account
|
|
765
|
+
account_updated: Account updated
|
|
766
|
+
action: Action
|
|
767
|
+
actions:
|
|
768
|
+
add: Add
|
|
769
|
+
cancel: Cancel
|
|
770
|
+
continue: Continue
|
|
771
|
+
create: Create
|
|
772
|
+
delete: Delete
|
|
773
|
+
destroy: Destroy
|
|
774
|
+
edit: Edit
|
|
775
|
+
list: List
|
|
776
|
+
listing: Listing
|
|
777
|
+
new: New
|
|
778
|
+
receive: Receive
|
|
779
|
+
refund: Refund
|
|
780
|
+
remove: Remove
|
|
781
|
+
save: Save
|
|
782
|
+
ship: Ship
|
|
783
|
+
split: Split
|
|
784
|
+
update: Update
|
|
785
|
+
activate: Activate
|
|
786
|
+
active: Active
|
|
787
|
+
add: Add
|
|
788
|
+
added: Added
|
|
789
|
+
add_action_of_type: Add action of type
|
|
790
|
+
add_country: Add Country
|
|
791
|
+
add_coupon_code: Add Coupon Code
|
|
792
|
+
add_line_item: Add Item
|
|
793
|
+
add_new_header: Add New Header
|
|
794
|
+
add_new_style: Add New Style
|
|
795
|
+
add_one: Add One
|
|
796
|
+
add_option_value: Add Option Value
|
|
797
|
+
add_product: Add Product
|
|
798
|
+
add_product_properties: Add Product Properties
|
|
799
|
+
add_variant_properties: Add Variant Properties
|
|
800
|
+
add_rule_of_type: Add rule of type
|
|
801
|
+
add_state: Add State
|
|
802
|
+
add_stock: Add Stock
|
|
803
|
+
add_stock_management: Add Stock Management
|
|
804
|
+
add_taxon: Add taxon
|
|
805
|
+
add_to_cart: Add To Cart
|
|
806
|
+
add_to_stock_location: Select location to propagate stock
|
|
807
|
+
add_variant: Add Variant
|
|
808
|
+
adding_match: Adding match
|
|
809
|
+
additional_item: Additional Item
|
|
810
|
+
address1: Address
|
|
811
|
+
address2: Address (contd.)
|
|
812
|
+
adjustable: Adjustable
|
|
813
|
+
adjustment: Adjustment
|
|
814
|
+
adjustment_amount: Amount
|
|
815
|
+
adjustment_labels:
|
|
816
|
+
line_item: '%{promotion} (%{promotion_name})'
|
|
817
|
+
order: '%{promotion} (%{promotion_name})'
|
|
818
|
+
tax_rates:
|
|
819
|
+
sales_tax: '%{name}'
|
|
820
|
+
vat: '%{name} (Included in Price)'
|
|
821
|
+
sales_tax_with_rate: '%{name} %{amount}'
|
|
822
|
+
vat_with_rate: '%{name} %{amount} (Included in Price)'
|
|
823
|
+
adjustment_reasons: Adjustment Reasons
|
|
824
|
+
adjustment_successfully_closed: Adjustment has been successfully closed!
|
|
825
|
+
adjustment_successfully_opened: Adjustment has been successfully opened!
|
|
826
|
+
adjustment_total: Adjustment Total
|
|
827
|
+
adjustments: Adjustments
|
|
828
|
+
admin:
|
|
829
|
+
stores:
|
|
830
|
+
form:
|
|
831
|
+
no_cart_tax_country: "No taxes on carts without address"
|
|
832
|
+
images:
|
|
833
|
+
index:
|
|
834
|
+
choose_files: Choose files to upload
|
|
835
|
+
drag_and_drop: or drag and drop them here
|
|
836
|
+
image_process_failed: Server failed to process the image
|
|
837
|
+
upload_images: Upload Images
|
|
838
|
+
payments:
|
|
839
|
+
source_forms:
|
|
840
|
+
storecredit:
|
|
841
|
+
not_supported: "Creating store credit payments via the admin is not currently supported."
|
|
842
|
+
prices:
|
|
843
|
+
any_country: "Any Country"
|
|
844
|
+
index:
|
|
845
|
+
amount_greater_than: Amount greater than
|
|
846
|
+
amount_less_than: Amount less than
|
|
847
|
+
new_price: New Price
|
|
848
|
+
edit:
|
|
849
|
+
edit_price: Edit Price
|
|
850
|
+
new:
|
|
851
|
+
new_price: New Price
|
|
852
|
+
promotions:
|
|
853
|
+
form:
|
|
854
|
+
starts_at_placeholder: Immediately
|
|
855
|
+
expires_at_placeholder: Never
|
|
856
|
+
activation: Activation
|
|
857
|
+
general: General
|
|
858
|
+
activations_new:
|
|
859
|
+
auto: Apply to all orders
|
|
860
|
+
multiple_codes: Multiple promotion codes
|
|
861
|
+
single_code: Single promotion code
|
|
862
|
+
activations_edit:
|
|
863
|
+
auto: All orders will attempt to use this promotion
|
|
864
|
+
single_code_html: "This promotion uses the promotion code: <code>%{code}</code>"
|
|
865
|
+
multiple_codes_html: "This promotion uses %{count} promotion codes"
|
|
866
|
+
actions:
|
|
867
|
+
calculator_label: Calculated by
|
|
868
|
+
stock_locations:
|
|
869
|
+
form:
|
|
870
|
+
general: General
|
|
871
|
+
settings: Settings
|
|
872
|
+
address: Address
|
|
873
|
+
store_credits:
|
|
874
|
+
add: "Add store credit"
|
|
875
|
+
amount_authorized: Authorized
|
|
876
|
+
amount_credited: Credited
|
|
877
|
+
amount_used: Used
|
|
878
|
+
created_at: Issued On
|
|
879
|
+
back_to_edit: "Back to edit"
|
|
880
|
+
back_to_user_list: "Back to user list"
|
|
881
|
+
back_to_store_credit_list: "Store credit list"
|
|
882
|
+
change_amount: "Change amount"
|
|
883
|
+
created_by: "Created By"
|
|
884
|
+
credit_type: Type
|
|
885
|
+
memo: Memo
|
|
886
|
+
current_balance: "Current balance:"
|
|
887
|
+
edit: "Editing store credit"
|
|
888
|
+
edit_amount: "Editing store credit amount"
|
|
889
|
+
history: "Store credit history"
|
|
890
|
+
invalidate_store_credit: "Invalidating store credit"
|
|
891
|
+
invalidated: "Invalidated"
|
|
892
|
+
issued_on: "Issued On"
|
|
893
|
+
new: "New store credit"
|
|
894
|
+
no_store_credit_selected: "No store credit was selected"
|
|
895
|
+
payment_originator: "Payment - Order #%{order_number}"
|
|
896
|
+
reason_for_updating: "Reason for updating"
|
|
897
|
+
refund_originator: "Refund - Order #%{order_number}"
|
|
898
|
+
resource_name: "store credits"
|
|
899
|
+
user_originator: "User - %{email}"
|
|
900
|
+
unable_to_create: "Unable to create store credit"
|
|
901
|
+
unable_to_update: "Unable to update store credit"
|
|
902
|
+
unable_to_delete: "Unable to delete store credit"
|
|
903
|
+
unable_to_invalidate: "Unable to invalidate store credit"
|
|
904
|
+
select_reason: "Select a reason for this store credit"
|
|
905
|
+
select_amount_update_reason: "Select a reason for updating the amount"
|
|
906
|
+
total_unused: "Total unused"
|
|
907
|
+
type_html_header: "Credit Type"
|
|
908
|
+
view: "View store credit"
|
|
909
|
+
errors:
|
|
910
|
+
cannot_change_used_store_credit: "Store credit that has been claimed cannot be changed"
|
|
911
|
+
cannot_be_modified: "cannot be modified"
|
|
912
|
+
amount_used_cannot_be_greater: "cannot be greater than the credited amount"
|
|
913
|
+
amount_authorized_exceeds_total_credit: " exceeds the available credit"
|
|
914
|
+
amount_used_not_zero: "is greater than zero. Can not delete store credit"
|
|
915
|
+
update_reason_required: "A reason for the change must be selected"
|
|
916
|
+
tab:
|
|
917
|
+
checkout: Refunds and Returns
|
|
918
|
+
configuration: Configuration
|
|
919
|
+
display_order: Display Order
|
|
920
|
+
option_types: Option Types
|
|
921
|
+
orders: Orders
|
|
922
|
+
overview: Overview
|
|
923
|
+
payments: Payments
|
|
924
|
+
products: Products
|
|
925
|
+
promotions: Promotions
|
|
926
|
+
promotion_categories: Promotion Categories
|
|
927
|
+
properties: Property Types
|
|
928
|
+
rma: RMA
|
|
929
|
+
settings: Settings
|
|
930
|
+
shipping: Shipping
|
|
931
|
+
stock: Stock
|
|
932
|
+
stock_items: Store Stock
|
|
933
|
+
stores: Stores
|
|
934
|
+
taxes: Taxes
|
|
935
|
+
taxonomies: Taxonomies
|
|
936
|
+
taxons: Taxons
|
|
937
|
+
users: Users
|
|
938
|
+
zones: Zones
|
|
939
|
+
taxons:
|
|
940
|
+
display_order: Display Order
|
|
941
|
+
user:
|
|
942
|
+
account: Account
|
|
943
|
+
addresses: Addresses
|
|
944
|
+
items: Items
|
|
945
|
+
items_purchased: Items Purchased
|
|
946
|
+
order_history: Order History
|
|
947
|
+
order_num: "Order #"
|
|
948
|
+
orders: Orders
|
|
949
|
+
store_credit: Store Credit
|
|
950
|
+
user_information: User Information
|
|
951
|
+
users:
|
|
952
|
+
user_page_actions:
|
|
953
|
+
create_order: Create order for this user
|
|
954
|
+
edit:
|
|
955
|
+
api_access: "API Access"
|
|
956
|
+
clear_key: "Clear key"
|
|
957
|
+
confirm_clear_key: "Are you sure you want to clear this user's API key? It will invalidate the existing key."
|
|
958
|
+
confirm_regenerate_key: "Are you sure you want to regenerate this user's API key? It will invalidate the existing key."
|
|
959
|
+
generate_key: "Generate API key"
|
|
960
|
+
key: "Key"
|
|
961
|
+
no_key: "No key"
|
|
962
|
+
regenerate_key: "Regenerate key"
|
|
963
|
+
variants:
|
|
964
|
+
table_filter:
|
|
965
|
+
show_deleted: Show deleted variants
|
|
966
|
+
new:
|
|
967
|
+
new_variant: New variant
|
|
968
|
+
edit:
|
|
969
|
+
edit_variant: Edit Variant
|
|
970
|
+
form:
|
|
971
|
+
dimensions: Dimensions
|
|
972
|
+
use_product_tax_category: Use Product Tax Category
|
|
973
|
+
pricing: Pricing
|
|
974
|
+
pricing_hint: These values are populated from the product details page and can be overridden below
|
|
975
|
+
administration: Administration
|
|
976
|
+
agree_to_privacy_policy: Agree to Privacy Policy
|
|
977
|
+
agree_to_terms_of_service: Agree to Terms of Service
|
|
978
|
+
all: All
|
|
979
|
+
all_adjustments_finalized: All adjustments successfully finalized!
|
|
980
|
+
all_adjustments_unfinalized: All adjustments successfully unfinalized!
|
|
981
|
+
all_departments: All departments
|
|
982
|
+
all_items_have_been_returned: All items have been returned
|
|
983
|
+
already_signed_up_for_analytics: You have already signed up for Spree Analytics
|
|
984
|
+
alt_text: Alternative Text
|
|
985
|
+
alternative_phone: Alternative Phone
|
|
986
|
+
amount: Amount
|
|
987
|
+
analytics_desc_header_1: Spree Analytics
|
|
988
|
+
analytics_desc_header_2: Live analytics integrated into your Spree dashboard
|
|
989
|
+
analytics_desc_list_1: Get live sales information as it happens
|
|
990
|
+
analytics_desc_list_2: Requires only a free Spree account to activate
|
|
991
|
+
analytics_desc_list_3: Absolutely no code to install
|
|
992
|
+
analytics_desc_list_4: It's completely free!
|
|
993
|
+
analytics_trackers: Analytics Trackers
|
|
994
|
+
and: and
|
|
995
|
+
apply_code: Apply Code
|
|
996
|
+
approve: Approve
|
|
997
|
+
approver: Approver
|
|
998
|
+
approved_at: Approved at
|
|
999
|
+
are_you_sure: Are you sure?
|
|
1000
|
+
are_you_sure_delete: Are you sure you want to delete this record?
|
|
1001
|
+
authorization_failure: Authorization Failure
|
|
1002
|
+
authorized: Authorized
|
|
1003
|
+
auto_capture: Auto Capture
|
|
1004
|
+
auto_receive: Auto Receive
|
|
1005
|
+
available_on: Available On
|
|
1006
|
+
average_order_value: Average Order Value
|
|
1007
|
+
avs_response: AVS Response
|
|
1008
|
+
back: Back
|
|
1009
|
+
back_end: Backend
|
|
1010
|
+
backordered: Backordered
|
|
1011
|
+
back_to_adjustments_list: Back To Adjustments List
|
|
1012
|
+
back_to_adjustment_reason_list: Back To Adjustment Reason List
|
|
1013
|
+
back_to_countries_list: Back To Countries List
|
|
1014
|
+
back_to_customer_return: Back To Customer Return
|
|
1015
|
+
back_to_customer_return_list: Back To Customer Return List
|
|
1016
|
+
back_to_images_list: Back To Images List
|
|
1017
|
+
back_to_option_types_list: Back To Option Types List
|
|
1018
|
+
back_to_orders_list: Back To Orders List
|
|
1019
|
+
back_to_payment: Back To Payment
|
|
1020
|
+
back_to_payment_methods_list: Back To Payment Methods List
|
|
1021
|
+
back_to_payments_list: Back To Payments List
|
|
1022
|
+
back_to_products_list: Back To Products List
|
|
1023
|
+
back_to_promotions_list: Back To Promotions List
|
|
1024
|
+
back_to_promotion_categories_list: Back To Promotions Categories List
|
|
1025
|
+
back_to_properties_list: Back To Property Types List
|
|
1026
|
+
back_to_reports_list: Back To Reports List
|
|
1027
|
+
back_to_refund_reason_list: Back To Refund Reason List
|
|
1028
|
+
back_to_reimbursement_type_list: Back To Reimbursement Type List
|
|
1029
|
+
back_to_return_authorizations_list: Back To RMA List
|
|
1030
|
+
back_to_rma_reason_list: Back To RMA Reason List
|
|
1031
|
+
back_to_shipping_categories: Back To Shipping Categories
|
|
1032
|
+
back_to_shipping_categories_list: Back To Shipping Categories List
|
|
1033
|
+
back_to_shipping_methods_list: Back To Shipping Methods List
|
|
1034
|
+
back_to_states_list: Back To States List
|
|
1035
|
+
back_to_stock_locations_list: Back to Stock Locations List
|
|
1036
|
+
back_to_stock_movements_list: Back to Stock Movements List
|
|
1037
|
+
back_to_store: View store
|
|
1038
|
+
back_to_tax_categories_list: Back To Tax Categories List
|
|
1039
|
+
back_to_tax_rates_list: Back To Tax Rates List
|
|
1040
|
+
back_to_taxonomies_list: Back To Taxonomies List
|
|
1041
|
+
back_to_trackers_list: Back To Trackers List
|
|
1042
|
+
back_to_users_list: Back To Users List
|
|
1043
|
+
back_to_zones_list: Back To Zones List
|
|
1044
|
+
backorderable: Backorderable
|
|
1045
|
+
backorderable_default: Backorderable default
|
|
1046
|
+
backorderable_header: Back Orderable
|
|
1047
|
+
backorders_allowed: backorders allowed
|
|
1048
|
+
balance_due: Balance Due
|
|
1049
|
+
base_amount: Base Amount
|
|
1050
|
+
base_percent: Base Percent
|
|
1051
|
+
bill_address: Bill Address
|
|
1052
|
+
billing: Billing
|
|
1053
|
+
billing_address: Billing Address
|
|
1054
|
+
both: Both
|
|
1055
|
+
calculated_reimbursements: Calculated Reimbursements
|
|
1056
|
+
calculator: Calculator
|
|
1057
|
+
calculator_settings_warning: If you are changing the calculator type or preference source, you must save first before you can edit the calculator settings
|
|
1058
|
+
cancel: Cancel
|
|
1059
|
+
cancel_inventory: 'Cancel Items'
|
|
1060
|
+
canceled: canceled
|
|
1061
|
+
canceled_at: Canceled at
|
|
1062
|
+
canceler: Canceler
|
|
1063
|
+
cancellation: Cancellation
|
|
1064
|
+
cannot_create_payment_without_payment_methods_html: You cannot create a payment for an order without any payment methods defined. %{link}
|
|
1065
|
+
cannot_create_payment_link: Please define some payment methods first.
|
|
1066
|
+
cannot_create_returns: Cannot create returns as this order has no shipped units.
|
|
1067
|
+
cannot_rebuild_shipments_order_completed: Cannot rebuild shipments for a completed order.
|
|
1068
|
+
cannot_rebuild_shipments_shipments_not_pending: Cannot rebuild shipments for an order with non-pending shipments.
|
|
1069
|
+
cannot_perform_operation: Cannot perform requested operation
|
|
1070
|
+
cannot_set_shipping_method_without_address: Cannot set shipping method until customer details are provided.
|
|
1071
|
+
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.
|
|
1072
|
+
capture: Capture
|
|
1073
|
+
capture_events: Capture events
|
|
1074
|
+
card_code: Card Code
|
|
1075
|
+
card_number: Card Number
|
|
1076
|
+
card_type: Brand
|
|
1077
|
+
card_type_is: Card type is
|
|
1078
|
+
cart: Cart
|
|
1079
|
+
cart_subtotal:
|
|
1080
|
+
one: 'Subtotal (1 item)'
|
|
1081
|
+
other: 'Subtotal (%{count} items)'
|
|
1082
|
+
carton_external_number: External Number
|
|
1083
|
+
carton_orders: 'Other orders with Carton'
|
|
1084
|
+
categories: Categories
|
|
1085
|
+
category: Category
|
|
1086
|
+
charged: Charged
|
|
1087
|
+
check: Check
|
|
1088
|
+
check_stock_on_transfer: Check stock on transfer
|
|
1089
|
+
checkout: Checkout
|
|
1090
|
+
choose_a_customer: Choose a customer
|
|
1091
|
+
choose_a_taxon_to_sort_products_for: "Choose a taxon to sort products for"
|
|
1092
|
+
choose_currency: Choose Currency
|
|
1093
|
+
choose_dashboard_locale: Choose Dashboard Locale
|
|
1094
|
+
choose_location: Choose location
|
|
1095
|
+
choose_promotion_action: Choose action
|
|
1096
|
+
choose_promotion_rule: Choose rule
|
|
1097
|
+
choose_reason: Choose reason
|
|
1098
|
+
city: City
|
|
1099
|
+
clear_cache: Clear Cache
|
|
1100
|
+
clear_cache_ok: Cache was flushed
|
|
1101
|
+
clear_cache_warning: Clearing cache will temporarily reduce the performance of your store.
|
|
1102
|
+
clone: Clone
|
|
1103
|
+
close: Close
|
|
1104
|
+
closed: Closed
|
|
1105
|
+
code: Code
|
|
1106
|
+
company: Company
|
|
1107
|
+
complete: complete
|
|
1108
|
+
complete_order: Complete Order
|
|
1109
|
+
configuration: Configuration
|
|
1110
|
+
configurations: Configurations
|
|
1111
|
+
confirm: Confirm
|
|
1112
|
+
confirm_delete: Confirm Deletion
|
|
1113
|
+
confirm_order: Confirm Order
|
|
1114
|
+
confirm_password: Password Confirmation
|
|
1115
|
+
continue: Continue
|
|
1116
|
+
continue_shopping: Continue shopping
|
|
1117
|
+
cost_currency: Cost Currency
|
|
1118
|
+
cost_price: Cost Price
|
|
1119
|
+
could_not_connect_to_jirafe: Could not connect to Jirafe to sync data. This will be automatically retried later.
|
|
1120
|
+
could_not_create_customer_return: Could not create customer return
|
|
1121
|
+
could_not_create_stock_movement: There was a problem saving this stock movement. Please try again.
|
|
1122
|
+
count_on_hand: Count On Hand
|
|
1123
|
+
countries: Countries
|
|
1124
|
+
country: Country
|
|
1125
|
+
country_based: Country Based
|
|
1126
|
+
country_name: Name
|
|
1127
|
+
country_names:
|
|
1128
|
+
CA: Canada
|
|
1129
|
+
FRA: France
|
|
1130
|
+
ITA: Italy
|
|
1131
|
+
US: United States of America
|
|
1132
|
+
coupon: Coupon
|
|
1133
|
+
coupon_code: Coupon code
|
|
1134
|
+
coupon_code_already_applied: The coupon code has already been applied to this order
|
|
1135
|
+
coupon_code_applied: The coupon code was successfully applied to your order.
|
|
1136
|
+
coupon_code_better_exists: The previously applied coupon code results in a better deal
|
|
1137
|
+
coupon_code_expired: The coupon code is expired
|
|
1138
|
+
coupon_code_max_usage: Coupon code usage limit exceeded
|
|
1139
|
+
coupon_code_not_eligible: This coupon code is not eligible for this order
|
|
1140
|
+
coupon_code_not_found: The coupon code you entered doesn't exist. Please try again.
|
|
1141
|
+
coupon_code_unknown_error: This coupon code could not be applied to the cart at this time.
|
|
1142
|
+
customer: Customer
|
|
1143
|
+
customer_return: Customer Return
|
|
1144
|
+
customer_returns: Customer Returns
|
|
1145
|
+
create: Create
|
|
1146
|
+
create_a_new_account: Create a new account
|
|
1147
|
+
create_reimbursement: Create reimbursement
|
|
1148
|
+
create_one: Create One.
|
|
1149
|
+
created_at: Created At
|
|
1150
|
+
created_by: Created by
|
|
1151
|
+
created_successfully: Created successfully
|
|
1152
|
+
credit: Credit
|
|
1153
|
+
credits: Credits
|
|
1154
|
+
credit_allowed: Credit Allowed
|
|
1155
|
+
credit_card: Credit Card
|
|
1156
|
+
credit_cards: Credit Cards
|
|
1157
|
+
credit_owed: Credit Owed
|
|
1158
|
+
currency: Currency
|
|
1159
|
+
currency_settings: Currency Settings
|
|
1160
|
+
current: Current
|
|
1161
|
+
current_promotion_usage: ! 'Current Usage: %{count}'
|
|
1162
|
+
customer: Customer
|
|
1163
|
+
customer_details: Customer Details
|
|
1164
|
+
customer_details_updated: Customer Details Updated
|
|
1165
|
+
customer_search: Customer Search
|
|
1166
|
+
cut: Cut
|
|
1167
|
+
cvv_response: CVV Response
|
|
1168
|
+
dash:
|
|
1169
|
+
jirafe:
|
|
1170
|
+
app_id: App ID
|
|
1171
|
+
app_token: App Token
|
|
1172
|
+
currently_unavailable: Jirafe is currently unavailable. Spree will automatically connect to Jirafe once it is available.
|
|
1173
|
+
explanation: The fields below may already be populated if you chose to register with Jirafe from the admin dashboard.
|
|
1174
|
+
header: Jirafe Analytics Settings
|
|
1175
|
+
site_id: Site ID
|
|
1176
|
+
token: Token
|
|
1177
|
+
jirafe_settings_updated: Jirafe Settings have been updated.
|
|
1178
|
+
date: Date
|
|
1179
|
+
date_completed: Date Completed
|
|
1180
|
+
date_picker:
|
|
1181
|
+
first_day: 0
|
|
1182
|
+
format: ! '%Y/%m/%d'
|
|
1183
|
+
js_format: yy/mm/dd
|
|
1184
|
+
date_range: Date Range
|
|
1185
|
+
default: Default
|
|
1186
|
+
default_refund_amount: Default Refund Amount
|
|
1187
|
+
delete: Delete
|
|
1188
|
+
deleted_variants_present: Some line items in this order have products that are no longer available.
|
|
1189
|
+
deleted_successfully: Deleted successfully
|
|
1190
|
+
delivery: Delivery
|
|
1191
|
+
depth: Depth
|
|
1192
|
+
description: Description
|
|
1193
|
+
destination: Destination
|
|
1194
|
+
destination_location: Destination location
|
|
1195
|
+
destroy: Destroy
|
|
1196
|
+
details: Details
|
|
1197
|
+
discount_amount: Discount Amount
|
|
1198
|
+
dismiss_banner: No. Thanks! I'm not interested, do not display this message again
|
|
1199
|
+
display: Display
|
|
1200
|
+
download_promotion_code_list: Download Code List
|
|
1201
|
+
edit: Edit
|
|
1202
|
+
editing_country: Editing Country
|
|
1203
|
+
editing_adjustment_reason: Editing Adjustment Reason
|
|
1204
|
+
editing_option_type: Editing Option Type
|
|
1205
|
+
editing_payment_method: Editing Payment Method
|
|
1206
|
+
editing_product: Editing Product
|
|
1207
|
+
editing_promotion: Editing Promotion
|
|
1208
|
+
editing_promotion_category: Editing Promotion Category
|
|
1209
|
+
editing_property: Editing Property Type
|
|
1210
|
+
edit_refund_reason: Edit Refund Reason
|
|
1211
|
+
editing_refund: Editing Refund
|
|
1212
|
+
editing_refund_reason: Editing Refund Reason
|
|
1213
|
+
editing_reimbursement: Editing Reimbursement
|
|
1214
|
+
editing_reimbursement_type: Editing Reimbursement Type
|
|
1215
|
+
editing_rma_reason: Editing RMA Reason
|
|
1216
|
+
editing_shipping_category: Editing Shipping Category
|
|
1217
|
+
editing_shipping_method: Editing Shipping Method
|
|
1218
|
+
editing_state: Editing State
|
|
1219
|
+
editing_stock_location: Editing Stock Location
|
|
1220
|
+
editing_stock_movement: Editing Stock Movement
|
|
1221
|
+
editing_tax_category: Editing Tax Category
|
|
1222
|
+
editing_tax_rate: Editing Tax Rate
|
|
1223
|
+
editing_tracker: Editing Tracker
|
|
1224
|
+
editing_user: Editing User
|
|
1225
|
+
editing_zone: Editing Zone
|
|
1226
|
+
eligibility_errors:
|
|
1227
|
+
messages:
|
|
1228
|
+
has_excluded_product: Your cart contains a product that prevents this coupon code from being applied.
|
|
1229
|
+
has_excluded_taxon: Your cart contains a product from an excluded category that prevents this coupon code from being applied.
|
|
1230
|
+
item_total_less_than: This coupon code can't be applied to orders less than %{amount}.
|
|
1231
|
+
item_total_less_than_or_equal: This coupon code can't be applied to orders less than or equal to %{amount}.
|
|
1232
|
+
limit_once_per_user: This coupon code can only be used once per user.
|
|
1233
|
+
missing_product: This coupon code can't be applied because you don't have all of the necessary products in your cart.
|
|
1234
|
+
missing_taxon: You need to add a product from all applicable categories before applying this coupon code.
|
|
1235
|
+
no_applicable_products: You need to add an applicable product before applying this coupon code.
|
|
1236
|
+
no_matching_taxons: You need to add a product from an applicable category before applying this coupon code.
|
|
1237
|
+
no_user_or_email_specified: You need to login or provide your email before applying this coupon code.
|
|
1238
|
+
no_user_specified: You need to login before applying this coupon code.
|
|
1239
|
+
not_first_order: This coupon code can only be applied to your first order.
|
|
1240
|
+
email: Email
|
|
1241
|
+
empty: Empty
|
|
1242
|
+
empty_cart: Empty Cart
|
|
1243
|
+
enable_mail_delivery: Enable Mail Delivery
|
|
1244
|
+
end: End
|
|
1245
|
+
ending_in: Ending in
|
|
1246
|
+
error: error
|
|
1247
|
+
errors:
|
|
1248
|
+
messages:
|
|
1249
|
+
cannot_delete_finalized_stock_location: Stock Location cannot be destroyed if you have open stock transfers.
|
|
1250
|
+
could_not_create_taxon: Could not create taxon
|
|
1251
|
+
no_payment_methods_available: No payment methods are configured for this environment
|
|
1252
|
+
no_shipping_methods_available: No shipping methods available for selected location, please change your address and try again.
|
|
1253
|
+
errors_prohibited_this_record_from_being_saved:
|
|
1254
|
+
one: 1 error prohibited this record from being saved
|
|
1255
|
+
other: ! '%{count} errors prohibited this record from being saved'
|
|
1256
|
+
event: Event
|
|
1257
|
+
events:
|
|
1258
|
+
spree:
|
|
1259
|
+
cart:
|
|
1260
|
+
add: Add to cart
|
|
1261
|
+
checkout:
|
|
1262
|
+
coupon_code_added: Coupon code added
|
|
1263
|
+
content:
|
|
1264
|
+
visited: Visit static content page
|
|
1265
|
+
order:
|
|
1266
|
+
contents_changed: Order contents changed
|
|
1267
|
+
page_view: Static page viewed
|
|
1268
|
+
user:
|
|
1269
|
+
signup: User signup
|
|
1270
|
+
exceptions:
|
|
1271
|
+
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.
|
|
1272
|
+
exchange_for: Exchange for
|
|
1273
|
+
excl: excl.
|
|
1274
|
+
expected: Expected
|
|
1275
|
+
expected_items: Expected Items
|
|
1276
|
+
expiration: Expiration
|
|
1277
|
+
extension: Extension
|
|
1278
|
+
existing_shipments: Existing shipments
|
|
1279
|
+
hints:
|
|
1280
|
+
spree/price:
|
|
1281
|
+
country: "This determines in what country the price is valid.<br/>Default: Any Country"
|
|
1282
|
+
master_variant: "Changing master variant prices will not change variant prices below, but will be used to populate all new variants"
|
|
1283
|
+
options: "These options are used to create variants in the variants table. They can be changed in the variants tab"
|
|
1284
|
+
spree/product:
|
|
1285
|
+
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."
|
|
1286
|
+
promotionable: "This determines whether or not promotions can apply to this product.<br/>Default: Checked"
|
|
1287
|
+
shipping_category: "This determines what kind of shipping this product requires.<br/> Default: Default"
|
|
1288
|
+
tax_category: "This determines what kind of taxation is applied to this product.<br/> Default: None"
|
|
1289
|
+
spree/promotion:
|
|
1290
|
+
starts_at: "This determines when the promotion can be applied to orders. <br/> If no value is specified, the promotion will be immediately available."
|
|
1291
|
+
expires_at: "This determines when the promotion expires. <br/> If no value is specified, the promotion will never expire."
|
|
1292
|
+
spree/stock_location:
|
|
1293
|
+
active: "This determines whether stock from this location can be used when building packages.<br/> Default: Checked"
|
|
1294
|
+
backorderable_default: "When checked, stock items in this location will default to allowing backorders.<br/> Default: Unchecked"
|
|
1295
|
+
propagate_all_variants: "When checked, this will create a stock item for in this stock location.<br/> Default: Checked"
|
|
1296
|
+
restock_inventory: "When checked, returned inventory can be added back to this location's stock levels.<br/> Default: checked"
|
|
1297
|
+
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"
|
|
1298
|
+
check_stock_on_transfer: "When checked, inventory levels will be checked when performing stock transfers.<br/> Default: Checked"
|
|
1299
|
+
spree/store:
|
|
1300
|
+
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."
|
|
1301
|
+
available_locales: "This determines which locales are available for your customers to choose from in the storefront."
|
|
1302
|
+
spree/variant:
|
|
1303
|
+
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"
|
|
1304
|
+
deleted: "Deleted Variant"
|
|
1305
|
+
deleted_explanation: "This variant was deleted on %{date}."
|
|
1306
|
+
deleted_explanation_with_replacement: "This variant was deleted on %{date}. It has since been replaced by another with the same SKU."
|
|
1307
|
+
spree/tax_rate:
|
|
1308
|
+
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"
|
|
1309
|
+
failed_payment_attempts: Failed Payment Attempts
|
|
1310
|
+
failure: Failure
|
|
1311
|
+
filename: Filename
|
|
1312
|
+
fill_in_customer_info: Please fill in customer info
|
|
1313
|
+
filter_results: Filter Results
|
|
1314
|
+
finalize: Finalize
|
|
1315
|
+
finalize_all_adjustments: Finalize All Adjustments
|
|
1316
|
+
find_a_taxon: Find a Taxon
|
|
1317
|
+
finalized: Finalized
|
|
1318
|
+
finalized_at: Finalized at
|
|
1319
|
+
finalized_by: Finalized by
|
|
1320
|
+
first_item: First Item
|
|
1321
|
+
first_name: First Name
|
|
1322
|
+
first_name_begins_with: First Name Begins With
|
|
1323
|
+
flat_percent: Flat Percent
|
|
1324
|
+
flat_rate_per_order: Flat Rate
|
|
1325
|
+
flexible_rate: Flexible Rate
|
|
1326
|
+
forgot_password: Forgot Password?
|
|
1327
|
+
free_shipping: Free Shipping
|
|
1328
|
+
free_shipping_amount: "-"
|
|
1329
|
+
from: From
|
|
1330
|
+
front_end: Front End
|
|
1331
|
+
gateway: Gateway
|
|
1332
|
+
gateway_config_unavailable: Gateway unavailable for environment
|
|
1333
|
+
gateway_error: Gateway Error
|
|
1334
|
+
general: General
|
|
1335
|
+
general_settings: Store
|
|
1336
|
+
google_analytics: Google Analytics
|
|
1337
|
+
google_analytics_id: Analytics ID
|
|
1338
|
+
group_size: Group size
|
|
1339
|
+
guest_checkout: Guest Checkout
|
|
1340
|
+
guest_user_account: Checkout as a Guest
|
|
1341
|
+
has_no_shipped_units: has no shipped units
|
|
1342
|
+
height: Height
|
|
1343
|
+
helpers:
|
|
1344
|
+
products:
|
|
1345
|
+
price_diff_add_html: "(Add: %{amount_html})"
|
|
1346
|
+
price_diff_subtract_html: "(Subtract: %{amount_html})"
|
|
1347
|
+
hidden: hidden
|
|
1348
|
+
hide_out_of_stock: Hide out of stock
|
|
1349
|
+
home: Home
|
|
1350
|
+
i18n:
|
|
1351
|
+
available_locales: Available Locales
|
|
1352
|
+
fields: Fields
|
|
1353
|
+
language: Language
|
|
1354
|
+
localization_settings: Localization Settings
|
|
1355
|
+
only_incomplete: Only incomplete
|
|
1356
|
+
only_complete: Only complete
|
|
1357
|
+
select_locale: Select locale
|
|
1358
|
+
show_only: Show only
|
|
1359
|
+
supported_locales: Supported Locales
|
|
1360
|
+
this_file_language: English (US)
|
|
1361
|
+
translations: Translations
|
|
1362
|
+
icon: Icon
|
|
1363
|
+
id: ID
|
|
1364
|
+
identifier: Identifier
|
|
1365
|
+
image: Image
|
|
1366
|
+
images: Images
|
|
1367
|
+
implement_eligible_for_return: "Must implement #eligible_for_return? for your EligibilityValidator."
|
|
1368
|
+
implement_requires_manual_intervention: "Must implement #requires_manual_intervention? for your EligibilityValidator."
|
|
1369
|
+
inactive: Inactive
|
|
1370
|
+
incl: incl.
|
|
1371
|
+
included_in_price: Included in Price
|
|
1372
|
+
included_price_validation: cannot be selected unless you have set a Default Tax Zone
|
|
1373
|
+
incomplete: Incomplete
|
|
1374
|
+
info_product_has_multiple_skus: "This product has %{count} variants:"
|
|
1375
|
+
info_number_of_skus_not_shown:
|
|
1376
|
+
one: "and one other"
|
|
1377
|
+
other: "and %{count} others"
|
|
1378
|
+
instructions_to_reset_password: Please enter your email on the form below
|
|
1379
|
+
insufficient_stock: Insufficient stock available, only %{on_hand} remaining
|
|
1380
|
+
insufficient_stock_for_order: Insufficient stock for order
|
|
1381
|
+
insufficient_stock_lines_present: Some line items in this order have insufficient quantity.
|
|
1382
|
+
intercept_email_address: Intercept Email Address
|
|
1383
|
+
intercept_email_instructions: Override email recipient and replace with this address.
|
|
1384
|
+
internal_name: Internal Name
|
|
1385
|
+
invalid_exchange_variant: Invalid exchange variant.
|
|
1386
|
+
invalid_payment_method_type: Invalid payment method type.
|
|
1387
|
+
invalid_promotion_action: Invalid promotion action.
|
|
1388
|
+
invalid_promotion_rule: Invalid promotion rule.
|
|
1389
|
+
invalidate: Invalidate
|
|
1390
|
+
inventory: Inventory
|
|
1391
|
+
inventory_adjustment: Inventory Adjustment
|
|
1392
|
+
inventory_canceled: Inventory canceled
|
|
1393
|
+
inventory_error_flash_for_insufficient_quantity: "%{names} became unavailable."
|
|
1394
|
+
inventory_not_available: Inventory not available for %{item}.
|
|
1395
|
+
inventory_state: Inventory State
|
|
1396
|
+
inventory_states:
|
|
1397
|
+
backordered: Backordered
|
|
1398
|
+
canceled: Canceled
|
|
1399
|
+
on_hand: On hand
|
|
1400
|
+
returned: Returned
|
|
1401
|
+
shipped: Shipped
|
|
1402
|
+
is_not_available_to_shipment_address: is not available to shipment address
|
|
1403
|
+
iso_name: Iso Name
|
|
1404
|
+
item: Item
|
|
1405
|
+
item_description: Item Description
|
|
1406
|
+
item_total: Item Total
|
|
1407
|
+
item_total_rule:
|
|
1408
|
+
operators:
|
|
1409
|
+
gt: greater than
|
|
1410
|
+
gte: greater than or equal to
|
|
1411
|
+
items_cannot_be_shipped: We are unable to calculate shipping rates for the selected items.
|
|
1412
|
+
items_in_rmas: Items in RMA's (Return Merchandise Authorizations)
|
|
1413
|
+
items_to_be_reimbursed: Items to be reimbursed
|
|
1414
|
+
items_reimbursed: Items reimbursed
|
|
1415
|
+
jirafe: Jirafe
|
|
1416
|
+
landing_page_rule:
|
|
1417
|
+
path: Path
|
|
1418
|
+
last_name: Last Name
|
|
1419
|
+
last_name_begins_with: Last Name Begins With
|
|
1420
|
+
learn_more: Learn More
|
|
1421
|
+
lifetime_stats: Lifetime Stats
|
|
1422
|
+
line_item_adjustments: "Line item adjustments"
|
|
1423
|
+
list: List
|
|
1424
|
+
listing_countries: Countries
|
|
1425
|
+
listing_orders: Orders
|
|
1426
|
+
listing_products: Products
|
|
1427
|
+
listing_reports: Reports
|
|
1428
|
+
listing_tax_categories: Tax Categories
|
|
1429
|
+
listing_users: Users
|
|
1430
|
+
loading: Loading
|
|
1431
|
+
locale_changed: Locale Changed
|
|
1432
|
+
location: Location
|
|
1433
|
+
lock: Lock
|
|
1434
|
+
log_entries: "Log Entries"
|
|
1435
|
+
logs: "Logs"
|
|
1436
|
+
logged_in_as: Logged in as
|
|
1437
|
+
logged_in_succesfully: Logged in successfully
|
|
1438
|
+
logged_out: You have been logged out.
|
|
1439
|
+
login: Login
|
|
1440
|
+
login_as_existing: Login as Existing Customer
|
|
1441
|
+
login_failed: Login authentication failed.
|
|
1442
|
+
login_name: Login
|
|
1443
|
+
logout: Logout
|
|
1444
|
+
look_for_similar_items: Look for similar items
|
|
1445
|
+
make_refund: Make refund
|
|
1446
|
+
make_sure_the_above_reimbursement_amount_is_correct: Make sure the above reimbursement amount is correct
|
|
1447
|
+
manage_promotion_categories: Manage Promotion Categories
|
|
1448
|
+
manage_stock: Store Stock
|
|
1449
|
+
manual_intervention_required: Manual intervention required
|
|
1450
|
+
manage_variants: Manage Variants
|
|
1451
|
+
master_price: Master Price
|
|
1452
|
+
master_variant: Master Variant
|
|
1453
|
+
match_choices:
|
|
1454
|
+
all: All
|
|
1455
|
+
none: None
|
|
1456
|
+
max_items: Max Items
|
|
1457
|
+
member_since: Member Since
|
|
1458
|
+
memo: Memo
|
|
1459
|
+
meta_description: Meta Description
|
|
1460
|
+
meta_keywords: Meta Keywords
|
|
1461
|
+
meta_title: Meta Title
|
|
1462
|
+
metadata: Metadata
|
|
1463
|
+
minimal_amount: Minimal Amount
|
|
1464
|
+
modify_stock_count: Modify (+/-)
|
|
1465
|
+
month: Month
|
|
1466
|
+
more: More
|
|
1467
|
+
move_stock_between_locations: Move Stock Between Locations
|
|
1468
|
+
my_account: My Account
|
|
1469
|
+
my_orders: My Orders
|
|
1470
|
+
name: Name
|
|
1471
|
+
name_on_card: Name on card
|
|
1472
|
+
name_or_sku: Name or SKU (enter at least first 4 characters of product name)
|
|
1473
|
+
negative_movement_absent_item: Cannot create negative movement for absent stock item.
|
|
1474
|
+
new: New
|
|
1475
|
+
new_adjustment: New Adjustment
|
|
1476
|
+
new_adjustment_reason: New Adjustment Reason
|
|
1477
|
+
new_customer: New Customer
|
|
1478
|
+
new_customer_return: New Customer Return
|
|
1479
|
+
new_country: New Country
|
|
1480
|
+
new_image: New Image
|
|
1481
|
+
new_option_type: New Option Type
|
|
1482
|
+
new_order: New Order
|
|
1483
|
+
new_order_completed: New Order Completed
|
|
1484
|
+
new_payment: New Payment
|
|
1485
|
+
new_payment_method: New Payment Method
|
|
1486
|
+
new_product: New Product
|
|
1487
|
+
new_promotion: New Promotion
|
|
1488
|
+
new_promotion_category: New Promotion Category
|
|
1489
|
+
new_promotion_code_batch: New Promotion Code Batch
|
|
1490
|
+
new_property: New Property Type
|
|
1491
|
+
new_refund: New Refund
|
|
1492
|
+
new_refund_reason: New Refund Reason
|
|
1493
|
+
new_rma_reason: New RMA Reason
|
|
1494
|
+
new_return_authorization: New RMA
|
|
1495
|
+
new_shipping_category: New Shipping Category
|
|
1496
|
+
new_shipping_method: New Shipping Method
|
|
1497
|
+
new_shipment_at_location: New shipment at location
|
|
1498
|
+
new_state: New State
|
|
1499
|
+
new_stock_location: New Stock Location
|
|
1500
|
+
new_stock_movement: New Stock Movement
|
|
1501
|
+
new_store_credit: New Store Credit
|
|
1502
|
+
new_store: New Store
|
|
1503
|
+
new_tax_category: New Tax Category
|
|
1504
|
+
new_tax_rate: New Tax Rate
|
|
1505
|
+
new_taxon: New Taxon
|
|
1506
|
+
new_taxonomy: New Taxonomy
|
|
1507
|
+
new_tracker: New Analytics Tracker
|
|
1508
|
+
new_user: New User
|
|
1509
|
+
new_variant: New Variant
|
|
1510
|
+
new_zone: New Zone
|
|
1511
|
+
next: Next
|
|
1512
|
+
no_actions_added: No actions added
|
|
1513
|
+
no_images_found: No images found
|
|
1514
|
+
no_inventory_selected: No inventory selected
|
|
1515
|
+
no_orders_found: No orders found
|
|
1516
|
+
no_option_values_on_product_html: "This product has no associated option values. Add some to it through Option Types in the %{link}."
|
|
1517
|
+
no_payment_methods_found: No payment methods found
|
|
1518
|
+
no_payment_found: No payment found
|
|
1519
|
+
no_pending_payments: No pending payments
|
|
1520
|
+
no_products_found: No products found
|
|
1521
|
+
no_promotions_found: No promotions found
|
|
1522
|
+
no_results: No results
|
|
1523
|
+
no_rules_added: No rules added
|
|
1524
|
+
no_resource: 'No %{resource} found.'
|
|
1525
|
+
no_resource_found_html: 'No %{resource} found, %{add_one_link}!'
|
|
1526
|
+
no_resource_found_link: Add One
|
|
1527
|
+
no_resource_found: ! 'No %{resource} found'
|
|
1528
|
+
no_shipping_methods_found: No shipping methods found
|
|
1529
|
+
no_shipping_method_selected: No shipping method selected.
|
|
1530
|
+
no_trackers_found: No Trackers Found
|
|
1531
|
+
no_stock_locations_found: No stock locations found
|
|
1532
|
+
no_tracking_present: No tracking details provided.
|
|
1533
|
+
no_variants_found: No variants found.
|
|
1534
|
+
no_variants_found_try_again: No variants found. Try changing the search values.
|
|
1535
|
+
none: None
|
|
1536
|
+
none_selected: None Selected
|
|
1537
|
+
normal_amount: Normal Amount
|
|
1538
|
+
not: not
|
|
1539
|
+
not_available: N/A
|
|
1540
|
+
not_enough_stock: There is not enough inventory at the source location to complete this transfer.
|
|
1541
|
+
not_found: ! '%{resource} is not found'
|
|
1542
|
+
note: Note
|
|
1543
|
+
note_already_received_a_refund: "Note: This order has already received a refund. Make sure the above reimbursement amount is correct."
|
|
1544
|
+
notice_messages:
|
|
1545
|
+
product_cloned: Product has been cloned
|
|
1546
|
+
product_deleted: Product has been deleted
|
|
1547
|
+
product_not_cloned: Product could not be cloned
|
|
1548
|
+
product_not_deleted: Product could not be deleted
|
|
1549
|
+
variant_deleted: Variant has been deleted
|
|
1550
|
+
variant_not_deleted: Variant could not be deleted
|
|
1551
|
+
num_orders: "# Orders"
|
|
1552
|
+
number: Number
|
|
1553
|
+
number_of_codes: ! '%{count} codes'
|
|
1554
|
+
on_hand: On Hand
|
|
1555
|
+
open: Open
|
|
1556
|
+
option_type: Option Type
|
|
1557
|
+
option_type_placeholder: Choose an option type
|
|
1558
|
+
option_types: Option Types
|
|
1559
|
+
option_value: Option Value
|
|
1560
|
+
option_values: Option Values
|
|
1561
|
+
optional: Optional
|
|
1562
|
+
options: Options
|
|
1563
|
+
or: or
|
|
1564
|
+
or_over_price: ! '%{price} or over'
|
|
1565
|
+
order: Order
|
|
1566
|
+
order_adjustments: Order adjustments
|
|
1567
|
+
order_already_completed: Order is already completed
|
|
1568
|
+
order_approved: Order approved
|
|
1569
|
+
order_canceled: Order canceled
|
|
1570
|
+
order_completed: Order completed
|
|
1571
|
+
order_details: Order Details
|
|
1572
|
+
order_email_resent: Order Email Resent
|
|
1573
|
+
order_information: Order Information
|
|
1574
|
+
order_mailer:
|
|
1575
|
+
cancel_email:
|
|
1576
|
+
dear_customer: Dear Customer,
|
|
1577
|
+
instructions: Your order has been CANCELED. Please retain this cancellation information for your records.
|
|
1578
|
+
order_summary_canceled: Order Summary [CANCELED]
|
|
1579
|
+
subject: Cancellation of Order
|
|
1580
|
+
subtotal: ! 'Subtotal:'
|
|
1581
|
+
total: ! 'Order Total:'
|
|
1582
|
+
confirm_email:
|
|
1583
|
+
dear_customer: Dear Customer,
|
|
1584
|
+
instructions: Please review and retain the following order information for your records.
|
|
1585
|
+
order_summary: Order Summary
|
|
1586
|
+
subject: Order Confirmation
|
|
1587
|
+
subtotal: ! 'Subtotal:'
|
|
1588
|
+
thanks: Thank you for your business.
|
|
1589
|
+
total: ! 'Order Total:'
|
|
1590
|
+
inventory_cancellation:
|
|
1591
|
+
dear_customer: Dear Customer,
|
|
1592
|
+
instructions: Some items in your order have been CANCELED. Please retain this cancellation information for your records.
|
|
1593
|
+
order_summary_canceled: Canceled Items
|
|
1594
|
+
subject: Cancellation of Items
|
|
1595
|
+
order_mutex_admin_error: Order is being modified by someone else. Please try again.
|
|
1596
|
+
order_mutex_error: Something went wrong. Please try again.
|
|
1597
|
+
order_not_found: We couldn't find your order. Please try that action again.
|
|
1598
|
+
order_number: Order %{number}
|
|
1599
|
+
order_please_refresh: Order is not ready to be completed. Please refresh totals.
|
|
1600
|
+
order_processed_successfully: Your order has been processed successfully
|
|
1601
|
+
order_ready_for_confirm: Order ready for confirmation
|
|
1602
|
+
order_refresh_totals: Refresh Totals
|
|
1603
|
+
order_resumed: Order resumed
|
|
1604
|
+
order_state:
|
|
1605
|
+
address: Address
|
|
1606
|
+
awaiting_return: Awaiting return
|
|
1607
|
+
canceled: Canceled
|
|
1608
|
+
cart: Cart
|
|
1609
|
+
complete: Complete
|
|
1610
|
+
confirm: Confirm
|
|
1611
|
+
delivery: Delivery
|
|
1612
|
+
payment: Payment
|
|
1613
|
+
resumed: Resumed
|
|
1614
|
+
returned: Returned
|
|
1615
|
+
order_summary: Order Summary
|
|
1616
|
+
order_sure_want_to: Are you sure you want to %{event} this order?
|
|
1617
|
+
order_total: Order Total
|
|
1618
|
+
order_updated: Order Updated
|
|
1619
|
+
orders: Orders
|
|
1620
|
+
other_items_in_other: Other Items in Order
|
|
1621
|
+
out_of_stock: Out of Stock
|
|
1622
|
+
overview: Overview
|
|
1623
|
+
package_from: package from
|
|
1624
|
+
pagination:
|
|
1625
|
+
next_page: next page »
|
|
1626
|
+
previous_page: ! '« previous page'
|
|
1627
|
+
truncate: ! '…'
|
|
1628
|
+
password: Password
|
|
1629
|
+
paste: Paste
|
|
1630
|
+
path: Path
|
|
1631
|
+
pay: pay
|
|
1632
|
+
payment: Payment
|
|
1633
|
+
payment_amount: Payment Amount
|
|
1634
|
+
payment_could_not_be_created: Payment could not be created.
|
|
1635
|
+
payments_failed_count:
|
|
1636
|
+
one: 1 Payment
|
|
1637
|
+
other: '%{count} Payments'
|
|
1638
|
+
payment_identifier: Payment Identifier
|
|
1639
|
+
payment_information: Payment Information
|
|
1640
|
+
payment_method: Payment Method
|
|
1641
|
+
payment_methods: Payment Methods
|
|
1642
|
+
payment_method_not_supported: That payment method is unsupported. Please choose another one.
|
|
1643
|
+
payment_processing_failed: Payment could not be processed, please check the details you entered
|
|
1644
|
+
payment_processor_choose_banner_text: If you need help choosing a payment processor, please visit
|
|
1645
|
+
payment_processor_choose_link: our payments page
|
|
1646
|
+
payment_state: Payment State
|
|
1647
|
+
payment_states:
|
|
1648
|
+
balance_due: Balance due
|
|
1649
|
+
checkout: Checkout
|
|
1650
|
+
completed: Completed
|
|
1651
|
+
credit_owed: Credit owed
|
|
1652
|
+
failed: Failed
|
|
1653
|
+
paid: Paid
|
|
1654
|
+
pending: Pending
|
|
1655
|
+
processing: Processing
|
|
1656
|
+
void: Void
|
|
1657
|
+
invalid: Invalid
|
|
1658
|
+
payment_updated: Payment Updated
|
|
1659
|
+
payments: Payments
|
|
1660
|
+
percent: Percent
|
|
1661
|
+
percent_per_item: Percent Per Item
|
|
1662
|
+
permalink: Permalink
|
|
1663
|
+
pending: Pending
|
|
1664
|
+
phone: Phone
|
|
1665
|
+
place_order: Place Order
|
|
1666
|
+
please_define_payment_methods: Please define some payment methods first.
|
|
1667
|
+
please_enter_reasonable_quantity: Please enter a reasonable quantity.
|
|
1668
|
+
populate_get_error: Something went wrong. Please try adding the item again.
|
|
1669
|
+
powered_by: Powered by
|
|
1670
|
+
pre_tax_refund_amount: Pre-Tax Refund Amount
|
|
1671
|
+
pre_tax_amount: Pre-Tax Amount
|
|
1672
|
+
pre_tax_total: Pre-Tax Total
|
|
1673
|
+
preferred_reimbursement_type: Preferred Reimbursement Type
|
|
1674
|
+
presentation: Presentation
|
|
1675
|
+
previous: Previous
|
|
1676
|
+
price: Price
|
|
1677
|
+
price_range: Price Range
|
|
1678
|
+
price_sack: Price Sack
|
|
1679
|
+
preference_source_none: '(custom)'
|
|
1680
|
+
preference_source_using: 'Using static preferences "%{name}"'
|
|
1681
|
+
process: Process
|
|
1682
|
+
product: Product
|
|
1683
|
+
product_details: Product Details
|
|
1684
|
+
product_has_no_description: This product has no description
|
|
1685
|
+
product_not_available_in_this_currency: This product is not available in the selected currency.
|
|
1686
|
+
product_properties: Product Properties
|
|
1687
|
+
product_rule:
|
|
1688
|
+
choose_products: Choose products
|
|
1689
|
+
label: Order must contain %{select} of these products
|
|
1690
|
+
match_all: all
|
|
1691
|
+
match_any: at least one
|
|
1692
|
+
match_none: none
|
|
1693
|
+
product_source:
|
|
1694
|
+
group: From product group
|
|
1695
|
+
manual: Manually choose
|
|
1696
|
+
products: Products
|
|
1697
|
+
promotion: Promotion
|
|
1698
|
+
promotionable: Promotable
|
|
1699
|
+
promotion_action: Promotion Action
|
|
1700
|
+
promotion_actions: Actions
|
|
1701
|
+
promotion_code_batch_mailer:
|
|
1702
|
+
promotion_code_batch_finished:
|
|
1703
|
+
subject: Promotion code batch finished
|
|
1704
|
+
message: "All %{number_of_codes} codes have been created for promotion: "
|
|
1705
|
+
promotion_code_batch_errored:
|
|
1706
|
+
subject: Promotion code batch errored
|
|
1707
|
+
message: "Promotion code batch errored (%{error}) for promotion: "
|
|
1708
|
+
promotion_code_batches:
|
|
1709
|
+
errored: "Errored: %{error}"
|
|
1710
|
+
finished: "All %{number_of_codes} codes have been created."
|
|
1711
|
+
processing: "Processing: %{number_of_codes_processed} / %{number_of_codes}"
|
|
1712
|
+
promotion_form:
|
|
1713
|
+
match_policies:
|
|
1714
|
+
all: Match all of these rules
|
|
1715
|
+
any: Match any of these rules
|
|
1716
|
+
promotion_rule: Promotion Rule
|
|
1717
|
+
promotions: Promotions
|
|
1718
|
+
promotion_successfully_created: Promotion has been successfully created!
|
|
1719
|
+
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."
|
|
1720
|
+
promotion_uses: Promotion uses
|
|
1721
|
+
propagate_all_variants: Propagate all variants
|
|
1722
|
+
properties: Property Types
|
|
1723
|
+
property: Property Type
|
|
1724
|
+
provider: Provider
|
|
1725
|
+
payment_method_settings_warning: If you are changing the payment method type, you must save first before you can edit the payment method settings
|
|
1726
|
+
qty: Qty
|
|
1727
|
+
quantity: Quantity
|
|
1728
|
+
quantity_returned: Quantity Returned
|
|
1729
|
+
quantity_shipped: Quantity Shipped
|
|
1730
|
+
rate: Rate
|
|
1731
|
+
ready_to_ship: Ready to ship
|
|
1732
|
+
reason: Reason
|
|
1733
|
+
receive: receive
|
|
1734
|
+
received: Received
|
|
1735
|
+
receive_stock: Receive Stock
|
|
1736
|
+
received_items: Received Items
|
|
1737
|
+
received_successfully: Received Successfully
|
|
1738
|
+
receiving: Receiving
|
|
1739
|
+
receiving_match: Receiving match
|
|
1740
|
+
reception_states:
|
|
1741
|
+
awaiting: Awaiting
|
|
1742
|
+
cancelled: Canceled
|
|
1743
|
+
expired: Expired
|
|
1744
|
+
given_to_customer: Given to customer
|
|
1745
|
+
in_transit: In transit
|
|
1746
|
+
lost_in_transit: Lost in transit
|
|
1747
|
+
received: Received
|
|
1748
|
+
shipped_wrong_item: Wrong item
|
|
1749
|
+
short_shipped: Short shipped
|
|
1750
|
+
unexchanged: Unexchanged
|
|
1751
|
+
reception_status: Reception Status
|
|
1752
|
+
reference: Reference
|
|
1753
|
+
refund: Refund
|
|
1754
|
+
refund_amount_must_be_greater_than_zero: Refund amount must be greater than zero
|
|
1755
|
+
refund_reasons: Refund Reasons
|
|
1756
|
+
refunded_amount: Refunded Amount
|
|
1757
|
+
refunds: Refunds
|
|
1758
|
+
refund_amount_must_be_greater_than_zero: Refund amount must be greater than zero
|
|
1759
|
+
register: Register
|
|
1760
|
+
registration: Registration
|
|
1761
|
+
reimburse: Reimburse
|
|
1762
|
+
reimbursed: Reimbursed
|
|
1763
|
+
reimbursement: Reimbursement
|
|
1764
|
+
reimbursement_perform_failed: "Reimbursement could not be performed. Error: %{error}"
|
|
1765
|
+
reimbursement_states:
|
|
1766
|
+
errored: Errored
|
|
1767
|
+
pending: Pending
|
|
1768
|
+
reimbursed: Reimbursed
|
|
1769
|
+
reimbursement_status: Reimbursement status
|
|
1770
|
+
reimbursement_type: Reimbursement type
|
|
1771
|
+
reimbursement_type_override: Reimbursement Type Override
|
|
1772
|
+
reimbursement_types: Reimbursement Types
|
|
1773
|
+
reimbursements: Reimbursements
|
|
1774
|
+
reject: Reject
|
|
1775
|
+
rejected: Rejected
|
|
1776
|
+
remember_me: Remember me
|
|
1777
|
+
remove: Remove
|
|
1778
|
+
rename: Rename
|
|
1779
|
+
resend: Resend
|
|
1780
|
+
reset_password: Reset my password
|
|
1781
|
+
response_code: Response Code
|
|
1782
|
+
restock_inventory: Restock Inventory
|
|
1783
|
+
resume: Resume
|
|
1784
|
+
resumed: Resumed
|
|
1785
|
+
return: return
|
|
1786
|
+
return_authorization: Return Merchandise Authorization
|
|
1787
|
+
return_authorization_states:
|
|
1788
|
+
authorized: Authorized
|
|
1789
|
+
canceled: Canceled
|
|
1790
|
+
return_authorizations: Return Merchandise Authorizations
|
|
1791
|
+
return_authorization_fire_error: Cannot perform this action on return merchandise authorization
|
|
1792
|
+
return_authorization_updated: Return merchandise authorization updated
|
|
1793
|
+
return_item_inventory_unit_ineligible: Return item's inventory unit must be shipped
|
|
1794
|
+
return_item_inventory_unit_reimbursed: Return item's inventory unit is already reimbursed
|
|
1795
|
+
return_item_order_not_completed: Return item's order must be completed
|
|
1796
|
+
return_item_rma_ineligible: Return item requires an RMA
|
|
1797
|
+
return_item_time_period_ineligible: Return item is outside the eligible time period
|
|
1798
|
+
return_items: Return Items
|
|
1799
|
+
return_items_cannot_be_associated_with_multiple_orders: Return items cannot be associated with multiple orders.
|
|
1800
|
+
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.
|
|
1801
|
+
reimbursement_mailer:
|
|
1802
|
+
reimbursement_email:
|
|
1803
|
+
days_to_send: ! 'You have %{days} days to send back any items awaiting exchange.'
|
|
1804
|
+
dear_customer: Dear Customer,
|
|
1805
|
+
exchange_summary: Exchange Summary
|
|
1806
|
+
for: for
|
|
1807
|
+
instructions: Your reimbursement has been processed.
|
|
1808
|
+
refund_summary: Refund Summary
|
|
1809
|
+
subject: Reimbursement Notification
|
|
1810
|
+
total_refunded: ! 'Total refunded: %{total}'
|
|
1811
|
+
return_number: Return Number
|
|
1812
|
+
return_quantity: Return Quantity
|
|
1813
|
+
return_reasons: Return Reasons
|
|
1814
|
+
returned: Returned
|
|
1815
|
+
review: Review
|
|
1816
|
+
risk: Risk
|
|
1817
|
+
risk_analysis: Risk Analysis
|
|
1818
|
+
risky: Risky
|
|
1819
|
+
rma_credit: RMA Credit
|
|
1820
|
+
rma_number: RMA Number
|
|
1821
|
+
rma_value: RMA Value
|
|
1822
|
+
roles: Roles
|
|
1823
|
+
rules: Rules
|
|
1824
|
+
sales_total: Sales Total
|
|
1825
|
+
sales_total_description: Sales Total For All Orders
|
|
1826
|
+
sales_totals: Sales Totals
|
|
1827
|
+
save_and_continue: Save and Continue
|
|
1828
|
+
save_my_address: Save my address
|
|
1829
|
+
say_no: 'No'
|
|
1830
|
+
say_yes: 'Yes'
|
|
1831
|
+
scope: Scope
|
|
1832
|
+
search: Search
|
|
1833
|
+
search_results: Search results for '%{keywords}'
|
|
1834
|
+
searching: Searching
|
|
1835
|
+
secure_connection_type: Secure Connection Type
|
|
1836
|
+
security_settings: Security Settings
|
|
1837
|
+
select: Select
|
|
1838
|
+
select_a_reason: Select a reason
|
|
1839
|
+
select_a_stock_location: Select a stock location
|
|
1840
|
+
select_stock: Select stock
|
|
1841
|
+
selected_quantity_not_available: ! 'selected of %{item} is not available.'
|
|
1842
|
+
send_copy_of_all_mails_to: Send Copy of All Mails To
|
|
1843
|
+
send_mailer: Send Mailer
|
|
1844
|
+
send_mails_as: Send Mails As
|
|
1845
|
+
server: Server
|
|
1846
|
+
server_error: The server returned an error
|
|
1847
|
+
settings: Settings
|
|
1848
|
+
ship: ship
|
|
1849
|
+
ship_address: Ship Address
|
|
1850
|
+
ship_address_required: Valid shipping address required
|
|
1851
|
+
ship_total: Ship Total
|
|
1852
|
+
shipped_at: Shipped At
|
|
1853
|
+
shipment: Shipment
|
|
1854
|
+
shipment_adjustments: "Shipment adjustments"
|
|
1855
|
+
shipment_details: "From %{stock_location} via %{shipping_method}"
|
|
1856
|
+
shipment_mailer:
|
|
1857
|
+
shipped_email:
|
|
1858
|
+
dear_customer: Dear Customer,
|
|
1859
|
+
instructions: Your order has been shipped
|
|
1860
|
+
shipment_summary: Shipment Summary
|
|
1861
|
+
subject: Shipment Notification
|
|
1862
|
+
thanks: Thank you for your business.
|
|
1863
|
+
track_information: ! 'Tracking Information: %{tracking}'
|
|
1864
|
+
track_link: ! 'Tracking Link: %{url}'
|
|
1865
|
+
shipment_date: Shipment date
|
|
1866
|
+
shipment_number: Shipment Number
|
|
1867
|
+
shipment_numbers: Shipment numbers
|
|
1868
|
+
shipment_state: Shipment State
|
|
1869
|
+
shipment_states:
|
|
1870
|
+
backorder: Backorder
|
|
1871
|
+
canceled: Canceled
|
|
1872
|
+
partial: Partial
|
|
1873
|
+
pending: Pending
|
|
1874
|
+
ready: Ready
|
|
1875
|
+
shipped: Shipped
|
|
1876
|
+
shipment_transfer_success: 'Variants successfully transferred'
|
|
1877
|
+
shipment_transfer_error: 'There was an error transferring variants'
|
|
1878
|
+
shipments: Shipments
|
|
1879
|
+
shipped: Shipped
|
|
1880
|
+
shipping: Shipping
|
|
1881
|
+
shipping_address: Shipping Address
|
|
1882
|
+
shipping_categories: Shipping Categories
|
|
1883
|
+
shipping_category: Shipping Category
|
|
1884
|
+
shipping_flat_rate_per_item: Flat rate per package item
|
|
1885
|
+
shipping_flat_rate_per_order: Flat rate
|
|
1886
|
+
shipping_flexible_rate: Flexible Rate per package item
|
|
1887
|
+
shipping_instructions: Shipping Instructions
|
|
1888
|
+
shipping_method: Shipping Method
|
|
1889
|
+
shipping_methods: Shipping Methods
|
|
1890
|
+
shipping_price_sack: Price sack
|
|
1891
|
+
shipping_rate:
|
|
1892
|
+
display_price:
|
|
1893
|
+
display_price_with_explanations: "%{price} (%{explanations})"
|
|
1894
|
+
tax_label_separator: ", "
|
|
1895
|
+
shipping_rate_tax:
|
|
1896
|
+
label:
|
|
1897
|
+
sales_tax: "+ %{amount} %{tax_rate_name}"
|
|
1898
|
+
vat: "incl. %{amount} %{tax_rate_name}"
|
|
1899
|
+
shipping_total: Shipping total
|
|
1900
|
+
shop_by_taxonomy: Shop by %{taxonomy}
|
|
1901
|
+
shopping_cart: Shopping Cart
|
|
1902
|
+
show: Show
|
|
1903
|
+
show_active: Show Active
|
|
1904
|
+
show_deleted: Show Deleted
|
|
1905
|
+
show_only_complete_orders: Only show complete orders
|
|
1906
|
+
show_only_considered_risky: Only show risky orders
|
|
1907
|
+
show_only_open_transfers: Only show open transfers
|
|
1908
|
+
show_rate_in_label: Show rate in label
|
|
1909
|
+
sku: SKU
|
|
1910
|
+
skus: SKUs
|
|
1911
|
+
slug: Slug
|
|
1912
|
+
source: Source
|
|
1913
|
+
source_location: Source location
|
|
1914
|
+
special_instructions: Special Instructions
|
|
1915
|
+
split: Split
|
|
1916
|
+
split_failed: Unable to complete split
|
|
1917
|
+
spree_gateway_error_flash_for_checkout: There was a problem with your payment information. Please check your information and try again.
|
|
1918
|
+
ssl:
|
|
1919
|
+
change_protocol: "Please switch to using HTTP (rather than HTTPS) and retry this request."
|
|
1920
|
+
start: Start
|
|
1921
|
+
state: State
|
|
1922
|
+
state_based: State Based
|
|
1923
|
+
states: States
|
|
1924
|
+
states_count:
|
|
1925
|
+
one: "%{count} State"
|
|
1926
|
+
other: "%{count} States"
|
|
1927
|
+
states_required: States Required
|
|
1928
|
+
status: Status
|
|
1929
|
+
stock_location: Stock Location
|
|
1930
|
+
stock_location_info: Stock location info
|
|
1931
|
+
stock_locations: Stock Locations
|
|
1932
|
+
stock_locations_need_a_default_country: You must create a default country before creating a stock location.
|
|
1933
|
+
stock_management: Product Stock
|
|
1934
|
+
stock_management_requires_a_stock_location: Please create a stock location in order to manage stock.
|
|
1935
|
+
stock_movements: Stock Movements
|
|
1936
|
+
stock_movements_for_stock_location: Stock Movements for %{stock_location_name}
|
|
1937
|
+
stock_not_below_zero: Stock must not be below zero.
|
|
1938
|
+
stock_successfully_transferred: Stock was successfully transferred between locations.
|
|
1939
|
+
stock: Stock
|
|
1940
|
+
stop: Stop
|
|
1941
|
+
store: Store
|
|
1942
|
+
store_credit:
|
|
1943
|
+
actions:
|
|
1944
|
+
invalidate: Invalidate
|
|
1945
|
+
credit_allocation_memo: "This is a credit from store credit ID %{id}"
|
|
1946
|
+
currency_mismatch: "Store credit currency does not match order currency"
|
|
1947
|
+
display_action:
|
|
1948
|
+
adjustment: Adjustment
|
|
1949
|
+
allocation: Added
|
|
1950
|
+
capture: Used
|
|
1951
|
+
credit: Credit
|
|
1952
|
+
invalidate: Invalidated
|
|
1953
|
+
void: Credit
|
|
1954
|
+
admin:
|
|
1955
|
+
authorize: "Authorized"
|
|
1956
|
+
eligible: "Eligibility Verified"
|
|
1957
|
+
void: "Voided"
|
|
1958
|
+
errors:
|
|
1959
|
+
unable_to_fund: "Unable to pay for order using store credits"
|
|
1960
|
+
cannot_invalidate_uncaptured_authorization: "Cannot invalidate a store credit with an uncaptured authorization"
|
|
1961
|
+
expiring: Expiring
|
|
1962
|
+
insufficient_authorized_amount: "Unable to capture more than authorized amount"
|
|
1963
|
+
insufficient_funds: "Store credit amount remaining is not sufficient"
|
|
1964
|
+
non_expiring: Non-expiring
|
|
1965
|
+
select_one_store_credit: "Select store credit to go towards remaining balance"
|
|
1966
|
+
store_credit: Store Credit
|
|
1967
|
+
successful_action: "Successful store credit %{action}"
|
|
1968
|
+
unable_to_credit: "Unable to credit code: %{auth_code}"
|
|
1969
|
+
unable_to_void: "Unable to void code: %{auth_code}"
|
|
1970
|
+
unable_to_find: "Could not find store credit"
|
|
1971
|
+
unable_to_find_for_action: "Could not find store credit for auth code: %{auth_code} for action: %{action}"
|
|
1972
|
+
user_has_no_store_credits: "User does not have any available store credit"
|
|
1973
|
+
store_credit_category:
|
|
1974
|
+
default: Default
|
|
1975
|
+
store_rule:
|
|
1976
|
+
choose_stores: Choose Stores
|
|
1977
|
+
street_address: Street Address
|
|
1978
|
+
street_address_2: Street Address (cont'd)
|
|
1979
|
+
subtotal: Subtotal
|
|
1980
|
+
subtract: Subtract
|
|
1981
|
+
success: Success
|
|
1982
|
+
successfully_created: ! '%{resource} has been successfully created!'
|
|
1983
|
+
successfully_refunded: ! '%{resource} has been successfully refunded!'
|
|
1984
|
+
successfully_removed: ! '%{resource} has been successfully removed!'
|
|
1985
|
+
successfully_signed_up_for_analytics: Successfully signed up for Spree Analytics
|
|
1986
|
+
successfully_updated: ! '%{resource} has been successfully updated!'
|
|
1987
|
+
tax: Tax
|
|
1988
|
+
tax_included: "Tax (incl.)"
|
|
1989
|
+
tax_categories: Tax Categories
|
|
1990
|
+
tax_category: Tax Category
|
|
1991
|
+
tax_code: Tax Code
|
|
1992
|
+
tax_rate_amount_explanation: Tax rates are a decimal amount to aid in calculations, (i.e. if the tax rate is 5% then enter 0.05)
|
|
1993
|
+
tax_rates: Tax Rates
|
|
1994
|
+
taxon: Taxon
|
|
1995
|
+
taxon_edit: Edit Taxon
|
|
1996
|
+
taxon_placeholder: Add a Taxon
|
|
1997
|
+
taxon_rule:
|
|
1998
|
+
choose_taxons: Choose taxons
|
|
1999
|
+
label: Order must contain %{select} of these taxons
|
|
2000
|
+
match_all: all
|
|
2001
|
+
match_any: at least one
|
|
2002
|
+
match_none: none
|
|
2003
|
+
taxonomies: Taxonomies
|
|
2004
|
+
taxonomy: Taxonomy
|
|
2005
|
+
taxonomy_edit: Edit taxonomy
|
|
2006
|
+
taxonomy_tree_error: The requested change has not been accepted and the tree has been returned to its previous state, please try again.
|
|
2007
|
+
taxonomy_tree_instruction: ! '* Right click a child in the tree to access the menu for adding, deleting or sorting a child.'
|
|
2008
|
+
taxons: Taxons
|
|
2009
|
+
test: Test
|
|
2010
|
+
test_mailer:
|
|
2011
|
+
test_email:
|
|
2012
|
+
greeting: Congratulations!
|
|
2013
|
+
message: If you have received this email, then your email settings are correct.
|
|
2014
|
+
subject: Test Mail
|
|
2015
|
+
test_mode: Test Mode
|
|
2016
|
+
thank_you_for_your_order: Thank you for your business. Please print out a copy of this confirmation page for your records.
|
|
2017
|
+
there_are_no_items_for_this_order: There are no items for this order. Please add an item to the order to continue.
|
|
2018
|
+
there_were_problems_with_the_following_fields: There were problems with the following fields
|
|
2019
|
+
this_order_has_already_received_a_refund: This order has already received a refund
|
|
2020
|
+
thumbnail: Thumbnail
|
|
2021
|
+
tiers: Tiers
|
|
2022
|
+
tiered_flat_rate: Tiered Flat Rate
|
|
2023
|
+
tiered_percent: Tiered Percent
|
|
2024
|
+
time: Time
|
|
2025
|
+
to: to
|
|
2026
|
+
to_add_variants_you_must_first_define: To add variants, you must first define
|
|
2027
|
+
total: Total
|
|
2028
|
+
total_excluding_vat: Pre-Tax Total
|
|
2029
|
+
total_per_item: Total per item
|
|
2030
|
+
total_pre_tax_refund: Total Pre-Tax Refund
|
|
2031
|
+
total_price: Total price
|
|
2032
|
+
total_sales: Total Sales
|
|
2033
|
+
track_inventory: Track Inventory
|
|
2034
|
+
tracking: Tracking
|
|
2035
|
+
tracking_info: Tracking Info
|
|
2036
|
+
tracking_number: Tracking Number
|
|
2037
|
+
tracking_url: Tracking URL
|
|
2038
|
+
tracking_url_placeholder: e.g. http://quickship.com/package?num=:tracking
|
|
2039
|
+
transaction_id: Transaction ID
|
|
2040
|
+
transfer_from_location: Transfer From
|
|
2041
|
+
transfer_stock: Transfer Stock
|
|
2042
|
+
transfer_to_location: Transfer To
|
|
2043
|
+
transfer_number: Transfer Number
|
|
2044
|
+
tree: Tree
|
|
2045
|
+
try_changing_search_values: Try changing the search values.
|
|
2046
|
+
type: Type
|
|
2047
|
+
type_to_search: Type to search
|
|
2048
|
+
unable_to_find_all_inventory_units: Unable to find all specified inventory units
|
|
2049
|
+
unable_to_connect_to_gateway: Unable to connect to gateway.
|
|
2050
|
+
unable_to_create_reimbursements: Unable to create reimbursements because there are items pending manual intervention.
|
|
2051
|
+
unfinalize_all_adjustments: Unfinalize All Adjustments
|
|
2052
|
+
under_price: Under %{price}
|
|
2053
|
+
unlock: Unlock
|
|
2054
|
+
unrecognized_card_type: Unrecognized card type
|
|
2055
|
+
unshippable_items: Unshippable Items
|
|
2056
|
+
update: Update
|
|
2057
|
+
updated_successfully: Updated successfully
|
|
2058
|
+
updating: Updating
|
|
2059
|
+
usage_limit: Usage Limit
|
|
2060
|
+
use_app_default: Use App Default
|
|
2061
|
+
use_billing_address: Use Billing Address
|
|
2062
|
+
use_existing_cc: Use an existing card on file
|
|
2063
|
+
use_new_cc: Use a new card
|
|
2064
|
+
use_new_cc_or_payment_method: Use a new card / payment method
|
|
2065
|
+
user: User
|
|
2066
|
+
user_rule:
|
|
2067
|
+
choose_users: Choose users
|
|
2068
|
+
user_role_rule:
|
|
2069
|
+
choose_roles: Choose Roles
|
|
2070
|
+
label: User must contain %{select} of these roles
|
|
2071
|
+
match_all: all
|
|
2072
|
+
match_any: at least one
|
|
2073
|
+
users: Users
|
|
2074
|
+
validation:
|
|
2075
|
+
unpaid_amount_not_zero: "Amount was not fully reimbursed. Still due: %{amount}"
|
|
2076
|
+
cannot_be_less_than_shipped_units: cannot be less than the number of shipped units.
|
|
2077
|
+
cannot_destroy_line_item_as_inventory_units_have_shipped: Cannot destroy line item as some inventory units have shipped.
|
|
2078
|
+
exceeds_available_stock: exceeds available stock. Please ensure line items have a valid quantity.
|
|
2079
|
+
is_too_large: is too large -- stock on hand cannot cover requested quantity!
|
|
2080
|
+
must_be_int: must be an integer
|
|
2081
|
+
must_be_non_negative: must be a non-negative value
|
|
2082
|
+
validity_period: Validity Period
|
|
2083
|
+
value: Value
|
|
2084
|
+
variant: Variant
|
|
2085
|
+
variant_placeholder: Choose a variant
|
|
2086
|
+
variant_pricing: Variant Pricing
|
|
2087
|
+
variant_properties: Variant Properties
|
|
2088
|
+
variant_search: Variant Search
|
|
2089
|
+
variant_search_placeholder: "SKU or Option Value"
|
|
2090
|
+
variant_to_add: Variant to add
|
|
2091
|
+
variant_to_be_received: Variant to be received
|
|
2092
|
+
variants: Variants
|
|
2093
|
+
version: Version
|
|
2094
|
+
void: Void
|
|
2095
|
+
weight: Weight
|
|
2096
|
+
what_is_a_cvv: What is a (CVV) Credit Card Code?
|
|
2097
|
+
what_is_this: What's This?
|
|
2098
|
+
width: Width
|
|
2099
|
+
year: Year
|
|
2100
|
+
you_have_no_orders_yet: You have no orders yet
|
|
2101
|
+
you_cannot_undo_action: You will not be able to undo this action
|
|
2102
|
+
your_cart_is_empty: Your cart is empty
|
|
2103
|
+
your_order_is_empty_add_product: Your order is empty, please search for and add a product above
|
|
2104
|
+
zip: Zip
|
|
2105
|
+
zipcode: Zip Code
|
|
2106
|
+
zone: Zone
|
|
2107
|
+
zones: Zones
|