solidus_core 1.0.0.pre
Sign up to get free protection for your applications and to get access to all the features.
Potentially problematic release.
This version of solidus_core might be problematic. Click here for more details.
- checksums.yaml +7 -0
- data/LICENSE +26 -0
- data/app/assets/images/logo/solidus.png +0 -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.coffee.erb +61 -0
- data/app/controllers/spree/base_controller.rb +15 -0
- data/app/helpers/spree/base_helper.rb +210 -0
- data/app/helpers/spree/checkout_helper.rb +31 -0
- data/app/helpers/spree/orders_helper.rb +17 -0
- data/app/helpers/spree/products_helper.rb +82 -0
- data/app/helpers/spree/store_helper.rb +16 -0
- data/app/helpers/spree/taxons_helper.rb +19 -0
- data/app/mailers/spree/base_mailer.rb +23 -0
- data/app/mailers/spree/carton_mailer.rb +12 -0
- data/app/mailers/spree/order_mailer.rb +35 -0
- data/app/mailers/spree/reimbursement_mailer.rb +10 -0
- data/app/mailers/spree/test_mailer.rb +8 -0
- data/app/models/concerns/spree/adjustment_source.rb +24 -0
- data/app/models/concerns/spree/calculated_adjustments.rb +33 -0
- data/app/models/concerns/spree/default_price.rb +34 -0
- data/app/models/concerns/spree/display_money.rb +32 -0
- data/app/models/concerns/spree/named_type.rb +12 -0
- data/app/models/concerns/spree/user_address.rb +30 -0
- data/app/models/concerns/spree/user_api_authentication.rb +13 -0
- data/app/models/concerns/spree/user_payment_source.rb +19 -0
- data/app/models/concerns/spree/user_reporting.rb +22 -0
- data/app/models/spree/ability.rb +74 -0
- data/app/models/spree/address.rb +157 -0
- data/app/models/spree/adjustment.rb +143 -0
- data/app/models/spree/app_configuration.rb +253 -0
- data/app/models/spree/asset.rb +6 -0
- data/app/models/spree/base.rb +15 -0
- data/app/models/spree/billing_integration.rb +21 -0
- data/app/models/spree/calculator.rb +47 -0
- data/app/models/spree/calculator/default_tax.rb +67 -0
- data/app/models/spree/calculator/flat_percent_item_total.rb +22 -0
- data/app/models/spree/calculator/flat_rate.rb +20 -0
- data/app/models/spree/calculator/flexi_rate.rb +33 -0
- data/app/models/spree/calculator/free_shipping.rb +21 -0
- data/app/models/spree/calculator/percent_on_line_item.rb +15 -0
- data/app/models/spree/calculator/percent_per_item.rb +50 -0
- data/app/models/spree/calculator/price_sack.rb +29 -0
- data/app/models/spree/calculator/returns/default_refund_amount.rb +36 -0
- data/app/models/spree/calculator/shipping/flat_percent_item_total.rb +22 -0
- data/app/models/spree/calculator/shipping/flat_rate.rb +18 -0
- data/app/models/spree/calculator/shipping/flexi_rate.rb +35 -0
- data/app/models/spree/calculator/shipping/per_item.rb +22 -0
- data/app/models/spree/calculator/shipping/price_sack.rb +28 -0
- data/app/models/spree/calculator/tiered_flat_rate.rb +37 -0
- data/app/models/spree/calculator/tiered_percent.rb +44 -0
- data/app/models/spree/carton.rb +57 -0
- data/app/models/spree/classification.rb +11 -0
- data/app/models/spree/country.rb +23 -0
- data/app/models/spree/credit_card.rb +197 -0
- data/app/models/spree/customer_return.rb +73 -0
- data/app/models/spree/exchange.rb +46 -0
- data/app/models/spree/gateway.rb +79 -0
- data/app/models/spree/gateway/bogus.rb +91 -0
- data/app/models/spree/gateway/bogus_simple.rb +26 -0
- data/app/models/spree/image.rb +44 -0
- data/app/models/spree/inventory_unit.rb +154 -0
- data/app/models/spree/item_adjustments.rb +85 -0
- data/app/models/spree/item_adjustments.rb.orig +93 -0
- data/app/models/spree/legacy_user.rb +38 -0
- data/app/models/spree/line_item.rb +183 -0
- data/app/models/spree/line_item_action.rb +6 -0
- data/app/models/spree/log_entry.rb +20 -0
- data/app/models/spree/option_type.rb +30 -0
- data/app/models/spree/option_value.rb +26 -0
- data/app/models/spree/option_values_variant.rb +6 -0
- data/app/models/spree/order.rb +811 -0
- data/app/models/spree/order/checkout.rb +351 -0
- data/app/models/spree/order/currency_updater.rb +40 -0
- data/app/models/spree/order/payments.rb +66 -0
- data/app/models/spree/order_cancellations.rb +72 -0
- data/app/models/spree/order_capturing.rb +49 -0
- data/app/models/spree/order_contents.rb +125 -0
- data/app/models/spree/order_inventory.rb +108 -0
- data/app/models/spree/order_mutex.rb +35 -0
- data/app/models/spree/order_promotion.rb +23 -0
- data/app/models/spree/order_shipping.rb +99 -0
- data/app/models/spree/order_stock_location.rb +15 -0
- data/app/models/spree/order_updater.rb +178 -0
- data/app/models/spree/payment.rb +292 -0
- data/app/models/spree/payment/processing.rb +210 -0
- data/app/models/spree/payment_capture_event.rb +9 -0
- data/app/models/spree/payment_method.rb +79 -0
- data/app/models/spree/payment_method/check.rb +31 -0
- data/app/models/spree/payment_method/store_credit.rb +127 -0
- data/app/models/spree/preference.rb +5 -0
- data/app/models/spree/preferences/configuration.rb +78 -0
- data/app/models/spree/preferences/preferable.rb +128 -0
- data/app/models/spree/preferences/preferable_class_methods.rb +64 -0
- data/app/models/spree/preferences/scoped_store.rb +33 -0
- data/app/models/spree/preferences/store.rb +93 -0
- data/app/models/spree/price.rb +62 -0
- data/app/models/spree/product.rb +347 -0
- data/app/models/spree/product/scopes.rb +262 -0
- data/app/models/spree/product_option_type.rb +7 -0
- data/app/models/spree/product_property.rb +25 -0
- data/app/models/spree/product_scope/scopes.rb +47 -0
- data/app/models/spree/promotion.rb +229 -0
- data/app/models/spree/promotion/actions/create_adjustment.rb +63 -0
- data/app/models/spree/promotion/actions/create_item_adjustments.rb +80 -0
- data/app/models/spree/promotion/actions/create_quantity_adjustments.rb +129 -0
- data/app/models/spree/promotion/actions/free_shipping.rb +41 -0
- data/app/models/spree/promotion/rules/first_order.rb +37 -0
- data/app/models/spree/promotion/rules/item_total.rb +61 -0
- data/app/models/spree/promotion/rules/one_use_per_user.rb +24 -0
- data/app/models/spree/promotion/rules/option_value.rb +50 -0
- data/app/models/spree/promotion/rules/product.rb +64 -0
- data/app/models/spree/promotion/rules/taxon.rb +69 -0
- data/app/models/spree/promotion/rules/user.rb +30 -0
- data/app/models/spree/promotion/rules/user_logged_in.rb +18 -0
- data/app/models/spree/promotion_action.rb +23 -0
- data/app/models/spree/promotion_builder.rb +55 -0
- data/app/models/spree/promotion_category.rb +6 -0
- data/app/models/spree/promotion_chooser.rb +30 -0
- data/app/models/spree/promotion_code.rb +39 -0
- data/app/models/spree/promotion_code/code_builder.rb +62 -0
- data/app/models/spree/promotion_handler/cart.rb +65 -0
- data/app/models/spree/promotion_handler/coupon.rb +119 -0
- data/app/models/spree/promotion_handler/free_shipping.rb +43 -0
- data/app/models/spree/promotion_handler/page.rb +24 -0
- data/app/models/spree/promotion_rule.rb +44 -0
- data/app/models/spree/property.rb +20 -0
- data/app/models/spree/prototype.rb +9 -0
- data/app/models/spree/refund.rb +96 -0
- data/app/models/spree/refund_reason.rb +13 -0
- data/app/models/spree/reimbursement.rb +188 -0
- data/app/models/spree/reimbursement/credit.rb +25 -0
- data/app/models/spree/reimbursement/reimbursement_type_engine.rb +56 -0
- data/app/models/spree/reimbursement/reimbursement_type_validator.rb +15 -0
- data/app/models/spree/reimbursement_performer.rb +43 -0
- data/app/models/spree/reimbursement_tax_calculator.rb +38 -0
- data/app/models/spree/reimbursement_type.rb +16 -0
- data/app/models/spree/reimbursement_type/credit.rb +13 -0
- data/app/models/spree/reimbursement_type/exchange.rb +9 -0
- data/app/models/spree/reimbursement_type/original_payment.rb +13 -0
- data/app/models/spree/reimbursement_type/reimbursement_helpers.rb +70 -0
- data/app/models/spree/reimbursement_type/store_credit.rb +27 -0
- data/app/models/spree/return_authorization.rb +108 -0
- data/app/models/spree/return_authorization_reason.rb +7 -0
- data/app/models/spree/return_item.rb +311 -0
- data/app/models/spree/return_item/eligibility_validator/base_validator.rb +24 -0
- data/app/models/spree/return_item/eligibility_validator/default.rb +30 -0
- data/app/models/spree/return_item/eligibility_validator/inventory_shipped.rb +16 -0
- data/app/models/spree/return_item/eligibility_validator/no_reimbursements.rb +17 -0
- data/app/models/spree/return_item/eligibility_validator/order_completed.rb +16 -0
- data/app/models/spree/return_item/eligibility_validator/rma_required.rb +17 -0
- data/app/models/spree/return_item/eligibility_validator/time_since_purchase.rb +16 -0
- data/app/models/spree/return_item/exchange_variant_eligibility/same_option_value.rb +34 -0
- data/app/models/spree/return_item/exchange_variant_eligibility/same_product.rb +9 -0
- data/app/models/spree/returns_calculator.rb +8 -0
- data/app/models/spree/role.rb +10 -0
- data/app/models/spree/role_user.rb +17 -0
- data/app/models/spree/shipment.rb +427 -0
- data/app/models/spree/shipping_calculator.rb +22 -0
- data/app/models/spree/shipping_category.rb +8 -0
- data/app/models/spree/shipping_manifest.rb +23 -0
- data/app/models/spree/shipping_method.rb +69 -0
- data/app/models/spree/shipping_method_category.rb +6 -0
- data/app/models/spree/shipping_rate.rb +57 -0
- data/app/models/spree/state.rb +30 -0
- data/app/models/spree/state_change.rb +15 -0
- data/app/models/spree/static_model_preferences.rb +32 -0
- data/app/models/spree/stock/adjuster.rb +28 -0
- data/app/models/spree/stock/availability_validator.rb +35 -0
- data/app/models/spree/stock/content_item.rb +48 -0
- data/app/models/spree/stock/coordinator.rb +96 -0
- data/app/models/spree/stock/differentiator.rb +44 -0
- data/app/models/spree/stock/estimator.rb +70 -0
- data/app/models/spree/stock/inventory_unit_builder.rb +22 -0
- data/app/models/spree/stock/inventory_validator.rb +14 -0
- data/app/models/spree/stock/package.rb +131 -0
- data/app/models/spree/stock/packer.rb +49 -0
- data/app/models/spree/stock/prioritizer.rb +47 -0
- data/app/models/spree/stock/quantifier.rb +47 -0
- data/app/models/spree/stock/splitter/backordered.rb +23 -0
- data/app/models/spree/stock/splitter/base.rb +28 -0
- data/app/models/spree/stock/splitter/shipping_category.rb +32 -0
- data/app/models/spree/stock/splitter/weight.rb +32 -0
- data/app/models/spree/stock_item.rb +107 -0
- data/app/models/spree/stock_location.rb +128 -0
- data/app/models/spree/stock_movement.rb +26 -0
- data/app/models/spree/stock_transfer.rb +108 -0
- data/app/models/spree/store.rb +38 -0
- data/app/models/spree/store_credit.rb +267 -0
- data/app/models/spree/store_credit_category.rb +17 -0
- data/app/models/spree/store_credit_event.rb +52 -0
- data/app/models/spree/store_credit_type.rb +6 -0
- data/app/models/spree/tax_category.rb +19 -0
- data/app/models/spree/tax_rate.rb +199 -0
- data/app/models/spree/taxon.rb +103 -0
- data/app/models/spree/taxonomy.rb +27 -0
- data/app/models/spree/tracker.rb +8 -0
- data/app/models/spree/transfer_item.rb +58 -0
- data/app/models/spree/unit_cancel.rb +32 -0
- data/app/models/spree/user_stock_location.rb +6 -0
- data/app/models/spree/validations/db_maximum_length_validator.rb +22 -0
- data/app/models/spree/variant.rb +356 -0
- data/app/models/spree/variant/scopes.rb +40 -0
- data/app/models/spree/zone.rb +138 -0
- data/app/models/spree/zone_member.rb +11 -0
- data/app/views/layouts/spree/base_mailer.html.erb +784 -0
- data/app/views/spree/admin/orders/customer_details/_autocomplete.js.erb +19 -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.text.erb +10 -0
- data/app/views/spree/reimbursement_mailer/reimbursement_email.text.erb +22 -0
- data/app/views/spree/shared/_base_mailer_footer.html.erb +20 -0
- data/app/views/spree/shared/_base_mailer_header.html.erb +31 -0
- data/app/views/spree/shared/_error_messages.html.erb +11 -0
- data/app/views/spree/shipment_mailer/shipped_email.html.erb +34 -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/friendly_id.rb +88 -0
- data/config/initializers/premailer_assets.rb +1 -0
- data/config/initializers/user_class_extensions.rb +42 -0
- data/config/locales/en.yml +1534 -0
- data/config/routes.rb +1 -0
- data/db/default/spree/countries.rb +19 -0
- data/db/default/spree/roles.rb +2 -0
- data/db/default/spree/states.rb +16 -0
- data/db/default/spree/store_credit.rb +16 -0
- data/db/default/spree/stores.rb +9 -0
- data/db/default/spree/zones.rb +17 -0
- data/db/migrate/20120831092320_spree_one_two.rb +481 -0
- data/db/migrate/20120831092359_spree_promo_one_two.rb +45 -0
- data/db/migrate/20120905145253_add_tax_rate_label.rb +5 -0
- data/db/migrate/20120905151823_add_toggle_tax_rate_display.rb +5 -0
- data/db/migrate/20120929093553_remove_unused_preference_columns.rb +8 -0
- data/db/migrate/20121009142519_add_lock_version_to_variant.rb +5 -0
- data/db/migrate/20121010142909_add_states_required_to_countries.rb +5 -0
- data/db/migrate/20121012071449_add_on_demand_to_product_and_variant.rb +6 -0
- data/db/migrate/20121017010007_remove_not_null_constraint_from_products_on_hand.rb +11 -0
- data/db/migrate/20121031162139_split_prices_from_variants.rb +31 -0
- data/db/migrate/20121107003422_remove_not_null_from_spree_prices_amount.rb +9 -0
- data/db/migrate/20121107184631_add_currency_to_line_items.rb +5 -0
- data/db/migrate/20121107194006_add_currency_to_orders.rb +5 -0
- data/db/migrate/20121109173623_add_cost_currency_to_variants.rb +5 -0
- data/db/migrate/20121111231553_remove_display_on_from_payment_methods.rb +5 -0
- data/db/migrate/20121124203911_add_position_to_taxonomies.rb +5 -0
- data/db/migrate/20121126040517_add_last_ip_to_spree_orders.rb +5 -0
- data/db/migrate/20121213162028_add_state_to_spree_adjustments.rb +6 -0
- data/db/migrate/20130114053446_add_display_on_to_spree_payment_methods.rb +9 -0
- data/db/migrate/20130120201805_add_position_to_product_properties.spree.rb +6 -0
- data/db/migrate/20130203232234_add_identifier_to_spree_payments.rb +5 -0
- data/db/migrate/20130207155350_add_order_id_index_to_payments.rb +9 -0
- data/db/migrate/20130208032954_add_primary_to_spree_products_taxons.rb +5 -0
- data/db/migrate/20130211190146_create_spree_stock_items.rb +14 -0
- data/db/migrate/20130211191120_create_spree_stock_locations.rb +11 -0
- data/db/migrate/20130213191427_create_default_stock.rb +34 -0
- data/db/migrate/20130222032153_add_order_id_index_to_shipments.rb +5 -0
- data/db/migrate/20130226032817_change_meta_description_on_spree_products_to_text.rb +5 -0
- data/db/migrate/20130226191231_add_stock_location_id_to_spree_shipments.rb +5 -0
- data/db/migrate/20130227143905_add_pending_to_inventory_unit.rb +6 -0
- data/db/migrate/20130228164411_remove_on_demand_from_product_and_variant.rb +6 -0
- data/db/migrate/20130228210442_create_shipping_method_zone.rb +21 -0
- data/db/migrate/20130301162745_remove_shipping_category_id_from_shipping_method.rb +5 -0
- data/db/migrate/20130301162924_create_shipping_method_categories.rb +13 -0
- data/db/migrate/20130301205200_add_tracking_url_to_spree_shipping_methods.rb +5 -0
- data/db/migrate/20130304162240_create_spree_shipping_rates.rb +24 -0
- data/db/migrate/20130304192936_remove_category_match_attributes_from_shipping_method.rb +7 -0
- data/db/migrate/20130305143310_create_stock_movements.rb +12 -0
- data/db/migrate/20130306181701_add_address_fields_to_stock_location.rb +22 -0
- data/db/migrate/20130306191917_add_active_field_to_stock_locations.rb +5 -0
- data/db/migrate/20130306195650_add_backorderable_to_stock_item.rb +5 -0
- data/db/migrate/20130307161754_add_default_quantity_to_stock_movement.rb +5 -0
- data/db/migrate/20130318151756_add_source_and_destination_to_stock_movements.rb +8 -0
- data/db/migrate/20130319062004_change_orders_total_precision.rb +8 -0
- data/db/migrate/20130319063911_change_spree_payments_amount_precision.rb +7 -0
- data/db/migrate/20130319064308_change_spree_return_authorization_amount_precision.rb +7 -0
- data/db/migrate/20130319082943_change_adjustments_amount_precision.rb +7 -0
- data/db/migrate/20130319183250_add_originator_to_stock_movement.rb +7 -0
- data/db/migrate/20130319190507_drop_source_and_destination_from_stock_movement.rb +15 -0
- data/db/migrate/20130325163316_migrate_inventory_unit_sold_to_on_hand.rb +9 -0
- data/db/migrate/20130326175857_add_stock_location_to_rma.rb +5 -0
- data/db/migrate/20130328130308_update_shipment_state_for_canceled_orders.rb +15 -0
- data/db/migrate/20130328195253_add_seo_metas_to_taxons.rb +9 -0
- data/db/migrate/20130329134939_remove_stock_item_and_variant_lock.rb +14 -0
- data/db/migrate/20130413230529_add_name_to_spree_credit_cards.rb +5 -0
- data/db/migrate/20130414000512_update_name_fields_on_spree_credit_cards.rb +13 -0
- data/db/migrate/20130417120034_add_index_to_source_columns_on_adjustments.rb +5 -0
- data/db/migrate/20130417120035_update_adjustment_states.rb +16 -0
- data/db/migrate/20130417123427_add_shipping_rates_to_shipments.rb +15 -0
- data/db/migrate/20130418125341_create_spree_stock_transfers.rb +14 -0
- data/db/migrate/20130423110707_drop_products_count_on_hand.rb +5 -0
- data/db/migrate/20130423223847_set_default_shipping_rate_cost.rb +5 -0
- data/db/migrate/20130509115210_add_number_to_stock_transfer.rb +23 -0
- data/db/migrate/20130514151929_add_sku_index_to_spree_variants.rb +5 -0
- data/db/migrate/20130515180736_add_backorderable_default_to_spree_stock_location.rb +5 -0
- data/db/migrate/20130516151222_add_propage_all_variants_to_spree_stock_location.rb +5 -0
- data/db/migrate/20130611054351_rename_shipping_methods_zones_to_spree_shipping_methods_zones.rb +5 -0
- data/db/migrate/20130611185927_add_user_id_index_to_spree_orders.rb +5 -0
- data/db/migrate/20130618041418_add_updated_at_to_spree_countries.rb +9 -0
- data/db/migrate/20130619012236_add_updated_at_to_spree_states.rb +9 -0
- data/db/migrate/20130626232741_add_cvv_result_code_and_cvv_result_message_to_spree_payments.rb +6 -0
- data/db/migrate/20130628021056_add_unique_index_to_permalink_on_spree_products.rb +5 -0
- data/db/migrate/20130628022817_add_unique_index_to_orders_shipments_and_stock_transfers.rb +7 -0
- data/db/migrate/20130708052307_add_deleted_at_to_spree_tax_rates.rb +5 -0
- data/db/migrate/20130711200933_remove_lock_version_from_inventory_units.rb +6 -0
- data/db/migrate/20130718042445_add_cost_price_to_line_item.rb +5 -0
- data/db/migrate/20130718233855_set_backorderable_to_default_to_false.rb +6 -0
- data/db/migrate/20130725031716_add_created_by_id_to_spree_orders.rb +5 -0
- data/db/migrate/20130729214043_index_completed_at_on_spree_orders.rb +5 -0
- data/db/migrate/20130802014537_add_tax_category_id_to_spree_line_items.rb +5 -0
- data/db/migrate/20130802022321_migrate_tax_categories_to_line_items.rb +10 -0
- data/db/migrate/20130806022521_drop_spree_mail_methods.rb +12 -0
- data/db/migrate/20130806145853_set_default_stock_location_on_shipments.rb +8 -0
- data/db/migrate/20130807024301_upgrade_adjustments.rb +40 -0
- data/db/migrate/20130807024302_rename_adjustment_fields.rb +14 -0
- data/db/migrate/20130809164245_add_admin_name_column_to_spree_shipping_methods.rb +5 -0
- data/db/migrate/20130809164330_add_admin_name_column_to_spree_stock_locations.rb +5 -0
- data/db/migrate/20130813004002_add_shipment_total_to_spree_orders.rb +5 -0
- data/db/migrate/20130813140619_expand_order_number_size.rb +9 -0
- data/db/migrate/20130813232134_rename_activators_to_promotions.rb +5 -0
- data/db/migrate/20130815000406_add_adjustment_total_to_line_items.rb +5 -0
- data/db/migrate/20130815024413_add_adjustment_total_to_shipments.rb +5 -0
- data/db/migrate/20130826062534_add_depth_to_spree_taxons.rb +16 -0
- data/db/migrate/20130828234942_add_tax_total_to_line_items_shipments_and_orders.rb +8 -0
- data/db/migrate/20130830001033_add_shipping_category_to_shipping_methods_and_products.rb +15 -0
- data/db/migrate/20130830001159_migrate_old_shipping_calculators.rb +19 -0
- data/db/migrate/20130903183026_add_code_to_spree_promotion_rules.rb +5 -0
- data/db/migrate/20130909115621_change_states_required_for_countries.rb +9 -0
- data/db/migrate/20130915032339_add_deleted_at_to_spree_stock_items.rb +5 -0
- data/db/migrate/20130917024658_remove_promotions_event_name_field.rb +5 -0
- data/db/migrate/20130924040529_add_promo_total_to_line_items_and_shipments_and_orders.rb +7 -0
- data/db/migrate/20131001013410_remove_unused_credit_card_fields.rb +16 -0
- data/db/migrate/20131026154747_add_track_inventory_to_variant.rb +5 -0
- data/db/migrate/20131107132123_add_tax_category_to_variants.rb +6 -0
- data/db/migrate/20131113035136_add_channel_to_spree_orders.rb +5 -0
- data/db/migrate/20131118043959_add_included_to_adjustments.rb +5 -0
- data/db/migrate/20131118050234_rename_tax_total_fields.rb +11 -0
- data/db/migrate/20131118183431_add_line_item_id_to_spree_inventory_units.rb +21 -0
- data/db/migrate/20131120234456_add_updated_at_to_variants.rb +5 -0
- data/db/migrate/20131127001002_add_position_to_classifications.rb +5 -0
- data/db/migrate/20131211112807_create_spree_orders_promotions.rb +8 -0
- data/db/migrate/20131211192741_unique_shipping_method_categories.rb +24 -0
- data/db/migrate/20131218054603_add_item_count_to_spree_orders.rb +5 -0
- data/db/migrate/20140106065820_remove_value_type_from_spree_preferences.rb +8 -0
- data/db/migrate/20140106224208_rename_permalink_to_slug_for_products.rb +5 -0
- data/db/migrate/20140120160805_add_index_to_variant_id_and_currency_on_prices.rb +5 -0
- data/db/migrate/20140124023232_rename_activator_id_in_rules_and_actions_to_promotion_id.rb +6 -0
- data/db/migrate/20140129024326_add_deleted_at_to_spree_prices.rb +5 -0
- data/db/migrate/20140203161722_add_approver_id_and_approved_at_to_orders.rb +6 -0
- data/db/migrate/20140204115338_add_confirmation_delivered_to_spree_orders.rb +5 -0
- data/db/migrate/20140204192230_add_auto_capture_to_payment_methods.rb +5 -0
- data/db/migrate/20140205120320_create_spree_payment_capture_events.rb +12 -0
- data/db/migrate/20140205144710_add_uncaptured_amount_to_payments.rb +5 -0
- data/db/migrate/20140205181631_default_variant_weight_to_zero.rb +11 -0
- data/db/migrate/20140207085910_add_tax_category_id_to_shipping_methods.rb +5 -0
- data/db/migrate/20140207093021_add_tax_rate_id_to_shipping_rates.rb +5 -0
- data/db/migrate/20140211040159_add_pre_tax_amount_to_line_items_and_shipments.rb +6 -0
- data/db/migrate/20140213184916_add_more_indexes.rb +13 -0
- data/db/migrate/20140219060952_add_considered_risky_to_orders.rb +5 -0
- data/db/migrate/20140227112348_add_preference_store_to_everything.rb +8 -0
- data/db/migrate/20140307235515_add_user_id_to_spree_credit_cards.rb +13 -0
- data/db/migrate/20140309023735_migrate_old_preferences.rb +23 -0
- data/db/migrate/20140309024355_create_spree_stores.rb +25 -0
- data/db/migrate/20140309033438_create_store_from_preferences.rb +30 -0
- data/db/migrate/20140315053743_add_timestamps_to_spree_assets.rb +6 -0
- data/db/migrate/20140318191500_create_spree_taxons_promotion_rules.rb +8 -0
- data/db/migrate/20140331100557_add_additional_store_fields.rb +8 -0
- data/db/migrate/20140410141842_add_many_missing_indexes.rb +17 -0
- data/db/migrate/20140410150358_correct_some_polymorphic_index_and_add_more_missing.rb +66 -0
- data/db/migrate/20140415041315_add_user_id_created_by_id_index_to_order.rb +5 -0
- data/db/migrate/20140508151342_change_spree_price_amount_precision.rb +8 -0
- data/db/migrate/20140518174634_add_token_to_spree_orders.rb +5 -0
- data/db/migrate/20140530024945_move_order_token_from_tokenized_permission.rb +29 -0
- data/db/migrate/20140601011216_set_shipment_total_for_users_upgrading.rb +10 -0
- data/db/migrate/20140604135309_drop_credit_card_first_name_and_last_name.rb +6 -0
- data/db/migrate/20140609201656_add_deleted_at_to_spree_promotion_actions.rb +6 -0
- data/db/migrate/20140616202624_remove_uncaptured_amount_from_spree_payments.rb +5 -0
- data/db/migrate/20140625214618_create_spree_refunds.rb +12 -0
- data/db/migrate/20140702140656_create_spree_return_authorization_inventory_unit.rb +12 -0
- data/db/migrate/20140707125621_rename_return_authorization_inventory_unit_to_return_items.rb +5 -0
- data/db/migrate/20140708132019_create_order_mutex.rb +11 -0
- data/db/migrate/20140709160534_backfill_line_item_pre_tax_amount.rb +10 -0
- data/db/migrate/20140710041921_recreate_spree_return_authorizations.rb +55 -0
- data/db/migrate/20140710181204_add_amount_fields_to_return_items.rb +7 -0
- data/db/migrate/20140710190048_drop_return_authorization_amount.rb +5 -0
- data/db/migrate/20140713140455_create_spree_return_authorization_reasons.rb +28 -0
- data/db/migrate/20140713140527_create_spree_refund_reasons.rb +14 -0
- data/db/migrate/20140713142214_rename_return_authorization_reason.rb +5 -0
- data/db/migrate/20140715182625_create_spree_promotion_categories.rb +11 -0
- data/db/migrate/20140716204111_drop_received_at_on_return_items.rb +9 -0
- data/db/migrate/20140716212330_add_reception_and_acceptance_status_to_return_items.rb +6 -0
- data/db/migrate/20140717155155_create_default_refund_reason.rb +9 -0
- data/db/migrate/20140717185932_add_default_to_spree_stock_locations.rb +7 -0
- data/db/migrate/20140718133010_create_spree_customer_returns.rb +9 -0
- data/db/migrate/20140718133349_add_customer_return_id_to_return_item.rb +6 -0
- data/db/migrate/20140718195325_create_friendly_id_slugs.rb +15 -0
- data/db/migrate/20140723004419_rename_spree_refund_return_authorization_id.rb +5 -0
- data/db/migrate/20140723152808_increase_return_item_pre_tax_amount_precision.rb +13 -0
- data/db/migrate/20140723214541_copy_product_slugs_to_slug_history.rb +15 -0
- data/db/migrate/20140725131539_create_spree_reimbursements.rb +21 -0
- data/db/migrate/20140728225422_add_promotionable_to_spree_products.rb +5 -0
- data/db/migrate/20140729133613_add_exchange_inventory_unit_foreign_keys.rb +7 -0
- data/db/migrate/20140730155938_add_acceptance_status_errors_to_return_item.rb +5 -0
- data/db/migrate/20140731150017_create_spree_reimbursement_types.rb +20 -0
- data/db/migrate/20140804185157_add_default_to_shipment_cost.rb +10 -0
- data/db/migrate/20140805171035_add_default_to_spree_credit_cards.rb +5 -0
- data/db/migrate/20140805171219_make_existing_credit_cards_default.rb +10 -0
- data/db/migrate/20140806144901_add_type_to_reimbursement_type.rb +9 -0
- data/db/migrate/20140808184039_create_spree_reimbursement_credits.rb +10 -0
- data/db/migrate/20140827170513_add_meta_title_to_spree_products.rb +7 -0
- data/db/migrate/20140924164824_add_code_to_spree_tax_categories.rb +5 -0
- data/db/migrate/20140927193717_default_pre_tax_amount_should_be_zero.rb +6 -0
- data/db/migrate/20141002191113_add_code_to_spree_shipping_methods.rb +5 -0
- data/db/migrate/20141007230328_add_cancel_audit_fields_to_spree_orders.rb +6 -0
- data/db/migrate/20141009204607_add_store_id_to_orders.rb +8 -0
- data/db/migrate/20141012083513_create_spree_taxons_prototypes.rb +8 -0
- data/db/migrate/20141021194502_add_state_lock_version_to_order.rb +5 -0
- data/db/migrate/20141023005240_add_counter_cache_from_spree_variants_to_spree_stock_items.rb +8 -0
- data/db/migrate/20141101231208_fix_adjustment_order_presence.rb +13 -0
- data/db/migrate/20141105213646_update_classifications_positions.rb +9 -0
- data/db/migrate/20141120135441_add_guest_token_index_to_spree_orders.rb +5 -0
- data/db/migrate/20141231151320_add_default_column_to_price.rb +5 -0
- data/db/migrate/20150112194216_add_position_to_stock_location.rb +5 -0
- data/db/migrate/20150113002122_create_spree_promotion_codes.rb +13 -0
- data/db/migrate/20150113002123_create_adjustment_promotion_code_association.rb +6 -0
- data/db/migrate/20150121202544_add_restock_inventory_to_stock_location.rb +5 -0
- data/db/migrate/20150122202432_add_code_to_spree_promotion_categories.rb +5 -0
- data/db/migrate/20150127161843_create_order_stock_locations.rb +12 -0
- data/db/migrate/20150203151219_add_fulfillable_to_stock_location.rb +5 -0
- data/db/migrate/20150205210527_add_code_to_refund_reason.rb +5 -0
- data/db/migrate/20150213160148_add_promotion_code_id_to_orders_promotions.rb +7 -0
- data/db/migrate/20150213163612_add_approver_name_to_spree_orders.rb +5 -0
- data/db/migrate/20150225205344_move_promotion_code_to_promotion_code_value.rb +65 -0
- data/db/migrate/20150226195213_downcase_promotion_codes_values.rb +11 -0
- data/db/migrate/20150227161934_add_order_ids_to_adjustments_where_missing.rb +9 -0
- data/db/migrate/20150303212749_add_per_code_usage_limit_to_promotions.rb +5 -0
- data/db/migrate/20150303212826_remove_usage_limit_from_promotion_codes.rb +5 -0
- data/db/migrate/20150304211616_add_timestamps_to_order_promotions.rb +6 -0
- data/db/migrate/20150305043021_create_spree_cartons.rb +24 -0
- data/db/migrate/20150305210403_add_timestamps_to_spree_roles_users.rb +7 -0
- data/db/migrate/20150313140507_remove_considered_risky_from_spree_orders.rb +5 -0
- data/db/migrate/20150313192827_add_index_to_inventory_units_carton_id.rb +5 -0
- data/db/migrate/20150313201235_add_imported_from_shipment_id_to_cartons.rb +8 -0
- data/db/migrate/20150313201503_copy_shipped_shipments_to_cartons.rb +13 -0
- data/db/migrate/20150330144639_create_spree_user_stock_locations.rb +10 -0
- data/db/migrate/20150331134544_add_stock_location_code.rb +5 -0
- data/db/migrate/20150402210430_create_unit_cancels.rb +10 -0
- data/db/migrate/20150407173305_add_fields_to_stock_transfer.rb +12 -0
- data/db/migrate/20150407173531_create_transfer_items.rb +14 -0
- data/db/migrate/20150424143547_drop_stock_transfer_type.rb +10 -0
- data/db/migrate/20150424161102_add_stock_transfer_finalized_at.rb +8 -0
- data/db/migrate/20150429125822_rename_stock_transfer_reference.rb +5 -0
- data/db/migrate/20150430233803_create_line_item_actions.rb +10 -0
- data/db/migrate/20150506181159_create_spree_store_credit_categories.rb +10 -0
- data/db/migrate/20150506181244_create_spree_store_credits.rb +19 -0
- data/db/migrate/20150506181539_create_spree_store_credit_events.rb +17 -0
- data/db/migrate/20150506181611_create_spree_store_credit_payment_method.rb +13 -0
- data/db/migrate/20150506181715_create_store_credit_types.rb +17 -0
- data/db/migrate/20150506182045_create_store_credit_reimbursement_type.rb +5 -0
- data/db/migrate/20150508044622_add_resellable_to_return_items.rb +5 -0
- data/db/migrate/20150514185559_add_invalidated_at_to_spree_store_credits.rb +5 -0
- data/db/migrate/20150514201836_migrate_deleted_store_credits_to_invalidated.rb +13 -0
- data/db/migrate/20150515170322_add_check_stock_on_transfer.rb +5 -0
- data/db/migrate/20150528125647_delete_inventory_units_without_shipment.rb +25 -0
- data/db/migrate/20150601191251_add_deleted_at_to_stock_transfers.rb +5 -0
- data/db/migrate/20150601204148_add_deleted_at_to_transfer_items.rb +5 -0
- data/db/migrate/20150609193231_add_preferences_to_promotion_actions.rb +5 -0
- data/db/migrate/20150610182638_add_id_to_spree_option_values_variants.rb +5 -0
- data/db/migrate/20150611200247_add_frontend_viewable_to_spree_orders.rb +5 -0
- data/db/migrate/20150612205731_remove_spree_configurations.rb +15 -0
- data/db/migrate/20150618191713_remove_credit_card_address_id.rb +7 -0
- data/db/migrate/20150626214817_remove_counter_cache_from_spree_variants_to_spree_stock_items.rb +10 -0
- data/db/seeds.rb +5 -0
- data/lib/generators/spree/custom_user/custom_user_generator.rb +56 -0
- data/lib/generators/spree/custom_user/templates/authentication_helpers.rb.tt +36 -0
- data/lib/generators/spree/custom_user/templates/initializer.rb.tt +1 -0
- data/lib/generators/spree/custom_user/templates/migration.rb.tt +7 -0
- data/lib/generators/spree/dummy/dummy_generator.rb +140 -0
- data/lib/generators/spree/dummy/templates/initializers/custom_user.rb +1 -0
- data/lib/generators/spree/dummy/templates/initializers/devise.rb +3 -0
- data/lib/generators/spree/dummy/templates/rails/application.rb +10 -0
- data/lib/generators/spree/dummy/templates/rails/boot.rb +6 -0
- data/lib/generators/spree/dummy/templates/rails/database.yml +65 -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 +34 -0
- data/lib/generators/spree/install/install_generator.rb +191 -0
- data/lib/generators/spree/install/templates/config/initializers/spree.rb +41 -0
- data/lib/generators/spree/install/templates/vendor/assets/javascripts/spree/backend/all.js +13 -0
- data/lib/generators/spree/install/templates/vendor/assets/javascripts/spree/frontend/all.js +13 -0
- data/lib/generators/spree/install/templates/vendor/assets/stylesheets/spree/backend/all.css +12 -0
- data/lib/generators/spree/install/templates/vendor/assets/stylesheets/spree/frontend/all.css +12 -0
- data/lib/solidus_core.rb +1 -0
- data/lib/spree/core.rb +95 -0
- data/lib/spree/core/controller_helpers/auth.rb +83 -0
- data/lib/spree/core/controller_helpers/common.rb +74 -0
- data/lib/spree/core/controller_helpers/order.rb +106 -0
- data/lib/spree/core/controller_helpers/respond_with.rb +65 -0
- data/lib/spree/core/controller_helpers/search.rb +14 -0
- data/lib/spree/core/controller_helpers/store.rb +19 -0
- data/lib/spree/core/controller_helpers/strong_parameters.rb +42 -0
- data/lib/spree/core/delegate_belongs_to.rb +95 -0
- data/lib/spree/core/engine.rb +114 -0
- data/lib/spree/core/environment.rb +15 -0
- data/lib/spree/core/environment/calculators.rb +12 -0
- data/lib/spree/core/environment_extension.rb +25 -0
- data/lib/spree/core/importer.rb +9 -0
- data/lib/spree/core/importer/order.rb +202 -0
- data/lib/spree/core/importer/product.rb +62 -0
- data/lib/spree/core/permalinks.rb +71 -0
- data/lib/spree/core/product_duplicator.rb +74 -0
- data/lib/spree/core/product_filters.rb +194 -0
- data/lib/spree/core/routes.rb +46 -0
- data/lib/spree/core/search/base.rb +97 -0
- data/lib/spree/core/search/variant.rb +46 -0
- data/lib/spree/core/unreturned_item_charger.rb +102 -0
- data/lib/spree/core/validators/email.rb +7 -0
- data/lib/spree/core/version.rb +5 -0
- data/lib/spree/i18n.rb +37 -0
- data/lib/spree/i18n/base.rb +17 -0
- data/lib/spree/i18n/initializer.rb +1 -0
- data/lib/spree/localized_number.rb +24 -0
- data/lib/spree/migrations.rb +76 -0
- data/lib/spree/money.rb +72 -0
- data/lib/spree/permitted_attributes.rb +114 -0
- data/lib/spree/promo/environment.rb +9 -0
- data/lib/spree/responder.rb +45 -0
- data/lib/spree/testing_support/ability_helpers.rb +105 -0
- data/lib/spree/testing_support/authorization_helpers.rb +63 -0
- data/lib/spree/testing_support/bar_ability.rb +14 -0
- data/lib/spree/testing_support/caching.rb +47 -0
- data/lib/spree/testing_support/capybara_ext.rb +163 -0
- data/lib/spree/testing_support/common_rake.rb +40 -0
- data/lib/spree/testing_support/controller_requests.rb +83 -0
- data/lib/spree/testing_support/extension_rake.rb +10 -0
- data/lib/spree/testing_support/factories.rb +20 -0
- data/lib/spree/testing_support/factories/address_factory.rb +22 -0
- data/lib/spree/testing_support/factories/adjustment_factory.rb +26 -0
- data/lib/spree/testing_support/factories/calculator_factory.rb +24 -0
- data/lib/spree/testing_support/factories/carton_factory.rb +21 -0
- data/lib/spree/testing_support/factories/country_factory.rb +9 -0
- data/lib/spree/testing_support/factories/credit_card_factory.rb +10 -0
- data/lib/spree/testing_support/factories/customer_return_factory.rb +31 -0
- data/lib/spree/testing_support/factories/inventory_unit_factory.rb +10 -0
- data/lib/spree/testing_support/factories/line_item_factory.rb +14 -0
- data/lib/spree/testing_support/factories/options_factory.rb +13 -0
- data/lib/spree/testing_support/factories/order_factory.rb +100 -0
- data/lib/spree/testing_support/factories/order_promotion_factory.rb +6 -0
- data/lib/spree/testing_support/factories/payment_factory.rb +28 -0
- data/lib/spree/testing_support/factories/payment_method_factory.rb +27 -0
- data/lib/spree/testing_support/factories/price_factory.rb +7 -0
- data/lib/spree/testing_support/factories/product_factory.rb +36 -0
- data/lib/spree/testing_support/factories/product_option_type_factory.rb +6 -0
- data/lib/spree/testing_support/factories/product_property_factory.rb +6 -0
- data/lib/spree/testing_support/factories/promotion_category_factory.rb +6 -0
- data/lib/spree/testing_support/factories/promotion_code_factory.rb +6 -0
- data/lib/spree/testing_support/factories/promotion_factory.rb +62 -0
- data/lib/spree/testing_support/factories/property_factory.rb +6 -0
- data/lib/spree/testing_support/factories/prototype_factory.rb +6 -0
- data/lib/spree/testing_support/factories/refund_factory.rb +14 -0
- data/lib/spree/testing_support/factories/reimbursement_factory.rb +16 -0
- data/lib/spree/testing_support/factories/reimbursement_type_factory.rb +7 -0
- data/lib/spree/testing_support/factories/return_authorization_factory.rb +18 -0
- data/lib/spree/testing_support/factories/return_item_factory.rb +16 -0
- data/lib/spree/testing_support/factories/role_factory.rb +9 -0
- data/lib/spree/testing_support/factories/shipment_factory.rb +28 -0
- data/lib/spree/testing_support/factories/shipping_category_factory.rb +5 -0
- data/lib/spree/testing_support/factories/shipping_method_factory.rb +25 -0
- data/lib/spree/testing_support/factories/state_factory.rb +13 -0
- data/lib/spree/testing_support/factories/stock_factory.rb +31 -0
- data/lib/spree/testing_support/factories/stock_item_factory.rb +9 -0
- data/lib/spree/testing_support/factories/stock_location_factory.rb +28 -0
- data/lib/spree/testing_support/factories/stock_movement_factory.rb +11 -0
- data/lib/spree/testing_support/factories/stock_transfer_factory.rb +28 -0
- data/lib/spree/testing_support/factories/store_credit_category_factory.rb +6 -0
- data/lib/spree/testing_support/factories/store_credit_event_factory.rb +15 -0
- data/lib/spree/testing_support/factories/store_credit_factory.rb +10 -0
- data/lib/spree/testing_support/factories/store_credit_type_factory.rb +13 -0
- data/lib/spree/testing_support/factories/store_factory.rb +8 -0
- data/lib/spree/testing_support/factories/tax_category_factory.rb +7 -0
- data/lib/spree/testing_support/factories/tax_rate_factory.rb +8 -0
- data/lib/spree/testing_support/factories/taxon_factory.rb +7 -0
- data/lib/spree/testing_support/factories/taxonomy_factory.rb +5 -0
- data/lib/spree/testing_support/factories/tracker_factory.rb +7 -0
- data/lib/spree/testing_support/factories/user_factory.rb +22 -0
- data/lib/spree/testing_support/factories/variant_factory.rb +39 -0
- data/lib/spree/testing_support/factories/zone_factory.rb +17 -0
- data/lib/spree/testing_support/flash.rb +27 -0
- data/lib/spree/testing_support/i18n.rb +98 -0
- data/lib/spree/testing_support/mail.rb +20 -0
- data/lib/spree/testing_support/order_walkthrough.rb +78 -0
- data/lib/spree/testing_support/preferences.rb +29 -0
- data/lib/spree/testing_support/rspec-activemodel-mocks_patch.rb +8 -0
- data/lib/spree/testing_support/url_helpers.rb +9 -0
- data/lib/spree_core.rb +1 -0
- data/lib/tasks/core.rake +101 -0
- data/lib/tasks/email.rake +7 -0
- data/lib/tasks/exchanges.rake +48 -0
- data/lib/tasks/migrations/copy_shipped_shipments_to_cartons.rake +180 -0
- data/lib/tasks/order_capturing.rake +23 -0
- data/vendor/assets/javascripts/jquery-migrate-1.0.0.js +498 -0
- data/vendor/assets/javascripts/jquery.payment.js +497 -0
- data/vendor/assets/javascripts/jsuri.js +2 -0
- data/vendor/assets/stylesheets/normalize.css +375 -0
- data/vendor/assets/stylesheets/skeleton.css +242 -0
- metadata +993 -0
@@ -0,0 +1 @@
|
|
1
|
+
Rails.application.config.assets.precompile += %w( ink.css )
|
@@ -0,0 +1,42 @@
|
|
1
|
+
Spree::Core::Engine.config.to_prepare do
|
2
|
+
if Spree.user_class
|
3
|
+
Spree.user_class.class_eval do
|
4
|
+
|
5
|
+
include Spree::UserApiAuthentication
|
6
|
+
include Spree::UserReporting
|
7
|
+
|
8
|
+
has_many :role_users, foreign_key: "user_id", class_name: "Spree::RoleUser"
|
9
|
+
has_many :spree_roles, through: :role_users, source: :role
|
10
|
+
|
11
|
+
has_many :user_stock_locations, foreign_key: "user_id", class_name: "Spree::UserStockLocation"
|
12
|
+
has_many :stock_locations, through: :user_stock_locations
|
13
|
+
|
14
|
+
has_many :spree_orders, foreign_key: "user_id", class_name: "Spree::Order"
|
15
|
+
|
16
|
+
has_many :store_credits, -> { includes(:credit_type) }, foreign_key: "user_id", class_name: "Spree::StoreCredit"
|
17
|
+
has_many :store_credit_events, through: :store_credits
|
18
|
+
|
19
|
+
belongs_to :ship_address, class_name: 'Spree::Address'
|
20
|
+
belongs_to :bill_address, class_name: 'Spree::Address'
|
21
|
+
|
22
|
+
# has_spree_role? simply needs to return true or false whether a user has a role or not.
|
23
|
+
def has_spree_role?(role_in_question)
|
24
|
+
spree_roles.any? { |role| role.name == role_in_question.to_s }
|
25
|
+
end
|
26
|
+
|
27
|
+
# @return [Spree::Order] the most-recently-created incomplete order
|
28
|
+
# since the customer's last complete order.
|
29
|
+
def last_incomplete_spree_order(store: nil, only_frontend_viewable: true)
|
30
|
+
self_orders = self.orders
|
31
|
+
self_orders = self_orders.where(frontend_viewable: true) if only_frontend_viewable
|
32
|
+
self_orders = self_orders.where(store: store) if store
|
33
|
+
last_order = self_orders.order(:created_at).last
|
34
|
+
last_order unless last_order.try!(:completed?)
|
35
|
+
end
|
36
|
+
|
37
|
+
def total_available_store_credit
|
38
|
+
store_credits.reload.to_a.sum{ |credit| credit.amount_remaining }
|
39
|
+
end
|
40
|
+
end
|
41
|
+
end
|
42
|
+
end
|
@@ -0,0 +1,1534 @@
|
|
1
|
+
en:
|
2
|
+
activerecord:
|
3
|
+
attributes:
|
4
|
+
spree/address:
|
5
|
+
address1: Address
|
6
|
+
address2: Address (contd.)
|
7
|
+
city: City
|
8
|
+
country: Country
|
9
|
+
firstname: First Name
|
10
|
+
lastname: Last Name
|
11
|
+
phone: Phone
|
12
|
+
state: State
|
13
|
+
zipcode: Zip Code
|
14
|
+
spree/calculator/tiered_flat_rate:
|
15
|
+
preferred_base_amount: Base Amount
|
16
|
+
preferred_tiers: Tiers
|
17
|
+
spree/calculator/tiered_percent:
|
18
|
+
preferred_base_percent: Base Percent
|
19
|
+
preferred_tiers: Tiers
|
20
|
+
spree/country:
|
21
|
+
iso: ISO
|
22
|
+
iso3: ISO3
|
23
|
+
iso_name: ISO Name
|
24
|
+
name: Name
|
25
|
+
numcode: ISO Code
|
26
|
+
spree/credit_card:
|
27
|
+
base: ''
|
28
|
+
cc_type: Type
|
29
|
+
month: Month
|
30
|
+
number: Number
|
31
|
+
verification_value: Verification Value
|
32
|
+
year: Year
|
33
|
+
name: Name
|
34
|
+
spree/inventory_unit:
|
35
|
+
state: State
|
36
|
+
spree/line_item:
|
37
|
+
price: Price
|
38
|
+
quantity: Quantity
|
39
|
+
spree/option_type:
|
40
|
+
name: Name
|
41
|
+
presentation: Presentation
|
42
|
+
spree/order:
|
43
|
+
checkout_complete: Checkout Complete
|
44
|
+
completed_at: Completed At
|
45
|
+
coupon_code: Coupon Code
|
46
|
+
created_at: Order Date
|
47
|
+
email: Customer E-Mail
|
48
|
+
ip_address: IP Address
|
49
|
+
item_total: Item Total
|
50
|
+
number: Number
|
51
|
+
payment_state: Payment State
|
52
|
+
shipment_state: Shipment State
|
53
|
+
special_instructions: Special Instructions
|
54
|
+
state: State
|
55
|
+
total: Total
|
56
|
+
considered_risky: Risky
|
57
|
+
spree/order/bill_address:
|
58
|
+
address1: Billing address street
|
59
|
+
city: Billing address city
|
60
|
+
firstname: Billing address first name
|
61
|
+
lastname: Billing address last name
|
62
|
+
phone: Billing address phone
|
63
|
+
state: Billing address state
|
64
|
+
zipcode: Billing address zipcode
|
65
|
+
spree/order/ship_address:
|
66
|
+
address1: Shipping address street
|
67
|
+
city: Shipping address city
|
68
|
+
firstname: Shipping address first name
|
69
|
+
lastname: Shipping address last name
|
70
|
+
phone: Shipping address phone
|
71
|
+
state: Shipping address state
|
72
|
+
zipcode: Shipping address zipcode
|
73
|
+
spree/payment:
|
74
|
+
amount: Amount
|
75
|
+
spree/payment_method:
|
76
|
+
name: Name
|
77
|
+
spree/product:
|
78
|
+
available_on: Available On
|
79
|
+
cost_currency: Cost Currency
|
80
|
+
cost_price: Cost Price
|
81
|
+
description: Description
|
82
|
+
master_price: Master Price
|
83
|
+
name: Name
|
84
|
+
on_hand: On Hand
|
85
|
+
shipping_category: Shipping Category
|
86
|
+
tax_category: Tax Category
|
87
|
+
spree/promotion:
|
88
|
+
advertise: Advertise
|
89
|
+
code: Code
|
90
|
+
description: Description
|
91
|
+
event_name: Event Name
|
92
|
+
expires_at: Expires At
|
93
|
+
name: Name
|
94
|
+
path: Path
|
95
|
+
starts_at: Starts At
|
96
|
+
usage_limit: Usage Limit
|
97
|
+
spree/promotion_category:
|
98
|
+
name: Name
|
99
|
+
spree/property:
|
100
|
+
name: Name
|
101
|
+
presentation: Presentation
|
102
|
+
spree/prototype:
|
103
|
+
name: Name
|
104
|
+
spree/return_authorization:
|
105
|
+
amount: Amount
|
106
|
+
spree/role:
|
107
|
+
name: Name
|
108
|
+
spree/state:
|
109
|
+
abbr: Abbreviation
|
110
|
+
name: Name
|
111
|
+
spree/store:
|
112
|
+
url: Site URL
|
113
|
+
meta_description: Meta Description
|
114
|
+
meta_keywords: Meta Keywords
|
115
|
+
seo_title: Seo Title
|
116
|
+
name: Site Name
|
117
|
+
mail_from_address: Mail From Address
|
118
|
+
spree/store_credit:
|
119
|
+
amount_used: Amount used
|
120
|
+
spree/tax_category:
|
121
|
+
description: Description
|
122
|
+
name: Name
|
123
|
+
spree/tax_rate:
|
124
|
+
amount: Rate
|
125
|
+
included_in_price: Included in Price
|
126
|
+
show_rate_in_label: Show rate in label
|
127
|
+
spree/taxon:
|
128
|
+
name: Name
|
129
|
+
permalink: Permalink
|
130
|
+
position: Position
|
131
|
+
spree/taxonomy:
|
132
|
+
name: Name
|
133
|
+
spree/user:
|
134
|
+
email: Email
|
135
|
+
password: Password
|
136
|
+
password_confirmation: Password Confirmation
|
137
|
+
spree/variant:
|
138
|
+
cost_currency: Cost Currency
|
139
|
+
cost_price: Cost Price
|
140
|
+
depth: Depth
|
141
|
+
height: Height
|
142
|
+
price: Price
|
143
|
+
sku: SKU
|
144
|
+
weight: Weight
|
145
|
+
width: Width
|
146
|
+
spree/zone:
|
147
|
+
description: Description
|
148
|
+
name: Name
|
149
|
+
models:
|
150
|
+
spree/address:
|
151
|
+
one: Address
|
152
|
+
other: Addresses
|
153
|
+
spree/country:
|
154
|
+
one: Country
|
155
|
+
other: Countries
|
156
|
+
spree/credit_card:
|
157
|
+
one: Credit Card
|
158
|
+
other: Credit Cards
|
159
|
+
spree/customer_return:
|
160
|
+
one: Customer Return
|
161
|
+
other: Customer Returns
|
162
|
+
spree/inventory_unit:
|
163
|
+
one: Inventory Unit
|
164
|
+
other: Inventory Units
|
165
|
+
spree/line_item:
|
166
|
+
one: Line Item
|
167
|
+
other: Line Items
|
168
|
+
spree/option_type:
|
169
|
+
one: Option Type
|
170
|
+
other: Option Types
|
171
|
+
spree/option_value:
|
172
|
+
one: Option Value
|
173
|
+
other: Option Values
|
174
|
+
spree/order:
|
175
|
+
one: Order
|
176
|
+
other: Orders
|
177
|
+
spree/payment:
|
178
|
+
one: Payment
|
179
|
+
other: Payments
|
180
|
+
spree/payment_method:
|
181
|
+
one: Payment Method
|
182
|
+
other: Payment Methods
|
183
|
+
spree/product:
|
184
|
+
one: Product
|
185
|
+
other: Products
|
186
|
+
spree/promotion:
|
187
|
+
one: Promotion
|
188
|
+
other: Promotions
|
189
|
+
spree/promotion_category:
|
190
|
+
one: Promotion Category
|
191
|
+
other: Promotion Categories
|
192
|
+
spree/property:
|
193
|
+
one: Property
|
194
|
+
other: Properties
|
195
|
+
spree/prototype:
|
196
|
+
one: Prototype
|
197
|
+
other: Prototypes
|
198
|
+
spree/refund_reason:
|
199
|
+
one: Refund Reason
|
200
|
+
other: Refund Reasons
|
201
|
+
spree/reimbursement:
|
202
|
+
one: Reimbursement
|
203
|
+
other: Reimbursements
|
204
|
+
spree/reimbursement_type:
|
205
|
+
one: Reimbursement Type
|
206
|
+
other: Reimbursement Types
|
207
|
+
spree/return_authorization:
|
208
|
+
one: Return Authorization
|
209
|
+
other: Return Authorizations
|
210
|
+
spree/return_authorization_reason:
|
211
|
+
one: Return Authorization Reason
|
212
|
+
other: Return Authorization Reasons
|
213
|
+
spree/role:
|
214
|
+
one: Roles
|
215
|
+
other: Roles
|
216
|
+
spree/shipment:
|
217
|
+
one: Shipment
|
218
|
+
other: Shipments
|
219
|
+
spree/shipping_category:
|
220
|
+
one: Shipping Category
|
221
|
+
other: Shipping Categories
|
222
|
+
spree/shipping_method:
|
223
|
+
one: Shipping Method
|
224
|
+
other: Shipping Methods
|
225
|
+
spree/state:
|
226
|
+
one: State
|
227
|
+
other: States
|
228
|
+
spree/stock_movement:
|
229
|
+
one: Stock Movement
|
230
|
+
other: Stock Movements
|
231
|
+
spree/stock_location:
|
232
|
+
one: Stock Location
|
233
|
+
other: Stock Locations
|
234
|
+
spree/stock_transfer:
|
235
|
+
one: Stock Transfer
|
236
|
+
other: Stock Transfers
|
237
|
+
spree/tax_category:
|
238
|
+
one: Tax Category
|
239
|
+
other: Tax Categories
|
240
|
+
spree/tax_rate:
|
241
|
+
one: Tax Rate
|
242
|
+
other: Tax Rates
|
243
|
+
spree/taxon:
|
244
|
+
one: Taxon
|
245
|
+
other: Taxons
|
246
|
+
spree/taxonomy:
|
247
|
+
one: Taxonomy
|
248
|
+
other: Taxonomies
|
249
|
+
spree/tracker:
|
250
|
+
one: Tracker
|
251
|
+
other: Trackers
|
252
|
+
spree/transfer_item:
|
253
|
+
one: Transfer Item
|
254
|
+
other: Transfer Items
|
255
|
+
spree/user:
|
256
|
+
one: User
|
257
|
+
other: Users
|
258
|
+
spree/variant:
|
259
|
+
one: Variant
|
260
|
+
other: Variants
|
261
|
+
spree/zone:
|
262
|
+
one: Zone
|
263
|
+
other: Zones
|
264
|
+
errors:
|
265
|
+
models:
|
266
|
+
spree/calculator/tiered_flat_rate:
|
267
|
+
attributes:
|
268
|
+
base:
|
269
|
+
keys_should_be_positive_number: "Tier keys should all be numbers larger than 0"
|
270
|
+
preferred_tiers:
|
271
|
+
should_be_hash: "should be a hash"
|
272
|
+
spree/calculator/tiered_percent:
|
273
|
+
attributes:
|
274
|
+
base:
|
275
|
+
keys_should_be_positive_number: "Tier keys should all be numbers larger than 0"
|
276
|
+
values_should_be_percent: "Tier values should all be percentages between 0% and 100%"
|
277
|
+
preferred_tiers:
|
278
|
+
should_be_hash: "should be a hash"
|
279
|
+
spree/classification:
|
280
|
+
attributes:
|
281
|
+
taxon_id:
|
282
|
+
already_linked: "is already linked to this product"
|
283
|
+
spree/credit_card:
|
284
|
+
attributes:
|
285
|
+
base:
|
286
|
+
card_expired: "Card has expired"
|
287
|
+
expiry_invalid: "Card expiration is invalid"
|
288
|
+
spree/line_item:
|
289
|
+
attributes:
|
290
|
+
currency:
|
291
|
+
must_match_order_currency: "Must match order currency"
|
292
|
+
spree/refund:
|
293
|
+
attributes:
|
294
|
+
amount:
|
295
|
+
greater_than_allowed: is greater than the allowed amount.
|
296
|
+
spree/reimbursement:
|
297
|
+
attributes:
|
298
|
+
base:
|
299
|
+
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.
|
300
|
+
spree/return_item:
|
301
|
+
attributes:
|
302
|
+
reimbursement:
|
303
|
+
cannot_be_associated_unless_accepted: cannot be associated to a return item that is not accepted.
|
304
|
+
inventory_unit:
|
305
|
+
other_completed_return_item_exists: "%{inventory_unit_id} has already been taken by return item %{return_item_id}"
|
306
|
+
spree/store:
|
307
|
+
attributes:
|
308
|
+
base:
|
309
|
+
cannot_destroy_default_store: Cannot destroy the default Store.
|
310
|
+
|
311
|
+
|
312
|
+
devise:
|
313
|
+
confirmations:
|
314
|
+
confirmed: Your account was successfully confirmed. You are now signed in.
|
315
|
+
send_instructions: You will receive an email with instructions about how to confirm your account in a few minutes.
|
316
|
+
failure:
|
317
|
+
inactive: Your account was not activated yet.
|
318
|
+
invalid: Invalid email or password.
|
319
|
+
invalid_token: Invalid authentication token.
|
320
|
+
locked: Your account is locked.
|
321
|
+
timeout: Your session expired, please sign in again to continue.
|
322
|
+
unauthenticated: You need to sign in or sign up before continuing.
|
323
|
+
unconfirmed: You have to confirm your account before continuing.
|
324
|
+
mailer:
|
325
|
+
confirmation_instructions:
|
326
|
+
subject: Confirmation instructions
|
327
|
+
reset_password_instructions:
|
328
|
+
subject: Reset password instructions
|
329
|
+
unlock_instructions:
|
330
|
+
subject: Unlock Instructions
|
331
|
+
oauth_callbacks:
|
332
|
+
failure: Could not authorize you from %{kind} because "%{reason}".
|
333
|
+
success: Successfully authorized from %{kind} account.
|
334
|
+
unlocks:
|
335
|
+
send_instructions: You will receive an email with instructions about how to unlock your account in a few minutes.
|
336
|
+
unlocked: Your account was successfully unlocked. You are now signed in.
|
337
|
+
user_passwords:
|
338
|
+
user:
|
339
|
+
cannot_be_blank: Your password cannot be blank.
|
340
|
+
send_instructions: You will receive an email with instructions about how to reset your password in a few minutes.
|
341
|
+
updated: Your password was changed successfully. You are now signed in.
|
342
|
+
user_registrations:
|
343
|
+
destroyed: Bye! Your account was successfully cancelled. We hope to see you again soon.
|
344
|
+
inactive_signed_up: You have signed up successfully. However, we could not sign you in because your account is %{reason}.
|
345
|
+
signed_up: Welcome! You have signed up successfully.
|
346
|
+
updated: You updated your account successfully.
|
347
|
+
user_sessions:
|
348
|
+
signed_in: Signed in successfully.
|
349
|
+
signed_out: Signed out successfully.
|
350
|
+
errors:
|
351
|
+
messages:
|
352
|
+
already_confirmed: was already confirmed
|
353
|
+
not_found: not found
|
354
|
+
not_locked: was not locked
|
355
|
+
not_saved:
|
356
|
+
one: ! '1 error prohibited this %{resource} from being saved:'
|
357
|
+
other: ! '%{count} errors prohibited this %{resource} from being saved:'
|
358
|
+
spree:
|
359
|
+
abbreviation: Abbreviation
|
360
|
+
accept: Accept
|
361
|
+
acceptance_status: Acceptance status
|
362
|
+
acceptance_errors: Acceptance errors
|
363
|
+
accepted: Accepted
|
364
|
+
account: Account
|
365
|
+
account_updated: Account updated
|
366
|
+
action: Action
|
367
|
+
actions:
|
368
|
+
cancel: Cancel
|
369
|
+
continue: Continue
|
370
|
+
create: Create
|
371
|
+
destroy: Destroy
|
372
|
+
edit: Edit
|
373
|
+
list: List
|
374
|
+
listing: Listing
|
375
|
+
new: New
|
376
|
+
refund: Refund
|
377
|
+
receive: Receive
|
378
|
+
save: Save
|
379
|
+
update: Update
|
380
|
+
activate: Activate
|
381
|
+
active: Active
|
382
|
+
add: Add
|
383
|
+
added: Added
|
384
|
+
add_action_of_type: Add action of type
|
385
|
+
add_country: Add Country
|
386
|
+
add_coupon_code: Add Coupon Code
|
387
|
+
add_new_header: Add New Header
|
388
|
+
add_new_style: Add New Style
|
389
|
+
add_one: Add One
|
390
|
+
add_option_value: Add Option Value
|
391
|
+
add_product: Add Product
|
392
|
+
add_product_properties: Add Product Properties
|
393
|
+
add_rule_of_type: Add rule of type
|
394
|
+
add_state: Add State
|
395
|
+
add_stock: Add Stock
|
396
|
+
add_stock_management: Add Stock Management
|
397
|
+
add_to_cart: Add To Cart
|
398
|
+
add_to_stock_location: Add to location
|
399
|
+
add_variant: Add Variant
|
400
|
+
adding_match: Adding match
|
401
|
+
additional_item: Additional Item
|
402
|
+
address1: Address
|
403
|
+
address2: Address (contd.)
|
404
|
+
adjustable: Adjustable
|
405
|
+
adjustment: Adjustment
|
406
|
+
adjustment_amount: Amount
|
407
|
+
adjustment_successfully_closed: Adjustment has been successfully closed!
|
408
|
+
adjustment_successfully_opened: Adjustment has been successfully opened!
|
409
|
+
adjustment_total: Adjustment Total
|
410
|
+
adjustments: Adjustments
|
411
|
+
admin:
|
412
|
+
tab:
|
413
|
+
configuration: Configuration
|
414
|
+
option_types: Option Types
|
415
|
+
orders: Orders
|
416
|
+
overview: Overview
|
417
|
+
products: Products
|
418
|
+
promotions: Promotions
|
419
|
+
properties: Properties
|
420
|
+
prototypes: Prototypes
|
421
|
+
reports: Reports
|
422
|
+
taxonomies: Taxonomies
|
423
|
+
taxons: Taxons
|
424
|
+
users: Users
|
425
|
+
user:
|
426
|
+
account: Account
|
427
|
+
addresses: Addresses
|
428
|
+
items: Items
|
429
|
+
items_purchased: Items Purchased
|
430
|
+
order_history: Order History
|
431
|
+
order_num: "Order #"
|
432
|
+
orders: Orders
|
433
|
+
store_credit: Store Credit
|
434
|
+
user_information: User Information
|
435
|
+
store_credits:
|
436
|
+
add: "Add store credit"
|
437
|
+
new: "New store credit"
|
438
|
+
edit: "Editing store credit"
|
439
|
+
back_to_user_list: "Back to user list"
|
440
|
+
back_to_store_credit_list: "Back to store credit list"
|
441
|
+
credited_html_header: "Amount Credited"
|
442
|
+
used_html_header: "Amount Used"
|
443
|
+
authed_html_header: "Amount Authorized"
|
444
|
+
type_html_header: "Credit Type"
|
445
|
+
created_by: "Created By"
|
446
|
+
invalidated: "Invalidated"
|
447
|
+
issued_on: "Issued On"
|
448
|
+
select_reason: "Select a reason for this store credit"
|
449
|
+
unable_to_create: "Unable to create store credit"
|
450
|
+
unable_to_update: "Unable to update store credit"
|
451
|
+
unable_to_delete: "Unable to delete store credit"
|
452
|
+
resource_name: "store credits"
|
453
|
+
no_store_credit_selected: "No store credit was selected"
|
454
|
+
errors:
|
455
|
+
cannot_change_used_store_credit: "Store credit that has been claimed cannot be changed"
|
456
|
+
amount_used_cannot_be_greater: "cannot be greater than the credited amount"
|
457
|
+
amount_authorized_exceeds_total_credit: " exceeds the available credit"
|
458
|
+
amount_used_not_zero: "is greater than zero. Can not delete store credit"
|
459
|
+
administration: Administration
|
460
|
+
agree_to_privacy_policy: Agree to Privacy Policy
|
461
|
+
agree_to_terms_of_service: Agree to Terms of Service
|
462
|
+
all: All
|
463
|
+
all_adjustments_closed: All adjustments successfully closed!
|
464
|
+
all_adjustments_opened: All adjustments successfully opened!
|
465
|
+
all_departments: All departments
|
466
|
+
all_items_have_been_returned: All items have been returned
|
467
|
+
already_signed_up_for_analytics: You have already signed up for Spree Analytics
|
468
|
+
alt_text: Alternative Text
|
469
|
+
alternative_phone: Alternative Phone
|
470
|
+
amount: Amount
|
471
|
+
analytics_desc_header_1: Spree Analytics
|
472
|
+
analytics_desc_header_2: Live analytics integrated into your Spree dashboard
|
473
|
+
analytics_desc_list_1: Get live sales information as it happens
|
474
|
+
analytics_desc_list_2: Requires only a free Spree account to activate
|
475
|
+
analytics_desc_list_3: Absolutely no code to install
|
476
|
+
analytics_desc_list_4: It's completely free!
|
477
|
+
analytics_trackers: Analytics Trackers
|
478
|
+
and: and
|
479
|
+
approve: approve
|
480
|
+
approver: Approver
|
481
|
+
approved_at: Approved at
|
482
|
+
are_you_sure: Are you sure?
|
483
|
+
are_you_sure_delete: Are you sure you want to delete this record?
|
484
|
+
are_you_sure_close_stock_transfer: Are you sure you want to close this stock transfer?
|
485
|
+
are_you_sure_finalize_stock_transfer: Are you sure you want to finalize this stock transfer?
|
486
|
+
are_you_sure_ship_stock_transfer: Are you sure you want to ship this stock transfer?
|
487
|
+
authorization_failure: Authorization Failure
|
488
|
+
authorized: Authorized
|
489
|
+
auto_capture: Auto Capture
|
490
|
+
auto_receive: Auto Receive
|
491
|
+
available_on: Available On
|
492
|
+
average_order_value: Average Order Value
|
493
|
+
avs_response: AVS Response
|
494
|
+
back: Back
|
495
|
+
back_end: Backend
|
496
|
+
backordered: Backordered
|
497
|
+
back_to_adjustments_list: Back To Adjustments List
|
498
|
+
back_to_customer_return: Back To Customer Return
|
499
|
+
back_to_customer_return_list: Back To Customer Return List
|
500
|
+
back_to_images_list: Back To Images List
|
501
|
+
back_to_option_types_list: Back To Option Types List
|
502
|
+
back_to_orders_list: Back To Orders List
|
503
|
+
back_to_payment: Back To Payment
|
504
|
+
back_to_payment_methods_list: Back To Payment Methods List
|
505
|
+
back_to_payments_list: Back To Payments List
|
506
|
+
back_to_products_list: Back To Products List
|
507
|
+
back_to_promotions_list: Back To Promotions List
|
508
|
+
back_to_promotion_categories_list: Back To Promotions Categories List
|
509
|
+
back_to_properties_list: Back To Properties List
|
510
|
+
back_to_prototypes_list: Back To Prototypes List
|
511
|
+
back_to_reports_list: Back To Reports List
|
512
|
+
back_to_refund_reason_list: Back To Refund Reason List
|
513
|
+
back_to_reimbursement_type_list: Back To Reimbursement Type List
|
514
|
+
back_to_rma_reason_list: Back To RMA Reason List
|
515
|
+
back_to_shipping_categories: Back To Shipping Categories
|
516
|
+
back_to_shipping_categories_list: Back To Shipping Categories List
|
517
|
+
back_to_shipping_methods_list: Back To Shipping Methods List
|
518
|
+
back_to_states_list: Back To States List
|
519
|
+
back_to_stock_locations_list: Back to Stock Locations List
|
520
|
+
back_to_stock_movements_list: Back to Stock Movements List
|
521
|
+
back_to_stock_transfers_list: Back to Stock Transfers List
|
522
|
+
back_to_store: Go Back To Store
|
523
|
+
back_to_tax_categories_list: Back To Tax Categories List
|
524
|
+
back_to_taxonomies_list: Back To Taxonomies List
|
525
|
+
back_to_trackers_list: Back To Trackers List
|
526
|
+
back_to_users_list: Back To Users List
|
527
|
+
back_to_zones_list: Back To Zones List
|
528
|
+
backorderable: Backorderable
|
529
|
+
backorderable_default: Backorderable default
|
530
|
+
backorderable_header: Back orderable
|
531
|
+
backorders_allowed: backorders allowed
|
532
|
+
balance_due: Balance Due
|
533
|
+
base_amount: Base Amount
|
534
|
+
base_percent: Base Percent
|
535
|
+
bill_address: Bill Address
|
536
|
+
billing: Billing
|
537
|
+
billing_address: Billing Address
|
538
|
+
both: Both
|
539
|
+
calculated_reimbursements: Calculated Reimbursements
|
540
|
+
calculator: Calculator
|
541
|
+
calculator_settings_warning: If you are changing the calculator type, you must save first before you can edit the calculator settings
|
542
|
+
cancel: cancel
|
543
|
+
cancel_inventory: 'Cancel Inventory'
|
544
|
+
canceled: canceled
|
545
|
+
canceled_at: Canceled at
|
546
|
+
canceler: Canceler
|
547
|
+
cancellation: Cancellation
|
548
|
+
cannot_create_payment_without_payment_methods: You cannot create a payment for an order without any payment methods defined.
|
549
|
+
cannot_create_returns: Cannot create returns as this order has no shipped units.
|
550
|
+
cannot_perform_operation: Cannot perform requested operation
|
551
|
+
cannot_set_shipping_method_without_address: Cannot set shipping method until customer details are provided.
|
552
|
+
capture: Capture
|
553
|
+
capture_events: Capture events
|
554
|
+
card_code: Card Code
|
555
|
+
card_number: Card Number
|
556
|
+
card_type: Brand
|
557
|
+
card_type_is: Card type is
|
558
|
+
cart: Cart
|
559
|
+
cart_subtotal:
|
560
|
+
one: 'Subtotal (1 item)'
|
561
|
+
other: 'Subtotal (%{count} items)'
|
562
|
+
carton_external_number: External Number
|
563
|
+
carton_orders: 'Other orders with Carton'
|
564
|
+
categories: Categories
|
565
|
+
category: Category
|
566
|
+
charged: Charged
|
567
|
+
check_stock_on_transfer: Check stock on transfer
|
568
|
+
checkout: Checkout
|
569
|
+
choose_a_customer: Choose a customer
|
570
|
+
choose_a_taxon_to_sort_products_for: "Choose a taxon to sort products for"
|
571
|
+
choose_currency: Choose Currency
|
572
|
+
choose_dashboard_locale: Choose Dashboard Locale
|
573
|
+
choose_location: Choose location
|
574
|
+
city: City
|
575
|
+
clear_cache: Clear Cache
|
576
|
+
clear_cache_ok: Cache was flushed
|
577
|
+
clear_cache_warning: Clearing cache will temporarily reduce the performance of your store.
|
578
|
+
clone: Clone
|
579
|
+
close: Close
|
580
|
+
close_all_adjustments: Close All Adjustments
|
581
|
+
close_stock_transfer:
|
582
|
+
will_cause: Closing a stock transfer will cause the following
|
583
|
+
no_longer_edit: You will no longer be able to edit the stock transfer in any way
|
584
|
+
stock_movements_created: Stock movements will be created for the received items
|
585
|
+
code: Code
|
586
|
+
company: Company
|
587
|
+
complete: complete
|
588
|
+
complete_order: Complete Order
|
589
|
+
configuration: Configuration
|
590
|
+
configurations: Configurations
|
591
|
+
confirm: Confirm
|
592
|
+
confirm_delete: Confirm Deletion
|
593
|
+
confirm_order: Confirm Order
|
594
|
+
confirm_password: Password Confirmation
|
595
|
+
continue: Continue
|
596
|
+
continue_shopping: Continue shopping
|
597
|
+
cost_currency: Cost Currency
|
598
|
+
cost_price: Cost Price
|
599
|
+
could_not_connect_to_jirafe: Could not connect to Jirafe to sync data. This will be automatically retried later.
|
600
|
+
could_not_create_customer_return: Could not create customer return
|
601
|
+
could_not_create_stock_movement: There was a problem saving this stock movement. Please try again.
|
602
|
+
count_on_hand: Count On Hand
|
603
|
+
countries: Countries
|
604
|
+
country: Country
|
605
|
+
country_based: Country Based
|
606
|
+
country_name: Name
|
607
|
+
country_names:
|
608
|
+
CA: Canada
|
609
|
+
FRA: France
|
610
|
+
ITA: Italy
|
611
|
+
US: United States of America
|
612
|
+
coupon: Coupon
|
613
|
+
coupon_code: Coupon code
|
614
|
+
coupon_code_already_applied: The coupon code has already been applied to this order
|
615
|
+
coupon_code_applied: The coupon code was successfully applied to your order.
|
616
|
+
coupon_code_better_exists: The previously applied coupon code results in a better deal
|
617
|
+
coupon_code_expired: The coupon code is expired
|
618
|
+
coupon_code_max_usage: Coupon code usage limit exceeded
|
619
|
+
coupon_code_not_eligible: This coupon code is not eligible for this order
|
620
|
+
coupon_code_not_found: The coupon code you entered doesn't exist. Please try again.
|
621
|
+
coupon_code_unknown_error: This coupon code could not be applied to the cart at this time.
|
622
|
+
customer: Customer
|
623
|
+
customer_return: Customer Return
|
624
|
+
customer_returns: Customer Returns
|
625
|
+
create: Create
|
626
|
+
create_a_new_account: Create a new account
|
627
|
+
create_new_order: Create new order
|
628
|
+
create_reimbursement: Create reimbursement
|
629
|
+
created_at: Created At
|
630
|
+
created_by: Created by
|
631
|
+
created_successfully: Created successfully
|
632
|
+
credit: Credit
|
633
|
+
credits: Credits
|
634
|
+
credit_card: Credit Card
|
635
|
+
credit_cards: Credit Cards
|
636
|
+
credit_owed: Credit Owed
|
637
|
+
currency: Currency
|
638
|
+
currency_settings: Currency Settings
|
639
|
+
current: Current
|
640
|
+
current_promotion_usage: ! 'Current Usage: %{count}'
|
641
|
+
customer: Customer
|
642
|
+
customer_details: Customer Details
|
643
|
+
customer_details_updated: Customer Details Updated
|
644
|
+
customer_search: Customer Search
|
645
|
+
cut: Cut
|
646
|
+
cvv_response: CVV Response
|
647
|
+
dash:
|
648
|
+
jirafe:
|
649
|
+
app_id: App ID
|
650
|
+
app_token: App Token
|
651
|
+
currently_unavailable: Jirafe is currently unavailable. Spree will automatically connect to Jirafe once it is available.
|
652
|
+
explanation: The fields below may already be populated if you chose to register with Jirafe from the admin dashboard.
|
653
|
+
header: Jirafe Analytics Settings
|
654
|
+
site_id: Site ID
|
655
|
+
token: Token
|
656
|
+
jirafe_settings_updated: Jirafe Settings have been updated.
|
657
|
+
date: Date
|
658
|
+
date_completed: Date Completed
|
659
|
+
date_picker:
|
660
|
+
first_day: 0
|
661
|
+
format: ! '%Y/%m/%d'
|
662
|
+
js_format: yy/mm/dd
|
663
|
+
date_range: Date Range
|
664
|
+
default: Default
|
665
|
+
default_refund_amount: Default Refund Amount
|
666
|
+
default_tax: Default Tax
|
667
|
+
default_tax_zone: Default Tax Zone
|
668
|
+
delete: Delete
|
669
|
+
deleted_variants_present: Some line items in this order have products that are no longer available.
|
670
|
+
deleted_successfully: Deleted successfully
|
671
|
+
delivery: Delivery
|
672
|
+
depth: Depth
|
673
|
+
description: Description
|
674
|
+
destination: Destination
|
675
|
+
destination_location: Destination location
|
676
|
+
destroy: Destroy
|
677
|
+
discount_amount: Discount Amount
|
678
|
+
dismiss_banner: No. Thanks! I'm not interested, do not display this message again
|
679
|
+
display: Display
|
680
|
+
download_promotion_code_list: Download Code List
|
681
|
+
edit: Edit
|
682
|
+
editing_country: Editing Country
|
683
|
+
editing_option_type: Editing Option Type
|
684
|
+
editing_payment_method: Editing Payment Method
|
685
|
+
editing_product: Editing Product
|
686
|
+
editing_promotion: Editing Promotion
|
687
|
+
editing_promotion_category: Editing Promotion Category
|
688
|
+
editing_property: Editing Property
|
689
|
+
editing_prototype: Editing Prototype
|
690
|
+
edit_refund_reason: Edit Refund Reason
|
691
|
+
editing_refund_reason: Editing Refund Reason
|
692
|
+
editing_reimbursement: Editing Reimbursement
|
693
|
+
editing_reimbursement_type: Editing Reimbursement Type
|
694
|
+
editing_rma_reason: Editing RMA Reason
|
695
|
+
editing_shipping_category: Editing Shipping Category
|
696
|
+
editing_shipping_method: Editing Shipping Method
|
697
|
+
editing_state: Editing State
|
698
|
+
editing_stock_location: Editing Stock Location
|
699
|
+
editing_stock_movement: Editing Stock Movement
|
700
|
+
editing_stock_transfer: Editing Stock Transfer
|
701
|
+
editing_tax_category: Editing Tax Category
|
702
|
+
editing_tax_rate: Editing Tax Rate
|
703
|
+
editing_tracker: Editing Tracker
|
704
|
+
editing_user: Editing User
|
705
|
+
editing_zone: Editing Zone
|
706
|
+
eligibility_errors:
|
707
|
+
messages:
|
708
|
+
has_excluded_product: Your cart contains a product that prevents this coupon code from being applied.
|
709
|
+
item_total_less_than: This coupon code can't be applied to orders less than %{amount}.
|
710
|
+
item_total_less_than_or_equal: This coupon code can't be applied to orders less than or equal to %{amount}.
|
711
|
+
item_total_more_than: This coupon code can't be applied to orders higher than %{amount}.
|
712
|
+
item_total_more_than_or_equal: This coupon code can't be applied to orders higher than or equal to %{amount}.
|
713
|
+
limit_once_per_user: This coupon code can only be used once per user.
|
714
|
+
missing_product: This coupon code can't be applied because you don't have all of the necessary products in your cart.
|
715
|
+
missing_taxon: You need to add a product from all applicable categories before applying this coupon code.
|
716
|
+
no_applicable_products: You need to add an applicable product before applying this coupon code.
|
717
|
+
no_matching_taxons: You need to add a product from an applicable category before applying this coupon code.
|
718
|
+
no_user_or_email_specified: You need to login or provide your email before applying this coupon code.
|
719
|
+
no_user_specified: You need to login before applying this coupon code.
|
720
|
+
not_first_order: This coupon code can only be applied to your first order.
|
721
|
+
email: Email
|
722
|
+
empty: Empty
|
723
|
+
empty_cart: Empty Cart
|
724
|
+
enable_mail_delivery: Enable Mail Delivery
|
725
|
+
end: End
|
726
|
+
ending_in: Ending in
|
727
|
+
environment: Environment
|
728
|
+
error: error
|
729
|
+
errors:
|
730
|
+
messages:
|
731
|
+
cannot_modify_transfer_item_closed_stock_transfer: Transfer items that are part of a closed stock transfer cannot be modified.
|
732
|
+
cannot_delete_finalized_stock_transfer: Finalized stock transfers cannot be destroyed.
|
733
|
+
cannot_delete_transfer_item_with_finalized_stock_transfer: Transfer items that are part of a finalized stock transfer cannot be destroyed.
|
734
|
+
cannot_update_expected_transfer_item_with_finalized_stock_transfer: The expected quantity cannot be updated on transfer items that are part of a finalized stock transfer.
|
735
|
+
could_not_create_taxon: Could not create taxon
|
736
|
+
transfer_item_insufficient_stock: Transfer item's variant does not have enough stock in the stock transfer's source location
|
737
|
+
no_payment_methods_available: No payment methods are configured for this environment
|
738
|
+
no_shipping_methods_available: No shipping methods available for selected location, please change your address and try again.
|
739
|
+
errors_prohibited_this_record_from_being_saved:
|
740
|
+
one: 1 error prohibited this record from being saved
|
741
|
+
other: ! '%{count} errors prohibited this record from being saved'
|
742
|
+
event: Event
|
743
|
+
events:
|
744
|
+
spree:
|
745
|
+
cart:
|
746
|
+
add: Add to cart
|
747
|
+
checkout:
|
748
|
+
coupon_code_added: Coupon code added
|
749
|
+
content:
|
750
|
+
visited: Visit static content page
|
751
|
+
order:
|
752
|
+
contents_changed: Order contents changed
|
753
|
+
page_view: Static page viewed
|
754
|
+
user:
|
755
|
+
signup: User signup
|
756
|
+
exceptions:
|
757
|
+
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.
|
758
|
+
exchange_for: Exchange for
|
759
|
+
expedited_exchanges_warning: "Any specified exchanges will ship to the customer immediately upon saving. The customer will be charged the full amount of the item if they do not return the original item within %{days_window} days."
|
760
|
+
excl: excl.
|
761
|
+
expected: Expected
|
762
|
+
expected_items: Expected Items
|
763
|
+
expiration: Expiration
|
764
|
+
extension: Extension
|
765
|
+
existing_shipments: Existing shipments
|
766
|
+
failed_payment_attempts: Failed Payment Attempts
|
767
|
+
failure: Failure
|
768
|
+
filename: Filename
|
769
|
+
fill_in_customer_info: Please fill in customer info
|
770
|
+
filter_results: Filter Results
|
771
|
+
finalize: Finalize
|
772
|
+
finalize_stock_transfer:
|
773
|
+
will_cause: Finalizing a stock transfer will cause the following
|
774
|
+
no_longer_change_items: You will no longer be able to add or edit any transfer items
|
775
|
+
find_a_taxon: Find a Taxon
|
776
|
+
finalized: Finalized
|
777
|
+
close_stock_transfer:
|
778
|
+
will_cause: Closing a stock transfer will cause the following
|
779
|
+
no_longer_edit: You will no longer be able to edit the stock transfer in any way
|
780
|
+
stock_movements_created: Stock movements will be created for the received items
|
781
|
+
first_item: First Item
|
782
|
+
first_name: First Name
|
783
|
+
first_name_begins_with: First Name Begins With
|
784
|
+
flat_percent: Flat Percent
|
785
|
+
flat_rate_per_order: Flat Rate
|
786
|
+
flexible_rate: Flexible Rate
|
787
|
+
forgot_password: Forgot Password?
|
788
|
+
free_shipping: Free Shipping
|
789
|
+
free_shipping_amount: "-"
|
790
|
+
from: From
|
791
|
+
front_end: Front End
|
792
|
+
gateway: Gateway
|
793
|
+
gateway_config_unavailable: Gateway unavailable for environment
|
794
|
+
gateway_error: Gateway Error
|
795
|
+
general: General
|
796
|
+
general_settings: General Settings
|
797
|
+
google_analytics: Google Analytics
|
798
|
+
google_analytics_id: Analytics ID
|
799
|
+
group_size: Group size
|
800
|
+
guest_checkout: Guest Checkout
|
801
|
+
guest_user_account: Checkout as a Guest
|
802
|
+
has_no_shipped_units: has no shipped units
|
803
|
+
height: Height
|
804
|
+
hide_out_of_stock: Hide out of stock
|
805
|
+
home: Home
|
806
|
+
i18n:
|
807
|
+
available_locales: Available Locales
|
808
|
+
fields: Fields
|
809
|
+
language: Language
|
810
|
+
localization_settings: Localization Settings
|
811
|
+
only_incomplete: Only incomplete
|
812
|
+
only_complete: Only complete
|
813
|
+
select_locale: Select locale
|
814
|
+
show_only: Show only
|
815
|
+
supported_locales: Supported Locales
|
816
|
+
this_file_language: English (US)
|
817
|
+
translations: Translations
|
818
|
+
icon: Icon
|
819
|
+
identifier: Identifier
|
820
|
+
image: Image
|
821
|
+
images: Images
|
822
|
+
implement_eligible_for_return: "Must implement #eligible_for_return? for your EligibilityValidator."
|
823
|
+
implement_requires_manual_intervention: "Must implement #requires_manual_intervention? for your EligibilityValidator."
|
824
|
+
inactive: Inactive
|
825
|
+
incl: incl.
|
826
|
+
included_in_price: Included in Price
|
827
|
+
included_price_validation: cannot be selected unless you have set a Default Tax Zone
|
828
|
+
incomplete: Incomplete
|
829
|
+
info_product_has_multiple_skus: "This product has %{count} variants:"
|
830
|
+
info_number_of_skus_not_shown:
|
831
|
+
one: "and one other"
|
832
|
+
other: "and %{count} others"
|
833
|
+
instructions_to_reset_password: Please enter your email on the form below
|
834
|
+
insufficient_stock: Insufficient stock available, only %{on_hand} remaining
|
835
|
+
insufficient_stock_lines_present: Some line items in this order have insufficient quantity.
|
836
|
+
intercept_email_address: Intercept Email Address
|
837
|
+
intercept_email_instructions: Override email recipient and replace with this address.
|
838
|
+
internal_name: Internal Name
|
839
|
+
invalid_credit_card: Invalid credit card.
|
840
|
+
invalid_exchange_variant: Invalid exchange variant.
|
841
|
+
invalid_payment_provider: Invalid payment provider.
|
842
|
+
invalid_promotion_action: Invalid promotion action.
|
843
|
+
invalid_promotion_rule: Invalid promotion rule.
|
844
|
+
inventory: Inventory
|
845
|
+
inventory_adjustment: Inventory Adjustment
|
846
|
+
inventory_canceled: Inventory canceled
|
847
|
+
inventory_error_flash_for_insufficient_quantity: An item in your cart has become unavailable.
|
848
|
+
inventory_state: Inventory State
|
849
|
+
is_not_available_to_shipment_address: is not available to shipment address
|
850
|
+
iso_name: Iso Name
|
851
|
+
item: Item
|
852
|
+
item_description: Item Description
|
853
|
+
item_not_in_stock_transfer: Item is not part of the stock transfer
|
854
|
+
item_total: Item Total
|
855
|
+
item_total_rule:
|
856
|
+
operators:
|
857
|
+
gt: greater than
|
858
|
+
gte: greater than or equal to
|
859
|
+
lt: less than
|
860
|
+
lte: less than or equal to
|
861
|
+
items_cannot_be_shipped: We are unable to calculate shipping rates for the selected items.
|
862
|
+
items_in_rmas: Items in Return Authorizations
|
863
|
+
items_to_be_reimbursed: Items to be reimbursed
|
864
|
+
items_reimbursed: Items reimbursed
|
865
|
+
jirafe: Jirafe
|
866
|
+
landing_page_rule:
|
867
|
+
path: Path
|
868
|
+
last_name: Last Name
|
869
|
+
last_name_begins_with: Last Name Begins With
|
870
|
+
learn_more: Learn More
|
871
|
+
lifetime_stats: Lifetime Stats
|
872
|
+
line_item_adjustments: "Line item adjustments"
|
873
|
+
list: List
|
874
|
+
listing_countries: Listing Countries
|
875
|
+
listing_orders: Listing Orders
|
876
|
+
listing_products: Listing Products
|
877
|
+
listing_reports: Listing Reports
|
878
|
+
listing_tax_categories: Listing Tax Categories
|
879
|
+
listing_users: Listing Users
|
880
|
+
loading: Loading
|
881
|
+
locale_changed: Locale Changed
|
882
|
+
location: Location
|
883
|
+
lock: Lock
|
884
|
+
log_entries: "Log Entries"
|
885
|
+
logs: "Logs"
|
886
|
+
logged_in_as: Logged in as
|
887
|
+
logged_in_succesfully: Logged in successfully
|
888
|
+
logged_out: You have been logged out.
|
889
|
+
login: Login
|
890
|
+
login_as_existing: Login as Existing Customer
|
891
|
+
login_failed: Login authentication failed.
|
892
|
+
login_name: Login
|
893
|
+
logout: Logout
|
894
|
+
look_for_similar_items: Look for similar items
|
895
|
+
make_refund: Make refund
|
896
|
+
make_sure_the_above_reimbursement_amount_is_correct: Make sure the above reimbursement amount is correct
|
897
|
+
manage_promotion_categories: Manage Promotion Categories
|
898
|
+
manual_intervention_required: Manual intervention required
|
899
|
+
manage_variants: Manage Variants
|
900
|
+
master_price: Master Price
|
901
|
+
match_choices:
|
902
|
+
all: All
|
903
|
+
none: None
|
904
|
+
max_items: Max Items
|
905
|
+
member_since: Member Since
|
906
|
+
memo: Memo
|
907
|
+
meta_description: Meta Description
|
908
|
+
meta_keywords: Meta Keywords
|
909
|
+
meta_title: Meta Title
|
910
|
+
metadata: Metadata
|
911
|
+
minimal_amount: Minimal Amount
|
912
|
+
month: Month
|
913
|
+
more: More
|
914
|
+
move_stock_between_locations: Move Stock Between Locations
|
915
|
+
my_account: My Account
|
916
|
+
my_orders: My Orders
|
917
|
+
name: Name
|
918
|
+
name_on_card: Name on card
|
919
|
+
name_or_sku: Name or SKU (enter at least first 4 characters of product name)
|
920
|
+
negative_movement_absent_item: Cannot create negative movement for absent stock item.
|
921
|
+
new: New
|
922
|
+
new_adjustment: New Adjustment
|
923
|
+
new_customer: New Customer
|
924
|
+
new_customer_return: New Customer Return
|
925
|
+
new_country: New Country
|
926
|
+
new_image: New Image
|
927
|
+
new_option_type: New Option Type
|
928
|
+
new_order: New Order
|
929
|
+
new_order_completed: New Order Completed
|
930
|
+
new_payment: New Payment
|
931
|
+
new_payment_method: New Payment Method
|
932
|
+
new_product: New Product
|
933
|
+
new_promotion: New Promotion
|
934
|
+
new_promotion_category: New Promotion Category
|
935
|
+
new_property: New Property
|
936
|
+
new_prototype: New Prototype
|
937
|
+
new_refund: New Refund
|
938
|
+
new_refund_reason: New Refund Reason
|
939
|
+
new_rma_reason: New RMA Reason
|
940
|
+
new_return_authorization: New Return Authorization
|
941
|
+
new_shipping_category: New Shipping Category
|
942
|
+
new_shipping_method: New Shipping Method
|
943
|
+
new_shipment_at_location: New shipment at location
|
944
|
+
new_state: New State
|
945
|
+
new_stock_location: New Stock Location
|
946
|
+
new_stock_movement: New Stock Movement
|
947
|
+
new_stock_transfer: New Stock Transfer
|
948
|
+
new_tax_category: New Tax Category
|
949
|
+
new_tax_rate: New Tax Rate
|
950
|
+
new_taxon: New Taxon
|
951
|
+
new_taxonomy: New Taxonomy
|
952
|
+
new_tracker: New Tracker
|
953
|
+
new_user: New User
|
954
|
+
new_variant: New Variant
|
955
|
+
new_zone: New Zone
|
956
|
+
next: Next
|
957
|
+
no_actions_added: No actions added
|
958
|
+
no_dont_close: No, don't close
|
959
|
+
no_dont_finalize: No, don't finalize
|
960
|
+
no_dont_ship: No, don't ship
|
961
|
+
no_images_found: No images found
|
962
|
+
no_inventory_selected: No inventory selected
|
963
|
+
no_orders_found: No orders found
|
964
|
+
no_payment_methods_found: No payment methods found
|
965
|
+
no_payment_found: No payment found
|
966
|
+
no_pending_payments: No pending payments
|
967
|
+
no_products_found: No products found
|
968
|
+
no_promotions_found: No promotions found
|
969
|
+
no_results: No results
|
970
|
+
no_rules_added: No rules added
|
971
|
+
no_resource_found: ! 'No %{resource} found'
|
972
|
+
no_shipping_methods_found: No shipping methods found
|
973
|
+
no_shipping_method_selected: No shipping method selected.
|
974
|
+
no_trackers_found: No Trackers Found
|
975
|
+
no_stock_locations_found: No stock locations found
|
976
|
+
no_tracking_present: No tracking details provided.
|
977
|
+
no_variants_found: No variants found.
|
978
|
+
none: None
|
979
|
+
none_selected: None Selected
|
980
|
+
normal_amount: Normal Amount
|
981
|
+
not: not
|
982
|
+
not_available: N/A
|
983
|
+
not_enough_stock: There is not enough inventory at the source location to complete this transfer.
|
984
|
+
not_found: ! '%{resource} is not found'
|
985
|
+
note: Note
|
986
|
+
notice_messages:
|
987
|
+
product_cloned: Product has been cloned
|
988
|
+
product_deleted: Product has been deleted
|
989
|
+
product_not_cloned: Product could not be cloned
|
990
|
+
product_not_deleted: Product could not be deleted
|
991
|
+
variant_deleted: Variant has been deleted
|
992
|
+
variant_not_deleted: Variant could not be deleted
|
993
|
+
num_orders: "# Orders"
|
994
|
+
number: Number
|
995
|
+
number_of_codes: ! '%{count} codes'
|
996
|
+
on_hand: On Hand
|
997
|
+
open: Open
|
998
|
+
open_all_adjustments: Open All Adjustments
|
999
|
+
option_type: Option Type
|
1000
|
+
option_type_placeholder: Choose an option type
|
1001
|
+
option_types: Option Types
|
1002
|
+
option_value: Option Value
|
1003
|
+
option_values: Option Values
|
1004
|
+
optional: Optional
|
1005
|
+
options: Options
|
1006
|
+
or: or
|
1007
|
+
or_over_price: ! '%{price} or over'
|
1008
|
+
order: Order
|
1009
|
+
order_adjustments: Order adjustments
|
1010
|
+
order_already_completed: Order is already completed
|
1011
|
+
order_already_updated: The order has already been updated.
|
1012
|
+
order_approved: Order approved
|
1013
|
+
order_canceled: Order canceled
|
1014
|
+
order_completed: Order completed
|
1015
|
+
order_details: Order Details
|
1016
|
+
order_email_resent: Order Email Resent
|
1017
|
+
order_information: Order Information
|
1018
|
+
order_mailer:
|
1019
|
+
cancel_email:
|
1020
|
+
dear_customer: Dear Customer,
|
1021
|
+
instructions: Your order has been CANCELED. Please retain this cancellation information for your records.
|
1022
|
+
order_summary_canceled: Order Summary [CANCELED]
|
1023
|
+
subject: Cancellation of Order
|
1024
|
+
subtotal: ! 'Subtotal:'
|
1025
|
+
total: ! 'Order Total:'
|
1026
|
+
confirm_email:
|
1027
|
+
dear_customer: Dear Customer,
|
1028
|
+
instructions: Please review and retain the following order information for your records.
|
1029
|
+
order_summary: Order Summary
|
1030
|
+
subject: Order Confirmation
|
1031
|
+
subtotal: ! 'Subtotal:'
|
1032
|
+
thanks: Thank you for your business.
|
1033
|
+
total: ! 'Order Total:'
|
1034
|
+
inventory_cancellation:
|
1035
|
+
dear_customer: Dear Customer,
|
1036
|
+
instructions: Some items in your order have been CANCELED. Please retain this cancellation information for your records.
|
1037
|
+
order_summary_canceled: Canceled Items
|
1038
|
+
subject: Cancellation of Items
|
1039
|
+
order_mutex_admin_error: Order is being modified by someone else. Please try again.
|
1040
|
+
order_mutex_error: Something went wrong. Please try again.
|
1041
|
+
order_not_found: We couldn't find your order. Please try that action again.
|
1042
|
+
order_number: Order %{number}
|
1043
|
+
order_please_refresh: Order is not ready to be completed. Please refresh totals.
|
1044
|
+
order_processed_successfully: Your order has been processed successfully
|
1045
|
+
order_ready_for_confirm: Order ready for confirmation
|
1046
|
+
order_refresh_totals: Refresh Totals
|
1047
|
+
order_resumed: Order resumed
|
1048
|
+
order_state:
|
1049
|
+
address: address
|
1050
|
+
awaiting_return: awaiting return
|
1051
|
+
canceled: canceled
|
1052
|
+
cart: cart
|
1053
|
+
complete: complete
|
1054
|
+
confirm: confirm
|
1055
|
+
delivery: delivery
|
1056
|
+
payment: payment
|
1057
|
+
resumed: resumed
|
1058
|
+
returned: returned
|
1059
|
+
order_summary: Order Summary
|
1060
|
+
order_sure_want_to: Are you sure you want to %{event} this order?
|
1061
|
+
order_total: Order Total
|
1062
|
+
order_updated: Order Updated
|
1063
|
+
orders: Orders
|
1064
|
+
other_items_in_other: Other Items in Order
|
1065
|
+
out_of_stock: Out of Stock
|
1066
|
+
overview: Overview
|
1067
|
+
package_from: package from
|
1068
|
+
pagination:
|
1069
|
+
next_page: next page »
|
1070
|
+
previous_page: ! '« previous page'
|
1071
|
+
truncate: ! '…'
|
1072
|
+
password: Password
|
1073
|
+
paste: Paste
|
1074
|
+
path: Path
|
1075
|
+
pay: pay
|
1076
|
+
payment: Payment
|
1077
|
+
payment_could_not_be_created: Payment could not be created.
|
1078
|
+
payment_identifier: Payment Identifier
|
1079
|
+
payment_information: Payment Information
|
1080
|
+
payment_method: Payment Method
|
1081
|
+
payment_methods: Payment Methods
|
1082
|
+
payment_method_not_supported: That payment method is unsupported. Please choose another one.
|
1083
|
+
payment_processing_failed: Payment could not be processed, please check the details you entered
|
1084
|
+
payment_processor_choose_banner_text: If you need help choosing a payment processor, please visit
|
1085
|
+
payment_processor_choose_link: our payments page
|
1086
|
+
payment_state: Payment State
|
1087
|
+
payment_states:
|
1088
|
+
balance_due: balance due
|
1089
|
+
checkout: checkout
|
1090
|
+
completed: completed
|
1091
|
+
credit_owed: credit owed
|
1092
|
+
failed: failed
|
1093
|
+
paid: paid
|
1094
|
+
pending: pending
|
1095
|
+
processing: processing
|
1096
|
+
void: void
|
1097
|
+
payment_updated: Payment Updated
|
1098
|
+
payments: Payments
|
1099
|
+
percent: Percent
|
1100
|
+
percent_per_item: Percent Per Item
|
1101
|
+
permalink: Permalink
|
1102
|
+
pending: Pending
|
1103
|
+
phone: Phone
|
1104
|
+
place_order: Place Order
|
1105
|
+
please_define_payment_methods: Please define some payment methods first.
|
1106
|
+
please_enter_reasonable_quantity: Please enter a reasonable quantity.
|
1107
|
+
populate_get_error: Something went wrong. Please try adding the item again.
|
1108
|
+
powered_by: Powered by
|
1109
|
+
pre_tax_refund_amount: Pre-Tax Refund Amount
|
1110
|
+
pre_tax_amount: Pre-Tax Amount
|
1111
|
+
pre_tax_total: Pre-Tax Total
|
1112
|
+
preferred_reimbursement_type: Preferred Reimbursement Type
|
1113
|
+
presentation: Presentation
|
1114
|
+
previous: Previous
|
1115
|
+
price: Price
|
1116
|
+
price_range: Price Range
|
1117
|
+
price_sack: Price Sack
|
1118
|
+
process: Process
|
1119
|
+
product: Product
|
1120
|
+
product_details: Product Details
|
1121
|
+
product_has_no_description: This product has no description
|
1122
|
+
product_not_available_in_this_currency: This product is not available in the selected currency.
|
1123
|
+
product_properties: Product Properties
|
1124
|
+
product_rule:
|
1125
|
+
choose_products: Choose products
|
1126
|
+
label: Order must contain %{select} of these products
|
1127
|
+
match_all: all
|
1128
|
+
match_any: at least one
|
1129
|
+
match_none: none
|
1130
|
+
product_source:
|
1131
|
+
group: From product group
|
1132
|
+
manual: Manually choose
|
1133
|
+
products: Products
|
1134
|
+
promotion: Promotion
|
1135
|
+
promotionable: Promotable
|
1136
|
+
promotion_action: Promotion Action
|
1137
|
+
promotion_action_types:
|
1138
|
+
create_adjustment:
|
1139
|
+
description: Creates a promotion credit adjustment on the order
|
1140
|
+
name: Create whole-order adjustment
|
1141
|
+
create_item_adjustments:
|
1142
|
+
description: Creates a promotion credit adjustment on a line item
|
1143
|
+
name: Create per-line-item adjustment
|
1144
|
+
create_quantity_adjustments:
|
1145
|
+
description: Creates an adjustment on a line item based on quantity
|
1146
|
+
name: Create per-quantity adjustment
|
1147
|
+
free_shipping:
|
1148
|
+
description: Makes all shipments for the order free
|
1149
|
+
name: Free shipping
|
1150
|
+
promotion_actions: Actions
|
1151
|
+
promotion_form:
|
1152
|
+
match_policies:
|
1153
|
+
all: Match all of these rules
|
1154
|
+
any: Match any of these rules
|
1155
|
+
promotion_rule: Promotion Rule
|
1156
|
+
promotion_rule_types:
|
1157
|
+
first_order:
|
1158
|
+
description: Must be the customer's first order
|
1159
|
+
name: First order
|
1160
|
+
item_total:
|
1161
|
+
description: Order total meets these criteria
|
1162
|
+
name: Item total
|
1163
|
+
landing_page:
|
1164
|
+
description: Customer must have visited the specified page
|
1165
|
+
name: Landing Page
|
1166
|
+
one_use_per_user:
|
1167
|
+
description: Only One Use Per User
|
1168
|
+
name: One Use Per User
|
1169
|
+
product:
|
1170
|
+
description: Order includes specified product(s)
|
1171
|
+
name: Product(s)
|
1172
|
+
user:
|
1173
|
+
description: Available only to the specified users
|
1174
|
+
name: User
|
1175
|
+
user_logged_in:
|
1176
|
+
description: Available only to logged in users
|
1177
|
+
name: User Logged In
|
1178
|
+
taxon:
|
1179
|
+
description: Order includes products with specified taxon(s)
|
1180
|
+
name: Taxon(s)
|
1181
|
+
promotions: Promotions
|
1182
|
+
promotion_successfully_created: Promotion has been successfully created!
|
1183
|
+
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."
|
1184
|
+
promotion_uses: Promotion uses
|
1185
|
+
propagate_all_variants: Propagate all variants
|
1186
|
+
properties: Properties
|
1187
|
+
property: Property
|
1188
|
+
prototype: Prototype
|
1189
|
+
prototypes: Prototypes
|
1190
|
+
provider: Provider
|
1191
|
+
provider_settings_warning: If you are changing the provider type, you must save first before you can edit the provider settings
|
1192
|
+
qty: Qty
|
1193
|
+
quantity: Quantity
|
1194
|
+
quantity_returned: Quantity Returned
|
1195
|
+
quantity_shipped: Quantity Shipped
|
1196
|
+
rate: Rate
|
1197
|
+
ready_to_ship: Ready to ship
|
1198
|
+
reason: Reason
|
1199
|
+
receive: receive
|
1200
|
+
received: Received
|
1201
|
+
receive_stock: Receive Stock
|
1202
|
+
received_items: Received Items
|
1203
|
+
received_successfully: Received Successfully
|
1204
|
+
receiving: Receiving
|
1205
|
+
receiving_match: Receiving match
|
1206
|
+
reception_status: Reception Status
|
1207
|
+
reference: Reference
|
1208
|
+
refund: Refund
|
1209
|
+
refund_amount_must_be_greater_than_zero: Refund amount must be greater than zero
|
1210
|
+
refund_reasons: Refund Reasons
|
1211
|
+
refunded_amount: Refunded Amount
|
1212
|
+
refunds: Refunds
|
1213
|
+
refund_amount_must_be_greater_than_zero: Refund amount must be greater than zero
|
1214
|
+
register: Register
|
1215
|
+
registration: Registration
|
1216
|
+
reimburse: Reimburse
|
1217
|
+
reimbursed: Reimbursed
|
1218
|
+
reimbursement: Reimbursement
|
1219
|
+
reimbursement_perform_failed: "Reimbursement could not be performed. Error: %{error}"
|
1220
|
+
reimbursement_status: Reimbursement status
|
1221
|
+
reimbursement_type: Reimbursement type
|
1222
|
+
reimbursement_type_override: Reimbursement Type Override
|
1223
|
+
reimbursement_types: Reimbursement Types
|
1224
|
+
reimbursements: Reimbursements
|
1225
|
+
reject: Reject
|
1226
|
+
rejected: Rejected
|
1227
|
+
remember_me: Remember me
|
1228
|
+
remove: Remove
|
1229
|
+
rename: Rename
|
1230
|
+
reports: Reports
|
1231
|
+
resend: Resend
|
1232
|
+
reset_password: Reset my password
|
1233
|
+
response_code: Response Code
|
1234
|
+
resume: resume
|
1235
|
+
resumed: Resumed
|
1236
|
+
return: return
|
1237
|
+
return_authorization: Return Authorization
|
1238
|
+
return_authorization_reasons: Return Authorization Reasons
|
1239
|
+
return_authorization_updated: Return authorization updated
|
1240
|
+
return_authorizations: Return Authorizations
|
1241
|
+
return_item_inventory_unit_ineligible: Return item's inventory unit must be shipped
|
1242
|
+
return_item_inventory_unit_reimbursed: Return item's inventory unit is already reimbursed
|
1243
|
+
return_item_order_not_completed: Return item's order must be completed
|
1244
|
+
return_item_rma_ineligible: Return item requires an RMA
|
1245
|
+
return_item_time_period_ineligible: Return item is outside the eligible time period
|
1246
|
+
return_items: Return Items
|
1247
|
+
return_items_cannot_be_associated_with_multiple_orders: Return items cannot be associated with multiple orders.
|
1248
|
+
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.
|
1249
|
+
reimbursement_mailer:
|
1250
|
+
reimbursement_email:
|
1251
|
+
days_to_send: ! 'You have %{days} days to send back any items awaiting exchange.'
|
1252
|
+
dear_customer: Dear Customer,
|
1253
|
+
exchange_summary: Exchange Summary
|
1254
|
+
for: for
|
1255
|
+
instructions: Your reimbursement has been processed.
|
1256
|
+
refund_summary: Refund Summary
|
1257
|
+
subject: Reimbursement Notification
|
1258
|
+
total_refunded: ! 'Total refunded: %{total}'
|
1259
|
+
return_number: Return Number
|
1260
|
+
return_quantity: Return Quantity
|
1261
|
+
returned: Returned
|
1262
|
+
review: Review
|
1263
|
+
risk: Risk
|
1264
|
+
risk_analysis: Risk Analysis
|
1265
|
+
risky: Risky
|
1266
|
+
rma_credit: RMA Credit
|
1267
|
+
rma_number: RMA Number
|
1268
|
+
rma_value: RMA Value
|
1269
|
+
roles: Roles
|
1270
|
+
rules: Rules
|
1271
|
+
sales_total: Sales Total
|
1272
|
+
sales_total_description: Sales Total For All Orders
|
1273
|
+
sales_totals: Sales Totals
|
1274
|
+
save_and_continue: Save and Continue
|
1275
|
+
save_my_address: Save my address
|
1276
|
+
say_no: 'No'
|
1277
|
+
say_yes: 'Yes'
|
1278
|
+
scope: Scope
|
1279
|
+
search: Search
|
1280
|
+
search_results: Search results for '%{keywords}'
|
1281
|
+
searching: Searching
|
1282
|
+
secure_connection_type: Secure Connection Type
|
1283
|
+
security_settings: Security Settings
|
1284
|
+
select: Select
|
1285
|
+
select_from_prototype: Select From Prototype
|
1286
|
+
select_a_return_authorization_reason: Select a reason for the return authorization
|
1287
|
+
select_a_stock_location: Select a stock location
|
1288
|
+
select_stock: Select stock
|
1289
|
+
selected_quantity_not_available: ! 'selected of %{item} is not available.'
|
1290
|
+
send_copy_of_all_mails_to: Send Copy of All Mails To
|
1291
|
+
send_mailer: Send Mailer
|
1292
|
+
send_mails_as: Send Mails As
|
1293
|
+
server: Server
|
1294
|
+
server_error: The server returned an error
|
1295
|
+
settings: Settings
|
1296
|
+
ship: ship
|
1297
|
+
ship_address: Ship Address
|
1298
|
+
ship_address_required: Valid shipping address required
|
1299
|
+
ship_stock_transfer:
|
1300
|
+
will_cause: Shipping a stock transfer will cause the following
|
1301
|
+
no_further_changes: You will no longer be able to make changes to the stock transfer
|
1302
|
+
ship_total: Ship Total
|
1303
|
+
shipped_at: Shipped At
|
1304
|
+
shipment: Shipment
|
1305
|
+
shipment_adjustments: "Shipment adjustments"
|
1306
|
+
shipment_details: "From %{stock_location} via %{shipping_method}"
|
1307
|
+
shipment_mailer:
|
1308
|
+
shipped_email:
|
1309
|
+
dear_customer: Dear Customer,
|
1310
|
+
instructions: Your order has been shipped
|
1311
|
+
shipment_summary: Shipment Summary
|
1312
|
+
subject: Shipment Notification
|
1313
|
+
thanks: Thank you for your business.
|
1314
|
+
track_information: ! 'Tracking Information: %{tracking}'
|
1315
|
+
track_link: ! 'Tracking Link: %{url}'
|
1316
|
+
shipment_date: Shipment date
|
1317
|
+
shipment_numbers: Shipment numbers
|
1318
|
+
shipment_state: Shipment State
|
1319
|
+
shipment_states:
|
1320
|
+
backorder: backorder
|
1321
|
+
canceled: canceled
|
1322
|
+
partial: partial
|
1323
|
+
pending: pending
|
1324
|
+
ready: ready
|
1325
|
+
shipped: shipped
|
1326
|
+
shipment_transfer_success: 'Variants successfully transferred'
|
1327
|
+
shipment_transfer_error: 'There was an error transferring variants'
|
1328
|
+
shipments: Shipments
|
1329
|
+
shipped: Shipped
|
1330
|
+
shipping: Shipping
|
1331
|
+
shipping_address: Shipping Address
|
1332
|
+
shipping_categories: Shipping Categories
|
1333
|
+
shipping_category: Shipping Category
|
1334
|
+
shipping_flat_rate_per_item: Flat rate per package item
|
1335
|
+
shipping_flat_rate_per_order: Flat rate
|
1336
|
+
shipping_flexible_rate: Flexible Rate per package item
|
1337
|
+
shipping_instructions: Shipping Instructions
|
1338
|
+
shipping_method: Shipping Method
|
1339
|
+
shipping_methods: Shipping Methods
|
1340
|
+
shipping_price_sack: Price sack
|
1341
|
+
shipping_total: Shipping total
|
1342
|
+
shop_by_taxonomy: Shop by %{taxonomy}
|
1343
|
+
shopping_cart: Shopping Cart
|
1344
|
+
show: Show
|
1345
|
+
show_active: Show Active
|
1346
|
+
show_deleted: Show Deleted
|
1347
|
+
show_only_complete_orders: Only show complete orders
|
1348
|
+
show_only_considered_risky: Only show risky orders
|
1349
|
+
show_only_open_transfers: Only show open transfers
|
1350
|
+
show_rate_in_label: Show rate in label
|
1351
|
+
sku: SKU
|
1352
|
+
skus: SKUs
|
1353
|
+
slug: Slug
|
1354
|
+
source: Source
|
1355
|
+
source_location: Source location
|
1356
|
+
special_instructions: Special Instructions
|
1357
|
+
split: Split
|
1358
|
+
spree_gateway_error_flash_for_checkout: There was a problem with your payment information. Please check your information and try again.
|
1359
|
+
ssl:
|
1360
|
+
change_protocol: "Please switch to using HTTP (rather than HTTPS) and retry this request."
|
1361
|
+
start: Start
|
1362
|
+
state: State
|
1363
|
+
state_based: State Based
|
1364
|
+
states: States
|
1365
|
+
states_required: States Required
|
1366
|
+
status: Status
|
1367
|
+
stock_location: Stock Location
|
1368
|
+
stock_location_info: Stock location info
|
1369
|
+
stock_locations: Stock Locations
|
1370
|
+
stock_locations_need_a_default_country: You must create a default country before creating a stock location.
|
1371
|
+
stock_management: Stock Management
|
1372
|
+
stock_management_requires_a_stock_location: Please create a stock location in order to manage stock.
|
1373
|
+
stock_movements: Stock Movements
|
1374
|
+
stock_movements_for_stock_location: Stock Movements for %{stock_location_name}
|
1375
|
+
stock_not_below_zero: Stock must not be below zero.
|
1376
|
+
stock_successfully_transferred: Stock was successfully transferred between locations.
|
1377
|
+
stock_transfer: Stock Transfer
|
1378
|
+
stock_transfer_cannot_be_finalized: Stock transfer cannot be finalized
|
1379
|
+
stock_transfer_complete: Stock Transfer Complete
|
1380
|
+
stock_transfer_must_be_receivable: Stock transfer must be closed and shipped
|
1381
|
+
stock_transfers: Stock Transfers
|
1382
|
+
stop: Stop
|
1383
|
+
store: Store
|
1384
|
+
store_credit:
|
1385
|
+
allocated: "Added"
|
1386
|
+
authorized: "Authorized"
|
1387
|
+
captured: "Used"
|
1388
|
+
credit: "Credit"
|
1389
|
+
credit_allocation_memo: "This is a credit from store credit ID %{id}"
|
1390
|
+
currency_mismatch: "Store credit currency does not match order currency"
|
1391
|
+
errors:
|
1392
|
+
unable_to_fund: "Unable to pay for order using store credits"
|
1393
|
+
cannot_invalidate_uncaptured_authorization: "Cannot invalidate a store credit with an uncaptured authorization"
|
1394
|
+
expiring: Expiring
|
1395
|
+
insufficient_authorized_amount: "Unable to capture more than authorized amount"
|
1396
|
+
insufficient_funds: "Store credit amount remaining is not sufficient"
|
1397
|
+
invalidate: "Invalidate"
|
1398
|
+
non_expiring: Non-expiring
|
1399
|
+
select_one_store_credit: "Select store credit to go towards remaining balance"
|
1400
|
+
store_credit: Store Credit
|
1401
|
+
successful_action: "Successful store credit %{action}"
|
1402
|
+
unable_to_credit: "Unable to credit code: %{auth_code}"
|
1403
|
+
unable_to_void: "Unable to void code: %{auth_code}"
|
1404
|
+
unable_to_find: "Could not find store credit"
|
1405
|
+
unable_to_find_for_action: "Could not find store credit for auth code: %{auth_code} for action: %{action}"
|
1406
|
+
user_has_no_store_credits: "User does not have any available store credit"
|
1407
|
+
store_credit_category:
|
1408
|
+
default: Default
|
1409
|
+
street_address: Street Address
|
1410
|
+
street_address_2: Street Address (cont'd)
|
1411
|
+
subtotal: Subtotal
|
1412
|
+
subtract: Subtract
|
1413
|
+
success: Success
|
1414
|
+
successfully_created: ! '%{resource} has been successfully created!'
|
1415
|
+
successfully_refunded: ! '%{resource} has been successfully refunded!'
|
1416
|
+
successfully_removed: ! '%{resource} has been successfully removed!'
|
1417
|
+
successfully_signed_up_for_analytics: Successfully signed up for Spree Analytics
|
1418
|
+
successfully_updated: ! '%{resource} has been successfully updated!'
|
1419
|
+
tax: Tax
|
1420
|
+
tax_included: "Tax (incl.)"
|
1421
|
+
tax_categories: Tax Categories
|
1422
|
+
tax_category: Tax Category
|
1423
|
+
tax_code: Tax Code
|
1424
|
+
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)
|
1425
|
+
tax_rates: Tax Rates
|
1426
|
+
taxon: Taxon
|
1427
|
+
taxon_edit: Edit Taxon
|
1428
|
+
taxon_placeholder: Add a Taxon
|
1429
|
+
taxon_rule:
|
1430
|
+
choose_taxons: Choose taxons
|
1431
|
+
label: Order must contain %{select} of these taxons
|
1432
|
+
match_all: all
|
1433
|
+
match_any: at least one
|
1434
|
+
taxonomies: Taxonomies
|
1435
|
+
taxonomy: Taxonomy
|
1436
|
+
taxonomy_edit: Edit taxonomy
|
1437
|
+
taxonomy_tree_error: The requested change has not been accepted and the tree has been returned to its previous state, please try again.
|
1438
|
+
taxonomy_tree_instruction: ! '* Right click a child in the tree to access the menu for adding, deleting or sorting a child.'
|
1439
|
+
taxons: Taxons
|
1440
|
+
test: Test
|
1441
|
+
test_mailer:
|
1442
|
+
test_email:
|
1443
|
+
greeting: Congratulations!
|
1444
|
+
message: If you have received this email, then your email settings are correct.
|
1445
|
+
subject: Test Mail
|
1446
|
+
test_mode: Test Mode
|
1447
|
+
thank_you_for_your_order: Thank you for your business. Please print out a copy of this confirmation page for your records.
|
1448
|
+
there_are_no_items_for_this_order: There are no items for this order. Please add an item to the order to continue.
|
1449
|
+
there_were_problems_with_the_following_fields: There were problems with the following fields
|
1450
|
+
this_order_has_already_received_a_refund: This order has already received a refund
|
1451
|
+
thumbnail: Thumbnail
|
1452
|
+
tiers: Tiers
|
1453
|
+
tiered_flat_rate: Tiered Flat Rate
|
1454
|
+
tiered_percent: Tiered Percent
|
1455
|
+
time: Time
|
1456
|
+
to: to
|
1457
|
+
to_add_variants_you_must_first_define: To add variants, you must first define
|
1458
|
+
total: Total
|
1459
|
+
total_per_item: Total per item
|
1460
|
+
total_pre_tax_refund: Total Pre-Tax Refund
|
1461
|
+
total_price: Total price
|
1462
|
+
total_sales: Total Sales
|
1463
|
+
track_inventory: Track Inventory
|
1464
|
+
tracking: Tracking
|
1465
|
+
tracking_info: Tracking Info
|
1466
|
+
tracking_number: Tracking Number
|
1467
|
+
tracking_url: Tracking URL
|
1468
|
+
tracking_url_placeholder: e.g. http://quickship.com/package?num=:tracking
|
1469
|
+
transaction_id: Transaction ID
|
1470
|
+
transfer_items: Transfer Items
|
1471
|
+
transfer_from_location: Transfer From
|
1472
|
+
transfer_stock: Transfer Stock
|
1473
|
+
transfer_to_location: Transfer To
|
1474
|
+
transfer_number: Transfer Number
|
1475
|
+
tree: Tree
|
1476
|
+
try_changing_search_values: Try changing the search values.
|
1477
|
+
type: Type
|
1478
|
+
type_to_search: Type to search
|
1479
|
+
unable_to_find_all_inventory_units: Unable to find all specified inventory units
|
1480
|
+
unable_to_connect_to_gateway: Unable to connect to gateway.
|
1481
|
+
unable_to_create_reimbursements: Unable to create reimbursements because there are items pending manual intervention.
|
1482
|
+
unable_to_create_stock_transfer: Unable to create the stock transfer
|
1483
|
+
under_price: Under %{price}
|
1484
|
+
unlock: Unlock
|
1485
|
+
unrecognized_card_type: Unrecognized card type
|
1486
|
+
unshippable_items: Unshippable Items
|
1487
|
+
update: Update
|
1488
|
+
updated_successfully: Updated successfully
|
1489
|
+
updating: Updating
|
1490
|
+
usage_limit: Usage Limit
|
1491
|
+
use_app_default: Use App Default
|
1492
|
+
use_billing_address: Use Billing Address
|
1493
|
+
use_existing_cc: Use an existing card on file
|
1494
|
+
use_new_cc: Use a new card
|
1495
|
+
use_new_cc_or_payment_method: Use a new card / payment method
|
1496
|
+
use_s3: Use Amazon S3 For Images
|
1497
|
+
user: User
|
1498
|
+
user_rule:
|
1499
|
+
choose_users: Choose users
|
1500
|
+
users: Users
|
1501
|
+
validation:
|
1502
|
+
unpaid_amount_not_zero: "Amount was not fully reimbursed. Still due: %{amount}"
|
1503
|
+
cannot_be_less_than_shipped_units: cannot be less than the number of shipped units.
|
1504
|
+
cannot_destroy_line_item_as_inventory_units_have_shipped: Cannot destroy line item as some inventory units have shipped.
|
1505
|
+
exceeds_available_stock: exceeds available stock. Please ensure line items have a valid quantity.
|
1506
|
+
is_too_large: is too large -- stock on hand cannot cover requested quantity!
|
1507
|
+
must_be_int: must be an integer
|
1508
|
+
must_be_non_negative: must be a non-negative value
|
1509
|
+
value: Value
|
1510
|
+
variant: Variant
|
1511
|
+
variant_placeholder: Choose a variant
|
1512
|
+
variant_search: Variant Search
|
1513
|
+
variant_search_placeholder: "SKU or Option Value"
|
1514
|
+
variant_to_add: Variant to add
|
1515
|
+
variant_to_be_received: Variant to be received
|
1516
|
+
variants: Variants
|
1517
|
+
version: Version
|
1518
|
+
void: Void
|
1519
|
+
weight: Weight
|
1520
|
+
what_is_a_cvv: What is a (CVV) Credit Card Code?
|
1521
|
+
what_is_this: What's This?
|
1522
|
+
width: Width
|
1523
|
+
year: Year
|
1524
|
+
yes_close: Yes, close
|
1525
|
+
yes_finalize: Yes, finalize
|
1526
|
+
yes_ship: Yes, ship
|
1527
|
+
you_have_no_orders_yet: You have no orders yet
|
1528
|
+
you_cannot_undo_action: You will not be able to undo this action
|
1529
|
+
your_cart_is_empty: Your cart is empty
|
1530
|
+
your_order_is_empty_add_product: Your order is empty, please search for and add a product above
|
1531
|
+
zip: Zip
|
1532
|
+
zipcode: Zip Code
|
1533
|
+
zone: Zone
|
1534
|
+
zones: Zones
|