spree_core 1.3.5 → 2.0.0.rc1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +14 -6
- data/app/assets/javascripts/spree.js.coffee +3 -0
- data/app/controllers/spree/base_controller.rb +2 -0
- data/app/helpers/spree/admin/adjustments_helper.rb +26 -0
- data/app/helpers/spree/admin/images_helper.rb +2 -2
- data/app/helpers/spree/base_helper.rb +36 -31
- data/app/helpers/spree/checkout_helper.rb +3 -3
- data/app/helpers/spree/products_helper.rb +7 -7
- data/app/helpers/spree/promotion_rules_helper.rb +13 -0
- data/app/helpers/spree/store_helper.rb +11 -0
- data/app/mailers/spree/base_mailer.rb +1 -5
- data/app/mailers/spree/order_mailer.rb +8 -13
- data/app/mailers/spree/shipment_mailer.rb +4 -4
- data/app/mailers/spree/test_mailer.rb +3 -4
- data/app/models/spree/ability.rb +6 -6
- data/app/models/spree/activator.rb +4 -4
- data/app/models/spree/address.rb +17 -13
- data/app/models/spree/adjustment.rb +64 -70
- data/app/models/spree/alert.rb +12 -9
- data/app/models/spree/app_configuration.rb +71 -58
- data/app/models/spree/asset.rb +2 -2
- data/app/models/spree/billing_integration.rb +4 -6
- data/app/models/spree/calculator/default_tax.rb +1 -1
- data/app/models/spree/calculator/flat_percent_item_total.rb +3 -3
- data/app/models/spree/calculator/flat_rate.rb +1 -1
- data/app/models/spree/calculator/flexi_rate.rb +1 -1
- data/app/models/spree/calculator/free_shipping.rb +19 -0
- data/app/models/spree/calculator/per_item.rb +1 -1
- data/app/models/spree/calculator/percent_per_item.rb +45 -0
- data/app/models/spree/calculator/price_sack.rb +1 -1
- data/app/models/spree/calculator/shipping/flat_percent_item_total.rb +21 -0
- data/app/models/spree/calculator/shipping/flat_rate.rb +20 -0
- data/app/models/spree/calculator/shipping/flexi_rate.rb +38 -0
- data/app/models/spree/calculator/shipping/per_item.rb +20 -0
- data/app/models/spree/calculator/shipping/price_sack.rb +32 -0
- data/app/models/spree/calculator.rb +3 -3
- data/app/models/spree/classification.rb +2 -5
- data/app/models/spree/country.rb +3 -6
- data/app/models/spree/credit_card.rb +11 -32
- data/app/models/spree/gateway.rb +3 -3
- data/app/models/spree/image.rb +7 -6
- data/app/models/spree/inventory_unit.rb +30 -97
- data/app/models/spree/legacy_user.rb +3 -3
- data/app/models/spree/line_item.rb +27 -57
- data/app/models/spree/log_entry.rb +1 -1
- data/app/models/spree/option_type.rb +6 -6
- data/app/models/spree/option_value.rb +4 -2
- data/app/models/spree/order/checkout.rb +3 -6
- data/app/models/spree/order.rb +152 -153
- data/app/models/spree/order_contents.rb +69 -0
- data/app/models/spree/order_inventory.rb +109 -0
- data/app/models/spree/order_populator.rb +8 -18
- data/app/models/spree/order_updater.rb +24 -13
- data/app/models/spree/payment/processing.rb +7 -13
- data/app/models/spree/payment.rb +19 -25
- data/app/models/spree/payment_method.rb +4 -4
- data/app/models/spree/preference.rb +3 -4
- data/app/models/spree/price.rb +3 -3
- data/app/models/spree/product/scopes.rb +9 -11
- data/app/models/spree/product.rb +57 -119
- data/app/models/spree/product_option_type.rb +3 -3
- data/app/models/spree/product_property.rb +6 -6
- data/app/models/spree/promotion/actions/create_adjustment.rb +71 -0
- data/app/models/spree/promotion/actions/create_line_items.rb +23 -0
- data/app/models/spree/promotion/rules/first_order.rb +29 -0
- data/app/models/spree/promotion/rules/item_total.rb +21 -0
- data/app/models/spree/promotion/rules/product.rb +46 -0
- data/app/models/spree/promotion/rules/user.rb +24 -0
- data/app/models/spree/promotion/rules/user_logged_in.rb +13 -0
- data/app/models/spree/promotion.rb +109 -0
- data/app/models/spree/promotion_action.rb +19 -0
- data/app/models/spree/promotion_action_line_item.rb +8 -0
- data/app/models/spree/promotion_rule.rb +25 -0
- data/app/models/spree/property.rb +9 -8
- data/app/models/spree/prototype.rb +3 -3
- data/app/models/spree/return_authorization.rb +26 -15
- data/app/models/spree/role.rb +1 -1
- data/app/models/spree/shipment.rb +166 -51
- data/app/models/spree/shipping_calculator.rb +25 -0
- data/app/models/spree/shipping_category.rb +3 -2
- data/app/models/spree/shipping_method.rb +33 -41
- data/app/models/spree/shipping_method_category.rb +6 -0
- data/app/models/spree/shipping_rate.rb +10 -7
- data/app/models/spree/state.rb +2 -2
- data/app/models/spree/state_change.rb +1 -1
- data/app/models/spree/stock/adjuster.rb +28 -0
- data/app/models/spree/stock/availability_validator.rb +15 -0
- data/app/models/spree/stock/coordinator.rb +49 -0
- data/app/models/spree/stock/differentiator.rb +44 -0
- data/app/models/spree/stock/estimator.rb +39 -0
- data/app/models/spree/stock/order_counter.rb +55 -0
- data/app/models/spree/stock/package.rb +116 -0
- data/app/models/spree/stock/packer.rb +37 -0
- data/app/models/spree/stock/prioritizer.rb +47 -0
- data/app/models/spree/stock/quantifier.rb +28 -0
- data/app/models/spree/stock/remaining_packer.rb +22 -0
- data/app/models/spree/stock/splitter/backordered.rb +23 -0
- data/app/models/spree/stock/splitter/base.rb +28 -0
- data/app/models/spree/stock/splitter/shipping_category.rb +32 -0
- data/app/models/spree/stock/splitter/weight.rb +32 -0
- data/app/models/spree/stock_item.rb +52 -0
- data/app/models/spree/stock_location.rb +65 -0
- data/app/models/spree/stock_movement.rb +26 -0
- data/app/models/spree/stock_transfer.rb +43 -0
- data/app/models/spree/tax_category.rb +4 -4
- data/app/models/spree/tax_rate.rb +17 -16
- data/app/models/spree/taxon.rb +13 -14
- data/app/models/spree/taxonomy.rb +5 -5
- data/app/models/spree/tokenized_permission.rb +1 -1
- data/app/models/spree/tracker.rb +1 -1
- data/app/models/spree/variant.rb +39 -92
- data/app/models/spree/zone.rb +24 -33
- data/app/models/spree/zone_member.rb +2 -2
- data/app/views/spree/order_mailer/cancel_email.text.erb +5 -5
- data/app/views/spree/order_mailer/confirm_email.text.erb +6 -6
- data/app/views/spree/payments/_payment.html.erb +1 -1
- data/app/views/spree/shared/_address.html.erb +38 -0
- data/app/views/spree/shared/_error_messages.html.erb +2 -2
- data/app/views/spree/shared/_routes.html.erb +10 -0
- data/app/views/spree/shipment_mailer/shipped_email.text.erb +6 -5
- data/config/locales/en.yml +907 -1015
- data/db/migrate/20120831092359_spree_promo_one_two.rb +45 -0
- data/db/migrate/20121213162028_add_state_to_spree_adjustments.rb +6 -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 +26 -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 +17 -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 +19 -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/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/20130329134939_remove_stock_item_and_variant_lock.rb +14 -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/lib/generators/spree/dummy/dummy_generator.rb +23 -2
- data/lib/generators/spree/dummy/templates/rails/database.yml +3 -10
- data/lib/generators/spree/dummy/templates/rails/test.rb +39 -0
- data/lib/generators/spree/install/templates/app/assets/javascripts/admin/all.js +1 -2
- data/lib/generators/spree/install/templates/app/assets/javascripts/store/all.js +1 -2
- data/lib/generators/spree/install/templates/app/assets/stylesheets/admin/all.css +1 -2
- data/lib/generators/spree/install/templates/app/assets/stylesheets/store/all.css +1 -2
- data/lib/spree/core/calculated_adjustments.rb +44 -36
- data/lib/spree/core/controller_helpers/auth.rb +18 -9
- data/lib/spree/core/controller_helpers/common.rb +60 -59
- data/lib/spree/core/controller_helpers/ssl.rb +69 -0
- data/lib/spree/core/controller_helpers.rb +3 -2
- data/lib/spree/core/delegate_belongs_to.rb +1 -1
- data/lib/spree/core/engine.rb +50 -45
- data/lib/spree/core/environment.rb +2 -1
- data/lib/spree/core/mail_interceptor.rb +6 -7
- data/lib/spree/core/mail_settings.rb +18 -24
- data/lib/spree/core/permalinks.rb +22 -14
- data/lib/spree/core/product_duplicator.rb +61 -0
- data/lib/spree/core/product_filters.rb +199 -0
- data/lib/spree/core/s3_support.rb +1 -1
- data/lib/spree/core/search/base.rb +0 -1
- data/lib/spree/core/user_banners.rb +1 -1
- data/lib/spree/core/version.rb +1 -1
- data/lib/spree/core.rb +9 -93
- data/lib/spree/i18n.rb +15 -0
- data/lib/spree/promo/coupon_applicator.rb +63 -0
- data/lib/spree/promo/environment.rb +9 -0
- data/lib/spree/{core/responder.rb → responder.rb} +0 -0
- data/lib/spree/testing_support/ability_helpers.rb +105 -0
- data/lib/spree/testing_support/authorization_helpers.rb +62 -0
- data/lib/spree/{core/testing_support → testing_support}/bar_ability.rb +3 -6
- data/lib/spree/{core/testing_support → testing_support}/capybara_ext.rb +2 -5
- data/lib/spree/{core/testing_support → testing_support}/common_rake.rb +4 -2
- data/lib/spree/testing_support/controller_requests.rb +65 -0
- data/lib/spree/testing_support/extension_rake.rb +10 -0
- data/lib/spree/testing_support/factories/activator_factory.rb +8 -0
- data/lib/spree/{core/testing_support → testing_support}/factories/address_factory.rb +3 -3
- data/lib/spree/testing_support/factories/adjustment_factory.rb +17 -0
- data/lib/spree/testing_support/factories/calculator_factory.rb +12 -0
- data/lib/spree/{core/testing_support → testing_support}/factories/configuration_factory.rb +1 -1
- data/lib/spree/{core/testing_support → testing_support}/factories/country_factory.rb +1 -1
- data/lib/spree/{core/testing_support → testing_support}/factories/credit_card_factory.rb +1 -1
- data/lib/spree/testing_support/factories/inventory_unit_factory.rb +9 -0
- data/lib/spree/testing_support/factories/line_item_factory.rb +8 -0
- data/lib/spree/{core/testing_support → testing_support}/factories/options_factory.rb +2 -2
- data/lib/spree/testing_support/factories/order_factory.rb +63 -0
- data/lib/spree/testing_support/factories/payment_factory.rb +16 -0
- data/lib/spree/testing_support/factories/payment_method_factory.rb +18 -0
- data/lib/spree/{core/testing_support → testing_support}/factories/price_factory.rb +2 -3
- data/lib/spree/testing_support/factories/product_factory.rb +40 -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_factory.rb +5 -0
- data/lib/spree/{core/testing_support → testing_support}/factories/property_factory.rb +1 -1
- data/lib/spree/testing_support/factories/prototype_factory.rb +6 -0
- data/lib/spree/testing_support/factories/return_authorization_factory.rb +9 -0
- data/lib/spree/testing_support/factories/role_factory.rb +9 -0
- data/lib/spree/testing_support/factories/shipment_factory.rb +19 -0
- data/lib/spree/testing_support/factories/shipping_category_factory.rb +5 -0
- data/lib/spree/testing_support/factories/shipping_method_factory.rb +18 -0
- data/lib/spree/{core/testing_support → testing_support}/factories/state_factory.rb +1 -1
- data/lib/spree/testing_support/factories/stock_factory.rb +30 -0
- data/lib/spree/testing_support/factories/stock_item_factory.rb +8 -0
- data/lib/spree/testing_support/factories/stock_location_factory.rb +25 -0
- data/lib/spree/testing_support/factories/stock_movement_factory.rb +11 -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/{core/testing_support → testing_support}/factories/tracker_factory.rb +1 -1
- data/lib/spree/testing_support/factories/user_factory.rb +17 -0
- data/lib/spree/testing_support/factories/variant_factory.rb +24 -0
- data/lib/spree/testing_support/factories/zone_factory.rb +17 -0
- data/lib/spree/testing_support/factories.rb +17 -0
- data/lib/spree/testing_support/flash.rb +27 -0
- data/lib/spree/testing_support/i18n.rb +97 -0
- data/lib/spree/testing_support/order_walkthrough.rb +55 -0
- data/lib/spree/testing_support/preferences.rb +31 -0
- data/lib/spree/{core → testing_support}/url_helpers.rb +1 -1
- data/lib/tasks/core.rake +7 -23
- metadata +246 -935
- data/LICENSE +0 -26
- data/README.md +0 -21
- data/app/assets/images/admin/bg/spree_50.png +0 -0
- data/app/assets/images/admin/payment_banner.png +0 -0
- data/app/assets/images/admin/progress.gif +0 -0
- data/app/assets/images/credit_cards/amex_cid.gif +0 -0
- data/app/assets/images/credit_cards/credit_card.gif +0 -0
- data/app/assets/images/credit_cards/discover_cid.gif +0 -0
- data/app/assets/images/credit_cards/icons/american_express.png +0 -0
- data/app/assets/images/credit_cards/icons/cirrus.png +0 -0
- data/app/assets/images/credit_cards/icons/delta.png +0 -0
- data/app/assets/images/credit_cards/icons/diners_club.png +0 -0
- data/app/assets/images/credit_cards/icons/dinersclub.png +0 -0
- data/app/assets/images/credit_cards/icons/directdebit.png +0 -0
- data/app/assets/images/credit_cards/icons/discover.png +0 -0
- data/app/assets/images/credit_cards/icons/egold.png +0 -0
- data/app/assets/images/credit_cards/icons/maestro.png +0 -0
- data/app/assets/images/credit_cards/icons/master.png +0 -0
- data/app/assets/images/credit_cards/icons/paypal.png +0 -0
- data/app/assets/images/credit_cards/icons/solo.png +0 -0
- data/app/assets/images/credit_cards/icons/switch.png +0 -0
- data/app/assets/images/credit_cards/icons/visa.png +0 -0
- data/app/assets/images/credit_cards/icons/visaelectron.png +0 -0
- data/app/assets/images/credit_cards/icons/westernunion.png +0 -0
- data/app/assets/images/credit_cards/icons/wirecard.png +0 -0
- data/app/assets/images/credit_cards/icons/worldpay.png +0 -0
- data/app/assets/images/credit_cards/master_cid.jpg +0 -0
- data/app/assets/images/credit_cards/visa_cid.gif +0 -0
- data/app/assets/images/favicon.ico +0 -0
- data/app/assets/images/icons/add-to-cart.png +0 -0
- data/app/assets/images/icons/checkout.png +0 -0
- data/app/assets/images/icons/delete.png +0 -0
- data/app/assets/images/icons/update.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/images/spinner.gif +0 -0
- data/app/assets/images/store/cart.png +0 -0
- data/app/assets/images/store/select_arrow.gif +0 -0
- data/app/assets/javascripts/admin/address_states.js +0 -26
- data/app/assets/javascripts/admin/admin.js.erb +0 -289
- data/app/assets/javascripts/admin/calculator.js +0 -16
- data/app/assets/javascripts/admin/checkouts/edit.js +0 -93
- data/app/assets/javascripts/admin/gateway.js +0 -13
- data/app/assets/javascripts/admin/image_settings.js.erb +0 -62
- data/app/assets/javascripts/admin/images/index.js.coffee +0 -15
- data/app/assets/javascripts/admin/images/new.js.coffee +0 -7
- data/app/assets/javascripts/admin/nested-attribute.js +0 -23
- data/app/assets/javascripts/admin/orders/edit.js +0 -15
- data/app/assets/javascripts/admin/orders/edit_form.js +0 -16
- data/app/assets/javascripts/admin/payments/new.js +0 -16
- data/app/assets/javascripts/admin/progress.coffee +0 -27
- data/app/assets/javascripts/admin/shipping_methods.js.coffee +0 -10
- data/app/assets/javascripts/admin/spree-select2.js.erb +0 -22
- data/app/assets/javascripts/admin/spree_core.js +0 -31
- data/app/assets/javascripts/admin/states.js +0 -9
- data/app/assets/javascripts/admin/taxon_autocomplete.js.erb +0 -37
- data/app/assets/javascripts/admin/taxonomy.js +0 -205
- data/app/assets/javascripts/admin/underscore-min.js +0 -26
- data/app/assets/javascripts/admin/variant_autocomplete.js.erb +0 -40
- data/app/assets/javascripts/admin/zone.js.coffee +0 -39
- data/app/assets/javascripts/store/cart.js.coffee +0 -9
- data/app/assets/javascripts/store/checkout.js.coffee +0 -87
- data/app/assets/javascripts/store/product.js.coffee +0 -47
- data/app/assets/javascripts/store/spree_core.js +0 -5
- data/app/assets/stylesheets/admin/components/_actions.scss +0 -31
- data/app/assets/stylesheets/admin/components/_date-picker.scss +0 -154
- data/app/assets/stylesheets/admin/components/_messages.scss +0 -43
- data/app/assets/stylesheets/admin/components/_navigation.scss +0 -150
- data/app/assets/stylesheets/admin/components/_pagination.scss +0 -17
- data/app/assets/stylesheets/admin/components/_product_autocomplete.scss +0 -29
- data/app/assets/stylesheets/admin/components/_progress.scss +0 -35
- data/app/assets/stylesheets/admin/components/_sidebar.scss +0 -24
- data/app/assets/stylesheets/admin/components/_states.scss +0 -34
- data/app/assets/stylesheets/admin/components/_table-filter.scss +0 -14
- data/app/assets/stylesheets/admin/globals/_functions.scss +0 -25
- data/app/assets/stylesheets/admin/globals/_mixins.scss +0 -25
- data/app/assets/stylesheets/admin/globals/_variables.scss +0 -140
- data/app/assets/stylesheets/admin/globals/_variables_override.scss +0 -7
- data/app/assets/stylesheets/admin/hacks/_ie.scss +0 -73
- data/app/assets/stylesheets/admin/hacks/_mozilla.scss +0 -32
- data/app/assets/stylesheets/admin/hacks/_opera.scss +0 -17
- data/app/assets/stylesheets/admin/plugins/_jstree.scss +0 -132
- data/app/assets/stylesheets/admin/plugins/_powertip.scss +0 -86
- data/app/assets/stylesheets/admin/plugins/_select2.scss +0 -176
- data/app/assets/stylesheets/admin/plugins/_token-input.scss +0 -110
- data/app/assets/stylesheets/admin/plugins/font-awesome.scss +0 -303
- data/app/assets/stylesheets/admin/sections/_edit_checkouts.scss +0 -72
- data/app/assets/stylesheets/admin/sections/_image_settings.scss +0 -3
- data/app/assets/stylesheets/admin/sections/_orders.scss +0 -38
- data/app/assets/stylesheets/admin/sections/_overview.scss +0 -86
- data/app/assets/stylesheets/admin/sections/_products.scss +0 -26
- data/app/assets/stylesheets/admin/sections/_promotions.scss +0 -100
- data/app/assets/stylesheets/admin/shared/_forms.scss +0 -254
- data/app/assets/stylesheets/admin/shared/_icons.scss +0 -22
- data/app/assets/stylesheets/admin/shared/_layout.scss +0 -87
- data/app/assets/stylesheets/admin/shared/_tables.scss +0 -188
- data/app/assets/stylesheets/admin/shared/_typography.scss +0 -132
- data/app/assets/stylesheets/admin/spree_admin.scss +0 -38
- data/app/assets/stylesheets/admin/spree_core.css +0 -16
- data/app/assets/stylesheets/store/screen.css.scss +0 -1194
- data/app/assets/stylesheets/store/spree_core.css +0 -6
- data/app/assets/stylesheets/store/variables.css.scss +0 -62
- data/app/controllers/spree/admin/adjustments_controller.rb +0 -17
- data/app/controllers/spree/admin/banners_controller.rb +0 -14
- data/app/controllers/spree/admin/base_controller.rb +0 -78
- data/app/controllers/spree/admin/countries_controller.rb +0 -11
- data/app/controllers/spree/admin/general_settings_controller.rb +0 -34
- data/app/controllers/spree/admin/image_settings_controller.rb +0 -66
- data/app/controllers/spree/admin/images_controller.rb +0 -39
- data/app/controllers/spree/admin/inventory_settings_controller.rb +0 -13
- data/app/controllers/spree/admin/inventory_units_controller.rb +0 -6
- data/app/controllers/spree/admin/line_items_controller.rb +0 -58
- data/app/controllers/spree/admin/mail_methods_controller.rb +0 -32
- data/app/controllers/spree/admin/option_types_controller.rb +0 -46
- data/app/controllers/spree/admin/option_values_controller.rb +0 -11
- data/app/controllers/spree/admin/orders/customer_details_controller.rb +0 -52
- data/app/controllers/spree/admin/orders_controller.rb +0 -127
- data/app/controllers/spree/admin/overview_controller.rb +0 -17
- data/app/controllers/spree/admin/payment_methods_controller.rb +0 -56
- data/app/controllers/spree/admin/payments_controller.rb +0 -100
- data/app/controllers/spree/admin/product_properties_controller.rb +0 -30
- data/app/controllers/spree/admin/products_controller.rb +0 -116
- data/app/controllers/spree/admin/properties_controller.rb +0 -14
- data/app/controllers/spree/admin/prototypes_controller.rb +0 -29
- data/app/controllers/spree/admin/reports_controller.rb +0 -50
- data/app/controllers/spree/admin/resource_controller.rb +0 -265
- data/app/controllers/spree/admin/return_authorizations_controller.rb +0 -21
- data/app/controllers/spree/admin/search_controller.rb +0 -27
- data/app/controllers/spree/admin/shipments_controller.rb +0 -102
- data/app/controllers/spree/admin/shipping_categories_controller.rb +0 -6
- data/app/controllers/spree/admin/shipping_methods_controller.rb +0 -37
- data/app/controllers/spree/admin/states_controller.rb +0 -29
- data/app/controllers/spree/admin/tax_categories_controller.rb +0 -19
- data/app/controllers/spree/admin/tax_rates_controller.rb +0 -26
- data/app/controllers/spree/admin/tax_settings_controller.rb +0 -17
- data/app/controllers/spree/admin/taxonomies_controller.rb +0 -23
- data/app/controllers/spree/admin/taxons_controller.rb +0 -114
- data/app/controllers/spree/admin/trackers_controller.rb +0 -6
- data/app/controllers/spree/admin/users_controller.rb +0 -96
- data/app/controllers/spree/admin/variants_controller.rb +0 -63
- data/app/controllers/spree/admin/zones_controller.rb +0 -27
- data/app/controllers/spree/checkout_controller.rb +0 -130
- data/app/controllers/spree/content_controller.rb +0 -23
- data/app/controllers/spree/countries_controller.rb +0 -12
- data/app/controllers/spree/home_controller.rb +0 -14
- data/app/controllers/spree/locale_controller.rb +0 -16
- data/app/controllers/spree/orders_controller.rb +0 -87
- data/app/controllers/spree/products_controller.rb +0 -53
- data/app/controllers/spree/states_controller.rb +0 -13
- data/app/controllers/spree/store_controller.rb +0 -11
- data/app/controllers/spree/taxons_controller.rb +0 -31
- data/app/helpers/spree/admin/base_helper.rb +0 -168
- data/app/helpers/spree/admin/general_settings_helper.rb +0 -13
- data/app/helpers/spree/admin/inventory_settings_helper.rb +0 -9
- data/app/helpers/spree/admin/navigation_helper.rb +0 -156
- data/app/helpers/spree/admin/orders_helper.rb +0 -19
- data/app/helpers/spree/admin/payments_helper.rb +0 -11
- data/app/helpers/spree/admin/products_helper.rb +0 -27
- data/app/helpers/spree/admin/tables_helper.rb +0 -15
- data/app/helpers/spree/admin/taxons_helper.rb +0 -9
- data/app/models/spree/mail_method.rb +0 -32
- data/app/models/spree.rb +0 -5
- data/app/views/spree/address/_form.html.erb +0 -75
- data/app/views/spree/admin/adjustments/_adjustments_table.html.erb +0 -26
- data/app/views/spree/admin/adjustments/_form.html.erb +0 -16
- data/app/views/spree/admin/adjustments/edit.html.erb +0 -22
- data/app/views/spree/admin/adjustments/index.html.erb +0 -14
- data/app/views/spree/admin/adjustments/new.html.erb +0 -23
- data/app/views/spree/admin/banners/_gateway.html.erb +0 -16
- data/app/views/spree/admin/countries/_form.html.erb +0 -22
- data/app/views/spree/admin/countries/edit.html.erb +0 -21
- data/app/views/spree/admin/countries/index.html.erb +0 -34
- data/app/views/spree/admin/general_settings/edit.html.erb +0 -92
- data/app/views/spree/admin/image_settings/edit.html.erb +0 -125
- data/app/views/spree/admin/images/_form.html.erb +0 -18
- data/app/views/spree/admin/images/edit.html.erb +0 -28
- data/app/views/spree/admin/images/index.html.erb +0 -58
- data/app/views/spree/admin/images/new.html.erb +0 -15
- data/app/views/spree/admin/inventory_settings/edit.html.erb +0 -25
- data/app/views/spree/admin/inventory_settings/show.html.erb +0 -19
- data/app/views/spree/admin/inventory_units/adjust.html.erb +0 -33
- data/app/views/spree/admin/line_items/create.js.erb +0 -1
- data/app/views/spree/admin/line_items/destroy.js.erb +0 -1
- data/app/views/spree/admin/mail_methods/_form.html.erb +0 -91
- data/app/views/spree/admin/mail_methods/edit.html.erb +0 -18
- data/app/views/spree/admin/mail_methods/index.html.erb +0 -41
- data/app/views/spree/admin/mail_methods/new.html.erb +0 -21
- data/app/views/spree/admin/option_types/_form.html.erb +0 -17
- data/app/views/spree/admin/option_types/_option_value_fields.html.erb +0 -9
- data/app/views/spree/admin/option_types/edit.html.erb +0 -50
- data/app/views/spree/admin/option_types/index.html.erb +0 -40
- data/app/views/spree/admin/option_types/new.html.erb +0 -11
- data/app/views/spree/admin/option_types/new.js.erb +0 -2
- data/app/views/spree/admin/orders/_add_product.html.erb +0 -26
- data/app/views/spree/admin/orders/_form.html.erb +0 -67
- data/app/views/spree/admin/orders/_line_item.html.erb +0 -9
- data/app/views/spree/admin/orders/customer_details/_form.html.erb +0 -66
- data/app/views/spree/admin/orders/customer_details/edit.html.erb +0 -29
- data/app/views/spree/admin/orders/edit.html.erb +0 -24
- data/app/views/spree/admin/orders/index.html.erb +0 -140
- data/app/views/spree/admin/orders/new.html.erb +0 -30
- data/app/views/spree/admin/orders/show.html.erb +0 -35
- data/app/views/spree/admin/payment_methods/_form.html.erb +0 -58
- data/app/views/spree/admin/payment_methods/edit.html.erb +0 -23
- data/app/views/spree/admin/payment_methods/index.html.erb +0 -51
- data/app/views/spree/admin/payment_methods/new.html.erb +0 -22
- data/app/views/spree/admin/payments/_bill_address_form.html.erb +0 -9
- data/app/views/spree/admin/payments/_form.html.erb +0 -30
- data/app/views/spree/admin/payments/_list.html.erb +0 -26
- data/app/views/spree/admin/payments/credit.html.erb +0 -18
- data/app/views/spree/admin/payments/index.html.erb +0 -23
- data/app/views/spree/admin/payments/new.html.erb +0 -26
- data/app/views/spree/admin/payments/show.html.erb +0 -18
- data/app/views/spree/admin/payments/source_forms/_check.html.erb +0 -0
- data/app/views/spree/admin/payments/source_forms/_gateway.html.erb +0 -50
- data/app/views/spree/admin/payments/source_views/_check.html.erb +0 -0
- data/app/views/spree/admin/payments/source_views/_gateway.html.erb +0 -29
- data/app/views/spree/admin/product_properties/_product_property_fields.html.erb +0 -17
- data/app/views/spree/admin/product_properties/index.html.erb +0 -59
- data/app/views/spree/admin/products/_form.html.erb +0 -144
- data/app/views/spree/admin/products/_properties_form.erb +0 -10
- data/app/views/spree/admin/products/edit.html.erb +0 -18
- data/app/views/spree/admin/products/index.html.erb +0 -102
- data/app/views/spree/admin/products/new.html.erb +0 -82
- data/app/views/spree/admin/products/new.js.erb +0 -7
- data/app/views/spree/admin/products/search.rabl +0 -6
- data/app/views/spree/admin/properties/_form.html.erb +0 -16
- data/app/views/spree/admin/properties/edit.html.erb +0 -18
- data/app/views/spree/admin/properties/filtered.html.erb +0 -1
- data/app/views/spree/admin/properties/index.html.erb +0 -41
- data/app/views/spree/admin/properties/new.html.erb +0 -13
- data/app/views/spree/admin/properties/new.js.erb +0 -2
- data/app/views/spree/admin/prototypes/_form.html.erb +0 -25
- data/app/views/spree/admin/prototypes/_prototypes.html.erb +0 -25
- data/app/views/spree/admin/prototypes/available.js.erb +0 -2
- data/app/views/spree/admin/prototypes/edit.html.erb +0 -20
- data/app/views/spree/admin/prototypes/index.html.erb +0 -40
- data/app/views/spree/admin/prototypes/new.html.erb +0 -11
- data/app/views/spree/admin/prototypes/new.js.erb +0 -5
- data/app/views/spree/admin/prototypes/select.js.erb +0 -4
- data/app/views/spree/admin/prototypes/show.html.erb +0 -42
- data/app/views/spree/admin/reports/index.html.erb +0 -21
- data/app/views/spree/admin/reports/sales_total.html.erb +0 -37
- data/app/views/spree/admin/return_authorizations/_form.html.erb +0 -72
- data/app/views/spree/admin/return_authorizations/edit.html.erb +0 -32
- data/app/views/spree/admin/return_authorizations/index.html.erb +0 -52
- data/app/views/spree/admin/return_authorizations/new.html.erb +0 -22
- data/app/views/spree/admin/search/users.rabl +0 -30
- data/app/views/spree/admin/shared/_address.html.erb +0 -6
- data/app/views/spree/admin/shared/_address_form.html.erb +0 -65
- data/app/views/spree/admin/shared/_alert.html.erb +0 -5
- data/app/views/spree/admin/shared/_calculator_fields.html.erb +0 -22
- data/app/views/spree/admin/shared/_configuration_menu.html.erb +0 -29
- data/app/views/spree/admin/shared/_destroy.js.erb +0 -16
- data/app/views/spree/admin/shared/_edit_resource_links.html.erb +0 -5
- data/app/views/spree/admin/shared/_head.html.erb +0 -25
- data/app/views/spree/admin/shared/_new_resource_links.html.erb +0 -5
- data/app/views/spree/admin/shared/_order_details.html.erb +0 -51
- data/app/views/spree/admin/shared/_order_tabs.html.erb +0 -54
- data/app/views/spree/admin/shared/_product_sub_menu.html.erb +0 -8
- data/app/views/spree/admin/shared/_product_tabs.html.erb +0 -27
- data/app/views/spree/admin/shared/_report_criteria.html.erb +0 -17
- data/app/views/spree/admin/shared/_routes.html.erb +0 -8
- data/app/views/spree/admin/shared/_show_resource_links.html.erb +0 -5
- data/app/views/spree/admin/shared/_tabs.html.erb +0 -4
- data/app/views/spree/admin/shared/_translations.html.erb +0 -33
- data/app/views/spree/admin/shared/_update_order_state.js +0 -7
- data/app/views/spree/admin/shipments/_form.html.erb +0 -71
- data/app/views/spree/admin/shipments/edit.html.erb +0 -43
- data/app/views/spree/admin/shipments/index.html.erb +0 -49
- data/app/views/spree/admin/shipments/new.html.erb +0 -22
- data/app/views/spree/admin/shipping_categories/_form.html.erb +0 -6
- data/app/views/spree/admin/shipping_categories/edit.html.erb +0 -20
- data/app/views/spree/admin/shipping_categories/index.html.erb +0 -35
- data/app/views/spree/admin/shipping_categories/new.html.erb +0 -20
- data/app/views/spree/admin/shipping_methods/_form.html.erb +0 -50
- data/app/views/spree/admin/shipping_methods/edit.html.erb +0 -29
- data/app/views/spree/admin/shipping_methods/index.html.erb +0 -48
- data/app/views/spree/admin/shipping_methods/new.html.erb +0 -29
- data/app/views/spree/admin/states/_form.html.erb +0 -14
- data/app/views/spree/admin/states/_state_list.html.erb +0 -31
- data/app/views/spree/admin/states/edit.html.erb +0 -20
- data/app/views/spree/admin/states/index.html.erb +0 -24
- data/app/views/spree/admin/states/new.html.erb +0 -15
- data/app/views/spree/admin/states/new.js.erb +0 -2
- data/app/views/spree/admin/tax_categories/_form.html.erb +0 -24
- data/app/views/spree/admin/tax_categories/edit.html.erb +0 -18
- data/app/views/spree/admin/tax_categories/index.html.erb +0 -48
- data/app/views/spree/admin/tax_categories/new.html.erb +0 -19
- data/app/views/spree/admin/tax_categories/show.html.erb +0 -1
- data/app/views/spree/admin/tax_rates/_form.html.erb +0 -42
- data/app/views/spree/admin/tax_rates/edit.html.erb +0 -21
- data/app/views/spree/admin/tax_rates/index.html.erb +0 -59
- data/app/views/spree/admin/tax_rates/new.html.erb +0 -25
- data/app/views/spree/admin/tax_settings/edit.html.erb +0 -18
- data/app/views/spree/admin/taxonomies/_form.html.erb +0 -7
- data/app/views/spree/admin/taxonomies/_js_head.html.erb +0 -8
- data/app/views/spree/admin/taxonomies/_list.html.erb +0 -26
- data/app/views/spree/admin/taxonomies/_taxon.html.erb +0 -12
- data/app/views/spree/admin/taxonomies/edit.erb +0 -62
- data/app/views/spree/admin/taxonomies/get_children.json.erb +0 -9
- data/app/views/spree/admin/taxonomies/index.html.erb +0 -15
- data/app/views/spree/admin/taxonomies/new.html.erb +0 -22
- data/app/views/spree/admin/taxons/_form.html.erb +0 -44
- data/app/views/spree/admin/taxons/_taxon_table.html.erb +0 -23
- data/app/views/spree/admin/taxons/edit.html.erb +0 -21
- data/app/views/spree/admin/taxons/search.rabl +0 -5
- data/app/views/spree/admin/trackers/_form.html.erb +0 -34
- data/app/views/spree/admin/trackers/edit.html.erb +0 -20
- data/app/views/spree/admin/trackers/index.html.erb +0 -48
- data/app/views/spree/admin/trackers/new.html.erb +0 -20
- data/app/views/spree/admin/users/_form.html.erb +0 -37
- data/app/views/spree/admin/users/edit.html.erb +0 -28
- data/app/views/spree/admin/users/index.html.erb +0 -53
- data/app/views/spree/admin/users/new.html.erb +0 -23
- data/app/views/spree/admin/users/show.html.erb +0 -21
- data/app/views/spree/admin/variants/_autocomplete.js.erb +0 -30
- data/app/views/spree/admin/variants/_form.html.erb +0 -61
- data/app/views/spree/admin/variants/edit.html.erb +0 -15
- data/app/views/spree/admin/variants/index.html.erb +0 -78
- data/app/views/spree/admin/variants/new.html.erb +0 -9
- data/app/views/spree/admin/variants/new.js.erb +0 -3
- data/app/views/spree/admin/variants/search.rabl +0 -13
- data/app/views/spree/admin/zones/_country_member.html.erb +0 -5
- data/app/views/spree/admin/zones/_form.html.erb +0 -34
- data/app/views/spree/admin/zones/_member_type.html.erb +0 -19
- data/app/views/spree/admin/zones/_state_member.html.erb +0 -5
- data/app/views/spree/admin/zones/edit.html.erb +0 -23
- data/app/views/spree/admin/zones/index.html.erb +0 -53
- data/app/views/spree/admin/zones/new.html.erb +0 -21
- data/app/views/spree/checkout/_address.html.erb +0 -25
- data/app/views/spree/checkout/_confirm.html.erb +0 -12
- data/app/views/spree/checkout/_delivery.html.erb +0 -27
- data/app/views/spree/checkout/_payment.html.erb +0 -32
- data/app/views/spree/checkout/_summary.html.erb +0 -33
- data/app/views/spree/checkout/edit.html.erb +0 -37
- data/app/views/spree/checkout/payment/_check.html.erb +0 -0
- data/app/views/spree/checkout/payment/_gateway.html.erb +0 -26
- data/app/views/spree/checkout/registration.html.erb +0 -20
- data/app/views/spree/content/cvv.html.erb +0 -13
- data/app/views/spree/countries/index.js.erb +0 -1
- data/app/views/spree/home/index.html.erb +0 -10
- data/app/views/spree/layouts/admin.html.erb +0 -132
- data/app/views/spree/layouts/spree_application.html.erb +0 -35
- data/app/views/spree/orders/_adjustments.html.erb +0 -14
- data/app/views/spree/orders/_form.html.erb +0 -18
- data/app/views/spree/orders/_line_item.html.erb +0 -33
- data/app/views/spree/orders/edit.html.erb +0 -48
- data/app/views/spree/orders/show.html.erb +0 -22
- data/app/views/spree/products/_cart_form.html.erb +0 -57
- data/app/views/spree/products/_image.html.erb +0 -5
- data/app/views/spree/products/_properties.html.erb +0 -15
- data/app/views/spree/products/_taxons.html.erb +0 -14
- data/app/views/spree/products/_thumbnails.html.erb +0 -21
- data/app/views/spree/products/index.html.erb +0 -27
- data/app/views/spree/products/show.html.erb +0 -45
- data/app/views/spree/shared/_filters.html.erb +0 -28
- data/app/views/spree/shared/_footer.html.erb +0 -6
- data/app/views/spree/shared/_google_analytics.html.erb +0 -39
- data/app/views/spree/shared/_head.html.erb +0 -13
- data/app/views/spree/shared/_header.html.erb +0 -5
- data/app/views/spree/shared/_main_nav_bar.html.erb +0 -6
- data/app/views/spree/shared/_nav_bar.html.erb +0 -7
- data/app/views/spree/shared/_order_details.html.erb +0 -107
- data/app/views/spree/shared/_products.html.erb +0 -30
- data/app/views/spree/shared/_search.html.erb +0 -9
- data/app/views/spree/shared/_sidebar.html.erb +0 -3
- data/app/views/spree/shared/_taxonomies.html.erb +0 -6
- data/app/views/spree/shared/unauthorized.html.erb +0 -0
- data/app/views/spree/states/index.js.erb +0 -1
- data/app/views/spree/taxons/_taxon.html.erb +0 -4
- data/app/views/spree/taxons/show.html.erb +0 -19
- data/app/views/spree/test_mailer/test_email.text.erb +0 -4
- data/config/initializers/check_for_orphaned_preferences.rb +0 -9
- data/config/initializers/deprecation_checker.rb +0 -7
- data/config/initializers/form_builder.rb +0 -15
- data/config/initializers/rails_5868.rb +0 -8
- data/config/initializers/spree.rb +0 -6
- data/config/routes.rb +0 -188
- data/db/migrate/20130226054936_add_variant_id_index_to_spree_prices.rb +0 -5
- data/db/migrate/20130626232741_add_cvv_result_code_and_cvv_result_message_to_spree_payments.rb +0 -6
- data/db/migrate/20130628021056_add_unique_index_to_permalink_on_spree_products.rb +0 -5
- data/db/migrate/20130628022817_add_unique_index_to_orders_shipments_and_stock_transfers.rb +0 -6
- data/db/migrate/20130813140619_expand_order_number_size.rb +0 -9
- data/db/migrate/20131113035136_add_channel_to_spree_orders.rb +0 -5
- data/lib/spree/core/action_callbacks.rb +0 -26
- data/lib/spree/core/custom_fixtures.rb +0 -70
- data/lib/spree/core/middleware/redirect_legacy_product_url.rb +0 -18
- data/lib/spree/core/middleware/seo_assist.rb +0 -51
- data/lib/spree/core/preference_rescue.rb +0 -25
- data/lib/spree/core/scopes.rb +0 -65
- data/lib/spree/core/ssl_requirement.rb +0 -113
- data/lib/spree/core/store_helpers.rb +0 -13
- data/lib/spree/core/testing_support/authorization_helpers.rb +0 -33
- data/lib/spree/core/testing_support/controller_requests.rb +0 -67
- data/lib/spree/core/testing_support/factories/activator_factory.rb +0 -8
- data/lib/spree/core/testing_support/factories/adjustment_factory.rb +0 -16
- data/lib/spree/core/testing_support/factories/calculator_factory.rb +0 -9
- data/lib/spree/core/testing_support/factories/inventory_unit_factory.rb +0 -9
- data/lib/spree/core/testing_support/factories/line_item_factory.rb +0 -10
- data/lib/spree/core/testing_support/factories/mail_method_factory.rb +0 -6
- data/lib/spree/core/testing_support/factories/order_factory.rb +0 -32
- data/lib/spree/core/testing_support/factories/payment_factory.rb +0 -17
- data/lib/spree/core/testing_support/factories/payment_method_factory.rb +0 -18
- data/lib/spree/core/testing_support/factories/product_factory.rb +0 -46
- data/lib/spree/core/testing_support/factories/product_option_type_factory.rb +0 -6
- data/lib/spree/core/testing_support/factories/product_property_factory.rb +0 -6
- data/lib/spree/core/testing_support/factories/prototype_factory.rb +0 -6
- data/lib/spree/core/testing_support/factories/return_authorization_factory.rb +0 -10
- data/lib/spree/core/testing_support/factories/role_factory.rb +0 -11
- data/lib/spree/core/testing_support/factories/shipment_factory.rb +0 -11
- data/lib/spree/core/testing_support/factories/shipping_category_factory.rb +0 -7
- data/lib/spree/core/testing_support/factories/shipping_method_factory.rb +0 -23
- data/lib/spree/core/testing_support/factories/tax_category_factory.rb +0 -16
- data/lib/spree/core/testing_support/factories/tax_rate_factory.rb +0 -7
- data/lib/spree/core/testing_support/factories/taxon_factory.rb +0 -7
- data/lib/spree/core/testing_support/factories/taxonomy_factory.rb +0 -5
- data/lib/spree/core/testing_support/factories/user_factory.rb +0 -17
- data/lib/spree/core/testing_support/factories/variant_factory.rb +0 -24
- data/lib/spree/core/testing_support/factories/zone_factory.rb +0 -17
- data/lib/spree/core/testing_support/factories.rb +0 -11
- data/lib/spree/core/testing_support/fixtures.rb +0 -4
- data/lib/spree/core/testing_support/flash.rb +0 -29
- data/lib/spree/core/testing_support/preferences.rb +0 -32
- data/lib/spree/product_filters.rb +0 -197
- data/lib/spree/scopes/dynamic.rb +0 -33
- data/lib/tasks/rake_util.rb +0 -19
- data/lib/tasks/taxon.rake +0 -14
- data/vendor/assets/fonts/fontawesome-webfont.eot +0 -0
- data/vendor/assets/fonts/fontawesome-webfont.svg +0 -255
- data/vendor/assets/fonts/fontawesome-webfont.ttf +0 -0
- data/vendor/assets/fonts/fontawesome-webfont.woff +0 -0
- data/vendor/assets/images/datepicker/cal.gif +0 -0
- data/vendor/assets/images/flags/ad.png +0 -0
- data/vendor/assets/images/flags/ae.png +0 -0
- data/vendor/assets/images/flags/af.png +0 -0
- data/vendor/assets/images/flags/ag.png +0 -0
- data/vendor/assets/images/flags/ai.png +0 -0
- data/vendor/assets/images/flags/al.png +0 -0
- data/vendor/assets/images/flags/am.png +0 -0
- data/vendor/assets/images/flags/an.png +0 -0
- data/vendor/assets/images/flags/ao.png +0 -0
- data/vendor/assets/images/flags/ar.png +0 -0
- data/vendor/assets/images/flags/as.png +0 -0
- data/vendor/assets/images/flags/at.png +0 -0
- data/vendor/assets/images/flags/au.png +0 -0
- data/vendor/assets/images/flags/aw.png +0 -0
- data/vendor/assets/images/flags/ax.png +0 -0
- data/vendor/assets/images/flags/az.png +0 -0
- data/vendor/assets/images/flags/ba.png +0 -0
- data/vendor/assets/images/flags/bb.png +0 -0
- data/vendor/assets/images/flags/bd.png +0 -0
- data/vendor/assets/images/flags/be.png +0 -0
- data/vendor/assets/images/flags/bf.png +0 -0
- data/vendor/assets/images/flags/bg.png +0 -0
- data/vendor/assets/images/flags/bh.png +0 -0
- data/vendor/assets/images/flags/bi.png +0 -0
- data/vendor/assets/images/flags/bj.png +0 -0
- data/vendor/assets/images/flags/bm.png +0 -0
- data/vendor/assets/images/flags/bn.png +0 -0
- data/vendor/assets/images/flags/bo.png +0 -0
- data/vendor/assets/images/flags/br.png +0 -0
- data/vendor/assets/images/flags/bs.png +0 -0
- data/vendor/assets/images/flags/bt.png +0 -0
- data/vendor/assets/images/flags/bv.png +0 -0
- data/vendor/assets/images/flags/bw.png +0 -0
- data/vendor/assets/images/flags/by.png +0 -0
- data/vendor/assets/images/flags/bz.png +0 -0
- data/vendor/assets/images/flags/ca.png +0 -0
- data/vendor/assets/images/flags/catalonia.png +0 -0
- data/vendor/assets/images/flags/cc.png +0 -0
- data/vendor/assets/images/flags/cd.png +0 -0
- data/vendor/assets/images/flags/cf.png +0 -0
- data/vendor/assets/images/flags/cg.png +0 -0
- data/vendor/assets/images/flags/ch.png +0 -0
- data/vendor/assets/images/flags/ci.png +0 -0
- data/vendor/assets/images/flags/ck.png +0 -0
- data/vendor/assets/images/flags/cl.png +0 -0
- data/vendor/assets/images/flags/cm.png +0 -0
- data/vendor/assets/images/flags/cn.png +0 -0
- data/vendor/assets/images/flags/co.png +0 -0
- data/vendor/assets/images/flags/cr.png +0 -0
- data/vendor/assets/images/flags/cs.png +0 -0
- data/vendor/assets/images/flags/cu.png +0 -0
- data/vendor/assets/images/flags/cv.png +0 -0
- data/vendor/assets/images/flags/cx.png +0 -0
- data/vendor/assets/images/flags/cy.png +0 -0
- data/vendor/assets/images/flags/cz.png +0 -0
- data/vendor/assets/images/flags/de.png +0 -0
- data/vendor/assets/images/flags/dj.png +0 -0
- data/vendor/assets/images/flags/dk.png +0 -0
- data/vendor/assets/images/flags/dm.png +0 -0
- data/vendor/assets/images/flags/do.png +0 -0
- data/vendor/assets/images/flags/dz.png +0 -0
- data/vendor/assets/images/flags/ec.png +0 -0
- data/vendor/assets/images/flags/ee.png +0 -0
- data/vendor/assets/images/flags/eg.png +0 -0
- data/vendor/assets/images/flags/eh.png +0 -0
- data/vendor/assets/images/flags/england.png +0 -0
- data/vendor/assets/images/flags/er.png +0 -0
- data/vendor/assets/images/flags/es.png +0 -0
- data/vendor/assets/images/flags/et.png +0 -0
- data/vendor/assets/images/flags/europeanunion.png +0 -0
- data/vendor/assets/images/flags/fam.png +0 -0
- data/vendor/assets/images/flags/fi.png +0 -0
- data/vendor/assets/images/flags/fj.png +0 -0
- data/vendor/assets/images/flags/fk.png +0 -0
- data/vendor/assets/images/flags/fm.png +0 -0
- data/vendor/assets/images/flags/fo.png +0 -0
- data/vendor/assets/images/flags/fr.png +0 -0
- data/vendor/assets/images/flags/ga.png +0 -0
- data/vendor/assets/images/flags/gb.png +0 -0
- data/vendor/assets/images/flags/gd.png +0 -0
- data/vendor/assets/images/flags/ge.png +0 -0
- data/vendor/assets/images/flags/gf.png +0 -0
- data/vendor/assets/images/flags/gh.png +0 -0
- data/vendor/assets/images/flags/gi.png +0 -0
- data/vendor/assets/images/flags/gl.png +0 -0
- data/vendor/assets/images/flags/gm.png +0 -0
- data/vendor/assets/images/flags/gn.png +0 -0
- data/vendor/assets/images/flags/gp.png +0 -0
- data/vendor/assets/images/flags/gq.png +0 -0
- data/vendor/assets/images/flags/gr.png +0 -0
- data/vendor/assets/images/flags/gs.png +0 -0
- data/vendor/assets/images/flags/gt.png +0 -0
- data/vendor/assets/images/flags/gu.png +0 -0
- data/vendor/assets/images/flags/gw.png +0 -0
- data/vendor/assets/images/flags/gy.png +0 -0
- data/vendor/assets/images/flags/hk.png +0 -0
- data/vendor/assets/images/flags/hm.png +0 -0
- data/vendor/assets/images/flags/hn.png +0 -0
- data/vendor/assets/images/flags/hr.png +0 -0
- data/vendor/assets/images/flags/ht.png +0 -0
- data/vendor/assets/images/flags/hu.png +0 -0
- data/vendor/assets/images/flags/id.png +0 -0
- data/vendor/assets/images/flags/ie.png +0 -0
- data/vendor/assets/images/flags/il.png +0 -0
- data/vendor/assets/images/flags/in.png +0 -0
- data/vendor/assets/images/flags/io.png +0 -0
- data/vendor/assets/images/flags/iq.png +0 -0
- data/vendor/assets/images/flags/ir.png +0 -0
- data/vendor/assets/images/flags/is.png +0 -0
- data/vendor/assets/images/flags/it.png +0 -0
- data/vendor/assets/images/flags/ja.png +0 -0
- data/vendor/assets/images/flags/jm.png +0 -0
- data/vendor/assets/images/flags/jo.png +0 -0
- data/vendor/assets/images/flags/ke.png +0 -0
- data/vendor/assets/images/flags/kg.png +0 -0
- data/vendor/assets/images/flags/kh.png +0 -0
- data/vendor/assets/images/flags/ki.png +0 -0
- data/vendor/assets/images/flags/km.png +0 -0
- data/vendor/assets/images/flags/kn.png +0 -0
- data/vendor/assets/images/flags/kp.png +0 -0
- data/vendor/assets/images/flags/kr.png +0 -0
- data/vendor/assets/images/flags/kw.png +0 -0
- data/vendor/assets/images/flags/ky.png +0 -0
- data/vendor/assets/images/flags/kz.png +0 -0
- data/vendor/assets/images/flags/la.png +0 -0
- data/vendor/assets/images/flags/lb.png +0 -0
- data/vendor/assets/images/flags/lc.png +0 -0
- data/vendor/assets/images/flags/li.png +0 -0
- data/vendor/assets/images/flags/lk.png +0 -0
- data/vendor/assets/images/flags/lr.png +0 -0
- data/vendor/assets/images/flags/ls.png +0 -0
- data/vendor/assets/images/flags/lt.png +0 -0
- data/vendor/assets/images/flags/lu.png +0 -0
- data/vendor/assets/images/flags/lv.png +0 -0
- data/vendor/assets/images/flags/ly.png +0 -0
- data/vendor/assets/images/flags/ma.png +0 -0
- data/vendor/assets/images/flags/mc.png +0 -0
- data/vendor/assets/images/flags/md.png +0 -0
- data/vendor/assets/images/flags/me.png +0 -0
- data/vendor/assets/images/flags/mg.png +0 -0
- data/vendor/assets/images/flags/mh.png +0 -0
- data/vendor/assets/images/flags/mk.png +0 -0
- data/vendor/assets/images/flags/ml.png +0 -0
- data/vendor/assets/images/flags/mm.png +0 -0
- data/vendor/assets/images/flags/mn.png +0 -0
- data/vendor/assets/images/flags/mo.png +0 -0
- data/vendor/assets/images/flags/mp.png +0 -0
- data/vendor/assets/images/flags/mq.png +0 -0
- data/vendor/assets/images/flags/mr.png +0 -0
- data/vendor/assets/images/flags/ms.png +0 -0
- data/vendor/assets/images/flags/mt.png +0 -0
- data/vendor/assets/images/flags/mu.png +0 -0
- data/vendor/assets/images/flags/mv.png +0 -0
- data/vendor/assets/images/flags/mw.png +0 -0
- data/vendor/assets/images/flags/mx.png +0 -0
- data/vendor/assets/images/flags/my.png +0 -0
- data/vendor/assets/images/flags/mz.png +0 -0
- data/vendor/assets/images/flags/na.png +0 -0
- data/vendor/assets/images/flags/nc.png +0 -0
- data/vendor/assets/images/flags/ne.png +0 -0
- data/vendor/assets/images/flags/nf.png +0 -0
- data/vendor/assets/images/flags/ng.png +0 -0
- data/vendor/assets/images/flags/ni.png +0 -0
- data/vendor/assets/images/flags/nl.png +0 -0
- data/vendor/assets/images/flags/no.png +0 -0
- data/vendor/assets/images/flags/np.png +0 -0
- data/vendor/assets/images/flags/nr.png +0 -0
- data/vendor/assets/images/flags/nu.png +0 -0
- data/vendor/assets/images/flags/nz.png +0 -0
- data/vendor/assets/images/flags/om.png +0 -0
- data/vendor/assets/images/flags/pa.png +0 -0
- data/vendor/assets/images/flags/pe.png +0 -0
- data/vendor/assets/images/flags/pf.png +0 -0
- data/vendor/assets/images/flags/pg.png +0 -0
- data/vendor/assets/images/flags/ph.png +0 -0
- data/vendor/assets/images/flags/pk.png +0 -0
- data/vendor/assets/images/flags/pl.png +0 -0
- data/vendor/assets/images/flags/pm.png +0 -0
- data/vendor/assets/images/flags/pn.png +0 -0
- data/vendor/assets/images/flags/pr.png +0 -0
- data/vendor/assets/images/flags/ps.png +0 -0
- data/vendor/assets/images/flags/pt.png +0 -0
- data/vendor/assets/images/flags/pw.png +0 -0
- data/vendor/assets/images/flags/py.png +0 -0
- data/vendor/assets/images/flags/qa.png +0 -0
- data/vendor/assets/images/flags/re.png +0 -0
- data/vendor/assets/images/flags/ro.png +0 -0
- data/vendor/assets/images/flags/rs.png +0 -0
- data/vendor/assets/images/flags/ru.png +0 -0
- data/vendor/assets/images/flags/rw.png +0 -0
- data/vendor/assets/images/flags/sa.png +0 -0
- data/vendor/assets/images/flags/sb.png +0 -0
- data/vendor/assets/images/flags/sc.png +0 -0
- data/vendor/assets/images/flags/scotland.png +0 -0
- data/vendor/assets/images/flags/sd.png +0 -0
- data/vendor/assets/images/flags/se.png +0 -0
- data/vendor/assets/images/flags/sg.png +0 -0
- data/vendor/assets/images/flags/sh.png +0 -0
- data/vendor/assets/images/flags/si.png +0 -0
- data/vendor/assets/images/flags/sj.png +0 -0
- data/vendor/assets/images/flags/sk.png +0 -0
- data/vendor/assets/images/flags/sl.png +0 -0
- data/vendor/assets/images/flags/sm.png +0 -0
- data/vendor/assets/images/flags/sn.png +0 -0
- data/vendor/assets/images/flags/so.png +0 -0
- data/vendor/assets/images/flags/sr.png +0 -0
- data/vendor/assets/images/flags/st.png +0 -0
- data/vendor/assets/images/flags/sv.png +0 -0
- data/vendor/assets/images/flags/sy.png +0 -0
- data/vendor/assets/images/flags/sz.png +0 -0
- data/vendor/assets/images/flags/tc.png +0 -0
- data/vendor/assets/images/flags/td.png +0 -0
- data/vendor/assets/images/flags/tf.png +0 -0
- data/vendor/assets/images/flags/tg.png +0 -0
- data/vendor/assets/images/flags/th.png +0 -0
- data/vendor/assets/images/flags/tj.png +0 -0
- data/vendor/assets/images/flags/tk.png +0 -0
- data/vendor/assets/images/flags/tl.png +0 -0
- data/vendor/assets/images/flags/tm.png +0 -0
- data/vendor/assets/images/flags/tn.png +0 -0
- data/vendor/assets/images/flags/to.png +0 -0
- data/vendor/assets/images/flags/tr.png +0 -0
- data/vendor/assets/images/flags/tt.png +0 -0
- data/vendor/assets/images/flags/tv.png +0 -0
- data/vendor/assets/images/flags/tw.png +0 -0
- data/vendor/assets/images/flags/tz.png +0 -0
- data/vendor/assets/images/flags/ua.png +0 -0
- data/vendor/assets/images/flags/ug.png +0 -0
- data/vendor/assets/images/flags/um.png +0 -0
- data/vendor/assets/images/flags/us.png +0 -0
- data/vendor/assets/images/flags/uy.png +0 -0
- data/vendor/assets/images/flags/uz.png +0 -0
- data/vendor/assets/images/flags/va.png +0 -0
- data/vendor/assets/images/flags/vc.png +0 -0
- data/vendor/assets/images/flags/ve.png +0 -0
- data/vendor/assets/images/flags/vg.png +0 -0
- data/vendor/assets/images/flags/vi.png +0 -0
- data/vendor/assets/images/flags/vn.png +0 -0
- data/vendor/assets/images/flags/vu.png +0 -0
- data/vendor/assets/images/flags/wales.png +0 -0
- data/vendor/assets/images/flags/wf.png +0 -0
- data/vendor/assets/images/flags/ws.png +0 -0
- data/vendor/assets/images/flags/ye.png +0 -0
- data/vendor/assets/images/flags/yt.png +0 -0
- data/vendor/assets/images/flags/za.png +0 -0
- data/vendor/assets/images/flags/zm.png +0 -0
- data/vendor/assets/images/flags/zw.png +0 -0
- data/vendor/assets/images/jquery-ui/ui-bg_flat_0_aaaaaa_40x100.png +0 -0
- data/vendor/assets/images/jquery-ui/ui-bg_flat_0_eeeeee_40x100.png +0 -0
- data/vendor/assets/images/jquery-ui/ui-bg_flat_55_ffffff_40x100.png +0 -0
- data/vendor/assets/images/jquery-ui/ui-bg_flat_75_ffffff_40x100.png +0 -0
- data/vendor/assets/images/jquery-ui/ui-bg_glass_65_ffffff_1x400.png +0 -0
- data/vendor/assets/images/jquery-ui/ui-bg_highlight-soft_100_f6f6f6_1x100.png +0 -0
- data/vendor/assets/images/jquery-ui/ui-bg_highlight-soft_25_0073ea_1x100.png +0 -0
- data/vendor/assets/images/jquery-ui/ui-bg_highlight-soft_50_dddddd_1x100.png +0 -0
- data/vendor/assets/images/jquery-ui/ui-icons_0073ea_256x240.png +0 -0
- data/vendor/assets/images/jquery-ui/ui-icons_454545_256x240.png +0 -0
- data/vendor/assets/images/jquery-ui/ui-icons_666666_256x240.png +0 -0
- data/vendor/assets/images/jquery-ui/ui-icons_ff0084_256x240.png +0 -0
- data/vendor/assets/images/jquery-ui/ui-icons_ffffff_256x240.png +0 -0
- data/vendor/assets/images/jquery.formalize/button.png +0 -0
- data/vendor/assets/images/jquery.formalize/select_arrow.gif +0 -0
- data/vendor/assets/javascripts/css_browser_selector_dev.js +0 -156
- data/vendor/assets/javascripts/equalize.js +0 -41
- data/vendor/assets/javascripts/handlebars.js +0 -1920
- data/vendor/assets/javascripts/jquery.adaptivemenu.js +0 -60
- data/vendor/assets/javascripts/jquery.alerts/images/help.gif +0 -0
- data/vendor/assets/javascripts/jquery.alerts/images/important.gif +0 -0
- data/vendor/assets/javascripts/jquery.alerts/images/info.gif +0 -0
- data/vendor/assets/javascripts/jquery.alerts/images/title.gif +0 -0
- data/vendor/assets/javascripts/jquery.alerts/jquery.alerts.css.erb +0 -57
- data/vendor/assets/javascripts/jquery.alerts/jquery.alerts.js +0 -235
- data/vendor/assets/javascripts/jquery.alerts/jquery.alerts.spree.css +0 -29
- data/vendor/assets/javascripts/jquery.cookie.js +0 -41
- data/vendor/assets/javascripts/jquery.delayedobserver.js +0 -35
- data/vendor/assets/javascripts/jquery.formalize.min.js +0 -1
- data/vendor/assets/javascripts/jquery.horizontalNav.js +0 -141
- data/vendor/assets/javascripts/jquery.jstree/jquery.jstree.js +0 -4545
- data/vendor/assets/javascripts/jquery.jstree/themes/apple/bg.jpg +0 -0
- data/vendor/assets/javascripts/jquery.jstree/themes/apple/d.png +0 -0
- data/vendor/assets/javascripts/jquery.jstree/themes/apple/dot_for_ie.gif +0 -0
- data/vendor/assets/javascripts/jquery.jstree/themes/apple/style.css +0 -61
- data/vendor/assets/javascripts/jquery.jstree/themes/apple/throbber.gif +0 -0
- data/vendor/assets/javascripts/jquery.powertip.js +0 -796
- data/vendor/assets/javascripts/jquery.vAlign.js +0 -11
- data/vendor/assets/javascripts/jquery.validate/additional-methods.min.js +0 -12
- data/vendor/assets/javascripts/jquery.validate/jquery.validate.min.js +0 -12
- data/vendor/assets/javascripts/jquery.validate/localization/messages_ar.js +0 -25
- data/vendor/assets/javascripts/jquery.validate/localization/messages_bg.js +0 -25
- data/vendor/assets/javascripts/jquery.validate/localization/messages_ca.js +0 -25
- data/vendor/assets/javascripts/jquery.validate/localization/messages_cn.js +0 -23
- data/vendor/assets/javascripts/jquery.validate/localization/messages_cs.js +0 -25
- data/vendor/assets/javascripts/jquery.validate/localization/messages_da.js +0 -22
- data/vendor/assets/javascripts/jquery.validate/localization/messages_de.js +0 -22
- data/vendor/assets/javascripts/jquery.validate/localization/messages_el.js +0 -25
- data/vendor/assets/javascripts/jquery.validate/localization/messages_es.js +0 -25
- data/vendor/assets/javascripts/jquery.validate/localization/messages_et.js +0 -23
- data/vendor/assets/javascripts/jquery.validate/localization/messages_eu.js +0 -25
- data/vendor/assets/javascripts/jquery.validate/localization/messages_fa.js +0 -25
- data/vendor/assets/javascripts/jquery.validate/localization/messages_fi.js +0 -23
- data/vendor/assets/javascripts/jquery.validate/localization/messages_fr.js +0 -47
- data/vendor/assets/javascripts/jquery.validate/localization/messages_ge.js +0 -23
- data/vendor/assets/javascripts/jquery.validate/localization/messages_he.js +0 -25
- data/vendor/assets/javascripts/jquery.validate/localization/messages_hr.js +0 -25
- data/vendor/assets/javascripts/jquery.validate/localization/messages_hu.js +0 -24
- data/vendor/assets/javascripts/jquery.validate/localization/messages_it.js +0 -25
- data/vendor/assets/javascripts/jquery.validate/localization/messages_ja.js +0 -25
- data/vendor/assets/javascripts/jquery.validate/localization/messages_ka.js +0 -25
- data/vendor/assets/javascripts/jquery.validate/localization/messages_kk.js +0 -25
- data/vendor/assets/javascripts/jquery.validate/localization/messages_ko.js +0 -25
- data/vendor/assets/javascripts/jquery.validate/localization/messages_lt.js +0 -25
- data/vendor/assets/javascripts/jquery.validate/localization/messages_lv.js +0 -25
- data/vendor/assets/javascripts/jquery.validate/localization/messages_my.js +0 -25
- data/vendor/assets/javascripts/jquery.validate/localization/messages_nl.js +0 -35
- data/vendor/assets/javascripts/jquery.validate/localization/messages_no.js +0 -25
- data/vendor/assets/javascripts/jquery.validate/localization/messages_pl.js +0 -25
- data/vendor/assets/javascripts/jquery.validate/localization/messages_pt_BR.js +0 -26
- data/vendor/assets/javascripts/jquery.validate/localization/messages_pt_PT.js +0 -26
- data/vendor/assets/javascripts/jquery.validate/localization/messages_ptbr.js +0 -30
- data/vendor/assets/javascripts/jquery.validate/localization/messages_ptpt.js +0 -23
- data/vendor/assets/javascripts/jquery.validate/localization/messages_ro.js +0 -25
- data/vendor/assets/javascripts/jquery.validate/localization/messages_ru.js +0 -25
- data/vendor/assets/javascripts/jquery.validate/localization/messages_se.js +0 -23
- data/vendor/assets/javascripts/jquery.validate/localization/messages_si.js +0 -25
- data/vendor/assets/javascripts/jquery.validate/localization/messages_sk.js +0 -22
- data/vendor/assets/javascripts/jquery.validate/localization/messages_sl.js +0 -25
- data/vendor/assets/javascripts/jquery.validate/localization/messages_sr.js +0 -25
- data/vendor/assets/javascripts/jquery.validate/localization/messages_sv.js +0 -23
- data/vendor/assets/javascripts/jquery.validate/localization/messages_th.js +0 -25
- data/vendor/assets/javascripts/jquery.validate/localization/messages_tr.js +0 -25
- data/vendor/assets/javascripts/jquery.validate/localization/messages_tw.js +0 -24
- data/vendor/assets/javascripts/jquery.validate/localization/messages_ua.js +0 -24
- data/vendor/assets/javascripts/jquery.validate/localization/messages_uk.js +0 -25
- data/vendor/assets/javascripts/jquery.validate/localization/messages_vi.js +0 -25
- data/vendor/assets/javascripts/jquery.validate/localization/messages_zh.js +0 -25
- data/vendor/assets/javascripts/jquery.validate/localization/messages_zh_TW.js +0 -26
- data/vendor/assets/javascripts/jquery.validate/localization/methods_de.js +0 -12
- data/vendor/assets/javascripts/jquery.validate/localization/methods_nl.js +0 -9
- data/vendor/assets/javascripts/jquery.validate/localization/methods_pt.js +0 -9
- data/vendor/assets/javascripts/modernizr.js +0 -4
- data/vendor/assets/javascripts/responsive-tables.js +0 -42
- data/vendor/assets/javascripts/spin.js +0 -319
- data/vendor/assets/javascripts/trunk8.js +0 -233
- data/vendor/assets/stylesheets/font-awesome-ie7.css +0 -645
- data/vendor/assets/stylesheets/jquery-ui.datepicker.css.erb +0 -357
- data/vendor/assets/stylesheets/jquery.formalize.css.erb +0 -364
- data/vendor/assets/stylesheets/jquery.powertip.css +0 -85
- data/vendor/assets/stylesheets/responsive-tables.css +0 -21
data/config/locales/en.yml
CHANGED
@@ -1,97 +1,89 @@
|
|
1
|
-
---
|
2
1
|
en:
|
3
|
-
say_no: "No"
|
4
|
-
say_yes: "Yes"
|
5
|
-
a_copy_of_all_mail_will_be_sent_to_the_following_addresses: A copy of all mail be sent to the following addresses
|
6
|
-
abbreviation: Abbreviation
|
7
|
-
access_denied: "Access Denied"
|
8
|
-
account: Account
|
9
|
-
account_updated: "Account updated!"
|
10
|
-
action: Action
|
11
|
-
actions:
|
12
|
-
create: Create
|
13
|
-
destroy: Destroy
|
14
|
-
list: List
|
15
|
-
listing: Listing
|
16
|
-
new: New
|
17
|
-
update: Update
|
18
|
-
cancel: Cancel
|
19
|
-
active: "Active"
|
20
|
-
activate: "Activate"
|
21
2
|
activerecord:
|
22
3
|
attributes:
|
23
4
|
spree/address:
|
24
5
|
address1: Address
|
25
|
-
address2:
|
6
|
+
address2: Address (contd.)
|
26
7
|
city: City
|
27
|
-
country:
|
28
|
-
firstname:
|
29
|
-
lastname:
|
8
|
+
country: Country
|
9
|
+
firstname: First Name
|
10
|
+
lastname: Last Name
|
30
11
|
phone: Phone
|
31
|
-
state:
|
32
|
-
zipcode:
|
12
|
+
state: State
|
13
|
+
zipcode: Zip Code
|
33
14
|
spree/country:
|
34
15
|
iso: ISO
|
35
16
|
iso3: ISO3
|
36
|
-
iso_name:
|
17
|
+
iso_name: ISO Name
|
37
18
|
name: Name
|
38
|
-
numcode:
|
19
|
+
numcode: ISO Code
|
39
20
|
spree/credit_card:
|
40
21
|
cc_type: Type
|
41
22
|
month: Month
|
42
23
|
number: Number
|
43
|
-
verification_value:
|
24
|
+
verification_value: Verification Value
|
44
25
|
year: Year
|
45
26
|
spree/inventory_unit:
|
46
27
|
state: State
|
47
28
|
spree/line_item:
|
48
29
|
price: Price
|
49
30
|
quantity: Quantity
|
31
|
+
spree/option_type:
|
32
|
+
name: Name
|
33
|
+
presentation: Presentation
|
50
34
|
spree/order:
|
51
|
-
checkout_complete:
|
52
|
-
completed_at:
|
53
|
-
ip_address: "IP Address"
|
54
|
-
item_total: "Item Total"
|
55
|
-
number: Number
|
56
|
-
special_instructions: "Special Instructions"
|
57
|
-
state: State
|
58
|
-
total: Total
|
35
|
+
checkout_complete: Checkout Complete
|
36
|
+
completed_at: Completed At
|
59
37
|
created_at: Order Date
|
38
|
+
email: Customer E-Mail
|
39
|
+
ip_address: IP Address
|
40
|
+
item_total: Item Total
|
41
|
+
number: Number
|
60
42
|
payment_state: Payment State
|
61
43
|
shipment_state: Shipment State
|
62
|
-
|
44
|
+
special_instructions: Special Instructions
|
45
|
+
state: State
|
46
|
+
total: Total
|
63
47
|
spree/order/bill_address:
|
64
|
-
|
65
|
-
|
66
|
-
|
67
|
-
|
68
|
-
|
69
|
-
|
70
|
-
|
48
|
+
address1: Billing address street
|
49
|
+
city: Billing address city
|
50
|
+
firstname: Billing address first name
|
51
|
+
lastname: Billing address last name
|
52
|
+
phone: Billing address phone
|
53
|
+
state: Billing address state
|
54
|
+
zipcode: Billing address zipcode
|
71
55
|
spree/order/ship_address:
|
72
|
-
|
73
|
-
|
74
|
-
|
75
|
-
|
76
|
-
|
77
|
-
|
78
|
-
|
79
|
-
spree/
|
80
|
-
|
81
|
-
presentation: Presentation
|
56
|
+
address1: Shipping address street
|
57
|
+
city: Shipping address city
|
58
|
+
firstname: Shipping address first name
|
59
|
+
lastname: Shipping address last name
|
60
|
+
phone: Shipping address phone
|
61
|
+
state: Shipping address state
|
62
|
+
zipcode: Shipping address zipcode
|
63
|
+
spree/payment:
|
64
|
+
amount: Amount
|
82
65
|
spree/payment_method:
|
83
66
|
name: Name
|
84
67
|
spree/product:
|
85
|
-
available_on:
|
86
|
-
cost_currency:
|
87
|
-
cost_price:
|
68
|
+
available_on: Available On
|
69
|
+
cost_currency: Cost Currency
|
70
|
+
cost_price: Cost Price
|
88
71
|
description: Description
|
89
|
-
master_price:
|
72
|
+
master_price: Master Price
|
90
73
|
name: Name
|
91
|
-
on_hand:
|
92
|
-
|
93
|
-
|
94
|
-
|
74
|
+
on_hand: On Hand
|
75
|
+
shipping_category: Shipping Category
|
76
|
+
tax_category: Tax Category
|
77
|
+
spree/promotion:
|
78
|
+
advertise: Advertise
|
79
|
+
code: Code
|
80
|
+
description: Description
|
81
|
+
event_name: Event Name
|
82
|
+
expires_at: Expires At
|
83
|
+
name: Name
|
84
|
+
path: Path
|
85
|
+
starts_at: Starts At
|
86
|
+
usage_limit: Usage Limit
|
95
87
|
spree/property:
|
96
88
|
name: Name
|
97
89
|
presentation: Presentation
|
@@ -119,11 +111,11 @@ en:
|
|
119
111
|
name: Name
|
120
112
|
spree/user:
|
121
113
|
email: Email
|
122
|
-
password:
|
123
|
-
password_confirmation:
|
114
|
+
password: Password
|
115
|
+
password_confirmation: Password Confirmation
|
124
116
|
spree/variant:
|
125
|
-
cost_currency:
|
126
|
-
cost_price:
|
117
|
+
cost_currency: Cost Currency
|
118
|
+
cost_price: Cost Price
|
127
119
|
depth: Depth
|
128
120
|
height: Height
|
129
121
|
price: Price
|
@@ -137,27 +129,18 @@ en:
|
|
137
129
|
spree/address:
|
138
130
|
one: Address
|
139
131
|
other: Addresses
|
140
|
-
spree/cheque_payment:
|
141
|
-
one: Cheque Payment
|
142
|
-
other: Cheque Payments
|
143
132
|
spree/country:
|
144
133
|
one: Country
|
145
134
|
other: Countries
|
146
135
|
spree/credit_card:
|
147
|
-
one:
|
148
|
-
other:
|
149
|
-
spree/creditcard_payment:
|
150
|
-
one: "Credit Card Payment"
|
151
|
-
other: "Credit Card Payments"
|
152
|
-
spree/creditcard_txn:
|
153
|
-
one: "Credit Card Transaction"
|
154
|
-
other: "Credit Card Transactions"
|
136
|
+
one: Credit Card
|
137
|
+
other: Credit Cards
|
155
138
|
spree/inventory_unit:
|
156
|
-
one:
|
157
|
-
other:
|
139
|
+
one: Inventory Unit
|
140
|
+
other: Inventory Units
|
158
141
|
spree/line_item:
|
159
|
-
one:
|
160
|
-
other:
|
142
|
+
one: Line Item
|
143
|
+
other: Line Items
|
161
144
|
spree/order:
|
162
145
|
one: Order
|
163
146
|
other: Orders
|
@@ -183,17 +166,17 @@ en:
|
|
183
166
|
one: Shipment
|
184
167
|
other: Shipments
|
185
168
|
spree/shipping_category:
|
186
|
-
one:
|
187
|
-
other:
|
169
|
+
one: Shipping Category
|
170
|
+
other: Shipping Categories
|
188
171
|
spree/state:
|
189
172
|
one: State
|
190
173
|
other: States
|
191
174
|
spree/tax_category:
|
192
|
-
one:
|
193
|
-
other:
|
175
|
+
one: Tax Category
|
176
|
+
other: Tax Categories
|
194
177
|
spree/tax_rate:
|
195
|
-
one:
|
196
|
-
other:
|
178
|
+
one: Tax Rate
|
179
|
+
other: Tax Rates
|
197
180
|
spree/taxon:
|
198
181
|
one: Taxon
|
199
182
|
other: Taxons
|
@@ -209,938 +192,847 @@ en:
|
|
209
192
|
spree/zone:
|
210
193
|
one: Zone
|
211
194
|
other: Zones
|
212
|
-
|
213
|
-
|
214
|
-
|
215
|
-
|
216
|
-
|
217
|
-
|
218
|
-
|
219
|
-
|
220
|
-
|
221
|
-
|
222
|
-
|
223
|
-
|
224
|
-
|
225
|
-
|
226
|
-
|
227
|
-
|
228
|
-
|
229
|
-
|
230
|
-
|
231
|
-
|
232
|
-
|
233
|
-
|
234
|
-
|
235
|
-
|
236
|
-
|
237
|
-
|
238
|
-
|
239
|
-
|
240
|
-
|
241
|
-
|
242
|
-
|
243
|
-
|
244
|
-
|
245
|
-
|
246
|
-
|
247
|
-
|
248
|
-
|
249
|
-
|
250
|
-
allow_ssl_in_staging: Allow SSL to be used in staging mode
|
251
|
-
allow_ssl_in_production: Allow SSL to be used in production mode
|
252
|
-
allowed_ssl_in_production_mode: "SSL will %{not} be used in production"
|
253
|
-
already_registered: Already Registered?
|
254
|
-
alt_text: Alternative Text
|
255
|
-
alternative_phone: Alternative Phone
|
256
|
-
amount: Amount
|
257
|
-
analytics_trackers: Analytics Trackers
|
258
|
-
and: and
|
259
|
-
apply: "Apply"
|
260
|
-
are_you_sure: "Are you sure?"
|
261
|
-
are_you_sure_category: "Are you sure you want to delete this category?"
|
262
|
-
are_you_sure_delete: "Are you sure you want to delete this record?"
|
263
|
-
are_you_sure_delete_image: "Are you sure you want to delete this image?"
|
264
|
-
are_you_sure_option_type: "Are you sure you want to delete this option type?"
|
265
|
-
are_you_sure_you_want_to_capture: "Are you sure you want to capture?"
|
266
|
-
assign_taxon: "Assign Taxon"
|
267
|
-
assign_taxons: "Assign Taxons"
|
268
|
-
attachment_default_style: "Attachments Style"
|
269
|
-
attachment_default_url: "Attachments Default URL"
|
270
|
-
attachment_path: "Attachments Path"
|
271
|
-
attachment_styles: "Paperclip Styles"
|
272
|
-
attachment_url: "Attachments URL"
|
273
|
-
authorization_failure: "Authorization Failure"
|
274
|
-
authorized: Authorized
|
275
|
-
availability: "Availability"
|
276
|
-
available_on: "Available On"
|
277
|
-
available_taxons: "Available Taxons"
|
278
|
-
awaiting_return: Awaiting Return
|
279
|
-
back: Back
|
280
|
-
back_end: Back End
|
281
|
-
back_to_adjustments_list: "Back To Adjustments List"
|
282
|
-
back_to_images_list: "Back To Images List"
|
283
|
-
back_to_mail_methods_list: "Back To Mail Methods List"
|
284
|
-
back_to_option_types_list: "Back To Option Types List"
|
285
|
-
back_to_payment_methods_list: "Back To Payment Methods List"
|
286
|
-
back_to_payments_list: "Back To Payments List"
|
287
|
-
back_to_products_list: "Back To Products List"
|
288
|
-
back_to_properties_list: "Back To Properties List"
|
289
|
-
back_to_prototypes_list: "Back To Prototypes List"
|
290
|
-
back_to_reports_list: "Back To Reports List"
|
291
|
-
back_to_shipping_categories: "Back To Shipping Categories"
|
292
|
-
back_to_shipping_methods_list: "Back To Shipping Methods List"
|
293
|
-
back_to_states_list: "Back To States List"
|
294
|
-
back_to_store: "Go Back To Store"
|
295
|
-
back_to_tax_categories_list: "Back To Tax Categories List"
|
296
|
-
back_to_taxonomies_list: "Back To Taxonomies List"
|
297
|
-
back_to_trackers_list: "Back To Trackers List"
|
298
|
-
back_to_users_list: "Back To Users List"
|
299
|
-
back_to_zones_list: "Back To Zones List"
|
300
|
-
backordered: Backordered
|
301
|
-
backordering_is_allowed: "Backordering %{not} allowed"
|
302
|
-
balance_due: "Balance Due"
|
303
|
-
bill_address: "Bill Address"
|
304
|
-
billing: Billing
|
305
|
-
billing_address: "Billing Address"
|
306
|
-
both: Both
|
307
|
-
calculator: Calculator
|
308
|
-
calculator_settings_warning: "If you are changing the calculator type, you must save first before you can edit the calculator settings"
|
309
|
-
cancel: cancel
|
310
|
-
cancel_my_account: Cancel my account
|
311
|
-
cancel_my_account_description: "Unhappy?"
|
312
|
-
canceled: Canceled
|
313
|
-
cannot_create_payment_without_payment_methods: You cannot create a payment for an order without any payment methods defined.
|
314
|
-
cannot_create_returns: Cannot create returns as this order has no shipped units.
|
315
|
-
cannot_perform_operation: "Cannot perform requested operation"
|
316
|
-
capture: Capture
|
317
|
-
card_code: "Card Code"
|
318
|
-
card_details: "Card details"
|
319
|
-
card_number: "Card Number"
|
320
|
-
card_type_is: Card type is
|
321
|
-
cart: Cart
|
322
|
-
categories: Categories
|
323
|
-
category: Category
|
324
|
-
change: Change
|
325
|
-
change_language: "Change Language"
|
326
|
-
change_my_password: "Change my password"
|
327
|
-
charge_total: Charge Total
|
328
|
-
charged: Charged
|
329
|
-
charges: Charges
|
330
|
-
checkout: Checkout
|
331
|
-
cheque: Cheque
|
332
|
-
choose_a_customer: "Choose a customer"
|
333
|
-
city: City
|
334
|
-
clone: Clone
|
335
|
-
code: Code
|
336
|
-
combine: Combine
|
337
|
-
complete: complete
|
338
|
-
complete_list: "Complete List"
|
339
|
-
configuration: Configuration
|
340
|
-
configuration_options: "Configuration Options"
|
341
|
-
configurations: Configurations
|
342
|
-
configure_s3: "Configure S3"
|
343
|
-
configured: Configured
|
344
|
-
confirm: Confirm
|
345
|
-
confirm_delete: "Confirm Deletion"
|
346
|
-
confirm_password: "Password Confirmation"
|
347
|
-
continue: Continue
|
348
|
-
continue_shopping: "Continue shopping"
|
349
|
-
copy_all_mails_to: Copy All Mails To
|
350
|
-
cost_currency: "Cost Currency"
|
351
|
-
cost_price: "Cost Price"
|
352
|
-
count_of_reduced_by: "count of '%{name}' reduced by %{count}"
|
353
|
-
country: Country
|
354
|
-
country_based: "Country Based"
|
355
|
-
create: Create
|
356
|
-
create_a_new_account: "Create a new account"
|
357
|
-
create_user_account: Create User Account
|
358
|
-
created_successfully: "Created Successfully"
|
359
|
-
credit: Credit
|
360
|
-
credit_card: "Credit Card"
|
361
|
-
credit_card_capture_complete: "Credit Card Was Captured"
|
362
|
-
credit_card_payment: "Credit Card Payment"
|
363
|
-
credit_owed: "Credit Owed"
|
364
|
-
credit_total: Credit Total
|
365
|
-
credit_card: Credit Card
|
366
|
-
credit_cards: Credit Cards
|
367
|
-
credits: Credits
|
368
|
-
current: Current
|
369
|
-
currency: Currency
|
370
|
-
currency_decimal_mark: "Currency decimal mark"
|
371
|
-
currency_symbol_position: "Put currency symbol before or after dollar amount?"
|
372
|
-
currency_settings: "Currency Settings"
|
373
|
-
currency_thousands_separator: "Currency thousands separator"
|
374
|
-
customer: Customer
|
375
|
-
customer_details: "Customer Details"
|
376
|
-
customer_details_updated: "The customer's details have been updated."
|
377
|
-
customer_search: "Customer Search"
|
378
|
-
cut: Cut
|
379
|
-
date_created: Date created
|
380
|
-
date_completed: Date Completed
|
381
|
-
date_range: "Date Range"
|
382
|
-
debit: Debit
|
383
|
-
default: Default
|
384
|
-
default_meta_description: Default Meta Description
|
385
|
-
default_meta_keywords: Default Meta Keywords
|
386
|
-
default_seo_title: Default Seo Title
|
387
|
-
default_tax: Default Tax
|
388
|
-
default_tax_zone: Default Tax Zone
|
389
|
-
defined_paperclip_styles: Defined Paperclip Styles
|
390
|
-
delete: Delete
|
391
|
-
delivery: Delivery
|
392
|
-
depth: Depth
|
393
|
-
description: Description
|
394
|
-
destroy: Destroy
|
395
|
-
didnt_receive_confirmation_instructions: "Didn't receive confirmation instructions?"
|
396
|
-
didnt_receive_unlock_instructions: "Didn't receive unlock instructions?"
|
397
|
-
discount_amount: "Discount Amount"
|
398
|
-
display: Display
|
399
|
-
display_currency: "Display currency"
|
400
|
-
dismiss_banner: "No. Thanks! I'm not interested, do not display this message again"
|
401
|
-
dollar_amounts_displayed_as: "Dollar amounts displayed as %{example}"
|
402
|
-
edit: Edit
|
403
|
-
editing_billing_integration: Editing Billing Integration
|
404
|
-
editing_category: "Editing Category"
|
405
|
-
editing_mail_method: Editing Mail Method
|
406
|
-
editing_option_type: "Editing Option Type"
|
407
|
-
editing_option_types: "Editing Option Types"
|
408
|
-
editing_payment_method: Editing Payment Method
|
409
|
-
editing_product: "Editing Product"
|
410
|
-
editing_product_group: "Editing Product Group"
|
411
|
-
editing_property: "Editing Property"
|
412
|
-
editing_prototype: "Editing Prototype"
|
413
|
-
editing_shipping_category: "Editing Shipping Category"
|
414
|
-
editing_shipping_method: "Editing Shipping Method"
|
415
|
-
editing_state: "Editing State"
|
416
|
-
editing_tax_category: "Editing Tax Category"
|
417
|
-
editing_tax_rate: "Editing Tax Rate"
|
418
|
-
editing_tracker: Editing Tracker
|
419
|
-
editing_user: "Editing User"
|
420
|
-
editing_zone: "Editing Zone"
|
421
|
-
email: Email
|
422
|
-
email_address: "Email Address"
|
423
|
-
email_server_settings_description: "Set email server settings."
|
424
|
-
empty: "Empty"
|
425
|
-
empty_cart: "Empty Cart"
|
426
|
-
enable_mail_delivery: Enable Mail Delivery
|
427
|
-
ending_in: "Ending in"
|
428
|
-
enter_exactly_as_shown_on_card: Please enter exactly as shown on the card
|
429
|
-
enter_at_least_five_letters: Enter at least five letters of customer name
|
430
|
-
enter_password_to_confirm: "(we need your current password to confirm your changes)"
|
431
|
-
enter_token: Enter Token
|
432
|
-
environment: "Environment"
|
433
|
-
error: error
|
195
|
+
devise:
|
196
|
+
confirmations:
|
197
|
+
confirmed: Your account was successfully confirmed. You are now signed in.
|
198
|
+
send_instructions: You will receive an email with instructions about how to confirm your account in a few minutes.
|
199
|
+
failure:
|
200
|
+
inactive: Your account was not activated yet.
|
201
|
+
invalid: Invalid email or password.
|
202
|
+
invalid_token: Invalid authentication token.
|
203
|
+
locked: Your account is locked.
|
204
|
+
timeout: Your session expired, please sign in again to continue.
|
205
|
+
unauthenticated: You need to sign in or sign up before continuing.
|
206
|
+
unconfirmed: You have to confirm your account before continuing.
|
207
|
+
mailer:
|
208
|
+
confirmation_instructions:
|
209
|
+
subject: Confirmation instructions
|
210
|
+
reset_password_instructions:
|
211
|
+
subject: Reset password instructions
|
212
|
+
unlock_instructions:
|
213
|
+
subject: Unlock Instructions
|
214
|
+
oauth_callbacks:
|
215
|
+
failure: Could not authorize you from %{kind} because "%{reason}".
|
216
|
+
success: Successfully authorized from %{kind} account.
|
217
|
+
unlocks:
|
218
|
+
send_instructions: You will receive an email with instructions about how to unlock your account in a few minutes.
|
219
|
+
unlocked: Your account was successfully unlocked. You are now signed in.
|
220
|
+
user_passwords:
|
221
|
+
user:
|
222
|
+
cannot_be_blank: Your password cannot be blank.
|
223
|
+
send_instructions: You will receive an email with instructions about how to reset your password in a few minutes.
|
224
|
+
updated: Your password was changed successfully. You are now signed in.
|
225
|
+
user_registrations:
|
226
|
+
destroyed: Bye! Your account was successfully cancelled. We hope to see you again soon.
|
227
|
+
inactive_signed_up: You have signed up successfully. However, we could not sign you in because your account is %{reason}.
|
228
|
+
signed_up: Welcome! You have signed up successfully.
|
229
|
+
updated: You updated your account successfully.
|
230
|
+
user_sessions:
|
231
|
+
signed_in: Signed in successfully.
|
232
|
+
signed_out: Signed out successfully.
|
434
233
|
errors:
|
435
234
|
messages:
|
436
|
-
|
437
|
-
|
438
|
-
|
439
|
-
|
440
|
-
|
441
|
-
|
442
|
-
error_user_destroy_with_orders: "Users with completed orders may not be deleted"
|
443
|
-
event: Event
|
444
|
-
events:
|
445
|
-
spree:
|
446
|
-
cart:
|
447
|
-
add: 'Add to cart'
|
448
|
-
order:
|
449
|
-
contents_changed: "Order contents changed"
|
450
|
-
user:
|
451
|
-
signup: 'User signup'
|
452
|
-
page_view: "Static page viewed"
|
453
|
-
exceptions:
|
454
|
-
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."
|
455
|
-
existing_customer: "Existing Customer"
|
456
|
-
expiration: "Expiration"
|
457
|
-
expiration_month: "Expiration Month"
|
458
|
-
expiration_year: "Expiration Year"
|
459
|
-
extension: Extension
|
460
|
-
extensions: Extensions
|
461
|
-
filename: Filename
|
462
|
-
final_confirmation: "Final Confirmation"
|
463
|
-
finalize: Finalize
|
464
|
-
finalized_payments: Finalized Payments
|
465
|
-
first_item: First Item Cost
|
466
|
-
first_name: "First Name"
|
467
|
-
first_name_begins_with: "First Name Begins With"
|
468
|
-
flat_percent: "Flat Percent"
|
469
|
-
flat_rate_amount: Amount
|
470
|
-
flat_rate_per_item: "Flat Rate (per item)"
|
471
|
-
flat_rate_per_order: "Flat Rate (per order)"
|
472
|
-
flexible_rate: "Flexible Rate"
|
473
|
-
forgot_password: "Forgot Password?"
|
474
|
-
from_state: From State
|
475
|
-
front_end: Front End
|
476
|
-
full_name: "Full Name"
|
477
|
-
gateway: Gateway
|
478
|
-
gateway_configuration: "Gateway configuration"
|
479
|
-
gateway_config_unavailable: "Gateway unavailable for environment"
|
480
|
-
gateway_error: "Gateway Error"
|
481
|
-
gateway_setting_description: "Select a payment gateway and configure its settings."
|
482
|
-
gateway_settings_warning: "If you are changing the gateway type, you must save first before you can edit the gateway settings"
|
483
|
-
general: "General"
|
484
|
-
general_settings: "General Settings"
|
485
|
-
edit_general_settings: "Edit General Settings"
|
486
|
-
general_settings_description: "Configure general Spree settings."
|
487
|
-
google_analytics: "Google Analytics"
|
488
|
-
google_analytics_active: "Active"
|
489
|
-
google_analytics_create: "Create New Google Analytics Account"
|
490
|
-
google_analytics_id: "Analytics ID"
|
491
|
-
google_analytics_new: "New Google Analytics Account"
|
492
|
-
google_analytics_setting_description: "Manage Google Analytics ID."
|
493
|
-
guest_checkout: Guest Checkout
|
494
|
-
guest_user_account: Checkout as a Guest
|
495
|
-
has_no_shipped_units: has no shipped units
|
496
|
-
height: Height
|
497
|
-
hello_user: "Hello User"
|
498
|
-
hide_cents: "Hide cents"
|
499
|
-
history: History
|
500
|
-
home: "Home"
|
501
|
-
icon: "Icon"
|
502
|
-
icons_by: "Icons by"
|
503
|
-
image: Image
|
504
|
-
images: Images
|
505
|
-
images_for: "Images for"
|
506
|
-
image_settings: "Image Settings"
|
507
|
-
image_settings_description: "Image Settings Description"
|
508
|
-
image_settings_updated: "Image Settings successfully updated."
|
509
|
-
image_settings_warning: "You will need to regenerate thumbnails if you update the paperclip styles. Use rake paperclip:refresh:thumbnails CLASS=Spree::Image to do this."
|
510
|
-
in_progress: "In Progress"
|
511
|
-
include_in_shipment: Include in Shipment
|
512
|
-
included_in_other_shipment: Included in another Shipment
|
513
|
-
included_in_price: Included in Price
|
514
|
-
included_in_this_shipment: Included in this Shipment
|
515
|
-
included_price_validation: "cannot be selected unless you have set a Default Tax Zone"
|
516
|
-
instructions_to_reset_password: "Fill out the form below and instructions to reset your password will be emailed to you:"
|
517
|
-
insufficient_stock: "Insufficient stock available, only %{on_hand} remaining"
|
518
|
-
integration_settings_warning: "If you are changing the billing integration, you must save first before you can edit the integration settings"
|
519
|
-
intercept_email_address: Intercept Email Address
|
520
|
-
intercept_email_instructions: "Override email recipient and replace with this address."
|
521
|
-
invalid_search: "Invalid search criteria."
|
522
|
-
inventory: Inventory
|
523
|
-
inventory_adjustment: "Inventory Adjustment"
|
524
|
-
inventory_setting_description: "Inventory Configuration, Backordering, Zero-Stock Display."
|
525
|
-
inventory_settings: "Inventory Settings"
|
526
|
-
is_not_available_to_shipment_address: is not available to shipment address
|
527
|
-
issue_number: Issue Number
|
528
|
-
item: Item
|
529
|
-
item_description: "Item Description"
|
530
|
-
item_total: "Item Total"
|
531
|
-
last_name: "Last Name"
|
532
|
-
last_name_begins_with: "Last Name Begins With"
|
533
|
-
learn_more: Learn More
|
534
|
-
leave_blank_to_not_change: "(leave blank if you don't want to change it)"
|
535
|
-
list: List
|
536
|
-
listing_categories: "Listing Categories"
|
537
|
-
listing_option_types: "Listing Option Types"
|
538
|
-
listing_orders: "Listing Orders"
|
539
|
-
listing_product_groups: "Listing Product Groups"
|
540
|
-
listing_products: "Listing Products"
|
541
|
-
listing_reports: "Listing Reports"
|
542
|
-
listing_tax_categories: "Listing Tax Categories"
|
543
|
-
listing_users: "Listing Users"
|
544
|
-
live: "Live"
|
545
|
-
loading: Loading
|
546
|
-
locale_changed: "Locale Changed"
|
547
|
-
look_for_similar_items: Look for similar items
|
548
|
-
maestro_or_solo_cards: Maestro/Solo cards
|
549
|
-
mail_delivery_enabled: "Mail delivery is enabled"
|
550
|
-
mail_delivery_not_enabled: "Mail delivery is not enabled"
|
551
|
-
mail_methods: Mail Methods
|
552
|
-
mail_server_preferences: Mail Server Preferences
|
553
|
-
make_refund: Make refund
|
554
|
-
mark_shipped: "Mark Shipped"
|
555
|
-
master_price: "Master Price"
|
556
|
-
match_choices:
|
557
|
-
none: "None"
|
558
|
-
one: "One"
|
559
|
-
all: "All"
|
560
|
-
match_rule: "Products That Must Match:"
|
561
|
-
max_items: Max Items
|
562
|
-
meta_description: "Meta Description"
|
563
|
-
meta_keywords: "Meta Keywords"
|
564
|
-
metadata: "Metadata"
|
565
|
-
missing_required_information: "Missing Required Information"
|
566
|
-
minimal_amount: "Minimal Amount"
|
567
|
-
month: "Month"
|
568
|
-
more: More
|
569
|
-
my_account: "My Account"
|
570
|
-
my_orders: "My Orders"
|
571
|
-
name: Name
|
572
|
-
name_or_sku: "Name or SKU (enter at least first 4 characters of product name)"
|
573
|
-
new: New
|
574
|
-
new_adjustment: "New Adjustment"
|
575
|
-
new_billing_integration: New Billing Integration
|
576
|
-
new_category: "New category"
|
577
|
-
new_customer: "New Customer"
|
578
|
-
new_group: New Group
|
579
|
-
new_image: "New Image"
|
580
|
-
new_mail_method: New Mail Method
|
581
|
-
new_option_type: "New Option Type"
|
582
|
-
new_option_value: "New Option Value"
|
583
|
-
new_order: "New Order"
|
584
|
-
new_order_completed: "New Order Completed"
|
585
|
-
new_payment: "New Payment"
|
586
|
-
new_payment_method: New Payment Method
|
587
|
-
new_product: "New Product"
|
588
|
-
new_product_group: New Product Group
|
589
|
-
new_property: "New Property"
|
590
|
-
new_prototype: "New Prototype"
|
591
|
-
new_return_authorization: New Return Authorization
|
592
|
-
new_shipment: "New Shipment"
|
593
|
-
new_shipping_category: "New Shipping Category"
|
594
|
-
new_shipping_method: "New Shipping Method"
|
595
|
-
new_state: "New State"
|
596
|
-
new_tax_category: "New Tax Category"
|
597
|
-
new_tax_rate: "New Tax Rate"
|
598
|
-
new_taxon: "New Taxon"
|
599
|
-
new_taxonomy: "New Taxonomy"
|
600
|
-
new_tracker: New Tracker
|
601
|
-
new_user: "New User"
|
602
|
-
new_variant: "New Variant"
|
603
|
-
new_zone: "New Zone"
|
604
|
-
next: Next
|
605
|
-
no_items_in_cart: ""
|
606
|
-
no_match_found: "No Match Found"
|
607
|
-
no_products_found: "No products found"
|
608
|
-
no_results: "No results"
|
609
|
-
no_promotions_found: "No promotions found"
|
610
|
-
no_payment_methods_found: "No payment methods found"
|
611
|
-
no_results: "No results"
|
612
|
-
no_shipments_for_this_order: "There are no shipments for this order"
|
613
|
-
no_shipping_methods_found: "No shipping methods found"
|
614
|
-
no_trackers_found: "No Trackers Found"
|
615
|
-
no_user_found: "No user was found with that email address"
|
616
|
-
none: None
|
617
|
-
none_available: "None Available"
|
618
|
-
normal_amount: "Normal Amount"
|
619
|
-
not: not
|
620
|
-
not_available: "N/A"
|
621
|
-
not_found: "%{resource} is not found"
|
622
|
-
not_shown: "Not Shown"
|
623
|
-
note: Note
|
624
|
-
notice_messages:
|
625
|
-
option_type_removed: "Succesfully removed option type."
|
626
|
-
product_cloned: "Product has been cloned"
|
627
|
-
product_deleted: "Product has been deleted"
|
628
|
-
product_not_cloned: "Product could not be cloned"
|
629
|
-
product_not_deleted: "Product could not be deleted"
|
630
|
-
variant_deleted: "Variant has been deleted"
|
631
|
-
variant_not_deleted: "Variant could not be deleted"
|
632
|
-
on_hand: "On Hand"
|
633
|
-
one_default_category_with_default_tax_rate: "You should configure exactly one default category with your countries default tax rate"
|
634
|
-
operation: Operation
|
635
|
-
option_type: "Option Type"
|
636
|
-
option_types: "Option Types"
|
637
|
-
option_value: "Option Value"
|
638
|
-
option_values: "Option Values"
|
639
|
-
options: Options
|
640
|
-
or: or
|
641
|
-
or_over_price: "%{price} or over"
|
642
|
-
order: Order
|
643
|
-
order_adjustments: "Order adjustments"
|
644
|
-
order_confirmation_note: ""
|
645
|
-
order_date: "Order Date"
|
646
|
-
order_details: "Order Details"
|
647
|
-
order_email_resent: "Order Email Resent"
|
648
|
-
order_mailer:
|
649
|
-
confirm_email:
|
650
|
-
subject: "Order Confirmation"
|
651
|
-
dear_customer: "Dear Customer,"
|
652
|
-
instructions: "Please review and retain the following order information for your records."
|
653
|
-
order_summary: "Order Summary"
|
654
|
-
subtotal: "Subtotal: %{subtotal}"
|
655
|
-
total: "Order Total: %{total}"
|
656
|
-
thanks: "Thank you for your business."
|
657
|
-
cancel_email:
|
658
|
-
subject: "Cancellation of Order"
|
659
|
-
dear_customer: "Dear Customer,"
|
660
|
-
instructions: "Your order has been CANCELED. Please retain this cancellation information for your records."
|
661
|
-
order_summary_canceled: "Order Summary [CANCELED]"
|
662
|
-
subtotal: "Subtotal: %{subtotal}"
|
663
|
-
total: "Order Total: %{total}"
|
664
|
-
order_not_found: "We couldn't find your order. Please try that action again."
|
665
|
-
order_not_in_system: "That order number is not valid on this site."
|
666
|
-
order_number: Order
|
667
|
-
order_operation_authorize: Authorize
|
668
|
-
order_populator:
|
669
|
-
please_enter_reasonable_quantity: "Please enter a reasonable quantity."
|
670
|
-
remainder_message: "There are only %{on_hand} of %{item} remaining. Please select a quantity less than or equal to this value."
|
671
|
-
out_of_stock: "%{item} is out of stock."
|
672
|
-
order_processed_but_following_items_are_out_of_stock: "Your order has been processed, but following items are out of stock:"
|
673
|
-
order_processed_successfully: "Your order has been processed successfully"
|
674
|
-
order_state:
|
675
|
-
# keys correspond to Checkout state names:
|
676
|
-
address: address
|
677
|
-
adjustments: adjustments
|
678
|
-
awaiting_return: awaiting return
|
679
|
-
canceled: canceled
|
680
|
-
cart: cart
|
681
|
-
complete: complete
|
682
|
-
confirm: confirm
|
683
|
-
delivery: delivery
|
684
|
-
payment: payment
|
685
|
-
resumed: resumed
|
686
|
-
returned: returned
|
687
|
-
skrill: skrill
|
688
|
-
order_summary: Order Summary
|
689
|
-
order_sure_want_to: "Are you sure you want to %{event} this order?"
|
690
|
-
order_total: "Order Total"
|
691
|
-
order_total_message: "The total amount charged to your card will be"
|
692
|
-
order_updated: "Order Updated"
|
693
|
-
orders: Orders
|
694
|
-
other_payment_options: Other Payment Options
|
695
|
-
out_of_stock: "Out of Stock"
|
696
|
-
over_paid: "Over Paid"
|
697
|
-
overview: Overview
|
698
|
-
page_only_viewable_when_logged_in: You attempted to visit a page which can only be viewed when you are logged in
|
699
|
-
page_only_viewable_when_logged_out: You attempted to visit a page which can only be viewed when you are logged out
|
700
|
-
pagination:
|
701
|
-
previous_page: "« previous page"
|
702
|
-
next_page: "next page »"
|
703
|
-
truncate: "…"
|
704
|
-
paid: Paid
|
705
|
-
parent_category: "Parent Category"
|
706
|
-
password: Password
|
707
|
-
password_reset_instructions: "Password Reset Instructions"
|
708
|
-
password_reset_instructions_are_mailed: "Instructions to reset your password have been emailed to you. Please check your email."
|
709
|
-
password_reset_token_not_found: "We're sorry, but we could not locate your account. If you are having issues try copying and pasting the URL from your email into your browser or restarting the reset password process."
|
710
|
-
password_updated: "Password successfully updated"
|
711
|
-
paste: Paste
|
712
|
-
path: Path
|
713
|
-
pay: pay
|
714
|
-
payment: Payment
|
715
|
-
payment_actions: "Actions"
|
716
|
-
payment_counter:
|
717
|
-
one: "Payment #1"
|
718
|
-
other: "Payment #%{count}"
|
719
|
-
payment_gateway: "Payment Gateway"
|
720
|
-
payment_information: "Payment Information"
|
721
|
-
payment_method: Payment Method
|
722
|
-
payment_methods: Payment Methods
|
723
|
-
payment_methods_setting_description: Configure methods customers can use to pay.
|
724
|
-
payment_processing_failed: "Payment could not be processed, please check the details you entered"
|
725
|
-
payment_processor_choose_banner_text: "If you need help choosing a payment processor, please visit"
|
726
|
-
payment_processor_choose_link: "our payments page"
|
727
|
-
payment_state: Payment State
|
728
|
-
payment_states:
|
729
|
-
balance_due: balance due
|
730
|
-
completed: completed
|
731
|
-
checkout: checkout
|
732
|
-
credit_owed: credit owed
|
733
|
-
failed: failed
|
734
|
-
paid: paid
|
735
|
-
pending: pending
|
736
|
-
processing: processing
|
737
|
-
void: void
|
738
|
-
payment_updated: Payment Updated
|
739
|
-
payments: Payments
|
740
|
-
pending_payments: Pending Payments
|
741
|
-
permalink: Permalink
|
742
|
-
phone: Phone
|
743
|
-
place_order: Place Order
|
744
|
-
please_create_user: "Please create a user account"
|
745
|
-
please_define_payment_methods: "Please define some payment methods first."
|
746
|
-
powered_by: "Powered by"
|
747
|
-
populate_get_error: "Something went wrong. Please try adding the item again."
|
748
|
-
presentation: Presentation
|
749
|
-
preview: Preview
|
750
|
-
previous: Previous
|
751
|
-
price: Price
|
752
|
-
price_sack: Price Sack
|
753
|
-
price_range: Price Range
|
754
|
-
problem_authorizing_card: "Problem authorizing credit card"
|
755
|
-
problem_capturing_card: "Problem capturing credit card"
|
756
|
-
problems_processing_order: "We had problems processing your order"
|
757
|
-
proceed_as_guest: "No Thanks, Proceed as Guest"
|
758
|
-
process: Process
|
759
|
-
product: Product
|
760
|
-
product_details: "Product Details"
|
761
|
-
product_group: Product Group
|
762
|
-
product_group_invalid: Product Group has invalid scopes
|
763
|
-
product_groups: Product Groups
|
764
|
-
product_has_no_description: This product has no description
|
765
|
-
product_properties: "Product Properties"
|
766
|
-
product_scopes:
|
767
|
-
groups:
|
768
|
-
price:
|
769
|
-
description: "Scopes for selecting products based on Price"
|
770
|
-
name: Price
|
771
|
-
search:
|
772
|
-
description: "Scopes for selecting products based on name, keywords and description of product"
|
773
|
-
name: "Text search"
|
774
|
-
taxon:
|
775
|
-
description: "Scopes for selecting products based on Taxons"
|
776
|
-
name: Taxon
|
777
|
-
values:
|
778
|
-
description: "Scopes for selecting products based on option and property values"
|
779
|
-
name: Values
|
780
|
-
scopes:
|
781
|
-
ascend_by_name:
|
782
|
-
name: Ascend by product name
|
783
|
-
ascend_by_updated_at:
|
784
|
-
name: Ascend by actualization date
|
785
|
-
descend_by_name:
|
786
|
-
name: Descend by product name
|
787
|
-
descend_by_updated_at:
|
788
|
-
name: Descend by actualization date
|
789
|
-
in_name:
|
790
|
-
args:
|
791
|
-
words: Words
|
792
|
-
description: "(separated by space or comma)"
|
793
|
-
name: "Product name have following"
|
794
|
-
sentence: product name contain <em>%s</em>
|
795
|
-
in_name_or_description:
|
796
|
-
args:
|
797
|
-
words: Words
|
798
|
-
description: "(separated by space or comma)"
|
799
|
-
name: "Product name or description have following"
|
800
|
-
sentence: name or description contain <em>%s</em>
|
801
|
-
in_name_or_keywords:
|
802
|
-
args:
|
803
|
-
words: Words
|
804
|
-
description: "(separated by space or comma)"
|
805
|
-
name: "Product name or meta keywords have following"
|
806
|
-
sentence: name or keywords contain <em>%s</em>
|
807
|
-
in_taxons:
|
808
|
-
args:
|
809
|
-
"taxon_names": "Taxon names"
|
810
|
-
description: "Taxon names have to be separated by comma or space(eg. adidas,shoes)"
|
811
|
-
name: "In taxons and all their descendants"
|
812
|
-
sentence: in <em>%s</em> and all their descendants
|
813
|
-
master_price_gte:
|
814
|
-
args:
|
815
|
-
amount: Amount
|
816
|
-
description: ""
|
817
|
-
name: "Master price greater or equal to"
|
818
|
-
sentence: price greater or equal to <em>%.2f</em>
|
819
|
-
master_price_lte:
|
820
|
-
args:
|
821
|
-
amount: Amount
|
822
|
-
description: ""
|
823
|
-
name: "Master price lesser or equal to"
|
824
|
-
sentence: price less or equal to <em>%.2f</em>
|
825
|
-
price_between:
|
826
|
-
args:
|
827
|
-
high: High
|
828
|
-
low: Low
|
829
|
-
description: ""
|
830
|
-
name: "Price between"
|
831
|
-
sentence: price between <em>%.2f</em> and <em>%.2f</em>
|
832
|
-
taxons_name_eq:
|
833
|
-
args:
|
834
|
-
taxon_name: "Taxon name"
|
835
|
-
description: "In specific taxon - without descendants"
|
836
|
-
name: "In Taxon(without descendants)"
|
837
|
-
sentence: in <em>%s</em>
|
838
|
-
with:
|
839
|
-
args:
|
840
|
-
value: Value
|
841
|
-
description: "Selects all products that have at least one variant that have specified value as either option or property (eg. red)"
|
842
|
-
name: With value
|
843
|
-
sentence: with value <em>%s</em>
|
844
|
-
with_ids:
|
845
|
-
args:
|
846
|
-
ids: IDs
|
847
|
-
description: "Select specific products"
|
848
|
-
name: Products with IDs
|
849
|
-
sentence: with IDs <em>%s</em>
|
850
|
-
with_option:
|
851
|
-
args:
|
852
|
-
option: Option
|
853
|
-
description: "Selects all products that have specified option(eg. color)"
|
854
|
-
name: "With option"
|
855
|
-
sentence: with option <em>%s</em>
|
856
|
-
with_option_value:
|
857
|
-
args:
|
858
|
-
option: Option
|
859
|
-
value: Value
|
860
|
-
description: "Selects all products that have at least one variant with specified option and value(eg. color:red)"
|
861
|
-
name: "With option and value"
|
862
|
-
sentence: with option <em>%s</em> and value <em>%s</em>
|
863
|
-
with_property:
|
864
|
-
args:
|
865
|
-
property: Property
|
866
|
-
description: "Selects all products that have specified property(eg. weight)"
|
867
|
-
name: "With property"
|
868
|
-
sentence: with property <em>%s</em>
|
869
|
-
with_property_value:
|
870
|
-
args:
|
871
|
-
property: Property
|
872
|
-
value: Value
|
873
|
-
description: "Selects all products that have at least one variant with specified property and value(eg. weight:10kg)"
|
874
|
-
name: "With property value"
|
875
|
-
sentence: with property <em>%s</em> and value <em>%s</em>
|
876
|
-
products: Products
|
877
|
-
products_with_zero_inventory_display: "Products with a zero inventory will %{not} be displayed"
|
878
|
-
product_not_available_in_this_currency: "This product is not available in the selected currency."
|
879
|
-
properties: Properties
|
880
|
-
property: Property
|
881
|
-
prototype: Prototype
|
882
|
-
prototypes: Prototypes
|
883
|
-
provider: "Provider"
|
884
|
-
provider_settings_warning: "If you are changing the provider type, you must save first before you can edit the provider settings"
|
885
|
-
qty: Qty
|
886
|
-
quantity_shipped: Quantity Shipped
|
887
|
-
quantity_returned: Quantity Returned
|
888
|
-
range: "Range"
|
889
|
-
rate: Rate
|
890
|
-
reason: Reason
|
891
|
-
recalculate_order_total: "Recalculate order total"
|
892
|
-
receive: receive
|
893
|
-
received: Received
|
894
|
-
refund: Refund
|
895
|
-
register: Register as a New User
|
896
|
-
register_or_guest: Checkout as Guest or Register
|
897
|
-
registration: Registration
|
898
|
-
remember_me: "Remember me"
|
899
|
-
remove: Remove
|
900
|
-
rename: Rename
|
901
|
-
reports: Reports
|
902
|
-
required_for_solo_and_maestro: Required for Solo and Maestro cards.
|
903
|
-
resend: Resend
|
904
|
-
resend_confirmation_instructions: "Resend confirmation instructions"
|
905
|
-
resend_unlock_instructions: "Resend unlock instructions"
|
906
|
-
reset_password: "Reset my password"
|
907
|
-
resource_controller:
|
908
|
-
member_object_not_found: "Member object not found."
|
909
|
-
successfully_created: "Successfully created!"
|
910
|
-
successfully_removed: "Successfully removed!"
|
911
|
-
successfully_updated: "Successfully updated!"
|
912
|
-
response_code: "Response Code"
|
913
|
-
resume: "resume"
|
914
|
-
resumed: Resumed
|
915
|
-
return: return
|
916
|
-
return_authorization: Return Authorization
|
917
|
-
return_authorization_updated: Return authorization updated
|
918
|
-
return_authorizations: Return Authorizations
|
919
|
-
return_quantity: Return Quantity
|
920
|
-
returned: Returned
|
921
|
-
review: Review
|
922
|
-
rma_credit: RMA Credit
|
923
|
-
rma_number: RMA Number
|
924
|
-
rma_value: RMA Value
|
925
|
-
roles: Roles
|
926
|
-
s3_access_key: "Access Key"
|
927
|
-
s3_bucket: "Bucket"
|
928
|
-
s3_headers: "S3 Headers"
|
929
|
-
s3_secret: "Secret Key"
|
930
|
-
s3_protocol: "S3 Protocol"
|
931
|
-
s3_used_for_product_images: "S3 is being used for product images"
|
932
|
-
s3_not_used_for_product_images: "S3 is not being used for product images"
|
933
|
-
sales_tax: "Sales Tax"
|
934
|
-
sales_total: "Sales Total"
|
935
|
-
sales_total_description: "Sales Total For All Orders"
|
936
|
-
save_and_continue: Save and Continue
|
937
|
-
save_preferences: Save Preferences
|
938
|
-
scope: Scope
|
939
|
-
scopes: Scopes
|
940
|
-
search: Search
|
941
|
-
search_results: "Search results for '%{keywords}'"
|
942
|
-
searching: Searching
|
943
|
-
secure_connection_type: Secure Connection Type
|
944
|
-
secure_credit_card: Secure Credit Card
|
945
|
-
security_settings: "Security Settings"
|
946
|
-
select: Select
|
947
|
-
select_from_prototype: "Select From Prototype"
|
948
|
-
select_preferred_shipping_option: "Select preferred shipping option"
|
949
|
-
send_copy_of_all_mails_to: Send Copy of All Mails To
|
950
|
-
send_copy_of_orders_mails_to: Send Copy of Order Mails To
|
951
|
-
send_mails_as: Send Mails As
|
952
|
-
send_me_reset_password_instructions: "Send me reset password instructions"
|
953
|
-
send_order_mails_as: Send Order Mails As
|
954
|
-
server: Server
|
955
|
-
server_error: "The server returned an error"
|
956
|
-
settings: Settings
|
957
|
-
ship: ship
|
958
|
-
ship_address: "Ship Address"
|
959
|
-
shipment: Shipment
|
960
|
-
shipment_details: Shipment Details
|
961
|
-
shipment_inc_vat: "Shipment including VAT"
|
962
|
-
shipment_mailer:
|
963
|
-
shipped_email:
|
964
|
-
subject: "Shipment Notification"
|
965
|
-
dear_customer: "Dear Customer,"
|
966
|
-
instructions: "Your order has been shipped"
|
967
|
-
shipment_summary: "Shipment Summary"
|
968
|
-
track_information: "Tracking Information: %{tracking}"
|
969
|
-
thanks: "Thank you for your business."
|
970
|
-
shipment_number: "Shipment #"
|
971
|
-
shipment_state: Shipment State
|
972
|
-
shipment_states:
|
973
|
-
backorder: backorder
|
974
|
-
partial: partial
|
975
|
-
pending: pending
|
976
|
-
ready: ready
|
977
|
-
shipped: shipped
|
978
|
-
shipment_updated: Shipment Updated
|
979
|
-
shipments: "Shipments"
|
980
|
-
shipped: Shipped
|
981
|
-
shipping: Shipping
|
982
|
-
shipping_address: "Shipping Address"
|
983
|
-
shipping_categories: "Shipping Categories"
|
984
|
-
shipping_categories_description: "Manage shipping categories to identify which products can be shipped via which method."
|
985
|
-
shipping_category: Shipping Category
|
986
|
-
shipping_category_choose: "Shipping Category"
|
987
|
-
shipping_cost: Cost
|
988
|
-
shipping_error: "Shipping Error"
|
989
|
-
shipping_instructions: "Shipping Instructions"
|
990
|
-
shipping_method: "Shipping Method"
|
991
|
-
shipping_methods: "Shipping Methods"
|
992
|
-
shipping_methods_description: "Manage shipping methods."
|
993
|
-
shipping_total: "Shipping Total"
|
994
|
-
shop_by_taxonomy: "Shop by %{taxonomy}"
|
995
|
-
shopping_cart: "Shopping Cart"
|
996
|
-
short_description: "Short description"
|
997
|
-
show: Show
|
998
|
-
show_active: "Show Active"
|
999
|
-
show_deleted: "Show Deleted"
|
1000
|
-
show_incomplete_orders: "Show Incomplete Orders"
|
1001
|
-
show_only_complete_orders: "Only show complete orders"
|
1002
|
-
show_out_of_stock_products: "Show out-of-stock products"
|
1003
|
-
show_only_unfulfilled_orders: "Show only unfulfilled orders"
|
1004
|
-
showing_first_n: "Showing first %{n}"
|
1005
|
-
sign_up: "Sign up"
|
1006
|
-
site_name: "Site Name"
|
1007
|
-
site_url: "Site URL"
|
1008
|
-
sku: SKU
|
1009
|
-
smtp: SMTP
|
1010
|
-
smtp_authentication_type: SMTP Authentication Type
|
1011
|
-
smtp_domain: SMTP Domain
|
1012
|
-
smtp_mail_host: SMTP Mail Host
|
1013
|
-
smtp_password: SMTP Password
|
1014
|
-
smtp_port: SMTP Port
|
1015
|
-
smtp_send_all_emails_as_from_following_address: "Send all mails as from the following address."
|
1016
|
-
smtp_send_copy_to_this_addresses: "Sends a copy of all outgoing mails to this address. For multiple addresses, separate with commas."
|
1017
|
-
smtp_username: SMTP Username
|
1018
|
-
sold: Sold
|
1019
|
-
sort_ordering: "Sort ordering"
|
1020
|
-
special_instructions: "Special Instructions"
|
235
|
+
already_confirmed: was already confirmed
|
236
|
+
not_found: not found
|
237
|
+
not_locked: was not locked
|
238
|
+
not_saved:
|
239
|
+
one: ! '1 error prohibited this %{resource} from being saved:'
|
240
|
+
other: ! '%{count} errors prohibited this %{resource} from being saved:'
|
1021
241
|
spree:
|
242
|
+
abbreviation: Abbreviation
|
243
|
+
account: Account
|
244
|
+
account_updated: Account updated
|
245
|
+
action: Action
|
246
|
+
actions:
|
247
|
+
cancel: Cancel
|
248
|
+
continue: Continue
|
249
|
+
create: Create
|
250
|
+
destroy: Destroy
|
251
|
+
edit: Edit
|
252
|
+
list: List
|
253
|
+
listing: Listing
|
254
|
+
new: New
|
255
|
+
save: Save
|
256
|
+
update: Update
|
257
|
+
activate: Activate
|
258
|
+
active: Active
|
259
|
+
add: Add
|
260
|
+
add_action_of_type: Add action of type
|
261
|
+
add_country: Add Country
|
262
|
+
add_new_header: Add New Header
|
263
|
+
add_new_style: Add New Style
|
264
|
+
add_one: Add One
|
265
|
+
add_option_value: Add Option Value
|
266
|
+
add_product: Add Product
|
267
|
+
add_product_properties: Add Product Properties
|
268
|
+
add_rule_of_type: Add rule of type
|
269
|
+
add_state: Add State
|
270
|
+
add_stock: Add Stock
|
271
|
+
add_stock_management: Add Stock Management
|
272
|
+
add_to_cart: Add To Cart
|
273
|
+
add_variant: Add Variant
|
274
|
+
additional_item: Additional Item Cost
|
275
|
+
address1: Address
|
276
|
+
address2: Address (contd.)
|
277
|
+
adjustment: Adjustment
|
278
|
+
adjustment_amount: Amount
|
279
|
+
adjustment_successfully_closed: Adjustment has been successfully closed!
|
280
|
+
adjustment_successfully_opened: Adjustment has been successfully opened!
|
281
|
+
adjustment_total: Adjustment Total
|
282
|
+
adjustments: Adjustments
|
283
|
+
admin:
|
284
|
+
mail_methods:
|
285
|
+
send_testmail: Send Test Mail
|
286
|
+
testmail:
|
287
|
+
delivery_error: Test Mail delivery error
|
288
|
+
delivery_success: Test Mail sent successfully
|
289
|
+
error: ! 'Test Mail error: %{e}'
|
290
|
+
administration: Administration
|
291
|
+
agree_to_privacy_policy: Agree to Privacy Policy
|
292
|
+
agree_to_terms_of_service: Agree to Terms of Service
|
293
|
+
all: All
|
294
|
+
all_adjustments_closed: All adjustments successfully closed!
|
295
|
+
all_adjustments_opened: All adjustments successfully opened!
|
296
|
+
all_departments: All departments
|
297
|
+
allow_ssl_in_development_and_test: Allow SSL to be used when in development and test modes
|
298
|
+
allow_ssl_in_production: Allow SSL to be used in production mode
|
299
|
+
allow_ssl_in_staging: Allow SSL to be used in staging mode
|
300
|
+
already_signed_up_for_analytics: You have already signed up for Spree Analytics
|
301
|
+
alt_text: Alternative Text
|
302
|
+
alternative_phone: Alternative Phone
|
303
|
+
amount: Amount
|
304
|
+
analytics_desc_header_1: Spree Analytics
|
305
|
+
analytics_desc_header_2: Live analytics integrated into your Spree dashboard
|
306
|
+
analytics_desc_list_1: Get live sales information as it happens
|
307
|
+
analytics_desc_list_2: Requires only a free Spree account to activate
|
308
|
+
analytics_desc_list_3: Absolutely no code to install
|
309
|
+
analytics_desc_list_4: It's completely free!
|
310
|
+
analytics_trackers: Analytics Trackers
|
311
|
+
and: and
|
312
|
+
are_you_sure: Are you sure?
|
313
|
+
are_you_sure_delete: Are you sure you want to delete this record?
|
314
|
+
associated_adjustment_closed: The associated adjustment is closed, and will not be recalculated. Do you want to open it?
|
315
|
+
attachment_default_style: Attachments Style
|
316
|
+
attachment_default_url: Attachments Default URL
|
317
|
+
attachment_path: Attachments Path
|
318
|
+
attachment_styles: Paperclip Styles
|
319
|
+
attachment_url: Attachments URL
|
320
|
+
authorization_failure: Authorization Failure
|
321
|
+
available_on: Available On
|
322
|
+
back: Back
|
323
|
+
back_end: Backend
|
324
|
+
back_to_adjustments_list: Back To Adjustments List
|
325
|
+
back_to_images_list: Back To Images List
|
326
|
+
back_to_option_types_list: Back To Option Types List
|
327
|
+
back_to_orders_list: Back To Orders List
|
328
|
+
back_to_payment_methods_list: Back To Payment Methods List
|
329
|
+
back_to_payments_list: Back To Payments List
|
330
|
+
back_to_products_list: Back To Products List
|
331
|
+
back_to_promotions_list: Back To Promotions List
|
332
|
+
back_to_properties_list: Back To Properties List
|
333
|
+
back_to_prototypes_list: Back To Prototypes List
|
334
|
+
back_to_reports_list: Back To Reports List
|
335
|
+
back_to_shipping_categories: Back To Shipping Categories
|
336
|
+
back_to_shipping_methods_list: Back To Shipping Methods List
|
337
|
+
back_to_states_list: Back To States List
|
338
|
+
back_to_stock_locations_list: Back to Stock Movements List
|
339
|
+
back_to_stock_movements_list: Back to Stock Movements List
|
340
|
+
back_to_stock_transfers_list: Back to Stock Transfers List
|
341
|
+
back_to_store: Go Back To Store
|
342
|
+
back_to_tax_categories_list: Back To Tax Categories List
|
343
|
+
back_to_taxonomies_list: Back To Taxonomies List
|
344
|
+
back_to_trackers_list: Back To Trackers List
|
345
|
+
back_to_users_list: Back To Users List
|
346
|
+
back_to_zones_list: Back To Zones List
|
347
|
+
backorderable: Backorderable
|
348
|
+
balance_due: Balance Due
|
349
|
+
bill_address: Bill Address
|
350
|
+
billing: Billing
|
351
|
+
billing_address: Billing Address
|
352
|
+
both: Both
|
353
|
+
calculator: Calculator
|
354
|
+
calculator_settings_warning: If you are changing the calculator type, you must save first before you can edit the calculator settings
|
355
|
+
cancel: cancel
|
356
|
+
cannot_create_payment_without_payment_methods: You cannot create a payment for an order without any payment methods defined.
|
357
|
+
cannot_create_returns: Cannot create returns as this order has no shipped units.
|
358
|
+
cannot_perform_operation: Cannot perform requested operation
|
359
|
+
cannot_set_shipping_method_without_address: Cannot set shipping method until customer details are provided.
|
360
|
+
card_code: Card Code
|
361
|
+
card_number: Card Number
|
362
|
+
card_type_is: Card type is
|
363
|
+
cart: Cart
|
364
|
+
categories: Categories
|
365
|
+
category: Category
|
366
|
+
check_for_spree_alerts: Check for Spree alerts
|
367
|
+
checkout: Checkout
|
368
|
+
choose_a_customer: Choose a customer
|
369
|
+
choose_currency: Choose Currency
|
370
|
+
choose_dashboard_locale: Choose Dashboard Locale
|
371
|
+
city: City
|
372
|
+
clone: Clone
|
373
|
+
close: Close
|
374
|
+
close_all_adjustments: Close All Adjustments
|
375
|
+
code: Code
|
376
|
+
company: Company
|
377
|
+
complete: complete
|
378
|
+
configuration: Configuration
|
379
|
+
configurations: Configurations
|
380
|
+
configure_s3: Configure S3
|
381
|
+
confirm: Confirm
|
382
|
+
confirm_delete: Confirm Deletion
|
383
|
+
confirm_password: Password Confirmation
|
384
|
+
continue: Continue
|
385
|
+
continue_shopping: Continue shopping
|
386
|
+
cost_currency: Cost Currency
|
387
|
+
cost_price: Cost Price
|
388
|
+
could_not_connect_to_jirafe: Could not connect to Jirafe to sync data. This will be automatically retried later.
|
389
|
+
could_not_create_stock_movement: There was a problem saving this stock movement. Please try again.
|
390
|
+
count_on_hand: Count On Hand
|
391
|
+
countries: Countries
|
392
|
+
country: Country
|
393
|
+
country_based: Country Based
|
394
|
+
country_name: Name
|
395
|
+
country_names:
|
396
|
+
CA: Canada
|
397
|
+
FRA: France
|
398
|
+
ITA: Italy
|
399
|
+
US: United States of America
|
400
|
+
coupon: Coupon
|
401
|
+
coupon_code: Coupon code
|
402
|
+
coupon_code_already_applied: The coupon code has already been applied to this order
|
403
|
+
coupon_code_applied: The coupon code was successfully applied to your order.
|
404
|
+
coupon_code_better_exists: The previously applied coupon code results in a better deal
|
405
|
+
coupon_code_expired: The coupon code is expired
|
406
|
+
coupon_code_max_usage: Coupon code usage limit exceeded
|
407
|
+
coupon_code_not_eligible: This coupon code is not eligible for this order
|
408
|
+
coupon_code_not_found: The coupon code you entered doesn't exist. Please try again.
|
409
|
+
create: Create
|
410
|
+
create_a_new_account: Create a new account
|
411
|
+
created_at: Created At
|
412
|
+
credit: Credit
|
413
|
+
credit_card: Credit Card
|
414
|
+
credit_cards: Credit Cards
|
415
|
+
credit_owed: Credit Owed
|
416
|
+
currency: Currency
|
417
|
+
currency_decimal_mark: Currency decimal mark
|
418
|
+
currency_settings: Currency Settings
|
419
|
+
currency_symbol_position: Put currency symbol before or after dollar amount?
|
420
|
+
currency_thousands_separator: Currency thousands separator
|
421
|
+
current: Current
|
422
|
+
current_promotion_usage: ! 'Current Usage: %{count}'
|
423
|
+
customer: Customer
|
424
|
+
customer_details: Customer Details
|
425
|
+
customer_search: Customer Search
|
426
|
+
cut: Cut
|
427
|
+
dash:
|
428
|
+
jirafe:
|
429
|
+
app_id: App ID
|
430
|
+
app_token: App Token
|
431
|
+
explanation: The fields below may already be populated if you chose to register with Jirafe from the admin dashboard.
|
432
|
+
header: Jirafe Analytics Settings
|
433
|
+
site_id: Site ID
|
434
|
+
token: Token
|
435
|
+
jirafe_settings_updated: Jirafe Settings have been updated.
|
1022
436
|
date: Date
|
437
|
+
date_completed: Date Completed
|
1023
438
|
date_picker:
|
1024
439
|
format: ! '%Y/%m/%d'
|
1025
|
-
js_format:
|
440
|
+
js_format: yy/mm/dd
|
441
|
+
date_range: Date Range
|
442
|
+
default: Default
|
443
|
+
default_meta_description: Default Meta Description
|
444
|
+
default_meta_keywords: Default Meta Keywords
|
445
|
+
default_seo_title: Default Seo Title
|
446
|
+
default_tax: Default Tax
|
447
|
+
default_tax_zone: Default Tax Zone
|
448
|
+
delete: Delete
|
449
|
+
delivery: Delivery
|
450
|
+
depth: Depth
|
451
|
+
description: Description
|
452
|
+
destination: Destination
|
453
|
+
destroy: Destroy
|
454
|
+
discount_amount: Discount Amount
|
455
|
+
dismiss_banner: No. Thanks! I'm not interested, do not display this message again
|
456
|
+
display: Display
|
457
|
+
display_currency: Display currency
|
458
|
+
edit: Edit
|
459
|
+
editing_option_type: Editing Option Type
|
460
|
+
editing_payment_method: Editing Payment Method
|
461
|
+
editing_product: Editing Product
|
462
|
+
editing_promotion: Editing Promotion
|
463
|
+
editing_property: Editing Property
|
464
|
+
editing_prototype: Editing Prototype
|
465
|
+
editing_shipping_category: Editing Shipping Category
|
466
|
+
editing_shipping_method: Editing Shipping Method
|
467
|
+
editing_state: Editing State
|
468
|
+
editing_stock_location: Editing Stock Location
|
469
|
+
editing_stock_movement: Editing Stock Movement
|
470
|
+
editing_tax_category: Editing Tax Category
|
471
|
+
editing_tax_rate: Editing Tax Rate
|
472
|
+
editing_tracker: Editing Tracker
|
473
|
+
editing_user: Editing User
|
474
|
+
editing_zone: Editing Zone
|
475
|
+
email: Email
|
476
|
+
empty: Empty
|
477
|
+
empty_cart: Empty Cart
|
478
|
+
enable_mail_delivery: Enable Mail Delivery
|
479
|
+
end: End
|
480
|
+
ending_in: Ending in
|
481
|
+
environment: Environment
|
482
|
+
error: error
|
483
|
+
errors:
|
484
|
+
messages:
|
485
|
+
could_not_create_taxon: Could not create taxon
|
486
|
+
no_payment_methods_available: No payment methods are configured for this environment
|
487
|
+
no_shipping_methods_available: No shipping methods available for selected location, please change your address and try again.
|
488
|
+
errors_prohibited_this_record_from_being_saved:
|
489
|
+
one: 1 error prohibited this record from being saved
|
490
|
+
other: ! '%{count} errors prohibited this record from being saved'
|
491
|
+
event: Event
|
492
|
+
events:
|
493
|
+
spree:
|
494
|
+
cart:
|
495
|
+
add: Add to cart
|
496
|
+
checkout:
|
497
|
+
coupon_code_added: Coupon code added
|
498
|
+
content:
|
499
|
+
visited: Visit static content page
|
500
|
+
order:
|
501
|
+
contents_changed: Order contents changed
|
502
|
+
page_view: Static page viewed
|
503
|
+
user:
|
504
|
+
signup: User signup
|
505
|
+
exceptions:
|
506
|
+
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.
|
507
|
+
expiration: Expiration
|
508
|
+
extension: Extension
|
509
|
+
filename: Filename
|
510
|
+
fill_in_customer_info: Please fill in customer info
|
511
|
+
filter_results: Filter Results
|
512
|
+
finalize: Finalize
|
513
|
+
first_item: First Item Cost
|
514
|
+
first_name: First Name
|
515
|
+
first_name_begins_with: First Name Begins With
|
516
|
+
flat_percent: Flat Percent
|
517
|
+
flat_rate_per_item: Flat Rate (per item)
|
518
|
+
flat_rate_per_order: Flat Rate (per order)
|
519
|
+
flexible_rate: Flexible Rate
|
520
|
+
forgot_password: Forgot Password?
|
521
|
+
free_shipping: Free Shipping
|
522
|
+
front_end: Front End
|
523
|
+
gateway: Gateway
|
524
|
+
gateway_config_unavailable: Gateway unavailable for environment
|
525
|
+
gateway_error: Gateway Error
|
526
|
+
general: General
|
527
|
+
general_settings: General Settings
|
528
|
+
google_analytics: Google Analytics
|
529
|
+
google_analytics_id: Analytics ID
|
530
|
+
guest_checkout: Guest Checkout
|
531
|
+
guest_user_account: Checkout as a Guest
|
532
|
+
has_no_shipped_units: has no shipped units
|
533
|
+
height: Height
|
534
|
+
hide_cents: Hide cents
|
535
|
+
home: Home
|
536
|
+
icon: Icon
|
537
|
+
image: Image
|
538
|
+
image_settings: Image Settings
|
539
|
+
image_settings_updated: Image Settings successfully updated.
|
540
|
+
image_settings_warning: You will need to regenerate thumbnails if you update the paperclip styles. Use rake paperclip:refresh:thumbnails CLASS=Spree::Image to do this.
|
541
|
+
images: Images
|
542
|
+
included_in_price: Included in Price
|
543
|
+
included_price_validation: cannot be selected unless you have set a Default Tax Zone
|
544
|
+
instructions_to_reset_password: Please enter your email on the form below
|
545
|
+
insufficient_stock: Insufficient stock available, only %{on_hand} remaining
|
546
|
+
intercept_email_address: Intercept Email Address
|
547
|
+
intercept_email_instructions: Override email recipient and replace with this address.
|
548
|
+
invalid_payment_provider: Invalid payment provider.
|
549
|
+
invalid_promotion_action: Invalid promotion action.
|
550
|
+
invalid_promotion_rule: Invalid promotion rule.
|
551
|
+
inventory: Inventory
|
552
|
+
inventory_adjustment: Inventory Adjustment
|
553
|
+
inventory_error_flash_for_insufficient_quantity: An item in your cart has become unavailable.
|
554
|
+
is_not_available_to_shipment_address: is not available to shipment address
|
555
|
+
iso_name: Iso Name
|
556
|
+
item: Item
|
557
|
+
item_description: Item Description
|
558
|
+
item_total: Item Total
|
559
|
+
item_total_rule:
|
560
|
+
operators:
|
561
|
+
gt: greater than
|
562
|
+
gte: greater than or equal to
|
563
|
+
jirafe: Jirafe
|
564
|
+
landing_page_rule:
|
565
|
+
path: Path
|
566
|
+
last_name: Last Name
|
567
|
+
last_name_begins_with: Last Name Begins With
|
568
|
+
learn_more: Learn More
|
569
|
+
list: List
|
570
|
+
listing_countries: Listing Countries
|
571
|
+
listing_orders: Listing Orders
|
572
|
+
listing_products: Listing Products
|
573
|
+
listing_reports: Listing Reports
|
574
|
+
listing_tax_categories: Listing Tax Categories
|
575
|
+
listing_users: Listing Users
|
576
|
+
loading: Loading
|
577
|
+
locale_changed: Locale Changed
|
578
|
+
location: Location
|
579
|
+
lock: Lock
|
580
|
+
logged_in_as: Logged in as
|
581
|
+
logged_in_succesfully: Logged in successfully
|
582
|
+
logged_out: You have been logged out.
|
583
|
+
login: Login
|
584
|
+
login_as_existing: Login as Existing Customer
|
585
|
+
login_failed: Login authentication failed.
|
586
|
+
login_name: Login
|
587
|
+
logout: Logout
|
588
|
+
look_for_similar_items: Look for similar items
|
589
|
+
maestro_or_solo_cards: Maestro/Solo cards
|
590
|
+
mail_method_settings: Mail Method Settings
|
591
|
+
mail_methods: Mail Methods
|
592
|
+
make_refund: Make refund
|
593
|
+
master_price: Master Price
|
594
|
+
match_choices:
|
595
|
+
all: All
|
596
|
+
none: None
|
597
|
+
max_items: Max Items
|
598
|
+
meta_description: Meta Description
|
599
|
+
meta_keywords: Meta Keywords
|
600
|
+
metadata: Metadata
|
601
|
+
minimal_amount: Minimal Amount
|
602
|
+
month: Month
|
603
|
+
more: More
|
604
|
+
move_stock_between_locations: Move Stock Between Locations
|
605
|
+
my_account: My Account
|
606
|
+
my_orders: My Orders
|
607
|
+
name: Name
|
608
|
+
name_or_sku: Name or SKU (enter at least first 4 characters of product name)
|
609
|
+
new: New
|
610
|
+
new_adjustment: New Adjustment
|
611
|
+
new_customer: New Customer
|
612
|
+
new_image: New Image
|
613
|
+
new_option_type: New Option Type
|
614
|
+
new_order: New Order
|
615
|
+
new_order_completed: New Order Completed
|
616
|
+
new_payment: New Payment
|
617
|
+
new_payment_method: New Payment Method
|
618
|
+
new_product: New Product
|
619
|
+
new_promotion: New Promotion
|
620
|
+
new_property: New Property
|
621
|
+
new_prototype: New Prototype
|
622
|
+
new_return_authorization: New Return Authorization
|
623
|
+
new_shipping_category: New Shipping Category
|
624
|
+
new_shipping_method: New Shipping Method
|
625
|
+
new_state: New State
|
626
|
+
new_stock_location: New Stock Location
|
627
|
+
new_stock_movement: New Stock Movement
|
628
|
+
new_stock_transfer: New Stock Transfer
|
629
|
+
new_tax_category: New Tax Category
|
630
|
+
new_tax_rate: New Tax Rate
|
631
|
+
new_taxon: New Taxon
|
632
|
+
new_taxonomy: New Taxonomy
|
633
|
+
new_tracker: New Tracker
|
634
|
+
new_user: New User
|
635
|
+
new_variant: New Variant
|
636
|
+
new_zone: New Zone
|
637
|
+
next: Next
|
638
|
+
no_actions_added: No actions added
|
639
|
+
no_orders_found: No orders found
|
640
|
+
no_payment_methods_found: No payment methods found
|
641
|
+
no_products_found: No products found
|
642
|
+
no_promotions_found: No promotions found
|
643
|
+
no_results: No results
|
644
|
+
no_rules_added: No rules added
|
645
|
+
no_shipping_methods_found: No shipping methods found
|
646
|
+
no_trackers_found: No Trackers Found
|
647
|
+
no_tracking_present: No tracking details provided.
|
648
|
+
none: None
|
649
|
+
normal_amount: Normal Amount
|
650
|
+
not: not
|
651
|
+
not_available: N/A
|
652
|
+
not_enough_stock: There is not enough inventory at the source location to complete this transfer.
|
653
|
+
not_found: ! '%{resource} is not found'
|
654
|
+
notice_messages:
|
655
|
+
product_cloned: Product has been cloned
|
656
|
+
product_deleted: Product has been deleted
|
657
|
+
product_not_cloned: Product could not be cloned
|
658
|
+
product_not_deleted: Product could not be deleted
|
659
|
+
variant_deleted: Variant has been deleted
|
660
|
+
variant_not_deleted: Variant could not be deleted
|
661
|
+
on_hand: On Hand
|
662
|
+
open: Open
|
663
|
+
open_all_adjustments: Open All Adjustments
|
664
|
+
option_type: Option Type
|
665
|
+
option_types: Option Types
|
666
|
+
option_value: Option Value
|
667
|
+
option_values: Option Values
|
668
|
+
optional: Optional
|
669
|
+
options: Options
|
670
|
+
or: or
|
671
|
+
or_over_price: ! '%{price} or over'
|
672
|
+
order: Order
|
673
|
+
order_adjustments: Order adjustments
|
674
|
+
order_details: Order Details
|
675
|
+
order_email_resent: Order Email Resent
|
676
|
+
order_information: Order Information
|
677
|
+
order_mailer:
|
678
|
+
cancel_email:
|
679
|
+
dear_customer: Dear Customer,
|
680
|
+
instructions: Your order has been CANCELED. Please retain this cancellation information for your records.
|
681
|
+
order_summary_canceled: Order Summary [CANCELED]
|
682
|
+
subject: Cancellation of Order
|
683
|
+
subtotal: ! 'Subtotal: %{subtotal}'
|
684
|
+
total: ! 'Order Total: %{total}'
|
685
|
+
confirm_email:
|
686
|
+
dear_customer: Dear Customer,
|
687
|
+
instructions: Please review and retain the following order information for your records.
|
688
|
+
order_summary: Order Summary
|
689
|
+
subject: Order Confirmation
|
690
|
+
subtotal: ! 'Subtotal: %{subtotal}'
|
691
|
+
thanks: Thank you for your business.
|
692
|
+
total: ! 'Order Total: %{total}'
|
693
|
+
order_not_found: We couldn't find your order. Please try that action again.
|
694
|
+
order_number: Order
|
695
|
+
order_populator:
|
696
|
+
out_of_stock: ! '%{item} is out of stock.'
|
697
|
+
please_enter_reasonable_quantity: Please enter a reasonable quantity.
|
698
|
+
order_processed_successfully: Your order has been processed successfully
|
699
|
+
order_state:
|
700
|
+
address: address
|
701
|
+
awaiting_return: awaiting return
|
702
|
+
canceled: canceled
|
703
|
+
cart: cart
|
704
|
+
complete: complete
|
705
|
+
confirm: confirm
|
706
|
+
delivery: delivery
|
707
|
+
payment: payment
|
708
|
+
resumed: resumed
|
709
|
+
returned: returned
|
710
|
+
order_summary: Order Summary
|
711
|
+
order_sure_want_to: Are you sure you want to %{event} this order?
|
712
|
+
order_total: Order Total
|
713
|
+
order_updated: Order Updated
|
714
|
+
orders: Orders
|
715
|
+
out_of_stock: Out of Stock
|
716
|
+
overview: Overview
|
717
|
+
package_from: package from
|
718
|
+
pagination:
|
719
|
+
next_page: next page »
|
720
|
+
previous_page: ! '« previous page'
|
721
|
+
truncate: ! '…'
|
722
|
+
password: Password
|
723
|
+
paste: Paste
|
724
|
+
path: Path
|
725
|
+
pay: pay
|
726
|
+
payment: Payment
|
727
|
+
payment_information: Payment Information
|
728
|
+
payment_method: Payment Method
|
729
|
+
payment_methods: Payment Methods
|
730
|
+
payment_processing_failed: Payment could not be processed, please check the details you entered
|
731
|
+
payment_processor_choose_banner_text: If you need help choosing a payment processor, please visit
|
732
|
+
payment_processor_choose_link: our payments page
|
733
|
+
payment_state: Payment State
|
734
|
+
payment_states:
|
735
|
+
balance_due: balance due
|
736
|
+
checkout: checkout
|
737
|
+
completed: completed
|
738
|
+
credit_owed: credit owed
|
739
|
+
failed: failed
|
740
|
+
paid: paid
|
741
|
+
pending: pending
|
742
|
+
processing: processing
|
743
|
+
void: void
|
744
|
+
payment_updated: Payment Updated
|
745
|
+
payments: Payments
|
746
|
+
percent: Percent
|
747
|
+
percent_per_item: Percent Per Item
|
748
|
+
permalink: Permalink
|
749
|
+
phone: Phone
|
750
|
+
place_order: Place Order
|
751
|
+
please_define_payment_methods: Please define some payment methods first.
|
752
|
+
populate_get_error: Something went wrong. Please try adding the item again.
|
753
|
+
powered_by: Powered by
|
754
|
+
presentation: Presentation
|
755
|
+
previous: Previous
|
756
|
+
price: Price
|
757
|
+
price_range: Price Range
|
758
|
+
price_sack: Price Sack
|
759
|
+
process: Process
|
760
|
+
product: Product
|
761
|
+
product_details: Product Details
|
762
|
+
product_has_no_description: This product has no description
|
763
|
+
product_not_available_in_this_currency: This product is not available in the selected currency.
|
764
|
+
product_properties: Product Properties
|
765
|
+
product_rule:
|
766
|
+
choose_products: Choose products
|
767
|
+
label: Order must contain %{select} of these products
|
768
|
+
match_all: all
|
769
|
+
match_any: at least one
|
770
|
+
product_source:
|
771
|
+
group: From product group
|
772
|
+
manual: Manually choose
|
773
|
+
products: Products
|
774
|
+
promotion: Promotion
|
775
|
+
promotion_action: Promotion Action
|
776
|
+
promotion_action_types:
|
777
|
+
create_adjustment:
|
778
|
+
description: Creates a promotion credit adjustment on the order
|
779
|
+
name: Create adjustment
|
780
|
+
create_line_items:
|
781
|
+
description: Populates the cart with the specified quantity of variant
|
782
|
+
name: Create line items
|
783
|
+
give_store_credit:
|
784
|
+
description: Gives the user store credit of the amount specified
|
785
|
+
name: Give store credit
|
786
|
+
promotion_actions: Actions
|
787
|
+
promotion_form:
|
788
|
+
match_policies:
|
789
|
+
all: Match all of these rules
|
790
|
+
any: Match any of these rules
|
791
|
+
promotion_rule: Promotion Rule
|
792
|
+
promotion_rule_types:
|
793
|
+
first_order:
|
794
|
+
description: Must be the customer's first order
|
795
|
+
name: First order
|
796
|
+
item_total:
|
797
|
+
description: Order total meets these criteria
|
798
|
+
name: Item total
|
799
|
+
landing_page:
|
800
|
+
description: Customer must have visited the specified page
|
801
|
+
name: Landing Page
|
802
|
+
product:
|
803
|
+
description: Order includes specified product(s)
|
804
|
+
name: Product(s)
|
805
|
+
user:
|
806
|
+
description: Available only to the specified users
|
807
|
+
name: User
|
808
|
+
user_logged_in:
|
809
|
+
description: Available only to logged in users
|
810
|
+
name: User Logged In
|
811
|
+
promotions: Promotions
|
812
|
+
properties: Properties
|
813
|
+
property: Property
|
814
|
+
prototype: Prototype
|
815
|
+
prototypes: Prototypes
|
816
|
+
provider: Provider
|
817
|
+
provider_settings_warning: If you are changing the provider type, you must save first before you can edit the provider settings
|
818
|
+
qty: Qty
|
819
|
+
quantity: Quantity
|
820
|
+
quantity_returned: Quantity Returned
|
821
|
+
quantity_shipped: Quantity Shipped
|
822
|
+
rate: Rate
|
823
|
+
reason: Reason
|
824
|
+
receive: receive
|
825
|
+
receive_stock: Receive Stock
|
826
|
+
received: Received
|
827
|
+
reference: Reference
|
828
|
+
refund: Refund
|
829
|
+
register: Register
|
830
|
+
registration: Registration
|
831
|
+
remember_me: Remember me
|
832
|
+
remove: Remove
|
833
|
+
rename: Rename
|
834
|
+
reports: Reports
|
835
|
+
resend: Resend
|
836
|
+
reset_password: Reset my password
|
837
|
+
response_code: Response Code
|
838
|
+
resume: resume
|
839
|
+
resumed: Resumed
|
840
|
+
return: return
|
841
|
+
return_authorization: Return Authorization
|
842
|
+
return_authorization_updated: Return authorization updated
|
843
|
+
return_authorizations: Return Authorizations
|
844
|
+
return_quantity: Return Quantity
|
845
|
+
returned: Returned
|
846
|
+
review: Review
|
847
|
+
rma_credit: RMA Credit
|
848
|
+
rma_number: RMA Number
|
849
|
+
rma_value: RMA Value
|
850
|
+
roles: Roles
|
851
|
+
rules: Rules
|
852
|
+
s3_access_key: Access Key
|
853
|
+
s3_bucket: Bucket
|
854
|
+
s3_headers: S3 Headers
|
855
|
+
s3_protocol: S3 Protocol
|
856
|
+
s3_secret: Secret Key
|
857
|
+
sales_total: Sales Total
|
858
|
+
sales_total_description: Sales Total For All Orders
|
859
|
+
sales_totals: Sales Totals
|
860
|
+
save_and_continue: Save and Continue
|
861
|
+
say_no: 'No'
|
862
|
+
say_yes: 'Yes'
|
863
|
+
scope: Scope
|
864
|
+
search: Search
|
865
|
+
search_results: Search results for '%{keywords}'
|
866
|
+
searching: Searching
|
867
|
+
secure_connection_type: Secure Connection Type
|
868
|
+
security_settings: Security Settings
|
869
|
+
select: Select
|
870
|
+
select_from_prototype: Select From Prototype
|
871
|
+
select_stock: Select stock
|
872
|
+
send_copy_of_all_mails_to: Send Copy of All Mails To
|
873
|
+
send_mails_as: Send Mails As
|
874
|
+
server: Server
|
875
|
+
server_error: The server returned an error
|
876
|
+
settings: Settings
|
877
|
+
ship: ship
|
878
|
+
ship_address: Ship Address
|
879
|
+
ship_total: Ship Total
|
880
|
+
shipment: Shipment
|
881
|
+
shipment_inc_vat: Shipment including VAT
|
882
|
+
shipment_mailer:
|
883
|
+
shipped_email:
|
884
|
+
dear_customer: Dear Customer,
|
885
|
+
instructions: Your order has been shipped
|
886
|
+
shipment_summary: Shipment Summary
|
887
|
+
subject: Shipment Notification
|
888
|
+
thanks: Thank you for your business.
|
889
|
+
track_information: ! 'Tracking Information: %{tracking}'
|
890
|
+
track_link: ! 'Tracking Link: %{url}'
|
891
|
+
shipment_state: Shipment State
|
892
|
+
shipment_states:
|
893
|
+
backorder: backorder
|
894
|
+
partial: partial
|
895
|
+
pending: pending
|
896
|
+
ready: ready
|
897
|
+
shipped: shipped
|
898
|
+
shipments: Shipments
|
899
|
+
shipped: Shipped
|
900
|
+
shipping: Shipping
|
901
|
+
shipping_address: Shipping Address
|
902
|
+
shipping_categories: Shipping Categories
|
903
|
+
shipping_category: Shipping Category
|
904
|
+
shipping_flat_rate_per_item: Flat rate per package item
|
905
|
+
shipping_flat_rate_per_order: Flat rate
|
906
|
+
shipping_flexible_rate: Flexible Rate per package item
|
907
|
+
shipping_instructions: Shipping Instructions
|
908
|
+
shipping_method: Shipping Method
|
909
|
+
shipping_methods: Shipping Methods
|
910
|
+
shipping_price_sack: Price sack
|
911
|
+
shop_by_taxonomy: Shop by %{taxonomy}
|
912
|
+
shopping_cart: Shopping Cart
|
913
|
+
show: Show
|
914
|
+
show_active: Show Active
|
915
|
+
show_deleted: Show Deleted
|
916
|
+
show_only_complete_orders: Only show complete orders
|
917
|
+
show_rate_in_label: Show rate in label
|
918
|
+
site_name: Site Name
|
919
|
+
site_url: Site URL
|
920
|
+
sku: SKU
|
921
|
+
smtp: SMTP
|
922
|
+
smtp_authentication_type: SMTP Authentication Type
|
923
|
+
smtp_domain: SMTP Domain
|
924
|
+
smtp_mail_host: SMTP Mail Host
|
925
|
+
smtp_password: SMTP Password
|
926
|
+
smtp_port: SMTP Port
|
927
|
+
smtp_send_all_emails_as_from_following_address: Send all mails as from the following address.
|
928
|
+
smtp_send_copy_to_this_addresses: Sends a copy of all outgoing mails to this address. For multiple addresses, separate with commas.
|
929
|
+
smtp_username: SMTP Username
|
930
|
+
source: Source
|
931
|
+
special_instructions: Special Instructions
|
932
|
+
spree/order:
|
933
|
+
coupon_code: Coupon Code
|
934
|
+
spree_gateway_error_flash_for_checkout: There was a problem with your payment information. Please check your information and try again.
|
935
|
+
start: Start
|
936
|
+
start_date: Valid from
|
937
|
+
state: State
|
938
|
+
state_based: State Based
|
939
|
+
states: States
|
940
|
+
states_required: States Required
|
941
|
+
status: Status
|
942
|
+
stock_location: Stock Location
|
943
|
+
stock_location_info: Stock location info
|
944
|
+
stock_locations: Stock Locations
|
945
|
+
stock_management: Stock Management
|
946
|
+
stock_movements: Stock Movements
|
947
|
+
stock_movements_for_stock_location: Stock Movements for %{stock_location_name}
|
948
|
+
stock_successfully_transferred: Stock was successfully transferred between locations.
|
949
|
+
stock_transfer: Stock Transfer
|
950
|
+
stock_transfers: Stock Transfers
|
951
|
+
stop: Stop
|
952
|
+
store: Store
|
953
|
+
street_address: Street Address
|
954
|
+
street_address_2: Street Address (cont'd)
|
955
|
+
subtotal: Subtotal
|
956
|
+
subtract: Subtract
|
957
|
+
successfully_created: ! '%{resource} has been successfully created!'
|
958
|
+
successfully_removed: ! '%{resource} has been successfully removed!'
|
959
|
+
successfully_signed_up_for_analytics: Successfully signed up for Spree Analytics
|
960
|
+
successfully_updated: ! '%{resource} has been successfully updated!'
|
961
|
+
tax: Tax
|
962
|
+
tax_categories: Tax Categories
|
963
|
+
tax_category: Tax Category
|
964
|
+
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)
|
965
|
+
tax_rates: Tax Rates
|
966
|
+
tax_settings: Tax Settings
|
967
|
+
tax_total: Tax Total
|
968
|
+
taxon: Taxon
|
969
|
+
taxon_edit: Edit Taxon
|
970
|
+
taxon_placeholder: Add a Taxon
|
971
|
+
taxonomies: Taxonomies
|
972
|
+
taxonomy: Taxonomy
|
973
|
+
taxonomy_edit: Edit taxonomy
|
974
|
+
taxonomy_tree_error: The requested change has not been accepted and the tree has been returned to its previous state, please try again.
|
975
|
+
taxonomy_tree_instruction: ! '* Right click a child in the tree to access the menu for adding, deleting or sorting a child.'
|
976
|
+
taxons: Taxons
|
977
|
+
test: Test
|
978
|
+
test_mailer:
|
979
|
+
test_email:
|
980
|
+
greeting: Congratulations!
|
981
|
+
message: If you have received this email, then your email settings are correct.
|
982
|
+
subject: Test Mail
|
983
|
+
test_mode: Test Mode
|
984
|
+
thank_you_for_your_order: Thank you for your business. Please print out a copy of this confirmation page for your records.
|
985
|
+
there_were_problems_with_the_following_fields: There were problems with the following fields
|
986
|
+
thumbnail: Thumbnail
|
1026
987
|
time: Time
|
1027
|
-
|
1028
|
-
|
1029
|
-
|
1030
|
-
|
1031
|
-
|
1032
|
-
|
1033
|
-
|
1034
|
-
|
1035
|
-
|
1036
|
-
|
1037
|
-
|
1038
|
-
|
1039
|
-
|
1040
|
-
|
1041
|
-
|
1042
|
-
|
1043
|
-
|
1044
|
-
|
1045
|
-
|
1046
|
-
|
1047
|
-
|
1048
|
-
|
1049
|
-
|
1050
|
-
|
1051
|
-
|
1052
|
-
|
1053
|
-
|
1054
|
-
|
1055
|
-
|
1056
|
-
|
1057
|
-
|
1058
|
-
|
1059
|
-
|
1060
|
-
|
1061
|
-
|
1062
|
-
|
1063
|
-
|
1064
|
-
|
1065
|
-
|
1066
|
-
|
1067
|
-
|
1068
|
-
|
1069
|
-
|
1070
|
-
|
1071
|
-
|
1072
|
-
|
1073
|
-
|
1074
|
-
|
1075
|
-
|
1076
|
-
|
1077
|
-
|
1078
|
-
greeting: 'Congratulations!'
|
1079
|
-
message: 'If you have received this email, then your email settings are correct.'
|
1080
|
-
subject: 'Testmail'
|
1081
|
-
test_mode: Test Mode
|
1082
|
-
thank_you_for_your_order: "Thank you for your business. Please print out a copy of this confirmation page for your records."
|
1083
|
-
there_were_problems_with_the_following_fields: "There were problems with the following fields"
|
1084
|
-
thumbnail: "Thumbnail"
|
1085
|
-
to_add_variants_you_must_first_define: "To add variants, you must first define"
|
1086
|
-
to_state: "To State"
|
1087
|
-
total: Total
|
1088
|
-
tracking: Tracking
|
1089
|
-
transaction: Transaction
|
1090
|
-
transactions: Transactions
|
1091
|
-
tree: Tree
|
1092
|
-
try_again: "Try Again"
|
1093
|
-
type: Type
|
1094
|
-
type_to_search: Type to search
|
1095
|
-
unable_ship_method: "Unable to generate shipping methods due to a server error."
|
1096
|
-
unable_to_authorize_credit_card: "Unable to Authorize Credit Card"
|
1097
|
-
unable_to_capture_credit_card: "Unable to Capture Credit Card"
|
1098
|
-
unable_to_connect_to_gateway: "Unable to connect to gateway."
|
1099
|
-
unable_to_save_order: "Unable to Save Order"
|
1100
|
-
under_price: "Under %{price}"
|
1101
|
-
under_paid: "Under Paid"
|
1102
|
-
unrecognized_card_type: Unrecognized card type
|
1103
|
-
update: Update
|
1104
|
-
update_password: "Update my password and log me in"
|
1105
|
-
updated_successfully: "Updated Successfully"
|
1106
|
-
updating: Updating
|
1107
|
-
usage_limit: Usage Limit
|
1108
|
-
use_as_shipping_address: Use as Shipping Address
|
1109
|
-
use_billing_address: Use Billing Address
|
1110
|
-
use_different_shipping_address: "Use Different Shipping Address"
|
1111
|
-
use_new_cc: "Use a new card"
|
1112
|
-
use_s3: "Use Amazon S3 For Images"
|
1113
|
-
user: User
|
1114
|
-
user_account: User Account
|
1115
|
-
user_created_successfully: "User created successfully"
|
1116
|
-
users: Users
|
1117
|
-
validate_on_profile_create: Validate on profile create
|
1118
|
-
validation:
|
1119
|
-
cannot_be_less_than_shipped_units: "cannot be less than the number of shipped units."
|
1120
|
-
cannot_destroy_line_item_as_inventory_units_have_shipped: "Cannot destroy line item as some inventory units have shipped."
|
1121
|
-
is_too_large: "is too large -- stock on hand cannot cover requested quantity!"
|
1122
|
-
must_be_int: "must be an integer"
|
1123
|
-
must_be_non_negative: "must be a non-negative value"
|
1124
|
-
exceeds_available_stock: "exceeds available stock. Please ensure line items have a valid quantity."
|
1125
|
-
value: Value
|
1126
|
-
variant: Variant
|
1127
|
-
variants: Variants
|
1128
|
-
vat: "VAT"
|
1129
|
-
version: Version
|
1130
|
-
view_shipping_options: "View shipping options"
|
1131
|
-
void: Void
|
1132
|
-
website: Website
|
1133
|
-
weight: Weight
|
1134
|
-
welcome_to_sample_store: "Welcome to the sample store"
|
1135
|
-
what_is_a_cvv: "What is a (CVV) Credit Card Code?"
|
1136
|
-
what_is_this: "What's This?"
|
1137
|
-
width: Width
|
1138
|
-
year: "Year"
|
1139
|
-
you_have_been_logged_out: "You have been logged out."
|
1140
|
-
you_have_no_orders_yet: "You have no orders yet."
|
1141
|
-
your_cart_is_empty: "Your cart is empty"
|
1142
|
-
zip: Zip
|
1143
|
-
zone: Zone
|
1144
|
-
zone_based: "Zone Based"
|
1145
|
-
zone_setting_description: "Collections of countries, states or other zones to be used in various calculations."
|
1146
|
-
zones: Zones
|
988
|
+
to_add_variants_you_must_first_define: To add variants, you must first define
|
989
|
+
total: Total
|
990
|
+
tracking: Tracking
|
991
|
+
tracking_number: Tracking Number
|
992
|
+
tracking_url: Tracking URL
|
993
|
+
tracking_url_placeholder: e.g. http://quickship.com/package?num=:tracking
|
994
|
+
transfer_from_location: Transfer From
|
995
|
+
transfer_stock: Transfer Stock
|
996
|
+
transfer_to_location: Transfer To
|
997
|
+
tree: Tree
|
998
|
+
type: Type
|
999
|
+
type_to_search: Type to search
|
1000
|
+
unable_to_connect_to_gateway: Unable to connect to gateway.
|
1001
|
+
under_price: Under %{price}
|
1002
|
+
unlock: Unlock
|
1003
|
+
unrecognized_card_type: Unrecognized card type
|
1004
|
+
unshippable_items: Unshippable Items
|
1005
|
+
update: Update
|
1006
|
+
updating: Updating
|
1007
|
+
usage_limit: Usage Limit
|
1008
|
+
use_billing_address: Use Billing Address
|
1009
|
+
use_new_cc: Use a new card
|
1010
|
+
use_s3: Use Amazon S3 For Images
|
1011
|
+
user: User
|
1012
|
+
user_rule:
|
1013
|
+
choose_users: Choose users
|
1014
|
+
users: Users
|
1015
|
+
validation:
|
1016
|
+
cannot_be_less_than_shipped_units: cannot be less than the number of shipped units.
|
1017
|
+
cannot_destory_line_item_as_inventory_units_have_shipped: Cannot destory line item as some inventory units have shipped.
|
1018
|
+
exceeds_available_stock: exceeds available stock. Please ensure line items have a valid quantity.
|
1019
|
+
is_too_large: is too large -- stock on hand cannot cover requested quantity!
|
1020
|
+
must_be_int: must be an integer
|
1021
|
+
must_be_non_negative: must be a non-negative value
|
1022
|
+
value: Value
|
1023
|
+
variant: Variant
|
1024
|
+
variants: Variants
|
1025
|
+
version: Version
|
1026
|
+
void: Void
|
1027
|
+
weight: Weight
|
1028
|
+
what_is_a_cvv: What is a (CVV) Credit Card Code?
|
1029
|
+
what_is_this: What's This?
|
1030
|
+
width: Width
|
1031
|
+
year: Year
|
1032
|
+
you_have_no_orders_yet: You have no orders yet
|
1033
|
+
your_cart_is_empty: Your cart is empty
|
1034
|
+
your_order_is_empty_add_product: Your order is empty, please search for and add a product above
|
1035
|
+
zip: Zip
|
1036
|
+
zipcode: Zip Code
|
1037
|
+
zone: Zone
|
1038
|
+
zones: Zones
|