solidus_core 1.2.3 → 1.3.0.beta1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/Gemfile +1 -1
- data/Rakefile +1 -1
- data/app/assets/javascripts/spree.js.coffee.erb +1 -1
- data/app/helpers/spree/base_helper.rb +21 -43
- data/app/helpers/spree/orders_helper.rb +0 -1
- data/app/helpers/spree/products_helper.rb +10 -12
- data/app/helpers/spree/taxons_helper.rb +4 -4
- data/app/mailers/spree/base_mailer.rb +1 -3
- data/app/mailers/spree/carton_mailer.rb +2 -2
- data/app/mailers/spree/order_mailer.rb +2 -2
- data/app/models/concerns/spree/adjustment_source.rb +12 -16
- data/app/models/concerns/spree/calculated_adjustments.rb +17 -14
- data/app/models/concerns/spree/default_price.rb +10 -26
- data/app/models/concerns/spree/display_money.rb +1 -1
- data/app/models/concerns/spree/ordered_property_value_list.rb +10 -12
- data/app/models/concerns/spree/ransackable_attributes.rb +6 -5
- data/app/models/concerns/spree/user_address_book.rb +87 -81
- data/app/models/concerns/spree/user_methods.rb +2 -2
- data/app/models/concerns/spree/user_payment_source.rb +12 -8
- data/app/models/spree/ability.rb +2 -2
- data/app/models/spree/address.rb +37 -38
- data/app/models/spree/adjustment.rb +2 -6
- data/app/models/spree/app_configuration.rb +60 -5
- data/app/models/spree/base.rb +1 -1
- data/app/models/spree/calculator/default_tax.rb +28 -24
- data/app/models/spree/calculator/flat_percent_item_total.rb +1 -1
- data/app/models/spree/calculator/flat_rate.rb +2 -2
- data/app/models/spree/calculator/flexi_rate.rb +4 -4
- data/app/models/spree/calculator/percent_per_item.rb +8 -9
- data/app/models/spree/calculator/price_sack.rb +3 -3
- data/app/models/spree/calculator/returns/default_refund_amount.rb +11 -12
- data/app/models/spree/calculator/shipping/flat_percent_item_total.rb +1 -1
- data/app/models/spree/calculator/shipping/flat_rate.rb +2 -2
- data/app/models/spree/calculator/shipping/flexi_rate.rb +3 -3
- data/app/models/spree/calculator/shipping/per_item.rb +1 -1
- data/app/models/spree/calculator/shipping/price_sack.rb +3 -3
- data/app/models/spree/calculator/tiered_flat_rate.rb +2 -1
- data/app/models/spree/calculator/tiered_percent.rb +2 -1
- data/app/models/spree/calculator.rb +3 -3
- data/app/models/spree/carton.rb +2 -2
- data/app/models/spree/country.rb +7 -4
- data/app/models/spree/credit_card.rb +26 -22
- data/app/models/spree/customer_return.rb +8 -7
- data/app/models/spree/exchange.rb +1 -9
- data/app/models/spree/gateway/bogus.rb +31 -31
- data/app/models/spree/gateway/bogus_simple.rb +6 -8
- data/app/models/spree/gateway.rb +9 -15
- data/app/models/spree/image.rb +3 -3
- data/app/models/spree/inventory_unit.rb +23 -23
- data/app/models/spree/item_adjustments.rb +3 -2
- data/app/models/spree/legacy_user.rb +1 -5
- data/app/models/spree/line_item.rb +95 -84
- data/app/models/spree/option_type.rb +1 -1
- data/app/models/spree/option_value.rb +3 -1
- data/app/models/spree/order/checkout.rb +45 -44
- data/app/models/spree/order/payments.rb +42 -45
- data/app/models/spree/order.rb +70 -75
- data/app/models/spree/order_cancellations.rb +4 -4
- data/app/models/spree/order_capturing.rb +3 -2
- data/app/models/spree/order_contents.rb +61 -59
- data/app/models/spree/order_inventory.rb +59 -54
- data/app/models/spree/order_mutex.rb +0 -1
- data/app/models/spree/order_shipping.rb +8 -9
- data/app/models/spree/order_stock_location.rb +3 -3
- data/app/models/spree/order_update_attributes.rb +0 -2
- data/app/models/spree/order_updater.rb +11 -24
- data/app/models/spree/payment/processing.rb +26 -37
- data/app/models/spree/payment.rb +68 -71
- data/app/models/spree/payment_method/check.rb +2 -2
- data/app/models/spree/payment_method/store_credit.rb +6 -7
- data/app/models/spree/payment_method.rb +11 -8
- data/app/models/spree/preferences/configuration.rb +2 -2
- data/app/models/spree/preferences/preferable.rb +1 -1
- data/app/models/spree/preferences/preferable_class_methods.rb +1 -1
- data/app/models/spree/preferences/scoped_store.rb +6 -5
- data/app/models/spree/preferences/static_model_preferences.rb +1 -1
- data/app/models/spree/preferences/statically_configurable.rb +2 -2
- data/app/models/spree/preferences/store.rb +2 -6
- data/app/models/spree/price.rb +17 -19
- data/app/models/spree/product/scopes.rb +18 -17
- data/app/models/spree/product.rb +28 -11
- data/app/models/spree/product_property.rb +2 -0
- data/app/models/spree/product_scope/scopes.rb +22 -22
- data/app/models/spree/promotion/actions/create_adjustment.rb +3 -4
- data/app/models/spree/promotion/actions/create_item_adjustments.rb +8 -8
- data/app/models/spree/promotion/actions/create_quantity_adjustments.rb +3 -3
- data/app/models/spree/promotion/actions/free_shipping.rb +4 -4
- data/app/models/spree/promotion/rules/first_order.rb +7 -6
- data/app/models/spree/promotion/rules/first_repeat_purchase_since.rb +2 -3
- data/app/models/spree/promotion/rules/item_total.rb +5 -2
- data/app/models/spree/promotion/rules/nth_order.rb +3 -4
- data/app/models/spree/promotion/rules/one_use_per_user.rb +1 -2
- data/app/models/spree/promotion/rules/option_value.rb +1 -2
- data/app/models/spree/promotion/rules/product.rb +4 -4
- data/app/models/spree/promotion/rules/taxon.rb +5 -5
- data/app/models/spree/promotion/rules/user.rb +1 -1
- data/app/models/spree/promotion/rules/user_logged_in.rb +1 -1
- data/app/models/spree/promotion.rb +8 -8
- data/app/models/spree/promotion_action.rb +1 -1
- data/app/models/spree/promotion_builder.rb +2 -2
- data/app/models/spree/promotion_chooser.rb +1 -0
- data/app/models/spree/promotion_code/code_builder.rb +3 -3
- data/app/models/spree/promotion_handler/cart.rb +17 -16
- data/app/models/spree/promotion_handler/coupon.rb +10 -14
- data/app/models/spree/promotion_handler/page.rb +4 -4
- data/app/models/spree/promotion_rule.rb +4 -3
- data/app/models/spree/prototype.rb +0 -1
- data/app/models/spree/refund.rb +3 -3
- data/app/models/spree/reimbursement/reimbursement_type_engine.rb +1 -3
- data/app/models/spree/reimbursement.rb +3 -5
- data/app/models/spree/reimbursement_performer.rb +0 -5
- data/app/models/spree/reimbursement_tax_calculator.rb +2 -7
- data/app/models/spree/reimbursement_type/credit.rb +1 -1
- data/app/models/spree/reimbursement_type/original_payment.rb +1 -1
- data/app/models/spree/reimbursement_type/reimbursement_helpers.rb +3 -3
- data/app/models/spree/reimbursement_type/store_credit.rb +1 -1
- data/app/models/spree/reimbursement_type.rb +1 -1
- data/app/models/spree/return_authorization.rb +38 -37
- data/app/models/spree/return_item/eligibility_validator/default.rb +4 -4
- data/app/models/spree/return_item/eligibility_validator/no_reimbursements.rb +0 -1
- data/app/models/spree/return_item/eligibility_validator/rma_required.rb +0 -1
- data/app/models/spree/return_item.rb +24 -23
- data/app/models/spree/returns_calculator.rb +1 -2
- data/app/models/spree/shipment.rb +80 -74
- data/app/models/spree/shipping_calculator.rb +4 -5
- data/app/models/spree/shipping_manifest.rb +3 -4
- data/app/models/spree/shipping_method.rb +54 -23
- data/app/models/spree/shipping_method_stock_location.rb +4 -0
- data/app/models/spree/shipping_rate.rb +24 -29
- data/app/models/spree/shipping_rate_tax.rb +41 -0
- data/app/models/spree/state.rb +1 -1
- data/app/models/spree/state_change.rb +1 -1
- data/app/models/spree/stock/availability_validator.rb +2 -2
- data/app/models/spree/stock/coordinator.rb +12 -13
- data/app/models/spree/stock/differentiator.rb +1 -0
- data/app/models/spree/stock/estimator.rb +18 -25
- data/app/models/spree/stock/inventory_unit_builder.rb +1 -1
- data/app/models/spree/stock/package.rb +19 -9
- data/app/models/spree/stock/packer.rb +2 -3
- data/app/models/spree/stock/prioritizer.rb +3 -2
- data/app/models/spree/stock/quantifier.rb +2 -3
- data/app/models/spree/stock/shipping_rate_selector.rb +0 -1
- data/app/models/spree/stock/shipping_rate_sorter.rb +0 -1
- data/app/models/spree/stock/splitter/backordered.rb +0 -2
- data/app/models/spree/stock/splitter/base.rb +3 -2
- data/app/models/spree/stock/splitter/shipping_category.rb +2 -1
- data/app/models/spree/stock/splitter/weight.rb +2 -2
- data/app/models/spree/stock_item.rb +36 -37
- data/app/models/spree/stock_location.rb +17 -13
- data/app/models/spree/stock_movement.rb +1 -3
- data/app/models/spree/stock_transfer.rb +8 -8
- data/app/models/spree/store.rb +6 -0
- data/app/models/spree/store_credit.rb +24 -24
- data/app/models/spree/store_credit_category.rb +1 -2
- data/app/models/spree/tax/item_adjuster.rb +37 -0
- data/app/models/spree/tax/order_adjuster.rb +38 -0
- data/app/models/spree/tax/shipping_rate_taxer.rb +31 -0
- data/app/models/spree/tax/tax_helpers.rb +49 -0
- data/app/models/spree/tax/tax_location.rb +33 -0
- data/app/models/spree/tax_category.rb +1 -1
- data/app/models/spree/tax_rate.rb +46 -111
- data/app/models/spree/taxon.rb +36 -12
- data/app/models/spree/taxonomy.rb +10 -10
- data/app/models/spree/validations/db_maximum_length_validator.rb +0 -1
- data/app/models/spree/variant/pricer.rb +19 -0
- data/app/models/spree/variant/pricing_options.rb +31 -0
- data/app/models/spree/variant/scopes.rb +9 -9
- data/app/models/spree/variant.rb +95 -89
- data/app/models/spree/variant_property_rule.rb +1 -1
- data/app/models/spree/variant_property_rule_value.rb +2 -0
- data/app/models/spree/zone.rb +60 -24
- data/config/initializers/friendly_id.rb +1 -1
- data/config/locales/en.yml +337 -51
- data/config/routes.rb +1 -1
- data/db/default/spree/countries.rb +9 -15
- data/db/default/spree/roles.rb +1 -2
- data/db/default/spree/states.rb +7 -11
- data/db/default/spree/store_credit.rb +2 -2
- data/db/default/spree/stores.rb +2 -1
- data/db/migrate/20120831092320_spree_one_two.rb +100 -101
- data/db/migrate/20120831092359_spree_promo_one_two.rb +12 -12
- data/db/migrate/20120905151823_add_toggle_tax_rate_display.rb +1 -1
- data/db/migrate/20121009142519_add_lock_version_to_variant.rb +1 -1
- data/db/migrate/20121010142909_add_states_required_to_countries.rb +1 -1
- data/db/migrate/20121012071449_add_on_demand_to_product_and_variant.rb +2 -2
- data/db/migrate/20121017010007_remove_not_null_constraint_from_products_on_hand.rb +4 -4
- data/db/migrate/20121031162139_split_prices_from_variants.rb +8 -8
- data/db/migrate/20121107003422_remove_not_null_from_spree_prices_amount.rb +2 -2
- data/db/migrate/20121109173623_add_cost_currency_to_variants.rb +1 -1
- data/db/migrate/20121124203911_add_position_to_taxonomies.rb +1 -1
- data/db/migrate/20130120201805_add_position_to_product_properties.spree.rb +1 -2
- data/db/migrate/20130211190146_create_spree_stock_items.rb +1 -1
- data/db/migrate/20130213191427_create_default_stock.rb +12 -21
- data/db/migrate/20130226032817_change_meta_description_on_spree_products_to_text.rb +1 -1
- data/db/migrate/20130227143905_add_pending_to_inventory_unit.rb +2 -2
- data/db/migrate/20130228210442_create_shipping_method_zone.rb +1 -1
- data/db/migrate/20130301162924_create_shipping_method_categories.rb +2 -2
- data/db/migrate/20130304162240_create_spree_shipping_rates.rb +4 -4
- data/db/migrate/20130306181701_add_address_fields_to_stock_location.rb +2 -3
- data/db/migrate/20130306191917_add_active_field_to_stock_locations.rb +1 -1
- data/db/migrate/20130306195650_add_backorderable_to_stock_item.rb +1 -1
- data/db/migrate/20130307161754_add_default_quantity_to_stock_movement.rb +1 -1
- data/db/migrate/20130319062004_change_orders_total_precision.rb +4 -4
- data/db/migrate/20130319063911_change_spree_payments_amount_precision.rb +1 -3
- data/db/migrate/20130319064308_change_spree_return_authorization_amount_precision.rb +2 -4
- data/db/migrate/20130319082943_change_adjustments_amount_precision.rb +1 -3
- data/db/migrate/20130319190507_drop_source_and_destination_from_stock_movement.rb +2 -2
- data/db/migrate/20130325163316_migrate_inventory_unit_sold_to_on_hand.rb +2 -2
- data/db/migrate/20130417120035_update_adjustment_states.rb +2 -2
- data/db/migrate/20130417123427_add_shipping_rates_to_shipments.rb +3 -3
- data/db/migrate/20130628021056_add_unique_index_to_permalink_on_spree_products.rb +1 -1
- data/db/migrate/20130628022817_add_unique_index_to_orders_shipments_and_stock_transfers.rb +3 -3
- data/db/migrate/20130718042445_add_cost_price_to_line_item.rb +1 -1
- data/db/migrate/20130718233855_set_backorderable_to_default_to_false.rb +2 -2
- data/db/migrate/20130807024301_upgrade_adjustments.rb +3 -3
- data/db/migrate/20130813004002_add_shipment_total_to_spree_orders.rb +1 -1
- data/db/migrate/20130813140619_expand_order_number_size.rb +2 -2
- data/db/migrate/20130815000406_add_adjustment_total_to_line_items.rb +1 -1
- data/db/migrate/20130815024413_add_adjustment_total_to_shipments.rb +1 -1
- data/db/migrate/20130826062534_add_depth_to_spree_taxons.rb +1 -1
- data/db/migrate/20130830001033_add_shipping_category_to_shipping_methods_and_products.rb +1 -1
- data/db/migrate/20130830001159_migrate_old_shipping_calculators.rb +1 -1
- data/db/migrate/20131001013410_remove_unused_credit_card_fields.rb +1 -0
- data/db/migrate/20131026154747_add_track_inventory_to_variant.rb +1 -1
- data/db/migrate/20131118043959_add_included_to_adjustments.rb +1 -1
- data/db/migrate/20131118183431_add_line_item_id_to_spree_inventory_units.rb +0 -1
- data/db/migrate/20131211112807_create_spree_orders_promotions.rb +1 -1
- data/db/migrate/20131218054603_add_item_count_to_spree_orders.rb +1 -1
- data/db/migrate/20140106065820_remove_value_type_from_spree_preferences.rb +1 -0
- data/db/migrate/20140219060952_add_considered_risky_to_orders.rb +1 -1
- data/db/migrate/20140309023735_migrate_old_preferences.rb +4 -3
- data/db/migrate/20140309033438_create_store_from_preferences.rb +2 -2
- data/db/migrate/20140410141842_add_many_missing_indexes.rb +13 -15
- data/db/migrate/20140410150358_correct_some_polymorphic_index_and_add_more_missing.rb +38 -40
- data/db/migrate/20140508151342_change_spree_price_amount_precision.rb +4 -4
- data/db/migrate/20140530024945_move_order_token_from_tokenized_permission.rb +1 -1
- data/db/migrate/20140710041921_recreate_spree_return_authorizations.rb +0 -1
- data/db/migrate/20140718195325_create_friendly_id_slugs.rb +4 -4
- data/db/migrate/20140723214541_copy_product_slugs_to_slug_history.rb +4 -6
- data/db/migrate/20140805171219_make_existing_credit_cards_default.rb +1 -0
- data/db/migrate/20141217215630_update_product_slug_index.rb +2 -4
- data/db/migrate/20150112194216_add_position_to_stock_location.rb +2 -2
- data/db/migrate/20150225205344_move_promotion_code_to_promotion_code_value.rb +0 -1
- data/db/migrate/20150313201503_copy_shipped_shipments_to_cartons.rb +0 -1
- data/db/migrate/20150506181611_create_spree_store_credit_payment_method.rb +3 -3
- data/db/migrate/20150515211137_fix_adjustment_order_id.rb +0 -1
- data/db/migrate/20150612205731_remove_spree_configurations.rb +2 -2
- data/db/migrate/20150619160613_create_adjustment_reason.rb +1 -1
- data/db/migrate/20150723224133_remove_unnecessary_indexes.rb +10 -2
- data/db/migrate/20150731201146_add_spree_user_addresses.rb +0 -1
- data/db/migrate/20150811211025_add_finalized_to_spree_adjustments.rb +1 -1
- data/db/migrate/20151001121454_create_spree_shipping_method_stock_locations.rb +13 -0
- data/db/migrate/20151002023248_add_foreign_key_to_shipping_method_stock_location.rb +6 -0
- data/db/migrate/20151026093607_change_return_item_pre_tax_amount_to_amount.rb +29 -0
- data/db/migrate/20160111091912_add_column_available_to_all_on_spree_shipping_method.rb +5 -0
- data/db/migrate/20160116133604_add_position_to_spree_payment_methods.rb +5 -0
- data/db/migrate/20160122182105_add_carrier_and_service_level_to_spree_shipping_methods.rb +6 -0
- data/db/migrate/20160224201413_create_spree_shipping_rate_taxes.rb +11 -0
- data/db/migrate/20160229133259_add_cart_tax_country_iso_to_spree_store.rb +5 -0
- data/db/migrate/20160301103333_remove_pre_tax_amount_on_line_item_and_shipment.rb +6 -0
- data/db/migrate/20160308000300_disallow_adjustment_finalized_nulls.rb +19 -0
- data/db/migrate/20160318145302_add_timestamps_to_prices.rb +5 -0
- data/db/migrate/20160330204846_add_missing_timestamp_columns.rb +20 -0
- data/lib/generators/spree/custom_user/custom_user_generator.rb +3 -8
- data/lib/generators/spree/dummy/dummy_generator.rb +17 -19
- data/lib/generators/spree/install/install_generator.rb +15 -15
- data/lib/generators/spree/install/templates/config/initializers/spree.rb +1 -0
- data/lib/spree/core/controller_helpers/auth.rb +2 -4
- data/lib/spree/core/controller_helpers/common.rb +42 -43
- data/lib/spree/core/controller_helpers/order.rb +5 -9
- data/lib/spree/core/controller_helpers/payment_parameters.rb +4 -5
- data/lib/spree/core/controller_helpers/pricing.rb +27 -0
- data/lib/spree/core/controller_helpers/respond_with.rb +4 -4
- data/lib/spree/core/controller_helpers/search.rb +2 -2
- data/lib/spree/core/controller_helpers/store.rb +3 -3
- data/lib/spree/core/controller_helpers/strong_parameters.rb +4 -4
- data/lib/spree/core/current_store.rb +1 -1
- data/lib/spree/core/delegate_belongs_to.rb +19 -21
- data/lib/spree/core/engine.rb +12 -8
- data/lib/spree/core/environment/calculators.rb +0 -1
- data/lib/spree/core/environment_extension.rb +4 -4
- data/lib/spree/core/importer/order.rb +17 -22
- data/lib/spree/core/importer/product.rb +10 -9
- data/lib/spree/core/permalinks.rb +16 -16
- data/lib/spree/core/product_duplicator.rb +2 -3
- data/lib/spree/core/product_filters.rb +15 -16
- data/lib/spree/core/role_configuration.rb +2 -2
- data/lib/spree/core/search/base.rb +71 -57
- data/lib/spree/core/search/variant.rb +2 -4
- data/lib/spree/core/unreturned_item_charger.rb +1 -2
- data/lib/spree/core/validators/email.rb +2 -2
- data/lib/spree/core/version.rb +1 -1
- data/lib/spree/core.rb +2 -4
- data/lib/spree/i18n.rb +1 -1
- data/lib/spree/localized_number.rb +3 -1
- data/lib/spree/migrations.rb +27 -26
- data/lib/spree/money.rb +19 -4
- data/lib/spree/permission_sets/base.rb +1 -1
- data/lib/spree/permitted_attributes.rb +7 -7
- data/lib/spree/responder.rb +4 -5
- data/lib/spree/testing_support/authorization_helpers.rb +1 -1
- data/lib/spree/testing_support/caching.rb +8 -8
- data/lib/spree/testing_support/capybara_ext.rb +11 -13
- data/lib/spree/testing_support/common_rake.rb +4 -4
- data/lib/spree/testing_support/controller_requests.rb +1 -1
- data/lib/spree/testing_support/extension_rake.rb +1 -2
- data/lib/spree/testing_support/factories/address_factory.rb +14 -3
- data/lib/spree/testing_support/factories/adjustment_reason_factory.rb +1 -1
- data/lib/spree/testing_support/factories/carton_factory.rb +2 -2
- data/lib/spree/testing_support/factories/credit_card_factory.rb +4 -0
- data/lib/spree/testing_support/factories/customer_return_factory.rb +4 -6
- data/lib/spree/testing_support/factories/line_item_factory.rb +1 -1
- data/lib/spree/testing_support/factories/order_factory.rb +10 -11
- data/lib/spree/testing_support/factories/payment_factory.rb +5 -0
- data/lib/spree/testing_support/factories/promotion_category_factory.rb +0 -1
- data/lib/spree/testing_support/factories/promotion_factory.rb +0 -1
- data/lib/spree/testing_support/factories/refund_factory.rb +1 -1
- data/lib/spree/testing_support/factories/reimbursement_factory.rb +1 -1
- data/lib/spree/testing_support/factories/return_item_factory.rb +1 -1
- data/lib/spree/testing_support/factories/shipping_method_factory.rb +5 -2
- data/lib/spree/testing_support/factories/state_factory.rb +17 -7
- data/lib/spree/testing_support/factories/stock_location_factory.rb +4 -4
- data/lib/spree/testing_support/factories/stock_transfer_factory.rb +1 -1
- data/lib/spree/testing_support/factories/store_credit_category_factory.rb +0 -1
- data/lib/spree/testing_support/factories/store_credit_type_factory.rb +0 -2
- data/lib/spree/testing_support/factories/tax_category_factory.rb +2 -2
- data/lib/spree/testing_support/factories/user_factory.rb +1 -1
- data/lib/spree/testing_support/factories/variant_factory.rb +1 -2
- data/lib/spree/testing_support/factories/zone_factory.rb +2 -1
- data/lib/spree/testing_support/i18n.rb +4 -5
- data/lib/spree/testing_support/order_walkthrough.rb +8 -9
- data/lib/spree/testing_support/preferences.rb +1 -1
- data/lib/spree/testing_support/sequences.rb +5 -4
- data/lib/tasks/core.rake +15 -19
- data/lib/tasks/email.rake +3 -3
- data/lib/tasks/exchanges.rake +12 -14
- data/lib/tasks/migrations/assure_store_on_orders.rake +38 -0
- data/lib/tasks/migrations/copy_order_bill_address_to_credit_card.rake +2 -2
- data/lib/tasks/migrations/copy_shipped_shipments_to_cartons.rake +1 -11
- data/lib/tasks/migrations/migrate_shipping_rate_taxes.rake +17 -0
- data/lib/tasks/migrations/migrate_user_addresses.rake +1 -1
- data/lib/tasks/order_capturing.rake +1 -1
- data/lib/tasks/upgrade.rake +11 -0
- data/script/rails +0 -1
- data/solidus_core.gemspec +6 -8
- data/spec/helpers/base_helper_spec.rb +15 -18
- data/spec/helpers/order_helper_spec.rb +2 -2
- data/spec/helpers/products_helper_spec.rb +43 -51
- data/spec/helpers/taxons_helper_spec.rb +1 -1
- data/spec/lib/i18n_spec.rb +11 -11
- data/spec/lib/search/base_spec.rb +12 -14
- data/spec/lib/search/variant_spec.rb +1 -0
- data/spec/lib/spree/core/controller_helpers/order_spec.rb +1 -7
- data/spec/lib/spree/core/controller_helpers/payment_parameters_spec.rb +26 -28
- data/spec/lib/spree/core/controller_helpers/pricing_spec.rb +63 -0
- data/spec/lib/spree/core/controller_helpers/search_spec.rb +4 -2
- data/spec/lib/spree/core/delegate_belongs_to_spec.rb +1 -1
- data/spec/lib/spree/core/importer/order_spec.rb +95 -90
- data/spec/lib/spree/core/role_configuration_spec.rb +16 -16
- data/spec/lib/spree/core/testing_support/factories/address_factory_spec.rb +35 -0
- data/spec/lib/spree/core/testing_support/factories/customer_return_factory_spec.rb +10 -1
- data/spec/lib/spree/core/testing_support/factories/order_factory_spec.rb +0 -1
- data/spec/lib/spree/core/testing_support/factories/shipping_method_factory_spec.rb +6 -1
- data/spec/lib/spree/core/testing_support/factories/state_factory_spec.rb +37 -1
- data/spec/lib/spree/core/testing_support/factories/stock_package_factory_spec.rb +2 -2
- data/spec/lib/spree/core/testing_support/factories/stock_packer_factory_spec.rb +1 -1
- data/spec/lib/spree/core/testing_support/factories/store_credit_event_factory_spec.rb +1 -2
- data/spec/lib/spree/core/testing_support/preferences_spec.rb +26 -0
- data/spec/lib/spree/core/unreturned_item_charger_spec.rb +7 -9
- data/spec/lib/spree/core/validators/email_spec.rb +8 -6
- data/spec/lib/spree/localized_number_spec.rb +1 -3
- data/spec/lib/spree/migrations_spec.rb +2 -2
- data/spec/lib/spree/money_spec.rb +75 -6
- data/spec/lib/tasks/exchanges_spec.rb +2 -12
- data/spec/lib/tasks/migrations/copy_shipped_shipments_to_cartons_spec.rb +0 -1
- data/spec/lib/tasks/order_capturing_spec.rb +1 -1
- data/spec/mailers/carton_mailer_spec.rb +3 -3
- data/spec/mailers/order_mailer_spec.rb +9 -11
- data/spec/mailers/reimbursement_mailer_spec.rb +2 -2
- data/spec/mailers/test_mailer_spec.rb +1 -1
- data/spec/models/spree/ability_spec.rb +4 -7
- data/spec/models/spree/address_spec.rb +32 -35
- data/spec/models/spree/adjustment_reason_spec.rb +0 -2
- data/spec/models/spree/adjustment_spec.rb +2 -2
- data/spec/models/spree/app_configuration_spec.rb +33 -3
- data/spec/models/spree/asset_spec.rb +1 -2
- data/spec/models/spree/calculator/default_tax_spec.rb +141 -52
- data/spec/models/spree/calculator/flat_percent_item_total_spec.rb +1 -1
- data/spec/models/spree/calculator/flexi_rate_spec.rb +6 -6
- data/spec/models/spree/calculator/percent_on_line_item_spec.rb +1 -1
- data/spec/models/spree/calculator/price_sack_spec.rb +2 -2
- data/spec/models/spree/calculator/refunds/default_refund_amount_spec.rb +9 -11
- data/spec/models/spree/calculator/shipping/flat_percent_item_total_spec.rb +4 -4
- data/spec/models/spree/calculator/shipping/flat_rate_spec.rb +2 -2
- data/spec/models/spree/calculator/shipping/flexi_rate_spec.rb +6 -7
- data/spec/models/spree/calculator/shipping/per_item_spec.rb +2 -2
- data/spec/models/spree/calculator/shipping/price_sack_spec.rb +2 -2
- data/spec/models/spree/calculator/tiered_flat_rate_spec.rb +1 -2
- data/spec/models/spree/calculator/tiered_percent_spec.rb +1 -1
- data/spec/models/spree/calculator_spec.rb +3 -8
- data/spec/models/spree/carton_spec.rb +1 -1
- data/spec/models/spree/classification_spec.rb +1 -1
- data/spec/models/spree/concerns/display_money_spec.rb +0 -1
- data/spec/models/spree/concerns/ordered_property_value_list_spec.rb +26 -1
- data/spec/models/spree/concerns/user_address_book_spec.rb +19 -12
- data/spec/models/spree/concerns/user_methods_spec.rb +1 -1
- data/spec/models/spree/country_spec.rb +52 -0
- data/spec/models/spree/credit_card_spec.rb +17 -12
- data/spec/models/spree/customer_return_spec.rb +27 -23
- data/spec/models/spree/exchange_spec.rb +2 -7
- data/spec/models/spree/gateway/bogus_simple.rb +2 -4
- data/spec/models/spree/gateway/bogus_spec.rb +4 -2
- data/spec/models/spree/gateway_spec.rb +8 -3
- data/spec/models/spree/inventory_unit_spec.rb +13 -14
- data/spec/models/spree/item_adjustments_spec.rb +36 -40
- data/spec/models/spree/line_item_spec.rb +92 -48
- data/spec/models/spree/option_type_spec.rb +1 -1
- data/spec/models/spree/option_value_spec.rb +1 -1
- data/spec/models/spree/order/address_spec.rb +1 -1
- data/spec/models/spree/order/callbacks_spec.rb +3 -3
- data/spec/models/spree/order/checkout_spec.rb +55 -48
- data/spec/models/spree/order/finalizing_spec.rb +8 -9
- data/spec/models/spree/order/payment_spec.rb +20 -20
- data/spec/models/spree/order/risk_assessment_spec.rb +1 -1
- data/spec/models/spree/order/state_machine_spec.rb +40 -131
- data/spec/models/spree/order/tax_spec.rb +11 -12
- data/spec/models/spree/order/totals_spec.rb +3 -3
- data/spec/models/spree/order/updating_spec.rb +2 -2
- data/spec/models/spree/order/validations_spec.rb +2 -2
- data/spec/models/spree/order_cancellations_spec.rb +1 -1
- data/spec/models/spree/order_capturing_spec.rb +1 -1
- data/spec/models/spree/order_contents_spec.rb +10 -11
- data/spec/models/spree/order_inventory_spec.rb +11 -11
- data/spec/models/spree/order_merger_spec.rb +1 -0
- data/spec/models/spree/order_shipping_spec.rb +8 -10
- data/spec/models/spree/order_spec.rb +137 -124
- data/spec/models/spree/order_stock_location_spec.rb +2 -2
- data/spec/models/spree/order_update_attributes_spec.rb +6 -10
- data/spec/models/spree/order_updater_spec.rb +4 -8
- data/spec/models/spree/payment_create_spec.rb +11 -12
- data/spec/models/spree/payment_method/store_credit_spec.rb +10 -6
- data/spec/models/spree/payment_method_spec.rb +4 -5
- data/spec/models/spree/payment_spec.rb +61 -69
- data/spec/models/spree/permission_sets/base_spec.rb +1 -1
- data/spec/models/spree/permission_sets/configuration_display.rb +0 -1
- data/spec/models/spree/permission_sets/configuration_management_spec.rb +0 -1
- data/spec/models/spree/permission_sets/dashboard_display_spec.rb +0 -1
- data/spec/models/spree/permission_sets/order_display_spec.rb +0 -1
- data/spec/models/spree/permission_sets/order_management_spec.rb +0 -1
- data/spec/models/spree/permission_sets/product_display_spec.rb +0 -1
- data/spec/models/spree/permission_sets/product_management_spec.rb +0 -1
- data/spec/models/spree/permission_sets/promotion_display_spec.rb +0 -1
- data/spec/models/spree/permission_sets/promotion_management_spec.rb +0 -1
- data/spec/models/spree/permission_sets/report_display_spec.rb +0 -1
- data/spec/models/spree/permission_sets/restricted_stock_display_spec.rb +0 -1
- data/spec/models/spree/permission_sets/restricted_stock_management_spec.rb +0 -1
- data/spec/models/spree/permission_sets/restricted_stock_transfer_display_spec.rb +0 -1
- data/spec/models/spree/permission_sets/restricted_stock_transfer_management_spec.rb +6 -6
- data/spec/models/spree/permission_sets/stock_display_spec.rb +0 -1
- data/spec/models/spree/permission_sets/stock_management_spec.rb +0 -1
- data/spec/models/spree/permission_sets/stock_transfer_display_spec.rb +0 -1
- data/spec/models/spree/permission_sets/stock_transfer_management_spec.rb +0 -2
- data/spec/models/spree/permission_sets/user_display_spec.rb +0 -1
- data/spec/models/spree/permission_sets/user_management_spec.rb +0 -1
- data/spec/models/spree/preference_spec.rb +1 -4
- data/spec/models/spree/preferences/configuration_spec.rb +2 -7
- data/spec/models/spree/preferences/preferable_spec.rb +13 -24
- data/spec/models/spree/preferences/scoped_store_spec.rb +1 -1
- data/spec/models/spree/preferences/static_model_preferences_spec.rb +5 -6
- data/spec/models/spree/preferences/statically_configurable_spec.rb +2 -6
- data/spec/models/spree/preferences/store_spec.rb +2 -3
- data/spec/models/spree/price_spec.rb +6 -6
- data/spec/models/spree/product/scopes_spec.rb +20 -20
- data/spec/models/spree/product_duplicator_spec.rb +16 -29
- data/spec/models/spree/product_filter_spec.rb +2 -2
- data/spec/models/spree/product_spec.rb +53 -20
- data/spec/models/spree/promotion/actions/create_adjustment_spec.rb +10 -12
- data/spec/models/spree/promotion/actions/create_item_adjustments_spec.rb +4 -4
- data/spec/models/spree/promotion/actions/create_quantity_adjustments_spec.rb +9 -9
- data/spec/models/spree/promotion/actions/free_shipping_spec.rb +1 -1
- data/spec/models/spree/promotion/rules/first_order_spec.rb +10 -10
- data/spec/models/spree/promotion/rules/item_total_spec.rb +63 -19
- data/spec/models/spree/promotion/rules/one_use_per_user_spec.rb +1 -1
- data/spec/models/spree/promotion/rules/product_spec.rb +8 -8
- data/spec/models/spree/promotion/rules/taxon_spec.rb +4 -4
- data/spec/models/spree/promotion/rules/user_logged_in_spec.rb +3 -4
- data/spec/models/spree/promotion/rules/user_spec.rb +7 -7
- data/spec/models/spree/promotion_builder_spec.rb +10 -8
- data/spec/models/spree/promotion_category_spec.rb +1 -1
- data/spec/models/spree/promotion_code/code_builder_spec.rb +1 -3
- data/spec/models/spree/promotion_code_spec.rb +8 -7
- data/spec/models/spree/promotion_handler/cart_spec.rb +1 -1
- data/spec/models/spree/promotion_handler/coupon_spec.rb +28 -28
- data/spec/models/spree/promotion_handler/page_spec.rb +6 -7
- data/spec/models/spree/promotion_rule_spec.rb +1 -2
- data/spec/models/spree/promotion_spec.rb +25 -21
- data/spec/models/spree/refund_spec.rb +8 -11
- data/spec/models/spree/reimbursement/credit_spec.rb +2 -2
- data/spec/models/spree/reimbursement/reimbursement_type_engine_spec.rb +6 -4
- data/spec/models/spree/reimbursement/reimbursement_type_validator_spec.rb +1 -1
- data/spec/models/spree/reimbursement_performer_spec.rb +2 -2
- data/spec/models/spree/reimbursement_spec.rb +9 -11
- data/spec/models/spree/reimbursement_tax_calculator_spec.rb +4 -5
- data/spec/models/spree/reimbursement_type/credit_spec.rb +2 -2
- data/spec/models/spree/reimbursement_type/exchange_spec.rb +2 -3
- data/spec/models/spree/reimbursement_type/original_payment_spec.rb +4 -4
- data/spec/models/spree/reimbursement_type/store_credit_spec.rb +1 -1
- data/spec/models/spree/return_authorization_spec.rb +18 -21
- data/spec/models/spree/return_item/eligibility_validator/default_spec.rb +7 -7
- data/spec/models/spree/return_item/eligibility_validator/inventory_shipped_spec.rb +0 -1
- data/spec/models/spree/return_item/eligibility_validator/no_reimbursements_spec.rb +0 -1
- data/spec/models/spree/return_item/eligibility_validator/rma_required_spec.rb +1 -1
- data/spec/models/spree/return_item/eligibility_validator/time_since_purchase_spec.rb +1 -1
- data/spec/models/spree/return_item/exchange_variant_eligibility/same_option_value_spec.rb +1 -2
- data/spec/models/spree/return_item/exchange_variant_eligibility/same_product_spec.rb +3 -5
- data/spec/models/spree/return_item_spec.rb +29 -31
- data/spec/models/spree/returns_calculator_spec.rb +1 -1
- data/spec/models/spree/shipment_spec.rb +59 -43
- data/spec/models/spree/shipping_calculator_spec.rb +3 -3
- data/spec/models/spree/shipping_manifest_spec.rb +8 -7
- data/spec/models/spree/shipping_method_spec.rb +149 -24
- data/spec/models/spree/shipping_rate_spec.rb +116 -76
- data/spec/models/spree/shipping_rate_tax_spec.rb +83 -0
- data/spec/models/spree/state_spec.rb +2 -2
- data/spec/models/spree/stock/availability_validator_spec.rb +4 -4
- data/spec/models/spree/stock/coordinator_spec.rb +33 -49
- data/spec/models/spree/stock/differentiator_spec.rb +1 -1
- data/spec/models/spree/stock/estimator_spec.rb +83 -54
- data/spec/models/spree/stock/inventory_unit_builder_spec.rb +1 -3
- data/spec/models/spree/stock/package_spec.rb +27 -10
- data/spec/models/spree/stock/packer_spec.rb +4 -4
- data/spec/models/spree/stock/prioritizer_spec.rb +1 -1
- data/spec/models/spree/stock/quantifier_spec.rb +2 -6
- data/spec/models/spree/stock/splitter/backordered_spec.rb +1 -1
- data/spec/models/spree/stock/splitter/base_spec.rb +1 -2
- data/spec/models/spree/stock/splitter/shipping_category_spec.rb +1 -3
- data/spec/models/spree/stock/splitter/weight_spec.rb +3 -3
- data/spec/models/spree/stock_item_spec.rb +16 -16
- data/spec/models/spree/stock_location_spec.rb +6 -8
- data/spec/models/spree/stock_movement_spec.rb +1 -1
- data/spec/models/spree/stock_transfer_spec.rb +1 -3
- data/spec/models/spree/store_credit_category_spec.rb +1 -1
- data/spec/models/spree/store_credit_event_spec.rb +3 -5
- data/spec/models/spree/store_credit_spec.rb +24 -23
- data/spec/models/spree/store_spec.rb +21 -2
- data/spec/models/spree/tax/item_adjuster_spec.rb +74 -0
- data/spec/models/spree/tax/order_adjuster_spec.rb +49 -0
- data/spec/models/spree/tax/shipping_rate_taxer_spec.rb +50 -0
- data/spec/models/spree/tax/tax_location_spec.rb +68 -0
- data/spec/models/spree/tax/taxation_integration_spec.rb +787 -0
- data/spec/models/spree/tax_category_spec.rb +2 -2
- data/spec/models/spree/tax_rate_spec.rb +185 -536
- data/spec/models/spree/taxon_spec.rb +69 -5
- data/spec/models/spree/taxonomy_spec.rb +2 -3
- data/spec/models/spree/tracker_spec.rb +1 -1
- data/spec/models/spree/transfer_item_spec.rb +1 -1
- data/spec/models/spree/unit_cancel_spec.rb +9 -14
- data/spec/models/spree/user_spec.rb +19 -24
- data/spec/models/spree/validations/db_maximum_length_validator_spec.rb +1 -1
- data/spec/models/spree/variant/pricer_spec.rb +48 -0
- data/spec/models/spree/variant/pricing_options_spec.rb +106 -0
- data/spec/models/spree/variant/scopes_spec.rb +31 -8
- data/spec/models/spree/variant_property_rule_spec.rb +1 -1
- data/spec/models/spree/variant_spec.rb +166 -52
- data/spec/models/spree/zone_spec.rb +135 -10
- data/spec/support/big_decimal.rb +1 -1
- data/spec/support/concerns/working_factories.rb +2 -2
- data/spec/support/dummy_ability.rb +0 -1
- metadata +55 -44
- data/lib/generators/spree/dummy/templates/initializers/devise.rb +0 -3
- data/lib/spree/migration_helpers.rb +0 -19
- data/vendor/assets/stylesheets/skeleton.css +0 -242
data/config/locales/en.yml
CHANGED
|
@@ -1,55 +1,105 @@
|
|
|
1
1
|
en:
|
|
2
|
+
activemodel:
|
|
3
|
+
attributes:
|
|
4
|
+
spree/order_cancellations:
|
|
5
|
+
quantity: Quantity
|
|
6
|
+
state: State
|
|
7
|
+
shipment: Shipment
|
|
8
|
+
cancel: Cancel
|
|
2
9
|
activerecord:
|
|
3
10
|
attributes:
|
|
4
11
|
spree/address:
|
|
5
|
-
address1: Address
|
|
6
|
-
address2: Address (
|
|
12
|
+
address1: Street Address
|
|
13
|
+
address2: Street Address (cont'd)
|
|
7
14
|
city: City
|
|
8
|
-
|
|
15
|
+
company: Company
|
|
9
16
|
firstname: First Name
|
|
10
17
|
lastname: Last Name
|
|
11
18
|
phone: Phone
|
|
12
|
-
state: State
|
|
13
19
|
zipcode: Zip Code
|
|
20
|
+
spree/adjustment:
|
|
21
|
+
adjustable: Adjustable
|
|
22
|
+
amount: Amount
|
|
23
|
+
label: Description
|
|
24
|
+
name: Name
|
|
25
|
+
state: State
|
|
26
|
+
adjustment_reason_id: Reason
|
|
27
|
+
spree/adjustment_reason:
|
|
28
|
+
active: Active
|
|
29
|
+
code: Code
|
|
30
|
+
name: Name
|
|
31
|
+
state: State
|
|
14
32
|
spree/calculator/tiered_flat_rate:
|
|
15
33
|
preferred_base_amount: Base Amount
|
|
16
34
|
preferred_tiers: Tiers
|
|
17
35
|
spree/calculator/tiered_percent:
|
|
18
36
|
preferred_base_percent: Base Percent
|
|
19
37
|
preferred_tiers: Tiers
|
|
38
|
+
spree/carton:
|
|
39
|
+
tracking: Tracking
|
|
20
40
|
spree/country:
|
|
21
41
|
iso: ISO
|
|
22
42
|
iso3: ISO3
|
|
23
43
|
iso_name: ISO Name
|
|
24
44
|
name: Name
|
|
25
45
|
numcode: ISO Code
|
|
46
|
+
states_required: States Required
|
|
26
47
|
spree/credit_card:
|
|
27
48
|
base: ''
|
|
28
|
-
cc_type:
|
|
49
|
+
cc_type: Brand
|
|
50
|
+
card_code: Card Code
|
|
51
|
+
expiration: Expiration
|
|
29
52
|
month: Month
|
|
30
|
-
|
|
53
|
+
name: Name
|
|
54
|
+
number: Card Number
|
|
31
55
|
verification_value: Verification Value
|
|
32
56
|
year: Year
|
|
57
|
+
spree/customer_return:
|
|
58
|
+
number: Return Number
|
|
59
|
+
pre_tax_total: Pre-Tax Total
|
|
60
|
+
total: Total
|
|
61
|
+
created_at: "Date/Time"
|
|
62
|
+
reimbursement_status: Reimbursement status
|
|
33
63
|
name: Name
|
|
64
|
+
spree/image:
|
|
65
|
+
alt: Alternative Text
|
|
66
|
+
attachment: Filename
|
|
34
67
|
spree/inventory_unit:
|
|
35
68
|
state: State
|
|
69
|
+
spree/legacy_user:
|
|
70
|
+
email: Email
|
|
71
|
+
password: Password
|
|
72
|
+
password_confirmation: Password Confirmation
|
|
36
73
|
spree/line_item:
|
|
74
|
+
description: Item Description
|
|
75
|
+
name: Name
|
|
37
76
|
price: Price
|
|
38
77
|
quantity: Quantity
|
|
78
|
+
total: Total price
|
|
39
79
|
spree/option_type:
|
|
40
80
|
name: Name
|
|
41
81
|
presentation: Presentation
|
|
82
|
+
spree/option_value:
|
|
83
|
+
name: Name
|
|
84
|
+
presentation: Presentation
|
|
42
85
|
spree/order:
|
|
86
|
+
additional_tax_total: Tax
|
|
87
|
+
approved_at: Approved at
|
|
88
|
+
approver_id: Approver
|
|
89
|
+
canceled_at: Canceled at
|
|
90
|
+
canceler_id: Canceler
|
|
43
91
|
checkout_complete: Checkout Complete
|
|
44
92
|
completed_at: Completed At
|
|
45
93
|
coupon_code: Coupon Code
|
|
46
94
|
created_at: Order Date
|
|
47
95
|
email: Customer E-Mail
|
|
96
|
+
included_tax_total: Tax (incl.)
|
|
48
97
|
ip_address: IP Address
|
|
49
98
|
item_total: Item Total
|
|
50
99
|
number: Number
|
|
51
100
|
payment_state: Payment State
|
|
52
101
|
shipment_state: Shipment State
|
|
102
|
+
shipment_total: Ship Total
|
|
53
103
|
special_instructions: Special Instructions
|
|
54
104
|
state: State
|
|
55
105
|
total: Total
|
|
@@ -72,28 +122,53 @@ en:
|
|
|
72
122
|
zipcode: Shipping address zipcode
|
|
73
123
|
spree/payment:
|
|
74
124
|
amount: Amount
|
|
125
|
+
created_at: Date/Time
|
|
126
|
+
number: Identifier
|
|
127
|
+
response_code: Transaction ID
|
|
128
|
+
state: Payment State
|
|
75
129
|
spree/payment_method:
|
|
130
|
+
active: Active
|
|
131
|
+
auto_capture: Auto Capture
|
|
132
|
+
description: Description
|
|
133
|
+
display_on: Display
|
|
76
134
|
name: Name
|
|
135
|
+
preference_source: Preference Source
|
|
136
|
+
type: Provider
|
|
77
137
|
spree/product:
|
|
78
138
|
available_on: Available On
|
|
79
139
|
cost_currency: Cost Currency
|
|
80
140
|
cost_price: Cost Price
|
|
81
141
|
description: Description
|
|
142
|
+
depth: Depth
|
|
143
|
+
height: Height
|
|
82
144
|
master_price: Master Price
|
|
145
|
+
meta_description: Meta Description
|
|
146
|
+
meta_keywords: Meta Keywords
|
|
147
|
+
meta_title: Meta Title
|
|
83
148
|
name: Name
|
|
84
149
|
on_hand: On Hand
|
|
150
|
+
price: Master Price
|
|
151
|
+
promotionable: Promotable
|
|
85
152
|
shipping_category: Shipping Category
|
|
153
|
+
slug: Slug
|
|
86
154
|
tax_category: Tax Category
|
|
155
|
+
weight: Weight
|
|
156
|
+
width: Width
|
|
157
|
+
spree/product_property:
|
|
158
|
+
value: Value
|
|
87
159
|
spree/promotion:
|
|
88
160
|
advertise: Advertise
|
|
161
|
+
apply_automatically: Apply Automatically
|
|
89
162
|
code: Code
|
|
90
163
|
description: Description
|
|
91
164
|
event_name: Event Name
|
|
92
|
-
expires_at:
|
|
165
|
+
expires_at: Expiration
|
|
93
166
|
name: Name
|
|
94
167
|
path: Path
|
|
95
|
-
|
|
96
|
-
|
|
168
|
+
per_code_usage_limit: Per Code Usage Limit
|
|
169
|
+
promotion_uses: Promotion Uses
|
|
170
|
+
starts_at: Starts
|
|
171
|
+
usage_limit: Overall Usage Limit
|
|
97
172
|
spree/promotion_category:
|
|
98
173
|
name: Name
|
|
99
174
|
spree/property:
|
|
@@ -101,10 +176,68 @@ en:
|
|
|
101
176
|
presentation: Presentation
|
|
102
177
|
spree/prototype:
|
|
103
178
|
name: Name
|
|
179
|
+
spree/refund:
|
|
180
|
+
amount: Amount
|
|
181
|
+
description: Description
|
|
182
|
+
refund_reason_id: Reason
|
|
183
|
+
spree/refund_reason:
|
|
184
|
+
active: Active
|
|
185
|
+
name: Name
|
|
186
|
+
code: Code
|
|
187
|
+
spree/reimbursement:
|
|
188
|
+
created_at: "Date/Time"
|
|
189
|
+
number: Number
|
|
190
|
+
reimbursement_status: Status
|
|
191
|
+
total: Total
|
|
192
|
+
spree/reimbursement_credit:
|
|
193
|
+
amount: Amount
|
|
194
|
+
spree/reimbursement_type:
|
|
195
|
+
name: Name
|
|
196
|
+
type: Type
|
|
197
|
+
created_at: "Date/Time"
|
|
104
198
|
spree/return_authorization:
|
|
105
199
|
amount: Amount
|
|
200
|
+
pre_tax_total: Pre-Tax Total
|
|
201
|
+
spree/return_item:
|
|
202
|
+
acceptance_status: Acceptance status
|
|
203
|
+
acceptance_status_errors: Acceptance errors
|
|
204
|
+
amount: Amount Before Sales Tax
|
|
205
|
+
charged: Charged
|
|
206
|
+
exchange_variant: Exchange for
|
|
207
|
+
inventory_unit_state: State
|
|
208
|
+
item_received?: "Item Received?"
|
|
209
|
+
override_reimbursement_type_id: Reimbursement Type Override
|
|
210
|
+
preferred_reimbursement_type_id: Preferred Reimbursement Type
|
|
211
|
+
reception_status: Reception Status
|
|
212
|
+
resellable: "Resellable?"
|
|
213
|
+
return_reason: Reason
|
|
214
|
+
total: Total
|
|
215
|
+
spree/return_reason:
|
|
216
|
+
name: Name
|
|
217
|
+
active: Active
|
|
218
|
+
created_at: "Date/Time"
|
|
219
|
+
memo: Memo
|
|
220
|
+
number: RMA Number
|
|
221
|
+
state: State
|
|
106
222
|
spree/role:
|
|
107
223
|
name: Name
|
|
224
|
+
spree/shipping_category:
|
|
225
|
+
name: Name
|
|
226
|
+
spree/shipment:
|
|
227
|
+
tracking: Tracking Number
|
|
228
|
+
spree/shipping_method:
|
|
229
|
+
admin_name: Internal Name
|
|
230
|
+
carrier: Carrier
|
|
231
|
+
code: Code
|
|
232
|
+
display_on: Display
|
|
233
|
+
name: Name
|
|
234
|
+
service_level: Service Level
|
|
235
|
+
tracking_url: Tracking URL
|
|
236
|
+
spree/shipping_rate:
|
|
237
|
+
label: Label
|
|
238
|
+
tax_rate: Tax Rate
|
|
239
|
+
shipping_rate: Shipping Rate
|
|
240
|
+
amount: Amount
|
|
108
241
|
spree/state:
|
|
109
242
|
abbr: Abbreviation
|
|
110
243
|
name: Name
|
|
@@ -116,20 +249,79 @@ en:
|
|
|
116
249
|
name: Site Name
|
|
117
250
|
mail_from_address: Mail From Address
|
|
118
251
|
spree/store_credit:
|
|
119
|
-
|
|
252
|
+
amount: Amount
|
|
253
|
+
amount_authorized: Amount Authorized
|
|
254
|
+
amount_credited: Amount Credited
|
|
255
|
+
amount_used: Amount Used
|
|
256
|
+
category_id: Credit Type
|
|
257
|
+
created_at: Issued On
|
|
258
|
+
created_by_id: Created By
|
|
259
|
+
invalidated_at: Invalidated
|
|
260
|
+
memo: Memo
|
|
261
|
+
spree/store_credit_event:
|
|
262
|
+
action: Action
|
|
263
|
+
user_total_amount: Total Unused
|
|
264
|
+
spree/store_credit_update_reason:
|
|
265
|
+
name: Reason For Updating
|
|
266
|
+
spree/stock_item:
|
|
267
|
+
count_on_hand: Count On Hand
|
|
268
|
+
spree/stock_location:
|
|
269
|
+
admin_name: Internal Name
|
|
270
|
+
active: Active
|
|
271
|
+
address1: Street Address
|
|
272
|
+
address2: Street Address (cont'd)
|
|
273
|
+
backorderable_default: Backorderable default
|
|
274
|
+
check_stock_on_transfer: Check stock on transfer
|
|
275
|
+
city: City
|
|
276
|
+
code: Code
|
|
277
|
+
country_id: Country
|
|
278
|
+
default: Default
|
|
279
|
+
fulfillable: Fulfillable
|
|
280
|
+
internal_name: Internal Name
|
|
281
|
+
name: Name
|
|
282
|
+
phone: Phone
|
|
283
|
+
propagate_all_variants: Propagate all variants
|
|
284
|
+
restock_inventory: Restock Inventory
|
|
285
|
+
state_id: State
|
|
286
|
+
zipcode: Zip
|
|
287
|
+
spree/stock_movement:
|
|
288
|
+
action: Action
|
|
289
|
+
quantity: Quantity
|
|
290
|
+
spree/stock_transfer:
|
|
291
|
+
created_at: Created At
|
|
292
|
+
created_by_id: Created By
|
|
293
|
+
description: Description
|
|
294
|
+
destination_location_id: Destination Location
|
|
295
|
+
finalized_at: Finalized At
|
|
296
|
+
finalized_by_id: Finalized By
|
|
297
|
+
number: Transfer Number
|
|
298
|
+
shipped_at: Shipped At
|
|
299
|
+
source_location_id: Source Location
|
|
300
|
+
tracking_number: Tracking Number
|
|
120
301
|
spree/tax_category:
|
|
121
302
|
description: Description
|
|
122
303
|
name: Name
|
|
304
|
+
is_default: Default
|
|
305
|
+
tax_code: Tax Code
|
|
123
306
|
spree/tax_rate:
|
|
124
307
|
amount: Rate
|
|
125
|
-
included_in_price: Included
|
|
126
|
-
|
|
308
|
+
included_in_price: Included In Price
|
|
309
|
+
name: Name
|
|
310
|
+
show_rate_in_label: Show Rate In Label
|
|
127
311
|
spree/taxon:
|
|
312
|
+
description: Description
|
|
313
|
+
icon: Icon
|
|
314
|
+
meta_description: Meta Description
|
|
315
|
+
meta_keywords: Meta Keywords
|
|
316
|
+
meta_title: Meta Title
|
|
128
317
|
name: Name
|
|
129
318
|
permalink: Permalink
|
|
130
319
|
position: Position
|
|
131
320
|
spree/taxonomy:
|
|
132
321
|
name: Name
|
|
322
|
+
spree/tracker:
|
|
323
|
+
analytics_id: Analytics ID
|
|
324
|
+
active: Active
|
|
133
325
|
spree/user:
|
|
134
326
|
email: Email
|
|
135
327
|
password: Password
|
|
@@ -141,18 +333,26 @@ en:
|
|
|
141
333
|
height: Height
|
|
142
334
|
price: Price
|
|
143
335
|
sku: SKU
|
|
336
|
+
tax_category: Variant tax category
|
|
144
337
|
weight: Weight
|
|
145
338
|
width: Width
|
|
146
339
|
spree/zone:
|
|
147
340
|
description: Description
|
|
148
341
|
name: Name
|
|
342
|
+
default_tax: Default Tax Zone
|
|
149
343
|
models:
|
|
150
344
|
spree/address:
|
|
151
345
|
one: Address
|
|
152
346
|
other: Addresses
|
|
347
|
+
spree/adjustment:
|
|
348
|
+
one: Adjustment
|
|
349
|
+
other: Adjustments
|
|
153
350
|
spree/adjustment_reason:
|
|
154
351
|
one: Adjustment Reason
|
|
155
352
|
other: Adjustment Reasons
|
|
353
|
+
spree/calculator:
|
|
354
|
+
one: Calculator
|
|
355
|
+
other: Calculators
|
|
156
356
|
spree/country:
|
|
157
357
|
one: Country
|
|
158
358
|
other: Countries
|
|
@@ -162,12 +362,21 @@ en:
|
|
|
162
362
|
spree/customer_return:
|
|
163
363
|
one: Customer Return
|
|
164
364
|
other: Customer Returns
|
|
365
|
+
spree/exchange:
|
|
366
|
+
one: Exchange
|
|
367
|
+
other: Exchanges
|
|
165
368
|
spree/inventory_unit:
|
|
166
369
|
one: Inventory Unit
|
|
167
370
|
other: Inventory Units
|
|
371
|
+
spree/legacy_user:
|
|
372
|
+
one: User
|
|
373
|
+
other: Users
|
|
168
374
|
spree/line_item:
|
|
169
375
|
one: Line Item
|
|
170
376
|
other: Line Items
|
|
377
|
+
spree/log_entry:
|
|
378
|
+
one: Log Entry
|
|
379
|
+
other: Log Entries
|
|
171
380
|
spree/option_type:
|
|
172
381
|
one: Option Type
|
|
173
382
|
other: Option Types
|
|
@@ -180,12 +389,18 @@ en:
|
|
|
180
389
|
spree/payment:
|
|
181
390
|
one: Payment
|
|
182
391
|
other: Payments
|
|
392
|
+
spree/payment_capture_event:
|
|
393
|
+
one: Capture Event
|
|
394
|
+
other: Capture Events
|
|
183
395
|
spree/payment_method:
|
|
184
396
|
one: Payment Method
|
|
185
397
|
other: Payment Methods
|
|
186
398
|
spree/product:
|
|
187
399
|
one: Product
|
|
188
400
|
other: Products
|
|
401
|
+
spree/product_property:
|
|
402
|
+
one: Product Property
|
|
403
|
+
other: Product Properties
|
|
189
404
|
spree/promotion:
|
|
190
405
|
one: Promotion
|
|
191
406
|
other: Promotions
|
|
@@ -198,6 +413,9 @@ en:
|
|
|
198
413
|
spree/prototype:
|
|
199
414
|
one: Prototype
|
|
200
415
|
other: Prototypes
|
|
416
|
+
spree/refund:
|
|
417
|
+
one: Refund
|
|
418
|
+
other: Refunds
|
|
201
419
|
spree/refund_reason:
|
|
202
420
|
one: Refund Reason
|
|
203
421
|
other: Refund Reasons
|
|
@@ -229,6 +447,9 @@ en:
|
|
|
229
447
|
one: State
|
|
230
448
|
other: States
|
|
231
449
|
spree/stock: stock
|
|
450
|
+
spree/stock_item:
|
|
451
|
+
one: Stock Item
|
|
452
|
+
other: Stock Items
|
|
232
453
|
spree/stock_movement:
|
|
233
454
|
one: Stock Movement
|
|
234
455
|
other: Stock Movements
|
|
@@ -238,6 +459,9 @@ en:
|
|
|
238
459
|
spree/stock_transfer:
|
|
239
460
|
one: Stock Transfer
|
|
240
461
|
other: Stock Transfers
|
|
462
|
+
spree/store_credit_category:
|
|
463
|
+
one: Category
|
|
464
|
+
other: Categories
|
|
241
465
|
spree/tax_category:
|
|
242
466
|
one: Tax Category
|
|
243
467
|
other: Tax Categories
|
|
@@ -251,8 +475,8 @@ en:
|
|
|
251
475
|
one: Taxonomy
|
|
252
476
|
other: Taxonomies
|
|
253
477
|
spree/tracker:
|
|
254
|
-
one: Tracker
|
|
255
|
-
other: Trackers
|
|
478
|
+
one: Analytics Tracker
|
|
479
|
+
other: Analytics Trackers
|
|
256
480
|
spree/transfer_item:
|
|
257
481
|
one: Transfer Item
|
|
258
482
|
other: Transfer Items
|
|
@@ -389,9 +613,11 @@ en:
|
|
|
389
613
|
account_updated: Account updated
|
|
390
614
|
action: Action
|
|
391
615
|
actions:
|
|
616
|
+
add: Add
|
|
392
617
|
cancel: Cancel
|
|
393
618
|
continue: Continue
|
|
394
619
|
create: Create
|
|
620
|
+
delete: Delete
|
|
395
621
|
destroy: Destroy
|
|
396
622
|
edit: Edit
|
|
397
623
|
list: List
|
|
@@ -399,8 +625,12 @@ en:
|
|
|
399
625
|
new: New
|
|
400
626
|
refund: Refund
|
|
401
627
|
receive: Receive
|
|
628
|
+
remove: Remove
|
|
402
629
|
save: Save
|
|
630
|
+
ship: ship
|
|
403
631
|
update: Update
|
|
632
|
+
split: Split
|
|
633
|
+
ship: ship
|
|
404
634
|
activate: Activate
|
|
405
635
|
active: Active
|
|
406
636
|
add: Add
|
|
@@ -430,6 +660,16 @@ en:
|
|
|
430
660
|
adjustable: Adjustable
|
|
431
661
|
adjustment: Adjustment
|
|
432
662
|
adjustment_amount: Amount
|
|
663
|
+
adjustment_labels:
|
|
664
|
+
tax_rates:
|
|
665
|
+
sales_tax: '%{name}'
|
|
666
|
+
vat: '%{name} (Included in Price)'
|
|
667
|
+
sales_tax_with_rate: '%{name} %{amount}'
|
|
668
|
+
vat_with_rate: '%{name} %{amount} (Included in Price)'
|
|
669
|
+
sales_tax_refund: 'Refund: %{name}'
|
|
670
|
+
vat_refund: 'Refund: %{name} (Included in Price)'
|
|
671
|
+
sales_tax_refund_with_rate: 'Refund: %{name} %{amount}'
|
|
672
|
+
vat_refund_with_rate: 'Refund: %{name} %{amount} (Included in Price)'
|
|
433
673
|
adjustment_reasons: Adjustment Reasons
|
|
434
674
|
adjustment_successfully_closed: Adjustment has been successfully closed!
|
|
435
675
|
adjustment_successfully_opened: Adjustment has been successfully opened!
|
|
@@ -437,15 +677,27 @@ en:
|
|
|
437
677
|
adjustments: Adjustments
|
|
438
678
|
admin:
|
|
439
679
|
tab:
|
|
680
|
+
areas: Areas
|
|
681
|
+
checkout: Checkout
|
|
440
682
|
configuration: Configuration
|
|
683
|
+
general: General
|
|
441
684
|
option_types: Option Types
|
|
442
685
|
orders: Orders
|
|
443
686
|
overview: Overview
|
|
687
|
+
payments: Payments
|
|
444
688
|
products: Products
|
|
445
689
|
promotions: Promotions
|
|
690
|
+
promotion_categories: Promotion Categories
|
|
446
691
|
properties: Properties
|
|
447
692
|
prototypes: Prototypes
|
|
448
693
|
reports: Reports
|
|
694
|
+
rma: RMA
|
|
695
|
+
settings: Settings
|
|
696
|
+
shipping: Shipping
|
|
697
|
+
stock: Stock
|
|
698
|
+
stock_items: Management
|
|
699
|
+
stock_transfers: Transfers
|
|
700
|
+
taxes: Taxes
|
|
449
701
|
taxonomies: Taxonomies
|
|
450
702
|
taxons: Taxons
|
|
451
703
|
users: Users
|
|
@@ -461,37 +713,37 @@ en:
|
|
|
461
713
|
user_information: User Information
|
|
462
714
|
store_credits:
|
|
463
715
|
add: "Add store credit"
|
|
464
|
-
|
|
465
|
-
|
|
466
|
-
|
|
467
|
-
invalidate_store_credit: "Invalidating store credit"
|
|
716
|
+
amount_authorized: "Amount Authorized"
|
|
717
|
+
amount_credited: "Amount Credited"
|
|
718
|
+
amount_used: "Amount Used"
|
|
468
719
|
back_to_edit: "Back to edit"
|
|
469
720
|
back_to_user_list: "Back to user list"
|
|
470
721
|
back_to_store_credit_list: "Store credit list"
|
|
471
722
|
change_amount: "Change amount"
|
|
472
|
-
credit_type: "Credit type"
|
|
473
|
-
credited_html_header: "Amount Credited"
|
|
474
|
-
current_balance: "Current balance"
|
|
475
|
-
used_html_header: "Amount Used"
|
|
476
|
-
authed_html_header: "Amount Authorized"
|
|
477
|
-
type_html_header: "Credit Type"
|
|
478
723
|
created_by: "Created By"
|
|
724
|
+
credit_type: "Credit type"
|
|
725
|
+
current_balance: "Current balance:"
|
|
726
|
+
edit: "Editing store credit"
|
|
727
|
+
edit_amount: "Editing store credit amount"
|
|
479
728
|
history: "Store credit history"
|
|
729
|
+
invalidate_store_credit: "Invalidating store credit"
|
|
480
730
|
invalidated: "Invalidated"
|
|
481
731
|
issued_on: "Issued On"
|
|
732
|
+
new: "New store credit"
|
|
733
|
+
no_store_credit_selected: "No store credit was selected"
|
|
482
734
|
payment_originator: "Payment - Order #%{order_number}"
|
|
483
735
|
reason_for_updating: "Reason for updating"
|
|
484
736
|
refund_originator: "Refund - Order #%{order_number}"
|
|
737
|
+
resource_name: "store credits"
|
|
485
738
|
user_originator: "User - %{email}"
|
|
486
|
-
select_reason: "Select a reason for this store credit"
|
|
487
|
-
select_amount_update_reason: "Select a reason for updating the amount"
|
|
488
|
-
total_unused: "Total<br/>unused"
|
|
489
739
|
unable_to_create: "Unable to create store credit"
|
|
490
740
|
unable_to_update: "Unable to update store credit"
|
|
491
741
|
unable_to_delete: "Unable to delete store credit"
|
|
492
742
|
unable_to_invalidate: "Unable to invalidate store credit"
|
|
493
|
-
|
|
494
|
-
|
|
743
|
+
select_reason: "Select a reason for this store credit"
|
|
744
|
+
select_amount_update_reason: "Select a reason for updating the amount"
|
|
745
|
+
total_unused: "Total unused"
|
|
746
|
+
type_html_header: "Credit Type"
|
|
495
747
|
errors:
|
|
496
748
|
cannot_change_used_store_credit: "Store credit that has been claimed cannot be changed"
|
|
497
749
|
cannot_be_modified: "cannot be modified"
|
|
@@ -499,6 +751,18 @@ en:
|
|
|
499
751
|
amount_authorized_exceeds_total_credit: " exceeds the available credit"
|
|
500
752
|
amount_used_not_zero: "is greater than zero. Can not delete store credit"
|
|
501
753
|
update_reason_required: "A reason for the change must be selected"
|
|
754
|
+
variants:
|
|
755
|
+
index:
|
|
756
|
+
show_deleted: Show deleted variants
|
|
757
|
+
new:
|
|
758
|
+
new_variant: New variant
|
|
759
|
+
edit:
|
|
760
|
+
edit_variant: Edit Variant
|
|
761
|
+
form:
|
|
762
|
+
dimensions: Dimensions
|
|
763
|
+
use_product_tax_category: Use Product Tax Category
|
|
764
|
+
pricing: Pricing
|
|
765
|
+
pricing_hint: These values are populated from the product details page and can be overridden below
|
|
502
766
|
administration: Administration
|
|
503
767
|
agree_to_privacy_policy: Agree to Privacy Policy
|
|
504
768
|
agree_to_terms_of_service: Agree to Terms of Service
|
|
@@ -524,8 +788,6 @@ en:
|
|
|
524
788
|
approved_at: Approved at
|
|
525
789
|
are_you_sure: Are you sure?
|
|
526
790
|
are_you_sure_delete: Are you sure you want to delete this record?
|
|
527
|
-
are_you_sure_close_stock_transfer: Are you sure you want to close this stock transfer?
|
|
528
|
-
are_you_sure_finalize_stock_transfer: Are you sure you want to finalize this stock transfer?
|
|
529
791
|
are_you_sure_ship_stock_transfer: Are you sure you want to ship this stock transfer?
|
|
530
792
|
authorization_failure: Authorization Failure
|
|
531
793
|
authorized: Authorized
|
|
@@ -539,6 +801,7 @@ en:
|
|
|
539
801
|
backordered: Backordered
|
|
540
802
|
back_to_adjustments_list: Back To Adjustments List
|
|
541
803
|
back_to_adjustment_reason_list: Back To Adjustment Reason List
|
|
804
|
+
back_to_countries_list: Back To Countries List
|
|
542
805
|
back_to_customer_return: Back To Customer Return
|
|
543
806
|
back_to_customer_return_list: Back To Customer Return List
|
|
544
807
|
back_to_images_list: Back To Images List
|
|
@@ -564,8 +827,9 @@ en:
|
|
|
564
827
|
back_to_stock_locations_list: Back to Stock Locations List
|
|
565
828
|
back_to_stock_movements_list: Back to Stock Movements List
|
|
566
829
|
back_to_stock_transfers_list: Back to Stock Transfers List
|
|
567
|
-
back_to_store:
|
|
830
|
+
back_to_store: View store
|
|
568
831
|
back_to_tax_categories_list: Back To Tax Categories List
|
|
832
|
+
back_to_tax_rates_list: Back To Tax Rates List
|
|
569
833
|
back_to_taxonomies_list: Back To Taxonomies List
|
|
570
834
|
back_to_trackers_list: Back To Trackers List
|
|
571
835
|
back_to_users_list: Back To Users List
|
|
@@ -590,7 +854,8 @@ en:
|
|
|
590
854
|
canceled_at: Canceled at
|
|
591
855
|
canceler: Canceler
|
|
592
856
|
cancellation: Cancellation
|
|
593
|
-
|
|
857
|
+
cannot_create_payment_without_payment_methods_html: You cannot create a payment for an order without any payment methods defined. %{link}
|
|
858
|
+
cannot_create_payment_link: Please define some payment methods first.
|
|
594
859
|
cannot_create_returns: Cannot create returns as this order has no shipped units.
|
|
595
860
|
cannot_rebuild_shipments_order_completed: Cannot rebuild shipments for a completed order.
|
|
596
861
|
cannot_rebuild_shipments_shipments_not_pending: Cannot rebuild shipments for an order with non-pending shipments.
|
|
@@ -612,6 +877,7 @@ en:
|
|
|
612
877
|
categories: Categories
|
|
613
878
|
category: Category
|
|
614
879
|
charged: Charged
|
|
880
|
+
check: Check
|
|
615
881
|
check_stock_on_transfer: Check stock on transfer
|
|
616
882
|
checkout: Checkout
|
|
617
883
|
choose_a_customer: Choose a customer
|
|
@@ -626,9 +892,7 @@ en:
|
|
|
626
892
|
clone: Clone
|
|
627
893
|
close: Close
|
|
628
894
|
close_stock_transfer:
|
|
629
|
-
|
|
630
|
-
no_longer_edit: You will no longer be able to edit the stock transfer in any way
|
|
631
|
-
stock_movements_created: Stock movements will be created for the received items
|
|
895
|
+
confirm: "Are you sure you want to close this stock transfer?\n\nStock levels will be changed for the received items and you will no longer be able to edit the stock transfer."
|
|
632
896
|
code: Code
|
|
633
897
|
company: Company
|
|
634
898
|
complete: complete
|
|
@@ -673,11 +937,13 @@ en:
|
|
|
673
937
|
create_a_new_account: Create a new account
|
|
674
938
|
create_new_order: Create new order
|
|
675
939
|
create_reimbursement: Create reimbursement
|
|
940
|
+
create_one: Create One.
|
|
676
941
|
created_at: Created At
|
|
677
942
|
created_by: Created by
|
|
678
943
|
created_successfully: Created successfully
|
|
679
944
|
credit: Credit
|
|
680
945
|
credits: Credits
|
|
946
|
+
credit_allowed: Credit Allowed
|
|
681
947
|
credit_card: Credit Card
|
|
682
948
|
credit_cards: Credit Cards
|
|
683
949
|
credit_owed: Credit Owed
|
|
@@ -737,6 +1003,7 @@ en:
|
|
|
737
1003
|
editing_property: Editing Property
|
|
738
1004
|
editing_prototype: Editing Prototype
|
|
739
1005
|
edit_refund_reason: Edit Refund Reason
|
|
1006
|
+
editing_refund: Editing Refund
|
|
740
1007
|
editing_refund_reason: Editing Refund Reason
|
|
741
1008
|
editing_reimbursement: Editing Reimbursement
|
|
742
1009
|
editing_reimbursement_type: Editing Reimbursement Type
|
|
@@ -817,16 +1084,11 @@ en:
|
|
|
817
1084
|
finalize: Finalize
|
|
818
1085
|
finalize_all_adjustments: Finalize All Adjustments
|
|
819
1086
|
finalize_stock_transfer:
|
|
820
|
-
|
|
821
|
-
no_longer_change_items: You will no longer be able to add or edit any transfer items
|
|
1087
|
+
confirm: "Are you sure you want to finalize this stock transfer?\n\nYou will no longer be able to add or edit any transfer items"
|
|
822
1088
|
find_a_taxon: Find a Taxon
|
|
823
1089
|
finalized: Finalized
|
|
824
1090
|
finalized_at: Finalized at
|
|
825
1091
|
finalized_by: Finalized by
|
|
826
|
-
close_stock_transfer:
|
|
827
|
-
will_cause: Closing a stock transfer will cause the following
|
|
828
|
-
no_longer_edit: You will no longer be able to edit the stock transfer in any way
|
|
829
|
-
stock_movements_created: Stock movements will be created for the received items
|
|
830
1092
|
first_item: First Item
|
|
831
1093
|
first_name: First Name
|
|
832
1094
|
first_name_begins_with: First Name Begins With
|
|
@@ -850,6 +1112,10 @@ en:
|
|
|
850
1112
|
guest_user_account: Checkout as a Guest
|
|
851
1113
|
has_no_shipped_units: has no shipped units
|
|
852
1114
|
height: Height
|
|
1115
|
+
helpers:
|
|
1116
|
+
products:
|
|
1117
|
+
price_diff_add_html: "(Add: %{amount_html})"
|
|
1118
|
+
price_diff_subtract_html: "(Subtract: %{amount_html})"
|
|
853
1119
|
hidden: hidden
|
|
854
1120
|
hide_out_of_stock: Hide out of stock
|
|
855
1121
|
home: Home
|
|
@@ -866,6 +1132,7 @@ en:
|
|
|
866
1132
|
this_file_language: English (US)
|
|
867
1133
|
translations: Translations
|
|
868
1134
|
icon: Icon
|
|
1135
|
+
id: ID
|
|
869
1136
|
identifier: Identifier
|
|
870
1137
|
image: Image
|
|
871
1138
|
images: Images
|
|
@@ -882,6 +1149,7 @@ en:
|
|
|
882
1149
|
other: "and %{count} others"
|
|
883
1150
|
instructions_to_reset_password: Please enter your email on the form below
|
|
884
1151
|
insufficient_stock: Insufficient stock available, only %{on_hand} remaining
|
|
1152
|
+
insufficient_stock_for_order: Insufficient stock for order
|
|
885
1153
|
insufficient_stock_lines_present: Some line items in this order have insufficient quantity.
|
|
886
1154
|
intercept_email_address: Intercept Email Address
|
|
887
1155
|
intercept_email_instructions: Override email recipient and replace with this address.
|
|
@@ -896,6 +1164,12 @@ en:
|
|
|
896
1164
|
inventory_canceled: Inventory canceled
|
|
897
1165
|
inventory_error_flash_for_insufficient_quantity: An item in your cart has become unavailable.
|
|
898
1166
|
inventory_state: Inventory State
|
|
1167
|
+
inventory_states:
|
|
1168
|
+
backordered: backordered
|
|
1169
|
+
canceled: canceled
|
|
1170
|
+
on_hand: on hand
|
|
1171
|
+
returned: returned
|
|
1172
|
+
shipped: shipped
|
|
899
1173
|
is_not_available_to_shipment_address: is not available to shipment address
|
|
900
1174
|
iso_name: Iso Name
|
|
901
1175
|
item: Item
|
|
@@ -1005,12 +1279,10 @@ en:
|
|
|
1005
1279
|
new_zone: New Zone
|
|
1006
1280
|
next: Next
|
|
1007
1281
|
no_actions_added: No actions added
|
|
1008
|
-
no_dont_close: No, don't close
|
|
1009
|
-
no_dont_finalize: No, don't finalize
|
|
1010
|
-
no_dont_ship: No, don't ship
|
|
1011
1282
|
no_images_found: No images found
|
|
1012
1283
|
no_inventory_selected: No inventory selected
|
|
1013
1284
|
no_orders_found: No orders found
|
|
1285
|
+
no_option_values_on_product_html: "This product has no associated option values. Add some to it through Option Types in the %{link}."
|
|
1014
1286
|
no_payment_methods_found: No payment methods found
|
|
1015
1287
|
no_payment_found: No payment found
|
|
1016
1288
|
no_pending_payments: No pending payments
|
|
@@ -1018,6 +1290,9 @@ en:
|
|
|
1018
1290
|
no_promotions_found: No promotions found
|
|
1019
1291
|
no_results: No results
|
|
1020
1292
|
no_rules_added: No rules added
|
|
1293
|
+
no_resource: 'No %{resource} found.'
|
|
1294
|
+
no_resource_found_html: 'No %{resource} found, %{add_one_link}!'
|
|
1295
|
+
no_resource_found_link: Add One
|
|
1021
1296
|
no_resource_found: ! 'No %{resource} found'
|
|
1022
1297
|
no_shipping_methods_found: No shipping methods found
|
|
1023
1298
|
no_shipping_method_selected: No shipping method selected.
|
|
@@ -1025,6 +1300,7 @@ en:
|
|
|
1025
1300
|
no_stock_locations_found: No stock locations found
|
|
1026
1301
|
no_tracking_present: No tracking details provided.
|
|
1027
1302
|
no_variants_found: No variants found.
|
|
1303
|
+
no_variants_found_try_again: No variants found. Try changing the search values.
|
|
1028
1304
|
none: None
|
|
1029
1305
|
none_selected: None Selected
|
|
1030
1306
|
normal_amount: Normal Amount
|
|
@@ -1033,6 +1309,7 @@ en:
|
|
|
1033
1309
|
not_enough_stock: There is not enough inventory at the source location to complete this transfer.
|
|
1034
1310
|
not_found: ! '%{resource} is not found'
|
|
1035
1311
|
note: Note
|
|
1312
|
+
note_already_received_a_refund: "Note: This order has already received a refund. Make sure the above reimbursement amount is correct."
|
|
1036
1313
|
notice_messages:
|
|
1037
1314
|
product_cloned: Product has been cloned
|
|
1038
1315
|
product_deleted: Product has been deleted
|
|
@@ -1122,7 +1399,11 @@ en:
|
|
|
1122
1399
|
path: Path
|
|
1123
1400
|
pay: pay
|
|
1124
1401
|
payment: Payment
|
|
1402
|
+
payment_amount: Payment Amount
|
|
1125
1403
|
payment_could_not_be_created: Payment could not be created.
|
|
1404
|
+
payments_failed_count:
|
|
1405
|
+
one: 1 Payment
|
|
1406
|
+
other: '%{count} Payments'
|
|
1126
1407
|
payment_identifier: Payment Identifier
|
|
1127
1408
|
payment_information: Payment Information
|
|
1128
1409
|
payment_method: Payment Method
|
|
@@ -1292,6 +1573,7 @@ en:
|
|
|
1292
1573
|
resend: Resend
|
|
1293
1574
|
reset_password: Reset my password
|
|
1294
1575
|
response_code: Response Code
|
|
1576
|
+
restock_inventory: Restock Inventory
|
|
1295
1577
|
resume: resume
|
|
1296
1578
|
resumed: Resumed
|
|
1297
1579
|
return: return
|
|
@@ -1358,8 +1640,7 @@ en:
|
|
|
1358
1640
|
ship_address: Ship Address
|
|
1359
1641
|
ship_address_required: Valid shipping address required
|
|
1360
1642
|
ship_stock_transfer:
|
|
1361
|
-
|
|
1362
|
-
no_further_changes: You will no longer be able to make changes to the stock transfer
|
|
1643
|
+
confirm: "Are you sure you want to mark this stock transfer as shipping?\n\nYou will no longer be able to make changes to the stock transfer"
|
|
1363
1644
|
ship_total: Ship Total
|
|
1364
1645
|
shipped_at: Shipped At
|
|
1365
1646
|
shipment: Shipment
|
|
@@ -1400,6 +1681,15 @@ en:
|
|
|
1400
1681
|
shipping_method: Shipping Method
|
|
1401
1682
|
shipping_methods: Shipping Methods
|
|
1402
1683
|
shipping_price_sack: Price sack
|
|
1684
|
+
shipping_rate:
|
|
1685
|
+
display_price:
|
|
1686
|
+
display_price_with_explanations: "%{price} (%{explanations})"
|
|
1687
|
+
tax_label_separator: ", "
|
|
1688
|
+
shipping_rate_tax:
|
|
1689
|
+
label:
|
|
1690
|
+
sales_tax: "+ %{amount} %{tax_rate_name}"
|
|
1691
|
+
vat: "incl. %{amount} %{tax_rate_name}"
|
|
1692
|
+
vat_refund: "excl. %{amount} %{tax_rate_name}"
|
|
1403
1693
|
shipping_total: Shipping total
|
|
1404
1694
|
shop_by_taxonomy: Shop by %{taxonomy}
|
|
1405
1695
|
shopping_cart: Shopping Cart
|
|
@@ -1565,7 +1855,6 @@ en:
|
|
|
1565
1855
|
use_existing_cc: Use an existing card on file
|
|
1566
1856
|
use_new_cc: Use a new card
|
|
1567
1857
|
use_new_cc_or_payment_method: Use a new card / payment method
|
|
1568
|
-
use_s3: Use Amazon S3 For Images
|
|
1569
1858
|
user: User
|
|
1570
1859
|
user_rule:
|
|
1571
1860
|
choose_users: Choose users
|
|
@@ -1594,9 +1883,6 @@ en:
|
|
|
1594
1883
|
what_is_this: What's This?
|
|
1595
1884
|
width: Width
|
|
1596
1885
|
year: Year
|
|
1597
|
-
yes_close: Yes, close
|
|
1598
|
-
yes_finalize: Yes, finalize
|
|
1599
|
-
yes_ship: Yes, ship
|
|
1600
1886
|
you_have_no_orders_yet: You have no orders yet
|
|
1601
1887
|
you_cannot_undo_action: You will not be able to undo this action
|
|
1602
1888
|
your_cart_is_empty: Your cart is empty
|