goca-spree-core 3.1.14.rails.5.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/Gemfile +3 -0
- data/LICENSE +26 -0
- data/Rakefile +15 -0
- data/app/assets/images/logo/spree_50.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 +59 -0
- data/app/controllers/spree/base_controller.rb +15 -0
- data/app/helpers/spree/base_helper.rb +123 -0
- data/app/helpers/spree/products_helper.rb +91 -0
- data/app/mailers/spree/base_mailer.rb +27 -0
- data/app/mailers/spree/order_mailer.rb +17 -0
- data/app/mailers/spree/reimbursement_mailer.rb +10 -0
- data/app/mailers/spree/shipment_mailer.rb +10 -0
- data/app/mailers/spree/test_mailer.rb +8 -0
- data/app/models/concerns/spree/adjustment_source.rb +53 -0
- data/app/models/concerns/spree/calculated_adjustments.rb +34 -0
- data/app/models/concerns/spree/default_price.rb +40 -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/ransackable_attributes.rb +24 -0
- data/app/models/concerns/spree/user_address.rb +30 -0
- data/app/models/concerns/spree/user_api_authentication.rb +19 -0
- data/app/models/concerns/spree/user_methods.rb +57 -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/concerns/spree/vat_price_calculation.rb +47 -0
- data/app/models/friendly_id/slug_decorator.rb +3 -0
- data/app/models/spree/ability.rb +80 -0
- data/app/models/spree/address.rb +145 -0
- data/app/models/spree/adjustable/adjuster/base.rb +25 -0
- data/app/models/spree/adjustable/adjuster/promotion.rb +41 -0
- data/app/models/spree/adjustable/adjuster/tax.rb +26 -0
- data/app/models/spree/adjustable/adjustments_updater.rb +47 -0
- data/app/models/spree/adjustable/promotion_accumulator.rb +75 -0
- data/app/models/spree/adjustment.rb +104 -0
- data/app/models/spree/app_configuration.rb +74 -0
- data/app/models/spree/asset.rb +6 -0
- data/app/models/spree/base.rb +24 -0
- data/app/models/spree/calculator/default_tax.rb +59 -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 +22 -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/calculator.rb +47 -0
- data/app/models/spree/classification.rb +15 -0
- data/app/models/spree/country.rb +40 -0
- data/app/models/spree/credit_card.rb +166 -0
- data/app/models/spree/customer_return.rb +67 -0
- data/app/models/spree/exchange.rb +46 -0
- data/app/models/spree/gateway/bogus.rb +91 -0
- data/app/models/spree/gateway/bogus_simple.rb +26 -0
- data/app/models/spree/gateway.rb +80 -0
- data/app/models/spree/image.rb +43 -0
- data/app/models/spree/inventory_unit.rb +105 -0
- data/app/models/spree/legacy_user.rb +13 -0
- data/app/models/spree/line_item.rb +158 -0
- data/app/models/spree/log_entry.rb +17 -0
- data/app/models/spree/option_type.rb +32 -0
- data/app/models/spree/option_type_prototype.rb +9 -0
- data/app/models/spree/option_value.rb +26 -0
- data/app/models/spree/option_value_variant.rb +6 -0
- data/app/models/spree/order/checkout.rb +336 -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/store_credit.rb +96 -0
- data/app/models/spree/order.rb +685 -0
- data/app/models/spree/order_contents.rb +120 -0
- data/app/models/spree/order_inventory.rb +103 -0
- data/app/models/spree/order_merger.rb +65 -0
- data/app/models/spree/order_promotion.rb +6 -0
- data/app/models/spree/order_updater.rb +177 -0
- data/app/models/spree/payment/gateway_options.rb +90 -0
- data/app/models/spree/payment/processing.rb +175 -0
- data/app/models/spree/payment.rb +276 -0
- data/app/models/spree/payment_capture_event.rb +9 -0
- data/app/models/spree/payment_method/check.rb +43 -0
- data/app/models/spree/payment_method/store_credit.rb +130 -0
- data/app/models/spree/payment_method.rb +71 -0
- data/app/models/spree/preference.rb +5 -0
- data/app/models/spree/preferences/configuration.rb +71 -0
- data/app/models/spree/preferences/preferable.rb +133 -0
- data/app/models/spree/preferences/preferable_class_methods.rb +51 -0
- data/app/models/spree/preferences/scoped_store.rb +33 -0
- data/app/models/spree/preferences/store.rb +98 -0
- data/app/models/spree/price.rb +53 -0
- data/app/models/spree/product/scopes.rb +271 -0
- data/app/models/spree/product.rb +384 -0
- data/app/models/spree/product_option_type.rb +12 -0
- data/app/models/spree/product_promotion_rule.rb +9 -0
- data/app/models/spree/product_property.rb +28 -0
- data/app/models/spree/promotion/actions/create_adjustment.rb +21 -0
- data/app/models/spree/promotion/actions/create_item_adjustments.rb +24 -0
- data/app/models/spree/promotion/actions/create_line_items.rb +62 -0
- data/app/models/spree/promotion/actions/free_shipping.rb +18 -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 +65 -0
- data/app/models/spree/promotion/rules/taxon.rb +70 -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.rb +198 -0
- data/app/models/spree/promotion_action.rb +25 -0
- data/app/models/spree/promotion_action_line_item.rb +6 -0
- data/app/models/spree/promotion_category.rb +6 -0
- data/app/models/spree/promotion_handler/cart.rb +51 -0
- data/app/models/spree/promotion_handler/coupon.rb +107 -0
- data/app/models/spree/promotion_handler/free_shipping.rb +33 -0
- data/app/models/spree/promotion_handler/page.rb +24 -0
- data/app/models/spree/promotion_rule.rb +43 -0
- data/app/models/spree/promotion_rule_taxon.rb +9 -0
- data/app/models/spree/promotion_rule_user.rb +9 -0
- data/app/models/spree/property.rb +23 -0
- data/app/models/spree/property_prototype.rb +9 -0
- data/app/models/spree/prototype.rb +14 -0
- data/app/models/spree/prototype_taxon.rb +9 -0
- data/app/models/spree/refund.rb +89 -0
- data/app/models/spree/refund_reason.rb +13 -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.rb +164 -0
- data/app/models/spree/reimbursement_performer.rb +43 -0
- data/app/models/spree/reimbursement_tax_calculator.rb +44 -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 +67 -0
- data/app/models/spree/reimbursement_type/store_credit.rb +28 -0
- data/app/models/spree/reimbursement_type.rb +16 -0
- data/app/models/spree/return_authorization.rb +98 -0
- data/app/models/spree/return_authorization_reason.rb +7 -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 +16 -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/return_item.rb +236 -0
- data/app/models/spree/returns_calculator.rb +8 -0
- data/app/models/spree/role.rb +8 -0
- data/app/models/spree/role_user.rb +6 -0
- data/app/models/spree/shipment.rb +419 -0
- data/app/models/spree/shipment_handler.rb +43 -0
- data/app/models/spree/shipping_calculator.rb +22 -0
- data/app/models/spree/shipping_category.rb +11 -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_method_zone.rb +6 -0
- data/app/models/spree/shipping_rate.rb +44 -0
- data/app/models/spree/state.rb +41 -0
- data/app/models/spree/state_change.rb +10 -0
- data/app/models/spree/stock/adjuster.rb +27 -0
- data/app/models/spree/stock/availability_validator.rb +30 -0
- data/app/models/spree/stock/content_item.rb +54 -0
- data/app/models/spree/stock/coordinator.rb +65 -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/package.rb +104 -0
- data/app/models/spree/stock/packer.rb +48 -0
- data/app/models/spree/stock/prioritizer.rb +47 -0
- data/app/models/spree/stock/quantifier.rb +29 -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 +34 -0
- data/app/models/spree/stock_item.rb +90 -0
- data/app/models/spree/stock_location.rb +115 -0
- data/app/models/spree/stock_movement.rb +35 -0
- data/app/models/spree/stock_transfer.rb +50 -0
- data/app/models/spree/store.rb +48 -0
- data/app/models/spree/store_credit.rb +252 -0
- data/app/models/spree/store_credit_category.rb +22 -0
- data/app/models/spree/store_credit_event.rb +38 -0
- data/app/models/spree/store_credit_type.rb +6 -0
- data/app/models/spree/tax_category.rb +18 -0
- data/app/models/spree/tax_rate.rb +110 -0
- data/app/models/spree/taxon.rb +102 -0
- data/app/models/spree/taxonomy.rb +24 -0
- data/app/models/spree/tracker.rb +19 -0
- data/app/models/spree/validations/db_maximum_length_validator.rb +23 -0
- data/app/models/spree/variant.rb +312 -0
- data/app/models/spree/zone.rb +190 -0
- data/app/models/spree/zone_member.rb +12 -0
- data/app/validators/db_maximum_length_validator.rb +11 -0
- data/app/views/layouts/spree/base_mailer.html.erb +41 -0
- data/app/views/spree/admin/orders/customer_details/_autocomplete.js.erb +19 -0
- data/app/views/spree/order_mailer/_adjustment.html.erb +8 -0
- data/app/views/spree/order_mailer/_subtotal.html.erb +8 -0
- data/app/views/spree/order_mailer/_total.html.erb +8 -0
- data/app/views/spree/order_mailer/cancel_email.html.erb +30 -0
- data/app/views/spree/order_mailer/cancel_email.text.erb +16 -0
- data/app/views/spree/order_mailer/confirm_email.html.erb +70 -0
- data/app/views/spree/order_mailer/confirm_email.text.erb +38 -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 +29 -0
- data/app/views/spree/shared/_base_mailer_stylesheets.html.erb +777 -0
- data/app/views/spree/shared/_error_messages.html.erb +11 -0
- data/app/views/spree/shared/_mailer_line_item.html.erb +12 -0
- data/app/views/spree/shipment_mailer/shipped_email.html.erb +41 -0
- data/app/views/spree/shipment_mailer/shipped_email.text.erb +16 -0
- data/app/views/spree/test_mailer/test_email.html.erb +40 -0
- data/app/views/spree/test_mailer/test_email.text.erb +4 -0
- data/config/initializers/assets.rb +1 -0
- data/config/initializers/friendly_id.rb +88 -0
- data/config/initializers/premailer_assets.rb +1 -0
- data/config/initializers/premailer_rails.rb +3 -0
- data/config/initializers/user_class_extensions.rb +10 -0
- data/config/locales/en.yml +1499 -0
- data/config/routes.rb +8 -0
- data/db/default/spree/countries.rb +29 -0
- data/db/default/spree/default_reimbursement_type.rb +1 -0
- data/db/default/spree/roles.rb +2 -0
- data/db/default/spree/states.rb +28 -0
- data/db/default/spree/stores.rb +9 -0
- data/db/default/spree/zones.rb +11 -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 +33 -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 +37 -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 +18 -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/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/20140911173301_add_kind_to_zone.rb +11 -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 +13 -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/20141215232040_remove_token_permissions_table.rb +6 -0
- data/db/migrate/20141215235502_remove_extra_products_slug_index.rb +5 -0
- data/db/migrate/20141217215630_update_product_slug_index.rb +6 -0
- data/db/migrate/20141218025915_rename_identifier_to_number_for_payment.rb +5 -0
- data/db/migrate/20150118210639_create_spree_store_credits.rb +24 -0
- data/db/migrate/20150118211500_create_spree_store_credit_categories.rb +8 -0
- data/db/migrate/20150118212051_create_spree_store_credit_events.rb +17 -0
- data/db/migrate/20150118212101_create_spree_store_credit_types.rb +10 -0
- data/db/migrate/20150121022521_remove_environment_from_payment_method.rb +6 -0
- data/db/migrate/20150122145607_add_resellable_to_return_items.rb +5 -0
- data/db/migrate/20150122202432_add_code_to_spree_promotion_categories.rb +5 -0
- data/db/migrate/20150128032538_remove_environment_from_tracker.rb +6 -0
- data/db/migrate/20150128060325_remove_spree_configurations.rb +16 -0
- data/db/migrate/20150216173445_add_index_to_spree_stock_items_variant_id.rb +13 -0
- data/db/migrate/20150309161154_ensure_payments_have_numbers.rb +9 -0
- data/db/migrate/20150314013438_add_missing_indexes_on_spree_tables.rb +67 -0
- data/db/migrate/20150317174308_remove_duplicated_indexes_from_multi_columns.rb +18 -0
- data/db/migrate/20150324104002_remove_user_index_from_spree_state_changes.rb +14 -0
- data/db/migrate/20150515211137_fix_adjustment_order_id.rb +70 -0
- data/db/migrate/20150522071831_add_position_to_spree_payment_methods.rb +5 -0
- data/db/migrate/20150522181728_add_deleted_at_to_friendly_id_slugs.rb +6 -0
- data/db/migrate/20150609093816_increase_scale_on_pre_tax_amounts.rb +16 -0
- data/db/migrate/20150626181949_add_taxable_adjustment_total_to_line_item.rb +19 -0
- data/db/migrate/20150627090949_migrate_payment_methods_display.rb +12 -0
- data/db/migrate/20150707204155_enable_acts_as_paranoid_on_calculators.rb +6 -0
- data/db/migrate/20150714154102_spree_payment_method_store_credits.rb +12 -0
- data/db/migrate/20150726141425_rename_has_and_belongs_to_associations_to_model_names.rb +18 -0
- data/db/migrate/20150727191614_spree_store_credit_types.rb +11 -0
- data/db/migrate/20150819154308_add_discontinued_to_products_and_variants.rb +68 -0
- data/db/migrate/20151220072838_remove_shipping_method_id_from_spree_orders.rb +13 -0
- data/db/migrate/20160207191757_add_id_column_to_earlier_habtm_tables.rb +16 -0
- data/db/migrate/20160219165458_add_indexes.rb +14 -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 +72 -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 +35 -0
- data/lib/generators/spree/install/install_generator.rb +233 -0
- data/lib/generators/spree/install/templates/config/initializers/spree.rb +18 -0
- data/lib/generators/spree/install/templates/vendor/assets/javascripts/spree/backend/all.js +17 -0
- data/lib/generators/spree/install/templates/vendor/assets/javascripts/spree/frontend/all.js +17 -0
- data/lib/generators/spree/install/templates/vendor/assets/stylesheets/spree/backend/all.css +16 -0
- data/lib/generators/spree/install/templates/vendor/assets/stylesheets/spree/frontend/all.css +16 -0
- data/lib/spree/core/controller_helpers/auth.rb +84 -0
- data/lib/spree/core/controller_helpers/common.rb +74 -0
- data/lib/spree/core/controller_helpers/order.rb +103 -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 +51 -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 +134 -0
- data/lib/spree/core/environment/calculators.rb +12 -0
- data/lib/spree/core/environment.rb +15 -0
- data/lib/spree/core/environment_extension.rb +25 -0
- data/lib/spree/core/importer/order.rb +284 -0
- data/lib/spree/core/importer/product.rb +62 -0
- data/lib/spree/core/importer.rb +9 -0
- data/lib/spree/core/number_generator.rb +52 -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 +102 -0
- data/lib/spree/core/token_generator.rb +22 -0
- data/lib/spree/core/validators/email.rb +11 -0
- data/lib/spree/core/version.rb +5 -0
- data/lib/spree/core.rb +96 -0
- data/lib/spree/i18n/base.rb +17 -0
- data/lib/spree/i18n/initializer.rb +1 -0
- data/lib/spree/i18n.rb +37 -0
- data/lib/spree/localized_number.rb +22 -0
- data/lib/spree/migrations.rb +77 -0
- data/lib/spree/money.rb +61 -0
- data/lib/spree/permitted_attributes.rb +115 -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 +179 -0
- data/lib/spree/testing_support/common_rake.rb +39 -0
- data/lib/spree/testing_support/controller_requests.rb +93 -0
- data/lib/spree/testing_support/extension_rake.rb +10 -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 +20 -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/image_factory.rb +5 -0
- data/lib/spree/testing_support/factories/inventory_unit_factory.rb +10 -0
- data/lib/spree/testing_support/factories/line_item_factory.rb +12 -0
- data/lib/spree/testing_support/factories/options_factory.rb +13 -0
- data/lib/spree/testing_support/factories/order_factory.rb +91 -0
- data/lib/spree/testing_support/factories/payment_factory.rb +28 -0
- data/lib/spree/testing_support/factories/payment_method_factory.rb +23 -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_factory.rb +52 -0
- data/lib/spree/testing_support/factories/promotion_rule_factory.rb +5 -0
- data/lib/spree/testing_support/factories/property_factory.rb +6 -0
- data/lib/spree/testing_support/factories/prototype_factory.rb +11 -0
- data/lib/spree/testing_support/factories/refund_factory.rb +22 -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 +20 -0
- data/lib/spree/testing_support/factories/return_item_factory.rb +14 -0
- data/lib/spree/testing_support/factories/role_factory.rb +9 -0
- data/lib/spree/testing_support/factories/shipment_factory.rb +23 -0
- data/lib/spree/testing_support/factories/shipping_category_factory.rb +5 -0
- data/lib/spree/testing_support/factories/shipping_method_factory.rb +21 -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/store_credit_category_factory.rb +9 -0
- data/lib/spree/testing_support/factories/store_credit_event_factory.rb +8 -0
- data/lib/spree/testing_support/factories/store_credit_factory.rb +17 -0
- data/lib/spree/testing_support/factories/store_credit_type_factory.rb +11 -0
- data/lib/spree/testing_support/factories/store_factory.rb +8 -0
- data/lib/spree/testing_support/factories/tax_category_factory.rb +6 -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 +6 -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 +25 -0
- data/lib/spree/testing_support/factories/zone_member_factory.rb +6 -0
- data/lib/spree/testing_support/factories.rb +19 -0
- data/lib/spree/testing_support/flash.rb +27 -0
- data/lib/spree/testing_support/i18n.rb +97 -0
- data/lib/spree/testing_support/microdata.rb +189 -0
- data/lib/spree/testing_support/order_walkthrough.rb +72 -0
- data/lib/spree/testing_support/preferences.rb +31 -0
- data/lib/spree/testing_support/url_helpers.rb +9 -0
- data/lib/spree_core.rb +1 -0
- data/lib/tasks/core.rake +169 -0
- data/lib/tasks/email.rake +10 -0
- data/lib/tasks/exchanges.rake +70 -0
- data/script/rails +9 -0
- data/spec/fixtures/microdata.html +22 -0
- data/spec/fixtures/microdata_itemref.html +15 -0
- data/spec/fixtures/microdata_no_itemscope.html +20 -0
- data/spec/fixtures/thinking-cat.jpg +0 -0
- data/spree_core.gemspec +47 -0
- data/vendor/assets/javascripts/jquery-migrate-1.0.0.js +498 -0
- data/vendor/assets/javascripts/jquery.payment.js +652 -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 +971 -0
@@ -0,0 +1,1499 @@
|
|
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
|
+
number: Number
|
76
|
+
spree/payment_method:
|
77
|
+
name: Name
|
78
|
+
spree/product:
|
79
|
+
available_on: Available On
|
80
|
+
discontinue_on: Discontinue On
|
81
|
+
cost_currency: Cost Currency
|
82
|
+
cost_price: Cost Price
|
83
|
+
description: Description
|
84
|
+
master_price: Master Price
|
85
|
+
name: Name
|
86
|
+
on_hand: On Hand
|
87
|
+
shipping_category: Shipping Category
|
88
|
+
tax_category: Tax Category
|
89
|
+
spree/promotion:
|
90
|
+
advertise: Advertise
|
91
|
+
code: Code
|
92
|
+
description: Description
|
93
|
+
event_name: Event Name
|
94
|
+
expires_at: Expires At
|
95
|
+
name: Name
|
96
|
+
path: Path
|
97
|
+
starts_at: Starts At
|
98
|
+
usage_limit: Usage Limit
|
99
|
+
spree/promotion_category:
|
100
|
+
name: Name
|
101
|
+
spree/property:
|
102
|
+
name: Name
|
103
|
+
presentation: Presentation
|
104
|
+
spree/prototype:
|
105
|
+
name: Name
|
106
|
+
spree/return_authorization:
|
107
|
+
amount: Amount
|
108
|
+
spree/role:
|
109
|
+
name: Name
|
110
|
+
spree/shipment:
|
111
|
+
number: Number
|
112
|
+
spree/state:
|
113
|
+
abbr: Abbreviation
|
114
|
+
name: Name
|
115
|
+
spree/state_change:
|
116
|
+
state_changes: State changes
|
117
|
+
type: Type
|
118
|
+
state_from: State from
|
119
|
+
state_to: State to
|
120
|
+
user: User
|
121
|
+
timestamp: Timestamp
|
122
|
+
updated: Updated
|
123
|
+
spree/store:
|
124
|
+
url: Site URL
|
125
|
+
meta_description: Meta Description
|
126
|
+
meta_keywords: Meta Keywords
|
127
|
+
seo_title: Seo Title
|
128
|
+
name: Site Name
|
129
|
+
mail_from_address: Mail From Address
|
130
|
+
spree/store_credit:
|
131
|
+
amount_used: "Amount used"
|
132
|
+
spree/store_credit_category:
|
133
|
+
name: Name
|
134
|
+
spree/tax_category:
|
135
|
+
description: Description
|
136
|
+
name: Name
|
137
|
+
spree/tax_rate:
|
138
|
+
amount: Rate
|
139
|
+
included_in_price: Included in Price
|
140
|
+
show_rate_in_label: Show rate in label
|
141
|
+
spree/taxon:
|
142
|
+
name: Name
|
143
|
+
permalink: Permalink
|
144
|
+
position: Position
|
145
|
+
spree/taxonomy:
|
146
|
+
name: Name
|
147
|
+
spree/user:
|
148
|
+
email: Email
|
149
|
+
password: Password
|
150
|
+
password_confirmation: Password Confirmation
|
151
|
+
spree/variant:
|
152
|
+
cost_currency: Cost Currency
|
153
|
+
cost_price: Cost Price
|
154
|
+
depth: Depth
|
155
|
+
height: Height
|
156
|
+
price: Price
|
157
|
+
sku: SKU
|
158
|
+
weight: Weight
|
159
|
+
width: Width
|
160
|
+
spree/zone:
|
161
|
+
description: Description
|
162
|
+
name: Name
|
163
|
+
models:
|
164
|
+
spree/address:
|
165
|
+
one: Address
|
166
|
+
other: Addresses
|
167
|
+
spree/country:
|
168
|
+
one: Country
|
169
|
+
other: Countries
|
170
|
+
spree/credit_card:
|
171
|
+
one: Credit Card
|
172
|
+
other: Credit Cards
|
173
|
+
spree/customer_return:
|
174
|
+
one: Customer Return
|
175
|
+
other: Customer Returns
|
176
|
+
spree/inventory_unit:
|
177
|
+
one: Inventory Unit
|
178
|
+
other: Inventory Units
|
179
|
+
spree/line_item:
|
180
|
+
one: Line Item
|
181
|
+
other: Line Items
|
182
|
+
spree/option_type:
|
183
|
+
one: Option Type
|
184
|
+
other: Option Types
|
185
|
+
spree/option_value:
|
186
|
+
one: Option Value
|
187
|
+
other: Option Values
|
188
|
+
spree/order:
|
189
|
+
one: Order
|
190
|
+
other: Orders
|
191
|
+
spree/payment:
|
192
|
+
one: Payment
|
193
|
+
other: Payments
|
194
|
+
spree/payment_method:
|
195
|
+
one: Payment Method
|
196
|
+
other: Payment Methods
|
197
|
+
spree/product:
|
198
|
+
one: Product
|
199
|
+
other: Products
|
200
|
+
spree/promotion:
|
201
|
+
one: Promotion
|
202
|
+
other: Promotions
|
203
|
+
spree/promotion_category:
|
204
|
+
one: Promotion Category
|
205
|
+
other: Promotion Categories
|
206
|
+
spree/property:
|
207
|
+
one: Property
|
208
|
+
other: Properties
|
209
|
+
spree/prototype:
|
210
|
+
one: Prototype
|
211
|
+
other: Prototypes
|
212
|
+
spree/refund_reason:
|
213
|
+
one: Refund Reason
|
214
|
+
other: Refund Reasons
|
215
|
+
spree/reimbursement:
|
216
|
+
one: Reimbursement
|
217
|
+
other: Reimbursements
|
218
|
+
spree/reimbursement_type:
|
219
|
+
one: Reimbursement Type
|
220
|
+
other: Reimbursement Types
|
221
|
+
spree/return_authorization:
|
222
|
+
one: Return Authorization
|
223
|
+
other: Return Authorizations
|
224
|
+
spree/return_authorization_reason:
|
225
|
+
one: Return Authorization Reason
|
226
|
+
other: Return Authorization Reasons
|
227
|
+
spree/role:
|
228
|
+
one: Roles
|
229
|
+
other: Roles
|
230
|
+
spree/shipment:
|
231
|
+
one: Shipment
|
232
|
+
other: Shipments
|
233
|
+
spree/shipping_category:
|
234
|
+
one: Shipping Category
|
235
|
+
other: Shipping Categories
|
236
|
+
spree/shipping_method:
|
237
|
+
one: Shipping Method
|
238
|
+
other: Shipping Methods
|
239
|
+
spree/state:
|
240
|
+
one: State
|
241
|
+
other: States
|
242
|
+
spree/state_change:
|
243
|
+
one: State Change
|
244
|
+
other: State Changes
|
245
|
+
spree/stock_movement:
|
246
|
+
one: Stock Movement
|
247
|
+
other: Stock Movements
|
248
|
+
spree/stock_location:
|
249
|
+
one: Stock Location
|
250
|
+
other: Stock Locations
|
251
|
+
spree/stock_transfer:
|
252
|
+
one: Stock Transfer
|
253
|
+
other: Stock Transfers
|
254
|
+
spree/store_credit:
|
255
|
+
one: Store Credit
|
256
|
+
other: Store Credits
|
257
|
+
spree/store_credit_category:
|
258
|
+
one: Store Credit Category
|
259
|
+
other: Store Credit Categories
|
260
|
+
spree/tax_category:
|
261
|
+
one: Tax Category
|
262
|
+
other: Tax Categories
|
263
|
+
spree/tax_rate:
|
264
|
+
one: Tax Rate
|
265
|
+
other: Tax Rates
|
266
|
+
spree/taxon:
|
267
|
+
one: Taxon
|
268
|
+
other: Taxons
|
269
|
+
spree/taxonomy:
|
270
|
+
one: Taxonomy
|
271
|
+
other: Taxonomies
|
272
|
+
spree/tracker:
|
273
|
+
one: Tracker
|
274
|
+
other: Trackers
|
275
|
+
spree/user:
|
276
|
+
one: User
|
277
|
+
other: Users
|
278
|
+
spree/variant:
|
279
|
+
one: Variant
|
280
|
+
other: Variants
|
281
|
+
spree/zone:
|
282
|
+
one: Zone
|
283
|
+
other: Zones
|
284
|
+
errors:
|
285
|
+
models:
|
286
|
+
spree/calculator/tiered_flat_rate:
|
287
|
+
attributes:
|
288
|
+
base:
|
289
|
+
keys_should_be_positive_number: "Tier keys should all be numbers larger than 0"
|
290
|
+
preferred_tiers:
|
291
|
+
should_be_hash: "should be a hash"
|
292
|
+
spree/calculator/tiered_percent:
|
293
|
+
attributes:
|
294
|
+
base:
|
295
|
+
keys_should_be_positive_number: "Tier keys should all be numbers larger than 0"
|
296
|
+
values_should_be_percent: "Tier values should all be percentages between 0% and 100%"
|
297
|
+
preferred_tiers:
|
298
|
+
should_be_hash: "should be a hash"
|
299
|
+
spree/classification:
|
300
|
+
attributes:
|
301
|
+
taxon_id:
|
302
|
+
already_linked: "is already linked to this product"
|
303
|
+
spree/credit_card:
|
304
|
+
attributes:
|
305
|
+
base:
|
306
|
+
card_expired: "Card has expired"
|
307
|
+
expiry_invalid: "Card expiration is invalid"
|
308
|
+
spree/line_item:
|
309
|
+
attributes:
|
310
|
+
currency:
|
311
|
+
must_match_order_currency: "Must match order currency"
|
312
|
+
spree/promotion:
|
313
|
+
attributes:
|
314
|
+
expires_at:
|
315
|
+
invalid_date_range: must be later than start date
|
316
|
+
spree/product:
|
317
|
+
attributes:
|
318
|
+
discontinue_on:
|
319
|
+
invalid_date_range: must be later than available date
|
320
|
+
base:
|
321
|
+
cannot_destroy_if_attached_to_line_items: Cannot delete products once they are attached to line items.
|
322
|
+
spree/refund:
|
323
|
+
attributes:
|
324
|
+
amount:
|
325
|
+
greater_than_allowed: is greater than the allowed amount.
|
326
|
+
spree/reimbursement:
|
327
|
+
attributes:
|
328
|
+
base:
|
329
|
+
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.
|
330
|
+
spree/return_item:
|
331
|
+
attributes:
|
332
|
+
reimbursement:
|
333
|
+
cannot_be_associated_unless_accepted: cannot be associated to a return item that is not accepted.
|
334
|
+
inventory_unit:
|
335
|
+
other_completed_return_item_exists: "%{inventory_unit_id} has already been taken by return item %{return_item_id}"
|
336
|
+
spree/shipping_method:
|
337
|
+
attributes:
|
338
|
+
base:
|
339
|
+
required_shipping_category: "You must select at least one shipping category"
|
340
|
+
spree/store:
|
341
|
+
attributes:
|
342
|
+
base:
|
343
|
+
cannot_destroy_default_store: Cannot destroy the default Store.
|
344
|
+
spree/store_credit:
|
345
|
+
attributes:
|
346
|
+
amount_used:
|
347
|
+
cannot_be_greater_than_amount: Cannot be greater than amount.
|
348
|
+
greater_than_zero_restrict_delete: is greater than zero. Can not delete store credit.
|
349
|
+
amount_authorized:
|
350
|
+
exceeds_total_credits: Exceeds total credits.
|
351
|
+
spree/variant:
|
352
|
+
attributes:
|
353
|
+
base:
|
354
|
+
cannot_destroy_if_attached_to_line_items: Cannot delete variants once they are attached to line items.
|
355
|
+
|
356
|
+
devise:
|
357
|
+
confirmations:
|
358
|
+
confirmed: Your account was successfully confirmed. You are now signed in.
|
359
|
+
send_instructions: You will receive an email with instructions about how to confirm your account in a few minutes.
|
360
|
+
failure:
|
361
|
+
inactive: Your account was not activated yet.
|
362
|
+
invalid: Invalid email or password.
|
363
|
+
invalid_token: Invalid authentication token.
|
364
|
+
locked: Your account is locked.
|
365
|
+
timeout: Your session expired, please sign in again to continue.
|
366
|
+
unauthenticated: You need to sign in or sign up before continuing.
|
367
|
+
unconfirmed: You have to confirm your account before continuing.
|
368
|
+
mailer:
|
369
|
+
confirmation_instructions:
|
370
|
+
subject: Confirmation instructions
|
371
|
+
reset_password_instructions:
|
372
|
+
subject: Reset password instructions
|
373
|
+
unlock_instructions:
|
374
|
+
subject: Unlock Instructions
|
375
|
+
oauth_callbacks:
|
376
|
+
failure: Could not authorize you from %{kind} because "%{reason}".
|
377
|
+
success: Successfully authorized from %{kind} account.
|
378
|
+
unlocks:
|
379
|
+
send_instructions: You will receive an email with instructions about how to unlock your account in a few minutes.
|
380
|
+
unlocked: Your account was successfully unlocked. You are now signed in.
|
381
|
+
user_passwords:
|
382
|
+
user:
|
383
|
+
cannot_be_blank: Your password cannot be blank.
|
384
|
+
send_instructions: You will receive an email with instructions about how to reset your password in a few minutes.
|
385
|
+
updated: Your password was changed successfully. You are now signed in.
|
386
|
+
user_registrations:
|
387
|
+
destroyed: Bye! Your account was successfully cancelled. We hope to see you again soon.
|
388
|
+
inactive_signed_up: You have signed up successfully. However, we could not sign you in because your account is %{reason}.
|
389
|
+
signed_up: Welcome! You have signed up successfully.
|
390
|
+
updated: You updated your account successfully.
|
391
|
+
user_sessions:
|
392
|
+
signed_in: Signed in successfully.
|
393
|
+
signed_out: Signed out successfully.
|
394
|
+
|
395
|
+
errors:
|
396
|
+
messages:
|
397
|
+
already_confirmed: was already confirmed
|
398
|
+
not_found: not found
|
399
|
+
not_locked: was not locked
|
400
|
+
not_saved:
|
401
|
+
one: ! '1 error prohibited this %{resource} from being saved:'
|
402
|
+
other: ! '%{count} errors prohibited this %{resource} from being saved:'
|
403
|
+
|
404
|
+
number:
|
405
|
+
percentage:
|
406
|
+
format:
|
407
|
+
precision: 1
|
408
|
+
|
409
|
+
spree:
|
410
|
+
abbreviation: Abbreviation
|
411
|
+
accept: Accept
|
412
|
+
acceptance_status: Acceptance status
|
413
|
+
acceptance_errors: Acceptance errors
|
414
|
+
accepted: Accepted
|
415
|
+
account: Account
|
416
|
+
account_updated: Account updated
|
417
|
+
action: Action
|
418
|
+
actions:
|
419
|
+
cancel: Cancel
|
420
|
+
continue: Continue
|
421
|
+
create: Create
|
422
|
+
destroy: Destroy
|
423
|
+
edit: Edit
|
424
|
+
list: List
|
425
|
+
listing: Listing
|
426
|
+
new: New
|
427
|
+
refund: Refund
|
428
|
+
save: Save
|
429
|
+
update: Update
|
430
|
+
activate: Activate
|
431
|
+
active: Active
|
432
|
+
add: Add
|
433
|
+
add_action_of_type: Add action of type
|
434
|
+
add_country: Add Country
|
435
|
+
add_coupon_code: Add Coupon Code
|
436
|
+
add_new_header: Add New Header
|
437
|
+
add_new_style: Add New Style
|
438
|
+
add_one: Add One
|
439
|
+
add_option_value: Add Option Value
|
440
|
+
add_product: Add Product
|
441
|
+
add_product_properties: Add Product Properties
|
442
|
+
add_rule_of_type: Add rule of type
|
443
|
+
add_state: Add State
|
444
|
+
add_stock: Add Stock
|
445
|
+
add_to_cart: Add To Cart
|
446
|
+
add_variant: Add Variant
|
447
|
+
add_store_credit: Add Store Credit
|
448
|
+
additional_item: Additional Item
|
449
|
+
address: Address
|
450
|
+
address1: Address
|
451
|
+
address2: Address (contd.)
|
452
|
+
addresses: Addresses
|
453
|
+
adjustable: Adjustable
|
454
|
+
adjustment: Adjustment
|
455
|
+
adjustment_amount: Amount
|
456
|
+
adjustment_labels:
|
457
|
+
tax_rates:
|
458
|
+
including_tax: '%{name}%{amount} (Included in Price)'
|
459
|
+
excluding_tax: '%{name}%{amount}'
|
460
|
+
adjustment_successfully_closed: Adjustment has been successfully closed!
|
461
|
+
adjustment_successfully_opened: Adjustment has been successfully opened!
|
462
|
+
adjustment_total: Adjustment Total
|
463
|
+
adjustments: Adjustments
|
464
|
+
admin:
|
465
|
+
tab:
|
466
|
+
configuration: Configuration
|
467
|
+
option_types: Option Types
|
468
|
+
orders: Orders
|
469
|
+
overview: Overview
|
470
|
+
products: Products
|
471
|
+
promotions: Promotions
|
472
|
+
promotion_categories: Promotion Categories
|
473
|
+
properties: Properties
|
474
|
+
prototypes: Prototypes
|
475
|
+
reports: Reports
|
476
|
+
taxonomies: Taxonomies
|
477
|
+
taxons: Taxons
|
478
|
+
users: Users
|
479
|
+
order:
|
480
|
+
events:
|
481
|
+
approve: approve
|
482
|
+
cancel: cancel
|
483
|
+
resume: resume
|
484
|
+
resend: Resend
|
485
|
+
user:
|
486
|
+
account: Account
|
487
|
+
addresses: Addresses
|
488
|
+
items: Items
|
489
|
+
items_purchased: Items Purchased
|
490
|
+
order_history: Order History
|
491
|
+
order_num: "Order #"
|
492
|
+
orders: Orders
|
493
|
+
user_information: User Information
|
494
|
+
store_credits: Store Credits
|
495
|
+
no_store_credit: User has no Store Credit available.
|
496
|
+
available_store_credit: User has %{amount} in Store Credit available.
|
497
|
+
administration: Administration
|
498
|
+
advertise: Advertise
|
499
|
+
agree_to_privacy_policy: Agree to Privacy Policy
|
500
|
+
agree_to_terms_of_service: Agree to Terms of Service
|
501
|
+
all: All
|
502
|
+
all_adjustments_closed: All adjustments successfully closed!
|
503
|
+
all_adjustments_opened: All adjustments successfully opened!
|
504
|
+
all_departments: All departments
|
505
|
+
all_items_have_been_returned: All items have been returned
|
506
|
+
already_signed_up_for_analytics: You have already signed up for Spree Analytics
|
507
|
+
alt_text: Alternative Text
|
508
|
+
alternative_phone: Alternative Phone
|
509
|
+
amount: Amount
|
510
|
+
analytics_desc_header_1: Spree Analytics
|
511
|
+
analytics_desc_header_2: Live analytics integrated into your Spree dashboard
|
512
|
+
analytics_desc_list_1: Get live sales information as it happens
|
513
|
+
analytics_desc_list_2: Requires only a free Spree account to activate
|
514
|
+
analytics_desc_list_3: Absolutely no code to install
|
515
|
+
analytics_desc_list_4: It's completely free!
|
516
|
+
analytics_trackers: Analytics Trackers
|
517
|
+
and: and
|
518
|
+
approve: approve
|
519
|
+
approver: Approver
|
520
|
+
approved_at: Approved at
|
521
|
+
are_you_sure: Are you sure?
|
522
|
+
are_you_sure_delete: Are you sure you want to delete this record?
|
523
|
+
associated_adjustment_closed: The associated adjustment is closed, and will not be recalculated. Do you want to open it?
|
524
|
+
at_symbol: '@'
|
525
|
+
authorization_failure: Authorization Failure
|
526
|
+
authorized: Authorized
|
527
|
+
auto_capture: Auto Capture
|
528
|
+
available_on: Available On
|
529
|
+
available: Available
|
530
|
+
average_order_value: Average Order Value
|
531
|
+
avs_response: AVS Response
|
532
|
+
back: Back
|
533
|
+
back_end: Backend
|
534
|
+
backordered: Backordered
|
535
|
+
back_to_resource_list: 'Back To %{resource} List'
|
536
|
+
back_to_payment: Back To Payment
|
537
|
+
back_to_rma_reason_list: Back To RMA Reason List
|
538
|
+
back_to_store: Go Back To Store
|
539
|
+
back_to_users_list: Back To Users List
|
540
|
+
backorderable: Backorderable
|
541
|
+
backorderable_default: Backorderable default
|
542
|
+
backorders_allowed: backorders allowed
|
543
|
+
balance_due: Balance Due
|
544
|
+
base_amount: Base Amount
|
545
|
+
base_percent: Base Percent
|
546
|
+
bill_address: Bill Address
|
547
|
+
billing: Billing
|
548
|
+
billing_address: Billing Address
|
549
|
+
both: Both
|
550
|
+
calculated_reimbursements: Calculated Reimbursements
|
551
|
+
calculator: Calculator
|
552
|
+
calculator_settings_warning: If you are changing the calculator type, you must save first before you can edit the calculator settings
|
553
|
+
cancel: cancel
|
554
|
+
canceled: Canceled
|
555
|
+
canceler: Canceler
|
556
|
+
canceled_at: Canceled at
|
557
|
+
cannot_empty_completed_order: Order has already been processed so it cannot be emptied
|
558
|
+
cannot_create_payment_without_payment_methods: You cannot create a payment for an order without any payment methods defined.
|
559
|
+
cannot_create_customer_returns: Cannot create customer returns as this order has no shipped units.
|
560
|
+
cannot_create_returns: Cannot create returns as this order has no shipped units.
|
561
|
+
cannot_perform_operation: Cannot perform requested operation
|
562
|
+
cannot_set_shipping_method_without_address: Cannot set shipping method until customer details are provided.
|
563
|
+
capture: Capture
|
564
|
+
capture_events: Capture events
|
565
|
+
card_code: Card Code
|
566
|
+
card_number: Card Number
|
567
|
+
card_type: Brand
|
568
|
+
card_type_is: Card type is
|
569
|
+
cart: Cart
|
570
|
+
cart_subtotal:
|
571
|
+
one: 'Subtotal (1 item)'
|
572
|
+
other: 'Subtotal (%{count} items)'
|
573
|
+
categories: Categories
|
574
|
+
category: Category
|
575
|
+
charged: Charged
|
576
|
+
checkout: Checkout
|
577
|
+
choose_a_customer: Choose a customer
|
578
|
+
choose_a_taxon_to_sort_products_for: "Choose a taxon to sort products for"
|
579
|
+
choose_currency: Choose Currency
|
580
|
+
choose_dashboard_locale: Choose Dashboard Locale
|
581
|
+
choose_location: Choose location
|
582
|
+
city: City
|
583
|
+
clear_cache: Clear Cache
|
584
|
+
clear_cache_ok: Cache was flushed
|
585
|
+
clear_cache_warning: Clearing cache will temporarily reduce the performance of your store.
|
586
|
+
click_and_drag_on_the_products_to_sort_them: Click and drag on the products to sort them.
|
587
|
+
clone: Clone
|
588
|
+
close: Close
|
589
|
+
close_all_adjustments: Close All Adjustments
|
590
|
+
code: Code
|
591
|
+
company: Company
|
592
|
+
complete: complete
|
593
|
+
configuration: Configuration
|
594
|
+
configurations: Configurations
|
595
|
+
confirm: Confirm
|
596
|
+
confirm_delete: Confirm Deletion
|
597
|
+
confirm_password: Password Confirmation
|
598
|
+
continue: Continue
|
599
|
+
continue_shopping: Continue shopping
|
600
|
+
cost_currency: Cost Currency
|
601
|
+
cost_price: Cost Price
|
602
|
+
could_not_connect_to_jirafe: Could not connect to Jirafe to sync data. This will be automatically retried later.
|
603
|
+
could_not_create_customer_return: Could not create customer return
|
604
|
+
could_not_create_stock_movement: There was a problem saving this stock movement. Please try again.
|
605
|
+
count_on_hand: Count On Hand
|
606
|
+
countries: Countries
|
607
|
+
country: Country
|
608
|
+
country_based: Country Based
|
609
|
+
country_name: Name
|
610
|
+
country_names:
|
611
|
+
CA: Canada
|
612
|
+
FRA: France
|
613
|
+
ITA: Italy
|
614
|
+
US: United States of America
|
615
|
+
coupon: Coupon
|
616
|
+
coupon_code: Coupon code
|
617
|
+
coupon_code_already_applied: The coupon code has already been applied to this order
|
618
|
+
coupon_code_applied: The coupon code was successfully applied to your order.
|
619
|
+
coupon_code_better_exists: The previously applied coupon code results in a better deal
|
620
|
+
coupon_code_expired: The coupon code is expired
|
621
|
+
coupon_code_max_usage: Coupon code usage limit exceeded
|
622
|
+
coupon_code_not_eligible: This coupon code is not eligible for this order
|
623
|
+
coupon_code_not_found: The coupon code you entered doesn't exist. Please try again.
|
624
|
+
coupon_code_unknown_error: This coupon code could not be applied to the cart at this time.
|
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
|
+
credit: Credit
|
632
|
+
credit_card: Credit Card
|
633
|
+
credit_cards: Credit Cards
|
634
|
+
credit_owed: Credit Owed
|
635
|
+
credited: Credited
|
636
|
+
credits: Credits
|
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_return: Customer Return
|
645
|
+
customer_returns: Customer Returns
|
646
|
+
customer_search: Customer Search
|
647
|
+
cut: Cut
|
648
|
+
cvv_response: CVV Response
|
649
|
+
dash:
|
650
|
+
jirafe:
|
651
|
+
app_id: App ID
|
652
|
+
app_token: App Token
|
653
|
+
currently_unavailable: Jirafe is currently unavailable. Spree will automatically connect to Jirafe once it is available.
|
654
|
+
explanation: The fields below may already be populated if you chose to register with Jirafe from the admin dashboard.
|
655
|
+
header: Jirafe Analytics Settings
|
656
|
+
site_id: Site ID
|
657
|
+
token: Token
|
658
|
+
jirafe_settings_updated: Jirafe Settings have been updated.
|
659
|
+
date: Date
|
660
|
+
date_completed: Date Completed
|
661
|
+
date_picker:
|
662
|
+
first_day: 0
|
663
|
+
format: ! '%Y/%m/%d'
|
664
|
+
js_format: yy/mm/dd
|
665
|
+
date_range: Date Range
|
666
|
+
default: Default
|
667
|
+
default_country_cannot_be_deleted: Default country cannot be deleted
|
668
|
+
default_refund_amount: Default Refund Amount
|
669
|
+
default_tax: Default Tax
|
670
|
+
default_tax_zone: Default Tax Zone
|
671
|
+
delete: Delete
|
672
|
+
deleted: Deleted
|
673
|
+
delete_from_taxon: Delete From Taxon
|
674
|
+
discontinued_variants_present: Some line items in this order have products that are no longer available.
|
675
|
+
delivery: Delivery
|
676
|
+
depth: Depth
|
677
|
+
details: Details
|
678
|
+
description: Description
|
679
|
+
destination: Destination
|
680
|
+
destroy: Destroy
|
681
|
+
discount_amount: Discount Amount
|
682
|
+
discontinue_on: Discontinue On
|
683
|
+
discontinued: Discontinued
|
684
|
+
dismiss_banner: No. Thanks! I'm not interested, do not display this message again
|
685
|
+
display: Display
|
686
|
+
doesnt_track_inventory: It doesn't track inventory
|
687
|
+
edit: Edit
|
688
|
+
editing_resource: 'Editing %{resource}'
|
689
|
+
editing_rma_reason: Editing RMA Reason
|
690
|
+
editing_user: Editing User
|
691
|
+
eligibility_errors:
|
692
|
+
messages:
|
693
|
+
has_excluded_product: Your cart contains a product that prevents this coupon code from being applied.
|
694
|
+
item_total_less_than: This coupon code can't be applied to orders less than %{amount}.
|
695
|
+
item_total_less_than_or_equal: This coupon code can't be applied to orders less than or equal to %{amount}.
|
696
|
+
item_total_more_than: This coupon code can't be applied to orders higher than %{amount}.
|
697
|
+
item_total_more_than_or_equal: This coupon code can't be applied to orders higher than or equal to %{amount}.
|
698
|
+
limit_once_per_user: This coupon code can only be used once per user.
|
699
|
+
missing_product: This coupon code can't be applied because you don't have all of the necessary products in your cart.
|
700
|
+
missing_taxon: You need to add a product from all applicable categories before applying this coupon code.
|
701
|
+
no_applicable_products: You need to add an applicable product before applying this coupon code.
|
702
|
+
no_matching_taxons: You need to add a product from an applicable category before applying this coupon code.
|
703
|
+
no_user_or_email_specified: You need to login or provide your email before applying this coupon code.
|
704
|
+
no_user_specified: You need to login before applying this coupon code.
|
705
|
+
not_first_order: This coupon code can only be applied to your first order.
|
706
|
+
email: Email
|
707
|
+
empty: Empty
|
708
|
+
empty_cart: Empty Cart
|
709
|
+
enable_mail_delivery: Enable Mail Delivery
|
710
|
+
end: End
|
711
|
+
ending_in: Ending in
|
712
|
+
error: error
|
713
|
+
errors:
|
714
|
+
messages:
|
715
|
+
could_not_create_taxon: Could not create taxon
|
716
|
+
no_shipping_methods_available: No shipping methods available for selected location, please change your address and try again.
|
717
|
+
errors_prohibited_this_record_from_being_saved:
|
718
|
+
one: 1 error prohibited this record from being saved
|
719
|
+
other: ! '%{count} errors prohibited this record from being saved'
|
720
|
+
event: Event
|
721
|
+
events:
|
722
|
+
spree:
|
723
|
+
cart:
|
724
|
+
add: Add to cart
|
725
|
+
checkout:
|
726
|
+
coupon_code_added: Coupon code added
|
727
|
+
content:
|
728
|
+
visited: Visit static content page
|
729
|
+
order:
|
730
|
+
contents_changed: Order contents changed
|
731
|
+
page_view: Static page viewed
|
732
|
+
user:
|
733
|
+
signup: User signup
|
734
|
+
exceptions:
|
735
|
+
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.
|
736
|
+
exchange_for: Exchange for
|
737
|
+
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."
|
738
|
+
excl: excl.
|
739
|
+
expiration: Expiration
|
740
|
+
extension: Extension
|
741
|
+
existing_shipments: Existing shipments
|
742
|
+
failed_payment_attempts: Failed Payment Attempts
|
743
|
+
filename: Filename
|
744
|
+
fill_in_customer_info: Please fill in customer info
|
745
|
+
filter: Filter
|
746
|
+
filter_results: Filter Results
|
747
|
+
finalize: Finalize
|
748
|
+
find_a_taxon: Find a Taxon
|
749
|
+
finalized: Finalized
|
750
|
+
first_item: First Item
|
751
|
+
first_name: First Name
|
752
|
+
first_name_begins_with: First Name Begins With
|
753
|
+
flat_percent: Flat Percent
|
754
|
+
flat_rate_per_order: Flat Rate
|
755
|
+
flexible_rate: Flexible Rate
|
756
|
+
forgot_password: Forgot Password?
|
757
|
+
free_shipping: Free Shipping
|
758
|
+
free_shipping_amount: "-"
|
759
|
+
front_end: Front End
|
760
|
+
gateway: Gateway
|
761
|
+
gateway_error: Gateway Error
|
762
|
+
general: General
|
763
|
+
general_settings: General Settings
|
764
|
+
google_analytics: Google Analytics
|
765
|
+
google_analytics_id: Analytics ID
|
766
|
+
guest_checkout: Guest Checkout
|
767
|
+
guest_user_account: Checkout as a Guest
|
768
|
+
has_no_shipped_units: has no shipped units
|
769
|
+
height: Height
|
770
|
+
home: Home
|
771
|
+
i18n:
|
772
|
+
available_locales: Available Locales
|
773
|
+
fields: Fields
|
774
|
+
language: Language
|
775
|
+
localization_settings: Localization Settings
|
776
|
+
only_incomplete: Only incomplete
|
777
|
+
only_complete: Only complete
|
778
|
+
select_locale: Select locale
|
779
|
+
show_only: Show only
|
780
|
+
supported_locales: Supported Locales
|
781
|
+
this_file_language: English (US)
|
782
|
+
translations: Translations
|
783
|
+
icon: Icon
|
784
|
+
image: Image
|
785
|
+
images: Images
|
786
|
+
implement_eligible_for_return: "Must implement #eligible_for_return? for your EligibilityValidator."
|
787
|
+
implement_requires_manual_intervention: "Must implement #requires_manual_intervention? for your EligibilityValidator."
|
788
|
+
inactive: Inactive
|
789
|
+
incl: incl.
|
790
|
+
included_in_price: Included in Price
|
791
|
+
included_price_validation: cannot be selected unless you have set a Default Tax Zone
|
792
|
+
incomplete: Incomplete
|
793
|
+
info_product_has_multiple_skus: "This product has %{count} variants:"
|
794
|
+
info_number_of_skus_not_shown:
|
795
|
+
one: "and one other"
|
796
|
+
other: "and %{count} others"
|
797
|
+
instructions_to_reset_password: Please enter your email on the form below
|
798
|
+
insufficient_stock: Insufficient stock available, only %{on_hand} remaining
|
799
|
+
insufficient_stock_lines_present: Some line items in this order have insufficient quantity.
|
800
|
+
intercept_email_address: Intercept Email Address
|
801
|
+
intercept_email_instructions: Override email recipient and replace with this address.
|
802
|
+
internal_name: Internal Name
|
803
|
+
invalid_credit_card: Invalid credit card.
|
804
|
+
invalid_exchange_variant: Invalid exchange variant.
|
805
|
+
invalid_payment_provider: Invalid payment provider.
|
806
|
+
invalid_promotion_action: Invalid promotion action.
|
807
|
+
invalid_promotion_rule: Invalid promotion rule.
|
808
|
+
inventory: Inventory
|
809
|
+
inventory_adjustment: Inventory Adjustment
|
810
|
+
inventory_error_flash_for_insufficient_quantity: An item in your cart has become unavailable.
|
811
|
+
inventory_state: Inventory State
|
812
|
+
is_not_available_to_shipment_address: is not available to shipment address
|
813
|
+
iso_name: Iso Name
|
814
|
+
issued_on: Issued On
|
815
|
+
item: Item
|
816
|
+
item_description: Item Description
|
817
|
+
item_total: Item Total
|
818
|
+
item_total_rule:
|
819
|
+
operators:
|
820
|
+
gt: greater than
|
821
|
+
gte: greater than or equal to
|
822
|
+
lt: less than
|
823
|
+
lte: less than or equal to
|
824
|
+
items_cannot_be_shipped: We are unable to calculate shipping rates for the selected items.
|
825
|
+
items_in_rmas: Items in Return Authorizations
|
826
|
+
items_to_be_reimbursed: Items to be reimbursed
|
827
|
+
items_reimbursed: Items reimbursed
|
828
|
+
jirafe: Jirafe
|
829
|
+
landing_page_rule:
|
830
|
+
path: Path
|
831
|
+
last_name: Last Name
|
832
|
+
last_name_begins_with: Last Name Begins With
|
833
|
+
learn_more: Learn More
|
834
|
+
lifetime_stats: Lifetime Stats
|
835
|
+
line_item_adjustments: "Line item adjustments"
|
836
|
+
list: List
|
837
|
+
loading: Loading
|
838
|
+
loading_tree: Loading tree. Please wait…
|
839
|
+
locale_changed: Locale Changed
|
840
|
+
location: Location
|
841
|
+
lock: Lock
|
842
|
+
log_entries: "Log Entries"
|
843
|
+
logs: "Logs"
|
844
|
+
logged_in_as: Logged in as
|
845
|
+
logged_in_succesfully: Logged in successfully
|
846
|
+
logged_out: You have been logged out.
|
847
|
+
login: Login
|
848
|
+
login_as_existing: Login as Existing Customer
|
849
|
+
login_failed: Login authentication failed.
|
850
|
+
login_name: Login
|
851
|
+
logout: Logout
|
852
|
+
look_for_similar_items: Look for similar items
|
853
|
+
make_refund: Make refund
|
854
|
+
make_sure_the_above_reimbursement_amount_is_correct: Make sure the above reimbursement amount is correct
|
855
|
+
manage_promotion_categories: Manage Promotion Categories
|
856
|
+
manual_intervention_required: Manual intervention required
|
857
|
+
manage_variants: Manage Variants
|
858
|
+
master_price: Master Price
|
859
|
+
match_choices:
|
860
|
+
all: All
|
861
|
+
none: None
|
862
|
+
max_items: Max Items
|
863
|
+
member_since: Member Since
|
864
|
+
memo: Memo
|
865
|
+
meta_description: Meta Description
|
866
|
+
meta_keywords: Meta Keywords
|
867
|
+
meta_title: Meta Title
|
868
|
+
metadata: Metadata
|
869
|
+
minimal_amount: Minimal Amount
|
870
|
+
missing_return_authorization: ! 'Missing Return Authorization for %{item_name}.'
|
871
|
+
month: Month
|
872
|
+
more: More
|
873
|
+
move_stock_between_locations: Move Stock Between Locations
|
874
|
+
my_account: My Account
|
875
|
+
my_orders: My Orders
|
876
|
+
name: Name
|
877
|
+
name_on_card: Name on card
|
878
|
+
name_or_sku: Name or SKU (enter at least first 3 characters of product name)
|
879
|
+
new: New
|
880
|
+
new_adjustment: New Adjustment
|
881
|
+
new_customer: New Customer
|
882
|
+
new_customer_return: New Customer Return
|
883
|
+
new_country: New Country
|
884
|
+
new_image: New Image
|
885
|
+
new_option_type: New Option Type
|
886
|
+
new_order: New Order
|
887
|
+
new_order_completed: New Order Completed
|
888
|
+
new_payment: New Payment
|
889
|
+
new_payment_method: New Payment Method
|
890
|
+
new_product: New Product
|
891
|
+
new_promotion: New Promotion
|
892
|
+
new_promotion_category: New Promotion Category
|
893
|
+
new_property: New Property
|
894
|
+
new_prototype: New Prototype
|
895
|
+
new_refund: New Refund
|
896
|
+
new_refund_reason: New Refund Reason
|
897
|
+
new_rma_reason: New RMA Reason
|
898
|
+
new_return_authorization: New Return Authorization
|
899
|
+
new_role: New Role
|
900
|
+
new_shipping_category: New Shipping Category
|
901
|
+
new_shipping_method: New Shipping Method
|
902
|
+
new_shipment_at_location: New shipment at location
|
903
|
+
new_state: New State
|
904
|
+
new_stock_location: New Stock Location
|
905
|
+
new_stock_movement: New Stock Movement
|
906
|
+
new_stock_transfer: New Stock Transfer
|
907
|
+
new_store_credit: New Store Credit
|
908
|
+
new_store_credit_category: New Store Credit Category
|
909
|
+
new_tax_category: New Tax Category
|
910
|
+
new_tax_rate: New Tax Rate
|
911
|
+
new_taxon: New Taxon
|
912
|
+
new_taxonomy: New Taxonomy
|
913
|
+
new_tracker: New Tracker
|
914
|
+
new_user: New User
|
915
|
+
new_variant: New Variant
|
916
|
+
new_zone: New Zone
|
917
|
+
next: Next
|
918
|
+
no_actions_added: No actions added
|
919
|
+
no_available_date_set: No available date set
|
920
|
+
no_payment_found: No payment found
|
921
|
+
no_pending_payments: No pending payments
|
922
|
+
no_products_found: No products found
|
923
|
+
no_results: No results
|
924
|
+
no_rules_added: No rules added
|
925
|
+
no_resource_found: 'No %{resource} found'
|
926
|
+
no_returns_found: No returns found
|
927
|
+
no_shipping_method_selected: No shipping method selected.
|
928
|
+
no_state_changes: No state changes yet.
|
929
|
+
no_tracking_present: No tracking details provided.
|
930
|
+
user_not_found: User not found
|
931
|
+
none: None
|
932
|
+
none_selected: None Selected
|
933
|
+
normal_amount: Normal Amount
|
934
|
+
not: not
|
935
|
+
not_available: N/A
|
936
|
+
not_enough_stock: There is not enough inventory at the source location to complete this transfer.
|
937
|
+
not_found: ! '%{resource} is not found'
|
938
|
+
note: Note
|
939
|
+
notice_messages:
|
940
|
+
product_cloned: Product has been cloned
|
941
|
+
product_deleted: Product has been deleted
|
942
|
+
product_not_cloned: Product could not be cloned
|
943
|
+
product_not_deleted: Product could not be deleted
|
944
|
+
variant_deleted: Variant has been deleted
|
945
|
+
variant_not_deleted: Variant could not be deleted
|
946
|
+
num_orders: "# Orders"
|
947
|
+
number: Number
|
948
|
+
on_hand: On Hand
|
949
|
+
open: Open
|
950
|
+
open_all_adjustments: Open All Adjustments
|
951
|
+
option_type: Option Type
|
952
|
+
option_type_placeholder: Choose an option type
|
953
|
+
option_types: Option Types
|
954
|
+
option_value: Option Value
|
955
|
+
option_values: Option Values
|
956
|
+
optional: Optional
|
957
|
+
options: Options
|
958
|
+
or: or
|
959
|
+
or_over_price: ! '%{price} or over'
|
960
|
+
order: Order
|
961
|
+
order_adjustments: Order adjustments
|
962
|
+
order_already_updated: The order has already been updated.
|
963
|
+
order_approved: Order approved
|
964
|
+
order_canceled: Order canceled
|
965
|
+
order_details: Order Details
|
966
|
+
order_email_resent: Order Email Resent
|
967
|
+
order_information: Order Information
|
968
|
+
order_line_items: Order Line Items
|
969
|
+
order_mailer:
|
970
|
+
subtotal: ! 'Subtotal:'
|
971
|
+
total: ! 'Order Total:'
|
972
|
+
cancel_email:
|
973
|
+
dear_customer: Dear Customer,
|
974
|
+
instructions: Your order has been CANCELED. Please retain this cancellation information for your records.
|
975
|
+
order_summary_canceled: Order %{number} Summary [CANCELED]
|
976
|
+
subject: Cancellation of Order
|
977
|
+
confirm_email:
|
978
|
+
dear_customer: Dear Customer,
|
979
|
+
instructions: Please review and retain the following order information for your records.
|
980
|
+
order_summary: Order %{number} Summary
|
981
|
+
subject: Order Confirmation
|
982
|
+
thanks: Thank you for your business.
|
983
|
+
order_not_found: We couldn't find your order. Please try that action again.
|
984
|
+
order_number: Order %{number}
|
985
|
+
order_processed_successfully: Your order has been processed successfully
|
986
|
+
order_resumed: Order resumed
|
987
|
+
order_state:
|
988
|
+
address: address
|
989
|
+
awaiting_return: awaiting return
|
990
|
+
canceled: canceled
|
991
|
+
cart: cart
|
992
|
+
considered_risky: considered risky
|
993
|
+
complete: complete
|
994
|
+
confirm: confirm
|
995
|
+
delivery: delivery
|
996
|
+
payment: payment
|
997
|
+
resumed: resumed
|
998
|
+
returned: returned
|
999
|
+
order_summary: Order Summary
|
1000
|
+
order_sure_want_to: Are you sure you want to %{event} this order?
|
1001
|
+
order_total: Order Total
|
1002
|
+
order_updated: Order Updated
|
1003
|
+
orders: Orders
|
1004
|
+
out_of_stock: Out of Stock
|
1005
|
+
overview: Overview
|
1006
|
+
package_from: package from
|
1007
|
+
pagination:
|
1008
|
+
next_page: next page »
|
1009
|
+
previous_page: ! '« previous page'
|
1010
|
+
truncate: ! '…'
|
1011
|
+
password: Password
|
1012
|
+
paste: Paste
|
1013
|
+
path: Path
|
1014
|
+
pay: pay
|
1015
|
+
payment: Payment
|
1016
|
+
payment_could_not_be_created: Payment could not be created.
|
1017
|
+
payment_information: Payment Information
|
1018
|
+
payment_method: Payment Method
|
1019
|
+
payment_methods: Payment Methods
|
1020
|
+
payment_method_not_supported: That payment method is unsupported. Please choose another one.
|
1021
|
+
payment_processing_failed: Payment could not be processed, please check the details you entered
|
1022
|
+
payment_processor_choose_banner_text: If you need help choosing a payment processor, please visit
|
1023
|
+
payment_processor_choose_link: our payments page
|
1024
|
+
payment_state: Payment State
|
1025
|
+
payment_states:
|
1026
|
+
balance_due: balance due
|
1027
|
+
checkout: checkout
|
1028
|
+
completed: completed
|
1029
|
+
credit_owed: credit owed
|
1030
|
+
failed: failed
|
1031
|
+
paid: paid
|
1032
|
+
pending: pending
|
1033
|
+
processing: processing
|
1034
|
+
void: void
|
1035
|
+
payment_updated: Payment Updated
|
1036
|
+
payments: Payments
|
1037
|
+
percent: Percent
|
1038
|
+
percent_per_item: Percent Per Item
|
1039
|
+
permalink: Permalink
|
1040
|
+
pending: Pending
|
1041
|
+
pending_sale: Pending Sale
|
1042
|
+
phone: Phone
|
1043
|
+
place_order: Place Order
|
1044
|
+
please_define_payment_methods: Please define some payment methods first.
|
1045
|
+
please_enter_reasonable_quantity: Please enter a reasonable quantity.
|
1046
|
+
populate_get_error: Something went wrong. Please try adding the item again.
|
1047
|
+
powered_by: Powered by
|
1048
|
+
pre_tax_refund_amount: Pre-Tax Refund Amount
|
1049
|
+
pre_tax_amount: Pre-Tax Amount
|
1050
|
+
pre_tax_total: Pre-Tax Total
|
1051
|
+
preferred_reimbursement_type: Preferred Reimbursement Type
|
1052
|
+
presentation: Presentation
|
1053
|
+
previous: Previous
|
1054
|
+
previous_state_missing: "n/a"
|
1055
|
+
price: Price
|
1056
|
+
price_range: Price Range
|
1057
|
+
price_sack: Price Sack
|
1058
|
+
process: Process
|
1059
|
+
product: Product
|
1060
|
+
product_details: Product Details
|
1061
|
+
product_has_no_description: This product has no description
|
1062
|
+
product_not_available_in_this_currency: This product is not available in the selected currency.
|
1063
|
+
product_properties: Product Properties
|
1064
|
+
product_rule:
|
1065
|
+
choose_products: Choose products
|
1066
|
+
label: Order must contain x amount of these products
|
1067
|
+
match_all: all
|
1068
|
+
match_any: at least one
|
1069
|
+
match_none: none
|
1070
|
+
product_source:
|
1071
|
+
group: From product group
|
1072
|
+
manual: Manually choose
|
1073
|
+
products: Products
|
1074
|
+
promotion: Promotion
|
1075
|
+
promotionable: Promotable
|
1076
|
+
promotion_action: Promotion Action
|
1077
|
+
promotion_action_types:
|
1078
|
+
create_adjustment:
|
1079
|
+
description: Creates a promotion credit adjustment on the order
|
1080
|
+
name: Create whole-order adjustment
|
1081
|
+
create_item_adjustments:
|
1082
|
+
description: Creates a promotion credit adjustment on a line item
|
1083
|
+
name: Create per-line-item adjustment
|
1084
|
+
create_line_items:
|
1085
|
+
description: Populates the cart with the specified quantity of variant
|
1086
|
+
name: Create line items
|
1087
|
+
free_shipping:
|
1088
|
+
description: Makes all shipments for the order free
|
1089
|
+
name: Free shipping
|
1090
|
+
promotion_actions: Actions
|
1091
|
+
promotion_category: Promotion Category
|
1092
|
+
promotion_form:
|
1093
|
+
match_policies:
|
1094
|
+
all: Match all of these rules
|
1095
|
+
any: Match any of these rules
|
1096
|
+
promotion_label: 'Promotion (%{name})'
|
1097
|
+
promotion_rule: Promotion Rule
|
1098
|
+
promotion_rule_types:
|
1099
|
+
first_order:
|
1100
|
+
description: Must be the customer's first order
|
1101
|
+
name: First order
|
1102
|
+
item_total:
|
1103
|
+
description: Order total meets these criteria
|
1104
|
+
name: Item total
|
1105
|
+
landing_page:
|
1106
|
+
description: Customer must have visited the specified page
|
1107
|
+
name: Landing Page
|
1108
|
+
one_use_per_user:
|
1109
|
+
description: Only One Use Per User
|
1110
|
+
name: One Use Per User
|
1111
|
+
option_value:
|
1112
|
+
description: Order includes specified product(s) with matching option value(s)
|
1113
|
+
name: Option Value(s)
|
1114
|
+
product:
|
1115
|
+
description: Order includes specified product(s)
|
1116
|
+
name: Product(s)
|
1117
|
+
user:
|
1118
|
+
description: Available only to the specified users
|
1119
|
+
name: User
|
1120
|
+
user_logged_in:
|
1121
|
+
description: Available only to logged in users
|
1122
|
+
name: User Logged In
|
1123
|
+
taxon:
|
1124
|
+
description: Order includes products with specified taxon(s)
|
1125
|
+
name: Taxon(s)
|
1126
|
+
promotions: Promotions
|
1127
|
+
promotion_uses: Promotion uses
|
1128
|
+
propagate_all_variants: Propagate all variants
|
1129
|
+
properties: Properties
|
1130
|
+
property: Property
|
1131
|
+
prototype: Prototype
|
1132
|
+
prototypes: Prototypes
|
1133
|
+
provider: Provider
|
1134
|
+
provider_settings_warning: If you are changing the provider type, you must save first before you can edit the provider settings
|
1135
|
+
qty: Qty
|
1136
|
+
quantity: Quantity
|
1137
|
+
quantity_returned: Quantity Returned
|
1138
|
+
quantity_shipped: Quantity Shipped
|
1139
|
+
quick_search: Quick search..
|
1140
|
+
rate: Rate
|
1141
|
+
reason: Reason
|
1142
|
+
receive: receive
|
1143
|
+
receive_stock: Receive Stock
|
1144
|
+
received: Received
|
1145
|
+
reception_status: Reception Status
|
1146
|
+
reference: Reference
|
1147
|
+
reference_contains: Reference Contains
|
1148
|
+
refund: Refund
|
1149
|
+
refund_amount_must_be_greater_than_zero: Refund amount must be greater than zero
|
1150
|
+
refund_reasons: Refund Reasons
|
1151
|
+
refunded_amount: Refunded Amount
|
1152
|
+
refunds: Refunds
|
1153
|
+
refund_amount_must_be_greater_than_zero: Refund amount must be greater than zero
|
1154
|
+
register: Register
|
1155
|
+
registration: Registration
|
1156
|
+
reimburse: Reimburse
|
1157
|
+
reimbursed: Reimbursed
|
1158
|
+
reimbursement: Reimbursement
|
1159
|
+
reimbursement_perform_failed: "Reimbursement could not be performed. Error: %{error}"
|
1160
|
+
reimbursement_status: Reimbursement status
|
1161
|
+
reimbursement_type: Reimbursement type
|
1162
|
+
reimbursement_type_override: Reimbursement Type Override
|
1163
|
+
reimbursement_types: Reimbursement Types
|
1164
|
+
reimbursements: Reimbursements
|
1165
|
+
reject: Reject
|
1166
|
+
rejected: Rejected
|
1167
|
+
remember_me: Remember me
|
1168
|
+
remove: Remove
|
1169
|
+
rename: Rename
|
1170
|
+
report: Report
|
1171
|
+
reports: Reports
|
1172
|
+
resellable: Resellable
|
1173
|
+
resend: Resend
|
1174
|
+
reset_password: Reset my password
|
1175
|
+
response_code: Response Code
|
1176
|
+
resume: resume
|
1177
|
+
resumed: Resumed
|
1178
|
+
return: return
|
1179
|
+
returns: Returns
|
1180
|
+
return_authorization: Return Authorization
|
1181
|
+
return_authorization_reasons: Return Authorization Reasons
|
1182
|
+
return_authorization_states:
|
1183
|
+
authorized: Authorized
|
1184
|
+
canceled: Canceled
|
1185
|
+
return_authorization_updated: Return authorization updated
|
1186
|
+
return_authorizations: Return Authorizations
|
1187
|
+
return_item_inventory_unit_ineligible: Return item's inventory unit must be shipped
|
1188
|
+
return_item_inventory_unit_reimbursed: Return item's inventory unit is already reimbursed
|
1189
|
+
return_item_order_not_completed: Return item's order must be completed
|
1190
|
+
return_item_rma_ineligible: Return item requires an RMA
|
1191
|
+
return_item_time_period_ineligible: Return item is outside the eligible time period
|
1192
|
+
return_items: Return Items
|
1193
|
+
return_items_cannot_be_associated_with_multiple_orders: Return items cannot be associated with multiple orders.
|
1194
|
+
reimbursement_mailer:
|
1195
|
+
reimbursement_email:
|
1196
|
+
days_to_send: ! 'You have %{days} days to send back any items awaiting exchange.'
|
1197
|
+
dear_customer: Dear Customer,
|
1198
|
+
exchange_summary: Exchange Summary
|
1199
|
+
for: for
|
1200
|
+
instructions: Your reimbursement has been processed.
|
1201
|
+
refund_summary: Refund Summary
|
1202
|
+
subject: Reimbursement Notification
|
1203
|
+
total_refunded: ! 'Total refunded: %{total}'
|
1204
|
+
return_number: Return Number
|
1205
|
+
return_quantity: Return Quantity
|
1206
|
+
returned: Returned
|
1207
|
+
review: Review
|
1208
|
+
risk: Risk
|
1209
|
+
risk_analysis: Risk Analysis
|
1210
|
+
risky: Risky
|
1211
|
+
rma_credit: RMA Credit
|
1212
|
+
rma_number: RMA Number
|
1213
|
+
rma_value: RMA Value
|
1214
|
+
role_id: Role ID
|
1215
|
+
roles: Roles
|
1216
|
+
rules: Rules
|
1217
|
+
safe: Safe
|
1218
|
+
sales_total: Sales Total
|
1219
|
+
sales_total_description: Sales Total For All Orders
|
1220
|
+
sales_totals: Sales Totals
|
1221
|
+
save_and_continue: Save and Continue
|
1222
|
+
save_my_address: Save my address
|
1223
|
+
say_no: 'No'
|
1224
|
+
say_yes: 'Yes'
|
1225
|
+
scope: Scope
|
1226
|
+
search: Search
|
1227
|
+
search_results: Search results for '%{keywords}'
|
1228
|
+
searching: Searching
|
1229
|
+
secure_connection_type: Secure Connection Type
|
1230
|
+
security_settings: Security Settings
|
1231
|
+
select: Select
|
1232
|
+
select_from_prototype: Select From Prototype
|
1233
|
+
select_a_return_authorization_reason: Select a reason for the return authorization
|
1234
|
+
select_a_stock_location: Select a stock location
|
1235
|
+
select_a_store_credit_reason: Select a reason for the store credit
|
1236
|
+
select_stock: Select stock
|
1237
|
+
selected_quantity_not_available: ! 'selected of %{item} is not available.'
|
1238
|
+
send_copy_of_all_mails_to: Send Copy of All Mails To
|
1239
|
+
send_mails_as: Send Mails As
|
1240
|
+
server: Server
|
1241
|
+
server_error: The server returned an error
|
1242
|
+
settings: Settings
|
1243
|
+
ship: Ship
|
1244
|
+
ship_address: Ship Address
|
1245
|
+
ship_total: Ship Total
|
1246
|
+
shipment: Shipment
|
1247
|
+
shipment_adjustments: "Shipment adjustments"
|
1248
|
+
shipment_details: "From %{stock_location} via %{shipping_method}"
|
1249
|
+
shipment_mailer:
|
1250
|
+
shipped_email:
|
1251
|
+
dear_customer: Dear Customer,
|
1252
|
+
instructions: Your order %{number} has been shipped
|
1253
|
+
shipment_summary: Shipment Summary for order
|
1254
|
+
shipping_method: "Shipping method: %{shipping_method}"
|
1255
|
+
subject: Shipment Notification
|
1256
|
+
thanks: Thank you for your business.
|
1257
|
+
track_information: ! 'Tracking Information: %{tracking}'
|
1258
|
+
track_link: "Tracking Link: %{url}"
|
1259
|
+
shipment_state: Shipment State
|
1260
|
+
shipment_states:
|
1261
|
+
backorder: backorder
|
1262
|
+
canceled: canceled
|
1263
|
+
partial: partial
|
1264
|
+
pending: pending
|
1265
|
+
ready: ready
|
1266
|
+
shipped: shipped
|
1267
|
+
shipment_transfer_success: 'Variants successfully transferred'
|
1268
|
+
shipment_transfer_error: 'There was an error transferring variants'
|
1269
|
+
shipments: Shipments
|
1270
|
+
shipped: Shipped
|
1271
|
+
shipping: Shipping
|
1272
|
+
shipping_address: Shipping Address
|
1273
|
+
shipping_categories: Shipping Categories
|
1274
|
+
shipping_category: Shipping Category
|
1275
|
+
shipping_flat_rate_per_item: Flat rate per package item
|
1276
|
+
shipping_flat_rate_per_order: Flat rate
|
1277
|
+
shipping_flexible_rate: Flexible Rate per package item
|
1278
|
+
shipping_instructions: Shipping Instructions
|
1279
|
+
shipping_method: Shipping Method
|
1280
|
+
shipping_methods: Shipping Methods
|
1281
|
+
shipping_price_sack: Price sack
|
1282
|
+
shipping_rates:
|
1283
|
+
display_price:
|
1284
|
+
including_tax: "%{price} (incl. %{tax_amount} %{tax_rate_name})"
|
1285
|
+
excluding_tax: "%{price} (+ %{tax_amount} %{tax_rate_name})"
|
1286
|
+
shipping_total: Shipping total
|
1287
|
+
shop_by_taxonomy: Shop by %{taxonomy}
|
1288
|
+
shopping_cart: Shopping Cart
|
1289
|
+
show: Show
|
1290
|
+
show_active: Show Active
|
1291
|
+
show_deleted: Show Deleted
|
1292
|
+
show_discontinued: Show Discontinued
|
1293
|
+
show_only_complete_orders: Only show complete orders
|
1294
|
+
show_only_considered_risky: Only show risky orders
|
1295
|
+
show_rate_in_label: Show rate in label
|
1296
|
+
sku: SKU
|
1297
|
+
skus: SKUs
|
1298
|
+
slug: Slug
|
1299
|
+
source: Source
|
1300
|
+
special_instructions: Special Instructions
|
1301
|
+
split: Split
|
1302
|
+
spree_gateway_error_flash_for_checkout: There was a problem with your payment information. Please check your information and try again.
|
1303
|
+
ssl:
|
1304
|
+
change_protocol: "Please switch to using HTTP (rather than HTTPS) and retry this request."
|
1305
|
+
start: Start
|
1306
|
+
state: State
|
1307
|
+
state_based: State Based
|
1308
|
+
states: States
|
1309
|
+
state_machine_states:
|
1310
|
+
accepted: Accepted
|
1311
|
+
address: Address
|
1312
|
+
authorized: Authorized
|
1313
|
+
awaiting: Awaiting
|
1314
|
+
awaiting_return: Awaiting return
|
1315
|
+
backordered: Back ordered
|
1316
|
+
cart: Cart
|
1317
|
+
canceled: Canceled
|
1318
|
+
checkout: Checkout
|
1319
|
+
confirm: Confirm
|
1320
|
+
complete: Complete
|
1321
|
+
completed: Completed
|
1322
|
+
closed: Closed
|
1323
|
+
delivery: Delivery
|
1324
|
+
errored: Errored
|
1325
|
+
failed: Failed
|
1326
|
+
given_to_customer: Given to customer
|
1327
|
+
invalid: Invalid
|
1328
|
+
manual_intervention_required: Manual intervention required
|
1329
|
+
open: Open
|
1330
|
+
order: Order
|
1331
|
+
on_hand: On hand
|
1332
|
+
payment: Payment
|
1333
|
+
pending: Pending
|
1334
|
+
processing: Processing
|
1335
|
+
ready: Ready
|
1336
|
+
reimbursed: Reimbursed
|
1337
|
+
resumed: Resumed
|
1338
|
+
returned: Returned
|
1339
|
+
shipped: Shipped
|
1340
|
+
void: Void
|
1341
|
+
states_required: States Required
|
1342
|
+
status: Status
|
1343
|
+
stock: Stock
|
1344
|
+
stock_location: Stock Location
|
1345
|
+
stock_location_info: Stock location info
|
1346
|
+
stock_locations: Stock Locations
|
1347
|
+
stock_locations_need_a_default_country: You must create a default country before creating a stock location.
|
1348
|
+
stock_management: Stock Management
|
1349
|
+
stock_management_requires_a_stock_location: Please create a stock location in order to manage stock.
|
1350
|
+
stock_movements: Stock Movements
|
1351
|
+
stock_movements_for_stock_location: Stock Movements for %{stock_location_name}
|
1352
|
+
stock_successfully_transferred: Stock was successfully transferred between locations.
|
1353
|
+
stock_transfer: Stock Transfer
|
1354
|
+
stock_transfers: Stock Transfers
|
1355
|
+
stop: Stop
|
1356
|
+
store: Store
|
1357
|
+
store_credit_name: Store Credit
|
1358
|
+
store_credit:
|
1359
|
+
credit: "Credit"
|
1360
|
+
authorized: "Authorized"
|
1361
|
+
captured: "Used"
|
1362
|
+
allocated: "Added"
|
1363
|
+
apply: Apply Store Credit
|
1364
|
+
applicable_amount: "%{amount} in store credit will be applied to this order."
|
1365
|
+
available_amount: "You have %{amount} in Store Credit available!"
|
1366
|
+
remaining_amount: "You have %{amount} remaining in your account's Store Credit."
|
1367
|
+
additional_payment_needed: Select another payment method for the remaining %{amount}.
|
1368
|
+
errors:
|
1369
|
+
cannot_change_used_store_credit: You cannot change a store credit that has already been used
|
1370
|
+
unable_to_create: Unable to create store credit
|
1371
|
+
unable_to_delete: Unable to delete store credit
|
1372
|
+
unable_to_fund: Unable to pay for order using store credits
|
1373
|
+
unable_to_update: Unable to update store credit
|
1374
|
+
store_credit_categories: Store Credit Categories
|
1375
|
+
store_credit_payment_method:
|
1376
|
+
unable_to_void: "Unable to void code: %{auth_code}"
|
1377
|
+
unable_to_credit: "Unable to credit code: %{auth_code}"
|
1378
|
+
successful_action: "Successful store credit %{action}"
|
1379
|
+
unable_to_find: "Could not find store credit"
|
1380
|
+
insufficient_funds: "Store credit amount remaining is not sufficient"
|
1381
|
+
currency_mismatch: "Store credit currency does not match order currency"
|
1382
|
+
insufficient_authorized_amount: "Unable to capture more than authorized amount"
|
1383
|
+
unable_to_find_for_action: "Could not find store credit for auth code: %{auth_code} for action: %{action}"
|
1384
|
+
user_has_no_store_credits: "User does not have any available store credit"
|
1385
|
+
select_one_store_credit: "Select store credit to go towards remaining balance"
|
1386
|
+
street_address: Street Address
|
1387
|
+
street_address_2: Street Address (cont'd)
|
1388
|
+
subtotal: Subtotal
|
1389
|
+
subtract: Subtract
|
1390
|
+
success: Success
|
1391
|
+
successfully_created: ! '%{resource} has been successfully created!'
|
1392
|
+
successfully_refunded: ! '%{resource} has been successfully refunded!'
|
1393
|
+
successfully_removed: ! '%{resource} has been successfully removed!'
|
1394
|
+
successfully_signed_up_for_analytics: Successfully signed up for Spree Analytics
|
1395
|
+
successfully_updated: ! '%{resource} has been successfully updated!'
|
1396
|
+
summary: Summary
|
1397
|
+
tax: Tax
|
1398
|
+
tax_included: "Tax (incl.)"
|
1399
|
+
tax_categories: Tax Categories
|
1400
|
+
tax_category: Tax Category
|
1401
|
+
tax_code: Tax Code
|
1402
|
+
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)
|
1403
|
+
tax_rates: Tax Rates
|
1404
|
+
taxon: Taxon
|
1405
|
+
taxon_edit: Edit Taxon
|
1406
|
+
taxon_placeholder: Add a Taxon
|
1407
|
+
tags: Tags
|
1408
|
+
tags_placeholder: Add Tags
|
1409
|
+
taxon_rule:
|
1410
|
+
choose_taxons: Choose taxons
|
1411
|
+
label: Order must contain x amount of these taxons
|
1412
|
+
match_all: all
|
1413
|
+
match_any: at least one
|
1414
|
+
taxonomies: Taxonomies
|
1415
|
+
taxonomy: Taxonomy
|
1416
|
+
taxonomy_edit: Edit taxonomy
|
1417
|
+
taxonomy_tree_error: The requested change has not been accepted and the tree has been returned to its previous state, please try again.
|
1418
|
+
taxonomy_tree_instruction: ! '* Right click a child in the tree to access the menu for adding, deleting or sorting a child.'
|
1419
|
+
taxons: Taxons
|
1420
|
+
test: Test
|
1421
|
+
test_mailer:
|
1422
|
+
test_email:
|
1423
|
+
greeting: Congratulations!
|
1424
|
+
message: If you have received this email, then your email settings are correct.
|
1425
|
+
subject: Test Mail
|
1426
|
+
test_mode: Test Mode
|
1427
|
+
thank_you_for_your_order: Thank you for your business. Please print out a copy of this confirmation page for your records.
|
1428
|
+
there_are_no_items_for_this_order: There are no items for this order. Please add an item to the order to continue.
|
1429
|
+
there_were_problems_with_the_following_fields: There were problems with the following fields
|
1430
|
+
this_order_has_already_received_a_refund: This order has already received a refund
|
1431
|
+
thumbnail: Thumbnail
|
1432
|
+
tiers: Tiers
|
1433
|
+
tiered_flat_rate: Tiered Flat Rate
|
1434
|
+
tiered_percent: Tiered Percent
|
1435
|
+
time: Time
|
1436
|
+
to_add_variants_you_must_first_define: To add variants, you must first define
|
1437
|
+
total: Total
|
1438
|
+
total_per_item: Total per item
|
1439
|
+
total_pre_tax_refund: Total Pre-Tax Refund
|
1440
|
+
total_price: Total price
|
1441
|
+
total_sales: Total Sales
|
1442
|
+
track_inventory: Track Inventory
|
1443
|
+
tracking: Tracking
|
1444
|
+
tracking_number: Tracking Number
|
1445
|
+
tracking_url: Tracking URL
|
1446
|
+
tracking_url_placeholder: e.g. http://quickship.com/package?num=:tracking
|
1447
|
+
transaction_id: Transaction ID
|
1448
|
+
transfer_from_location: Transfer From
|
1449
|
+
transfer_stock: Transfer Stock
|
1450
|
+
transfer_to_location: Transfer To
|
1451
|
+
tree: Tree
|
1452
|
+
type: Type
|
1453
|
+
type_to_search: Type to search
|
1454
|
+
unable_to_connect_to_gateway: Unable to connect to gateway.
|
1455
|
+
unable_to_create_reimbursements: Unable to create reimbursements because there are items pending manual intervention.
|
1456
|
+
under_price: Under %{price}
|
1457
|
+
unlock: Unlock
|
1458
|
+
unrecognized_card_type: Unrecognized card type
|
1459
|
+
unshippable_items: Unshippable Items
|
1460
|
+
update: Update
|
1461
|
+
updating: Updating
|
1462
|
+
usage_limit: Usage Limit
|
1463
|
+
use_app_default: Use App Default
|
1464
|
+
use_billing_address: Use Billing Address
|
1465
|
+
use_existing_cc: Use an existing card on file
|
1466
|
+
use_new_cc: Use a new card
|
1467
|
+
use_new_cc_or_payment_method: Use a new card / payment method
|
1468
|
+
use_s3: Use Amazon S3 For Images
|
1469
|
+
used: Used
|
1470
|
+
user: User
|
1471
|
+
user_rule:
|
1472
|
+
choose_users: Choose users
|
1473
|
+
users: Users
|
1474
|
+
validation:
|
1475
|
+
unpaid_amount_not_zero: "Amount was not fully reimbursed. Still due: %{amount}"
|
1476
|
+
cannot_be_less_than_shipped_units: cannot be less than the number of shipped units.
|
1477
|
+
cannot_destroy_line_item_as_inventory_units_have_shipped: Cannot destroy line item as some inventory units have shipped.
|
1478
|
+
exceeds_available_stock: exceeds available stock. Please ensure line items have a valid quantity.
|
1479
|
+
is_too_large: is too large -- stock on hand cannot cover requested quantity!
|
1480
|
+
must_be_int: must be an integer
|
1481
|
+
must_be_non_negative: must be a non-negative value
|
1482
|
+
value: Value
|
1483
|
+
variant: Variant
|
1484
|
+
variant_placeholder: Choose a variant
|
1485
|
+
variants: Variants
|
1486
|
+
version: Version
|
1487
|
+
void: Void
|
1488
|
+
weight: Weight
|
1489
|
+
what_is_a_cvv: What is a (CVV) Credit Card Code?
|
1490
|
+
what_is_this: What's This?
|
1491
|
+
width: Width
|
1492
|
+
year: Year
|
1493
|
+
you_have_no_orders_yet: You have no orders yet
|
1494
|
+
your_cart_is_empty: Your cart is empty
|
1495
|
+
your_order_is_empty_add_product: Your order is empty, please search for and add a product above
|
1496
|
+
zip: Zip
|
1497
|
+
zipcode: Zip Code
|
1498
|
+
zone: Zone
|
1499
|
+
zones: Zones
|