apispree_core 0.0.0
Sign up to get free protection for your applications and to get access to all the features.
- data/LICENSE +26 -0
- data/README.md +15 -0
- data/app/controllers/admin/adjustments_controller.rb +10 -0
- data/app/controllers/admin/base_controller.rb +63 -0
- data/app/controllers/admin/configurations_controller.rb +2 -0
- data/app/controllers/admin/general_settings_controller.rb +22 -0
- data/app/controllers/admin/images_controller.rb +49 -0
- data/app/controllers/admin/inventory_settings_controller.rb +13 -0
- data/app/controllers/admin/inventory_units_controller.rb +2 -0
- data/app/controllers/admin/line_items_controller.rb +60 -0
- data/app/controllers/admin/mail_methods_controller.rb +8 -0
- data/app/controllers/admin/mail_settings_controller.rb +14 -0
- data/app/controllers/admin/option_types_controller.rb +65 -0
- data/app/controllers/admin/orders_controller.rb +136 -0
- data/app/controllers/admin/overview_controller.rb +14 -0
- data/app/controllers/admin/payment_methods_controller.rb +43 -0
- data/app/controllers/admin/payments_controller.rb +107 -0
- data/app/controllers/admin/product_groups_controller.rb +46 -0
- data/app/controllers/admin/product_properties_controller.rb +10 -0
- data/app/controllers/admin/product_scopes_controller.rb +35 -0
- data/app/controllers/admin/products_controller.rb +113 -0
- data/app/controllers/admin/products_controller.rb~ +114 -0
- data/app/controllers/admin/properties_controller.rb +11 -0
- data/app/controllers/admin/prototypes_controller.rb +26 -0
- data/app/controllers/admin/reports_controller.rb +50 -0
- data/app/controllers/admin/resource_controller.rb +232 -0
- data/app/controllers/admin/return_authorizations_controller.rb +17 -0
- data/app/controllers/admin/shipments_controller.rb +117 -0
- data/app/controllers/admin/shipping_categories_controller.rb +2 -0
- data/app/controllers/admin/shipping_methods_controller.rb +14 -0
- data/app/controllers/admin/states_controller.rb +25 -0
- data/app/controllers/admin/tax_categories_controller.rb +2 -0
- data/app/controllers/admin/tax_rates_controller.rb +22 -0
- data/app/controllers/admin/tax_settings_controller.rb +13 -0
- data/app/controllers/admin/taxonomies_controller.rb +20 -0
- data/app/controllers/admin/taxons_controller.rb +161 -0
- data/app/controllers/admin/trackers_controller.rb +2 -0
- data/app/controllers/admin/users_controller.rb +65 -0
- data/app/controllers/admin/variants_controller.rb +51 -0
- data/app/controllers/admin/zones_controller.rb +23 -0
- data/app/controllers/checkout_controller.rb +97 -0
- data/app/controllers/content_controller.rb +21 -0
- data/app/controllers/locale_controller.rb +14 -0
- data/app/controllers/orders_controller.rb +64 -0
- data/app/controllers/products_controller.rb +39 -0
- data/app/controllers/spree/base_controller.rb +4 -0
- data/app/controllers/states_controller.rb +16 -0
- data/app/controllers/taxons_controller.rb +22 -0
- data/app/helpers/account_helper.rb +2 -0
- data/app/helpers/admin/base_helper.rb +194 -0
- data/app/helpers/admin/inventory_settings_helper.rb +5 -0
- data/app/helpers/admin/navigation_helper.rb +162 -0
- data/app/helpers/admin/orders_helper.rb +22 -0
- data/app/helpers/admin/overview_helper.rb +12 -0
- data/app/helpers/admin/payments_helper.rb +7 -0
- data/app/helpers/admin/product_groups_helper.rb +11 -0
- data/app/helpers/admin/product_properties_helper.rb +21 -0
- data/app/helpers/admin/products_helper.rb +11 -0
- data/app/helpers/admin/taxons_helper.rb +18 -0
- data/app/helpers/admin/users_helper.rb +8 -0
- data/app/helpers/admin/zones_helper.rb +11 -0
- data/app/helpers/checkout_helper.rb +31 -0
- data/app/helpers/hook_helper.rb +20 -0
- data/app/helpers/orders_helper.rb +3 -0
- data/app/helpers/products_helper.rb +30 -0
- data/app/helpers/search_helper.rb +10 -0
- data/app/helpers/spree/base_helper.rb +119 -0
- data/app/helpers/taxons_helper.rb +32 -0
- data/app/helpers/trackers_helper.rb +2 -0
- data/app/mailers/order_mailer.rb +19 -0
- data/app/mailers/shipment_mailer.rb +11 -0
- data/app/models/address.rb +115 -0
- data/app/models/adjustment.rb +47 -0
- data/app/models/app_configuration.rb +44 -0
- data/app/models/asset.rb +4 -0
- data/app/models/billing_integration.rb +23 -0
- data/app/models/calculator.rb +46 -0
- data/app/models/calculator/flat_percent_item_total.rb +19 -0
- data/app/models/calculator/flat_rate.rb +16 -0
- data/app/models/calculator/flexi_rate.rb +32 -0
- data/app/models/calculator/per_item.rb +16 -0
- data/app/models/calculator/price_bucket.rb +30 -0
- data/app/models/calculator/sales_tax.rb +48 -0
- data/app/models/calculator/vat.rb +63 -0
- data/app/models/configuration.rb +3 -0
- data/app/models/country.rb +16 -0
- data/app/models/creditcard.rb +267 -0
- data/app/models/gateway.rb +48 -0
- data/app/models/gateway/authorize_net.rb +19 -0
- data/app/models/gateway/authorize_net_cim.rb +132 -0
- data/app/models/gateway/beanstream.rb +187 -0
- data/app/models/gateway/bogus.rb +80 -0
- data/app/models/gateway/braintree.rb +88 -0
- data/app/models/gateway/eway.rb +11 -0
- data/app/models/gateway/linkpoint.rb +8 -0
- data/app/models/gateway/pay_pal.rb +11 -0
- data/app/models/gateway/sage_pay.rb +9 -0
- data/app/models/image.rb +31 -0
- data/app/models/inventory_unit.rb +119 -0
- data/app/models/line_item.rb +95 -0
- data/app/models/log_entry.rb +3 -0
- data/app/models/mail_method.rb +23 -0
- data/app/models/option_type.rb +9 -0
- data/app/models/option_value.rb +5 -0
- data/app/models/order.rb +484 -0
- data/app/models/payment.rb +119 -0
- data/app/models/payment_method.rb +56 -0
- data/app/models/payment_method/check.rb +27 -0
- data/app/models/preference.rb +51 -0
- data/app/models/product.rb +258 -0
- data/app/models/product_group.rb +216 -0
- data/app/models/product_option_type.rb +5 -0
- data/app/models/product_property.rb +15 -0
- data/app/models/product_scope.rb +78 -0
- data/app/models/property.rb +18 -0
- data/app/models/prototype.rb +5 -0
- data/app/models/return_authorization.rb +79 -0
- data/app/models/role.rb +3 -0
- data/app/models/shipment.rb +157 -0
- data/app/models/shipping_category.rb +3 -0
- data/app/models/shipping_method.rb +25 -0
- data/app/models/spree/alert.rb +13 -0
- data/app/models/state.rb +16 -0
- data/app/models/state_event.rb +16 -0
- data/app/models/tax_category.rb +15 -0
- data/app/models/tax_rate.rb +16 -0
- data/app/models/taxon.rb +52 -0
- data/app/models/taxonomy.rb +20 -0
- data/app/models/taxonomy.rb~ +22 -0
- data/app/models/tracker.rb +5 -0
- data/app/models/user.rb +21 -0
- data/app/models/variant.rb +104 -0
- data/app/models/zone.rb +84 -0
- data/app/models/zone_member.rb +10 -0
- data/app/stylesheets/_buttons.less +80 -0
- data/app/stylesheets/_cart.less +24 -0
- data/app/stylesheets/_checkout.less +76 -0
- data/app/stylesheets/_checkout_progress.less +62 -0
- data/app/stylesheets/_colors.less +16 -0
- data/app/stylesheets/_forms.less +50 -0
- data/app/stylesheets/_layout.less +77 -0
- data/app/stylesheets/_messages.less +32 -0
- data/app/stylesheets/_mixins.less +71 -0
- data/app/stylesheets/_navigation.less +130 -0
- data/app/stylesheets/_prices.less +18 -0
- data/app/stylesheets/_product_details.less +56 -0
- data/app/stylesheets/_product_lists.less +66 -0
- data/app/stylesheets/_registration.less +24 -0
- data/app/stylesheets/_reset.less +69 -0
- data/app/stylesheets/_typography.less +158 -0
- data/app/stylesheets/screen.less +13 -0
- data/app/views/admin/adjustments/_adjustments_table.html.erb +24 -0
- data/app/views/admin/adjustments/_form.html.erb +12 -0
- data/app/views/admin/adjustments/edit.html.erb +13 -0
- data/app/views/admin/adjustments/index.html.erb +4 -0
- data/app/views/admin/adjustments/new.html.erb +14 -0
- data/app/views/admin/configurations/index.html.erb +66 -0
- data/app/views/admin/extensions/index.html.erb +23 -0
- data/app/views/admin/general_settings/edit.html.erb +46 -0
- data/app/views/admin/general_settings/show.html.erb +36 -0
- data/app/views/admin/images/_form.html.erb +16 -0
- data/app/views/admin/images/edit.html.erb +19 -0
- data/app/views/admin/images/index.html.erb +69 -0
- data/app/views/admin/images/new.html.erb +22 -0
- data/app/views/admin/images/new.html.erb~ +22 -0
- data/app/views/admin/inventory_settings/edit.html.erb +27 -0
- data/app/views/admin/inventory_settings/show.html.erb +9 -0
- data/app/views/admin/inventory_units/adjust.html.erb +33 -0
- data/app/views/admin/mail_methods/_form.html.erb +96 -0
- data/app/views/admin/mail_methods/edit.html.erb +9 -0
- data/app/views/admin/mail_methods/index.html.erb +41 -0
- data/app/views/admin/mail_methods/new.html.erb +9 -0
- data/app/views/admin/option_types/_available.html.erb +27 -0
- data/app/views/admin/option_types/_form.html.erb +11 -0
- data/app/views/admin/option_types/_option_value_fields.html.erb +5 -0
- data/app/views/admin/option_types/_selected.html.erb +26 -0
- data/app/views/admin/option_types/available.js.erb +2 -0
- data/app/views/admin/option_types/edit.html.erb +32 -0
- data/app/views/admin/option_types/index.html.erb +33 -0
- data/app/views/admin/option_types/new.erb +11 -0
- data/app/views/admin/option_types/select.js.erb +3 -0
- data/app/views/admin/option_types/selected.html.erb +6 -0
- data/app/views/admin/orders/_add_product.html.erb +20 -0
- data/app/views/admin/orders/_form.html.erb +67 -0
- data/app/views/admin/orders/_line_item.html.erb +17 -0
- data/app/views/admin/orders/_user_form.html.erb +42 -0
- data/app/views/admin/orders/edit.html.erb +31 -0
- data/app/views/admin/orders/history.html.erb +29 -0
- data/app/views/admin/orders/index.html.erb +103 -0
- data/app/views/admin/orders/new.html.erb +20 -0
- data/app/views/admin/orders/show.html.erb +28 -0
- data/app/views/admin/orders/user.html.erb +24 -0
- data/app/views/admin/payment_methods/_form.html.erb +50 -0
- data/app/views/admin/payment_methods/edit.html.erb +10 -0
- data/app/views/admin/payment_methods/index.html.erb +49 -0
- data/app/views/admin/payment_methods/new.html.erb +11 -0
- data/app/views/admin/payments/_bill_address_form.html.erb +9 -0
- data/app/views/admin/payments/_form.html.erb +15 -0
- data/app/views/admin/payments/_list.html.erb +22 -0
- data/app/views/admin/payments/_transaction_list.html.erb +24 -0
- data/app/views/admin/payments/credit.html.erb +14 -0
- data/app/views/admin/payments/index.html.erb +22 -0
- data/app/views/admin/payments/new.html.erb +19 -0
- data/app/views/admin/payments/show.html.erb +10 -0
- data/app/views/admin/payments/source_forms/_check.html.erb +0 -0
- data/app/views/admin/payments/source_forms/_gateway.html.erb +43 -0
- data/app/views/admin/payments/source_views/_check.html.erb +0 -0
- data/app/views/admin/payments/source_views/_gateway.html.erb +34 -0
- data/app/views/admin/product_groups/_preview.html.erb +34 -0
- data/app/views/admin/product_groups/_product_scope.html.erb +24 -0
- data/app/views/admin/product_groups/edit.html.erb +56 -0
- data/app/views/admin/product_groups/index.html.erb +37 -0
- data/app/views/admin/product_groups/new.html.erb +12 -0
- data/app/views/admin/product_groups/show.html.erb +32 -0
- data/app/views/admin/product_groups/update.js.erb +8 -0
- data/app/views/admin/product_properties/_product_property_fields.html.erb +11 -0
- data/app/views/admin/product_properties/index.html.erb +55 -0
- data/app/views/admin/product_scopes/_form.html.erb +106 -0
- data/app/views/admin/product_scopes/create.js.erb +3 -0
- data/app/views/admin/product_scopes/destroy.js.erb +3 -0
- data/app/views/admin/product_scopes/new.html.erb +1 -0
- data/app/views/admin/products/_form.html.erb +112 -0
- data/app/views/admin/products/_option_types.html.erb +40 -0
- data/app/views/admin/products/_properties_form.erb +7 -0
- data/app/views/admin/products/edit.html.erb +10 -0
- data/app/views/admin/products/edit.html.erb~ +10 -0
- data/app/views/admin/products/index.html.erb +81 -0
- data/app/views/admin/products/index.html.erb~ +81 -0
- data/app/views/admin/products/new.erb +58 -0
- data/app/views/admin/products/new.erb~ +53 -0
- data/app/views/admin/products/show.html.erb +4 -0
- data/app/views/admin/products/show.html.erb~ +4 -0
- data/app/views/admin/properties/_form.html.erb +12 -0
- data/app/views/admin/properties/edit.html.erb +10 -0
- data/app/views/admin/properties/filtered.html.erb +1 -0
- data/app/views/admin/properties/index.html.erb +40 -0
- data/app/views/admin/properties/new.erb +11 -0
- data/app/views/admin/prototypes/_form.html.erb +44 -0
- data/app/views/admin/prototypes/available.html.erb +22 -0
- data/app/views/admin/prototypes/edit.html.erb +9 -0
- data/app/views/admin/prototypes/index.html.erb +37 -0
- data/app/views/admin/prototypes/new.erb +11 -0
- data/app/views/admin/prototypes/select.js.erb +4 -0
- data/app/views/admin/reports/index.html.erb +19 -0
- data/app/views/admin/reports/sales_total.html.erb +23 -0
- data/app/views/admin/return_authorizations/_form.html.erb +78 -0
- data/app/views/admin/return_authorizations/edit.html.erb +27 -0
- data/app/views/admin/return_authorizations/index.html.erb +45 -0
- data/app/views/admin/return_authorizations/new.html.erb +13 -0
- data/app/views/admin/shared/_additional_field.html.erb +5 -0
- data/app/views/admin/shared/_address.html.erb +5 -0
- data/app/views/admin/shared/_address_form.html.erb +79 -0
- data/app/views/admin/shared/_alert.html.erb +6 -0
- data/app/views/admin/shared/_calculator_fields.html.erb +19 -0
- data/app/views/admin/shared/_configuration_menu.html.erb +22 -0
- data/app/views/admin/shared/_destroy.js.erb +16 -0
- data/app/views/admin/shared/_edit_resource_links.html.erb +4 -0
- data/app/views/admin/shared/_group_from_products_form.html.erb +12 -0
- data/app/views/admin/shared/_new_adjustment_button.html.erb +8 -0
- data/app/views/admin/shared/_new_resource_links.html.erb +4 -0
- data/app/views/admin/shared/_order_details.html.erb +3 -0
- data/app/views/admin/shared/_order_sub_menu.html.erb +0 -0
- data/app/views/admin/shared/_order_tabs.html.erb +64 -0
- data/app/views/admin/shared/_product_sub_menu.html.erb +11 -0
- data/app/views/admin/shared/_product_tabs.html.erb +34 -0
- data/app/views/admin/shared/_report_criteria.html.erb +15 -0
- data/app/views/admin/shared/_show_resource_links.html.erb +5 -0
- data/app/views/admin/shared/_tabs.html.erb +6 -0
- data/app/views/admin/shared/_update_order_state.js +6 -0
- data/app/views/admin/shipments/_form.html.erb +77 -0
- data/app/views/admin/shipments/edit.html.erb +40 -0
- data/app/views/admin/shipments/index.html.erb +47 -0
- data/app/views/admin/shipments/new.html.erb +18 -0
- data/app/views/admin/shipping_categories/_form.html.erb +6 -0
- data/app/views/admin/shipping_categories/edit.html.erb +6 -0
- data/app/views/admin/shipping_categories/index.html.erb +29 -0
- data/app/views/admin/shipping_categories/new.html.erb +8 -0
- data/app/views/admin/shipping_methods/_form.html.erb +26 -0
- data/app/views/admin/shipping_methods/edit.html.erb +16 -0
- data/app/views/admin/shipping_methods/index.html.erb +49 -0
- data/app/views/admin/shipping_methods/new.html.erb +17 -0
- data/app/views/admin/states/_form.html.erb +9 -0
- data/app/views/admin/states/_state_list.html.erb +34 -0
- data/app/views/admin/states/edit.html.erb +10 -0
- data/app/views/admin/states/index.html.erb +16 -0
- data/app/views/admin/states/new.erb +8 -0
- data/app/views/admin/tax_categories/_form.html.erb +12 -0
- data/app/views/admin/tax_categories/edit.html.erb +10 -0
- data/app/views/admin/tax_categories/index.html.erb +44 -0
- data/app/views/admin/tax_categories/new.html.erb +10 -0
- data/app/views/admin/tax_categories/show.html.erb +1 -0
- data/app/views/admin/tax_rates/_form.html.erb +16 -0
- data/app/views/admin/tax_rates/edit.html.erb +6 -0
- data/app/views/admin/tax_rates/index.html.erb +34 -0
- data/app/views/admin/tax_rates/new.html.erb +8 -0
- data/app/views/admin/tax_settings/edit.html.erb +17 -0
- data/app/views/admin/tax_settings/show.html.erb +14 -0
- data/app/views/admin/taxonomies/_form.html.erb +10 -0
- data/app/views/admin/taxonomies/_form.html.erb~ +11 -0
- data/app/views/admin/taxonomies/_js_head.html.erb +9 -0
- data/app/views/admin/taxonomies/_list.html.erb +19 -0
- data/app/views/admin/taxonomies/_list.html.erb~ +20 -0
- data/app/views/admin/taxonomies/_taxon.html.erb +12 -0
- data/app/views/admin/taxonomies/edit.erb +49 -0
- data/app/views/admin/taxonomies/get_children.json.erb +9 -0
- data/app/views/admin/taxonomies/index.html.erb +16 -0
- data/app/views/admin/taxonomies/new.html.erb +12 -0
- data/app/views/admin/taxons/_form.html.erb +23 -0
- data/app/views/admin/taxons/_taxon_table.html.erb +23 -0
- data/app/views/admin/taxons/available.js.erb +33 -0
- data/app/views/admin/taxons/edit.html.erb +11 -0
- data/app/views/admin/taxons/remove.html.erb +1 -0
- data/app/views/admin/taxons/select.js.erb +2 -0
- data/app/views/admin/taxons/selected.html.erb +43 -0
- data/app/views/admin/trackers/_form.html.erb +26 -0
- data/app/views/admin/trackers/edit.html.erb +8 -0
- data/app/views/admin/trackers/index.html.erb +41 -0
- data/app/views/admin/trackers/new.html.erb +9 -0
- data/app/views/admin/users/_form.html.erb +35 -0
- data/app/views/admin/users/edit.html.erb +14 -0
- data/app/views/admin/users/index.html.erb +63 -0
- data/app/views/admin/users/new.html.erb +14 -0
- data/app/views/admin/users/show.html.erb +21 -0
- data/app/views/admin/variants/_form.html.erb +40 -0
- data/app/views/admin/variants/edit.html.erb +13 -0
- data/app/views/admin/variants/index.html.erb +66 -0
- data/app/views/admin/variants/new.erb +11 -0
- data/app/views/admin/zones/_country_member.html.erb +5 -0
- data/app/views/admin/zones/_form.html.erb +29 -0
- data/app/views/admin/zones/_member_type.html.erb +15 -0
- data/app/views/admin/zones/_state_member.html.erb +5 -0
- data/app/views/admin/zones/_zone_member.html.erb +5 -0
- data/app/views/admin/zones/edit.html.erb +10 -0
- data/app/views/admin/zones/index.html.erb +41 -0
- data/app/views/admin/zones/new.html.erb +10 -0
- data/app/views/checkout/_address.html.erb +163 -0
- data/app/views/checkout/_confirm.html.erb +11 -0
- data/app/views/checkout/_delivery.html.erb +25 -0
- data/app/views/checkout/_payment.html.erb +30 -0
- data/app/views/checkout/_summary.html.erb +21 -0
- data/app/views/checkout/edit.html.erb +20 -0
- data/app/views/checkout/payment/_check.html.erb +0 -0
- data/app/views/checkout/payment/_gateway.html.erb +31 -0
- data/app/views/checkout/registration.html.erb +20 -0
- data/app/views/content/cvv.html.erb +13 -0
- data/app/views/layouts/admin.html.erb +75 -0
- data/app/views/layouts/spree_application.html.erb +52 -0
- data/app/views/order_mailer/cancel_email.text.erb +16 -0
- data/app/views/order_mailer/confirm_email.text.erb +19 -0
- data/app/views/orders/_form.html.erb +19 -0
- data/app/views/orders/_line_item.html.erb +41 -0
- data/app/views/orders/edit.html.erb +41 -0
- data/app/views/orders/new.html.erb +9 -0
- data/app/views/orders/show.html.erb +14 -0
- data/app/views/products/_cart_form.html.erb +54 -0
- data/app/views/products/_cart_form.html.erb~ +54 -0
- data/app/views/products/_image.html.erb +5 -0
- data/app/views/products/_image.html.erb~ +5 -0
- data/app/views/products/_properties.html.erb +8 -0
- data/app/views/products/_taxons.html.erb +16 -0
- data/app/views/products/_thumbnails.html.erb +40 -0
- data/app/views/products/index.html.erb +37 -0
- data/app/views/products/show.html.erb +31 -0
- data/app/views/shared/_additional_field.html.erb +7 -0
- data/app/views/shared/_admin_head.html.erb +34 -0
- data/app/views/shared/_basic_layout.html.erb +44 -0
- data/app/views/shared/_edit_resource_links.html.erb +1 -0
- data/app/views/shared/_end_soon.html.erb +43 -0
- data/app/views/shared/_error_messages.html.erb +11 -0
- data/app/views/shared/_filters.html.erb +27 -0
- data/app/views/shared/_footer.html.erb +13 -0
- data/app/views/shared/_google_analytics.html.erb +40 -0
- data/app/views/shared/_head.html.erb +10 -0
- data/app/views/shared/_method_error_message.html.erb +4 -0
- data/app/views/shared/_nav_bar.html.erb +5 -0
- data/app/views/shared/_new_release.html.erb +42 -0
- data/app/views/shared/_new_resource_links.html.erb +1 -0
- data/app/views/shared/_order_details.html.erb +50 -0
- data/app/views/shared/_products.html.erb +42 -0
- data/app/views/shared/_search.html.erb +9 -0
- data/app/views/shared/_show_resource_links.html.erb +3 -0
- data/app/views/shared/_store_menu.html.erb +3 -0
- data/app/views/shared/_taxonomies.html.erb +19 -0
- data/app/views/shared/_test_hook.html.erb +1 -0
- data/app/views/shared/_upcoming_products.html.erb +42 -0
- data/app/views/shipment_mailer/shipped_email.text.erb +15 -0
- data/app/views/states/index.js.erb +1 -0
- data/app/views/taxons/_taxon.html.erb +4 -0
- data/app/views/taxons/show.html.erb +19 -0
- data/config/:cart +0 -0
- data/config/:checkout +0 -0
- data/config/:checkout_state +0 -0
- data/config/:collection +0 -0
- data/config/:empty_cart +0 -0
- data/config/:get, +0 -0
- data/config/:index +0 -0
- data/config/:nested_taxons +0 -0
- data/config/:pg_search +0 -0
- data/config/:put, +0 -0
- data/config/:simple_search +0 -0
- data/config/:taxons_pg_search +0 -0
- data/config/:taxons_search +0 -0
- data/config/:update_cart +0 -0
- data/config/:update_checkout +0 -0
- data/config/[:index, +0 -0
- data/config/address, +0 -0
- data/config/checkout#edit, +0 -0
- data/config/checkout#update, +0 -0
- data/config/content#cvv +0 -0
- data/config/content#show +0 -0
- data/config/cucumber.yml +10 -0
- data/config/initializers/form_builder.rb +19 -0
- data/config/initializers/load_unobtrusive_date_picker.rb +8 -0
- data/config/initializers/spree.rb +29 -0
- data/config/initializers/workarounds_for_ruby19.rb +72 -0
- data/config/locale#set +0 -0
- data/config/locales/en.yml +1015 -0
- data/config/orders#edit, +0 -0
- data/config/orders#empty, +0 -0
- data/config/orders#update, +0 -0
- data/config/products#index +0 -0
- data/config/products#index, +0 -0
- data/config/routes.rb +207 -0
- data/config/taxons#show, +0 -0
- data/db/default/countries.yml +1583 -0
- data/db/default/roles.yml +7 -0
- data/db/default/states.yml +256 -0
- data/db/default/zone_members.yml +169 -0
- data/db/default/zones.yml +13 -0
- data/db/migrate/20090823005402_spree_zero_nine_zero.rb +442 -0
- data/db/migrate/20090904192342_create_indexes_for_inventory_units.rb +12 -0
- data/db/migrate/20090923100315_add_count_on_hand_to_variants_and_products.rb +36 -0
- data/db/migrate/20091007134354_change_taxons_to_nested_set.rb +40 -0
- data/db/migrate/20091008091614_move_to_configurable_gateways.rb +55 -0
- data/db/migrate/20091012120519_product_groups_and_scopes.rb +25 -0
- data/db/migrate/20091015110842_add_open_id_authentication_tables.rb +20 -0
- data/db/migrate/20091015153048_add_openid_field_to_users.rb +19 -0
- data/db/migrate/20091016174634_change_preference_value_type.rb +10 -0
- data/db/migrate/20091017175558_create_billing_integrations.rb +16 -0
- data/db/migrate/20091021133257_charge_refactoring.rb +35 -0
- data/db/migrate/20091104151730_add_some_indexes.rb +21 -0
- data/db/migrate/20091126190904_checkout_state_machine.rb +13 -0
- data/db/migrate/20091209153045_state_for_shipments.rb +9 -0
- data/db/migrate/20091209202200_make_state_events_polymorphic.rb +12 -0
- data/db/migrate/20091211203813_ship_address_id_for_checkouts.rb +9 -0
- data/db/migrate/20091212161118_shipping_method_id_for_checkouts.rb +9 -0
- data/db/migrate/20091213222815_creditcard_last_four_digits.rb +19 -0
- data/db/migrate/20091214183826_populate_legacy_shipment_state.rb +19 -0
- data/db/migrate/20100105090147_add_cost_price.rb +9 -0
- data/db/migrate/20100105132138_shipment_id_for_inventory_units.rb +21 -0
- data/db/migrate/20100111205525_cim_fields_for_creditcards.rb +11 -0
- data/db/migrate/20100112151511_create_return_authorizations.rb +16 -0
- data/db/migrate/20100113090919_add_return_authorization_to_inventory_units.rb +9 -0
- data/db/migrate/20100113203104_create_trackers.rb +14 -0
- data/db/migrate/20100121160010_creditcard_id_for_creditcard_txns.rb +9 -0
- data/db/migrate/20100121183934_original_creditcard_txn_id_for_creditcard_txns.rb +9 -0
- data/db/migrate/20100125145351_add_test_mode_to_billing_integration.rb +11 -0
- data/db/migrate/20100126103714_create_products_product_groups.rb +12 -0
- data/db/migrate/20100209025806_create_payment_methods.rb +20 -0
- data/db/migrate/20100209144531_polymorphic_payments.rb +29 -0
- data/db/migrate/20100213103131_change_payments_payment_method_to_belongs_to.rb +11 -0
- data/db/migrate/20100214212536_assign_creditcard_txns_to_payment.rb +16 -0
- data/db/migrate/20100223170312_sti_for_transactions.rb +14 -0
- data/db/migrate/20100223183812_drop_billing_integrations.rb +16 -0
- data/db/migrate/20100224153127_deleted_at_for_payment_methods.rb +13 -0
- data/db/migrate/20100301163454_add_adjustments_index.rb +10 -0
- data/db/migrate/20100306153445_fix_by_popularity.rb +8 -0
- data/db/migrate/20100317120946_add_alt_text_to_images.rb +9 -0
- data/db/migrate/20100427121301_add_display_to_payment_methods.rb +9 -0
- data/db/migrate/20100504142133_add_addresses_checkouts_indexes.rb +16 -0
- data/db/migrate/20100506180619_add_icon_to_taxons.rb +18 -0
- data/db/migrate/20100506185838_add_description_to_taxons.rb +11 -0
- data/db/migrate/20100528155333_index_for_shipments_number.rb +9 -0
- data/db/migrate/20100528185820_add_index_on_users_persistence_token.rb +9 -0
- data/db/migrate/20100605152042_add_default_to_tax_categories.rb +9 -0
- data/db/migrate/20100624110730_add_display_to_shipping_methods.rb +9 -0
- data/db/migrate/20100624123336_rename_payment_method_display.rb +9 -0
- data/db/migrate/20100624175547_rename_preferences_field.rb +8 -0
- data/db/migrate/20100811163637_add_guest_flag.rb +13 -0
- data/db/migrate/20100811205836_drop_order_token.rb +11 -0
- data/db/migrate/20100812162326_payments_state_and_assigned_to_order_only.rb +11 -0
- data/db/migrate/20100813023502_create_address_keys_for_order.rb +15 -0
- data/db/migrate/20100813185745_payment_total_for_orders.rb +9 -0
- data/db/migrate/20100816212146_shipping_method_id_for_orders.rb +9 -0
- data/db/migrate/20100817152723_add_shipment_and_payment_state.rb +15 -0
- data/db/migrate/20100819170125_refactor_adjustments.rb +19 -0
- data/db/migrate/20100820135707_response_code_and_avs_response_for_payments.rb +11 -0
- data/db/migrate/20100901171814_change_guest_flag_to_anonymous.rb +13 -0
- data/db/migrate/20100903203949_email_for_orders.rb +9 -0
- data/db/migrate/20100923162011_create_mail_methods.rb +12 -0
- data/db/migrate/20100929151905_rename_frozen_to_locked.rb +8 -0
- data/db/migrate/20101008190536_move_special_instructions_to_orders.rb +11 -0
- data/db/migrate/20101026184700_create_log_entries.rb +15 -0
- data/db/migrate/20101026184714_migrate_transactions_to_payment_state.rb +94 -0
- data/db/migrate/20101026184746_delete_in_progress_orders.rb +18 -0
- data/db/migrate/20101026184808_migrate_checkout_to_orders.rb +27 -0
- data/db/migrate/20101026184833_migrate_adjustments.rb +9 -0
- data/db/migrate/20101026184855_remove_shipped_state.rb +14 -0
- data/db/migrate/20101026184916_prevent_nil_payment_total.rb +8 -0
- data/db/migrate/20101026184932_prevent_nil_email.rb +9 -0
- data/db/migrate/20101026184959_generate_anonymous_users.rb +14 -0
- data/db/migrate/20101026185022_update_order_state.rb +8 -0
- data/db/migrate/20101026192225_cleanup_legacy_tables.rb +11 -0
- data/db/migrate/20101028151745_remove_number_and_cvv_from_credicard.rb +9 -0
- data/db/migrate/20101103212716_drop_anonymous_field_for_user.rb +8 -0
- data/db/migrate/20101111133551_renamed_rma_cancelled_state.rb +10 -0
- data/db/migrate/20101117031806_fix_problematic_index_names.rb +13 -0
- data/db/migrate/20101223215658_add_position_to_variants.rb +9 -0
- data/db/migrate/20110110130847_add_next_state_to_state_events.rb +9 -0
- data/db/migrate/20110111122537_add_position_to_option_types.rb +9 -0
- data/db/migrate/20110314192118_remove_trailing_slashes_in_taxon_permalinks.rb +17 -0
- data/db/sample/users.rb +61 -0
- data/db/seeds.rb +3 -0
- data/lib/apispree_core.rb +94 -0
- data/lib/custom_fixtures.rb +7 -0
- data/lib/generators/spree_core/upgrade_generator.rb +23 -0
- data/lib/generators/templates/config/initializers/%file_name%.rb.tt +1 -0
- data/lib/generators/templates/config/locales/%current_locale%.yml.tt +2 -0
- data/lib/generators/templates/config/routes.rb +3 -0
- data/lib/middleware/seo_assist.rb +44 -0
- data/lib/product_filters.rb +179 -0
- data/lib/redirect_legacy_product_url.rb +13 -0
- data/lib/scopes.rb +69 -0
- data/lib/scopes/dynamic.rb +31 -0
- data/lib/scopes/product.rb +266 -0
- data/lib/scopes/variant.rb +18 -0
- data/lib/spree/calculated_adjustments.rb +69 -0
- data/lib/spree/config.rb +33 -0
- data/lib/spree/current_order.rb +30 -0
- data/lib/spree/file_utilz.rb +73 -0
- data/lib/spree/gateway_error.rb +3 -0
- data/lib/spree/mail_interceptor.rb +23 -0
- data/lib/spree/mail_settings.rb +33 -0
- data/lib/spree/preference_access.rb +27 -0
- data/lib/spree/search/base.rb +64 -0
- data/lib/spree_base.rb +116 -0
- data/lib/spree_core/action_callbacks.rb +26 -0
- data/lib/spree_core/authorize_net_cim_hack.rb +871 -0
- data/lib/spree_core/delegate_belongs_to.rb +89 -0
- data/lib/spree_core/enumerable_constants.rb +209 -0
- data/lib/spree_core/ext/active_record.rb +15 -0
- data/lib/spree_core/ext/array.rb +14 -0
- data/lib/spree_core/ext/hash.rb +75 -0
- data/lib/spree_core/ext/string.rb +10 -0
- data/lib/spree_core/preferences/model_hooks.rb +293 -0
- data/lib/spree_core/preferences/preference_definition.rb +53 -0
- data/lib/spree_core/railtie.rb +63 -0
- data/lib/spree_core/spree_custom_responder.rb +29 -0
- data/lib/spree_core/spree_respond_with.rb +57 -0
- data/lib/spree_core/ssl_requirement.rb +104 -0
- data/lib/spree_core/testing_support/factories.rb +13 -0
- data/lib/spree_core/testing_support/factories/address_factory.rb +20 -0
- data/lib/spree_core/testing_support/factories/adjustment_factory.rb +6 -0
- data/lib/spree_core/testing_support/factories/calculator_factory.rb +5 -0
- data/lib/spree_core/testing_support/factories/configuraion_factory.rb +4 -0
- data/lib/spree_core/testing_support/factories/country_factory.rb +7 -0
- data/lib/spree_core/testing_support/factories/creditcard_factory.rb +11 -0
- data/lib/spree_core/testing_support/factories/inventory_unit_factory.rb +7 -0
- data/lib/spree_core/testing_support/factories/line_item_factory.rb +8 -0
- data/lib/spree_core/testing_support/factories/mail_method_factory.rb +4 -0
- data/lib/spree_core/testing_support/factories/options_factory.rb +10 -0
- data/lib/spree_core/testing_support/factories/order_factory.rb +18 -0
- data/lib/spree_core/testing_support/factories/payment_factory.rb +26 -0
- data/lib/spree_core/testing_support/factories/payment_method_factory.rb +17 -0
- data/lib/spree_core/testing_support/factories/product_factory.rb +16 -0
- data/lib/spree_core/testing_support/factories/product_group_factory.rb +3 -0
- data/lib/spree_core/testing_support/factories/product_option_type_factory.rb +4 -0
- data/lib/spree_core/testing_support/factories/product_property_factory.rb +4 -0
- data/lib/spree_core/testing_support/factories/product_scope_factory.rb +6 -0
- data/lib/spree_core/testing_support/factories/property_factory.rb +4 -0
- data/lib/spree_core/testing_support/factories/prototype_factory.rb +4 -0
- data/lib/spree_core/testing_support/factories/return_authorization_factory.rb +8 -0
- data/lib/spree_core/testing_support/factories/role_factory.rb +9 -0
- data/lib/spree_core/testing_support/factories/shipment_factory.rb +9 -0
- data/lib/spree_core/testing_support/factories/shipping_category_factory.rb +5 -0
- data/lib/spree_core/testing_support/factories/shipping_method_factory.rb +11 -0
- data/lib/spree_core/testing_support/factories/state_factory.rb +11 -0
- data/lib/spree_core/testing_support/factories/tax_category_factory.rb +8 -0
- data/lib/spree_core/testing_support/factories/tax_rate_factory.rb +5 -0
- data/lib/spree_core/testing_support/factories/taxon_factory.rb +5 -0
- data/lib/spree_core/testing_support/factories/taxonomy_factory.rb +3 -0
- data/lib/spree_core/testing_support/factories/tracker_factory.rb +5 -0
- data/lib/spree_core/testing_support/factories/user_factory.rb +15 -0
- data/lib/spree_core/testing_support/factories/variant_factory.rb +14 -0
- data/lib/spree_core/testing_support/factories/zone_factory.rb +18 -0
- data/lib/spree_core/theme_support.rb +4 -0
- data/lib/spree_core/theme_support/hook.rb +51 -0
- data/lib/spree_core/theme_support/hook_listener.rb +68 -0
- data/lib/spree_core/theme_support/hook_modifier.rb +35 -0
- data/lib/spree_core/theme_support/more_patches.rb +118 -0
- data/lib/spree_core/version.rb +5 -0
- data/lib/store_helpers.rb +10 -0
- data/lib/tasks/common.rb +30 -0
- data/lib/tasks/core.rake +105 -0
- data/lib/tasks/install.rake +26 -0
- data/lib/tasks/rake_util.rb +19 -0
- data/lib/tasks/taxon.rake +14 -0
- data/lib/tasks/themes.rake +34 -0
- data/public/images/add-to-cart.png +0 -0
- data/public/images/admin/bg/active-tab.png +0 -0
- data/public/images/admin/bg/admin_tab_back.png +0 -0
- data/public/images/admin/bg/admin_tab_selected_back.png +0 -0
- data/public/images/admin/bg/content-back-blue.png +0 -0
- data/public/images/admin/bg/content-back-green.png +0 -0
- data/public/images/admin/bg/content-back.png +0 -0
- data/public/images/admin/bg/flash-error.png +0 -0
- data/public/images/admin/bg/flash-notice.png +0 -0
- data/public/images/admin/bg/green-stripes.gif +0 -0
- data/public/images/admin/bg/green-stripes.png +0 -0
- data/public/images/admin/bg/grid_header_back.png +0 -0
- data/public/images/admin/bg/grid_header_back_green.png +0 -0
- data/public/images/admin/bg/header-bg.png +0 -0
- data/public/images/admin/bg/header.png +0 -0
- data/public/images/admin/bg/header_bg.jpg +0 -0
- data/public/images/admin/bg/menu-current.png +0 -0
- data/public/images/admin/bg/red-stripes.gif +0 -0
- data/public/images/admin/bg/red-stripes.png +0 -0
- data/public/images/admin/bg/spree_50.png +0 -0
- data/public/images/admin/bg/subnav-divider.png +0 -0
- data/public/images/admin/bg/subnav.png +0 -0
- data/public/images/admin/bg/tab-back.png +0 -0
- data/public/images/admin/buttons/blue/left_01.png +0 -0
- data/public/images/admin/buttons/blue/right_01.png +0 -0
- data/public/images/admin/buttons/drag-handle-green.png +0 -0
- data/public/images/admin/buttons/green/left_01.png +0 -0
- data/public/images/admin/buttons/green/right_01.png +0 -0
- data/public/images/admin/buttons/left_01.png +0 -0
- data/public/images/admin/buttons/left_01_small.png +0 -0
- data/public/images/admin/buttons/orange/left_03.png +0 -0
- data/public/images/admin/buttons/orange/right_03.png +0 -0
- data/public/images/admin/buttons/right_01.png +0 -0
- data/public/images/admin/buttons/right_01_small.png +0 -0
- data/public/images/admin/icons/16x16/1.png +0 -0
- data/public/images/admin/icons/16x16/10.png +0 -0
- data/public/images/admin/icons/16x16/2.png +0 -0
- data/public/images/admin/icons/16x16/3.png +0 -0
- data/public/images/admin/icons/16x16/4.png +0 -0
- data/public/images/admin/icons/16x16/5.png +0 -0
- data/public/images/admin/icons/16x16/6.png +0 -0
- data/public/images/admin/icons/16x16/7.png +0 -0
- data/public/images/admin/icons/16x16/8.png +0 -0
- data/public/images/admin/icons/16x16/9.png +0 -0
- data/public/images/admin/icons/32x32/1.png +0 -0
- data/public/images/admin/icons/32x32/10.png +0 -0
- data/public/images/admin/icons/32x32/11.png +0 -0
- data/public/images/admin/icons/32x32/2.png +0 -0
- data/public/images/admin/icons/32x32/3.png +0 -0
- data/public/images/admin/icons/32x32/4.png +0 -0
- data/public/images/admin/icons/32x32/5.png +0 -0
- data/public/images/admin/icons/32x32/6.png +0 -0
- data/public/images/admin/icons/32x32/7.png +0 -0
- data/public/images/admin/icons/32x32/8.png +0 -0
- data/public/images/admin/icons/32x32/9.png +0 -0
- data/public/images/admin/icons/accept.png +0 -0
- data/public/images/admin/icons/add.gif +0 -0
- data/public/images/admin/icons/add.png +0 -0
- data/public/images/admin/icons/arrow-down.gif +0 -0
- data/public/images/admin/icons/cross.png +0 -0
- data/public/images/admin/icons/delete.gif +0 -0
- data/public/images/admin/icons/delete.png +0 -0
- data/public/images/admin/icons/drag.gif +0 -0
- data/public/images/admin/icons/edit.gif +0 -0
- data/public/images/admin/icons/edit.png +0 -0
- data/public/images/admin/icons/email.png +0 -0
- data/public/images/admin/icons/error.png +0 -0
- data/public/images/admin/icons/exclamation.png +0 -0
- data/public/images/admin/icons/feed.png +0 -0
- data/public/images/admin/icons/pdf.png +0 -0
- data/public/images/admin/icons/reorder.gif +0 -0
- data/public/images/admin/icons/search.gif +0 -0
- data/public/images/admin/icons/send-email.png +0 -0
- data/public/images/admin/icons/stop.png +0 -0
- data/public/images/admin/icons/tick.png +0 -0
- data/public/images/admin/icons/up.gif +0 -0
- data/public/images/admin/icons/xls.png +0 -0
- data/public/images/admin/tabs/off-left.png +0 -0
- data/public/images/admin/tabs/off-right.png +0 -0
- data/public/images/admin/tabs/on-left.png +0 -0
- data/public/images/admin/tabs/on-right.png +0 -0
- data/public/images/ajax_loader.gif +0 -0
- data/public/images/amex_cid.gif +0 -0
- data/public/images/bg-button-hover.png +0 -0
- data/public/images/bg-button-pressed.png +0 -0
- data/public/images/bg-button.gif +0 -0
- data/public/images/bg-button.png +0 -0
- data/public/images/blue/left_01.png +0 -0
- data/public/images/blue/right_01.png +0 -0
- data/public/images/body-back.png +0 -0
- data/public/images/bottom_shine.png +0 -0
- data/public/images/breadcrumb.gif +0 -0
- data/public/images/button-dark-hover.png +0 -0
- data/public/images/button-dark.png +0 -0
- data/public/images/buttons/bg-button-hover.png +0 -0
- data/public/images/buttons/bg-button-pressed.png +0 -0
- data/public/images/buttons/bg-button.gif +0 -0
- data/public/images/buttons/bg-button.png +0 -0
- data/public/images/buttons/blue/left_01.png +0 -0
- data/public/images/buttons/blue/right_01.png +0 -0
- data/public/images/buttons/button-dark-hover.png +0 -0
- data/public/images/buttons/button-dark.png +0 -0
- data/public/images/buttons/drag-handle-green.png +0 -0
- data/public/images/buttons/green/left_01.png +0 -0
- data/public/images/buttons/green/right_01.png +0 -0
- data/public/images/buttons/left_01.png +0 -0
- data/public/images/buttons/left_01_small.png +0 -0
- data/public/images/buttons/orange/left_03.png +0 -0
- data/public/images/buttons/orange/right_03.png +0 -0
- data/public/images/buttons/right_01.png +0 -0
- data/public/images/buttons/right_01_small.png +0 -0
- data/public/images/buttons/sxsw-ribbon-v1.png +0 -0
- data/public/images/buttons/top-shine.png +0 -0
- data/public/images/calendar_date_select/calendar.gif +0 -0
- data/public/images/cart-empty.png +0 -0
- data/public/images/cart-empty_x32.png +0 -0
- data/public/images/cart-full.png +0 -0
- data/public/images/cart-full_x32.png +0 -0
- data/public/images/checkout.png +0 -0
- data/public/images/creditcard.gif +0 -0
- data/public/images/datepicker/backstripes.gif +0 -0
- data/public/images/datepicker/bg_header.jpg +0 -0
- data/public/images/datepicker/bullet1.gif +0 -0
- data/public/images/datepicker/bullet2.gif +0 -0
- data/public/images/datepicker/cal.gif +0 -0
- data/public/images/datepicker/gradient-e5e5e5-ffffff.gif +0 -0
- data/public/images/discover_cid.gif +0 -0
- data/public/images/drag-handle-green.png +0 -0
- data/public/images/favicon.ico +0 -0
- data/public/images/green/left_01.png +0 -0
- data/public/images/green/right_01.png +0 -0
- data/public/images/grid.png +0 -0
- data/public/images/left_01.png +0 -0
- data/public/images/left_01_small.png +0 -0
- data/public/images/master_cid.jpg +0 -0
- data/public/images/menu-current.png +0 -0
- data/public/images/menu-hover.png +0 -0
- data/public/images/noimage/mini.jpg +0 -0
- data/public/images/noimage/product.jpg +0 -0
- data/public/images/noimage/small.jpg +0 -0
- data/public/images/openid-inputicon.gif +0 -0
- data/public/images/orange/left_03.png +0 -0
- data/public/images/orange/right_03.png +0 -0
- data/public/images/progress.gif +0 -0
- data/public/images/reorder.jpg +0 -0
- data/public/images/right_01.png +0 -0
- data/public/images/right_01_small.png +0 -0
- data/public/images/separator.png +0 -0
- data/public/images/shadow-top.png +0 -0
- data/public/images/shadow_top.png +0 -0
- data/public/images/spinner.gif +0 -0
- data/public/images/spree.jpg +0 -0
- data/public/images/spree/progress.gif +0 -0
- data/public/images/spree/spinner.gif +0 -0
- data/public/images/spree/spree.jpg +0 -0
- data/public/images/step-progress/completed-completed.gif +0 -0
- data/public/images/step-progress/completed-current.gif +0 -0
- data/public/images/step-progress/completed-first.gif +0 -0
- data/public/images/step-progress/current-first.gif +0 -0
- data/public/images/step-progress/current-incomplete.gif +0 -0
- data/public/images/step-progress/current-right.gif +0 -0
- data/public/images/step-progress/incomplete-incomplete.gif +0 -0
- data/public/images/step-progress/incomplete-right.gif +0 -0
- data/public/images/steps/1.png +0 -0
- data/public/images/steps/1_small.png +0 -0
- data/public/images/steps/2.png +0 -0
- data/public/images/steps/2_small.png +0 -0
- data/public/images/steps/3.png +0 -0
- data/public/images/steps/3_small.png +0 -0
- data/public/images/steps/4.png +0 -0
- data/public/images/steps/4_small.png +0 -0
- data/public/images/steps/5.png +0 -0
- data/public/images/steps/5_small.png +0 -0
- data/public/images/steps/6.png +0 -0
- data/public/images/steps/6_small.png +0 -0
- data/public/images/sxsw-ribbon-v1.png +0 -0
- data/public/images/tab_bottom.gif +0 -0
- data/public/images/tile-header.png +0 -0
- data/public/images/tile-slider.png +0 -0
- data/public/images/top-shine.png +0 -0
- data/public/images/tree-nav-icons/bullet.gif +0 -0
- data/public/images/tree-nav-icons/minus.gif +0 -0
- data/public/images/tree-nav-icons/plus.gif +0 -0
- data/public/images/tree-nav-icons/treeview-loading.gif +0 -0
- data/public/images/tree-nav-icons/treeview-sprite.gif +0 -0
- data/public/images/update.png +0 -0
- data/public/images/visa_cid.gif +0 -0
- data/public/images/wrapper-back-2.png +0 -0
- data/public/images/wrapper-back.png +0 -0
- data/public/images/yui-menubaritem_submenuindicator.png +0 -0
- data/public/images/yui-menubaritem_submenuindicator_disabled.png +0 -0
- data/public/images/yui-menuitem_checkbox.png +0 -0
- data/public/images/yui-menuitem_checkbox_disabled.png +0 -0
- data/public/images/yui-menuitem_submenuindicator.png +0 -0
- data/public/images/yui-menuitem_submenuindicator_disabled.png +0 -0
- data/public/images/yui-sprite.png +0 -0
- data/public/javascripts/additional-methods.js +236 -0
- data/public/javascripts/admin.js +232 -0
- data/public/javascripts/admin/address_states.js +25 -0
- data/public/javascripts/admin/checkouts/edit.js +130 -0
- data/public/javascripts/admin/orders/edit.js +23 -0
- data/public/javascripts/admin/orders/edit_form.js +16 -0
- data/public/javascripts/admin/payments/new.js +9 -0
- data/public/javascripts/admin/unobtrusive_handlers.js +43 -0
- data/public/javascripts/application.js +12 -0
- data/public/javascripts/calculator.js +15 -0
- data/public/javascripts/checkout.js +75 -0
- data/public/javascripts/datepicker.js +1445 -0
- data/public/javascripts/gateway.js +13 -0
- data/public/javascripts/jquery-1.4.2.min.js +154 -0
- data/public/javascripts/jquery-ui.js +188 -0
- data/public/javascripts/jquery.alerts/images/help.gif +0 -0
- data/public/javascripts/jquery.alerts/images/important.gif +0 -0
- data/public/javascripts/jquery.alerts/images/info.gif +0 -0
- data/public/javascripts/jquery.alerts/images/title.gif +0 -0
- data/public/javascripts/jquery.alerts/jquery.alerts.css +57 -0
- data/public/javascripts/jquery.alerts/jquery.alerts.js +235 -0
- data/public/javascripts/jquery.alerts/jquery.alerts.spree.css +30 -0
- data/public/javascripts/jquery.autocomplete.min.js +13 -0
- data/public/javascripts/jquery.cookie.js +96 -0
- data/public/javascripts/jquery.delayedobserver.js +35 -0
- data/public/javascripts/jquery.suggest.js +276 -0
- data/public/javascripts/jquery.template.js +255 -0
- data/public/javascripts/jquery.tokeninput.js +618 -0
- data/public/javascripts/jquery.validate.min.js +16 -0
- data/public/javascripts/jsTree/jquery.jstree.js +3510 -0
- data/public/javascripts/jsTree/themes/apple/bg.jpg +0 -0
- data/public/javascripts/jsTree/themes/apple/d.png +0 -0
- data/public/javascripts/jsTree/themes/apple/dot_for_ie.gif +0 -0
- data/public/javascripts/jsTree/themes/apple/style.css +60 -0
- data/public/javascripts/jsTree/themes/apple/throbber.gif +0 -0
- data/public/javascripts/lang/af.js +40 -0
- data/public/javascripts/lang/ar.js +50 -0
- data/public/javascripts/lang/de.js +40 -0
- data/public/javascripts/lang/du.js +40 -0
- data/public/javascripts/lang/en.js +42 -0
- data/public/javascripts/lang/es.js +41 -0
- data/public/javascripts/lang/fi.js +40 -0
- data/public/javascripts/lang/fr.js +44 -0
- data/public/javascripts/lang/gr.js +40 -0
- data/public/javascripts/lang/he.js +49 -0
- data/public/javascripts/lang/it.js +13 -0
- data/public/javascripts/lang/nl.js +40 -0
- data/public/javascripts/lang/no.js +40 -0
- data/public/javascripts/lang/pt.js +50 -0
- data/public/javascripts/lang/ro.js +40 -0
- data/public/javascripts/lang/ru.js +40 -0
- data/public/javascripts/lang/sp.js +40 -0
- data/public/javascripts/lang/sv.js +41 -0
- data/public/javascripts/lang/ua.js +40 -0
- data/public/javascripts/localization/messages_cn.js +24 -0
- data/public/javascripts/localization/messages_cs.js +23 -0
- data/public/javascripts/localization/messages_da.js +21 -0
- data/public/javascripts/localization/messages_de.js +21 -0
- data/public/javascripts/localization/messages_es.js +24 -0
- data/public/javascripts/localization/messages_fr.js +23 -0
- data/public/javascripts/localization/messages_hu.js +21 -0
- data/public/javascripts/localization/messages_it.js +26 -0
- data/public/javascripts/localization/messages_kk.js +23 -0
- data/public/javascripts/localization/messages_nl.js +23 -0
- data/public/javascripts/localization/messages_no.js +23 -0
- data/public/javascripts/localization/messages_pl.js +23 -0
- data/public/javascripts/localization/messages_ptbr.js +30 -0
- data/public/javascripts/localization/messages_ro.js +24 -0
- data/public/javascripts/localization/messages_ru.js +23 -0
- data/public/javascripts/localization/messages_se.js +23 -0
- data/public/javascripts/localization/messages_sk.js +21 -0
- data/public/javascripts/localization/messages_tr.js +24 -0
- data/public/javascripts/localization/messages_tw.js +24 -0
- data/public/javascripts/localization/messages_ua.js +24 -0
- data/public/javascripts/nested-attribute.js +26 -0
- data/public/javascripts/open_id.js +15 -0
- data/public/javascripts/product.js +49 -0
- data/public/javascripts/rails.js +127 -0
- data/public/javascripts/taxonomy.js +201 -0
- data/public/javascripts/zone.js +39 -0
- data/public/stylesheets/admin/admin-forms.css +154 -0
- data/public/stylesheets/admin/admin-reset.css +69 -0
- data/public/stylesheets/admin/admin-tables.css +39 -0
- data/public/stylesheets/admin/admin-typography.css +117 -0
- data/public/stylesheets/admin/admin.css +614 -0
- data/public/stylesheets/admin/autocomplete.css +73 -0
- data/public/stylesheets/admin/dashboard.css +143 -0
- data/public/stylesheets/admin/edit_checkouts.css +57 -0
- data/public/stylesheets/admin/grids.css +314 -0
- data/public/stylesheets/admin/reset-fonts-grids-2-6-0.css +7 -0
- data/public/stylesheets/admin/token-input.css +109 -0
- data/public/stylesheets/admin/yui-includes.css +14 -0
- data/public/stylesheets/datepicker.css +263 -0
- data/public/stylesheets/jquery.autocomplete.css +48 -0
- data/public/stylesheets/screen.css +916 -0
- metadata +1099 -0
@@ -0,0 +1,72 @@
|
|
1
|
+
# encoding: utf-8
|
2
|
+
if RUBY_VERSION.to_f >= 1.9
|
3
|
+
|
4
|
+
class String
|
5
|
+
def mb_chars
|
6
|
+
self.force_encoding(Encoding::UTF_8)
|
7
|
+
end
|
8
|
+
|
9
|
+
alias_method(:orig_concat, :concat)
|
10
|
+
def concat(value)
|
11
|
+
orig_concat value.frozen? ? value : value.force_encoding(Encoding::UTF_8)
|
12
|
+
end
|
13
|
+
end
|
14
|
+
|
15
|
+
module ActionView
|
16
|
+
module Renderable #:nodoc:
|
17
|
+
private
|
18
|
+
def compile!(render_symbol, local_assigns)
|
19
|
+
locals_code = local_assigns.keys.map { |key| "#{key} = local_assigns[:#{key}];" }.join
|
20
|
+
|
21
|
+
source = <<-end_src
|
22
|
+
def #{render_symbol}(local_assigns)
|
23
|
+
old_output_buffer = output_buffer;#{locals_code};#{compiled_source}
|
24
|
+
ensure
|
25
|
+
self.output_buffer = old_output_buffer
|
26
|
+
end
|
27
|
+
end_src
|
28
|
+
source.force_encoding(Encoding::UTF_8) if source.respond_to?(:force_encoding)
|
29
|
+
|
30
|
+
begin
|
31
|
+
ActionView::Base::CompiledTemplates.module_eval(source, filename, 0)
|
32
|
+
rescue Errno::ENOENT => e
|
33
|
+
raise e # Missing template file, re-raise for Base to rescue
|
34
|
+
rescue Exception => e # errors from template code
|
35
|
+
if logger = defined?(ActionController) && Base.logger
|
36
|
+
logger.debug "ERROR: compiling #{render_symbol} RAISED #{e}"
|
37
|
+
logger.debug "Function body: #{source}"
|
38
|
+
logger.debug "Backtrace: #{e.backtrace.join("\n")}"
|
39
|
+
end
|
40
|
+
|
41
|
+
raise ActionView::TemplateError.new(self, {}, e)
|
42
|
+
end
|
43
|
+
end
|
44
|
+
end
|
45
|
+
end
|
46
|
+
|
47
|
+
if defined?(Mysql::Result)
|
48
|
+
class Mysql::Result
|
49
|
+
def encode(value, encoding = "utf-8")
|
50
|
+
String === value ? value.force_encoding(encoding) : value
|
51
|
+
end
|
52
|
+
|
53
|
+
def each_utf8(&block)
|
54
|
+
each_orig do |row|
|
55
|
+
yield row.map {|col| encode(col) }
|
56
|
+
end
|
57
|
+
end
|
58
|
+
alias each_orig each
|
59
|
+
alias each each_utf8
|
60
|
+
|
61
|
+
def each_hash_utf8(&block)
|
62
|
+
each_hash_orig do |row|
|
63
|
+
row.each {|k, v| row[k] = encode(v) }
|
64
|
+
yield(row)
|
65
|
+
end
|
66
|
+
end
|
67
|
+
alias each_hash_orig each_hash
|
68
|
+
alias each_hash each_hash_utf8
|
69
|
+
end
|
70
|
+
end
|
71
|
+
|
72
|
+
end
|
data/config/locale#set
ADDED
File without changes
|
@@ -0,0 +1,1015 @@
|
|
1
|
+
---
|
2
|
+
en:
|
3
|
+
'no': "No"
|
4
|
+
'yes': "Yes"
|
5
|
+
5_biggest_spenders: "5 Biggest Spenders"
|
6
|
+
a_copy_of_all_mail_will_be_sent_to_the_following_addresses: A copy of all mail be sent to the following addresses
|
7
|
+
abbreviation: Abbreviation
|
8
|
+
access_denied: "Access Denied"
|
9
|
+
account: Account
|
10
|
+
account_updated: "Account updated!"
|
11
|
+
action: Action
|
12
|
+
actions:
|
13
|
+
cancel: Cancel
|
14
|
+
create: Create
|
15
|
+
destroy: Destroy
|
16
|
+
list: List
|
17
|
+
listing: Listing
|
18
|
+
new: New
|
19
|
+
update: Update
|
20
|
+
active: "Active"
|
21
|
+
activerecord:
|
22
|
+
attributes:
|
23
|
+
address:
|
24
|
+
address1: Address
|
25
|
+
address2: "Address (contd.)"
|
26
|
+
city: City
|
27
|
+
country: "Country"
|
28
|
+
firstname: "First Name"
|
29
|
+
first_name_begins_with: "First Name Begins With"
|
30
|
+
lastname: "Last Name"
|
31
|
+
last_name_begins_with: "Last Name Begins With"
|
32
|
+
phone: Phone
|
33
|
+
state: "State"
|
34
|
+
zipcode: "Zip Code"
|
35
|
+
checkout:
|
36
|
+
bill_address:
|
37
|
+
address1: "Billing address street"
|
38
|
+
city: "Billing address city"
|
39
|
+
firstname: "Billing address first name"
|
40
|
+
lastname: "Billing address last name"
|
41
|
+
phone: "Billing address phone"
|
42
|
+
state: "Billing address state"
|
43
|
+
zipcode: "Billing address zipcode"
|
44
|
+
ship_address:
|
45
|
+
address1: "Shipping address street"
|
46
|
+
city: "Shipping address city"
|
47
|
+
firstname: "Shipping address first name"
|
48
|
+
lastname: "Shipping address last name"
|
49
|
+
phone: "Shipping address phone"
|
50
|
+
state: "Shipping address state"
|
51
|
+
zipcode: "Shipping address zipcode"
|
52
|
+
country:
|
53
|
+
iso: ISO
|
54
|
+
iso3: ISO3
|
55
|
+
iso_name: "ISO Name"
|
56
|
+
name: Name
|
57
|
+
numcode: "ISO Code"
|
58
|
+
creditcard:
|
59
|
+
cc_type: Type
|
60
|
+
month: Month
|
61
|
+
number: Number
|
62
|
+
verification_value: "Verification Value"
|
63
|
+
year: Year
|
64
|
+
inventory_unit:
|
65
|
+
state: State
|
66
|
+
line_item:
|
67
|
+
price: Price
|
68
|
+
quantity: Quantity
|
69
|
+
order:
|
70
|
+
checkout_complete: "Checkout Complete"
|
71
|
+
completed_at: "Completed At"
|
72
|
+
coupon_code: "Coupon Code"
|
73
|
+
ip_address: "IP Address"
|
74
|
+
item_total: "Item Total"
|
75
|
+
number: Number
|
76
|
+
special_instructions: "Special Instructions"
|
77
|
+
state: State
|
78
|
+
total: Total
|
79
|
+
product:
|
80
|
+
available_on: "Available On"
|
81
|
+
cost_price: "Cost Price"
|
82
|
+
description: Description
|
83
|
+
master_price: "Master Price"
|
84
|
+
name: Name
|
85
|
+
on_hand: "On Hand"
|
86
|
+
shipping_category: "Shipping Category"
|
87
|
+
tax_category: "Tax Category"
|
88
|
+
product_group:
|
89
|
+
name: Name
|
90
|
+
product_count: "Product count"
|
91
|
+
product_scopes: "Product scopes"
|
92
|
+
products: "Products"
|
93
|
+
url: URL
|
94
|
+
product_scope:
|
95
|
+
arguments: "Arguments"
|
96
|
+
description: "Description"
|
97
|
+
property:
|
98
|
+
name: Name
|
99
|
+
presentation: Presentation
|
100
|
+
prototype:
|
101
|
+
name: Name
|
102
|
+
return_authorization:
|
103
|
+
amount: Amount
|
104
|
+
role:
|
105
|
+
name: Name
|
106
|
+
state:
|
107
|
+
abbr: Abbreviation
|
108
|
+
name: Name
|
109
|
+
tax_category:
|
110
|
+
description: Description
|
111
|
+
name: Name
|
112
|
+
tax_rate:
|
113
|
+
amount: Rate
|
114
|
+
taxon:
|
115
|
+
name: Name
|
116
|
+
permalink: Permalink
|
117
|
+
position: Position
|
118
|
+
taxonomy:
|
119
|
+
name: Name
|
120
|
+
user:
|
121
|
+
email: Email
|
122
|
+
variant:
|
123
|
+
cost_price: "Cost Price"
|
124
|
+
depth: Depth
|
125
|
+
height: Height
|
126
|
+
price: Price
|
127
|
+
sku: SKU
|
128
|
+
weight: Weight
|
129
|
+
width: Width
|
130
|
+
zone:
|
131
|
+
description: Description
|
132
|
+
name: Name
|
133
|
+
models:
|
134
|
+
address:
|
135
|
+
one: Address
|
136
|
+
other: Addresses
|
137
|
+
cheque_payment:
|
138
|
+
one: Cheque Payment
|
139
|
+
other: Cheque Payments
|
140
|
+
country:
|
141
|
+
one: Country
|
142
|
+
other: Countries
|
143
|
+
creditcard:
|
144
|
+
one: "Credit Card"
|
145
|
+
other: "Credit Cards"
|
146
|
+
creditcard_payment:
|
147
|
+
one: "Credit Card Payment"
|
148
|
+
other: "Credit Card Payments"
|
149
|
+
creditcard_txn:
|
150
|
+
one: "Credit Card Transaction"
|
151
|
+
other: "Credit Card Transactions"
|
152
|
+
inventory_unit:
|
153
|
+
one: "Inventory Unit"
|
154
|
+
other: "Inventory Units"
|
155
|
+
line_item:
|
156
|
+
one: "Line Item"
|
157
|
+
other: "Line Items"
|
158
|
+
order:
|
159
|
+
one: Order
|
160
|
+
other: Orders
|
161
|
+
payment:
|
162
|
+
one: Payment
|
163
|
+
other: Payments
|
164
|
+
product:
|
165
|
+
one: Product
|
166
|
+
other: Products
|
167
|
+
product_group:
|
168
|
+
one: "Product group"
|
169
|
+
other: "Product groups"
|
170
|
+
property:
|
171
|
+
one: Property
|
172
|
+
other: Properties
|
173
|
+
prototype:
|
174
|
+
one: Prototype
|
175
|
+
other: Prototypes
|
176
|
+
return_authorization:
|
177
|
+
one: Return Authorization
|
178
|
+
other: Return Authorizations
|
179
|
+
role:
|
180
|
+
one: Roles
|
181
|
+
other: Roles
|
182
|
+
shipment:
|
183
|
+
one: Shipment
|
184
|
+
other: Shipments
|
185
|
+
shipping_category:
|
186
|
+
one: "Shipping Category"
|
187
|
+
other: "Shipping Categories"
|
188
|
+
state:
|
189
|
+
one: State
|
190
|
+
other: States
|
191
|
+
tax_category:
|
192
|
+
one: "Tax Category"
|
193
|
+
other: "Tax Categories"
|
194
|
+
tax_rate:
|
195
|
+
one: "Tax Rate"
|
196
|
+
other: "Tax Rates"
|
197
|
+
taxon:
|
198
|
+
one: Taxon
|
199
|
+
other: Taxons
|
200
|
+
taxonomy:
|
201
|
+
one: Taxonomy
|
202
|
+
other: Taxonomies
|
203
|
+
user:
|
204
|
+
one: User
|
205
|
+
other: Users
|
206
|
+
variant:
|
207
|
+
one: Variant
|
208
|
+
other: Variants
|
209
|
+
zone:
|
210
|
+
one: Zone
|
211
|
+
other: Zones
|
212
|
+
add: Add
|
213
|
+
add_category: "Add Category"
|
214
|
+
add_country: "Add Country"
|
215
|
+
add_option_type: "Add Option Type"
|
216
|
+
add_option_types: "Add Option Types"
|
217
|
+
add_option_value: "Add Option Value"
|
218
|
+
add_product: "Add Product"
|
219
|
+
add_product_properties: "Add Product Properties"
|
220
|
+
add_scope: "Add a scope"
|
221
|
+
add_state: "Add State"
|
222
|
+
add_to_cart: "Add To Cart"
|
223
|
+
add_zone: "Add Zone"
|
224
|
+
additional_item: Additional Item Cost
|
225
|
+
address: Address
|
226
|
+
address_information: "Address Information"
|
227
|
+
adjustment: Adjustment
|
228
|
+
adjustment_total: Adjustment Total
|
229
|
+
adjustments: Adjustments
|
230
|
+
administration: Administration
|
231
|
+
all: "All"
|
232
|
+
all_departments: All departments
|
233
|
+
allow_backorders: "Allow Backorders"
|
234
|
+
allow_ssl_to_be_used_when_in_developement_and_test_modes: Allow SSL to be used when in development and test modes
|
235
|
+
allow_ssl_to_be_used_when_in_production_mode: Allow SSL to be used in production mode
|
236
|
+
allowed_ssl_in_production_mode: "SSL will %{not} be used in production"
|
237
|
+
already_registered: Already Registered?
|
238
|
+
alt_text: Alternative Text
|
239
|
+
alternative_phone: Alternative Phone
|
240
|
+
amount: Amount
|
241
|
+
analytics_trackers: Analytics Trackers
|
242
|
+
apply: "Apply"
|
243
|
+
are_you_sure: "Are you sure?"
|
244
|
+
are_you_sure_category: "Are you sure you want to delete this category?"
|
245
|
+
are_you_sure_delete: "Are you sure you want to delete this record?"
|
246
|
+
are_you_sure_delete_image: "Are you sure you want to delete this image?"
|
247
|
+
are_you_sure_option_type: "Are you sure you want to delete this option type?"
|
248
|
+
are_you_sure_you_want_to_capture: "Are you sure you want to capture?"
|
249
|
+
assign_taxon: "Assign Taxon"
|
250
|
+
assign_taxons: "Assign Taxons"
|
251
|
+
authorization_failure: "Authorization Failure"
|
252
|
+
authorized: Authorized
|
253
|
+
available_on: "Available On"
|
254
|
+
available_taxons: "Available Taxons"
|
255
|
+
awaiting_return: Awaiting Return
|
256
|
+
back: Back
|
257
|
+
back_end: Back End
|
258
|
+
back_to_store: "Go Back To Store"
|
259
|
+
backordered: Backordered
|
260
|
+
backordering_is_allowed: "Backordering %{not} allowed"
|
261
|
+
balance_due: "Balance Due"
|
262
|
+
best_selling_products: "Best Selling Products"
|
263
|
+
best_selling_taxons: "Best Selling Taxons"
|
264
|
+
bill_address: "Bill Address"
|
265
|
+
billing: Billing
|
266
|
+
billing_address: "Billing Address"
|
267
|
+
both: Both
|
268
|
+
by_day: "by day"
|
269
|
+
calculator: Calculator
|
270
|
+
calculator_settings_warning: "If you are changing the calculator type, you must save first before you can edit the calculator settings"
|
271
|
+
cancel: cancel
|
272
|
+
cancel_my_account: Cancel my account
|
273
|
+
cancel_my_account_description: "Unhappy?"
|
274
|
+
canceled: Canceled
|
275
|
+
cannot_create_returns: Cannot create returns as this order no shipped units.
|
276
|
+
cannot_destory_line_item_as_inventory_units_have_shipped: Cannot destory line item as some inventory units have shipped.
|
277
|
+
cannot_perform_operation: "Cannot perform requested operation"
|
278
|
+
capture: Capture
|
279
|
+
card_code: "Card Code"
|
280
|
+
card_details: "Card details"
|
281
|
+
card_number: "Card Number"
|
282
|
+
card_type_is: Card type is
|
283
|
+
cart: Cart
|
284
|
+
categories: Categories
|
285
|
+
category: Category
|
286
|
+
change: Change
|
287
|
+
change_language: "Change Language"
|
288
|
+
change_my_password: "Change my password"
|
289
|
+
charge_total: Charge Total
|
290
|
+
charged: Charged
|
291
|
+
charges: Charges
|
292
|
+
checkout: Checkout
|
293
|
+
cheque: Cheque
|
294
|
+
city: City
|
295
|
+
clone: Clone
|
296
|
+
code: Code
|
297
|
+
combine: Combine
|
298
|
+
complete: complete
|
299
|
+
complete_list: "Complete List"
|
300
|
+
configuration: Configuration
|
301
|
+
configuration_options: "Configuration Options"
|
302
|
+
configurations: Configurations
|
303
|
+
configured: Configured
|
304
|
+
confirm: Confirm
|
305
|
+
confirm_delete: "Confirm Deletion"
|
306
|
+
confirm_password: "Password Confirmation"
|
307
|
+
continue: Continue
|
308
|
+
continue_shopping: "Continue shopping"
|
309
|
+
copy_all_mails_to: Copy All Mails To
|
310
|
+
cost_price: "Cost Price"
|
311
|
+
count: Count
|
312
|
+
count_of_reduced_by: "count of '%{name}' reduced by %{count}"
|
313
|
+
country: Country
|
314
|
+
country_based: "Country Based"
|
315
|
+
create: Create
|
316
|
+
create_a_new_account: "Create a new account"
|
317
|
+
create_product_group_from_products: Create a new product group from these products
|
318
|
+
create_user_account: Create User Account
|
319
|
+
created_successfully: "Created Successfully"
|
320
|
+
credit: Credit
|
321
|
+
credit_card: "Credit Card"
|
322
|
+
credit_card_capture_complete: "Credit Card Was Captured"
|
323
|
+
credit_card_payment: "Credit Card Payment"
|
324
|
+
credit_owed: "Credit Owed"
|
325
|
+
credit_total: Credit Total
|
326
|
+
creditcard: Creditcard
|
327
|
+
creditcards: Creditcards
|
328
|
+
credits: Credits
|
329
|
+
current: Current
|
330
|
+
customer: Customer
|
331
|
+
customer_details: "Customer Details"
|
332
|
+
customer_search: "Customer Search"
|
333
|
+
date_created: Date created
|
334
|
+
date_range: "Date Range"
|
335
|
+
debit: Debit
|
336
|
+
default: Default
|
337
|
+
delete: Delete
|
338
|
+
delivery: Delivery
|
339
|
+
depth: Depth
|
340
|
+
description: Description
|
341
|
+
destroy: Destroy
|
342
|
+
didnt_receive_confirmation_instructions: "Didn't receive confirmation instructions?"
|
343
|
+
didnt_receive_unlock_instructions: "Didn't receive unlock instructions?"
|
344
|
+
discount_amount: "Discount Amount"
|
345
|
+
display: Display
|
346
|
+
edit: Edit
|
347
|
+
editing_billing_integration: Editing Billing Integration
|
348
|
+
editing_category: "Editing Category"
|
349
|
+
editing_mail_method: Editing Mail Method
|
350
|
+
editing_option_type: "Editing Option Type"
|
351
|
+
editing_option_types: "Editing Option Types"
|
352
|
+
editing_payment_method: Editing Payment Method
|
353
|
+
editing_product: "Editing Product"
|
354
|
+
editing_product_group: "Editing Product Group"
|
355
|
+
editing_property: "Editing Property"
|
356
|
+
editing_prototype: "Editing Prototype"
|
357
|
+
editing_shipping_category: "Editing Shipping Category"
|
358
|
+
editing_shipping_method: "Editing Shipping Method"
|
359
|
+
editing_state: "Editing State"
|
360
|
+
editing_tax_category: "Editing Tax Category"
|
361
|
+
editing_tax_rate: "Editing Tax Rate"
|
362
|
+
editing_tracker: Editing Tracker
|
363
|
+
editing_user: "Editing User"
|
364
|
+
editing_zone: "Editing Zone"
|
365
|
+
email: Email
|
366
|
+
email_address: "Email Address"
|
367
|
+
email_server_settings_description: "Set email server settings."
|
368
|
+
empty: "Empty"
|
369
|
+
empty_cart: "Empty Cart"
|
370
|
+
enable_login_via_login_password: "Use standard email/password"
|
371
|
+
enable_login_via_openid: "Use OpenID instead"
|
372
|
+
enable_mail_delivery: Enable Mail Delivery
|
373
|
+
enter_exactly_as_shown_on_card: Please enter exactly as shown on the card
|
374
|
+
enter_atleast_five_letters: Enter atleast five letters of customer name
|
375
|
+
enter_password_to_confirm: "(we need your current password to confirm your changes)"
|
376
|
+
environment: "Environment"
|
377
|
+
error: error
|
378
|
+
errors:
|
379
|
+
messages:
|
380
|
+
could_not_create_taxon: "Could not create taxon"
|
381
|
+
no_shipping_methods_available: "No shipping methods available for selected location, please change your address and try again."
|
382
|
+
errors_prohibited_this_record_from_being_saved:
|
383
|
+
one: "1 error prohibited this record from being saved"
|
384
|
+
other: "%{count} errors prohibited this record from being saved"
|
385
|
+
event: Event
|
386
|
+
existing_customer: "Existing Customer"
|
387
|
+
expiration: "Expiration"
|
388
|
+
expiration_month: "Expiration Month"
|
389
|
+
expiration_year: "Expiration Year"
|
390
|
+
extension: Extension
|
391
|
+
extensions: Extensions
|
392
|
+
filename: Filename
|
393
|
+
final_confirmation: "Final Confirmation"
|
394
|
+
finalize: Finalize
|
395
|
+
finalized_payments: Finalized Payments
|
396
|
+
first_item: First Item Cost
|
397
|
+
first_name: "First Name"
|
398
|
+
first_name_begins_with: "First Name Begins With"
|
399
|
+
flat_percent: "Flat Percent"
|
400
|
+
flat_rate_amount: Amount
|
401
|
+
flat_rate_per_item: "Flat Rate (per item)"
|
402
|
+
flat_rate_per_order: "Flat Rate (per order)"
|
403
|
+
flexible_rate: "Flexible Rate"
|
404
|
+
forgot_password: "Forgot Password?"
|
405
|
+
from_state: From State
|
406
|
+
front_end: Front End
|
407
|
+
full_name: "Full Name"
|
408
|
+
gateway: Gateway
|
409
|
+
gateway_configuration: "Gateway configuration"
|
410
|
+
gateway_config_unavailable: "Gateway unavailable for environment"
|
411
|
+
gateway_error: "Gateway Error"
|
412
|
+
gateway_setting_description: "Select a payment gateway and configure its settings."
|
413
|
+
gateway_settings_warning: "If you are changing the gateway type, you must save first before you can edit the gateway settings"
|
414
|
+
general: "General"
|
415
|
+
general_settings: "General Settings"
|
416
|
+
edit_general_settings: "Edit General Settings"
|
417
|
+
general_settings_description: "Configure general Spree settings."
|
418
|
+
google_analytics: "Google Analytics"
|
419
|
+
google_analytics_active: "Active"
|
420
|
+
google_analytics_create: "Create New Google Analytics Account"
|
421
|
+
google_analytics_id: "Analytics ID"
|
422
|
+
google_analytics_new: "New Google Analytics Account"
|
423
|
+
google_analytics_setting_description: "Manage Google Analytics ID."
|
424
|
+
guest_checkout: Guest Checkout
|
425
|
+
guest_user_account: Checkout as a Guest
|
426
|
+
has_no_shipped_units: has no shipped units
|
427
|
+
height: Height
|
428
|
+
hello_user: "Hello User"
|
429
|
+
history: History
|
430
|
+
home: "Home"
|
431
|
+
icon: "Icon"
|
432
|
+
icons_by: "Icons by"
|
433
|
+
image: Image
|
434
|
+
images: Images
|
435
|
+
images_for: "Images for"
|
436
|
+
in_progress: "In Progress"
|
437
|
+
include_in_shipment: Include in Shipment
|
438
|
+
included_in_other_shipment: Included in another Shipment
|
439
|
+
included_in_this_shipment: Included in this Shipment
|
440
|
+
instructions_to_reset_password: "Fill out the form below and instructions to reset your password will be emailed to you:"
|
441
|
+
integration_settings_warning: "If you are changing the billing integration, you must save first before you can edit the integration settings"
|
442
|
+
intercept_email_address: Intercept Email Address
|
443
|
+
intercept_email_instructions: "Override email recipient and replace with this address."
|
444
|
+
invalid_search: "Invalid search criteria."
|
445
|
+
inventory: Inventory
|
446
|
+
inventory_adjustment: "Inventory Adjustment"
|
447
|
+
inventory_setting_description: "Inventory Configuration, Backordering, Zero-Stock Display."
|
448
|
+
inventory_settings: "Inventory Settings"
|
449
|
+
is_not_available_to_shipment_address: is not available to shipment address
|
450
|
+
issue_number: Issue Number
|
451
|
+
item: Item
|
452
|
+
item_description: "Item Description"
|
453
|
+
item_total: "Item Total"
|
454
|
+
items: "Items"
|
455
|
+
last_14_days: "Last 14 Days"
|
456
|
+
last_5_orders: "Last 5 Orders"
|
457
|
+
last_7_days: "Last 7 Days"
|
458
|
+
last_month: "Last Month"
|
459
|
+
last_name: "Last Name"
|
460
|
+
last_name_begins_with: "Last Name Begins With"
|
461
|
+
last_year: "Last Year"
|
462
|
+
leave_blank_to_not_change: "(leave blank if you don't want to change it)"
|
463
|
+
list: List
|
464
|
+
listing_categories: "Listing Categories"
|
465
|
+
listing_option_types: "Listing Option Types"
|
466
|
+
listing_orders: "Listing Orders"
|
467
|
+
listing_product_groups: "Listing Product Groups"
|
468
|
+
listing_reports: "Listing Reports"
|
469
|
+
listing_tax_categories: "Listing Tax Categories"
|
470
|
+
listing_users: "Listing Users"
|
471
|
+
live: "Live"
|
472
|
+
loading: Loading
|
473
|
+
locale_changed: "Locale Changed"
|
474
|
+
log_in: "Log In"
|
475
|
+
logged_in_as: "Logged in as"
|
476
|
+
logged_in_succesfully: "Logged in successfully"
|
477
|
+
logged_out: "You have been logged out."
|
478
|
+
login: Login
|
479
|
+
login_as_existing: "Log In as Existing Customer"
|
480
|
+
login_failed: "Login authentication failed."
|
481
|
+
login_name: Login
|
482
|
+
logout: Logout
|
483
|
+
look_for_similar_items: Look for similar items
|
484
|
+
maestro_or_solo_cards: Maestro/Solo cards
|
485
|
+
mail_delivery_enabled: "Mail delivery is enabled"
|
486
|
+
mail_delivery_not_enabled: "Mail delivery is not enabled"
|
487
|
+
mail_methods: Mail Methods
|
488
|
+
mail_server_preferences: Mail Server Preferences
|
489
|
+
make_refund: Make refund
|
490
|
+
mark_shipped: "Mark Shipped"
|
491
|
+
master_price: "Master Price"
|
492
|
+
max_items: Max Items
|
493
|
+
meta_description: "Meta Description"
|
494
|
+
meta_keywords: "Meta Keywords"
|
495
|
+
metadata: "Metadata"
|
496
|
+
missing_required_information: "Missing Required Information"
|
497
|
+
minimal_amount: "Minimal Amount"
|
498
|
+
month: "Month"
|
499
|
+
my_account: "My Account"
|
500
|
+
my_orders: "My Orders"
|
501
|
+
name: Name
|
502
|
+
name_or_sku: "Name or SKU"
|
503
|
+
new: New
|
504
|
+
new_adjustment: "New Adjustment"
|
505
|
+
new_billing_integration: New Billing Integration
|
506
|
+
new_category: "New category"
|
507
|
+
new_customer: "New Customer"
|
508
|
+
new_image: "New Image"
|
509
|
+
new_mail_method: New Mail Method
|
510
|
+
new_option_type: "New Option Type"
|
511
|
+
new_option_value: "New Option Value"
|
512
|
+
new_order: "New Order"
|
513
|
+
new_order_completed: "New Order Completed"
|
514
|
+
new_payment: "New Payment"
|
515
|
+
new_payment_method: New Payment Method
|
516
|
+
new_product: "New Product"
|
517
|
+
new_product_group: New Product Group
|
518
|
+
new_property: "New Property"
|
519
|
+
new_prototype: "New Prototype"
|
520
|
+
new_return_authorization: New Return Authorization
|
521
|
+
new_shipment: "New Shipment"
|
522
|
+
new_shipping_category: "New Shipping Category"
|
523
|
+
new_shipping_method: "New Shipping Method"
|
524
|
+
new_state: "New State"
|
525
|
+
new_tax_category: "New Tax Category"
|
526
|
+
new_tax_rate: "New Tax Rate"
|
527
|
+
new_taxon: "New Taxon"
|
528
|
+
new_taxonomy: "New Taxonomy"
|
529
|
+
new_tracker: New Tracker
|
530
|
+
new_user: "New User"
|
531
|
+
new_variant: "New Variant"
|
532
|
+
new_zone: "New Zone"
|
533
|
+
next: Next
|
534
|
+
no_items_in_cart: ""
|
535
|
+
no_match_found: "No Match Found"
|
536
|
+
no_payment_methods_available: "Can't check out, no payment methods are configured for this environment"
|
537
|
+
no_products_found: "No products found"
|
538
|
+
no_results: "No results"
|
539
|
+
no_user_found: "No user was found with that email address"
|
540
|
+
none: None
|
541
|
+
none_available: "None Available"
|
542
|
+
normal_amount: "Normal Amount"
|
543
|
+
not: not
|
544
|
+
not_shown: "Not Shown"
|
545
|
+
note: Note
|
546
|
+
notice_messages:
|
547
|
+
option_type_removed: "Succesfully removed option type."
|
548
|
+
product_cloned: "Product has been cloned"
|
549
|
+
product_deleted: "Product has been deleted"
|
550
|
+
product_not_cloned: "Product could not be cloned"
|
551
|
+
product_not_deleted: "Product could not be deleted"
|
552
|
+
variant_deleted: "Variant has been deleted"
|
553
|
+
variant_not_deleted: "Variant could not be deleted"
|
554
|
+
on_hand: "On Hand"
|
555
|
+
operation: Operation
|
556
|
+
option_type: "Option Type"
|
557
|
+
option_types: "Option Types"
|
558
|
+
option_value: "Option Value"
|
559
|
+
option_values: "Option Values"
|
560
|
+
options: Options
|
561
|
+
or: or
|
562
|
+
ord_qty: "Ord. Qty"
|
563
|
+
ord_total: "Ord. Total"
|
564
|
+
order: Order
|
565
|
+
order_confirmation_note: ""
|
566
|
+
order_date: "Order Date"
|
567
|
+
order_details: "Order Details"
|
568
|
+
order_email_resent: "Order Email Resent"
|
569
|
+
order_mailer:
|
570
|
+
confirm_email:
|
571
|
+
subject: "Order Confirmation"
|
572
|
+
cancel_email:
|
573
|
+
subject: "Cancellation of Order"
|
574
|
+
order_not_in_system: That order number is not valid on this site.
|
575
|
+
order_number: Order
|
576
|
+
order_operation_authorize: Authorize
|
577
|
+
order_processed_but_following_items_are_out_of_stock: "Your order has been processed, but following items are out of stock:"
|
578
|
+
order_processed_successfully: "Your order has been processed successfully"
|
579
|
+
order_state:
|
580
|
+
# keys correspond to Checkout state names:
|
581
|
+
address: address
|
582
|
+
adjustments: adjustments
|
583
|
+
awaiting_return: awaiting return
|
584
|
+
canceled: canceled
|
585
|
+
cart: cart
|
586
|
+
complete: complete
|
587
|
+
confirm: confirm
|
588
|
+
delivery: delivery
|
589
|
+
payment: payment
|
590
|
+
resumed: resumed
|
591
|
+
returned: returned
|
592
|
+
order_summary: Order Summary
|
593
|
+
order_sure_want_to: "Are you sure you want to %{event} this order?"
|
594
|
+
order_total: "Order Total"
|
595
|
+
order_total_message: "The total amount charged to your card will be"
|
596
|
+
order_updated: "Order Updated"
|
597
|
+
orders: Orders
|
598
|
+
other_payment_options: Other Payment Options
|
599
|
+
out_of_stock: "Out of Stock"
|
600
|
+
out_of_stock_products: "Out of Stock Products"
|
601
|
+
over_paid: "Over Paid"
|
602
|
+
overview: Overview
|
603
|
+
overview_welcome: "Welcome to your store overview, currently we do not have enough data to display the Overiew Dashboard.<br/><br/> The dashboard will display automatically once the system has sufficent orders to allow generation of the statistics."
|
604
|
+
page_only_viewable_when_logged_in: You attempted to visit a page which can only be viewed when you are logged in
|
605
|
+
page_only_viewable_when_logged_out: You attempted to visit a page which can only be viewed when you are logged out
|
606
|
+
paid: Paid
|
607
|
+
parent_category: "Parent Category"
|
608
|
+
password: Password
|
609
|
+
password_reset_instructions: "Password Reset Instructions"
|
610
|
+
password_reset_instructions_are_mailed: "Instructions to reset your password have been emailed to you. Please check your email."
|
611
|
+
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."
|
612
|
+
password_updated: "Password successfully updated"
|
613
|
+
path: Path
|
614
|
+
pay: pay
|
615
|
+
payment: Payment
|
616
|
+
payment_actions: "Actions"
|
617
|
+
payment_gateway: "Payment Gateway"
|
618
|
+
payment_information: "Payment Information"
|
619
|
+
payment_method: Payment Method
|
620
|
+
payment_methods: Payment Methods
|
621
|
+
payment_methods_setting_description: Configure methods customers can use to pay.
|
622
|
+
payment_processing_failed: "Payment could not be processed, please check the details you entered"
|
623
|
+
payment_state: Payment State
|
624
|
+
payment_states:
|
625
|
+
balance_due: balance due
|
626
|
+
completed: completed
|
627
|
+
checkout: checkout
|
628
|
+
credit_owed: credit owed
|
629
|
+
failed: failed
|
630
|
+
paid: paid
|
631
|
+
pending: pending
|
632
|
+
processing: processing
|
633
|
+
void: void
|
634
|
+
payment_updated: Payment Updated
|
635
|
+
payments: Payments
|
636
|
+
pending_payments: Pending Payments
|
637
|
+
permalink: Permalink
|
638
|
+
phone: Phone
|
639
|
+
place_order: Place Order
|
640
|
+
please_create_user: "Please create a user account"
|
641
|
+
powered_by: "Powered by"
|
642
|
+
presentation: Presentation
|
643
|
+
preview: Preview
|
644
|
+
previous: Previous
|
645
|
+
price: Price
|
646
|
+
price_bucket: Price Bucket
|
647
|
+
price_with_vat_included: "%{price} (inc. VAT)"
|
648
|
+
problem_authorizing_card: "Problem authorizing credit card"
|
649
|
+
problem_capturing_card: "Problem capturing credit card"
|
650
|
+
problems_processing_order: "We had problems processing your order"
|
651
|
+
proceed_as_guest: "No Thanks, Proceed as Guest"
|
652
|
+
process: Process
|
653
|
+
product: Product
|
654
|
+
product_details: "Product Details"
|
655
|
+
product_group: Product Group
|
656
|
+
product_group_invalid: Product Group has invalid scopes
|
657
|
+
product_groups: Product Groups
|
658
|
+
product_has_no_description: This product has no description
|
659
|
+
product_properties: "Product Properties"
|
660
|
+
product_scopes:
|
661
|
+
groups:
|
662
|
+
price:
|
663
|
+
description: "Scopes for selecting products based on Price"
|
664
|
+
name: Price
|
665
|
+
search:
|
666
|
+
description: "Scopes for selecting products based on name, keywords and description of product"
|
667
|
+
name: "Text search"
|
668
|
+
taxon:
|
669
|
+
description: "Scopes for selecting products based on Taxons"
|
670
|
+
name: Taxon
|
671
|
+
values:
|
672
|
+
description: "Scopes for selecting products based on option and property values"
|
673
|
+
name: Values
|
674
|
+
scopes:
|
675
|
+
ascend_by_master_price:
|
676
|
+
name: Ascend by product master price
|
677
|
+
ascend_by_name:
|
678
|
+
name: Ascend by product name
|
679
|
+
ascend_by_updated_at:
|
680
|
+
name: Ascend by actualization date
|
681
|
+
descend_by_master_price:
|
682
|
+
name: Descend by product master price
|
683
|
+
descend_by_name:
|
684
|
+
name: Descend by product name
|
685
|
+
descend_by_popularity:
|
686
|
+
name: Sort by popularity(most popular first)
|
687
|
+
descend_by_updated_at:
|
688
|
+
name: Descend by actualization date
|
689
|
+
in_name:
|
690
|
+
args:
|
691
|
+
words: Words
|
692
|
+
description: "(separated by space or comma)"
|
693
|
+
name: "Product name have following"
|
694
|
+
sentence: product name contain <em>%s</em>
|
695
|
+
in_name_or_description:
|
696
|
+
args:
|
697
|
+
words: Words
|
698
|
+
description: "(separated by space or comma)"
|
699
|
+
name: "Product name or description have following"
|
700
|
+
sentence: name or description contain <em>%s</em>
|
701
|
+
in_name_or_keywords:
|
702
|
+
args:
|
703
|
+
words: Words
|
704
|
+
description: "(separated by space or comma)"
|
705
|
+
name: "Product name or meta keywords have following"
|
706
|
+
sentence: name or keywords contain <em>%s</em>
|
707
|
+
in_taxons:
|
708
|
+
args:
|
709
|
+
"taxon_names": "Taxon names"
|
710
|
+
description: "Taxon names have to be separated by comma or space(eg. adidas,shoes)"
|
711
|
+
name: "In taxons and all their descendants"
|
712
|
+
sentence: in <em>%s</em> and all their descendants
|
713
|
+
master_price_gte:
|
714
|
+
args:
|
715
|
+
amount: Amount
|
716
|
+
description: ""
|
717
|
+
name: "Master price greater or equal to"
|
718
|
+
sentence: price greater or equal to <em>%.2f</em>
|
719
|
+
master_price_lte:
|
720
|
+
args:
|
721
|
+
amount: Amount
|
722
|
+
description: ""
|
723
|
+
name: "Master price lesser or equal to"
|
724
|
+
sentence: price less or equal to <em>%.2f</em>
|
725
|
+
price_between:
|
726
|
+
args:
|
727
|
+
high: High
|
728
|
+
low: Low
|
729
|
+
description: ""
|
730
|
+
name: "Price between"
|
731
|
+
sentence: price between <em>%.2f</em> and <em>%.2f</em>
|
732
|
+
taxons_name_eq:
|
733
|
+
args:
|
734
|
+
taxon_name: "Taxon name"
|
735
|
+
description: "In specific taxon - without descendants"
|
736
|
+
name: "In Taxon(without descendants)"
|
737
|
+
sentence: in <em>%s</em>
|
738
|
+
with:
|
739
|
+
args:
|
740
|
+
value: Value
|
741
|
+
description: "Selects all products that have at least one variant that have specified value as either option or property (eg. red)"
|
742
|
+
name: With value
|
743
|
+
sentence: with value <em>%s</em>
|
744
|
+
with_ids:
|
745
|
+
args:
|
746
|
+
ids: IDs
|
747
|
+
description: "Select specific products"
|
748
|
+
name: Products with IDs
|
749
|
+
sentence: with IDs <em>%s</em>
|
750
|
+
with_option:
|
751
|
+
args:
|
752
|
+
option: Option
|
753
|
+
description: "Selects all products that have specified option(eg. color)"
|
754
|
+
name: "With option"
|
755
|
+
sentence: with option <em>%s</em>
|
756
|
+
with_option_value:
|
757
|
+
args:
|
758
|
+
option: Option
|
759
|
+
value: Value
|
760
|
+
description: "Selects all products that have at least one variant with specified option and value(eg. color:red)"
|
761
|
+
name: "With option and value"
|
762
|
+
sentence: with option <em>%s</em> and value <em>%s</em>
|
763
|
+
with_property:
|
764
|
+
args:
|
765
|
+
property: Property
|
766
|
+
description: "Selects all products that have specified property(eg. weight)"
|
767
|
+
name: "With property"
|
768
|
+
sentence: with property <em>%s</em>
|
769
|
+
with_property_value:
|
770
|
+
args:
|
771
|
+
property: Property
|
772
|
+
value: Value
|
773
|
+
description: "Selects all products that have at least one variant with specified property and value(eg. weight:10kg)"
|
774
|
+
name: "With property value"
|
775
|
+
sentence: with property <em>%s</em> and value <em>%s</em>
|
776
|
+
products: Products
|
777
|
+
products_with_zero_inventory_display: "Products with a zero inventory will %{not} be displayed"
|
778
|
+
properties: Properties
|
779
|
+
property: Property
|
780
|
+
prototype: Prototype
|
781
|
+
prototypes: Prototypes
|
782
|
+
provider: "Provider"
|
783
|
+
provider_settings_warning: "If you are changing the provider type, you must save first before you can edit the provider settings"
|
784
|
+
qty: Qty
|
785
|
+
quantity_shipped: Quantity Shipped
|
786
|
+
quantity_returned: Quantity Returned
|
787
|
+
range: "Range"
|
788
|
+
rate: Rate
|
789
|
+
reason: Reason
|
790
|
+
recalculate_order_total: "Recalculate order total"
|
791
|
+
receive: receive
|
792
|
+
received: Received
|
793
|
+
refund: Refund
|
794
|
+
register: Register as a New User
|
795
|
+
register_or_guest: Checkout as Guest or Register
|
796
|
+
registration: Registration
|
797
|
+
remember_me: "Remember me"
|
798
|
+
remove: Remove
|
799
|
+
reports: Reports
|
800
|
+
required_for_solo_and_maestro: Required for Solo and Maestro cards.
|
801
|
+
resend: Resend
|
802
|
+
resend_confirmation_instructions: "Resend confirmation instructions"
|
803
|
+
resend_unlock_instructions: "Resend unlock instructions"
|
804
|
+
reset_password: "Reset my password"
|
805
|
+
resource_controller:
|
806
|
+
member_object_not_found: "Member object not found."
|
807
|
+
successfully_created: "Successfully created!"
|
808
|
+
successfully_removed: "Successfully removed!"
|
809
|
+
successfully_updated: "Successfully updated!"
|
810
|
+
response_code: "Response Code"
|
811
|
+
resume: "resume"
|
812
|
+
resumed: Resumed
|
813
|
+
return: return
|
814
|
+
return_authorization: Return Authorization
|
815
|
+
return_authorization_updated: Return authorization updated
|
816
|
+
return_authorizations: Return Authorizations
|
817
|
+
return_quantity: Return Quantity
|
818
|
+
returned: Returned
|
819
|
+
rma_credit: RMA Credit
|
820
|
+
rma_number: RMA Number
|
821
|
+
rma_value: RMA Value
|
822
|
+
roles: Roles
|
823
|
+
sales_tax: "Sales Tax"
|
824
|
+
sales_total: "Sales Total"
|
825
|
+
sales_total_description: "Sales Total For All Orders"
|
826
|
+
save_and_continue: Save and Continue
|
827
|
+
save_preferences: Save Preferences
|
828
|
+
scope: Scope
|
829
|
+
scopes: Scopes
|
830
|
+
search: Search
|
831
|
+
search_results: "Search results for '%{keywords}'"
|
832
|
+
searching: Searching
|
833
|
+
secure_connection_type: Secure Connection Type
|
834
|
+
secure_creditcard: Secure Creditcard
|
835
|
+
select: Select
|
836
|
+
select_from_prototype: "Select From Prototype"
|
837
|
+
select_preferred_shipping_option: "Select preferred shipping option"
|
838
|
+
send_copy_of_all_mails_to: Send Copy of All Mails To
|
839
|
+
send_copy_of_orders_mails_to: Send Copy of Order Mails To
|
840
|
+
send_mails_as: Send Mails As
|
841
|
+
send_me_reset_password_instructions: "Send me reset password instructions"
|
842
|
+
send_order_mails_as: Send Order Mails As
|
843
|
+
server: Server
|
844
|
+
server_error: "The server returned an error"
|
845
|
+
settings: Settings
|
846
|
+
ship: ship
|
847
|
+
ship_address: "Ship Address"
|
848
|
+
shipment: Shipment
|
849
|
+
shipment_details: Shipment Details
|
850
|
+
shipment_mailer:
|
851
|
+
shipped_email:
|
852
|
+
subject: "Shipment Notification"
|
853
|
+
shipment_number: "Shipment #"
|
854
|
+
shipment_state: Shipment State
|
855
|
+
shipment_states:
|
856
|
+
backorder: backorder
|
857
|
+
partial: partial
|
858
|
+
pending: pending
|
859
|
+
ready: ready
|
860
|
+
shipped: shipped
|
861
|
+
shipment_updated: Shipment Updated
|
862
|
+
shipments: "Shipments"
|
863
|
+
shipped: Shipped
|
864
|
+
shipping: Shipping
|
865
|
+
shipping_address: "Shipping Address"
|
866
|
+
shipping_categories: "Shipping Categories"
|
867
|
+
shipping_categories_description: "Manage shipping categories to identify which products can be shipped via which method."
|
868
|
+
shipping_category: Shipping Category
|
869
|
+
shipping_cost: Cost
|
870
|
+
shipping_error: "Shipping Error"
|
871
|
+
shipping_instructions: "Shipping Instructions"
|
872
|
+
shipping_method: "Shipping Method"
|
873
|
+
shipping_methods: "Shipping Methods"
|
874
|
+
shipping_methods_description: "Manage shipping methods."
|
875
|
+
shipping_total: "Shipping Total"
|
876
|
+
shop_by_taxonomy: "Shop by %{taxonomy}"
|
877
|
+
shopping_cart: "Shopping Cart"
|
878
|
+
show: Show
|
879
|
+
show_active: "Show Active"
|
880
|
+
show_deleted: "Show Deleted"
|
881
|
+
show_incomplete_orders: "Show Incomplete Orders"
|
882
|
+
show_only_complete_orders: "Only show complete orders"
|
883
|
+
show_out_of_stock_products: "Show out-of-stock products"
|
884
|
+
show_price_inc_vat: "Show price including VAT"
|
885
|
+
showing_first_n: "Showing first %{n}"
|
886
|
+
sign_up: "Sign up"
|
887
|
+
site_name: "Site Name"
|
888
|
+
site_url: "Site URL"
|
889
|
+
sku: SKU
|
890
|
+
smtp: SMTP
|
891
|
+
smtp_authentication_type: SMTP Authentication Type
|
892
|
+
smtp_domain: SMTP Domain
|
893
|
+
smtp_mail_host: SMTP Mail Host
|
894
|
+
smtp_password: SMTP Password
|
895
|
+
smtp_port: SMTP Port
|
896
|
+
smtp_send_all_emails_as_from_following_address: "Send all mails as from the following address."
|
897
|
+
smtp_send_copy_to_this_addresses: "Sends a copy of all outgoing mails to this address. For multiple addresses, separate with commas."
|
898
|
+
smtp_username: SMTP Username
|
899
|
+
sold: Sold
|
900
|
+
sort_ordering: "Sort ordering"
|
901
|
+
special_instructions: "Special Instructions"
|
902
|
+
spree:
|
903
|
+
date: Date
|
904
|
+
time: Time
|
905
|
+
spree_gateway_error_flash_for_checkout: "There was a problem with your payment information. Please check your information and try again."
|
906
|
+
ssl_will_be_used_in_development_and_test_modes: "SSL will be used in development and test mode if necessary."
|
907
|
+
ssl_will_be_used_in_production_mode: "SSL will be used in production mode"
|
908
|
+
ssl_will_not_be_used_in_development_and_test_modes: "SSL will not be used in development and test mode if necessary."
|
909
|
+
ssl_will_not_be_used_in_production_mode: "SSL will not be used in production mode"
|
910
|
+
spree_alert_checking: "Check for Spree security and release alerts"
|
911
|
+
spree_alert_not_checking: "Not checking for Spree security and release alerts"
|
912
|
+
start: Start
|
913
|
+
start_date: Valid from
|
914
|
+
state: State
|
915
|
+
state_based: "State Based"
|
916
|
+
state_setting_description: "Administer the list of states/provinces associated with each country."
|
917
|
+
states: States
|
918
|
+
status: Status
|
919
|
+
stop: Stop
|
920
|
+
store: Store
|
921
|
+
street_address: "Street Address"
|
922
|
+
street_address_2: "Street Address (cont'd)"
|
923
|
+
subtotal: Subtotal
|
924
|
+
subtract: Subtract
|
925
|
+
successfully_created: "%{resource} has been successfully created!"
|
926
|
+
successfully_removed: "%{resource} has been successfully removed!"
|
927
|
+
successfully_updated: "%{resource} has been successfully updated!"
|
928
|
+
system: System
|
929
|
+
tax: Tax
|
930
|
+
tax_categories: "Tax Categories"
|
931
|
+
tax_categories_setting_description: "Set up tax categories to identify which products should be taxable."
|
932
|
+
tax_category: "Tax Category"
|
933
|
+
tax_rates: "Tax Rates"
|
934
|
+
tax_rates_description: Tax rates setup and configuration.
|
935
|
+
tax_settings: "Tax Settings"
|
936
|
+
tax_settings_description: Basic tax settings.
|
937
|
+
tax_total: "Tax Total"
|
938
|
+
tax_type: "Tax Type"
|
939
|
+
taxon: Taxon
|
940
|
+
taxon_edit: Edit Taxon
|
941
|
+
taxonomies: Taxonomies
|
942
|
+
taxonomies_setting_description: "Create and manage taxonomies."
|
943
|
+
taxonomy_edit: "Edit taxonomy"
|
944
|
+
taxonomy_tree_error: "The requested change has not been accepted and the tree has been returned to its previous state, please try again."
|
945
|
+
taxonomy_tree_instruction: "* Right click a child in the tree to access the menu for adding, deleting or sorting a child."
|
946
|
+
taxons: Taxons
|
947
|
+
test: "Test"
|
948
|
+
test_mode: Test Mode
|
949
|
+
thank_you_for_your_order: "Thank you for your business. Please print out a copy of this confirmation page for your records."
|
950
|
+
there_were_problems_with_the_following_fields: "There were problems with the following fields"
|
951
|
+
this_file_language: "English (US)"
|
952
|
+
this_month: "This Month"
|
953
|
+
this_year: "This Year"
|
954
|
+
thumbnail: "Thumbnail"
|
955
|
+
to_add_variants_you_must_first_define: "To add variants, you must first define"
|
956
|
+
to_state: "To State"
|
957
|
+
top_grossing_products: "Top Grossing Products"
|
958
|
+
total: Total
|
959
|
+
tracking: Tracking
|
960
|
+
transaction: Transaction
|
961
|
+
transactions: Transactions
|
962
|
+
tree: Tree
|
963
|
+
try_again: "Try Again"
|
964
|
+
type: Type
|
965
|
+
type_to_search: Type to search
|
966
|
+
unable_ship_method: "Unable to generate shipping methods due to a server error."
|
967
|
+
unable_to_authorize_credit_card: "Unable to Authorize Credit Card"
|
968
|
+
unable_to_capture_credit_card: "Unable to Capture Credit Card"
|
969
|
+
unable_to_connect_to_gateway: "Unable to connect to gateway."
|
970
|
+
unable_to_save_order: "Unable to Save Order"
|
971
|
+
under_paid: "Under Paid"
|
972
|
+
units: "Units"
|
973
|
+
unrecognized_card_type: Unrecognized card type
|
974
|
+
update: Update
|
975
|
+
update_password: "Update my password and log me in"
|
976
|
+
updated_successfully: "Updated Successfully"
|
977
|
+
updating: Updating
|
978
|
+
usage_limit: Usage Limit
|
979
|
+
use_as_shipping_address: Use as Shipping Address
|
980
|
+
use_billing_address: Use Billing Address
|
981
|
+
use_different_shipping_address: "Use Different Shipping Address"
|
982
|
+
use_new_cc: "Use a new card"
|
983
|
+
user: User
|
984
|
+
user_account: User Account
|
985
|
+
user_created_successfully: "User created successfully"
|
986
|
+
user_details: "User Details"
|
987
|
+
users: Users
|
988
|
+
validate_on_profile_create: Validate on profile create
|
989
|
+
validation:
|
990
|
+
cannot_be_less_than_shipped_units: "cannot be less than the number of shipped units."
|
991
|
+
is_too_large: "is too large -- stock on hand cannot cover requested quantity!"
|
992
|
+
must_be_int: "must be an integer"
|
993
|
+
must_be_non_negative: "must be a non-negative value"
|
994
|
+
value: Value
|
995
|
+
variants: Variants
|
996
|
+
vat: "VAT"
|
997
|
+
version: Version
|
998
|
+
view_shipping_options: "View shipping options"
|
999
|
+
void: Void
|
1000
|
+
website: Website
|
1001
|
+
weight: Weight
|
1002
|
+
welcome_to_sample_store: "Welcome to the sample store"
|
1003
|
+
what_is_a_cvv: "What is a (CVV) Credit Card Code?"
|
1004
|
+
what_is_this: "What's This?"
|
1005
|
+
whats_this: "What's this"
|
1006
|
+
width: Width
|
1007
|
+
year: "Year"
|
1008
|
+
you_have_been_logged_out: "You have been logged out."
|
1009
|
+
you_have_no_orders_yet: "You have no orders yet."
|
1010
|
+
your_cart_is_empty: "Your cart is empty"
|
1011
|
+
zip: Zip
|
1012
|
+
zone: Zone
|
1013
|
+
zone_based: "Zone Based"
|
1014
|
+
zone_setting_description: "Collections of countries, states or other zones to be used in various calculations."
|
1015
|
+
zones: Zones
|