spree 0.10.2 → 0.11.0
Sign up to get free protection for your applications and to get access to all the features.
Potentially problematic release.
This version of spree might be problematic. Click here for more details.
- data/CHANGELOG +81 -4
- data/CONTRIBUTORS +18 -10
- data/Rakefile +5 -4
- data/app/controllers/admin/adjustments_controller.rb +17 -3
- data/app/controllers/admin/base_controller.rb +2 -2
- data/app/controllers/admin/checkouts_controller.rb +43 -34
- data/app/controllers/admin/line_items_controller.rb +32 -18
- data/app/controllers/admin/option_types_controller.rb +1 -1
- data/app/controllers/admin/orders_controller.rb +28 -7
- data/app/controllers/admin/payments_controller.rb +7 -7
- data/app/controllers/admin/products_controller.rb +12 -23
- data/app/controllers/admin/reports_controller.rb +19 -7
- data/app/controllers/admin/return_authorizations_controller.rb +1 -1
- data/app/controllers/admin/shipments_controller.rb +9 -9
- data/app/controllers/admin/users_controller.rb +3 -1
- data/app/controllers/admin/variants_controller.rb +2 -2
- data/app/controllers/checkouts_controller.rb +29 -18
- data/app/controllers/content_controller.rb +1 -1
- data/{vendor/extensions/localization/app → app}/controllers/locale_controller.rb +1 -1
- data/app/controllers/orders_controller.rb +33 -30
- data/app/controllers/password_resets_controller.rb +4 -4
- data/app/controllers/products_controller.rb +0 -6
- data/app/controllers/spree/base_controller.rb +9 -2
- data/app/controllers/user_sessions_controller.rb +18 -18
- data/app/controllers/users_controller.rb +2 -2
- data/app/helpers/admin/base_helper.rb +5 -2
- data/app/helpers/admin/navigation_helper.rb +1 -1
- data/app/helpers/admin/orders_helper.rb +0 -13
- data/app/helpers/admin/products_helper.rb +0 -8
- data/app/helpers/checkouts_helper.rb +5 -5
- data/app/helpers/products_helper.rb +0 -12
- data/app/helpers/spree/base_helper.rb +10 -39
- data/app/helpers/taxons_helper.rb +1 -0
- data/app/models/address.rb +6 -1
- data/app/models/app_configuration.rb +15 -14
- data/app/models/calculator/flexi_rate.rb +2 -1
- data/app/models/calculator/vat.rb +1 -1
- data/app/models/checkout.rb +1 -1
- data/app/models/creditcard.rb +26 -20
- data/app/models/inventory_unit.rb +70 -21
- data/app/models/line_item.rb +25 -11
- data/app/models/order.rb +16 -10
- data/app/models/payment.rb +4 -1
- data/app/models/payment_method.rb +14 -5
- data/app/models/product.rb +12 -4
- data/app/models/role.rb +2 -2
- data/app/models/shipment.rb +21 -2
- data/app/models/tax_category.rb +8 -0
- data/app/models/taxon.rb +8 -0
- data/app/models/user.rb +2 -3
- data/app/models/variant.rb +18 -13
- data/config/boot.rb +1 -5
- data/config/cucumber.yml +7 -0
- data/config/database.yml +20 -37
- data/config/database.yml.example +5 -6
- data/config/environment.rb +6 -5
- data/config/environments/cucumber.rb +30 -0
- data/config/environments/production.rb +1 -4
- data/config/environments/staging.rb +3 -0
- data/config/environments/test.rb +1 -1
- data/config/initializers/cookie_verification_secret.rb +7 -0
- data/config/initializers/locales.rb +4 -2
- data/config/initializers/new_rails_defaults.rb +2 -0
- data/config/initializers/spree.rb +1 -0
- data/config/initializers/workarounds_for_ruby19.rb +0 -25
- data/config/locales/{en-US.yml → en_spree.yml} +18 -4
- data/config/routes.rb +2 -1
- 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/sample/payment_methods.yml +8 -1
- data/db/sample/shipments.yml +2 -2
- data/db/schema.rb +54 -21
- data/features/checkout.feature +98 -0
- data/features/create_admin_user.feature +18 -0
- data/features/search.feature +35 -0
- data/features/sign_in.feature +25 -0
- data/features/sign_out.feature +12 -0
- data/features/sign_up.feature +20 -0
- data/features/step_definitions/error_steps.rb +3 -0
- data/features/step_definitions/model_steps.rb +3 -0
- data/features/step_definitions/pickle_steps.rb +73 -0
- data/features/step_definitions/role_steps.rb +8 -0
- data/features/step_definitions/session_steps.rb +14 -0
- data/features/step_definitions/user_steps.rb +67 -0
- data/features/step_definitions/web_steps.rb +197 -0
- data/features/support/create_admin_user.rb +6 -0
- data/features/support/env.rb +89 -0
- data/features/support/paths.rb +32 -0
- data/features/support/pickle.rb +24 -0
- data/features/work_with_cart.feature +41 -0
- data/lib/generators/extension_model/extension_model_generator.rb +10 -10
- data/lib/generators/instance/templates/databases/mysql.yml +11 -0
- data/lib/scopes/variant.rb +10 -0
- data/lib/spree.rb +3 -3
- data/lib/spree/extensions.rb +1 -1
- data/lib/tasks/cucumber.rake +47 -0
- data/lib/tasks/database.rake +29 -29
- data/public/images/admin/bg/spree_50.png +0 -0
- data/public/images/tile-header.png +0 -0
- data/public/images/tile-slider.png +0 -0
- data/public/javascripts/admin/checkouts/edit.js +33 -0
- data/public/javascripts/dashboard.js +2 -2
- data/public/javascripts/taxonomy.js +2 -2
- data/public/stylesheets/admin/admin-tables.css +4 -0
- data/public/stylesheets/admin/admin.css +31 -16
- data/public/stylesheets/screen.css +16 -3
- data/script/about +3 -2
- data/script/console +2 -2
- data/script/cucumber +10 -0
- data/script/dbconsole +1 -1
- data/script/destroy +2 -2
- data/script/generate +2 -2
- data/script/performance/benchmarker +1 -1
- data/script/performance/profiler +1 -1
- data/script/plugin +2 -2
- data/script/runner +2 -2
- data/script/server +2 -2
- data/test/fixtures/payment_methods.yml +12 -0
- data/test/functional/admin/checkouts_controller_test.rb +0 -2
- data/test/functional/admin/line_items_controller_test.rb +78 -39
- data/test/functional/admin/products_controller_test.rb +4 -5
- data/test/integration/checkout_test.rb +1 -0
- data/test/test_helper.rb +114 -86
- data/test/unit/creditcard_test.rb +28 -7
- data/test/unit/flexi_rate_calculator_test.rb +75 -0
- data/test/unit/helpers/products_helper_test.rb +4 -4
- data/test/unit/inventory_unit_test.rb +39 -5
- data/test/unit/line_item_test.rb +60 -1
- data/test/unit/order_state_test.rb +85 -58
- data/test/unit/order_test.rb +144 -123
- data/test/unit/product_test.rb +21 -0
- data/test/unit/return_authorization_test.rb +22 -28
- data/test/unit/shipment_test.rb +19 -7
- data/test/unit/variant_test.rb +100 -24
- data/vendor/extensions/api/api_extension.rb +2 -2
- data/vendor/extensions/api/app/controllers/api/base_controller.rb +14 -6
- data/vendor/extensions/api/app/controllers/api/countries_controller.rb +4 -0
- data/vendor/extensions/api/app/controllers/api/orders_controller.rb +4 -4
- data/vendor/extensions/api/app/controllers/api/products_controller.rb +5 -1
- data/vendor/extensions/api/app/controllers/api/shipments_controller.rb +7 -7
- data/vendor/extensions/api/app/controllers/api/states_controller.rb +5 -0
- data/vendor/extensions/api/config/locales/{en-US.yml → en.yml} +2 -2
- data/vendor/extensions/api/config/routes.rb +5 -0
- data/vendor/extensions/api/test/integration/orders_api_test.rb +4 -4
- data/vendor/extensions/overview_dashboard/app/views/admin/overview/index.html.erb +1 -1
- data/vendor/extensions/payment_gateway/app/models/gateway.rb +1 -1
- data/vendor/extensions/payment_gateway/app/models/gateway/authorize_net_cim.rb +41 -29
- data/vendor/extensions/payment_gateway/app/models/gateway/bogus.rb +3 -3
- data/vendor/extensions/payment_gateway/app/models/gateway/eway.rb +11 -0
- data/vendor/extensions/payment_gateway/app/models/gateway/sage_pay.rb +9 -0
- data/vendor/extensions/payment_gateway/config/locales/{en-US.yml → en.yml} +1 -1
- data/vendor/extensions/payment_gateway/lib/spree/payment_gateway.rb +46 -56
- data/vendor/extensions/payment_gateway/payment_gateway_extension.rb +9 -10
- data/vendor/extensions/payment_gateway/test/unit/authorize_net_cim_test.rb +7 -6
- data/vendor/extensions/theme_default/app/stylesheets/_checkout.less +10 -3
- data/vendor/extensions/theme_default/app/views/admin/adjustments/index.html.erb +1 -1
- data/vendor/extensions/theme_default/app/views/admin/checkouts/_form.html.erb +31 -5
- data/vendor/extensions/theme_default/app/views/admin/checkouts/show.html.erb +27 -16
- data/vendor/extensions/theme_default/app/views/admin/images/_form.html.erb +4 -0
- data/vendor/extensions/theme_default/app/views/admin/images/index.html.erb +16 -13
- data/vendor/extensions/theme_default/app/views/admin/orders/_add_product.html.erb +1 -1
- data/vendor/extensions/theme_default/app/views/admin/orders/_form.html.erb +7 -0
- data/vendor/extensions/theme_default/app/views/admin/orders/index.html.erb +5 -5
- data/vendor/extensions/theme_default/app/views/admin/payment_methods/_form.html.erb +12 -6
- data/vendor/extensions/theme_default/app/views/admin/payment_methods/index.html.erb +22 -11
- data/vendor/extensions/theme_default/app/views/admin/product_groups/update.js.erb +2 -2
- data/vendor/extensions/theme_default/app/views/admin/products/_form.html.erb +6 -4
- data/vendor/extensions/theme_default/app/views/admin/shared/_address_form.html.erb +64 -55
- data/vendor/extensions/theme_default/app/views/admin/shared/_configuration_menu.html.erb +1 -1
- data/vendor/extensions/theme_default/app/views/admin/shared/_order_tabs.html.erb +11 -3
- data/vendor/extensions/theme_default/app/views/admin/shared/_product_tabs.html.erb +1 -1
- data/vendor/extensions/theme_default/app/views/admin/shipments/_form.html.erb +32 -29
- data/vendor/extensions/theme_default/app/views/admin/shipments/index.html.erb +2 -1
- data/vendor/extensions/theme_default/app/views/admin/tax_categories/_form.html.erb +6 -3
- data/vendor/extensions/theme_default/app/views/admin/tax_categories/index.html.erb +4 -2
- data/vendor/extensions/theme_default/app/views/admin/taxonomies/_taxon.html.erb +2 -2
- data/vendor/extensions/theme_default/app/views/admin/taxons/_form.html.erb +11 -1
- data/vendor/extensions/theme_default/app/views/admin/taxons/edit.html.erb +2 -2
- data/vendor/extensions/theme_default/app/views/admin/users/_form.html.erb +1 -1
- data/vendor/extensions/theme_default/app/views/admin/variants/_form.html.erb +4 -2
- data/vendor/extensions/theme_default/app/views/checkouts/_confirm.html.erb +1 -1
- data/vendor/extensions/theme_default/app/views/checkouts/_delivery.html.erb +1 -1
- data/vendor/extensions/theme_default/app/views/checkouts/_summary.html.erb +6 -6
- data/vendor/extensions/theme_default/app/views/checkouts/edit.html.erb +3 -3
- data/vendor/extensions/theme_default/app/views/layouts/admin.html.erb +7 -5
- data/vendor/extensions/theme_default/app/views/layouts/spree_application.html.erb +8 -4
- data/vendor/extensions/theme_default/app/views/orders/_line_item.html.erb +1 -1
- data/vendor/extensions/theme_default/app/views/products/index.html.erb +0 -1
- data/vendor/extensions/theme_default/app/views/shared/_footer.html.erb +4 -2
- data/vendor/extensions/theme_default/app/views/shared/_products.html.erb +3 -1
- data/vendor/extensions/theme_default/app/views/shared/_user_form.html.erb +1 -1
- data/vendor/extensions/theme_default/public/images/admin/bg/spree_50.png +0 -0
- data/vendor/extensions/theme_default/public/images/tile-header.png +0 -0
- data/vendor/extensions/theme_default/public/images/tile-slider.png +0 -0
- data/vendor/extensions/theme_default/public/javascripts/admin/checkouts/edit.js +50 -0
- data/vendor/extensions/theme_default/public/javascripts/taxonomy.js +2 -2
- data/vendor/extensions/theme_default/public/stylesheets/admin/admin-tables.css +8 -0
- data/vendor/extensions/theme_default/public/stylesheets/admin/admin.css +31 -16
- data/vendor/extensions/theme_default/public/stylesheets/screen.css +16 -3
- data/vendor/plugins/attribute_fu/{tasks → lib/tasks}/attribute_fu_tasks.rake +0 -0
- data/vendor/plugins/enumerable_constants/{tasks → lib/tasks}/enumerable_constants_tasks.rake +0 -0
- data/vendor/plugins/find_by_param/lib/find_by_param.rb +9 -5
- data/vendor/plugins/find_by_param/{tasks → lib/tasks}/find_by_param_tasks.rake +0 -0
- data/vendor/plugins/jrails/{tasks → lib/tasks}/jrails.rake +0 -0
- data/vendor/plugins/jrails_auto_complete/{tasks → lib/tasks}/jrails_auto_complete_tasks.rake +0 -0
- data/vendor/plugins/mail_queue/{tasks → lib/tasks}/mailer_queue_tasks.rake +0 -0
- data/vendor/plugins/open_id_authentication/{tasks → lib/tasks}/open_id_authentication_tasks.rake +0 -0
- data/vendor/plugins/resource_controller/lib/resource_controller/helpers/internal.rb +2 -2
- data/vendor/plugins/ssl_requirement/lib/ssl_requirement.rb +7 -7
- data/vendor/plugins/unobtrusive_date_picker/{tasks → lib/tasks}/datepicker_tasks.rake +0 -0
- metadata +82 -342
- data/app/helpers/admin/adjustments_helper.rb +0 -2
- data/app/helpers/admin/checkouts_helper.rb +0 -2
- data/app/helpers/admin/line_items_helper.rb +0 -2
- data/app/helpers/admin/properties_helper.rb +0 -9
- data/app/helpers/admin/prototypes_helper.rb +0 -18
- data/app/helpers/admin/return_authorizations_helper.rb +0 -2
- data/config/locales/cs-CZ.yml +0 -924
- data/config/locales/cs-CZ_rails.yml +0 -202
- data/config/locales/da.yml +0 -924
- data/config/locales/da_rails.yml +0 -197
- data/config/locales/de-CH.yml +0 -924
- data/config/locales/de-CH_rails.yml +0 -142
- data/config/locales/de.yml +0 -924
- data/config/locales/de_rails.yml +0 -140
- data/config/locales/en-AU.yml +0 -924
- data/config/locales/en-AU_rails.yml +0 -202
- data/config/locales/en-GB.yml +0 -924
- data/config/locales/en-GB_rails.yml +0 -196
- data/config/locales/en-US_rails.yml +0 -200
- data/config/locales/es.yml +0 -924
- data/config/locales/es_rails.yml +0 -173
- data/config/locales/fi.yml +0 -924
- data/config/locales/fi_rails.yml +0 -143
- data/config/locales/fr-FR.yml +0 -924
- data/config/locales/fr-FR_rails.yml +0 -123
- data/config/locales/il.yml +0 -924
- data/config/locales/il_rails.yml +0 -103
- data/config/locales/it.yml +0 -924
- data/config/locales/it_rails.yml +0 -146
- data/config/locales/jp.yml +0 -924
- data/config/locales/jp_rails.yml +0 -135
- data/config/locales/mx.yml +0 -924
- data/config/locales/mx_rails.yml +0 -181
- data/config/locales/nb-NO.yml +0 -924
- data/config/locales/nb-NO_rails.yml +0 -105
- data/config/locales/nl-BE.yml +0 -924
- data/config/locales/nl-BE_rails.yml +0 -155
- data/config/locales/nl-NL.yml +0 -924
- data/config/locales/nl-NL_rails.yml +0 -172
- data/config/locales/pl.yml +0 -924
- data/config/locales/pl_rails.yml +0 -118
- data/config/locales/pt-BR.yml +0 -924
- data/config/locales/pt-BR_rails.yml +0 -138
- data/config/locales/pt-PT.yml +0 -924
- data/config/locales/pt-PT_rails.yml +0 -133
- data/config/locales/ru-RU.yml +0 -924
- data/config/locales/ru-RU_rails.yml +0 -206
- data/config/locales/th.yml +0 -924
- data/config/locales/th_rails.yml +0 -195
- data/config/locales/vn.yml +0 -924
- data/config/locales/vn_rails.yml +0 -202
- data/lib/tasks/translation.rake +0 -102
- data/vendor/extensions/localization/README.rdoc +0 -5
- data/vendor/extensions/localization/Rakefile +0 -120
- data/vendor/extensions/localization/app/controllers/admin/localization_controller.rb +0 -2
- data/vendor/extensions/localization/app/helpers/locale_helper.rb +0 -2
- data/vendor/extensions/localization/app/helpers/localization_helper.rb +0 -2
- data/vendor/extensions/localization/app/views/shared/_language_bar.html.erb +0 -8
- data/vendor/extensions/localization/config/routes.rb +0 -4
- data/vendor/extensions/localization/lib/localization/user_preferences.rb +0 -9
- data/vendor/extensions/localization/lib/tasks/localization_extension_tasks.rake +0 -17
- data/vendor/extensions/localization/localization_extension.rb +0 -21
- data/vendor/extensions/localization/public/images/flags/ad.png +0 -0
- data/vendor/extensions/localization/public/images/flags/ae.png +0 -0
- data/vendor/extensions/localization/public/images/flags/af.png +0 -0
- data/vendor/extensions/localization/public/images/flags/ag.png +0 -0
- data/vendor/extensions/localization/public/images/flags/ai.png +0 -0
- data/vendor/extensions/localization/public/images/flags/al.png +0 -0
- data/vendor/extensions/localization/public/images/flags/am.png +0 -0
- data/vendor/extensions/localization/public/images/flags/an.png +0 -0
- data/vendor/extensions/localization/public/images/flags/ao.png +0 -0
- data/vendor/extensions/localization/public/images/flags/ar.png +0 -0
- data/vendor/extensions/localization/public/images/flags/as.png +0 -0
- data/vendor/extensions/localization/public/images/flags/at.png +0 -0
- data/vendor/extensions/localization/public/images/flags/au.png +0 -0
- data/vendor/extensions/localization/public/images/flags/aw.png +0 -0
- data/vendor/extensions/localization/public/images/flags/ax.png +0 -0
- data/vendor/extensions/localization/public/images/flags/az.png +0 -0
- data/vendor/extensions/localization/public/images/flags/ba.png +0 -0
- data/vendor/extensions/localization/public/images/flags/bb.png +0 -0
- data/vendor/extensions/localization/public/images/flags/bd.png +0 -0
- data/vendor/extensions/localization/public/images/flags/be.png +0 -0
- data/vendor/extensions/localization/public/images/flags/bf.png +0 -0
- data/vendor/extensions/localization/public/images/flags/bg.png +0 -0
- data/vendor/extensions/localization/public/images/flags/bh.png +0 -0
- data/vendor/extensions/localization/public/images/flags/bi.png +0 -0
- data/vendor/extensions/localization/public/images/flags/bj.png +0 -0
- data/vendor/extensions/localization/public/images/flags/bm.png +0 -0
- data/vendor/extensions/localization/public/images/flags/bn.png +0 -0
- data/vendor/extensions/localization/public/images/flags/bo.png +0 -0
- data/vendor/extensions/localization/public/images/flags/br.png +0 -0
- data/vendor/extensions/localization/public/images/flags/bs.png +0 -0
- data/vendor/extensions/localization/public/images/flags/bt.png +0 -0
- data/vendor/extensions/localization/public/images/flags/bv.png +0 -0
- data/vendor/extensions/localization/public/images/flags/bw.png +0 -0
- data/vendor/extensions/localization/public/images/flags/by.png +0 -0
- data/vendor/extensions/localization/public/images/flags/bz.png +0 -0
- data/vendor/extensions/localization/public/images/flags/ca.png +0 -0
- data/vendor/extensions/localization/public/images/flags/catalonia.png +0 -0
- data/vendor/extensions/localization/public/images/flags/cc.png +0 -0
- data/vendor/extensions/localization/public/images/flags/cd.png +0 -0
- data/vendor/extensions/localization/public/images/flags/cf.png +0 -0
- data/vendor/extensions/localization/public/images/flags/cg.png +0 -0
- data/vendor/extensions/localization/public/images/flags/ch.png +0 -0
- data/vendor/extensions/localization/public/images/flags/ci.png +0 -0
- data/vendor/extensions/localization/public/images/flags/ck.png +0 -0
- data/vendor/extensions/localization/public/images/flags/cl.png +0 -0
- data/vendor/extensions/localization/public/images/flags/cm.png +0 -0
- data/vendor/extensions/localization/public/images/flags/cn.png +0 -0
- data/vendor/extensions/localization/public/images/flags/co.png +0 -0
- data/vendor/extensions/localization/public/images/flags/cr.png +0 -0
- data/vendor/extensions/localization/public/images/flags/cs.png +0 -0
- data/vendor/extensions/localization/public/images/flags/cu.png +0 -0
- data/vendor/extensions/localization/public/images/flags/cv.png +0 -0
- data/vendor/extensions/localization/public/images/flags/cx.png +0 -0
- data/vendor/extensions/localization/public/images/flags/cy.png +0 -0
- data/vendor/extensions/localization/public/images/flags/cz.png +0 -0
- data/vendor/extensions/localization/public/images/flags/da.png +0 -0
- data/vendor/extensions/localization/public/images/flags/de.png +0 -0
- data/vendor/extensions/localization/public/images/flags/de_CH.png +0 -0
- data/vendor/extensions/localization/public/images/flags/dj.png +0 -0
- data/vendor/extensions/localization/public/images/flags/dm.png +0 -0
- data/vendor/extensions/localization/public/images/flags/do.png +0 -0
- data/vendor/extensions/localization/public/images/flags/dz.png +0 -0
- data/vendor/extensions/localization/public/images/flags/ec.png +0 -0
- data/vendor/extensions/localization/public/images/flags/ee.png +0 -0
- data/vendor/extensions/localization/public/images/flags/eg.png +0 -0
- data/vendor/extensions/localization/public/images/flags/eh.png +0 -0
- data/vendor/extensions/localization/public/images/flags/england.png +0 -0
- data/vendor/extensions/localization/public/images/flags/er.png +0 -0
- data/vendor/extensions/localization/public/images/flags/es.png +0 -0
- data/vendor/extensions/localization/public/images/flags/et.png +0 -0
- data/vendor/extensions/localization/public/images/flags/europeanunion.png +0 -0
- data/vendor/extensions/localization/public/images/flags/fam.png +0 -0
- data/vendor/extensions/localization/public/images/flags/fi.png +0 -0
- data/vendor/extensions/localization/public/images/flags/fj.png +0 -0
- data/vendor/extensions/localization/public/images/flags/fk.png +0 -0
- data/vendor/extensions/localization/public/images/flags/fm.png +0 -0
- data/vendor/extensions/localization/public/images/flags/fo.png +0 -0
- data/vendor/extensions/localization/public/images/flags/fr.png +0 -0
- data/vendor/extensions/localization/public/images/flags/ga.png +0 -0
- data/vendor/extensions/localization/public/images/flags/gb.png +0 -0
- data/vendor/extensions/localization/public/images/flags/gd.png +0 -0
- data/vendor/extensions/localization/public/images/flags/ge.png +0 -0
- data/vendor/extensions/localization/public/images/flags/gf.png +0 -0
- data/vendor/extensions/localization/public/images/flags/gh.png +0 -0
- data/vendor/extensions/localization/public/images/flags/gi.png +0 -0
- data/vendor/extensions/localization/public/images/flags/gl.png +0 -0
- data/vendor/extensions/localization/public/images/flags/gm.png +0 -0
- data/vendor/extensions/localization/public/images/flags/gn.png +0 -0
- data/vendor/extensions/localization/public/images/flags/gp.png +0 -0
- data/vendor/extensions/localization/public/images/flags/gq.png +0 -0
- data/vendor/extensions/localization/public/images/flags/gr.png +0 -0
- data/vendor/extensions/localization/public/images/flags/gs.png +0 -0
- data/vendor/extensions/localization/public/images/flags/gt.png +0 -0
- data/vendor/extensions/localization/public/images/flags/gu.png +0 -0
- data/vendor/extensions/localization/public/images/flags/gw.png +0 -0
- data/vendor/extensions/localization/public/images/flags/gy.png +0 -0
- data/vendor/extensions/localization/public/images/flags/hk.png +0 -0
- data/vendor/extensions/localization/public/images/flags/hm.png +0 -0
- data/vendor/extensions/localization/public/images/flags/hn.png +0 -0
- data/vendor/extensions/localization/public/images/flags/hr.png +0 -0
- data/vendor/extensions/localization/public/images/flags/ht.png +0 -0
- data/vendor/extensions/localization/public/images/flags/hu.png +0 -0
- data/vendor/extensions/localization/public/images/flags/id.png +0 -0
- data/vendor/extensions/localization/public/images/flags/ie.png +0 -0
- data/vendor/extensions/localization/public/images/flags/il.png +0 -0
- data/vendor/extensions/localization/public/images/flags/in.png +0 -0
- data/vendor/extensions/localization/public/images/flags/io.png +0 -0
- data/vendor/extensions/localization/public/images/flags/iq.png +0 -0
- data/vendor/extensions/localization/public/images/flags/ir.png +0 -0
- data/vendor/extensions/localization/public/images/flags/is.png +0 -0
- data/vendor/extensions/localization/public/images/flags/it.png +0 -0
- data/vendor/extensions/localization/public/images/flags/jm.png +0 -0
- data/vendor/extensions/localization/public/images/flags/jo.png +0 -0
- data/vendor/extensions/localization/public/images/flags/jp.png +0 -0
- data/vendor/extensions/localization/public/images/flags/ke.png +0 -0
- data/vendor/extensions/localization/public/images/flags/kg.png +0 -0
- data/vendor/extensions/localization/public/images/flags/kh.png +0 -0
- data/vendor/extensions/localization/public/images/flags/ki.png +0 -0
- data/vendor/extensions/localization/public/images/flags/km.png +0 -0
- data/vendor/extensions/localization/public/images/flags/kn.png +0 -0
- data/vendor/extensions/localization/public/images/flags/kp.png +0 -0
- data/vendor/extensions/localization/public/images/flags/kr.png +0 -0
- data/vendor/extensions/localization/public/images/flags/kw.png +0 -0
- data/vendor/extensions/localization/public/images/flags/ky.png +0 -0
- data/vendor/extensions/localization/public/images/flags/kz.png +0 -0
- data/vendor/extensions/localization/public/images/flags/la.png +0 -0
- data/vendor/extensions/localization/public/images/flags/lb.png +0 -0
- data/vendor/extensions/localization/public/images/flags/lc.png +0 -0
- data/vendor/extensions/localization/public/images/flags/li.png +0 -0
- data/vendor/extensions/localization/public/images/flags/lk.png +0 -0
- data/vendor/extensions/localization/public/images/flags/lr.png +0 -0
- data/vendor/extensions/localization/public/images/flags/ls.png +0 -0
- data/vendor/extensions/localization/public/images/flags/lt.png +0 -0
- data/vendor/extensions/localization/public/images/flags/lu.png +0 -0
- data/vendor/extensions/localization/public/images/flags/lv.png +0 -0
- data/vendor/extensions/localization/public/images/flags/ly.png +0 -0
- data/vendor/extensions/localization/public/images/flags/ma.png +0 -0
- data/vendor/extensions/localization/public/images/flags/mc.png +0 -0
- data/vendor/extensions/localization/public/images/flags/md.png +0 -0
- data/vendor/extensions/localization/public/images/flags/me.png +0 -0
- data/vendor/extensions/localization/public/images/flags/mg.png +0 -0
- data/vendor/extensions/localization/public/images/flags/mh.png +0 -0
- data/vendor/extensions/localization/public/images/flags/mk.png +0 -0
- data/vendor/extensions/localization/public/images/flags/ml.png +0 -0
- data/vendor/extensions/localization/public/images/flags/mm.png +0 -0
- data/vendor/extensions/localization/public/images/flags/mn.png +0 -0
- data/vendor/extensions/localization/public/images/flags/mo.png +0 -0
- data/vendor/extensions/localization/public/images/flags/mp.png +0 -0
- data/vendor/extensions/localization/public/images/flags/mq.png +0 -0
- data/vendor/extensions/localization/public/images/flags/mr.png +0 -0
- data/vendor/extensions/localization/public/images/flags/ms.png +0 -0
- data/vendor/extensions/localization/public/images/flags/mt.png +0 -0
- data/vendor/extensions/localization/public/images/flags/mu.png +0 -0
- data/vendor/extensions/localization/public/images/flags/mv.png +0 -0
- data/vendor/extensions/localization/public/images/flags/mw.png +0 -0
- data/vendor/extensions/localization/public/images/flags/mx.png +0 -0
- data/vendor/extensions/localization/public/images/flags/my.png +0 -0
- data/vendor/extensions/localization/public/images/flags/mz.png +0 -0
- data/vendor/extensions/localization/public/images/flags/na.png +0 -0
- data/vendor/extensions/localization/public/images/flags/nc.png +0 -0
- data/vendor/extensions/localization/public/images/flags/ne.png +0 -0
- data/vendor/extensions/localization/public/images/flags/nf.png +0 -0
- data/vendor/extensions/localization/public/images/flags/ng.png +0 -0
- data/vendor/extensions/localization/public/images/flags/ni.png +0 -0
- data/vendor/extensions/localization/public/images/flags/nl.png +0 -0
- data/vendor/extensions/localization/public/images/flags/no.png +0 -0
- data/vendor/extensions/localization/public/images/flags/np.png +0 -0
- data/vendor/extensions/localization/public/images/flags/nr.png +0 -0
- data/vendor/extensions/localization/public/images/flags/nu.png +0 -0
- data/vendor/extensions/localization/public/images/flags/nz.png +0 -0
- data/vendor/extensions/localization/public/images/flags/om.png +0 -0
- data/vendor/extensions/localization/public/images/flags/pa.png +0 -0
- data/vendor/extensions/localization/public/images/flags/pe.png +0 -0
- data/vendor/extensions/localization/public/images/flags/pf.png +0 -0
- data/vendor/extensions/localization/public/images/flags/pg.png +0 -0
- data/vendor/extensions/localization/public/images/flags/ph.png +0 -0
- data/vendor/extensions/localization/public/images/flags/pk.png +0 -0
- data/vendor/extensions/localization/public/images/flags/pl.png +0 -0
- data/vendor/extensions/localization/public/images/flags/pm.png +0 -0
- data/vendor/extensions/localization/public/images/flags/pn.png +0 -0
- data/vendor/extensions/localization/public/images/flags/pr.png +0 -0
- data/vendor/extensions/localization/public/images/flags/ps.png +0 -0
- data/vendor/extensions/localization/public/images/flags/pt.png +0 -0
- data/vendor/extensions/localization/public/images/flags/pw.png +0 -0
- data/vendor/extensions/localization/public/images/flags/py.png +0 -0
- data/vendor/extensions/localization/public/images/flags/qa.png +0 -0
- data/vendor/extensions/localization/public/images/flags/re.png +0 -0
- data/vendor/extensions/localization/public/images/flags/ro.png +0 -0
- data/vendor/extensions/localization/public/images/flags/rs.png +0 -0
- data/vendor/extensions/localization/public/images/flags/ru.png +0 -0
- data/vendor/extensions/localization/public/images/flags/rw.png +0 -0
- data/vendor/extensions/localization/public/images/flags/sa.png +0 -0
- data/vendor/extensions/localization/public/images/flags/sb.png +0 -0
- data/vendor/extensions/localization/public/images/flags/sc.png +0 -0
- data/vendor/extensions/localization/public/images/flags/scotland.png +0 -0
- data/vendor/extensions/localization/public/images/flags/sd.png +0 -0
- data/vendor/extensions/localization/public/images/flags/se.png +0 -0
- data/vendor/extensions/localization/public/images/flags/sg.png +0 -0
- data/vendor/extensions/localization/public/images/flags/sh.png +0 -0
- data/vendor/extensions/localization/public/images/flags/si.png +0 -0
- data/vendor/extensions/localization/public/images/flags/sj.png +0 -0
- data/vendor/extensions/localization/public/images/flags/sk.png +0 -0
- data/vendor/extensions/localization/public/images/flags/sl.png +0 -0
- data/vendor/extensions/localization/public/images/flags/sm.png +0 -0
- data/vendor/extensions/localization/public/images/flags/sn.png +0 -0
- data/vendor/extensions/localization/public/images/flags/so.png +0 -0
- data/vendor/extensions/localization/public/images/flags/sr.png +0 -0
- data/vendor/extensions/localization/public/images/flags/st.png +0 -0
- data/vendor/extensions/localization/public/images/flags/sv.png +0 -0
- data/vendor/extensions/localization/public/images/flags/sy.png +0 -0
- data/vendor/extensions/localization/public/images/flags/sz.png +0 -0
- data/vendor/extensions/localization/public/images/flags/tc.png +0 -0
- data/vendor/extensions/localization/public/images/flags/td.png +0 -0
- data/vendor/extensions/localization/public/images/flags/tf.png +0 -0
- data/vendor/extensions/localization/public/images/flags/tg.png +0 -0
- data/vendor/extensions/localization/public/images/flags/th.png +0 -0
- data/vendor/extensions/localization/public/images/flags/tj.png +0 -0
- data/vendor/extensions/localization/public/images/flags/tk.png +0 -0
- data/vendor/extensions/localization/public/images/flags/tl.png +0 -0
- data/vendor/extensions/localization/public/images/flags/tm.png +0 -0
- data/vendor/extensions/localization/public/images/flags/tn.png +0 -0
- data/vendor/extensions/localization/public/images/flags/to.png +0 -0
- data/vendor/extensions/localization/public/images/flags/tr.png +0 -0
- data/vendor/extensions/localization/public/images/flags/tt.png +0 -0
- data/vendor/extensions/localization/public/images/flags/tv.png +0 -0
- data/vendor/extensions/localization/public/images/flags/tw.png +0 -0
- data/vendor/extensions/localization/public/images/flags/tz.png +0 -0
- data/vendor/extensions/localization/public/images/flags/ua.png +0 -0
- data/vendor/extensions/localization/public/images/flags/ug.png +0 -0
- data/vendor/extensions/localization/public/images/flags/um.png +0 -0
- data/vendor/extensions/localization/public/images/flags/us.png +0 -0
- data/vendor/extensions/localization/public/images/flags/uy.png +0 -0
- data/vendor/extensions/localization/public/images/flags/uz.png +0 -0
- data/vendor/extensions/localization/public/images/flags/va.png +0 -0
- data/vendor/extensions/localization/public/images/flags/vc.png +0 -0
- data/vendor/extensions/localization/public/images/flags/ve.png +0 -0
- data/vendor/extensions/localization/public/images/flags/vg.png +0 -0
- data/vendor/extensions/localization/public/images/flags/vi.png +0 -0
- data/vendor/extensions/localization/public/images/flags/vn.png +0 -0
- data/vendor/extensions/localization/public/images/flags/vu.png +0 -0
- data/vendor/extensions/localization/public/images/flags/wales.png +0 -0
- data/vendor/extensions/localization/public/images/flags/wf.png +0 -0
- data/vendor/extensions/localization/public/images/flags/ws.png +0 -0
- data/vendor/extensions/localization/public/images/flags/ye.png +0 -0
- data/vendor/extensions/localization/public/images/flags/yt.png +0 -0
- data/vendor/extensions/localization/public/images/flags/za.png +0 -0
- data/vendor/extensions/localization/public/images/flags/zm.png +0 -0
- data/vendor/extensions/localization/public/images/flags/zw.png +0 -0
- data/vendor/extensions/localization/spec/controllers/admin/localization_controller_spec.rb +0 -10
- data/vendor/extensions/localization/spec/controllers/locale_controller_spec.rb +0 -35
- data/vendor/extensions/localization/spec/helpers/locale_helper_spec.rb +0 -5
- data/vendor/extensions/localization/spec/helpers/localization_helper_spec.rb +0 -5
- data/vendor/extensions/localization/spec/spec.opts +0 -6
- data/vendor/extensions/localization/spec/spec_helper.rb +0 -37
- data/vendor/extensions/payment_gateway/app/models/gateway/protx.rb +0 -9
- data/vendor/extensions/theme_default/app/views/admin/taxonomies/_manage_products.rhtml +0 -31
- data/vendor/extensions/theme_default/app/views/admin/taxonomies/_success.rhtml +0 -1
@@ -1,196 +0,0 @@
|
|
1
|
-
en-GB:
|
2
|
-
date:
|
3
|
-
formats:
|
4
|
-
# Use the strftime parameters for formats.
|
5
|
-
# When no format has been given, it uses default.
|
6
|
-
# You can provide other formats here if you like!
|
7
|
-
default: "%Y-%m-%d"
|
8
|
-
short: "%b %d"
|
9
|
-
long: "%B %d, %Y"
|
10
|
-
|
11
|
-
day_names: [Sunday, Monday, Tuesday, Wednesday, Thursday, Friday, Saturday]
|
12
|
-
abbr_day_names: [Sun, Mon, Tue, Wed, Thu, Fri, Sat]
|
13
|
-
|
14
|
-
# Don't forget the nil at the beginning; there's no such thing as a 0th month
|
15
|
-
month_names: [~, January, February, March, April, May, June, July, August, September, October, November, December]
|
16
|
-
abbr_month_names: [~, Jan, Feb, Mar, Apr, May, Jun, Jul, Aug, Sep, Oct, Nov, Dec]
|
17
|
-
# Used in date_select and datime_select.
|
18
|
-
order: [ :year, :month, :day ]
|
19
|
-
|
20
|
-
time:
|
21
|
-
formats:
|
22
|
-
default: "%a, %d %b %Y %H:%M:%S %z"
|
23
|
-
short: "%d %b %H:%M"
|
24
|
-
long: "%B %d, %Y %H:%M"
|
25
|
-
am: "am"
|
26
|
-
pm: "pm"
|
27
|
-
|
28
|
-
# Used in array.to_sentence.
|
29
|
-
support:
|
30
|
-
array:
|
31
|
-
words_connector: ", "
|
32
|
-
two_words_connector: " and "
|
33
|
-
last_word_connector: ", and "
|
34
|
-
|
35
|
-
number:
|
36
|
-
# Used in number_with_delimiter()
|
37
|
-
# These are also the defaults for 'currency', 'percentage', 'precision', and 'human'
|
38
|
-
format:
|
39
|
-
# Sets the separator between the units, for more precision (e.g. 1.0 / 2.0 == 0.5)
|
40
|
-
separator: "."
|
41
|
-
# Delimets thousands (e.g. 1,000,000 is a million) (always in groups of three)
|
42
|
-
delimiter: ","
|
43
|
-
# Number of decimals, behind the separator (the number 1 with a precision of 2 gives: 1.00)
|
44
|
-
precision: 3
|
45
|
-
|
46
|
-
# Used in number_to_currency()
|
47
|
-
currency:
|
48
|
-
format:
|
49
|
-
# Where is the currency sign? %u is the currency unit, %n the number (default: £5.00)
|
50
|
-
format: "%u%n"
|
51
|
-
unit: "£"
|
52
|
-
# These three are to override number.format and are optional
|
53
|
-
separator: "."
|
54
|
-
delimiter: ","
|
55
|
-
precision: 2
|
56
|
-
|
57
|
-
# Used in number_to_percentage()
|
58
|
-
percentage:
|
59
|
-
format:
|
60
|
-
# These three are to override number.format and are optional
|
61
|
-
# separator:
|
62
|
-
delimiter: ""
|
63
|
-
# precision:
|
64
|
-
|
65
|
-
# Used in number_to_precision()
|
66
|
-
precision:
|
67
|
-
format:
|
68
|
-
# These three are to override number.format and are optional
|
69
|
-
# separator:
|
70
|
-
delimiter: ""
|
71
|
-
# precision:
|
72
|
-
|
73
|
-
# Used in number_to_human_size()
|
74
|
-
human:
|
75
|
-
format:
|
76
|
-
# These three are to override number.format and are optional
|
77
|
-
# separator:
|
78
|
-
delimiter: ""
|
79
|
-
precision: 1
|
80
|
-
storage_units:
|
81
|
-
# Storage units output formatting.
|
82
|
-
# %u is the storage unit, %n is the number (default: 2 MB)
|
83
|
-
format: "%n %u"
|
84
|
-
units:
|
85
|
-
byte:
|
86
|
-
one: "Byte"
|
87
|
-
other: "Bytes"
|
88
|
-
kb: "KB"
|
89
|
-
mb: "MB"
|
90
|
-
gb: "GB"
|
91
|
-
tb: "TB"
|
92
|
-
|
93
|
-
# Used in distance_of_time_in_words(), distance_of_time_in_words_to_now(), time_ago_in_words()
|
94
|
-
datetime:
|
95
|
-
distance_in_words:
|
96
|
-
half_a_minute: "half a minute"
|
97
|
-
less_than_x_seconds:
|
98
|
-
one: "less than 1 second"
|
99
|
-
other: "less than {{count}} seconds"
|
100
|
-
x_seconds:
|
101
|
-
one: "1 second"
|
102
|
-
other: "{{count}} seconds"
|
103
|
-
less_than_x_minutes:
|
104
|
-
one: "less than a minute"
|
105
|
-
other: "less than {{count}} minutes"
|
106
|
-
x_minutes:
|
107
|
-
one: "1 minute"
|
108
|
-
other: "{{count}} minutes"
|
109
|
-
about_x_hours:
|
110
|
-
one: "about 1 hour"
|
111
|
-
other: "about {{count}} hours"
|
112
|
-
x_days:
|
113
|
-
one: "1 day"
|
114
|
-
other: "{{count}} days"
|
115
|
-
about_x_months:
|
116
|
-
one: "about 1 month"
|
117
|
-
other: "about {{count}} months"
|
118
|
-
x_months:
|
119
|
-
one: "1 month"
|
120
|
-
other: "{{count}} months"
|
121
|
-
about_x_years:
|
122
|
-
one: "about 1 year"
|
123
|
-
other: "about {{count}} years"
|
124
|
-
over_x_years:
|
125
|
-
one: "over 1 year"
|
126
|
-
other: "over {{count}} years"
|
127
|
-
prompts:
|
128
|
-
year: "Year"
|
129
|
-
month: "Month"
|
130
|
-
day: "Day"
|
131
|
-
hour: "Hour"
|
132
|
-
minute: "Minute"
|
133
|
-
second: "Seconds"
|
134
|
-
|
135
|
-
activerecord:
|
136
|
-
errors:
|
137
|
-
template:
|
138
|
-
header:
|
139
|
-
one: "1 error prohibited this {{model}} from being saved"
|
140
|
-
other: "{{count}} errors prohibited this {{model}} from being saved"
|
141
|
-
# The variable :count is also available
|
142
|
-
body: "There were problems with the following fields:"
|
143
|
-
|
144
|
-
# The values :model, :attribute and :value are always available for interpolation
|
145
|
-
# The value :count is available when applicable. Can be used for pluralization.
|
146
|
-
messages:
|
147
|
-
inclusion: "is not included in the list"
|
148
|
-
exclusion: "is reserved"
|
149
|
-
invalid: "is invalid"
|
150
|
-
confirmation: "doesn't match confirmation"
|
151
|
-
accepted: "must be accepted"
|
152
|
-
empty: "can't be empty"
|
153
|
-
blank: "can't be blank"
|
154
|
-
too_long: "is too long (maximum is {{count}} characters)"
|
155
|
-
too_short: "is too short (minimum is {{count}} characters)"
|
156
|
-
wrong_length: "is the wrong length (should be {{count}} characters)"
|
157
|
-
taken: "has already been taken"
|
158
|
-
not_a_number: "is not a number"
|
159
|
-
greater_than: "must be greater than {{count}}"
|
160
|
-
greater_than_or_equal_to: "must be greater than or equal to {{count}}"
|
161
|
-
equal_to: "must be equal to {{count}}"
|
162
|
-
less_than: "must be less than {{count}}"
|
163
|
-
less_than_or_equal_to: "must be less than or equal to {{count}}"
|
164
|
-
odd: "must be odd"
|
165
|
-
even: "must be even"
|
166
|
-
|
167
|
-
# Append your own errors here or at the model/attributes scope.
|
168
|
-
|
169
|
-
# You can define own errors for models or model attributes.
|
170
|
-
# The values :model, :attribute and :value are always available for interpolation.
|
171
|
-
#
|
172
|
-
# For example,
|
173
|
-
# models:
|
174
|
-
# user:
|
175
|
-
# blank: "This is a custom blank message for {{model}}: {{attribute}}"
|
176
|
-
# attributes:
|
177
|
-
# login:
|
178
|
-
# blank: "This is a custom blank message for User login"
|
179
|
-
# Will define custom blank validation message for User model and
|
180
|
-
# custom blank validation message for login attribute of User model.
|
181
|
-
#models:
|
182
|
-
|
183
|
-
# Translate model names. Used in Model.human_name().
|
184
|
-
#models:
|
185
|
-
# For example,
|
186
|
-
# user: "Dude"
|
187
|
-
# will translate User model name to "Dude"
|
188
|
-
|
189
|
-
# Translate model attribute names. Used in Model.human_attribute_name(attribute).
|
190
|
-
#attributes:
|
191
|
-
# For example,
|
192
|
-
# user:
|
193
|
-
# login: "Handle"
|
194
|
-
# will translate User attribute "login" as "Handle"
|
195
|
-
|
196
|
-
|
@@ -1,200 +0,0 @@
|
|
1
|
-
en-US:
|
2
|
-
date:
|
3
|
-
formats:
|
4
|
-
# Use the strftime parameters for formats.
|
5
|
-
# When no format has been given, it uses default.
|
6
|
-
# You can provide other formats here if you like!
|
7
|
-
default: "%Y-%m-%d"
|
8
|
-
short: "%b %d"
|
9
|
-
long: "%B %d, %Y"
|
10
|
-
|
11
|
-
day_names: [Sunday, Monday, Tuesday, Wednesday, Thursday, Friday, Saturday]
|
12
|
-
abbr_day_names: [Sun, Mon, Tue, Wed, Thu, Fri, Sat]
|
13
|
-
|
14
|
-
# Don't forget the nil at the beginning; there's no such thing as a 0th month
|
15
|
-
month_names: [~, January, February, March, April, May, June, July, August, September, October, November, December]
|
16
|
-
abbr_month_names: [~, Jan, Feb, Mar, Apr, May, Jun, Jul, Aug, Sep, Oct, Nov, Dec]
|
17
|
-
# Used in date_select and datime_select.
|
18
|
-
order: [ :year, :month, :day ]
|
19
|
-
|
20
|
-
time:
|
21
|
-
formats:
|
22
|
-
default: "%a, %d %b %Y %H:%M:%S %z"
|
23
|
-
short: "%d %b %H:%M"
|
24
|
-
long: "%B %d, %Y %H:%M"
|
25
|
-
am: "am"
|
26
|
-
pm: "pm"
|
27
|
-
|
28
|
-
# Used in array.to_sentence.
|
29
|
-
support:
|
30
|
-
array:
|
31
|
-
words_connector: ", "
|
32
|
-
two_words_connector: " and "
|
33
|
-
last_word_connector: ", and "
|
34
|
-
select:
|
35
|
-
# default value for :prompt => true in FormOptionsHelper
|
36
|
-
prompt: "Please select"
|
37
|
-
|
38
|
-
number:
|
39
|
-
# Used in number_with_delimiter()
|
40
|
-
# These are also the defaults for 'currency', 'percentage', 'precision', and 'human'
|
41
|
-
format:
|
42
|
-
# Sets the separator between the units, for more precision (e.g. 1.0 / 2.0 == 0.5)
|
43
|
-
separator: "."
|
44
|
-
# Delimets thousands (e.g. 1,000,000 is a million) (always in groups of three)
|
45
|
-
delimiter: ","
|
46
|
-
# Number of decimals, behind the separator (the number 1 with a precision of 2 gives: 1.00)
|
47
|
-
precision: 3
|
48
|
-
|
49
|
-
# Used in number_to_currency()
|
50
|
-
currency:
|
51
|
-
format:
|
52
|
-
# Where is the currency sign? %u is the currency unit, %n the number (default: $5.00)
|
53
|
-
format: "%u%n"
|
54
|
-
unit: "$"
|
55
|
-
# These three are to override number.format and are optional
|
56
|
-
separator: "."
|
57
|
-
delimiter: ","
|
58
|
-
precision: 2
|
59
|
-
|
60
|
-
# Used in number_to_percentage()
|
61
|
-
percentage:
|
62
|
-
format:
|
63
|
-
# These three are to override number.format and are optional
|
64
|
-
# separator:
|
65
|
-
delimiter: ""
|
66
|
-
# precision:
|
67
|
-
|
68
|
-
# Used in number_to_precision()
|
69
|
-
precision:
|
70
|
-
format:
|
71
|
-
# These three are to override number.format and are optional
|
72
|
-
# separator:
|
73
|
-
delimiter: ""
|
74
|
-
# precision:
|
75
|
-
|
76
|
-
# Used in number_to_human_size()
|
77
|
-
human:
|
78
|
-
format:
|
79
|
-
# These three are to override number.format and are optional
|
80
|
-
# separator:
|
81
|
-
delimiter: ""
|
82
|
-
precision: 1
|
83
|
-
storage_units:
|
84
|
-
# Storage units output formatting.
|
85
|
-
# %u is the storage unit, %n is the number (default: 2 MB)
|
86
|
-
format: "%n %u"
|
87
|
-
units:
|
88
|
-
byte:
|
89
|
-
one: "Byte"
|
90
|
-
other: "Bytes"
|
91
|
-
kb: "KB"
|
92
|
-
mb: "MB"
|
93
|
-
gb: "GB"
|
94
|
-
tb: "TB"
|
95
|
-
|
96
|
-
# Used in distance_of_time_in_words(), distance_of_time_in_words_to_now(), time_ago_in_words()
|
97
|
-
datetime:
|
98
|
-
distance_in_words:
|
99
|
-
half_a_minute: "half a minute"
|
100
|
-
less_than_x_seconds:
|
101
|
-
one: "less than 1 second"
|
102
|
-
other: "less than {{count}} seconds"
|
103
|
-
x_seconds:
|
104
|
-
one: "1 second"
|
105
|
-
other: "{{count}} seconds"
|
106
|
-
less_than_x_minutes:
|
107
|
-
one: "less than a minute"
|
108
|
-
other: "less than {{count}} minutes"
|
109
|
-
x_minutes:
|
110
|
-
one: "1 minute"
|
111
|
-
other: "{{count}} minutes"
|
112
|
-
about_x_hours:
|
113
|
-
one: "about 1 hour"
|
114
|
-
other: "about {{count}} hours"
|
115
|
-
x_days:
|
116
|
-
one: "1 day"
|
117
|
-
other: "{{count}} days"
|
118
|
-
about_x_months:
|
119
|
-
one: "about 1 month"
|
120
|
-
other: "about {{count}} months"
|
121
|
-
x_months:
|
122
|
-
one: "1 month"
|
123
|
-
other: "{{count}} months"
|
124
|
-
about_x_years:
|
125
|
-
one: "about 1 year"
|
126
|
-
other: "about {{count}} years"
|
127
|
-
over_x_years:
|
128
|
-
one: "over 1 year"
|
129
|
-
other: "over {{count}} years"
|
130
|
-
prompts:
|
131
|
-
year: "Year"
|
132
|
-
month: "Month"
|
133
|
-
day: "Day"
|
134
|
-
hour: "Hour"
|
135
|
-
minute: "Minute"
|
136
|
-
second: "Seconds"
|
137
|
-
|
138
|
-
activerecord:
|
139
|
-
errors:
|
140
|
-
template:
|
141
|
-
header:
|
142
|
-
one: "1 error prohibited this {{model}} from being saved"
|
143
|
-
other: "{{count}} errors prohibited this {{model}} from being saved"
|
144
|
-
# The variable :count is also available
|
145
|
-
body: "There were problems with the following fields:"
|
146
|
-
|
147
|
-
# The values :model, :attribute and :value are always available for interpolation
|
148
|
-
# The value :count is available when applicable. Can be used for pluralization.
|
149
|
-
messages:
|
150
|
-
inclusion: "is not included in the list"
|
151
|
-
exclusion: "is reserved"
|
152
|
-
invalid: "is invalid"
|
153
|
-
confirmation: "doesn't match confirmation"
|
154
|
-
accepted: "must be accepted"
|
155
|
-
empty: "can't be empty"
|
156
|
-
blank: "can't be blank"
|
157
|
-
too_long: "is too long (maximum is {{count}} characters)"
|
158
|
-
too_short: "is too short (minimum is {{count}} characters)"
|
159
|
-
wrong_length: "is the wrong length (should be {{count}} characters)"
|
160
|
-
taken: "has already been taken"
|
161
|
-
not_a_number: "is not a number"
|
162
|
-
greater_than: "must be greater than {{count}}"
|
163
|
-
greater_than_or_equal_to: "must be greater than or equal to {{count}}"
|
164
|
-
equal_to: "must be equal to {{count}}"
|
165
|
-
less_than: "must be less than {{count}}"
|
166
|
-
less_than_or_equal_to: "must be less than or equal to {{count}}"
|
167
|
-
odd: "must be odd"
|
168
|
-
even: "must be even"
|
169
|
-
record_invalid: "Validation failed: {{errors}}"
|
170
|
-
# Append your own errors here or at the model/attributes scope.
|
171
|
-
|
172
|
-
full_messages:
|
173
|
-
format: "{{attribute}} {{message}}"
|
174
|
-
|
175
|
-
# You can define own errors for models or model attributes.
|
176
|
-
# The values :model, :attribute and :value are always available for interpolation.
|
177
|
-
#
|
178
|
-
# For example,
|
179
|
-
# models:
|
180
|
-
# user:
|
181
|
-
# blank: "This is a custom blank message for {{model}}: {{attribute}}"
|
182
|
-
# attributes:
|
183
|
-
# login:
|
184
|
-
# blank: "This is a custom blank message for User login"
|
185
|
-
# Will define custom blank validation message for User model and
|
186
|
-
# custom blank validation message for login attribute of User model.
|
187
|
-
#models:
|
188
|
-
|
189
|
-
# Translate model names. Used in Model.human_name().
|
190
|
-
#models:
|
191
|
-
# For example,
|
192
|
-
# user: "Dude"
|
193
|
-
# will translate User model name to "Dude"
|
194
|
-
|
195
|
-
# Translate model attribute names. Used in Model.human_attribute_name(attribute).
|
196
|
-
#attributes:
|
197
|
-
# For example,
|
198
|
-
# user:
|
199
|
-
# login: "Handle"
|
200
|
-
# will translate User attribute "login" as "Handle"
|
data/config/locales/es.yml
DELETED
@@ -1,924 +0,0 @@
|
|
1
|
-
---
|
2
|
-
es:
|
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: Una copia de todos los correos sera enviada a las siguientes direcciones
|
7
|
-
abbreviation: Abreviatura
|
8
|
-
access_denied: "Acceso denegado"
|
9
|
-
account: Cuenta
|
10
|
-
account_updated: "Cuenta actualizada!"
|
11
|
-
action: Acción
|
12
|
-
actions:
|
13
|
-
cancel: Cancelar
|
14
|
-
create: Crear
|
15
|
-
destroy: Eliminar
|
16
|
-
list: Lista
|
17
|
-
listing: Listado
|
18
|
-
new: Nueva
|
19
|
-
update: Actualizar
|
20
|
-
active: "Active"
|
21
|
-
activerecord:
|
22
|
-
attributes:
|
23
|
-
address:
|
24
|
-
address1: Direccion
|
25
|
-
address2: "Direccion (continuación)"
|
26
|
-
city: Ciudad
|
27
|
-
country: "Country"
|
28
|
-
first_name: "First Name"
|
29
|
-
last_name: "Last Name"
|
30
|
-
phone: Telefono
|
31
|
-
state: "State"
|
32
|
-
zipcode: "Codigo postal"
|
33
|
-
checkout:
|
34
|
-
bill_address:
|
35
|
-
address1: "Billing address street"
|
36
|
-
city: "Billing address city"
|
37
|
-
firstname: "Billing address first name"
|
38
|
-
lastname: "Billing address last name"
|
39
|
-
phone: "Billing address phone"
|
40
|
-
state: "Billing address state"
|
41
|
-
zipcode: "Billing address zipcode"
|
42
|
-
ship_address:
|
43
|
-
address1: "Shipping address street"
|
44
|
-
city: "Shipping address city"
|
45
|
-
firstname: "Shipping address first name"
|
46
|
-
lastname: "Shipping address last name"
|
47
|
-
phone: "Shipping address phone"
|
48
|
-
state: "Shipping address state"
|
49
|
-
zipcode: "Shipping address zipcode"
|
50
|
-
country:
|
51
|
-
iso: ISO
|
52
|
-
iso3: ISO3
|
53
|
-
iso_name: "Nombre ISO"
|
54
|
-
name: Nombre
|
55
|
-
numcode: "Codigo ISO"
|
56
|
-
creditcard:
|
57
|
-
cc_type: Tipo
|
58
|
-
month: Mes
|
59
|
-
number: Numero
|
60
|
-
verification_value: "Codigo de verificacion"
|
61
|
-
year: Año
|
62
|
-
inventory_unit:
|
63
|
-
state: Provincia
|
64
|
-
line_item:
|
65
|
-
price: Precio
|
66
|
-
quantity: Cantidad
|
67
|
-
order:
|
68
|
-
checkout_complete: "Pedido completado"
|
69
|
-
ip_address: "Direccion IP"
|
70
|
-
item_total: "Total articulos"
|
71
|
-
number: Numero
|
72
|
-
special_instructions: "Instrucciones especiales"
|
73
|
-
state: Provincia
|
74
|
-
total: Total
|
75
|
-
product:
|
76
|
-
available_on: "Disponible en"
|
77
|
-
cost_price: "Cost Price"
|
78
|
-
description: Descripción
|
79
|
-
master_price: "Precio principal"
|
80
|
-
name: Nombre
|
81
|
-
on_hand: "En mano"
|
82
|
-
shipping_category: "Categoria de envio"
|
83
|
-
tax_category: "Tax Category"
|
84
|
-
product_group:
|
85
|
-
name: "Name"
|
86
|
-
product_count: "Product count"
|
87
|
-
product_scopes: "Product scopes"
|
88
|
-
products: "Products"
|
89
|
-
url: "URL"
|
90
|
-
product_scope:
|
91
|
-
arguments: "Arguments"
|
92
|
-
description: "Description"
|
93
|
-
property:
|
94
|
-
name: Nombre
|
95
|
-
presentation: Presentacion
|
96
|
-
prototype:
|
97
|
-
name: Nombre
|
98
|
-
return_authorization:
|
99
|
-
amount: Amount
|
100
|
-
role:
|
101
|
-
name: Nombre
|
102
|
-
state:
|
103
|
-
abbr: Abreviatura
|
104
|
-
name: Nombre
|
105
|
-
tax_category:
|
106
|
-
description: Description
|
107
|
-
name: Name
|
108
|
-
tax_rate:
|
109
|
-
amount: Rate
|
110
|
-
taxon:
|
111
|
-
name: Nombre
|
112
|
-
permalink: Enlace permanente
|
113
|
-
position: Posicion
|
114
|
-
taxonomy:
|
115
|
-
name: Nombre
|
116
|
-
user:
|
117
|
-
email: Email
|
118
|
-
variant:
|
119
|
-
cost_price: "Cost Price"
|
120
|
-
depth: Profundidad
|
121
|
-
height: Altura
|
122
|
-
price: Precio
|
123
|
-
sku: SKU
|
124
|
-
weight: Peso
|
125
|
-
width: Ancho
|
126
|
-
zone:
|
127
|
-
description: Descripcion
|
128
|
-
name: Nombre
|
129
|
-
models:
|
130
|
-
address:
|
131
|
-
one: Direccion
|
132
|
-
other: Direcciones
|
133
|
-
cheque_payment:
|
134
|
-
one: Cheque Payment
|
135
|
-
other: Cheque Payments
|
136
|
-
country:
|
137
|
-
one: Pais
|
138
|
-
other: Paises
|
139
|
-
creditcard:
|
140
|
-
one: "Tarjeta de credito"
|
141
|
-
other: "Tarjetas de credito"
|
142
|
-
creditcard_payment:
|
143
|
-
one: "Pago con Tarjeta de Crédito"
|
144
|
-
other: "Pagos con Tarjeta de Crédito"
|
145
|
-
creditcard_txn:
|
146
|
-
one: "Transaccion con Tarjeta de Crédito"
|
147
|
-
other: "Transacciones con Tarjeta de Crédito"
|
148
|
-
inventory_unit:
|
149
|
-
one: "Unidad en inventario"
|
150
|
-
other: "Unidades en inventario"
|
151
|
-
line_item:
|
152
|
-
one: "Articulo"
|
153
|
-
other: "Articulos"
|
154
|
-
order:
|
155
|
-
one: Pedido
|
156
|
-
other: Pedidos
|
157
|
-
payment:
|
158
|
-
one: Pago
|
159
|
-
other: Pagos
|
160
|
-
product:
|
161
|
-
one: Producto
|
162
|
-
other: Productos
|
163
|
-
product_group:
|
164
|
-
one: "Product group"
|
165
|
-
other: "Product groups"
|
166
|
-
property:
|
167
|
-
one: Propiedad
|
168
|
-
other: Propiedades
|
169
|
-
prototype:
|
170
|
-
one: Prototipo
|
171
|
-
other: Prototipos
|
172
|
-
return_authorization:
|
173
|
-
one: Return Authorization
|
174
|
-
other: Return Authorizations
|
175
|
-
role:
|
176
|
-
one: Funcion
|
177
|
-
other: Funciones
|
178
|
-
shipment:
|
179
|
-
one: Shipment
|
180
|
-
other: Shipments
|
181
|
-
shipping_category:
|
182
|
-
one: "Categoría de envio"
|
183
|
-
other: "Categorías de envio"
|
184
|
-
state:
|
185
|
-
one: Provincia
|
186
|
-
other: Provincias
|
187
|
-
tax_category:
|
188
|
-
one: "Tax Category"
|
189
|
-
other: "Tax Categories"
|
190
|
-
tax_rate:
|
191
|
-
one: "Tax Rate"
|
192
|
-
other: "Tax Rates"
|
193
|
-
taxon:
|
194
|
-
one: Taxon
|
195
|
-
other: Taxons
|
196
|
-
taxonomy:
|
197
|
-
one: Taxonomia
|
198
|
-
other: Taxonomias
|
199
|
-
user:
|
200
|
-
one: Usuario
|
201
|
-
other: Usuarios
|
202
|
-
variant:
|
203
|
-
one: Variante
|
204
|
-
other: Variantes
|
205
|
-
zone:
|
206
|
-
one: Zona
|
207
|
-
other: Zonas
|
208
|
-
add: Añadir
|
209
|
-
add_category: "Añadir Categoría"
|
210
|
-
add_country: "Añadir Pais"
|
211
|
-
add_option_type: "Añadir tipo de opción"
|
212
|
-
add_option_types: "Añadir tipos de opciones"
|
213
|
-
add_option_value: "Añadir valor de opcion"
|
214
|
-
add_product: "Add Product"
|
215
|
-
add_product_properties: "Añadir propiedades de producto"
|
216
|
-
add_scope: "Add a scope"
|
217
|
-
add_state: "Añadir provincia"
|
218
|
-
add_to_cart: "Añadir a la cesta"
|
219
|
-
add_zone: "Añadir zona"
|
220
|
-
additional_item: Additional Item Cost
|
221
|
-
address: Dirección
|
222
|
-
address_information: "Información de la Dirección"
|
223
|
-
adjustment: Ajuste
|
224
|
-
adjustments: Adjustments
|
225
|
-
administration: Administración
|
226
|
-
all: "All"
|
227
|
-
all_departments: All departments
|
228
|
-
allow_backorders: "Permitir devoluciones"
|
229
|
-
allow_ssl_to_be_used_when_in_developement_and_test_modes: Permitir el uso de SSL en los modos de desarrollo y prueba
|
230
|
-
allow_ssl_to_be_used_when_in_production_mode: Permitir el uso de SSL en produccion
|
231
|
-
allowed_ssl_in_production_mode: "SSL will {{not}} be used in production"
|
232
|
-
already_registered: Already Registered?
|
233
|
-
alternative_phone: Alternative Phone
|
234
|
-
amount: Cuantía
|
235
|
-
analytics_trackers: Analytics Trackers
|
236
|
-
are_you_sure: "¿Está seguro?"
|
237
|
-
are_you_sure_category: "¿Está seguro de que quiere eliminar esta categoría?"
|
238
|
-
are_you_sure_delete: "¿Está seguro de que quiere eliminar esta entrada?"
|
239
|
-
are_you_sure_delete_image: "¿Está seguro de que quiere eliminar esta imágen?"
|
240
|
-
are_you_sure_option_type: "¿Está seguro de que quiere eliminar este tipo de opción?"
|
241
|
-
are_you_sure_you_want_to_capture: "¿Estás seguro de que deseas capturar?"
|
242
|
-
assign_taxon: "Asignar Taxon"
|
243
|
-
assign_taxons: "Asignar Taxons"
|
244
|
-
authorization_failure: "Fallo de autorización"
|
245
|
-
authorized: Autorizado
|
246
|
-
available_on: "Disponible en"
|
247
|
-
available_taxons: "Taxons disponibles"
|
248
|
-
awaiting_return: Awaiting Return
|
249
|
-
back: Atrás
|
250
|
-
back_to_store: "Volver a la tienda"
|
251
|
-
backordered: Backordered
|
252
|
-
backordering_is_allowed: "Backordering {{not}} allowed"
|
253
|
-
balance_due: "Balance Due"
|
254
|
-
best_selling_products: "Best Selling Products"
|
255
|
-
best_selling_taxons: "Best Selling Taxons"
|
256
|
-
bill_address: "Dirección de facturación"
|
257
|
-
billing: Billing
|
258
|
-
billing_address: "Dirección de facturación"
|
259
|
-
by_day: "by day"
|
260
|
-
calculator: Calculator
|
261
|
-
calculator_settings_warning: "If you are changing the calculator type, you must save first before you can edit the calculator settings"
|
262
|
-
cancel: Cancelar
|
263
|
-
canceled: Cancelado
|
264
|
-
cannot_create_returns: Cannot create returns as this order has not shipped yet.
|
265
|
-
capture: captura
|
266
|
-
card_code: "Código de la tarjeta"
|
267
|
-
card_details: "Card details"
|
268
|
-
card_number: "Número de tarjeta"
|
269
|
-
card_type_is: Card type is
|
270
|
-
cart: Cesta
|
271
|
-
categories: Categorías
|
272
|
-
category: Categoría
|
273
|
-
change: Cambiar
|
274
|
-
change_language: "Cambiar Idioma"
|
275
|
-
change_my_password: "Change my password"
|
276
|
-
charge_total: Charge Total
|
277
|
-
charged: Cargado
|
278
|
-
charges: Charges
|
279
|
-
checkout: Pagar
|
280
|
-
checkout_steps:
|
281
|
-
# keys correspond to Checkout state names:
|
282
|
-
address: Address
|
283
|
-
complete: Complete
|
284
|
-
confirm: Confirm
|
285
|
-
delivery: Delivery
|
286
|
-
payment: Payment
|
287
|
-
cheque: Cheque
|
288
|
-
city: Ciudad
|
289
|
-
clone: Clone
|
290
|
-
code: Code
|
291
|
-
combine: Combine
|
292
|
-
comp_order: "Pedido completado"
|
293
|
-
comp_order_confirmation: "Confirmacion de pedido completado"
|
294
|
-
complete: complete
|
295
|
-
complete_list: "Complete List"
|
296
|
-
configuration: Configuracion
|
297
|
-
configuration_options: "Opciones de configuracion"
|
298
|
-
configurations: Configuraciones
|
299
|
-
configured: Configured
|
300
|
-
confirm: Confirmar
|
301
|
-
confirm_delete: "Confirm Deletion"
|
302
|
-
confirm_password: "Confirme la contraseña"
|
303
|
-
continue: Continuar
|
304
|
-
continue_shopping: "Seguir comprando"
|
305
|
-
copy_all_mails_to: Copiar todos los correos a
|
306
|
-
cost_price: "Cost Price"
|
307
|
-
count: Count
|
308
|
-
count_of_reduced_by: "count of '{{name}}' reduced by {{count}}"
|
309
|
-
country: País
|
310
|
-
country_based: "Pais base"
|
311
|
-
coupon: Coupon
|
312
|
-
coupon_code: Coupon Code
|
313
|
-
coupons: Coupons
|
314
|
-
coupons_description: Manage coupons
|
315
|
-
create: Crear
|
316
|
-
create_a_new_account: "Crear una nueva cuenta"
|
317
|
-
create_user_account: Create User Account
|
318
|
-
created_successfully: "Creado correctamente"
|
319
|
-
credit: Credit
|
320
|
-
credit_card: "Tarjeta de credito"
|
321
|
-
credit_card_capture_complete: "La tarjeta de credito ha sido registrada"
|
322
|
-
credit_card_payment: "Pago con tarjeta de credito"
|
323
|
-
credit_owed: "Credit Owed"
|
324
|
-
credit_total: Credit Total
|
325
|
-
creditcard: "Tarjeta de credito"
|
326
|
-
creditcards: Creditcards
|
327
|
-
credits: Credits
|
328
|
-
current: Actual
|
329
|
-
customer: Cliente
|
330
|
-
customer_details: "Customer Details"
|
331
|
-
customer_search: "Customer Search"
|
332
|
-
date_created: Date created
|
333
|
-
date_range: "Rango de Fecha"
|
334
|
-
debit: Debit
|
335
|
-
delete: Eliminar
|
336
|
-
depth: Profundidad
|
337
|
-
description: Descripción
|
338
|
-
destroy: Eliminar
|
339
|
-
display: Mostrar
|
340
|
-
edit: Editar
|
341
|
-
editing_billing_integration: Editing Billing Integration
|
342
|
-
editing_category: "Editando categoría"
|
343
|
-
editing_coupon: Editing Coupon
|
344
|
-
editing_option_type: "Editando tipo de opción"
|
345
|
-
editing_option_types: "Editando tipos de opción"
|
346
|
-
editing_payment_method: Editing Payment Method
|
347
|
-
editing_product: "Editando Producto"
|
348
|
-
editing_product_group: "Editing Product Group"
|
349
|
-
editing_property: "Editando Propiedad"
|
350
|
-
editing_prototype: "Editando Prototipo"
|
351
|
-
editing_shipping_category: "Editando Categoria de envío"
|
352
|
-
editing_shipping_method: "Editando metodo de envío"
|
353
|
-
editing_shipping_rate: Editing Shipping Rate
|
354
|
-
editing_state: "Editando provincia"
|
355
|
-
editing_tax_category: "Editando Categoría fiscal"
|
356
|
-
editing_tax_rate: "Editing Tax Rate"
|
357
|
-
editing_tracker: Editing Tracker
|
358
|
-
editing_user: "Editando usuario"
|
359
|
-
editing_zone: "Editando zona"
|
360
|
-
email: "Correo Electrónico"
|
361
|
-
email_address: "Dirección de Correo Electrónico"
|
362
|
-
email_server_settings_description: "Configuración del servidor de correo electrónico"
|
363
|
-
empty_cart: "Vaciar Cesta"
|
364
|
-
enable_login_via_login_password: "Use standard email/password"
|
365
|
-
enable_login_via_openid: "Use OpenID instead"
|
366
|
-
enable_mail_delivery: Habilitar envio por correo
|
367
|
-
enable_mail_queue: "Enable Mail Queue"
|
368
|
-
enter_exactly_as_shown_on_card: Please enter exactly as shown on the card
|
369
|
-
environment: "Environment"
|
370
|
-
error: error
|
371
|
-
event: Evento
|
372
|
-
existing_customer: "Cliente existente"
|
373
|
-
expiration: "Expiracion"
|
374
|
-
expiration_month: "Mes de vencimiento"
|
375
|
-
expiration_year: "Año de vencimiento"
|
376
|
-
extension: Extensión
|
377
|
-
extensions: Extensiones
|
378
|
-
filename: "Nombre de archivo"
|
379
|
-
final_confirmation: "Confirmación Final"
|
380
|
-
finalize: Finalize
|
381
|
-
finalized_payments: Finalized Payments
|
382
|
-
first_item: First Item Cost
|
383
|
-
first_name: Nombre
|
384
|
-
flat_percent: Flat Percent
|
385
|
-
flat_rate_amount: Amount
|
386
|
-
flat_rate_per_item: "Flat Rate (per item)"
|
387
|
-
flat_rate_per_order: "Flat Rate (per order)"
|
388
|
-
flexible_rate: "Flexible Rate"
|
389
|
-
forgot_password: "¿Olvidaste tu contraseña?"
|
390
|
-
full_name: "Full Name"
|
391
|
-
gateway: "pasarela"
|
392
|
-
gateway_configuration: "Gateway configuration"
|
393
|
-
gateway_error: "Error en la pasarela"
|
394
|
-
gateway_setting_description: "Configuracion de la pasarela"
|
395
|
-
gateway_settings_warning: "If you are changing the gateway type, you must save first before you can edit the gateway settings"
|
396
|
-
general: "General"
|
397
|
-
general_settings: "Configuracion general"
|
398
|
-
general_settings_description: "Configurar los ajustes generales de Spree."
|
399
|
-
google_analytics: "Google Analytics"
|
400
|
-
google_analytics_active: "Activo"
|
401
|
-
google_analytics_create: "Crear nueva cuenta de Google Analytics"
|
402
|
-
google_analytics_id: "Analytics ID"
|
403
|
-
google_analytics_new: "Nueva cuenta de Google Analytics"
|
404
|
-
google_analytics_setting_description: "Gestionar Google Analytics ID"
|
405
|
-
guest_user_account: Checkout as a Guest
|
406
|
-
has_no_shipped_units: has no shipped units
|
407
|
-
height: Altura
|
408
|
-
hello_user: "Hola usuario"
|
409
|
-
history: Historia
|
410
|
-
home: "Inicio"
|
411
|
-
icons_by: "Icons by"
|
412
|
-
image: Imágen
|
413
|
-
images: Imagenes
|
414
|
-
images_for: "Images for"
|
415
|
-
in_progress: "En progreso"
|
416
|
-
include_in_shipment: Include in Shipment
|
417
|
-
included_in_other_shipment: Included in another Shipment
|
418
|
-
included_in_this_shipment: Included in this Shipment
|
419
|
-
instructions_to_reset_password: "Fill out the form below and instructions to reset your password will be emailed to you:"
|
420
|
-
integration_settings_warning: "If you are changing the billing integration, you must save first before you can edit the integration settings"
|
421
|
-
invalid_search: "Busqueda invalida"
|
422
|
-
inventory: Inventario
|
423
|
-
inventory_adjustment: "Ajuste de inventario"
|
424
|
-
inventory_setting_description: "Configuracion del inventario, Devoluciones, mostrar articulos sin stock"
|
425
|
-
inventory_settings: "Configuracion del inventario"
|
426
|
-
is_not_available_to_shipment_address: is not available to shipment address
|
427
|
-
issue_number: Issue Number
|
428
|
-
item: artículo
|
429
|
-
item_description: "Descripción del artículo"
|
430
|
-
item_total: "Total de artículos"
|
431
|
-
items: "Items"
|
432
|
-
last_14_days: "Last 14 Days"
|
433
|
-
last_5_orders: "Last 5 Orders"
|
434
|
-
last_7_days: "Last 7 Days"
|
435
|
-
last_month: "Last Month"
|
436
|
-
last_name: Apellidos
|
437
|
-
last_year: "Last Year"
|
438
|
-
list: Lista
|
439
|
-
listing_categories: "Listado de Categorías"
|
440
|
-
listing_option_types: "Listado de tipos de opciones"
|
441
|
-
listing_orders: "Listado de pedidos"
|
442
|
-
listing_product_groups: "Listing Product Groups"
|
443
|
-
listing_reports: "Listado de reportes"
|
444
|
-
listing_tax_categories: "Listado de Taxons"
|
445
|
-
listing_users: "Listado de usuarios"
|
446
|
-
live: "Live"
|
447
|
-
loading: Loading
|
448
|
-
locale_changed: "Se ha cambiado el idioma"
|
449
|
-
log_in: "Iniciar sesión"
|
450
|
-
logged_in_as: "Identificado como"
|
451
|
-
logged_in_succesfully: "Conectado con éxito"
|
452
|
-
logged_out: "Se ha cerrado la sesión."
|
453
|
-
login_as_existing: "Log In as Existing Customer"
|
454
|
-
login_failed: "No se ha podido iniciar la sesion, error de autenticacion."
|
455
|
-
login_name: "Nombre de usuario"
|
456
|
-
logout: "Cerrar sesión"
|
457
|
-
look_for_similar_items: Buscar artículos similares
|
458
|
-
maestro_or_solo_cards: Maestro/Solo cards
|
459
|
-
mail_delivery_enabled: "La entrega de correo está habilitada"
|
460
|
-
mail_delivery_not_enabled: "La entrega de correo está deshabilitada"
|
461
|
-
mail_queue_enabled: "Mail queue is enabled"
|
462
|
-
mail_queue_not_enabled: "Mail queue is not enabled (emails are delivered immediately)"
|
463
|
-
mail_server_preferences: Preferencias del servidor de correo
|
464
|
-
mail_server_settings: "Configuración del servidor de correo"
|
465
|
-
make_refund: Make refund
|
466
|
-
mark_shipped: "Marcar como enviado"
|
467
|
-
master_price: "Precio principal"
|
468
|
-
max_items: Max Items
|
469
|
-
meta_description: "Meta descripcion"
|
470
|
-
meta_keywords: "Meta palabras clave"
|
471
|
-
metadata: "Metadatos"
|
472
|
-
missing_required_information: "Missing Required Information"
|
473
|
-
month: "Mes"
|
474
|
-
my_account: "Mi cuenta"
|
475
|
-
my_orders: "Mis pedidos"
|
476
|
-
name: Nombre
|
477
|
-
new: Nuevo
|
478
|
-
new_adjustment: "New Adjustment"
|
479
|
-
new_billing_integration: New Billing Integration
|
480
|
-
new_category: "Nueva categoría"
|
481
|
-
new_coupon: New Coupon
|
482
|
-
new_customer: "Nuevo cliente"
|
483
|
-
new_image: "Nueva Imágen"
|
484
|
-
new_option_type: "Nuevo tipo de opción"
|
485
|
-
new_option_value: "Nuevo valor de la opción"
|
486
|
-
new_order: "New Order"
|
487
|
-
new_payment: "New Payment"
|
488
|
-
new_payment_method: New Payment Method
|
489
|
-
new_product: "Nuevo producto"
|
490
|
-
new_product_group: New Product Group
|
491
|
-
new_property: "Nueva propiedad"
|
492
|
-
new_prototype: "Nuevo prototipo"
|
493
|
-
new_return_authorization: New Return Authorization
|
494
|
-
new_shipment: "Nuevo envio"
|
495
|
-
new_shipping_category: "Nueva categoria de envio"
|
496
|
-
new_shipping_method: "Nueva forma de envio"
|
497
|
-
new_shipping_rate: New Shipping Rate
|
498
|
-
new_state: "Nueva provincia"
|
499
|
-
new_tax_category: "Nueva categoría"
|
500
|
-
new_tax_rate: "Nuevo iipo impositivo"
|
501
|
-
new_taxon: "New Taxon"
|
502
|
-
new_taxonomy: "New Taxonomy"
|
503
|
-
new_tracker: New Tracker
|
504
|
-
new_user: "Nuevo usuario"
|
505
|
-
new_variant: "Nueva Variante"
|
506
|
-
new_zone: "Nueva zona"
|
507
|
-
next: próximo
|
508
|
-
no_items_in_cart: "La cesta está vacía"
|
509
|
-
no_match_found: "No se ha encontrado"
|
510
|
-
no_payment_methods_available: "Can't check out, no payment methods are configured for this environment"
|
511
|
-
no_products_found: "No products found"
|
512
|
-
no_shipping_methods_available: "No shipping methods available, please change your address and try again."
|
513
|
-
no_user_found: "No se ha encontrado ningun usuario con esa direccion de correo"
|
514
|
-
none: "Ninguno"
|
515
|
-
none_available: "No hay nada que mostrar"
|
516
|
-
not: not
|
517
|
-
note: Note
|
518
|
-
notice_messages:
|
519
|
-
option_type_removed: "Succesfully removed option type."
|
520
|
-
product_cloned: "Product has been cloned"
|
521
|
-
product_deleted: "Product has been deleted"
|
522
|
-
product_not_cloned: "Product could not be cloned"
|
523
|
-
product_not_deleted: "Product could not be deleted"
|
524
|
-
track_me_in_GA: "Track Me in GA"
|
525
|
-
variant_deleted: "Variant has been deleted"
|
526
|
-
variant_not_deleted: "Variant could not be deleted"
|
527
|
-
on_hand: "En mano"
|
528
|
-
operation: Operación
|
529
|
-
option_Values: "Valores de opción"
|
530
|
-
option_types: "Tipos de opción"
|
531
|
-
option_values: "Option Values"
|
532
|
-
options: Opciones
|
533
|
-
or: o
|
534
|
-
ord_qty: "Ord. Qty"
|
535
|
-
ord_total: "Ord. Total"
|
536
|
-
order: Pedido
|
537
|
-
order_confirmation_note: "Nota de confirmación de pedido"
|
538
|
-
order_date: "Fecha de pedido"
|
539
|
-
order_details: "Detalles del pedido"
|
540
|
-
order_email_resent: "Email de pedido reenviado"
|
541
|
-
order_not_in_system: That order number is not valid on this site.
|
542
|
-
order_number: "Pedido #"
|
543
|
-
order_operation_authorize: "Autorizar"
|
544
|
-
order_processed_but_following_items_are_out_of_stock: "Your order has been processed, but following items are out of stock:"
|
545
|
-
order_processed_successfully: "Su pedido se ha procesado correctamente"
|
546
|
-
order_summary: Order Summary
|
547
|
-
order_sure_want_to: "¿Está seguro de quiere {{event}} este pedido?"
|
548
|
-
order_total: "Total del pedido"
|
549
|
-
order_total_message: "El importe total cargado a su tarjeta sera"
|
550
|
-
order_updated: "Pedido actualizado"
|
551
|
-
orders: Pedidos
|
552
|
-
other_payment_options: Other Payment Options
|
553
|
-
out_of_stock: "Sin stock"
|
554
|
-
out_of_stock_products: "Out of Stock Products"
|
555
|
-
over_paid: "Over Paid"
|
556
|
-
overview: General
|
557
|
-
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."
|
558
|
-
page_only_viewable_when_logged_in: You attempted to visit a page which can only be viewed when you are logged in
|
559
|
-
page_only_viewable_when_logged_out: You attempted to visit a page which can only be viewed when you are logged out
|
560
|
-
paid: Pagado
|
561
|
-
parent_category: "Categoría padre"
|
562
|
-
password: Contraseña
|
563
|
-
password_reset_instructions: "Instrucciones para recuperar la contraseña"
|
564
|
-
password_reset_instructions_are_mailed: "Las instrucciones para recuperar su contraseña se le han enviado por email. Por favor revise su correo."
|
565
|
-
password_reset_token_not_found: "Lo sentimos, no podemos localizar su cuenta de usuario. Si tienes problemas, intenta copiar y pegar la URL desde el correo al navegador, o reinicia el proceso de recuperar la contraseña."
|
566
|
-
password_updated: "Contraseña actualizada correctamente"
|
567
|
-
path: Ruta
|
568
|
-
pay: Pagar
|
569
|
-
payment: Pago
|
570
|
-
payment_gateway: "Pasarela de pago"
|
571
|
-
payment_information: "Informacion del pago"
|
572
|
-
payment_method: Payment Method
|
573
|
-
payment_methods: Payment Methods
|
574
|
-
payment_methods_setting_description: Configure methods customers can use to pay
|
575
|
-
payment_updated: Payment Updated
|
576
|
-
payments: Pagos
|
577
|
-
pending_payments: Pending Payments
|
578
|
-
permalink: Permalink
|
579
|
-
phone: Teléfono
|
580
|
-
place_order: Hacer pedido
|
581
|
-
please_create_user: "Please create a user account"
|
582
|
-
powered_by: "Powered by"
|
583
|
-
presentation: Presentación
|
584
|
-
preview: Preview
|
585
|
-
previous: Anterior
|
586
|
-
price: Precio
|
587
|
-
price_with_vat_included: "{{price}} (inc. IVA)"
|
588
|
-
problem_authorizing_card: "Problema autorizando la tarjeta"
|
589
|
-
problem_capturing_card: "Problema capturando la tarjeta"
|
590
|
-
problems_processing_order: "Hemos tenido problemas al procesar su pedido"
|
591
|
-
proceed_as_guest: "No Thanks, Proceed as Guest"
|
592
|
-
process: Procesar
|
593
|
-
product: Producto
|
594
|
-
product_details: "Detalles del producto"
|
595
|
-
product_group: Product Group
|
596
|
-
product_group_invalid: Product Group has invalid scopes
|
597
|
-
product_groups: Product Groups
|
598
|
-
product_has_no_description: Product has not description
|
599
|
-
product_properties: "Propiedades del producto"
|
600
|
-
product_scopes:
|
601
|
-
groups:
|
602
|
-
price:
|
603
|
-
description: "Scopes for selecting products based on Price"
|
604
|
-
name: Price
|
605
|
-
search:
|
606
|
-
description: "Scopes for selecting products based on name, keywords and description of product"
|
607
|
-
name: "Text search"
|
608
|
-
taxon:
|
609
|
-
description: "Scopes for selecting products based on Taxons"
|
610
|
-
name: Taxon
|
611
|
-
values:
|
612
|
-
description: "Scopes for selecting products based on option and property values"
|
613
|
-
name: Values
|
614
|
-
scopes:
|
615
|
-
ascend_by_master_price:
|
616
|
-
name: Ascend by product master price
|
617
|
-
ascend_by_name:
|
618
|
-
name: Ascend by product name
|
619
|
-
ascend_by_updated_at:
|
620
|
-
name: Ascend by actualization date
|
621
|
-
descend_by_master_price:
|
622
|
-
name: Descend by product master price
|
623
|
-
descend_by_name:
|
624
|
-
name: Descend by product name
|
625
|
-
descend_by_popularity:
|
626
|
-
name: Sort by popularity(most popular first)
|
627
|
-
descend_by_updated_at:
|
628
|
-
name: Descend by actualization date
|
629
|
-
in_name:
|
630
|
-
args:
|
631
|
-
words: Words
|
632
|
-
description: "(separated by space or comma)"
|
633
|
-
name: "Product name have following"
|
634
|
-
sentence: product name contain <em>%s</em>
|
635
|
-
in_name_or_description:
|
636
|
-
args:
|
637
|
-
words: Words
|
638
|
-
description: "(separated by space or comma)"
|
639
|
-
name: "Product name or description have following"
|
640
|
-
sentence: name or description contain <em>%s</em>
|
641
|
-
in_name_or_keywords:
|
642
|
-
args:
|
643
|
-
words: Words
|
644
|
-
description: "(separated by space or comma)"
|
645
|
-
name: "Product name or meta keywords have following"
|
646
|
-
sentence: name or keywords contain <em>%s</em>
|
647
|
-
in_taxons:
|
648
|
-
args:
|
649
|
-
"taxon_names": "Taxon names"
|
650
|
-
description: "Taxon names have to be separated by comma or space(eg. adidas,shoes)"
|
651
|
-
name: "In taxons and all their descendants"
|
652
|
-
sentence: in <em>%s</em> and all their descendants
|
653
|
-
master_price_gte:
|
654
|
-
args:
|
655
|
-
amount: Amount
|
656
|
-
description: ""
|
657
|
-
name: "Master price greater or equal to"
|
658
|
-
sentence: price greater or equal to <em>%.2f</em>
|
659
|
-
master_price_lte:
|
660
|
-
args:
|
661
|
-
amount: Amount
|
662
|
-
description: ""
|
663
|
-
name: "Master price lesser or equal to"
|
664
|
-
sentence: price less or equal to <em>%.2f</em>
|
665
|
-
price_between:
|
666
|
-
args:
|
667
|
-
high: High
|
668
|
-
low: Low
|
669
|
-
description: ""
|
670
|
-
name: "Price between"
|
671
|
-
sentence: price between <em>%.2f</em> and <em>%.2f</em>
|
672
|
-
taxons_name_eq:
|
673
|
-
args:
|
674
|
-
taxon_name: "Taxon name"
|
675
|
-
description: "In specific taxon - without descendants"
|
676
|
-
name: "In Taxon(without descendants)"
|
677
|
-
sentence: in <em>%s</em>
|
678
|
-
with:
|
679
|
-
args:
|
680
|
-
value: Value
|
681
|
-
description: "Selects all products that have at least one variant that have specified value as either option or property (eg. red)"
|
682
|
-
name: With value
|
683
|
-
sentence: with value <em>%s</em>
|
684
|
-
with_option:
|
685
|
-
args:
|
686
|
-
option: Option
|
687
|
-
description: "Selects all products that have specified option(eg. color)"
|
688
|
-
name: "With option"
|
689
|
-
sentence: with option <em>%s</em>
|
690
|
-
with_option_value:
|
691
|
-
args:
|
692
|
-
option: Option
|
693
|
-
value: Value
|
694
|
-
description: "Selects all products that have at least one variant with specified option and value(eg. color:red)"
|
695
|
-
name: "With option and value"
|
696
|
-
sentence: with option <em>%s</em> and value <em>%s</em>
|
697
|
-
with_property:
|
698
|
-
args:
|
699
|
-
property: Property
|
700
|
-
description: "Selects all products that have specified property(eg. weight)"
|
701
|
-
name: "With property"
|
702
|
-
sentence: with property <em>%s</em>
|
703
|
-
with_property_value:
|
704
|
-
args:
|
705
|
-
property: Property
|
706
|
-
value: Value
|
707
|
-
description: "Selects all products that have at least one variant with specified property and value(eg. weight:10kg)"
|
708
|
-
name: "With property value"
|
709
|
-
sentence: with property <em>%s</em> and value <em>%s</em>
|
710
|
-
products: Productos
|
711
|
-
products_with_zero_inventory_display: "Products with a zero inventory will {{not}} be displayed"
|
712
|
-
properties: "Propiedades"
|
713
|
-
property: "Propiedad"
|
714
|
-
prototype: Prototipo
|
715
|
-
prototypes: "Prototipos"
|
716
|
-
provider: "Provider"
|
717
|
-
provider_settings_warning: "If you are changing the provider type, you must save first before you can edit the provider settings"
|
718
|
-
qty: Cant.
|
719
|
-
quantity_shipped: Quantity Shipped
|
720
|
-
range: "Range"
|
721
|
-
rate: proporción
|
722
|
-
reason: Reason
|
723
|
-
recalculate_order_total: "Recalculate order total"
|
724
|
-
receive: receive
|
725
|
-
received: Received
|
726
|
-
refund: Refund
|
727
|
-
register: Register as a New User
|
728
|
-
register_or_guest: Checkout as Guest or Register
|
729
|
-
registration: Registration
|
730
|
-
remember_me: "Recordarme en este equipo"
|
731
|
-
remove: "Remover"
|
732
|
-
reports: Reportes
|
733
|
-
required_for_solo_and_maestro: Required for Solo and Maestro cards.
|
734
|
-
resend: "Volver a enviar"
|
735
|
-
reset_password: "Reinicia my contraseña"
|
736
|
-
resource_controller:
|
737
|
-
member_object_not_found: "Member object not found."
|
738
|
-
successfully_created: "Successfully created!"
|
739
|
-
successfully_removed: "Successfully removed!"
|
740
|
-
successfully_updated: "Successfully updated!"
|
741
|
-
response_code: "Código de respuesta"
|
742
|
-
resume: "Reanudar"
|
743
|
-
resumed: Reanudado
|
744
|
-
return: volver
|
745
|
-
return_authorization: Return Authorization
|
746
|
-
return_authorization_updated: Return authorization updated
|
747
|
-
return_authorizations: Return Authorizations
|
748
|
-
return_quantity: Return Quantity
|
749
|
-
returned: regresó
|
750
|
-
rma_number: RMA Number
|
751
|
-
rma_value: RMA Value
|
752
|
-
roles: Funciones
|
753
|
-
sales_tax: "Sales Tax"
|
754
|
-
sales_total: "Total de ventas"
|
755
|
-
sales_total_for_all_orders: "Total de ventas para todos los pedidos"
|
756
|
-
sales_totals: "Ventas Totales"
|
757
|
-
sales_totals_description: "Total de ventas para todos los pedidos"
|
758
|
-
save_and_continue: Save and Continue
|
759
|
-
save_preferences: Guardar preferencias
|
760
|
-
scope: Scope
|
761
|
-
scopes: Scopes
|
762
|
-
search: Buscar
|
763
|
-
search_results: "Search results for '{{keywords}}'"
|
764
|
-
secure_connection_type: Tipo de conexion segura
|
765
|
-
secure_creditcard: Secure Creditcard
|
766
|
-
select: Seleccionar
|
767
|
-
select_from_prototype: "Seleccionar desde prototipo"
|
768
|
-
select_preferred_shipping_option: "Seleccionar la opcion de envio preferida"
|
769
|
-
send_copy_of_all_mails_to: Envia una copia de todos los correos a
|
770
|
-
send_copy_of_orders_mails_to: Envia una copia de todos los correos de pedidos a
|
771
|
-
send_mails_as: Enviar correos como
|
772
|
-
send_order_mails_as: Enviar correos de pedidos como
|
773
|
-
server: Server
|
774
|
-
server_error: "The server returned an error"
|
775
|
-
settings: Settings
|
776
|
-
ship: enviar
|
777
|
-
ship_address: "Direccion de envio"
|
778
|
-
shipment: Envio
|
779
|
-
shipment_details: Shipment Details
|
780
|
-
shipment_number: "Envio #"
|
781
|
-
shipment_updated: Shipment Updated
|
782
|
-
shipments: "Shipments"
|
783
|
-
shipped: Enviado
|
784
|
-
shipping: Envío
|
785
|
-
shipping_address: "Dirección de envío"
|
786
|
-
shipping_categories: "Categorias de envio"
|
787
|
-
shipping_categories_description: "Gestionar las categorias de envio para determinar qué categorías de productos pueden ser transportados a través de qué método"
|
788
|
-
shipping_category: Shipping Category
|
789
|
-
shipping_cost: Costes de envio
|
790
|
-
shipping_error: "Error de envio"
|
791
|
-
shipping_instructions: "Shipping Instructions"
|
792
|
-
shipping_method: Metodo de envio
|
793
|
-
shipping_methods: "Metodos de envio"
|
794
|
-
shipping_methods_description: "Manejar metodos de envio"
|
795
|
-
shipping_rates: "Shipping Rates"
|
796
|
-
shipping_rates_description: "Manage shipping rates"
|
797
|
-
shipping_total: "Total de envío"
|
798
|
-
shop_by_taxonomy: "Comprar por {{taxonomy}}"
|
799
|
-
shopping_cart: "Cesta de compras"
|
800
|
-
show: Show
|
801
|
-
show_deleted: "Mostrar borrados"
|
802
|
-
show_incomplete_orders: "Mostrar los pedidos incompletos"
|
803
|
-
show_only_complete_orders: "Mostrar solo los pedidos completados"
|
804
|
-
show_out_of_stock_products: "Mostrar productos sin stock"
|
805
|
-
show_price_inc_vat: "Show price including VAT"
|
806
|
-
showing_first_n: "Showing first {{n}}"
|
807
|
-
sign_up: Registrarme
|
808
|
-
site_name: "Nombre del sitio"
|
809
|
-
site_url: "URL del sitio"
|
810
|
-
sku: Código
|
811
|
-
smtp: SMTP
|
812
|
-
smtp_authentication_type: Tipo de autenticacion SMTP
|
813
|
-
smtp_domain: Dominio SMTP
|
814
|
-
smtp_mail_host: SMTP Mail Host
|
815
|
-
smtp_password: contraseña SMTP
|
816
|
-
smtp_port: puerto SMTP
|
817
|
-
smtp_send_all_emails_as_from_following_address: "Send all mails as from the following address."
|
818
|
-
smtp_send_copy_of_orders_to_this_addresses: "Sends a copy of all order's mails to this address. For multiple addresses, separate with commas."
|
819
|
-
smtp_send_copy_to_this_addresses: "Sends a copy of all outgoing mails to this address. For multiple addresses, separate with commas."
|
820
|
-
smtp_send_order_mails_as_from_following_address: "Send orders mails as from the following address."
|
821
|
-
smtp_username: nombre de usuario SMTP
|
822
|
-
sold: Sold
|
823
|
-
sort_ordering: "Sort ordering"
|
824
|
-
spree:
|
825
|
-
date: Fecha
|
826
|
-
time: Hora
|
827
|
-
ssl_will_be_used_in_development_and_test_modes: "SSL will be used in development and test mode if necessary."
|
828
|
-
ssl_will_be_used_in_production_mode: "SSL will be used in production mode"
|
829
|
-
ssl_will_not_be_used_in_development_and_test_modes: "SSL will not be used in development and test mode if necessary."
|
830
|
-
ssl_will_not_be_used_in_production_mode: "SSL will not be used in production mode"
|
831
|
-
start: Inicio
|
832
|
-
start_date: Valid from
|
833
|
-
state: Provincia
|
834
|
-
state_based: "Provincia"
|
835
|
-
state_setting_description: "Administrar la lista de estados o provincias asociados con cada país."
|
836
|
-
states: Provincias
|
837
|
-
status: Estado
|
838
|
-
stop: Parar
|
839
|
-
store: Tienda
|
840
|
-
street_address: Dirección
|
841
|
-
street_address_2: "Dirección (continuación)"
|
842
|
-
subtotal: Subtotal
|
843
|
-
subtract: Restar
|
844
|
-
system: sistema
|
845
|
-
tax: Impuestos
|
846
|
-
tax_categories: "Categorias"
|
847
|
-
tax_categories_setting_description: "Establecer categorías para determinar qué productos deben estar sujetos a que categorias"
|
848
|
-
tax_category: "Categoria"
|
849
|
-
tax_rates: "Tax Rates"
|
850
|
-
tax_rates_description: Tax rates setup and configuration.
|
851
|
-
tax_settings: "Tax settings"
|
852
|
-
tax_settings_description: Basic tax settings.
|
853
|
-
tax_total: "Total impuestos"
|
854
|
-
tax_type: "Tipo de impuesto"
|
855
|
-
taxon: Taxon
|
856
|
-
taxon_edit: Edit Taxon
|
857
|
-
taxonomies: Taxonomias
|
858
|
-
taxonomies_setting_description: "Crear y manejar taxonomias"
|
859
|
-
taxonomy_edit: "Edit taxonomy"
|
860
|
-
taxonomy_tree_error: "The requested change has not been accepted and the tree has been returned to its previous state, please try again."
|
861
|
-
taxonomy_tree_instruction: "* Right click a child in the tree to access the menu for adding, deleting or sorting a child."
|
862
|
-
taxons: Taxons
|
863
|
-
test: "Test"
|
864
|
-
test_mode: Test Mode
|
865
|
-
thank_you_for_your_order: "Gracias por su pedido"
|
866
|
-
this_file_language: "Español (España)"
|
867
|
-
this_month: "This Month"
|
868
|
-
this_year: "This Year"
|
869
|
-
thumbnail: "Thumbnail"
|
870
|
-
to_add_variants_you_must_first_define: "Para agregar variantes, primero debe definir"
|
871
|
-
top_grossing_products: "Top Grossing Products"
|
872
|
-
total: Total
|
873
|
-
tracking: Seguimiento
|
874
|
-
transaction: Transacción
|
875
|
-
transactions: Transactions
|
876
|
-
tree: Arbol
|
877
|
-
try_again: "Volver a intentar"
|
878
|
-
type: Tipo
|
879
|
-
unable_ship_method: "Unable to generate shipping methods due to a server error."
|
880
|
-
unable_to_authorize_credit_card: "No se ha podido autorizar la tarjeta de credito"
|
881
|
-
unable_to_capture_credit_card: "No se ha podido capturar la tarjeta de credito"
|
882
|
-
unable_to_connect_to_gateway: "Unable to connect to gateway."
|
883
|
-
unable_to_save_order: "No se ha podido guardar el pedido"
|
884
|
-
under_paid: "Under Paid"
|
885
|
-
unrecognized_card_type: Unrecognized card type
|
886
|
-
update: Actualizar
|
887
|
-
update_password: "Actualiza mi contraseña y dejame entrar"
|
888
|
-
updated_successfully: "Actualizado correctamente"
|
889
|
-
updating: Updating
|
890
|
-
usage_limit: Usage Limit
|
891
|
-
use_as_shipping_address: Usar como direccion de envio
|
892
|
-
use_billing_address: Usar la direccion de facturacion
|
893
|
-
use_different_shipping_address: "Usar una dirección de envío diferente"
|
894
|
-
use_new_cc: "Use a new card"
|
895
|
-
user: Usuario
|
896
|
-
user_account: Cuenta de usuario
|
897
|
-
user_created_successfully: "User created successfully"
|
898
|
-
user_details: "Detalles del usuario"
|
899
|
-
users: Usuarios
|
900
|
-
validation:
|
901
|
-
is_too_large: "is too large -- stock on hand cannot cover requested quantity!"
|
902
|
-
must_be_int: "must be an integer"
|
903
|
-
must_be_non_negative: "must be a non-negative value"
|
904
|
-
value: "valor"
|
905
|
-
variants: Variantes
|
906
|
-
vat: "VAT"
|
907
|
-
version: Versión
|
908
|
-
view_shipping_options: "View shipping options"
|
909
|
-
void: Void
|
910
|
-
website: "Página web"
|
911
|
-
weight: Peso
|
912
|
-
welcome_to_sample_store: "Bienvenido a la tienda de ejemplo"
|
913
|
-
what_is_a_cvv: "¿Que es el codigo de verificacion (CVV)?"
|
914
|
-
what_is_this: "¿Qué es esto?"
|
915
|
-
whats_this: "¿Qué es esto?"
|
916
|
-
width: Ancho
|
917
|
-
year: "Año"
|
918
|
-
you_have_been_logged_out: "Se ha cerrado la sesión."
|
919
|
-
your_cart_is_empty: "Su cesta está vacía"
|
920
|
-
zip: "Código postal"
|
921
|
-
zone: Zona
|
922
|
-
zone_based: "Zona"
|
923
|
-
zone_setting_description: "Colecciones de países, estados o de otras zonas que se utilizarán en diversos cálculos"
|
924
|
-
zones: Zonas
|