spree_core 4.10.1 → 5.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/app/assets/config/spree_core_manifest.js +4 -0
- data/app/assets/images/google_on_white_hdpi.png +0 -0
- data/app/controllers/spree/base_controller.rb +1 -4
- data/app/finders/spree/orders/find_complete.rb +14 -2
- data/app/finders/spree/products/find.rb +74 -23
- data/app/finders/spree/stores/find_current.rb +6 -2
- data/app/helpers/spree/addresses_helper.rb +106 -0
- data/app/helpers/spree/base_helper.rb +83 -55
- data/app/helpers/spree/currency_helper.rb +12 -0
- data/app/helpers/spree/images_helper.rb +18 -0
- data/app/helpers/spree/mail_helper.rb +24 -0
- data/app/helpers/spree/products_helper.rb +1 -20
- data/app/javascript/spree/core/controllers/address_autocomplete_controller.js +233 -0
- data/app/javascript/spree/core/controllers/address_form_controller.js +98 -0
- data/app/javascript/spree/core/controllers/enable_button_controller.js +29 -0
- data/app/javascript/spree/core/helpers/address_autocomplete/google_places_suggestions_provider.js +179 -0
- data/app/javascript/spree/core/helpers/debounce.js +9 -0
- data/app/javascript/spree/core/helpers/scroll_lock.js +25 -0
- data/app/jobs/spree/addresses/geocode_address_job.rb +31 -0
- data/app/jobs/spree/base_job.rb +1 -0
- data/app/jobs/spree/coupon_codes/bulk_generate_job.rb +17 -0
- data/app/jobs/spree/exports/generate_job.rb +12 -0
- data/app/jobs/spree/products/auto_match_taxons_job.rb +14 -0
- data/app/jobs/spree/products/touch_taxons_job.rb +12 -0
- data/app/jobs/spree/reports/generate_job.rb +12 -0
- data/app/jobs/spree/stock_locations/stock_items/create_job.rb +1 -1
- data/app/jobs/spree/themes/duplicate_components_job.rb +59 -0
- data/app/jobs/spree/themes/screenshot_job.rb +81 -0
- data/app/jobs/spree/variants/remove_from_incomplete_orders_job.rb +2 -0
- data/app/jobs/spree/variants/remove_line_item_job.rb +2 -0
- data/app/mailers/spree/base_mailer.rb +51 -0
- data/app/mailers/spree/export_mailer.rb +19 -0
- data/app/mailers/spree/report_mailer.rb +20 -0
- data/app/mailers/spree/test_mailer.rb +8 -0
- data/app/models/action_text/rich_text_decorator.rb +11 -0
- data/app/models/action_text/video_embed.rb +13 -0
- data/app/models/acts_as_taggable_on/tag_decorator.rb +10 -0
- data/app/models/concerns/spree/calculated_adjustments.rb +2 -0
- data/app/models/concerns/spree/display_on.rb +13 -0
- data/app/models/concerns/spree/has_one_link.rb +42 -0
- data/app/models/concerns/spree/has_page_links.rb +53 -0
- data/app/models/concerns/spree/metadata.rb +3 -7
- data/app/models/concerns/spree/multi_searchable.rb +21 -0
- data/app/models/concerns/spree/multi_store_resource.rb +9 -0
- data/app/models/concerns/spree/number_as_param.rb +4 -2
- data/app/models/concerns/spree/parameterizable_name.rb +21 -0
- data/app/models/concerns/spree/previewable.rb +17 -0
- data/app/models/concerns/spree/product_scopes.rb +7 -7
- data/app/models/concerns/spree/stores/setup.rb +52 -0
- data/app/models/concerns/spree/stores/socials.rb +68 -0
- data/app/models/concerns/spree/user_address.rb +4 -0
- data/app/models/concerns/spree/user_methods.rb +61 -11
- data/app/models/concerns/spree/user_reporting.rb +14 -6
- data/app/models/concerns/spree/user_roles.rb +1 -1
- data/app/models/spree/ability.rb +4 -2
- data/app/models/spree/address.rb +122 -28
- data/app/models/spree/adjustment.rb +4 -1
- data/app/models/spree/asset/support/active_storage.rb +1 -1
- data/app/models/spree/asset.rb +18 -6
- data/app/models/spree/base.rb +38 -7
- data/app/models/spree/base_analytics_event_handler.rb +49 -0
- data/app/models/spree/calculator.rb +1 -1
- data/app/models/spree/classification.rb +10 -1
- data/app/models/spree/country.rb +1 -1
- data/app/models/spree/coupon_code.rb +38 -0
- data/app/models/spree/credit_card.rb +4 -3
- data/app/models/spree/current.rb +9 -0
- data/app/models/spree/custom_domain.rb +53 -0
- data/app/models/spree/customer_return.rb +13 -1
- data/app/models/spree/data_feed.rb +1 -1
- data/app/models/spree/digital.rb +5 -6
- data/app/models/spree/digital_link.rb +11 -6
- data/app/models/spree/export.rb +172 -0
- data/app/models/spree/exports/orders.rb +23 -0
- data/app/models/spree/exports/products.rb +35 -0
- data/app/models/spree/gateway/bogus.rb +5 -0
- data/app/models/spree/gateway.rb +14 -4
- data/app/models/spree/gateway_customer.rb +13 -0
- data/app/models/spree/image/configuration/active_storage.rb +1 -1
- data/app/models/spree/inventory_unit.rb +1 -1
- data/app/models/spree/legacy_user.rb +3 -1
- data/app/models/spree/line_item.rb +37 -2
- data/app/models/spree/log_entry.rb +1 -1
- data/app/models/spree/option_type.rb +40 -6
- data/app/models/spree/option_type_prototype.rb +1 -1
- data/app/models/spree/option_value.rb +35 -5
- data/app/models/spree/option_value_variant.rb +2 -2
- data/app/models/spree/order/address_book.rb +34 -15
- data/app/models/spree/order/checkout.rb +12 -2
- data/app/models/spree/order/currency_updater.rb +1 -1
- data/app/models/spree/order/digital.rb +14 -3
- data/app/models/spree/order/emails.rb +1 -1
- data/app/models/spree/order/payments.rb +1 -13
- data/app/models/spree/order/store_credit.rb +17 -5
- data/app/models/spree/order/webhooks.rb +1 -1
- data/app/models/spree/order.rb +179 -49
- data/app/models/spree/order_promotion.rb +1 -1
- data/app/models/spree/order_updater.rb +9 -3
- data/app/models/spree/page.rb +184 -0
- data/app/models/spree/page_block.rb +69 -0
- data/app/models/spree/page_blocks/buttons.rb +29 -0
- data/app/models/spree/page_blocks/heading.rb +18 -0
- data/app/models/spree/page_blocks/image.rb +17 -0
- data/app/models/spree/page_blocks/link.rb +21 -0
- data/app/models/spree/page_blocks/mega_nav.rb +33 -0
- data/app/models/spree/page_blocks/mega_nav_with_subcategories.rb +32 -0
- data/app/models/spree/page_blocks/nav.rb +15 -0
- data/app/models/spree/page_blocks/newsletter_form.rb +18 -0
- data/app/models/spree/page_blocks/products/buy_buttons.rb +12 -0
- data/app/models/spree/page_blocks/products/price.rb +18 -0
- data/app/models/spree/page_blocks/products/quantity_selector.rb +12 -0
- data/app/models/spree/page_blocks/products/share.rb +8 -0
- data/app/models/spree/page_blocks/products/title.rb +15 -0
- data/app/models/spree/page_blocks/products/variant_picker.rb +9 -0
- data/app/models/spree/page_blocks/subheading.rb +17 -0
- data/app/models/spree/page_blocks/text.rb +16 -0
- data/app/models/spree/page_link.rb +59 -0
- data/app/models/spree/page_section.rb +215 -0
- data/app/models/spree/page_sections/announcement_bar.rb +30 -0
- data/app/models/spree/page_sections/collection_banner.rb +18 -0
- data/app/models/spree/page_sections/custom_code.rb +11 -0
- data/app/models/spree/page_sections/featured_posts.rb +43 -0
- data/app/models/spree/page_sections/featured_product.rb +46 -0
- data/app/models/spree/page_sections/featured_taxon.rb +88 -0
- data/app/models/spree/page_sections/featured_taxons.rb +45 -0
- data/app/models/spree/page_sections/footer.rb +94 -0
- data/app/models/spree/page_sections/header.rb +62 -0
- data/app/models/spree/page_sections/image_banner.rb +38 -0
- data/app/models/spree/page_sections/image_with_text.rb +48 -0
- data/app/models/spree/page_sections/main_password_footer.rb +18 -0
- data/app/models/spree/page_sections/main_password_header.rb +20 -0
- data/app/models/spree/page_sections/newsletter.rb +47 -0
- data/app/models/spree/page_sections/page_title.rb +19 -0
- data/app/models/spree/page_sections/post_details.rb +19 -0
- data/app/models/spree/page_sections/post_grid.rb +19 -0
- data/app/models/spree/page_sections/product_details.rb +16 -0
- data/app/models/spree/page_sections/product_grid.rb +13 -0
- data/app/models/spree/page_sections/related_products.rb +60 -0
- data/app/models/spree/page_sections/rich_text.rb +20 -0
- data/app/models/spree/page_sections/taxon_banner.rb +18 -0
- data/app/models/spree/page_sections/taxon_grid.rb +17 -0
- data/app/models/spree/page_sections/video.rb +99 -0
- data/app/models/spree/pages/account.rb +15 -0
- data/app/models/spree/pages/cart.rb +9 -0
- data/app/models/spree/pages/checkout.rb +9 -0
- data/app/models/spree/pages/custom.rb +34 -0
- data/app/models/spree/pages/homepage.rb +68 -0
- data/app/models/spree/pages/login.rb +15 -0
- data/app/models/spree/pages/password.rb +57 -0
- data/app/models/spree/pages/post.rb +27 -0
- data/app/models/spree/pages/post_list.rb +32 -0
- data/app/models/spree/pages/product_details.rb +29 -0
- data/app/models/spree/pages/search_results.rb +43 -0
- data/app/models/spree/pages/shop_all.rb +36 -0
- data/app/models/spree/pages/taxon.rb +29 -0
- data/app/models/spree/pages/taxon_list.rb +41 -0
- data/app/models/spree/pages/wishlist.rb +11 -0
- data/app/models/spree/payment/gateway_options.rb +13 -15
- data/app/models/spree/payment/processing.rb +1 -1
- data/app/models/spree/payment/webhooks.rb +1 -1
- data/app/models/spree/payment.rb +61 -12
- data/app/models/spree/payment_capture_event.rb +1 -1
- data/app/models/spree/payment_method/store_credit.rb +9 -1
- data/app/models/spree/payment_method.rb +26 -8
- data/app/models/spree/payment_source.rb +2 -2
- data/app/models/spree/post.rb +108 -0
- data/app/models/spree/post_category.rb +33 -0
- data/app/models/spree/preference.rb +1 -1
- data/app/models/spree/price.rb +10 -3
- data/app/models/spree/product/webhooks.rb +1 -1
- data/app/models/spree/product.rb +325 -54
- data/app/models/spree/product_option_type.rb +1 -1
- data/app/models/spree/product_promotion_rule.rb +1 -1
- data/app/models/spree/product_property.rb +4 -1
- data/app/models/spree/promotion/actions/create_line_items.rb +37 -2
- data/app/models/spree/promotion/rules/country.rb +22 -4
- data/app/models/spree/promotion/rules/currency.rb +21 -0
- data/app/models/spree/promotion/rules/item_total.rb +12 -3
- data/app/models/spree/promotion/rules/option_value.rb +5 -20
- data/app/models/spree/promotion/rules/product.rb +33 -1
- data/app/models/spree/promotion/rules/taxon.rb +31 -0
- data/app/models/spree/promotion/rules/user.rb +33 -4
- data/app/models/spree/promotion.rb +136 -15
- data/app/models/spree/promotion_action.rb +31 -1
- data/app/models/spree/promotion_action_line_item.rb +1 -1
- data/app/models/spree/promotion_category.rb +1 -1
- data/app/models/spree/promotion_handler/cart.rb +1 -1
- data/app/models/spree/promotion_handler/coupon.rb +46 -8
- data/app/models/spree/promotion_handler/free_shipping.rb +1 -1
- data/app/models/spree/promotion_handler/promotion_duplicator.rb +6 -5
- data/app/models/spree/promotion_rule.rb +23 -1
- data/app/models/spree/promotion_rule_taxon.rb +1 -1
- data/app/models/spree/promotion_rule_user.rb +1 -1
- data/app/models/spree/property.rb +11 -3
- data/app/models/spree/property_prototype.rb +1 -1
- data/app/models/spree/prototype.rb +1 -1
- data/app/models/spree/prototype_taxon.rb +1 -1
- data/app/models/spree/refund.rb +24 -4
- data/app/models/spree/refund_reason.rb +12 -2
- data/app/models/spree/reimbursement/credit.rb +1 -1
- data/app/models/spree/reimbursement/emails.rb +1 -1
- data/app/models/spree/reimbursement.rb +5 -3
- data/app/models/spree/reimbursement_type.rb +1 -1
- data/app/models/spree/report.rb +110 -0
- data/app/models/spree/report_line_item.rb +27 -0
- data/app/models/spree/report_line_items/products_performance.rb +76 -0
- data/app/models/spree/report_line_items/sales_total.rb +49 -0
- data/app/models/spree/reports/products_performance.rb +44 -0
- data/app/models/spree/reports/sales_total.rb +14 -0
- data/app/models/spree/return_authorization.rb +4 -1
- data/app/models/spree/return_authorization_reason.rb +1 -1
- data/app/models/spree/return_item.rb +2 -1
- data/app/models/spree/role.rb +5 -2
- data/app/models/spree/role_user.rb +2 -2
- data/app/models/spree/shipment/emails.rb +1 -1
- data/app/models/spree/shipment/webhooks.rb +1 -1
- data/app/models/spree/shipment.rb +14 -4
- data/app/models/spree/shipping_category.rb +1 -1
- data/app/models/spree/shipping_method.rb +48 -8
- data/app/models/spree/shipping_method_category.rb +1 -1
- data/app/models/spree/shipping_method_zone.rb +1 -1
- data/app/models/spree/shipping_rate.rb +21 -3
- data/app/models/spree/state.rb +1 -1
- data/app/models/spree/state_change.rb +1 -1
- data/app/models/spree/stock_item/webhooks.rb +1 -1
- data/app/models/spree/stock_item.rb +9 -6
- data/app/models/spree/stock_location.rb +35 -8
- data/app/models/spree/stock_movement/webhooks.rb +1 -1
- data/app/models/spree/stock_movement.rb +9 -3
- data/app/models/spree/stock_transfer.rb +41 -3
- data/app/models/spree/store.rb +345 -72
- data/app/models/spree/store_credit.rb +12 -4
- data/app/models/spree/store_credit_category.rb +1 -1
- data/app/models/spree/store_credit_event.rb +21 -1
- data/app/models/spree/store_credit_type.rb +1 -1
- data/app/models/spree/store_payment_method.rb +1 -1
- data/app/models/spree/store_product.rb +1 -1
- data/app/models/spree/store_promotion.rb +1 -1
- data/app/models/spree/tax_category.rb +15 -1
- data/app/models/spree/tax_rate.rb +1 -1
- data/app/models/spree/taxon.rb +210 -27
- data/app/models/spree/taxon_image/configuration/active_storage.rb +1 -1
- data/app/models/spree/taxon_rule.rb +25 -0
- data/app/models/spree/taxon_rules/available_on.rb +20 -0
- data/app/models/spree/taxon_rules/sale.rb +16 -0
- data/app/models/spree/taxon_rules/tag.rb +19 -0
- data/app/models/spree/taxonomy.rb +3 -2
- data/app/models/spree/theme.rb +200 -0
- data/app/models/spree/themes/default.rb +94 -0
- data/app/models/spree/variant/webhooks.rb +1 -1
- data/app/models/spree/variant.rb +211 -62
- data/app/models/spree/wished_item.rb +1 -1
- data/app/models/spree/wishlist.rb +1 -1
- data/app/models/spree/zone.rb +1 -1
- data/app/models/spree/zone_member.rb +1 -1
- data/app/presenters/spree/csv/order_line_item_presenter.rb +145 -0
- data/app/presenters/spree/csv/product_presenter.rb +63 -0
- data/app/presenters/spree/csv/product_variant_presenter.rb +130 -0
- data/app/services/spree/addresses/create.rb +31 -6
- data/app/services/spree/addresses/helper.rb +7 -4
- data/app/services/spree/addresses/update.rb +79 -12
- data/app/services/spree/cart/remove_out_of_stock_items.rb +56 -0
- data/app/services/spree/checkout/add_store_credit.rb +6 -1
- data/app/services/spree/checkout/advance.rb +44 -4
- data/app/services/spree/checkout/select_shipping_method.rb +2 -0
- data/app/services/spree/coupon_codes/bulk_generate.rb +37 -0
- data/app/services/spree/coupon_codes/coupon_codes_handler.rb +34 -0
- data/app/services/spree/orders/create_user_account.rb +70 -0
- data/app/services/spree/orders/update_contact_information.rb +19 -0
- data/app/services/spree/products/auto_match_taxons.rb +64 -0
- data/app/services/spree/products/duplicator.rb +121 -0
- data/app/services/spree/products/prepare_nested_attributes.rb +169 -0
- data/app/services/spree/seeds/admin_user.rb +22 -0
- data/app/services/spree/seeds/all.rb +1 -0
- data/app/services/spree/seeds/stores.rb +5 -10
- data/app/services/spree/seeds/zones.rb +2 -0
- data/app/services/spree/tags/bulk_add.rb +38 -0
- data/app/services/spree/tags/bulk_remove.rb +24 -0
- data/app/services/spree/taxons/add_products.rb +39 -0
- data/app/services/spree/taxons/regenerate_products.rb +53 -0
- data/app/services/spree/taxons/remove_products.rb +53 -0
- data/app/services/spree/taxons/touch_featured_sections.rb +21 -0
- data/app/services/spree/themes/duplicator.rb +40 -0
- data/app/services/spree/variants/remove_line_items.rb +1 -1
- data/app/sorters/spree/classifications/sort.rb +68 -0
- data/app/sorters/spree/products/sort.rb +2 -3
- data/app/views/action_text/video_embeds/_thumbnail.html.erb +1 -0
- data/app/views/action_text/video_embeds/_video_embed.html.erb +3 -0
- data/app/views/active_storage/blobs/_blob.html.erb +20 -0
- data/app/views/layouts/action_text/contents/_content.html.erb +3 -0
- data/app/views/layouts/spree/base_mailer.html.erb +46 -0
- data/app/views/spree/addresses/_form.html.erb +58 -0
- data/app/views/spree/addresses/_suggestions_box.erb +14 -0
- data/app/views/spree/export_mailer/export_done.html.erb +15 -0
- data/app/views/spree/report_mailer/report_done.html.erb +15 -0
- data/app/views/spree/shared/_base_mailer_footer.html.erb +12 -0
- data/app/views/spree/shared/_base_mailer_header.html.erb +6 -0
- data/app/views/spree/shared/_base_mailer_stylesheets.html.erb +456 -0
- data/app/views/spree/shared/_google_places_api_loader.html.erb +7 -0
- data/app/views/spree/shared/_mailer_line_item.html.erb +12 -0
- data/app/views/spree/shared/_mailer_logo.html.erb +41 -0
- data/app/views/spree/shared/_payment.html.erb +41 -0
- data/app/views/spree/test_mailer/test_email.html.erb +40 -0
- data/app/views/spree/test_mailer/test_email.text.erb +4 -0
- data/config/i18n-tasks.yml +178 -0
- data/config/importmap.rb +14 -0
- data/config/initializers/acts_as_taggable_on.rb +2 -0
- data/config/initializers/inflections.rb +2 -0
- data/config/initializers/mobility.rb +4 -0
- data/config/initializers/oembed.rb +1 -0
- data/config/locales/en.yml +825 -413
- data/config/routes.rb +6 -5
- data/db/migrate/20210914000000_spree_four_three.rb +0 -79
- data/db/migrate/20240913143518_change_default_value_of_spree_option_types_filterable.rb +5 -0
- data/db/migrate/20240914153106_add_display_on_to_spree_properties.rb +5 -0
- data/db/migrate/20240915144935_add_position_to_spree_properties.rb +6 -0
- data/db/migrate/20241004181911_create_spree_coupon_codes.rb +15 -0
- data/db/migrate/20241005093437_add_multi_code_to_spree_promotions.rb +14 -0
- data/db/migrate/20241014140140_translate_rich_texts.rb +17 -0
- data/db/migrate/20241030134309_create_spree_exports.rb +23 -0
- data/db/migrate/20241104083457_migrate_spree_promotion_rules_option_value_eligible_values.rb +16 -0
- data/db/migrate/20241123110646_add_estimated_transit_fields_to_spree_shipping_methods.rb +6 -0
- data/db/migrate/20241127193411_create_spree_taxon_rules.rb +13 -0
- data/db/migrate/20241127223627_add_rules_match_policy_and_sort_order_to_spree_taxons.rb +6 -0
- data/db/migrate/20241128103947_add_automatic_to_spree_taxons.rb +5 -0
- data/db/migrate/20241218183905_add_gateway_customer_profile_id_to_spree_payment_sources.rb +5 -0
- data/db/migrate/20250107220432_add_accept_marketing_and_signup_for_an_account_to_spree_orders.rb +6 -0
- data/db/migrate/20250110171203_add_quick_checkout_to_spree_addresses.rb +6 -0
- data/db/migrate/20250113180019_add_preferences_to_spree_stores.rb +5 -0
- data/db/migrate/20250114193857_add_metadata_to_spree_stores.rb +13 -0
- data/db/migrate/20250119165904_create_spree_custom_domains.rb +22 -0
- data/db/migrate/20250120094216_create_page_builder_models.rb +78 -0
- data/db/migrate/20250120152208_add_default_locale_to_action_text_rich_texts.rb +7 -0
- data/db/migrate/20250121160028_create_spree_posts_and_spree_post_categories.rb +33 -0
- data/db/migrate/20250122113708_add_first_and_last_name_to_spree_admin_class.rb +9 -0
- data/db/migrate/20250123135358_add_custom_code_fields_to_spree_store.rb +7 -0
- data/db/migrate/20250127083740_add_kind_to_spree_properties.rb +5 -0
- data/db/migrate/20250127112758_add_latitude_and_longitude_to_spree_addresses.rb +6 -0
- data/db/migrate/20250127151258_add_phone_to_spree_users.rb +5 -0
- data/db/migrate/20250204162453_create_spree_reports.rb +13 -0
- data/db/migrate/20250207084000_add_accepts_email_marketing_field_to_spree_users_table.rb +6 -0
- data/db/migrate/20250217171018_create_action_text_video_embeds.rb +11 -0
- data/db/migrate/20250304115943_add_performed_by_to_spree_reimbursements.rb +5 -0
- data/db/migrate/20250305121352_remove_page_builder_indices.rb +11 -0
- data/db/migrate/20250305121657_remove_spree_posts_indices.rb +7 -0
- data/db/migrate/20250311105934_create_spree_gateway_customers.rb +18 -0
- data/db/migrate/20250312202705_add_unique_index_on_promotion_rules_associations.rb +75 -0
- data/db/migrate/20250313104226_add_user_type_to_spree_role_users.rb +18 -0
- data/db/migrate/20250313175830_add_unique_index_on_promotion_action_line_items.rb +29 -0
- data/db/migrate/20250314144210_create_spree_taggings_and_spree_tags.rb +38 -0
- data/lib/generators/spree/authentication/custom/custom_generator.rb +49 -0
- data/lib/generators/spree/authentication/custom/templates/authentication_helpers.rb.tt +50 -0
- data/lib/generators/spree/authentication/devise/devise_generator.rb +57 -0
- data/lib/generators/spree/authentication/devise/templates/authentication_helpers.rb.tt +50 -0
- data/lib/generators/spree/dummy/dummy_generator.rb +1 -1
- data/lib/generators/spree/dummy/templates/rails/database.yml +1 -0
- data/lib/generators/spree/dummy/templates/rails/test.rb +1 -1
- data/lib/generators/spree/install/install_generator.rb +21 -36
- data/lib/generators/spree/install/templates/config/initializers/spree.rb +40 -6
- data/lib/normalize_string.rb +18 -0
- data/lib/spree/analytics.rb +11 -0
- data/lib/spree/core/components.rb +1 -1
- data/lib/spree/core/configuration.rb +14 -11
- data/lib/spree/core/controller_helpers/auth.rb +0 -26
- data/lib/spree/core/controller_helpers/order.rb +77 -12
- data/lib/spree/core/controller_helpers/search.rb +2 -0
- data/lib/spree/core/controller_helpers/store.rb +0 -5
- data/lib/spree/core/controller_helpers/strong_parameters.rb +4 -0
- data/lib/spree/core/controller_helpers/turbo.rb +19 -0
- data/lib/spree/core/dependencies.rb +3 -5
- data/lib/spree/core/engine.rb +158 -7
- data/lib/spree/core/preferences/configuration.rb +2 -44
- data/lib/spree/core/preferences/preferable.rb +9 -0
- data/lib/spree/core/preferences/preferable_class_methods.rb +11 -1
- data/lib/spree/core/preferences/runtime_configuration.rb +13 -2
- data/lib/spree/core/search/base.rb +2 -0
- data/lib/spree/core/version.rb +1 -1
- data/lib/spree/core.rb +61 -11
- data/lib/spree/i18n.rb +5 -8
- data/lib/spree/migrations.rb +1 -1
- data/lib/spree/permitted_attributes.rb +24 -15
- data/lib/spree/testing_support/authorization_helpers.rb +9 -6
- data/lib/spree/testing_support/capybara_config.rb +11 -0
- data/lib/spree/testing_support/common_rake.rb +20 -12
- data/lib/spree/testing_support/factories/calculator_factory.rb +16 -0
- data/lib/spree/testing_support/factories/country_factory.rb +8 -0
- data/lib/spree/testing_support/factories/coupon_code_factory.rb +7 -0
- data/lib/spree/testing_support/factories/custom_domain_factory.rb +7 -0
- data/lib/spree/testing_support/factories/export_factory.rb +32 -0
- data/lib/spree/testing_support/factories/gateway_customer_factory.rb +7 -0
- data/lib/spree/testing_support/factories/order_factory.rb +14 -3
- data/lib/spree/testing_support/factories/page_block_factory.rb +21 -0
- data/lib/spree/testing_support/factories/page_factory.rb +33 -0
- data/lib/spree/testing_support/factories/page_link_factory.rb +7 -0
- data/lib/spree/testing_support/factories/page_section_factory.rb +24 -0
- data/lib/spree/testing_support/factories/payment_factory.rb +2 -2
- data/lib/spree/testing_support/factories/post_category_factory.rb +7 -0
- data/lib/spree/testing_support/factories/post_factory.rb +10 -0
- data/lib/spree/testing_support/factories/product_factory.rb +3 -8
- data/lib/spree/testing_support/factories/product_property_factory.rb +1 -1
- data/lib/spree/testing_support/factories/promotion_action_factory.rb +5 -0
- data/lib/spree/testing_support/factories/promotion_factory.rb +7 -9
- data/lib/spree/testing_support/factories/promotion_rule_factory.rb +12 -0
- data/lib/spree/testing_support/factories/property_factory.rb +1 -1
- data/lib/spree/testing_support/factories/report_factory.rb +33 -0
- data/lib/spree/testing_support/factories/role_user_factory.rb +7 -0
- data/lib/spree/testing_support/factories/shipping_method_factory.rb +9 -0
- data/lib/spree/testing_support/factories/stock_transfer_factory.rb +5 -2
- data/lib/spree/testing_support/factories/store_factory.rb +6 -9
- data/lib/spree/testing_support/factories/taxon_factory.rb +13 -0
- data/lib/spree/testing_support/factories/taxon_rule_factory.rb +38 -0
- data/lib/spree/testing_support/factories/theme_factory.rb +14 -0
- data/lib/spree/testing_support/factories/user_factory.rb +13 -11
- data/lib/spree/testing_support/factories/variant_factory.rb +23 -5
- data/lib/spree/testing_support/jobs.rb +1 -7
- data/lib/spree/testing_support/metadata.rb +13 -1
- data/lib/spree/testing_support/order_walkthrough.rb +1 -7
- data/lib/spree/testing_support/preferences.rb +1 -4
- data/lib/spree/testing_support/store.rb +26 -0
- data/lib/spree_core.rb +1 -0
- data/vendor/javascript/@rails--request.js.js +4 -0
- data/vendor/javascript/@stimulus-components--auto-submit.js +4 -0
- data/vendor/javascript/stimulus-reveal-controller.js +4 -0
- data/vendor/javascript/tailwindcss-stimulus-components.js +4 -0
- metadata +340 -197
- data/Gemfile +0 -3
- data/app/finders/spree/cms_pages/find.rb +0 -41
- data/app/finders/spree/menus/find.rb +0 -11
- data/app/models/concerns/spree/display_link.rb +0 -30
- data/app/models/spree/cms/pages/feature_page.rb +0 -7
- data/app/models/spree/cms/pages/homepage.rb +0 -20
- data/app/models/spree/cms/pages/standard_page.rb +0 -4
- data/app/models/spree/cms/sections/featured_article.rb +0 -22
- data/app/models/spree/cms/sections/hero_image.rb +0 -38
- data/app/models/spree/cms/sections/image_gallery.rb +0 -97
- data/app/models/spree/cms/sections/product_carousel.rb +0 -14
- data/app/models/spree/cms/sections/rich_text_content.rb +0 -13
- data/app/models/spree/cms/sections/side_by_side_images.rb +0 -68
- data/app/models/spree/cms_page.rb +0 -70
- data/app/models/spree/cms_section.rb +0 -69
- data/app/models/spree/cms_section_image.rb +0 -9
- data/app/models/spree/cms_section_image_one.rb +0 -4
- data/app/models/spree/cms_section_image_three.rb +0 -4
- data/app/models/spree/cms_section_image_two.rb +0 -4
- data/app/models/spree/icon.rb +0 -7
- data/app/models/spree/linkable/homepage.rb +0 -3
- data/app/models/spree/linkable/uri.rb +0 -3
- data/app/models/spree/menu.rb +0 -66
- data/app/models/spree/menu_item.rb +0 -72
- data/brakeman.ignore +0 -328
- data/db/migrate/20211201202851_update_linkable_resource_types.rb +0 -10
- data/db/migrate/20220329113557_fix_cms_pages_unique_indexes.rb +0 -8
- data/lib/generators/spree/custom_authentication/custom_authentication_generator.rb +0 -23
- data/lib/generators/spree/custom_authentication/templates/authentication_helpers.rb.tt +0 -23
- data/lib/generators/spree/custom_user/custom_user_generator.rb +0 -46
- data/lib/generators/spree/custom_user/templates/current_user_helpers.rb.tt +0 -15
- data/lib/generators/spree/custom_user/templates/initializer.rb.tt +0 -1
- data/lib/generators/spree/custom_user/templates/migration.rb.tt +0 -7
- data/lib/generators/spree/dummy/templates/package.json +0 -12
- data/lib/spree/core/product_duplicator.rb +0 -85
- data/lib/spree/core/runtime_configuration.rb +0 -10
- data/lib/spree/testing_support/factories/cms_page_factory.rb +0 -20
- data/lib/spree/testing_support/factories/cms_section_factory.rb +0 -31
- data/lib/spree/testing_support/factories/icon_factory.rb +0 -9
- data/lib/spree/testing_support/factories/menu_factory.rb +0 -16
- data/lib/spree/testing_support/factories/menu_item_factory.rb +0 -10
- data/script/rails +0 -9
- data/spec/fixtures/favicon.ico +0 -0
- data/spec/fixtures/files/icon_256x256.gif +0 -0
- data/spec/fixtures/files/icon_256x256.png +0 -0
- data/spec/fixtures/files/icon_512x512.png +0 -0
- data/spec/fixtures/files/img_256x128.png +0 -0
- data/spec/fixtures/text-file.txt +0 -1
- data/spec/fixtures/thinking-cat.jpg +0 -0
- data/spree_core.gemspec +0 -62
data/config/locales/en.yml
CHANGED
@@ -1,4 +1,8 @@
|
|
1
|
+
---
|
1
2
|
en:
|
3
|
+
action_text:
|
4
|
+
video_embed:
|
5
|
+
not_found: Can't embed a video using the provided URL
|
2
6
|
activemodel:
|
3
7
|
errors:
|
4
8
|
messages:
|
@@ -6,22 +10,22 @@ en:
|
|
6
10
|
models:
|
7
11
|
spree/fulfilment_changer:
|
8
12
|
attributes:
|
13
|
+
current_shipment:
|
14
|
+
can_not_have_backordered_inventory_units: has backordered inventory units
|
15
|
+
has_already_been_shipped: has already been shipped
|
9
16
|
desired_shipment:
|
10
17
|
can_not_transfer_within_same_shipment: can not be same as current shipment
|
11
18
|
has_not_enough_stock_at_desired_location: has not enough stock in desired stock location
|
12
|
-
current_shipment:
|
13
|
-
has_already_been_shipped: has already been shipped
|
14
|
-
can_not_have_backordered_inventory_units: has backordered inventory units
|
15
19
|
activerecord:
|
16
20
|
attributes:
|
17
21
|
spree/address:
|
18
|
-
label: Address name
|
19
22
|
address1: Address
|
20
23
|
address2: Address (contd.)
|
21
24
|
city: City
|
22
25
|
company: Company
|
23
26
|
country: Country
|
24
27
|
firstname: First Name
|
28
|
+
label: Address name
|
25
29
|
lastname: Last Name
|
26
30
|
phone: Phone
|
27
31
|
state: State
|
@@ -42,26 +46,28 @@ en:
|
|
42
46
|
base: ''
|
43
47
|
cc_type: Type
|
44
48
|
month: Month
|
49
|
+
name: Name
|
45
50
|
number: Number
|
46
51
|
verification_value: Verification Value
|
47
52
|
year: Year
|
48
|
-
name: Name
|
49
53
|
spree/inventory_unit:
|
50
54
|
state: State
|
51
55
|
spree/line_item:
|
52
56
|
price: Price
|
53
57
|
quantity: Quantity
|
54
58
|
spree/option_type:
|
59
|
+
filterable: Filterable
|
55
60
|
name: Name
|
56
61
|
presentation: Presentation
|
57
|
-
filterable: Filterable
|
58
62
|
spree/order:
|
59
63
|
checkout_complete: Checkout Complete
|
60
64
|
completed_at: Completed At
|
65
|
+
considered_risky: Risky
|
61
66
|
coupon_code: Coupon Code
|
62
67
|
created_at: Order Date
|
63
68
|
email: Email
|
64
69
|
ip_address: IP Address
|
70
|
+
item_count: Items
|
65
71
|
item_total: Item Total
|
66
72
|
number: Number
|
67
73
|
payment_state: Payment State
|
@@ -69,7 +75,6 @@ en:
|
|
69
75
|
special_instructions: Special Instructions
|
70
76
|
state: State
|
71
77
|
total: Total
|
72
|
-
considered_risky: Risky
|
73
78
|
spree/order/bill_address:
|
74
79
|
address1: Billing address street
|
75
80
|
city: Billing address city
|
@@ -93,18 +98,18 @@ en:
|
|
93
98
|
name: Name
|
94
99
|
spree/product:
|
95
100
|
available_on: Available On
|
96
|
-
make_active_at: Make Active At
|
97
|
-
discontinue_on: Discontinue On
|
98
101
|
cost_currency: Cost Currency
|
99
102
|
cost_price: Cost Price
|
100
103
|
description: Description
|
104
|
+
discontinue_on: Discontinue On
|
105
|
+
less_than: Less than
|
106
|
+
make_active_at: Make Active At
|
101
107
|
master_price: Master Price
|
108
|
+
more_than: More than
|
102
109
|
name: Name
|
103
110
|
on_hand: On Hand
|
104
111
|
shipping_category: Shipping Category
|
105
112
|
tax_category: Tax Category
|
106
|
-
less_than: Less than
|
107
|
-
more_than: More than
|
108
113
|
spree/promotion:
|
109
114
|
advertise: Advertise
|
110
115
|
code: Code
|
@@ -114,12 +119,12 @@ en:
|
|
114
119
|
generate_code: Generate coupon code
|
115
120
|
name: Name
|
116
121
|
path: Path
|
122
|
+
promotion_category: Promotion Category
|
117
123
|
starts_at: Starts At
|
118
124
|
usage_limit: Usage Limit
|
119
|
-
promotion_category: Promotion Category
|
120
125
|
spree/promotion_category:
|
121
|
-
name: Name
|
122
126
|
code: Code
|
127
|
+
name: Name
|
123
128
|
spree/property:
|
124
129
|
name: Name
|
125
130
|
presentation: Presentation
|
@@ -136,20 +141,24 @@ en:
|
|
136
141
|
name: Name
|
137
142
|
spree/state_change:
|
138
143
|
state_changes: State changes
|
139
|
-
type: Type
|
140
144
|
state_from: State from
|
141
145
|
state_to: State to
|
142
|
-
user: User
|
143
146
|
timestamp: Timestamp
|
147
|
+
type: Type
|
144
148
|
updated: Updated
|
149
|
+
user: User
|
145
150
|
spree/store:
|
146
|
-
|
151
|
+
mail_from_address: Mail From Address
|
147
152
|
meta_description: Meta Description
|
148
153
|
meta_keywords: Meta Keywords
|
154
|
+
name: Site Name
|
155
|
+
preferred_digital_asset_authorized_clicks: Download clicks limit
|
156
|
+
preferred_digital_asset_authorized_days: Download days limit
|
157
|
+
preferred_limit_digital_download_count: Limit digital links download count
|
158
|
+
preferred_limit_digital_download_days: Limit digital links download days
|
149
159
|
seo_robots: SEO Robots
|
150
160
|
seo_title: SEO Title
|
151
|
-
|
152
|
-
mail_from_address: Mail From Address
|
161
|
+
url: Site URL
|
153
162
|
spree/store_credit:
|
154
163
|
amount_used: Amount used
|
155
164
|
spree/store_credit_category:
|
@@ -180,9 +189,123 @@ en:
|
|
180
189
|
sku: SKU
|
181
190
|
weight: Weight
|
182
191
|
width: Width
|
192
|
+
spree/wished_item:
|
193
|
+
variant: ''
|
183
194
|
spree/zone:
|
184
195
|
description: Description
|
185
196
|
name: Name
|
197
|
+
errors:
|
198
|
+
messages:
|
199
|
+
blank: can't be blank
|
200
|
+
models:
|
201
|
+
spree/calculator/tiered_flat_rate:
|
202
|
+
attributes:
|
203
|
+
base:
|
204
|
+
keys_should_be_positive_number: Tier keys should all be numbers larger than 0
|
205
|
+
preferred_tiers:
|
206
|
+
should_be_hash: should be a hash
|
207
|
+
spree/calculator/tiered_percent:
|
208
|
+
attributes:
|
209
|
+
base:
|
210
|
+
keys_should_be_positive_number: Tier keys should all be numbers larger than 0
|
211
|
+
values_should_be_percent: Tier values should all be percentages between 0% and 100%
|
212
|
+
preferred_tiers:
|
213
|
+
should_be_hash: should be a hash
|
214
|
+
spree/classification:
|
215
|
+
attributes:
|
216
|
+
taxon_id:
|
217
|
+
already_linked: is already linked to this product
|
218
|
+
spree/credit_card:
|
219
|
+
attributes:
|
220
|
+
base:
|
221
|
+
card_expired: Card has expired
|
222
|
+
expiry_invalid: Card expiration is invalid
|
223
|
+
spree/image:
|
224
|
+
attributes:
|
225
|
+
attachment:
|
226
|
+
attachment_must_be_present: must be present
|
227
|
+
not_allowed_content_type: has not allowed content type
|
228
|
+
spree/legacy_user:
|
229
|
+
attributes:
|
230
|
+
bill_address_id:
|
231
|
+
belongs_to_other_user: belongs to other user
|
232
|
+
deprecated_in_completed_order: deprecated in completed order
|
233
|
+
ship_address_id:
|
234
|
+
belongs_to_other_user: belongs to other user
|
235
|
+
deprecated_in_completed_order: deprecated in completed order
|
236
|
+
spree/line_item:
|
237
|
+
attributes:
|
238
|
+
currency:
|
239
|
+
must_match_order_currency: Must match order currency
|
240
|
+
spree/payment:
|
241
|
+
attributes:
|
242
|
+
amount:
|
243
|
+
greater_than_max_amount: is greater than the allowed maximum amount of %{max_amount}
|
244
|
+
spree/product:
|
245
|
+
attributes:
|
246
|
+
base:
|
247
|
+
cannot_destroy_if_attached_to_line_items: Cannot delete Products that are added to placed Orders. In such cases, please discontinue them.
|
248
|
+
discontinue_on:
|
249
|
+
invalid_date_range: must be later than available date
|
250
|
+
spree/promotion:
|
251
|
+
attributes:
|
252
|
+
expires_at:
|
253
|
+
invalid_date_range: must be later than start date
|
254
|
+
spree/refund:
|
255
|
+
attributes:
|
256
|
+
amount:
|
257
|
+
greater_than_allowed: is greater than the allowed amount.
|
258
|
+
spree/reimbursement:
|
259
|
+
attributes:
|
260
|
+
base:
|
261
|
+
return_items_order_id_does_not_match: One or more of the return items specified do not belong to the same order as the reimbursement.
|
262
|
+
spree/return_item:
|
263
|
+
attributes:
|
264
|
+
inventory_unit:
|
265
|
+
other_completed_return_item_exists: "%{inventory_unit_id} has already been taken by return item %{return_item_id}"
|
266
|
+
reimbursement:
|
267
|
+
cannot_be_associated_unless_accepted: cannot be associated to a return item that is not accepted.
|
268
|
+
spree/shipping_method:
|
269
|
+
attributes:
|
270
|
+
base:
|
271
|
+
required_shipping_category: You must select at least one shipping category
|
272
|
+
spree/store:
|
273
|
+
attributes:
|
274
|
+
base:
|
275
|
+
cannot_destroy_only_store: Cannot destroy the only Store.
|
276
|
+
spree/store_credit:
|
277
|
+
attributes:
|
278
|
+
amount_authorized:
|
279
|
+
exceeds_total_credits: Exceeds total credits.
|
280
|
+
amount_used:
|
281
|
+
cannot_be_greater_than_amount: Cannot be greater than amount.
|
282
|
+
greater_than_zero_restrict_delete: is greater than zero. Can not delete store credit.
|
283
|
+
spree/store_credit_category:
|
284
|
+
attributes:
|
285
|
+
base:
|
286
|
+
cannot_destroy_if_used_in_store_credit: Cannot delete store credit categories once they are used in store credit.
|
287
|
+
spree/taxon_image:
|
288
|
+
attributes:
|
289
|
+
attachment:
|
290
|
+
not_allowed_content_type: has not allowed content type
|
291
|
+
spree/user:
|
292
|
+
attributes:
|
293
|
+
bill_address_id:
|
294
|
+
belongs_to_other_user: belongs to other user
|
295
|
+
deprecated_in_completed_order: deprecated in completed order
|
296
|
+
ship_address_id:
|
297
|
+
belongs_to_other_user: belongs to other user
|
298
|
+
deprecated_in_completed_order: deprecated in completed order
|
299
|
+
spree/variant:
|
300
|
+
attributes:
|
301
|
+
base:
|
302
|
+
cannot_destroy_if_attached_to_line_items: Cannot delete Variants that are added to placed Orders. In such cases, please discontinue them.
|
303
|
+
must_supply_price_for_variant_or_master: Must supply price for variant or master price for product.
|
304
|
+
no_master_variant_found_to_infer_price: No master variant found to infer price
|
305
|
+
spree/wished_item:
|
306
|
+
attributes:
|
307
|
+
variant:
|
308
|
+
taken: You already added this item to your wishlist
|
186
309
|
models:
|
187
310
|
spree/address:
|
188
311
|
one: Address
|
@@ -202,6 +325,9 @@ en:
|
|
202
325
|
spree/customer_return:
|
203
326
|
one: Customer Return
|
204
327
|
other: Customer Returns
|
328
|
+
spree/digital:
|
329
|
+
one: Digital asset
|
330
|
+
other: Digital assets
|
205
331
|
spree/inventory_unit:
|
206
332
|
one: Inventory Unit
|
207
333
|
other: Inventory Units
|
@@ -271,12 +397,12 @@ en:
|
|
271
397
|
spree/state_change:
|
272
398
|
one: State Change
|
273
399
|
other: State Changes
|
274
|
-
spree/stock_movement:
|
275
|
-
one: Stock Movement
|
276
|
-
other: Stock Movements
|
277
400
|
spree/stock_location:
|
278
401
|
one: Stock Location
|
279
402
|
other: Stock Locations
|
403
|
+
spree/stock_movement:
|
404
|
+
one: Stock Movement
|
405
|
+
other: Stock Movements
|
280
406
|
spree/stock_transfer:
|
281
407
|
one: Stock Transfer
|
282
408
|
other: Stock Transfers
|
@@ -310,110 +436,6 @@ en:
|
|
310
436
|
spree/zone:
|
311
437
|
one: Zone
|
312
438
|
other: Zones
|
313
|
-
errors:
|
314
|
-
messages:
|
315
|
-
blank: can't be blank
|
316
|
-
models:
|
317
|
-
spree/calculator/tiered_flat_rate:
|
318
|
-
attributes:
|
319
|
-
base:
|
320
|
-
keys_should_be_positive_number: "Tier keys should all be numbers larger than 0"
|
321
|
-
preferred_tiers:
|
322
|
-
should_be_hash: "should be a hash"
|
323
|
-
spree/calculator/tiered_percent:
|
324
|
-
attributes:
|
325
|
-
base:
|
326
|
-
keys_should_be_positive_number: "Tier keys should all be numbers larger than 0"
|
327
|
-
values_should_be_percent: "Tier values should all be percentages between 0% and 100%"
|
328
|
-
preferred_tiers:
|
329
|
-
should_be_hash: "should be a hash"
|
330
|
-
spree/classification:
|
331
|
-
attributes:
|
332
|
-
taxon_id:
|
333
|
-
already_linked: "is already linked to this product"
|
334
|
-
spree/credit_card:
|
335
|
-
attributes:
|
336
|
-
base:
|
337
|
-
card_expired: "Card has expired"
|
338
|
-
expiry_invalid: "Card expiration is invalid"
|
339
|
-
spree/legacy_user:
|
340
|
-
attributes:
|
341
|
-
bill_address_id:
|
342
|
-
belongs_to_other_user: belongs to other user
|
343
|
-
deprecated_in_completed_order: deprecated in completed order
|
344
|
-
ship_address_id:
|
345
|
-
belongs_to_other_user: belongs to other user
|
346
|
-
deprecated_in_completed_order: deprecated in completed order
|
347
|
-
spree/user:
|
348
|
-
attributes:
|
349
|
-
bill_address_id:
|
350
|
-
belongs_to_other_user: belongs to other user
|
351
|
-
deprecated_in_completed_order: deprecated in completed order
|
352
|
-
ship_address_id:
|
353
|
-
belongs_to_other_user: belongs to other user
|
354
|
-
deprecated_in_completed_order: deprecated in completed order
|
355
|
-
spree/line_item:
|
356
|
-
attributes:
|
357
|
-
currency:
|
358
|
-
must_match_order_currency: "Must match order currency"
|
359
|
-
spree/promotion:
|
360
|
-
attributes:
|
361
|
-
expires_at:
|
362
|
-
invalid_date_range: must be later than start date
|
363
|
-
spree/product:
|
364
|
-
attributes:
|
365
|
-
discontinue_on:
|
366
|
-
invalid_date_range: must be later than available date
|
367
|
-
base:
|
368
|
-
cannot_destroy_if_attached_to_line_items: Cannot delete Products that are added to placed Orders. In such cases, please discontinue them.
|
369
|
-
spree/refund:
|
370
|
-
attributes:
|
371
|
-
amount:
|
372
|
-
greater_than_allowed: is greater than the allowed amount.
|
373
|
-
spree/reimbursement:
|
374
|
-
attributes:
|
375
|
-
base:
|
376
|
-
return_items_order_id_does_not_match: One or more of the return items specified do not belong to the same order as the reimbursement.
|
377
|
-
spree/return_item:
|
378
|
-
attributes:
|
379
|
-
reimbursement:
|
380
|
-
cannot_be_associated_unless_accepted: cannot be associated to a return item that is not accepted.
|
381
|
-
inventory_unit:
|
382
|
-
other_completed_return_item_exists: "%{inventory_unit_id} has already been taken by return item %{return_item_id}"
|
383
|
-
spree/shipping_method:
|
384
|
-
attributes:
|
385
|
-
base:
|
386
|
-
required_shipping_category: "You must select at least one shipping category"
|
387
|
-
spree/store:
|
388
|
-
attributes:
|
389
|
-
base:
|
390
|
-
cannot_destroy_only_store: Cannot destroy the only Store.
|
391
|
-
spree/store_credit:
|
392
|
-
attributes:
|
393
|
-
amount_used:
|
394
|
-
cannot_be_greater_than_amount: Cannot be greater than amount.
|
395
|
-
greater_than_zero_restrict_delete: is greater than zero. Can not delete store credit.
|
396
|
-
amount_authorized:
|
397
|
-
exceeds_total_credits: Exceeds total credits.
|
398
|
-
spree/store_credit_category:
|
399
|
-
attributes:
|
400
|
-
base:
|
401
|
-
cannot_destroy_if_used_in_store_credit: Cannot delete store credit categories once they are used in store credit.
|
402
|
-
spree/variant:
|
403
|
-
attributes:
|
404
|
-
base:
|
405
|
-
cannot_destroy_if_attached_to_line_items: Cannot delete Variants that are added to placed Orders. In such cases, please discontinue them.
|
406
|
-
no_master_variant_found_to_infer_price: No master variant found to infer price
|
407
|
-
must_supply_price_for_variant_or_master: Must supply price for variant or master price for product.
|
408
|
-
spree/image:
|
409
|
-
attributes:
|
410
|
-
attachment:
|
411
|
-
not_allowed_content_type: has not allowed content type
|
412
|
-
attachment_must_be_present: must be present
|
413
|
-
spree/taxon_image:
|
414
|
-
attributes:
|
415
|
-
attachment:
|
416
|
-
not_allowed_content_type: has not allowed content type
|
417
439
|
address_book:
|
418
440
|
save: Save
|
419
441
|
successfully_created: New address has been successfully created
|
@@ -455,113 +477,134 @@ en:
|
|
455
477
|
user_sessions:
|
456
478
|
signed_in: Signed in successfully.
|
457
479
|
signed_out: Signed out successfully.
|
458
|
-
|
459
480
|
errors:
|
460
481
|
messages:
|
461
482
|
already_confirmed: was already confirmed
|
483
|
+
not_a_number: is not a number
|
462
484
|
not_found: not found
|
463
485
|
not_locked: was not locked
|
464
486
|
not_saved:
|
465
|
-
one:
|
466
|
-
other:
|
467
|
-
|
487
|
+
one: '1 error prohibited this %{resource} from being saved:'
|
488
|
+
other: "%{count} errors prohibited this %{resource} from being saved:"
|
468
489
|
number:
|
490
|
+
currency:
|
491
|
+
format:
|
492
|
+
separator: "."
|
469
493
|
percentage:
|
470
494
|
format:
|
471
495
|
precision: 1
|
472
|
-
|
473
496
|
pagination:
|
474
497
|
first: "«"
|
475
498
|
last: "»"
|
476
|
-
previous: "‹"
|
477
499
|
next: "›"
|
500
|
+
previous: "‹"
|
478
501
|
truncate: "…"
|
479
|
-
|
480
502
|
spree:
|
481
503
|
abbreviation: Abbreviation
|
482
504
|
accept: Accept
|
483
|
-
acceptance_status: Acceptance status
|
484
505
|
acceptance_errors: Acceptance errors
|
506
|
+
acceptance_status: Acceptance status
|
485
507
|
accepted: Accepted
|
508
|
+
accepts_email_marketing: Accepts email marketing
|
486
509
|
account: Account
|
487
510
|
account_info: Account info
|
511
|
+
account_members: Team
|
488
512
|
account_updated: Account updated
|
489
513
|
action: Action
|
490
514
|
actions:
|
515
|
+
approve: Approve
|
491
516
|
cancel: Cancel
|
517
|
+
confirm: Confirm
|
518
|
+
connect: Connect
|
492
519
|
continue: Continue
|
493
520
|
create: Create
|
494
|
-
destroy:
|
521
|
+
destroy: Delete
|
522
|
+
discard: Discard
|
523
|
+
disconnect: Disconnect
|
495
524
|
edit: Edit
|
496
525
|
list: List
|
497
526
|
listing: Listing
|
498
527
|
new: New
|
528
|
+
publish: Publish
|
529
|
+
receive: Mark as received
|
499
530
|
refund: Refund
|
531
|
+
reject: Reject
|
532
|
+
resolve: Mark as resolved
|
500
533
|
save: Save
|
534
|
+
select_file: Select file
|
535
|
+
send_invitation: Send invitation
|
501
536
|
update: Update
|
502
537
|
activate: Activate
|
503
538
|
active: Active
|
504
539
|
add: Add
|
505
|
-
add_new_credit_card: Add a new card
|
506
540
|
add_action_of_type: Add action of type
|
541
|
+
add_address: Add address
|
507
542
|
add_country: Add Country
|
508
543
|
add_coupon_code: Add Coupon Code
|
509
544
|
add_new_address: Add new address
|
545
|
+
add_new_credit_card: Add a new card
|
510
546
|
add_new_header: Add New Header
|
547
|
+
add_new_page: Add new page
|
548
|
+
add_new_store: Add New Store
|
511
549
|
add_new_style: Add New Style
|
512
550
|
add_one: Add One
|
513
551
|
add_option_value: Add Option Value
|
514
552
|
add_product: Add Product
|
515
553
|
add_product_properties: Add Product Properties
|
554
|
+
add_products: Add Products
|
516
555
|
add_rule_of_type: Add rule of type
|
556
|
+
add_section: Add section
|
557
|
+
add_selected_products: Add selected products
|
558
|
+
add_selected_variant: Add selected variant
|
517
559
|
add_state: Add State
|
518
560
|
add_stock: Add Stock
|
519
|
-
add_to_cart: Add To Cart
|
520
|
-
add_variant: Add Variant
|
521
561
|
add_store: New Store
|
522
562
|
add_store_credit: Add Store Credit
|
563
|
+
add_to_cart: Add To Cart
|
564
|
+
add_to_waitlist: Add to waitlist
|
565
|
+
add_to_waitlist_description: Add to waitlist description
|
566
|
+
add_variant: Add Variant
|
523
567
|
added_to_cart: Added to cart successfully!
|
524
568
|
additional_item: Additional Item
|
525
569
|
address: Address
|
526
570
|
address1: Address
|
527
571
|
address2: Address (contd.)
|
528
|
-
addresses: Addresses
|
529
572
|
address_action_popup:
|
530
573
|
delete_button: yes, delete
|
531
574
|
delete_text: Do you really want <br /> to delete this address?
|
532
575
|
delete_title: Are you sure?
|
533
576
|
address_book:
|
534
|
-
|
535
|
-
add_new_shipping_address:
|
536
|
-
label: Address Name
|
577
|
+
add_house_number: Add a house number if you have one
|
578
|
+
add_new_shipping_address: Add new address
|
537
579
|
address_name_label: Address Name
|
538
580
|
address_name_placeholder: Give this address a unique name (Work, Home, etc.)
|
539
|
-
|
540
|
-
|
581
|
+
addresses: Addresses
|
582
|
+
label: Address Name
|
583
|
+
no_shipping_addresses_on_file: No addresses on file
|
584
|
+
other_address: Other address
|
541
585
|
remove_address: Remove Address
|
542
|
-
|
543
|
-
|
544
|
-
successfully_created:
|
545
|
-
successfully_removed:
|
546
|
-
successfully_saved:
|
547
|
-
|
548
|
-
|
549
|
-
unsuccessfully_updated:
|
550
|
-
|
586
|
+
set_as_default_billing_address: Set as default billing address
|
587
|
+
set_as_default_delivery_address: Set as default delivery address
|
588
|
+
successfully_created: Address has been successfully created.
|
589
|
+
successfully_removed: Address has been successfully removed.
|
590
|
+
successfully_saved: Saved successfully
|
591
|
+
successfully_updated: Updated successfully
|
592
|
+
unsuccessfully_saved: There was an error while trying to save your address.
|
593
|
+
unsuccessfully_updated: There was an update while trying to update your address.
|
594
|
+
addresses: Addresses
|
551
595
|
adjustable: Adjustable
|
552
596
|
adjustment: Adjustment
|
553
597
|
adjustment_amount: Amount
|
554
598
|
adjustment_labels:
|
555
599
|
tax_rates:
|
556
|
-
|
557
|
-
|
600
|
+
excluding_tax: "%{name}%{amount}"
|
601
|
+
including_tax: "%{name}%{amount} (Included in Price)"
|
558
602
|
adjustment_successfully_closed: Adjustment has been successfully closed!
|
559
603
|
adjustment_successfully_opened: Adjustment has been successfully opened!
|
560
604
|
adjustment_total: Adjustment Total
|
561
605
|
adjustments: Adjustments
|
562
|
-
administration: Administration
|
563
|
-
add_new_store: Add New Store
|
564
606
|
adjustments_deleted: Adjustments Deleted
|
607
|
+
administration: Administration
|
565
608
|
advertise: Advertise
|
566
609
|
agree_to_privacy_policy: Agree to Privacy Policy
|
567
610
|
agree_to_terms_of_service: Agree to Terms of Service
|
@@ -570,47 +613,68 @@ en:
|
|
570
613
|
all_adjustments_opened: All adjustments successfully opened!
|
571
614
|
all_departments: All departments
|
572
615
|
all_items_have_been_returned: All items have been returned
|
616
|
+
all_posts: All posts
|
617
|
+
all_posts_with_tag: All posts with tag
|
618
|
+
all_products: All products
|
573
619
|
all_rights_reserved: All rights reserved
|
620
|
+
all_time: All time
|
574
621
|
already_have_account: Already have an account?
|
575
622
|
alt_text: Alternative Text
|
576
623
|
alternative_phone: Alternative Phone
|
577
624
|
amount: Amount
|
625
|
+
analytics: Analytics
|
578
626
|
and: and
|
627
|
+
api_keys: API keys
|
628
|
+
apply: Apply
|
579
629
|
apply_only_on_full_priced_items: Apply only on full priced items
|
580
630
|
approve: approve
|
581
|
-
approver: Approver
|
582
631
|
approved_at: Approved at
|
632
|
+
approver: Approver
|
583
633
|
are_you_sure: Are you sure?
|
584
634
|
are_you_sure_delete: Are you sure you want to delete this record?
|
585
635
|
associated_adjustment_closed: The associated adjustment is closed, and will not be recalculated. Do you want to open it?
|
586
|
-
at_symbol:
|
636
|
+
at_symbol: "@"
|
637
|
+
attachments: Attachments
|
638
|
+
audit_log: Audit Log
|
639
|
+
author: Author
|
587
640
|
authorization_failure: Authorization Failure
|
588
641
|
authorized: Authorized
|
589
642
|
auto_capture: Auto Capture
|
643
|
+
automatic_promotion: Automatic
|
644
|
+
automatic_taxon_names:
|
645
|
+
new_arrivals: New arrivals
|
646
|
+
on_sale: On sale
|
590
647
|
availability: availability
|
591
|
-
available_on: Available On
|
592
|
-
make_active_at: Make Active At
|
593
648
|
available: Available
|
649
|
+
available_on: Available On
|
594
650
|
average_order_value: Average Order Value
|
595
651
|
avs_response: AVS Response
|
596
652
|
back: Back
|
597
653
|
back_end: Backend
|
598
|
-
backordered: Backordered
|
599
|
-
back_to_resource_list: 'Back To %{resource} List'
|
600
654
|
back_to_payment: Back To Payment
|
655
|
+
back_to_resource_list: Back To %{resource} List
|
601
656
|
back_to_rma_reason_list: Back To RMA Reason List
|
602
657
|
back_to_store: Back to Store
|
603
658
|
back_to_users_list: Back To Users List
|
604
659
|
backorderable: Backorderable
|
605
660
|
backorderable_default: Backorderable default
|
661
|
+
backordered: Backordered
|
662
|
+
backordered_confirm_info: Selected item is backordered so expect delays. Are you sure you want to order it?
|
663
|
+
backordered_info: Backordered
|
606
664
|
backorders_allowed: backorders allowed
|
665
|
+
balance: Balance
|
607
666
|
balance_due: Balance Due
|
667
|
+
barcode: Barcode
|
608
668
|
base_amount: Base Amount
|
609
669
|
base_percent: Base Percent
|
610
670
|
basic_information: Basic Information
|
611
671
|
bill_address: Bill Address
|
612
672
|
billing: Billing
|
613
673
|
billing_address: Billing Address
|
674
|
+
blog: Blog
|
675
|
+
blogs_posts: Blogs posts
|
676
|
+
body_tag_end: Body tag end
|
677
|
+
body_tag_start: Body tag start
|
614
678
|
both: Both
|
615
679
|
breadcrumbs: Breadcrumbs
|
616
680
|
calculated_reimbursements: Calculated Reimbursements
|
@@ -618,18 +682,20 @@ en:
|
|
618
682
|
calculator_settings_warning: If you are changing the calculator type, you must save first before you can edit the calculator settings
|
619
683
|
call_us_now: 'Call us now: '
|
620
684
|
cancel: cancel
|
685
|
+
cancel_order: Cancel order
|
621
686
|
canceled: Canceled
|
622
|
-
canceler: Canceler
|
623
687
|
canceled_at: Canceled at
|
688
|
+
canceler: Canceler
|
624
689
|
cannot_be_destroyed: Order cannot be destroyed.
|
625
|
-
cannot_empty: Cannot empty order.
|
626
|
-
cannot_empty_completed_order: Order has already been processed so it cannot be emptied
|
627
|
-
cannot_create_payment_without_payment_methods: You cannot create a payment for an order without any payment methods defined.
|
628
690
|
cannot_create_customer_returns: Cannot create customer returns as this order has no shipped units.
|
691
|
+
cannot_create_payment_without_payment_methods: You cannot create a payment for an order without any payment methods defined.
|
629
692
|
cannot_create_returns: Cannot create returns as this order has no shipped units.
|
693
|
+
cannot_empty: Cannot empty order.
|
694
|
+
cannot_empty_completed_order: Order has already been processed so it cannot be emptied
|
630
695
|
cannot_perform_operation: Cannot perform requested operation
|
631
696
|
cannot_return_more_than_bought_quantity: Cannot return more than bought quantity.
|
632
697
|
cannot_set_shipping_method_without_address: Cannot set shipping method until customer details are provided.
|
698
|
+
cannot_ship: Shipment cannot be shipped
|
633
699
|
capture: Capture
|
634
700
|
capture_events: Capture events
|
635
701
|
card_code: Card Verification Code (CVC)
|
@@ -637,42 +703,41 @@ en:
|
|
637
703
|
card_type: Brand
|
638
704
|
card_type_is: Card type is
|
639
705
|
cart: Cart
|
706
|
+
cart_line_item:
|
707
|
+
discontinued: "%{li_name} was removed because it was discontinued"
|
708
|
+
out_of_stock: "%{li_name} was removed because it was sold out"
|
640
709
|
cart_page:
|
641
710
|
add_promo_code: ADD PROMO CODE
|
642
711
|
change_quantity: Change quantity
|
643
712
|
checkout: checkout
|
644
|
-
empty_info:
|
713
|
+
empty_info: Your cart is empty.
|
645
714
|
header: Your shopping cart
|
646
715
|
product: product
|
647
716
|
quantity: quantity
|
648
717
|
remove_from_cart: Remove from cart
|
649
718
|
title: Shopping Cart
|
719
|
+
cart_state_changed: Cart changed
|
650
720
|
cart_subtotal:
|
651
|
-
one:
|
652
|
-
other:
|
721
|
+
one: Subtotal (1 item)
|
722
|
+
other: Subtotal (%{count} items)
|
653
723
|
categories: Categories
|
724
|
+
categorization: Categorization
|
654
725
|
category: Category
|
655
|
-
|
656
|
-
|
657
|
-
|
658
|
-
new_collection: NEW COLLECTION
|
659
|
-
special_offers: SPECIAL OFFERS
|
726
|
+
change: Change
|
727
|
+
change_password: Change password
|
728
|
+
changes_published: Changes published!
|
660
729
|
channel: Channel
|
661
730
|
charged: Charged
|
662
731
|
checkout: Checkout
|
663
|
-
|
664
|
-
main_navigation: Main navigation
|
665
|
-
checkout_navigation: Checkout navigation
|
666
|
-
back_to_cart: back to cart
|
667
|
-
delivery_method: delivery method
|
668
|
-
header: Checkout
|
669
|
-
product: Product
|
732
|
+
checkout_message: Checkout message
|
670
733
|
choose_a_customer: Choose a customer
|
671
|
-
choose_a_taxon_to_sort_products_for:
|
734
|
+
choose_a_taxon_to_sort_products_for: Choose a taxon to sort products for
|
672
735
|
choose_currency: Choose Currency
|
673
736
|
choose_dashboard_locale: Choose Dashboard Locale
|
674
737
|
choose_location: Choose location
|
675
738
|
city: City
|
739
|
+
clear: Clear
|
740
|
+
clear_all: Clear all
|
676
741
|
clear_cache: Clear Cache
|
677
742
|
clear_cache_ok: Cache was flushed
|
678
743
|
clear_cache_warning: Clearing cache will temporarily reduce the performance of your store.
|
@@ -680,20 +745,32 @@ en:
|
|
680
745
|
clone: Clone
|
681
746
|
close: Close
|
682
747
|
close_all_adjustments: Close All Adjustments
|
748
|
+
close_sidebar: Close sidebar
|
683
749
|
code: Code
|
750
|
+
colors: Colors
|
684
751
|
company: Company
|
752
|
+
compare_at_amount: Compare at amount
|
685
753
|
compare_at_price: Compare at price
|
686
754
|
complete: complete
|
755
|
+
conditions: Conditions
|
687
756
|
configuration: Configuration
|
688
757
|
configurations: Configurations
|
689
758
|
confirm: Confirm
|
690
759
|
confirm_delete: Confirm Deletion
|
691
760
|
confirm_password: Password Confirmation
|
761
|
+
contact: Contact
|
762
|
+
contact_information: Contact information
|
692
763
|
contact_phone: Contact phone
|
693
764
|
contact_us: Contact us
|
765
|
+
container_alignment: Container alignment
|
766
|
+
content: Content
|
694
767
|
continue: Continue
|
695
768
|
continue_as_guest: Continue as a guest
|
769
|
+
continue_selling_when_out_of_stock: Continue selling when out of stock
|
696
770
|
continue_shopping: Continue shopping
|
771
|
+
copy: Copy
|
772
|
+
copy_id: Copy ID
|
773
|
+
copy_link: Copy link
|
697
774
|
cost_currency: Cost Currency
|
698
775
|
cost_price: Cost Price
|
699
776
|
could_not_create_customer_return: Could not create customer return
|
@@ -712,9 +789,9 @@ en:
|
|
712
789
|
label: Choose must be shipped to this country
|
713
790
|
coupon: Coupon
|
714
791
|
coupon_code: Coupon code
|
715
|
-
coupon_code_apply: Apply
|
716
792
|
coupon_code_already_applied: The coupon code has already been applied to this order
|
717
793
|
coupon_code_applied: The coupon code was successfully applied to your order.
|
794
|
+
coupon_code_apply: Apply
|
718
795
|
coupon_code_better_exists: The previously applied coupon code results in a better deal
|
719
796
|
coupon_code_expired: The coupon code is expired
|
720
797
|
coupon_code_max_usage: Coupon code usage limit exceeded
|
@@ -722,24 +799,34 @@ en:
|
|
722
799
|
coupon_code_not_found: The coupon code you entered doesn't exist. Please try again.
|
723
800
|
coupon_code_removed: The coupon code was successfully removed from your order.
|
724
801
|
coupon_code_unknown_error: This coupon code could not be applied to the cart at this time.
|
802
|
+
coupon_code_used: The coupon code you entered has already been used. Please try again.
|
803
|
+
coupon_codes: Coupon codes
|
725
804
|
create: Create
|
726
805
|
create_a_new_account: Create a new account
|
806
|
+
create_account: Create account
|
807
|
+
create_customer: Create customer
|
808
|
+
create_new: Create new
|
727
809
|
create_new_order: Create new order
|
810
|
+
create_new_team: Create new team
|
728
811
|
create_reimbursement: Create reimbursement
|
729
812
|
created_at: Created At
|
730
813
|
created_by: Created By
|
731
814
|
credit: Credit
|
815
|
+
credit_allowed: Credit allowed
|
732
816
|
credit_card: Credit Card
|
733
817
|
credit_card_remove_confirmation: Are you sure you want to delete the credit card?
|
734
818
|
credit_cards: Credit Cards
|
735
819
|
credit_owed: Credit Owed
|
736
820
|
credited: Credited
|
737
821
|
credits: Credits
|
738
|
-
currency: Currency
|
739
822
|
currencies: Currencies
|
823
|
+
currency: Currency
|
740
824
|
currency_settings: Currency Settings
|
741
825
|
current: Current
|
742
|
-
|
826
|
+
current_password: Current password
|
827
|
+
current_promotion_usage: 'current usage: %{count}'
|
828
|
+
custom_code: Custom code
|
829
|
+
custom_font_code: Custom font code
|
743
830
|
customer: Customer
|
744
831
|
customer_details: Customer Details
|
745
832
|
customer_details_updated: Customer Details Updated
|
@@ -747,48 +834,83 @@ en:
|
|
747
834
|
customer_returns: Customer Returns
|
748
835
|
customer_search: Customer Search
|
749
836
|
customer_support_email: Customer Support Email
|
750
|
-
|
837
|
+
customers: Customers
|
751
838
|
cut: Cut
|
752
839
|
cvv: CVV
|
753
|
-
no_cc_type: N/A
|
754
840
|
cvv_response: CVV Response
|
755
841
|
date: Date
|
756
842
|
date_completed: Date Completed
|
757
843
|
date_picker:
|
758
|
-
# FlatPickr human friendly formatting
|
759
844
|
fpr_human_friendly_date_format: M j, Y
|
760
845
|
fpr_human_friendly_date_time_format: M j, Y at H:i
|
761
846
|
date_range: Date Range
|
847
|
+
days_ago: Days ago
|
762
848
|
default: Default
|
849
|
+
default_billing_address: Default billing address
|
850
|
+
default_country: Default Country
|
763
851
|
default_country_cannot_be_deleted: Default country cannot be deleted
|
764
852
|
default_currency: Default currency
|
853
|
+
default_post_categories:
|
854
|
+
articles: Articles
|
855
|
+
news: News
|
856
|
+
resources: Resources
|
765
857
|
default_refund_amount: Default Refund Amount
|
858
|
+
default_shipping_address: Default shipping address
|
859
|
+
default_stock_location_name: Shop location
|
766
860
|
default_tax: Default Tax
|
767
861
|
default_tax_zone: Default Tax Zone
|
862
|
+
default_theme_name: Default
|
768
863
|
default_wishlist_name: Wishlist
|
769
864
|
delete: Delete
|
770
|
-
|
865
|
+
delete_address: Delete address
|
771
866
|
delete_from_taxon: Delete From Taxon
|
772
|
-
|
773
|
-
|
774
|
-
discontinued_variants_present: Some line items in this order have products that are no longer available.
|
867
|
+
delete_selected: Delete selected
|
868
|
+
deleted: Deleted
|
775
869
|
delivery: Delivery
|
870
|
+
delivery_address: Delivery Address
|
776
871
|
delivery_information: Delivery Information
|
777
872
|
depth: Depth
|
778
|
-
details: Details
|
779
873
|
description: Description
|
780
874
|
destination: Destination
|
781
875
|
destroy: Destroy
|
782
|
-
|
876
|
+
details: Details
|
877
|
+
developers: Developers
|
878
|
+
digital:
|
879
|
+
digital_delivery: Digital Delivery
|
880
|
+
digital_assets: Digital assets
|
881
|
+
digital_link_unauthorized: You are not authorized to access this asset
|
882
|
+
dimension_units:
|
883
|
+
centimeter: Centimeter (cm)
|
884
|
+
foot: Foot (ft)
|
885
|
+
inch: Inch (in)
|
886
|
+
millimeter: Millimeter (mm)
|
783
887
|
discontinue_on: Discontinue On
|
784
888
|
discontinued: Discontinued
|
889
|
+
discontinued_variants_present: Some line items in this order have products that are no longer available.
|
890
|
+
discount: Discount
|
891
|
+
discount_amount: Discount Amount
|
892
|
+
discounts: Discounts
|
785
893
|
dismiss_banner: No. Thanks! I'm not interested, do not display this message again
|
786
894
|
display: Display
|
895
|
+
display_delivery_range: Delivery in %{delivery_range} business days
|
896
|
+
display_on: Display on
|
897
|
+
display_settings: Display settings
|
898
|
+
do_not_import: Do not import
|
787
899
|
doesnt_track_inventory: It doesn't track inventory
|
900
|
+
domain: Domain
|
901
|
+
domains: Domains
|
902
|
+
done: Done
|
788
903
|
dont_have_account: No account?
|
904
|
+
download: Download
|
905
|
+
draft: Draft
|
789
906
|
draft_mode: Draft Mode
|
907
|
+
draft_orders: Draft orders
|
908
|
+
duplicate: Duplicate
|
909
|
+
duplicating: Duplicating
|
790
910
|
edit: Edit
|
791
|
-
|
911
|
+
edit_address: Edit address
|
912
|
+
edit_refund: Edit refund
|
913
|
+
editing_resource: Editing %{resource}
|
792
914
|
editing_rma_reason: Editing RMA Reason
|
793
915
|
editing_user: Edit Your account
|
794
916
|
eligibility_errors:
|
@@ -806,32 +928,39 @@ en:
|
|
806
928
|
no_user_or_email_specified: You need to login or provide your email before applying this coupon code.
|
807
929
|
no_user_specified: You need to login before applying this coupon code.
|
808
930
|
not_first_order: This coupon code can only be applied to your first order.
|
931
|
+
wrong_country: This coupon code is not eligible in your country
|
809
932
|
email: Email
|
933
|
+
email_marketing: Email marketing
|
934
|
+
emails: Emails
|
810
935
|
empty: Empty
|
811
936
|
empty_cart: Empty Cart
|
812
937
|
enable_mail_delivery: Enable Mail Delivery
|
813
938
|
end: End
|
814
|
-
ends_at: Ends at
|
815
939
|
ending_at: Ending at
|
816
940
|
ending_in: Ending in
|
941
|
+
ends_at: Ends at
|
942
|
+
enter: Enter
|
943
|
+
enter_using_password: Enter using password
|
817
944
|
error: error
|
945
|
+
error_user_destroy_with_orders: User associated with orders cannot be destroyed
|
946
|
+
error_user_does_not_have_any_store_credits: User does not have any Store Credits available
|
818
947
|
errors:
|
819
948
|
messages:
|
820
|
-
store_association_can_not_be_changed: The store association can not be changed
|
821
|
-
store_is_already_set: Store is already set
|
822
949
|
blank: can't be blank
|
950
|
+
cannot_remove_icon: Cannot remove image
|
823
951
|
could_not_create_taxon: Could not create taxon
|
824
952
|
no_shipping_methods_available: No shipping methods available for selected location, please change your address and try again.
|
825
|
-
|
953
|
+
store_association_can_not_be_changed: The store association can not be changed
|
954
|
+
store_is_already_set: Store is already set
|
826
955
|
services:
|
827
956
|
get_shipping_rates:
|
828
|
-
no_shipping_address: To generate Shipping Rates Order needs to have a Shipping Address
|
829
957
|
no_line_items: To generate Shipping Rates you need to add some Line Items to Order
|
958
|
+
no_shipping_address: To generate Shipping Rates Order needs to have a Shipping Address
|
830
959
|
errors_prohibited_this_record_from_being_saved:
|
831
960
|
one: 1 error prohibited this record from being saved
|
832
|
-
other:
|
833
|
-
|
834
|
-
|
961
|
+
other: "%{count} errors prohibited this record from being saved"
|
962
|
+
estimated_delivery_time: Estimated delivery time
|
963
|
+
estimated_transit_business_days: Estimated transit business days
|
835
964
|
event: Event
|
836
965
|
events:
|
837
966
|
spree:
|
@@ -848,46 +977,69 @@ en:
|
|
848
977
|
signup: User signup
|
849
978
|
exceptions:
|
850
979
|
count_on_hand_setter: Cannot set count_on_hand manually, as it is set automatically by the recalculate_count_on_hand callback. Please use `update_column(:count_on_hand, value)` instead.
|
980
|
+
excerpt: Excerpt
|
851
981
|
exchange_for: Exchange for
|
852
|
-
expedited_exchanges_warning: "Any specified exchanges will ship to the customer immediately upon saving. The customer will be charged the full amount of the item if they do not return the original item within %{days_window} days."
|
853
982
|
excl: excl.
|
983
|
+
existing_address: Existing address
|
984
|
+
existing_shipments: Existing shipments
|
985
|
+
expedited_exchanges_warning: Any specified exchanges will ship to the customer immediately upon saving. The customer will be charged the full amount of the item if they do not return the original item within %{days_window} days.
|
854
986
|
expiration: Expiration
|
855
987
|
expiration_date: Expiration Date
|
988
|
+
expired: Expired
|
989
|
+
explore_taxon: Explore taxon
|
990
|
+
export: Export
|
991
|
+
export_mailer:
|
992
|
+
export_done:
|
993
|
+
message: Good work, your export is ready! Please use the link below to download it.
|
994
|
+
subject: Your export %{export_number} was successfully processed!
|
995
|
+
greeting: Hi %{user_name},
|
996
|
+
thanks: Thank you,
|
856
997
|
extension: Extension
|
857
998
|
extensions_directory: Extensions Directory
|
858
|
-
existing_shipments: Existing shipments
|
859
999
|
facebook: Facebook
|
860
1000
|
failed_payment_attempts: Failed Payment Attempts
|
861
|
-
favicon:
|
862
|
-
favicon_upload_info:
|
1001
|
+
favicon: Favicon
|
1002
|
+
favicon_upload_info: 'File format: PNG or ICO. File resolution: up to 256x256. File size: up to 1MB'
|
1003
|
+
featured_image: Featured image
|
1004
|
+
featured_taxon: Featured taxon
|
1005
|
+
field: Field
|
863
1006
|
filename: Filename
|
864
1007
|
fill_in_customer_info: Please fill in customer info
|
865
1008
|
filter: Filter
|
866
|
-
filterable: Filterable
|
867
1009
|
filter_results: Filter Results
|
1010
|
+
filterable: Filterable
|
1011
|
+
filtered_records: Filtered records
|
868
1012
|
finalize: Finalize
|
869
|
-
find_a_taxon: Find a Taxon
|
870
1013
|
finalized: Finalized
|
1014
|
+
find_a_taxon: Find a Taxon
|
1015
|
+
find_your_order: Find your order
|
871
1016
|
first_item: First Item
|
872
1017
|
first_name: First Name
|
873
|
-
firstname: First Name
|
874
1018
|
first_name_begins_with: First Name Begins With
|
1019
|
+
firstname: First Name
|
875
1020
|
flat_percent: Flat Percent
|
876
1021
|
flat_rate_per_order: Flat Rate
|
877
1022
|
flexible_rate: Flexible Rate
|
878
1023
|
follow_us: Follow us
|
1024
|
+
font_family: Font family
|
1025
|
+
font_size_scale: Font size scale
|
1026
|
+
fonts: Fonts
|
879
1027
|
footer: Footer
|
880
1028
|
forgot_password: Forgot password?
|
881
1029
|
free: Free
|
882
1030
|
free_shipping: Free Shipping
|
883
1031
|
free_shipping_amount: "-"
|
1032
|
+
from: From
|
884
1033
|
front_end: Front End
|
885
1034
|
gateway: Gateway
|
886
1035
|
gateway_error: Gateway Error
|
887
1036
|
general: General
|
1037
|
+
general_information: General information
|
888
1038
|
general_settings: General Settings
|
889
1039
|
generate_code: Generate coupon code
|
890
1040
|
get_back_to_the: Get back to the
|
1041
|
+
gift_card: Gift card
|
1042
|
+
gift_cards: Gift cards
|
891
1043
|
go_to_category: Go to category
|
892
1044
|
go_to_facebook: Go to facebook
|
893
1045
|
go_to_homepage: Go to Home Page
|
@@ -896,21 +1048,26 @@ en:
|
|
896
1048
|
guest_checkout: Guest Checkout
|
897
1049
|
guest_user_account: Checkout as a Guest
|
898
1050
|
has_no_shipped_units: has no shipped units
|
1051
|
+
head_tag: Head tag
|
899
1052
|
header_banner: Header banner
|
1053
|
+
header_font_family: Header font family
|
1054
|
+
header_font_size_scale: Header font size scale
|
900
1055
|
height: Height
|
1056
|
+
help_center: Help Center
|
1057
|
+
hide: Hide
|
901
1058
|
hide_from_subcategories_nav: Hide from subcategories navigation
|
902
1059
|
home: Home
|
903
1060
|
home_page: homepage
|
904
|
-
|
1061
|
+
homepage: Homepage
|
905
1062
|
i18n:
|
906
1063
|
available_locales: Available Locales
|
907
|
-
fields: Fields
|
908
|
-
language: Language
|
909
1064
|
country: Country
|
910
1065
|
default_country: Default Country
|
1066
|
+
fields: Fields
|
1067
|
+
language: Language
|
911
1068
|
localization_settings: Localization Settings
|
912
|
-
only_incomplete: Only incomplete
|
913
1069
|
only_complete: Only complete
|
1070
|
+
only_incomplete: Only incomplete
|
914
1071
|
select_locale: Select locale
|
915
1072
|
show_only: Show only
|
916
1073
|
supported_locales: Supported Locales
|
@@ -918,25 +1075,29 @@ en:
|
|
918
1075
|
translations: Translations
|
919
1076
|
icon: Icon
|
920
1077
|
image: Image
|
921
|
-
images: Images
|
922
1078
|
image_alt_text: Add Alt text to your image
|
923
|
-
|
924
|
-
|
1079
|
+
images: Images
|
1080
|
+
implement_eligible_for_return: 'Must implement #eligible_for_return? for your EligibilityValidator.'
|
1081
|
+
implement_requires_manual_intervention: 'Must implement #requires_manual_intervention? for your EligibilityValidator.'
|
1082
|
+
import_payment_methods_from: Import payment methods from
|
1083
|
+
import_products_from: Import products from
|
925
1084
|
in_stock: In Stock
|
926
1085
|
inactive: Inactive
|
927
1086
|
incl: incl.
|
928
1087
|
included_in_price: Included in Price
|
929
1088
|
included_price_validation: cannot be selected unless you have set a Default Tax Zone
|
930
1089
|
incomplete: Incomplete
|
931
|
-
|
1090
|
+
index_in_search_engines: Index in search engines
|
932
1091
|
info_number_of_skus_not_shown:
|
933
|
-
one:
|
934
|
-
other:
|
1092
|
+
one: and one other
|
1093
|
+
other: and %{count} others
|
1094
|
+
info_product_has_multiple_skus: 'This product has %{count} variants:'
|
935
1095
|
instagram: Instagram
|
936
1096
|
instructions_to_reset_password: Please enter your email on the form below
|
937
1097
|
insufficient_stock: Insufficient stock available, only %{on_hand} remaining
|
938
1098
|
insufficient_stock_item_quantity: Insufficient stock quantity available
|
939
1099
|
insufficient_stock_lines_present: Some line items in this order have insufficient quantity.
|
1100
|
+
integrations: Integrations
|
940
1101
|
intercept_email_address: Intercept Email Address
|
941
1102
|
intercept_email_instructions: Override email recipient and replace with this address.
|
942
1103
|
internal_name: Internal Name
|
@@ -954,6 +1115,7 @@ en:
|
|
954
1115
|
iso: ISO Alpha-2
|
955
1116
|
iso3: ISO Alpha-3
|
956
1117
|
iso_name: ISO Name
|
1118
|
+
issue_gift_card: Issue Gift Card
|
957
1119
|
issued_on: Issued On
|
958
1120
|
item: Item
|
959
1121
|
item_description: Item Description
|
@@ -966,27 +1128,31 @@ en:
|
|
966
1128
|
lte: less than or equal to
|
967
1129
|
items_cannot_be_shipped: We are unable to calculate shipping rates for the selected items.
|
968
1130
|
items_in_rmas: Items in Return Authorizations
|
969
|
-
items_to_be_reimbursed: Items to be reimbursed
|
970
1131
|
items_reimbursed: Items reimbursed
|
1132
|
+
items_to_be_reimbursed: Items to be reimbursed
|
971
1133
|
join_slack: Join Slack
|
1134
|
+
kind: Kind
|
972
1135
|
language: Language
|
973
1136
|
last_name: Last Name
|
974
|
-
lastname: Last Name
|
975
1137
|
last_name_begins_with: Last Name Begins With
|
1138
|
+
lastname: Last Name
|
976
1139
|
learn_more: Learn More
|
977
1140
|
lifetime_stats: Lifetime Stats
|
978
1141
|
limit_usage_to: Limit usage to
|
979
|
-
|
1142
|
+
line_item: Line Item
|
1143
|
+
line_item_adjustments: Line item adjustments
|
1144
|
+
line_items: Line items
|
1145
|
+
link: Link
|
980
1146
|
list: List
|
1147
|
+
live: Live
|
981
1148
|
loading: Loading
|
982
1149
|
loading_tree: Loading tree. Please wait…
|
983
1150
|
locale_changed: Locale Changed
|
984
1151
|
location: Location
|
985
1152
|
lock: Lock
|
986
|
-
log_entries:
|
1153
|
+
log_entries: Log Entries
|
987
1154
|
log_in: Log in
|
988
1155
|
log_in_to_continue: Log in to continue
|
989
|
-
logs: "Logs"
|
990
1156
|
logged_in_as: Logged in as
|
991
1157
|
logged_in_successfully: Logged in successfully
|
992
1158
|
logged_out: You have been logged out.
|
@@ -997,67 +1163,76 @@ en:
|
|
997
1163
|
logo: Logo
|
998
1164
|
logo_alt: Brand logo
|
999
1165
|
logout: Logout
|
1166
|
+
logs: Logs
|
1000
1167
|
look_for_similar_items: Look for similar items
|
1001
|
-
make_refund: Make refund
|
1002
|
-
make_sure_the_above_reimbursement_amount_is_correct: Make sure the above reimbursement amount is correct
|
1003
1168
|
mail_from_address: Mail from address
|
1004
1169
|
mailer_logo: Mailer logo (JPG or PNG images only)
|
1170
|
+
make_active_at: Make Active At
|
1171
|
+
make_refund: Make refund
|
1172
|
+
make_sure_the_above_reimbursement_amount_is_correct: Make sure the above reimbursement amount is correct
|
1005
1173
|
manage_promotion_categories: Manage Promotion Categories
|
1006
|
-
manual_intervention_required: Manual intervention required
|
1007
1174
|
manage_variants: Manage Variants
|
1175
|
+
manual_intervention_required: Manual intervention required
|
1176
|
+
mark_as_default: Mark as default
|
1008
1177
|
master: Master
|
1009
1178
|
master_price: Master Price
|
1010
1179
|
master_sku: Master SKU
|
1011
1180
|
match_choices:
|
1012
1181
|
all: All
|
1013
1182
|
none: None
|
1014
|
-
max:
|
1183
|
+
max: Max
|
1015
1184
|
max_items: Max Items
|
1016
|
-
|
1185
|
+
media: Media
|
1017
1186
|
memo: Memo
|
1018
1187
|
meta_description: Meta Description
|
1019
1188
|
meta_keywords: Meta Keywords
|
1020
1189
|
meta_title: Meta Title
|
1021
1190
|
metadata: Metadata
|
1022
|
-
|
1023
|
-
must_have_one_store: The resource must belong to a store.
|
1024
|
-
min: 'Min'
|
1191
|
+
min: Min
|
1025
1192
|
minimal_amount: Minimal Amount
|
1026
|
-
missing_return_authorization:
|
1193
|
+
missing_return_authorization: Missing Return Authorization for %{item_name}.
|
1027
1194
|
month: Month
|
1028
1195
|
more: More
|
1196
|
+
more_actions: More actions
|
1197
|
+
move: Move
|
1198
|
+
move_down: Move down
|
1029
1199
|
move_stock_between_locations: Move Stock Between Locations
|
1200
|
+
move_up: Move up
|
1201
|
+
move_variant_to: Move variant to
|
1202
|
+
must_have_one_store: The resource must belong to a store.
|
1203
|
+
mutable: Mutable
|
1030
1204
|
my_account: My Account
|
1205
|
+
my_addresses: My addresses
|
1031
1206
|
my_orders: My Orders
|
1032
1207
|
name: Name
|
1033
1208
|
name_on_card: Name on card
|
1034
1209
|
name_or_sku: Name or SKU (enter at least first 3 characters of product name)
|
1035
|
-
|
1036
|
-
admin_panel: Admin Panel
|
1037
|
-
change_country: Change country
|
1038
|
-
close_menu: Close menu
|
1039
|
-
go_to_previous_menu: Go to previous menu
|
1040
|
-
log_in: LOG IN
|
1041
|
-
log_out: LOG OUT
|
1042
|
-
my_account: My Account
|
1043
|
-
my_orders: My Orders
|
1044
|
-
show_menu: Show menu
|
1045
|
-
show_search: Show search
|
1046
|
-
show_user_menu: Show user menu
|
1047
|
-
sign_up: SIGN UP
|
1048
|
-
desktop: Desktop navigation
|
1049
|
-
mobile: Mobile navigation
|
1210
|
+
navigation: Navigation
|
1050
1211
|
new: New
|
1212
|
+
new_address: New address
|
1051
1213
|
new_adjustment: New Adjustment
|
1214
|
+
new_balance: New balance
|
1215
|
+
new_billing_address: New Billing Address
|
1216
|
+
new_country: New Country
|
1217
|
+
new_custom_domain: New Custom Domain
|
1052
1218
|
new_customer: Create new account
|
1053
1219
|
new_customer_return: New Customer Return
|
1054
|
-
|
1220
|
+
new_digital_asset: New digital asset
|
1221
|
+
new_domain: New domain
|
1055
1222
|
new_image: New Image
|
1223
|
+
new_line_item: Add line item
|
1224
|
+
new_market: New market
|
1225
|
+
new_nested_taxon: New nested taxon
|
1056
1226
|
new_option_type: New Option Type
|
1057
1227
|
new_order: New Order
|
1058
1228
|
new_order_completed: New Order Completed
|
1229
|
+
new_order_notifications_email: New Order Notifications Email
|
1230
|
+
new_page: New Page
|
1231
|
+
new_password: New password
|
1059
1232
|
new_payment: New Payment
|
1060
1233
|
new_payment_method: New Payment Method
|
1234
|
+
new_post: New Post
|
1235
|
+
new_post_category: New Post Category
|
1061
1236
|
new_product: New Product
|
1062
1237
|
new_promotion: New Promotion
|
1063
1238
|
new_promotion_category: New Promotion Category
|
@@ -1066,16 +1241,18 @@ en:
|
|
1066
1241
|
new_refund: New Refund
|
1067
1242
|
new_refund_reason: New Refund Reason
|
1068
1243
|
new_reimbursement_type: New Reimbursement Type
|
1069
|
-
new_rma_reason: New RMA Reason
|
1070
1244
|
new_return_authorization: New Return Authorization
|
1245
|
+
new_rma_reason: New RMA Reason
|
1071
1246
|
new_role: New Role
|
1247
|
+
new_shipment_at_location: New shipment at location
|
1248
|
+
new_shipping_address: New Shipping Address
|
1072
1249
|
new_shipping_category: New Shipping Category
|
1073
1250
|
new_shipping_method: New Shipping Method
|
1074
|
-
new_shipment_at_location: New shipment at location
|
1075
1251
|
new_state: New State
|
1076
1252
|
new_stock_location: New Stock Location
|
1077
1253
|
new_stock_movement: New Stock Movement
|
1078
1254
|
new_stock_transfer: New Stock Transfer
|
1255
|
+
new_store: New Store
|
1079
1256
|
new_store_credit: New Store Credit
|
1080
1257
|
new_store_credit_category: New Store Credit Category
|
1081
1258
|
new_tax_category: New Tax Category
|
@@ -1086,53 +1263,65 @@ en:
|
|
1086
1263
|
new_user: New User
|
1087
1264
|
new_variant: New Variant
|
1088
1265
|
new_zone: New Zone
|
1266
|
+
newsletters: Newsletters
|
1089
1267
|
next: Next
|
1090
1268
|
no_actions_added: No actions added
|
1091
1269
|
no_address_given: No address given
|
1092
1270
|
no_available_date_set: No available date set
|
1271
|
+
no_billing_address_available: No billing address available
|
1272
|
+
no_cc_type: N/A
|
1093
1273
|
no_country: No country set
|
1274
|
+
no_email_provided: No email provided
|
1275
|
+
no_limits_zone: No Limits
|
1094
1276
|
no_payment_found: No payment found
|
1095
1277
|
no_payment_provider_settings_message: This payment provider has no custom settings available
|
1096
1278
|
no_pending_payments: No pending payments
|
1097
1279
|
no_product_available:
|
1098
1280
|
for_this_quantity: Sorry, it looks like some products are not available in selected quantity.
|
1099
1281
|
oops: Oops!
|
1282
|
+
no_products_added: No products added
|
1100
1283
|
no_products_found: No products found
|
1284
|
+
no_resource_found: No %{resource} found
|
1101
1285
|
no_results: No results
|
1102
|
-
no_rules_added: No rules added
|
1103
|
-
no_resource_found: 'No %{resource} found'
|
1104
1286
|
no_returns_found: No returns found
|
1287
|
+
no_rules_added: No rules added
|
1288
|
+
no_saved_cards: No saved cards
|
1289
|
+
no_shipping_address_available: No shipping address available
|
1105
1290
|
no_shipping_method_selected: No shipping method selected.
|
1106
1291
|
no_state_changes: No state changes yet.
|
1107
1292
|
no_tracking_present: No tracking details provided.
|
1108
|
-
user_not_found: User not found
|
1109
1293
|
none: None
|
1110
1294
|
none_selected: None Selected
|
1111
1295
|
normal_amount: Normal Amount
|
1112
1296
|
not: not
|
1113
1297
|
not_available: N/A
|
1114
1298
|
not_enough_stock: There is not enough inventory at the source location to complete this transfer.
|
1115
|
-
not_found:
|
1299
|
+
not_found: "%{resource} is not found"
|
1300
|
+
not_risky: Not risky
|
1301
|
+
not_subscribed: Not subscribed
|
1116
1302
|
note: Note
|
1117
1303
|
notice_messages:
|
1118
1304
|
icon_removed: Image has been successfully removed
|
1119
1305
|
prices_saved: Prices successfully saved
|
1120
|
-
translations_saved: Translations successfully saved
|
1121
1306
|
product_cloned: Product has been cloned
|
1122
1307
|
product_deleted: Product has been deleted
|
1123
|
-
product_not_cloned:
|
1124
|
-
product_not_deleted:
|
1308
|
+
product_not_cloned: 'Product could not be cloned. Reason: %{error}'
|
1309
|
+
product_not_deleted: 'Product could not be deleted. Reason: %{error}'
|
1310
|
+
translations_saved: Translations successfully saved
|
1125
1311
|
variant_deleted: Variant has been deleted
|
1126
|
-
variant_not_deleted:
|
1312
|
+
variant_not_deleted: 'Variant could not be deleted. Reason: %{error}'
|
1313
|
+
notify_me_when_available: Notify me when available
|
1127
1314
|
num_orders: "# Orders"
|
1128
1315
|
number: Number
|
1129
1316
|
ok: OK
|
1130
1317
|
on_hand: On Hand
|
1131
1318
|
only_active_products_can_be_added_to_cart: Draft and archived products cannot be added to cart, please mark the product as active before.
|
1319
|
+
only_left: Only %{count} left
|
1132
1320
|
open: Open
|
1133
1321
|
open_all_adjustments: Open All Adjustments
|
1322
|
+
option_name: Option name
|
1134
1323
|
option_type: Option Type
|
1135
|
-
option_type_filterable_info:
|
1324
|
+
option_type_filterable_info: When an option type is set to Filterable, your storefront visitors are presented with the option to filter a taxon of products based on the option type. A typical example of this would be to filter clothing by size and color.<br><br><b>Please Note:</b> Filters will only be visible in the storefront taxons that contain products with this option type set.
|
1136
1325
|
option_type_placeholder: Choose an option type
|
1137
1326
|
option_types: Option Types
|
1138
1327
|
option_value: Option Value
|
@@ -1140,38 +1329,47 @@ en:
|
|
1140
1329
|
optional: Optional
|
1141
1330
|
options: Options
|
1142
1331
|
or: or
|
1143
|
-
or_over_price:
|
1332
|
+
or_over_price: "%{price} or over"
|
1333
|
+
or_select_other_address: or select other address
|
1144
1334
|
order: Order
|
1145
1335
|
order_adjustments: Order adjustments
|
1336
|
+
order_again: Order again
|
1337
|
+
order_already_completed: Order already completed
|
1146
1338
|
order_already_updated: The order has already been updated.
|
1147
1339
|
order_approved: Order approved
|
1148
1340
|
order_canceled: Order canceled
|
1149
1341
|
order_details: Order Details
|
1150
1342
|
order_email_resent: Order Email Resent
|
1343
|
+
order_email_resent_error: Order confirmation mail can only be sent for completed orders
|
1151
1344
|
order_information: Order Information
|
1152
1345
|
order_line_items: Order Line Items
|
1153
1346
|
order_mailer:
|
1154
|
-
subtotal: ! 'Subtotal:'
|
1155
|
-
total: ! 'Order Total:'
|
1156
|
-
store_team: '%{store_name} Team'
|
1157
1347
|
cancel_email:
|
1158
|
-
dear_customer:
|
1348
|
+
dear_customer: Hey %{name},
|
1159
1349
|
instructions: Your order has been CANCELED. Please retain this cancellation information for your records.
|
1160
1350
|
order_summary_canceled: Order %{number} Summary [CANCELED]
|
1161
1351
|
subject: Cancellation of Order
|
1162
|
-
thanks: Thank you for
|
1352
|
+
thanks: Thank you for
|
1163
1353
|
confirm_email:
|
1164
|
-
dear_customer:
|
1354
|
+
dear_customer: Hey %{name},
|
1165
1355
|
instructions: Please review and retain the following order information for your records.
|
1166
1356
|
order_summary: Order %{number} Summary
|
1167
1357
|
subject: Order Confirmation
|
1168
|
-
thanks: Thank you
|
1358
|
+
thanks: Thank you
|
1359
|
+
payment_link_email:
|
1360
|
+
message: Please click the button below to pay for your order.
|
1361
|
+
message_copy_link: 'If the button doesn''t work please copy and paste the following link to your browser:'
|
1362
|
+
pay_for_order: Pay for order
|
1363
|
+
subject: 'Payment link for order #%{number}'
|
1169
1364
|
store_owner_notification_email:
|
1170
1365
|
heading: New Order Received
|
1171
1366
|
instructions: You have received a new order.
|
1172
1367
|
order_summary: Order %{number} Summary
|
1173
|
-
subject:
|
1174
|
-
thanks: Thank you
|
1368
|
+
subject: "%{store_name} received a new order"
|
1369
|
+
thanks: Thank you
|
1370
|
+
store_team: "%{store_name} Team"
|
1371
|
+
subtotal: 'Subtotal:'
|
1372
|
+
total: 'Order Total:'
|
1175
1373
|
order_not_found: We couldn't find your order. Please try that action again.
|
1176
1374
|
order_number: Order %{number}
|
1177
1375
|
order_processed_successfully: Your order has been processed successfully
|
@@ -1181,13 +1379,14 @@ en:
|
|
1181
1379
|
awaiting_return: awaiting return
|
1182
1380
|
canceled: canceled
|
1183
1381
|
cart: cart
|
1184
|
-
considered_risky: considered risky
|
1185
1382
|
complete: complete
|
1186
1383
|
confirm: confirm
|
1384
|
+
considered_risky: considered risky
|
1187
1385
|
delivery: delivery
|
1188
1386
|
payment: payment
|
1189
1387
|
resumed: resumed
|
1190
1388
|
returned: returned
|
1389
|
+
order_status: Order status
|
1191
1390
|
order_success: Order placed successfully
|
1192
1391
|
order_success_explain: Your order information will be sent to your email
|
1193
1392
|
order_summary: Order Summary
|
@@ -1195,76 +1394,147 @@ en:
|
|
1195
1394
|
order_total: Order Total
|
1196
1395
|
order_updated: Order Updated
|
1197
1396
|
orders: Orders
|
1397
|
+
origin: Origin
|
1398
|
+
other: Other
|
1198
1399
|
out_of_stock: Out of Stock
|
1199
|
-
|
1200
|
-
backordered_confirm_info: Selected item is backordered so expect delays. Are you sure you want to order it?
|
1400
|
+
outstanding_balance: Outstanding Balance
|
1201
1401
|
overview: Overview
|
1202
1402
|
package_from: package from
|
1203
1403
|
page: Page
|
1404
|
+
page_blocks:
|
1405
|
+
buttons:
|
1406
|
+
display_name: Button
|
1407
|
+
link:
|
1408
|
+
display_name: Link
|
1409
|
+
nav:
|
1410
|
+
label_default: Menu
|
1411
|
+
newsletter_form:
|
1412
|
+
button_text_default: Submit
|
1413
|
+
placeholder_default: Enter your email
|
1204
1414
|
page_not_found: Sorry! Page you are looking can’t be found.
|
1415
|
+
page_sections:
|
1416
|
+
announcement_bar:
|
1417
|
+
default_text: Welcome to my Store!
|
1418
|
+
featured_taxon:
|
1419
|
+
button_text_default: Explore category
|
1420
|
+
heading_default: Beloved products
|
1421
|
+
featured_taxons:
|
1422
|
+
heading_default: Shop by category
|
1423
|
+
image_banner:
|
1424
|
+
heading_default: Welcome to your website
|
1425
|
+
text_default: This is the place to tell people about your business and what you do.
|
1426
|
+
image_with_text:
|
1427
|
+
heading_default: Welcome to our shop!
|
1428
|
+
text_default: At %{store_name} we offer a wide range of products for your home and business.
|
1429
|
+
newsletter:
|
1430
|
+
heading_default: Subscribe to our newsletter
|
1431
|
+
text_default: Thank you for choosing us as your trusted online shopping destination.
|
1432
|
+
page_title:
|
1433
|
+
display_name: Page Title
|
1434
|
+
related_products:
|
1435
|
+
heading_default: You might also like
|
1436
|
+
rich_text:
|
1437
|
+
heading_default: This is a heading
|
1438
|
+
text_default: This is a paragraph of text
|
1439
|
+
taxon_grid:
|
1440
|
+
heading_default: Brands we work with
|
1441
|
+
video:
|
1442
|
+
heading_1_default: Why I recommend it?
|
1443
|
+
heading_2_default: There's nothing like a soft hint of blush to add dimension and color to your look.
|
1444
|
+
page_settings: Page settings
|
1445
|
+
pages: Pages
|
1446
|
+
pages_defaults:
|
1447
|
+
homepage:
|
1448
|
+
featured_taxon_heading_new_arrivals: New arrivals
|
1449
|
+
featured_taxon_heading_on_sale: On sale
|
1450
|
+
image_with_text_heading: About us
|
1451
|
+
image_with_text_text: Welcome to our shop! We carefully curate high-quality products that we believe in. Our process involves rigorous testing and selection to ensure we only offer items that meet our standards. We're passionate about delivering exceptional value and service to our customers.
|
1452
|
+
password:
|
1453
|
+
newsletter_heading: Opening soon
|
1454
|
+
newsletter_text: Be the first one to know when we launch.
|
1205
1455
|
pagination:
|
1206
1456
|
next_page: next page »
|
1207
|
-
previous_page:
|
1208
|
-
truncate:
|
1457
|
+
previous_page: "« previous page"
|
1458
|
+
truncate: "…"
|
1209
1459
|
password: Password
|
1460
|
+
password_protected: Password protected
|
1210
1461
|
paste: Paste
|
1211
1462
|
path: Path
|
1212
1463
|
pay: pay
|
1213
1464
|
payment: Payment
|
1465
|
+
payment_amount: Payment amount
|
1466
|
+
payment_attempts: failed attempts
|
1214
1467
|
payment_could_not_be_created: Payment could not be created.
|
1215
1468
|
payment_identifier: Payment Identifier
|
1216
1469
|
payment_information: Payment Information
|
1217
1470
|
payment_method: Payment Method
|
1218
|
-
payment_methods: Payment Methods
|
1219
1471
|
payment_method_not_supported: That payment method is unsupported. Please choose another one.
|
1472
|
+
payment_methods: Payment Methods
|
1220
1473
|
payment_processing_failed: Payment could not be processed, please check the details you entered
|
1221
1474
|
payment_processor_choose_banner_text: If you need help choosing a payment processor, please visit
|
1222
1475
|
payment_processor_choose_link: our payments page
|
1223
1476
|
payment_provider_settings: Payment Provider Settings
|
1477
|
+
payment_source: Payment source
|
1224
1478
|
payment_state: Payment State
|
1225
1479
|
payment_states:
|
1226
|
-
balance_due:
|
1227
|
-
checkout:
|
1228
|
-
|
1229
|
-
|
1230
|
-
|
1231
|
-
|
1232
|
-
|
1233
|
-
|
1234
|
-
|
1480
|
+
balance_due: Balance due
|
1481
|
+
checkout: Checkout
|
1482
|
+
complete: Complete
|
1483
|
+
completed: Completed
|
1484
|
+
credit_owed: Credit owed
|
1485
|
+
failed: Failed
|
1486
|
+
paid: Paid
|
1487
|
+
partially_refunded: Partially Refunded
|
1488
|
+
pending: Pending
|
1489
|
+
processing: Processing
|
1490
|
+
refunded: Refunded
|
1491
|
+
void: Void
|
1492
|
+
payment_total: Payment Total
|
1235
1493
|
payment_type: Payment type
|
1236
1494
|
payment_updated: Payment Updated
|
1237
1495
|
payments: Payments
|
1496
|
+
payments_count: Payments count
|
1497
|
+
pending: Pending
|
1498
|
+
pending_sale: Pending Sale
|
1238
1499
|
percent: Percent
|
1239
1500
|
percent_per_item: Percent Per Item
|
1240
1501
|
permalink: Permalink
|
1241
|
-
|
1242
|
-
pending_sale: Pending Sale
|
1502
|
+
personal_details: Personal details
|
1243
1503
|
phone: Phone
|
1504
|
+
place_now: Place now
|
1244
1505
|
place_order: Place Order
|
1506
|
+
please_check_back_soon: Please check back soon.
|
1245
1507
|
please_define_payment_methods: Please define some payment methods first.
|
1246
1508
|
please_enter_reasonable_quantity: Please enter a reasonable quantity.
|
1509
|
+
please_select: Please select
|
1510
|
+
please_select_all_options: Please select all options
|
1511
|
+
policies: Policies
|
1247
1512
|
populate_get_error: Something went wrong. Please try adding the item again.
|
1513
|
+
post_categories: Post categories
|
1514
|
+
posts: Posts
|
1248
1515
|
powered_by: Powered by
|
1249
|
-
pre_tax_refund_amount: Pre-Tax Refund Amount
|
1250
1516
|
pre_tax_amount: Pre-Tax Amount
|
1517
|
+
pre_tax_refund_amount: Pre-Tax Refund Amount
|
1251
1518
|
pre_tax_total: Pre-Tax Total
|
1252
1519
|
preferred_reimbursement_type: Preferred Reimbursement Type
|
1253
1520
|
presentation: Presentation
|
1521
|
+
preview: Preview
|
1254
1522
|
preview_product: Preview Product
|
1255
1523
|
preview_taxon: Preview Taxon
|
1256
1524
|
previous: Previous
|
1257
|
-
previous_state_missing: "n/a"
|
1258
1525
|
previously_used_card: Previously Used Cards
|
1259
1526
|
price: Price
|
1260
|
-
prices: Prices
|
1261
1527
|
price_range: Price Range
|
1262
1528
|
price_sack: Price Sack
|
1529
|
+
prices: Prices
|
1530
|
+
pricing: Pricing
|
1531
|
+
privacy_policy: Privacy Policy
|
1263
1532
|
process: Process
|
1533
|
+
processing: Processing
|
1264
1534
|
product: Product
|
1265
|
-
product_name: Product Name
|
1266
1535
|
product_details: Product Details
|
1267
1536
|
product_has_no_description: This product has no description
|
1537
|
+
product_name: Product Name
|
1268
1538
|
product_not_available_in_this_currency: This product is not available in the selected currency.
|
1269
1539
|
product_properties: Product Properties
|
1270
1540
|
product_rule:
|
@@ -1276,11 +1546,20 @@ en:
|
|
1276
1546
|
product_source:
|
1277
1547
|
group: From product group
|
1278
1548
|
manual: Manually choose
|
1549
|
+
product_sold_out: This item is sold out
|
1279
1550
|
products: Products
|
1551
|
+
products_cannot_be_shipped: We cannot ship %{product_names} to your current location at the moment. Please change your shipping address or remove %{product_names} from your cart.
|
1552
|
+
products_sort_options:
|
1553
|
+
best_selling: Best Selling
|
1554
|
+
manual: Manual
|
1555
|
+
name_a_z: Alphabetically, A-Z
|
1556
|
+
name_z_a: Alphabetically, Z-A
|
1557
|
+
newest_first: Newest
|
1558
|
+
oldest_first: Oldest
|
1559
|
+
price_high_to_low: Price (high-low)
|
1560
|
+
price_low_to_high: Price (low-high)
|
1561
|
+
relevance: Relevance
|
1280
1562
|
promotion: Promotion
|
1281
|
-
promotionable: Promotable
|
1282
|
-
promotion_cloned: Promotion has been cloned
|
1283
|
-
promotion_not_cloned: "Promotion has not been cloned. Reason: %{error}"
|
1284
1563
|
promotion_action: Promotion Action
|
1285
1564
|
promotion_action_types:
|
1286
1565
|
create_adjustment:
|
@@ -1296,17 +1575,23 @@ en:
|
|
1296
1575
|
description: Makes all shipments for the order free
|
1297
1576
|
name: Free shipping
|
1298
1577
|
promotion_actions: Actions
|
1578
|
+
promotion_already_used: You can not destroy promotion that was already applied
|
1299
1579
|
promotion_category: Promotion Category
|
1580
|
+
promotion_cloned: Promotion has been cloned
|
1300
1581
|
promotion_form:
|
1301
1582
|
match_policies:
|
1302
1583
|
all: Match all of these rules
|
1303
1584
|
any: Match any of these rules
|
1304
|
-
promotion_label:
|
1585
|
+
promotion_label: Promotion (%{name})
|
1586
|
+
promotion_not_cloned: 'Promotion has not been cloned. Reason: %{error}'
|
1305
1587
|
promotion_rule: Promotion Rule
|
1306
1588
|
promotion_rule_types:
|
1307
1589
|
country:
|
1308
|
-
description:
|
1590
|
+
description: Limit to orders with shipping address in a specific country
|
1309
1591
|
name: Country
|
1592
|
+
currency:
|
1593
|
+
description: Limit to orders in a specific currency
|
1594
|
+
name: Currency
|
1310
1595
|
first_order:
|
1311
1596
|
description: Must be the customer's first order
|
1312
1597
|
name: First order
|
@@ -1317,22 +1602,23 @@ en:
|
|
1317
1602
|
description: Only One Use Per User
|
1318
1603
|
name: One Use Per User
|
1319
1604
|
option_value:
|
1320
|
-
description: Order includes
|
1605
|
+
description: Order includes products with matching option value(s)
|
1321
1606
|
name: Option Value(s)
|
1322
1607
|
product:
|
1323
1608
|
description: Order includes specified product(s)
|
1324
1609
|
name: Product(s)
|
1610
|
+
taxon:
|
1611
|
+
description: Order includes products with specified taxon(s)
|
1612
|
+
name: Taxon(s)
|
1325
1613
|
user:
|
1326
|
-
description: Available only to the specified
|
1614
|
+
description: Available only to the specified customers
|
1327
1615
|
name: User
|
1328
1616
|
user_logged_in:
|
1329
1617
|
description: Available only to logged in users
|
1330
1618
|
name: User Logged In
|
1331
|
-
taxon:
|
1332
|
-
description: Order includes products with specified taxon(s)
|
1333
|
-
name: Taxon(s)
|
1334
|
-
promotions: Promotions
|
1335
1619
|
promotion_uses: Promotion uses
|
1620
|
+
promotionable: Promotable
|
1621
|
+
promotions: Promotions
|
1336
1622
|
propagate_all_variants: Propagate all variants
|
1337
1623
|
properties: Properties
|
1338
1624
|
property: Property
|
@@ -1340,13 +1626,17 @@ en:
|
|
1340
1626
|
prototypes: Prototypes
|
1341
1627
|
provider: Provider
|
1342
1628
|
provider_settings_warning: If you are changing the provider type, you must save first before you can edit the provider settings
|
1629
|
+
published_at: Published at
|
1343
1630
|
purchased_quantity: Purchased Quantity
|
1344
1631
|
qty: Qty
|
1345
1632
|
quantity: Quantity
|
1346
1633
|
quantity_returned: Quantity Returned
|
1347
1634
|
quantity_shipped: Quantity Shipped
|
1635
|
+
query: Query
|
1348
1636
|
quick_search: Quick search..
|
1349
1637
|
rate: Rate
|
1638
|
+
read_less: Read less
|
1639
|
+
read_more: Read more
|
1350
1640
|
reason: Reason
|
1351
1641
|
receive: receive
|
1352
1642
|
receive_stock: Receive Stock
|
@@ -1355,46 +1645,71 @@ en:
|
|
1355
1645
|
reference: Reference
|
1356
1646
|
reference_contains: Reference Contains
|
1357
1647
|
refund: Refund
|
1648
|
+
refund_amount: Refund Amount
|
1649
|
+
refund_amount_must_be_greater_than_zero: Refund amount must be greater than zero
|
1358
1650
|
refund_reasons: Refund Reasons
|
1359
1651
|
refunded_amount: Refunded Amount
|
1360
1652
|
refunds: Refunds
|
1361
|
-
refund_amount_must_be_greater_than_zero: Refund amount must be greater than zero
|
1362
1653
|
register: Register
|
1363
1654
|
registration: Registration
|
1655
|
+
regular_price: Regular price
|
1364
1656
|
reimburse: Reimburse
|
1365
1657
|
reimbursed: Reimbursed
|
1366
1658
|
reimbursement: Reimbursement
|
1367
|
-
|
1659
|
+
reimbursement_mailer:
|
1660
|
+
reimbursement_email:
|
1661
|
+
days_to_send: You have %{days} days to send back any items awaiting exchange.
|
1662
|
+
dear_customer: Dear %{name},
|
1663
|
+
exchange_summary: Exchange Summary
|
1664
|
+
for: for
|
1665
|
+
instructions: Your reimbursement has been processed.
|
1666
|
+
refund_summary: Refund Summary
|
1667
|
+
store_team: "%{store_name} Team"
|
1668
|
+
subject: Reimbursement Notification
|
1669
|
+
thanks: Thank you for your business.
|
1670
|
+
total_refunded: 'Total refunded: %{total}'
|
1671
|
+
reimbursement_perform_failed: 'Reimbursement could not be performed. Error: %{error}'
|
1368
1672
|
reimbursement_status: Reimbursement status
|
1369
1673
|
reimbursement_type: Reimbursement type
|
1370
1674
|
reimbursement_type_override: Reimbursement Type Override
|
1371
1675
|
reimbursement_types: Reimbursement Types
|
1372
1676
|
reimbursements: Reimbursements
|
1373
1677
|
reject: Reject
|
1678
|
+
reject_reason: Reject Reason
|
1374
1679
|
rejected: Rejected
|
1375
1680
|
remember_me: Remember me
|
1376
1681
|
remove: Remove
|
1682
|
+
remove_condition: Remove condition
|
1377
1683
|
remove_image: Remove Image
|
1378
1684
|
rename: Rename
|
1379
1685
|
report: Report
|
1686
|
+
report_mailer:
|
1687
|
+
greeting: Hi %{user_name},
|
1688
|
+
report_done:
|
1689
|
+
message: Please use the link below to download it.
|
1690
|
+
subject: Your report %{report_name} is ready
|
1691
|
+
thanks: Thank you,
|
1692
|
+
report_names:
|
1693
|
+
products_performance: Products performance
|
1694
|
+
sales_total: Sales total
|
1380
1695
|
reports: Reports
|
1381
|
-
required:
|
1696
|
+
required: "*"
|
1382
1697
|
required_fields: required fields
|
1383
1698
|
resellable: Resellable
|
1384
1699
|
resend: Resend
|
1385
1700
|
reset_password: Reset my password
|
1386
1701
|
response_code: Response Code
|
1702
|
+
restore_defaults: Restore defaults
|
1387
1703
|
resume: resume
|
1388
1704
|
resumed: Resumed
|
1389
1705
|
return: return
|
1390
|
-
returns: Returns
|
1391
1706
|
return_authorization: Return Authorization
|
1707
|
+
return_authorization_canceled: Return authorization canceled
|
1392
1708
|
return_authorization_reasons: Return Authorization Reasons
|
1393
1709
|
return_authorization_states:
|
1394
1710
|
authorized: Authorized
|
1395
1711
|
canceled: Canceled
|
1396
1712
|
return_authorization_updated: Return authorization updated
|
1397
|
-
return_authorization_canceled: Return authorization canceled
|
1398
1713
|
return_authorizations: Return Authorizations
|
1399
1714
|
return_item_inventory_unit_ineligible: Return item's inventory unit must be shipped
|
1400
1715
|
return_item_inventory_unit_reimbursed: Return item's inventory unit is already reimbursed
|
@@ -1403,21 +1718,11 @@ en:
|
|
1403
1718
|
return_item_time_period_ineligible: Return item is outside the eligible time period
|
1404
1719
|
return_items: Return Items
|
1405
1720
|
return_items_cannot_be_associated_with_multiple_orders: Return items cannot be associated with multiple orders.
|
1406
|
-
reimbursement_mailer:
|
1407
|
-
reimbursement_email:
|
1408
|
-
store_team: '%{store_name} Team'
|
1409
|
-
days_to_send: ! 'You have %{days} days to send back any items awaiting exchange.'
|
1410
|
-
dear_customer: Dear %{name},
|
1411
|
-
exchange_summary: Exchange Summary
|
1412
|
-
for: for
|
1413
|
-
instructions: Your reimbursement has been processed.
|
1414
|
-
refund_summary: Refund Summary
|
1415
|
-
subject: Reimbursement Notification
|
1416
|
-
total_refunded: ! 'Total refunded: %{total}'
|
1417
|
-
thanks: Thank you for your business.
|
1418
1721
|
return_number: Return Number
|
1419
1722
|
return_quantity: Return Quantity
|
1420
1723
|
returned: Returned
|
1724
|
+
returns: Returns
|
1725
|
+
returns_policy: Returns Policy
|
1421
1726
|
review: Review
|
1422
1727
|
risk: Risk
|
1423
1728
|
risk_analysis: Risk Analysis
|
@@ -1429,40 +1734,55 @@ en:
|
|
1429
1734
|
roles: Roles
|
1430
1735
|
rules: Rules
|
1431
1736
|
safe: Safe
|
1737
|
+
sale: Sale
|
1738
|
+
sale_price: Sale price
|
1432
1739
|
sales_total: Sales Total
|
1433
1740
|
sales_total_description: Sales Total For All Orders
|
1434
1741
|
sales_totals: Sales Totals
|
1742
|
+
same_as_shipping_address: Same as shipping address
|
1435
1743
|
save_and_continue: Save and Continue
|
1744
|
+
save_changes: Save changes
|
1436
1745
|
save_my_address: Save my address
|
1437
1746
|
saving: Saving
|
1438
1747
|
say_no: 'No'
|
1439
1748
|
say_yes: 'Yes'
|
1440
1749
|
scope: Scope
|
1441
|
-
|
1442
|
-
shipping:
|
1443
|
-
categories:
|
1444
|
-
default: Default
|
1445
|
-
digital: Digital
|
1750
|
+
scopes: Scopes
|
1446
1751
|
search: Search
|
1752
|
+
search_all: Search all
|
1447
1753
|
search_by: 'Search by:'
|
1754
|
+
search_engine_listing: Search engine listing
|
1448
1755
|
search_order_number: Order Number
|
1449
1756
|
search_results: Search results for '%{keywords}'
|
1757
|
+
search_results_for: Search results for %{query}
|
1450
1758
|
searching: Searching
|
1451
1759
|
secure_connection_type: Secure Connection Type
|
1760
|
+
security: Security
|
1452
1761
|
security_settings: Security Settings
|
1762
|
+
seed:
|
1763
|
+
shipping:
|
1764
|
+
categories:
|
1765
|
+
default: Default
|
1766
|
+
digital: Digital
|
1453
1767
|
select: Select
|
1454
|
-
select_from_prototype: Select From Prototype
|
1455
1768
|
select_a_date: Select a date
|
1456
1769
|
select_a_date_range: Select a date range
|
1457
1770
|
select_a_return_authorization_reason: Select a reason for the return authorization
|
1458
1771
|
select_a_stock_location: Select a stock location
|
1459
1772
|
select_a_store_credit_reason: Select a reason for the store credit
|
1460
1773
|
select_an_option: Select an option
|
1774
|
+
select_existing_address: Select existing address
|
1775
|
+
select_from_prototype: Select From Prototype
|
1461
1776
|
select_stock: Select stock
|
1462
1777
|
select_stores: Select Store(s)
|
1463
|
-
|
1778
|
+
select_user: Select customer
|
1779
|
+
selected_quantity_not_available: selected of %{item} is not available.
|
1464
1780
|
send_copy_of_all_mails_to: Send Copy of All Mails To
|
1465
1781
|
send_mails_as: Send Mails As
|
1782
|
+
send_message: Send message
|
1783
|
+
send_payment_link: Send payment link
|
1784
|
+
send_payment_link_title: Send payment link to the customer by email. They will be able to complete the payment later.
|
1785
|
+
send_us_a_message: Send us a message
|
1466
1786
|
seo: SEO
|
1467
1787
|
seo_robots: SEO Robots
|
1468
1788
|
seo_title: SEO Title
|
@@ -1470,35 +1790,38 @@ en:
|
|
1470
1790
|
server_error: The server returned an error
|
1471
1791
|
settings: Settings
|
1472
1792
|
ship: Ship
|
1473
|
-
ship_to: "Shipping to:"
|
1474
1793
|
ship_address: Ship Address
|
1794
|
+
ship_to: 'Shipping to:'
|
1475
1795
|
ship_total: Ship Total
|
1476
1796
|
shipment: Shipment
|
1477
|
-
shipment_adjustments:
|
1478
|
-
shipment_details:
|
1797
|
+
shipment_adjustments: Shipment adjustments
|
1798
|
+
shipment_details: From %{stock_location} via %{shipping_method}
|
1479
1799
|
shipment_mailer:
|
1480
1800
|
shipped_email:
|
1481
|
-
store_team: '%{store_name} Team'
|
1482
1801
|
dear_customer: Dear %{name},
|
1483
1802
|
instructions: Your order %{number} has been shipped
|
1484
1803
|
shipment_summary: Shipment Summary for order
|
1485
|
-
shipping_method:
|
1804
|
+
shipping_method: 'Shipping method: %{shipping_method}'
|
1805
|
+
store_team: "%{store_name} Team"
|
1486
1806
|
subject: Shipment Notification
|
1487
1807
|
thanks: Thank you for your business.
|
1488
|
-
track_information:
|
1489
|
-
track_link:
|
1808
|
+
track_information: 'Tracking Information: %{tracking}'
|
1809
|
+
track_link: 'Tracking Link: %{url}'
|
1810
|
+
shipment_refunded_message: You will receive a refund in the next few days.
|
1490
1811
|
shipment_state: Shipment State
|
1491
1812
|
shipment_states:
|
1492
|
-
backorder:
|
1493
|
-
canceled:
|
1494
|
-
partial:
|
1495
|
-
pending:
|
1496
|
-
ready:
|
1497
|
-
shipped:
|
1498
|
-
|
1499
|
-
shipment_transfer_error:
|
1813
|
+
backorder: Backorder
|
1814
|
+
canceled: Canceled
|
1815
|
+
partial: Partial
|
1816
|
+
pending: Pending
|
1817
|
+
ready: Ready
|
1818
|
+
shipped: Shipped
|
1819
|
+
shipment_successfully_shipped: Shipment successfully shipped
|
1820
|
+
shipment_transfer_error: There was an error transferring variants
|
1821
|
+
shipment_transfer_success: Variants successfully transferred
|
1500
1822
|
shipments: Shipments
|
1501
1823
|
shipped: Shipped
|
1824
|
+
shipped_from: Shipped from
|
1502
1825
|
shipping: Shipping
|
1503
1826
|
shipping_address: Shipping Address
|
1504
1827
|
shipping_categories: Shipping Categories
|
@@ -1509,42 +1832,60 @@ en:
|
|
1509
1832
|
shipping_instructions: Shipping Instructions
|
1510
1833
|
shipping_method: Shipping Method
|
1511
1834
|
shipping_methods: Shipping Methods
|
1835
|
+
shipping_not_available: Shipping not available
|
1836
|
+
shipping_policy: Shipping Policy
|
1512
1837
|
shipping_price_sack: Price sack
|
1513
1838
|
shipping_rates:
|
1514
1839
|
display_price:
|
1515
|
-
including_tax: "%{price} (incl. %{tax_amount} %{tax_rate_name})"
|
1516
1840
|
excluding_tax: "%{price} (+ %{tax_amount} %{tax_rate_name})"
|
1841
|
+
including_tax: "%{price} (incl. %{tax_amount} %{tax_rate_name})"
|
1517
1842
|
shipping_total: Shipping total
|
1843
|
+
shipping_zone: Shipping Zone
|
1844
|
+
shop_all: Shop All
|
1518
1845
|
shop_by_taxonomy: Shop by %{taxonomy}
|
1519
1846
|
shopping_cart: Shopping Cart
|
1520
1847
|
show: Show
|
1521
1848
|
show_active: Show Active
|
1849
|
+
show_all: Show all
|
1522
1850
|
show_deleted: Show Deleted
|
1851
|
+
show_details: Show details
|
1523
1852
|
show_discontinued: Show Discontinued
|
1853
|
+
show_less: Show less
|
1524
1854
|
show_only_complete_orders: Only show complete orders
|
1525
1855
|
show_only_considered_risky: Only show risky orders
|
1526
1856
|
show_property: Show Property
|
1527
1857
|
show_rate_in_label: Show rate in label
|
1858
|
+
show_report: Show report
|
1528
1859
|
show_store_selector:
|
1529
|
-
short: Show Store selector
|
1530
1860
|
long: Display the Store selector in the main nav bar of Storefront and allow users to change Store and Currency
|
1861
|
+
short: Show Store selector
|
1862
|
+
sign_out: Sign out
|
1531
1863
|
sign_up: Sign Up
|
1864
|
+
site_name: Site name
|
1865
|
+
size: Size
|
1532
1866
|
sku: SKU
|
1533
1867
|
skus: SKUs
|
1534
1868
|
slug: Slug
|
1535
|
-
source: Source
|
1536
1869
|
social: Social
|
1870
|
+
social_media: Social media
|
1871
|
+
sold_out: Sold out
|
1872
|
+
something_went_wrong: Something went wrong
|
1873
|
+
sort_by: Sort by
|
1874
|
+
source: Source
|
1537
1875
|
special_instructions: Special Instructions
|
1538
1876
|
split: Split
|
1539
1877
|
spree_gateway_error_flash_for_checkout: There was a problem with your payment information. Please check your information and try again.
|
1878
|
+
square_image: Square image
|
1540
1879
|
ssl:
|
1541
|
-
change_protocol:
|
1880
|
+
change_protocol: Please switch to using HTTP (rather than HTTPS) and retry this request.
|
1881
|
+
standards_and_formats: Standards and formats
|
1542
1882
|
start: Start
|
1883
|
+
start_typing_to_search_for_products: Start typing to search for products
|
1884
|
+
start_typing_to_search_for_variants: Start typing to search for variants
|
1543
1885
|
starting_from: Starts at
|
1544
1886
|
state: State
|
1545
1887
|
state_based: State Based
|
1546
1888
|
state_changes: State Changes
|
1547
|
-
states: States
|
1548
1889
|
state_machine_states:
|
1549
1890
|
accepted: Accepted
|
1550
1891
|
address: Address
|
@@ -1552,22 +1893,22 @@ en:
|
|
1552
1893
|
awaiting: Awaiting
|
1553
1894
|
awaiting_return: Awaiting return
|
1554
1895
|
backordered: Back ordered
|
1555
|
-
cart: Cart
|
1556
1896
|
canceled: Canceled
|
1897
|
+
cart: Cart
|
1557
1898
|
checkout: Checkout
|
1558
|
-
|
1899
|
+
closed: Closed
|
1559
1900
|
complete: Complete
|
1560
1901
|
completed: Completed
|
1561
|
-
|
1902
|
+
confirm: Confirm
|
1562
1903
|
delivery: Delivery
|
1563
1904
|
errored: Errored
|
1564
1905
|
failed: Failed
|
1565
1906
|
given_to_customer: Given to customer
|
1566
1907
|
invalid: Invalid
|
1567
1908
|
manual_intervention_required: Manual intervention required
|
1909
|
+
on_hand: On hand
|
1568
1910
|
open: Open
|
1569
1911
|
order: Order
|
1570
|
-
on_hand: On hand
|
1571
1912
|
payment: Payment
|
1572
1913
|
pending: Pending
|
1573
1914
|
processing: Processing
|
@@ -1578,10 +1919,11 @@ en:
|
|
1578
1919
|
shipment: Shipment
|
1579
1920
|
shipped: Shipped
|
1580
1921
|
void: Void
|
1922
|
+
states: States
|
1581
1923
|
states_required: States Required
|
1582
1924
|
status: Status
|
1583
1925
|
stock: Stock
|
1584
|
-
|
1926
|
+
stock_items: Stock Items
|
1585
1927
|
stock_location: Stock Location
|
1586
1928
|
stock_location_info: Stock location info
|
1587
1929
|
stock_locations: Stock Locations
|
@@ -1591,93 +1933,99 @@ en:
|
|
1591
1933
|
stock_movements: Stock Movements
|
1592
1934
|
stock_movements_for_stock_location: Stock Movements for %{stock_location_name}
|
1593
1935
|
stock_successfully_transferred: Stock was successfully transferred between locations.
|
1594
|
-
stock_transfer_name: Stock Transfer
|
1595
1936
|
stock_transfer:
|
1596
1937
|
errors:
|
1597
|
-
must_have_variant: You must add at least one variant
|
1598
|
-
|
1938
|
+
must_have_variant: You must add at least one variant
|
1939
|
+
same_location: cannot be the same as the destination location
|
1940
|
+
variants_unavailable: Some variants are not available on %{stock}
|
1941
|
+
stock_transfer_name: Stock Transfer
|
1599
1942
|
stock_transfers: Stock Transfers
|
1600
1943
|
stop: Stop
|
1601
1944
|
store: Store
|
1602
|
-
store_errors:
|
1603
|
-
unable_to_create: Unable to create store.
|
1604
|
-
unable_to_update: Unable to update store.
|
1605
|
-
unable_to_delete: Unable to delete store.
|
1606
|
-
store_form:
|
1607
|
-
code_help: "Store unique identifier, which is an abbreviated version of the store’s name (used as the layout directory name, and also helpful for separating templates by store)"
|
1608
|
-
checkout_zone_help: "Selecting zone will limit to which Countries or States products are shipped.
|
1609
|
-
For more information <a href='https://guides.spreecommerce.org/user/configuration/configuring_geography.html#zones' target='_blank' class='alert-link'>please see documentation</a>"
|
1610
|
-
locales_help: "Install <a href='https://github.com/spree-contrib/spree_i18n' target='_blank' class='alert-link'>Spree I18n extension</a> to add more locales"
|
1611
|
-
social_help: "If you want to link to your social accounts in the footer part of your website please fill below fields"
|
1612
|
-
default_country_help: "This is the Country that will be pre-selected on the Checkout Address form"
|
1613
|
-
footer_help: "This content is visible in the footer section of your Store"
|
1614
|
-
mail_from_address_help: "This is the email which will be the sender of all your Store emails (Order Confirmation, Shipment notification etc)"
|
1615
|
-
customer_support_email_help: "This email is visible to your Store visitors in the Footer section"
|
1616
|
-
new_order_notifications_email_help: "If you want to receive an email notification every time someone places an Order please provide an email address for that notification to be sent to"
|
1617
|
-
seo_robots: "Please check <a href='https://developers.google.com/search/reference/robots_meta_tag' target='_blank'>this page for more help</a>"
|
1618
|
-
stores: Stores
|
1619
|
-
store_credit_name: Store Credit
|
1620
1945
|
store_credit:
|
1621
|
-
credit: "Credit"
|
1622
|
-
authorized: "Authorized"
|
1623
|
-
captured: "Used"
|
1624
|
-
allocated: "Added"
|
1625
|
-
apply: Apply
|
1626
|
-
remove: Remove
|
1627
|
-
applicable_amount: "<strong>%{amount}</strong> in store credit will be applied to this order."
|
1628
|
-
available_amount: "You have <strong>%{amount}</strong> in Store Credit available!"
|
1629
|
-
remaining_amount: "You have <strong>%{amount}</strong> remaining in your account's Store Credit."
|
1630
1946
|
additional_payment_needed: Select another payment method for the remaining <strong>%{amount}</strong>.
|
1947
|
+
allocated: Added
|
1948
|
+
applicable_amount: "<strong>%{amount}</strong> in store credit will be applied to this order."
|
1949
|
+
apply: Apply
|
1950
|
+
authorized: Authorized
|
1951
|
+
available_amount: You have <strong>%{amount}</strong> in Store Credit available!
|
1952
|
+
captured: Used
|
1953
|
+
credit: Credit
|
1631
1954
|
errors:
|
1632
1955
|
cannot_change_used_store_credit: You cannot change a store credit that has already been used
|
1633
1956
|
unable_to_create: Unable to create store credit
|
1634
1957
|
unable_to_delete: Unable to delete store credit
|
1635
1958
|
unable_to_fund: Unable to pay for order using store credits
|
1636
1959
|
unable_to_update: Unable to update store credit
|
1637
|
-
|
1960
|
+
remaining: Remaining
|
1961
|
+
remaining_amount: You have <strong>%{amount}</strong> remaining in your account's Store Credit.
|
1962
|
+
remove: Remove
|
1638
1963
|
store_credit_categories: Store Credit Categories
|
1964
|
+
store_credit_name: Store Credit
|
1639
1965
|
store_credit_payment_method:
|
1640
|
-
|
1641
|
-
|
1642
|
-
|
1643
|
-
|
1644
|
-
|
1645
|
-
|
1646
|
-
|
1647
|
-
unable_to_find_for_action:
|
1648
|
-
|
1649
|
-
|
1966
|
+
currency_mismatch: Store credit currency does not match order currency
|
1967
|
+
insufficient_authorized_amount: Unable to capture more than authorized amount
|
1968
|
+
insufficient_funds: Store credit amount remaining is not sufficient
|
1969
|
+
select_one_store_credit: Select store credit to go towards remaining balance
|
1970
|
+
successful_action: Successful store credit %{action}
|
1971
|
+
unable_to_credit: 'Unable to credit code: %{auth_code}'
|
1972
|
+
unable_to_find: Could not find store credit
|
1973
|
+
unable_to_find_for_action: 'Could not find store credit for auth code: %{auth_code} for action: %{action}'
|
1974
|
+
unable_to_void: 'Unable to void code: %{auth_code}'
|
1975
|
+
store_credits: Store Credits
|
1650
1976
|
store_default: Default store
|
1651
|
-
|
1977
|
+
store_details: Store details
|
1978
|
+
store_errors:
|
1979
|
+
unable_to_create: Unable to create store.
|
1980
|
+
unable_to_delete: Unable to delete store.
|
1981
|
+
unable_to_update: Unable to update store.
|
1982
|
+
store_form:
|
1983
|
+
checkout_zone_help: Selecting zone will limit to which Countries or States products are shipped. For more information <a href='https://guides.spreecommerce.org/user/configuration/configuring_geography.html#zones' target='_blank' class='alert-link'>please see documentation</a>
|
1984
|
+
code_help: Store unique identifier, which is an abbreviated version of the store’s name (used as the layout directory name, and also helpful for separating templates by store)
|
1985
|
+
customer_support_email_help: This email is visible to your Store visitors in the Footer section
|
1986
|
+
default_country_help: This is the Country that will be pre-selected on the Checkout Address form
|
1987
|
+
footer_help: This content is visible in the footer section of your Store
|
1988
|
+
locales_help: Install <a href='https://github.com/spree-contrib/spree_i18n' target='_blank' class='alert-link'>Spree I18n extension</a> to add more locales
|
1989
|
+
mail_from_address_help: This is the email which will be the sender of all your Store emails (Order Confirmation, Shipment notification etc)
|
1990
|
+
new_order_notifications_email_help: If you want to receive an email notification every time someone places an Order please provide an email address for that notification to be sent to
|
1991
|
+
seo_robots: Please check <a href='https://developers.google.com/search/reference/robots_meta_tag' target='_blank'>this page for more help</a>
|
1992
|
+
social_help: If you want to link to your social accounts in the footer part of your website please fill below fields
|
1993
|
+
store_name: Store name
|
1652
1994
|
store_not_set_as_default: Couldn't set store %{store} as a default store
|
1653
1995
|
store_set_as_default: Store %{store} is now a default store
|
1996
|
+
store_set_default_button: Set as default
|
1997
|
+
stores: Stores
|
1654
1998
|
street_address: Street Address
|
1655
1999
|
street_address_2: Street Address (cont'd)
|
2000
|
+
subscribed: Subscribed
|
1656
2001
|
subtotal: Subtotal
|
1657
2002
|
subtract: Subtract
|
1658
2003
|
success: Success
|
1659
|
-
successfully_created:
|
1660
|
-
successfully_refunded:
|
1661
|
-
successfully_removed:
|
1662
|
-
successfully_updated:
|
2004
|
+
successfully_created: "%{resource} has been successfully created!"
|
2005
|
+
successfully_refunded: "%{resource} has been successfully refunded!"
|
2006
|
+
successfully_removed: "%{resource} has been successfully removed!"
|
2007
|
+
successfully_updated: "%{resource} has been successfully updated!"
|
1663
2008
|
summary: Summary
|
1664
2009
|
support: Support
|
1665
2010
|
supported_currencies: Supported Currencies
|
1666
2011
|
supported_currencies_long: A comma separated list of supported currencies
|
1667
2012
|
supported_locales: Supported Locales
|
2013
|
+
switch_store: Switch store
|
2014
|
+
switch_team: Switch team
|
2015
|
+
tags: Tags
|
2016
|
+
tags_placeholder: Add Tags
|
1668
2017
|
tax: Tax
|
1669
|
-
tax_included: "Tax (incl.)"
|
1670
2018
|
tax_categories: Tax Categories
|
1671
2019
|
tax_category: Tax Category
|
1672
2020
|
tax_code: Tax Code
|
2021
|
+
tax_included: Tax (incl.)
|
1673
2022
|
tax_rate_amount_explanation: Tax rates are a decimal amount to aid in calculations, (i.e. if the tax rate is 5% then enter 0.05)
|
1674
2023
|
tax_rates: Tax Rates
|
2024
|
+
taxes: Taxes
|
1675
2025
|
taxon: Taxon
|
1676
2026
|
taxon_edit: Edit Taxon
|
1677
|
-
taxon_placeholder: Add a Taxon
|
1678
|
-
tags: Tags
|
1679
|
-
tags_placeholder: Add Tags
|
1680
2027
|
taxon_missing_alt: Category banner description
|
2028
|
+
taxon_placeholder: Add a Taxon
|
1681
2029
|
taxon_rule:
|
1682
2030
|
choose_taxons: Choose taxons
|
1683
2031
|
label: Order must contain x amount of these taxons
|
@@ -1687,10 +2035,12 @@ en:
|
|
1687
2035
|
taxonomy: Taxonomy
|
1688
2036
|
taxonomy_brands_name: Brands
|
1689
2037
|
taxonomy_categories_name: Categories
|
2038
|
+
taxonomy_collections_name: Collections
|
1690
2039
|
taxonomy_edit: Edit taxonomy
|
1691
2040
|
taxonomy_tree_error: The requested change has not been accepted and the tree has been returned to its previous state, please try again.
|
1692
|
-
taxonomy_tree_instruction:
|
2041
|
+
taxonomy_tree_instruction: "* Right click (or double tap on iOS device) a child in the tree to access the menu for adding, deleting or sorting a child."
|
1693
2042
|
taxons: Taxons
|
2043
|
+
terms_of_service: Terms of Service
|
1694
2044
|
test: Test
|
1695
2045
|
test_mailer:
|
1696
2046
|
test_email:
|
@@ -1698,44 +2048,84 @@ en:
|
|
1698
2048
|
message: If you have received this email, then your email settings are correct.
|
1699
2049
|
subject: Test Mail
|
1700
2050
|
test_mode: Test Mode
|
1701
|
-
|
2051
|
+
text_alignment: Text alignment
|
1702
2052
|
thank_you_for_your_order: Thank you for your business. Please print out a copy of this confirmation page for your records.
|
1703
|
-
|
2053
|
+
theme: Theme
|
2054
|
+
theme_copied: Theme has been successfully copied.
|
2055
|
+
theme_duplicating: Theme is still duplicating
|
2056
|
+
theme_is_now_live: Theme is now live
|
2057
|
+
theme_not_copied: 'Theme could not be copied with errors: %{error}'
|
2058
|
+
theme_settings:
|
2059
|
+
accent_color: Accent color
|
2060
|
+
background_color: Background color
|
2061
|
+
border_color: Border color
|
2062
|
+
brand_color: Brand color
|
2063
|
+
button_border_color: Button border color
|
2064
|
+
button_text_color: Button text color
|
2065
|
+
danger_color: Danger color
|
2066
|
+
input_text_color: Input text color
|
2067
|
+
neutral_color: Neutral color
|
2068
|
+
success_color: Success color
|
2069
|
+
text_color: Text color
|
2070
|
+
themes: Themes
|
2071
|
+
there_are_no_items_for_this_order: There are no items for this order
|
1704
2072
|
there_were_problems_with_the_following_fields: There were problems with the following fields
|
1705
2073
|
this_order_has_already_received_a_refund: This order has already received a refund
|
1706
2074
|
thumbnail: Thumbnail
|
1707
|
-
tiers: Tiers
|
1708
2075
|
tiered_flat_rate: Tiered Flat Rate
|
1709
2076
|
tiered_percent: Tiered Percent
|
2077
|
+
tiers: Tiers
|
1710
2078
|
time: Time
|
2079
|
+
timezone: Timezone
|
2080
|
+
title: Title
|
2081
|
+
title_link: Title link
|
1711
2082
|
to_add_variants_you_must_first_define: To add variants, you must first define
|
2083
|
+
toggle_menu: Toggle menu
|
2084
|
+
top_suggestions: Top suggestions
|
1712
2085
|
total: Total
|
1713
2086
|
total_per_item: Total per item
|
1714
2087
|
total_pre_tax_refund: Total Pre-Tax Refund
|
1715
2088
|
total_price: Total price
|
1716
2089
|
total_sales: Total Sales
|
1717
2090
|
track_inventory: Track Inventory
|
2091
|
+
track_items: Track items
|
2092
|
+
track_quantity: Track quantity
|
1718
2093
|
tracking: Tracking
|
1719
2094
|
tracking_number: Tracking Number
|
1720
2095
|
tracking_url: Tracking URL
|
1721
2096
|
tracking_url_placeholder: e.g. http://quickship.com/package?num=:tracking
|
1722
2097
|
transaction_id: Transaction ID
|
2098
|
+
transaction_id_help: This is the ID of the transaction that was created in the 3rd party payment gateway.
|
1723
2099
|
transfer_from_location: Transfer From
|
1724
2100
|
transfer_stock: Transfer Stock
|
1725
2101
|
transfer_to_location: Transfer To
|
1726
2102
|
translations: Translations
|
2103
|
+
translations_for: "%{resource_name} translations"
|
1727
2104
|
tree: Tree
|
2105
|
+
true_label: 'TRUE'
|
2106
|
+
twitter: Twitter
|
1728
2107
|
type: Type
|
1729
2108
|
type_to_search: Type to search
|
1730
|
-
twitter: Twitter
|
1731
2109
|
unable_to_connect_to_gateway: Unable to connect to gateway.
|
1732
2110
|
unable_to_create_reimbursements: Unable to create reimbursements because there are items pending manual intervention.
|
1733
2111
|
under_price: Under %{price}
|
2112
|
+
unit: Unit
|
2113
|
+
unit_system: Unit system
|
2114
|
+
unit_systems:
|
2115
|
+
imperial_system: Imperial system
|
2116
|
+
metric: metric
|
2117
|
+
metric_system: Metric system
|
1734
2118
|
unlock: Unlock
|
1735
2119
|
unrecognized_card_type: Unrecognized card type
|
1736
2120
|
unshippable_items: Unshippable Items
|
1737
2121
|
update: Update
|
2122
|
+
update_address: Update address
|
2123
|
+
update_billing_address: Update billing address
|
2124
|
+
update_contact_information: Update contact information
|
2125
|
+
update_shipping_address: Update shipping address
|
2126
|
+
updated: Updated
|
1738
2127
|
updating: Updating
|
2128
|
+
upload_image: Upload image
|
1739
2129
|
url: URL
|
1740
2130
|
usage_limit: Usage Limit
|
1741
2131
|
use_app_default: Use App Default
|
@@ -1744,34 +2134,54 @@ en:
|
|
1744
2134
|
use_new_cc: Use a new card
|
1745
2135
|
use_new_cc_or_payment_method: Use a new card / payment method
|
1746
2136
|
use_s3: Use Amazon S3 For Images
|
2137
|
+
use_shipping_address: Use Shipping Address
|
1747
2138
|
used: Used
|
1748
2139
|
user: User
|
2140
|
+
user_not_found: User not found
|
1749
2141
|
user_rule:
|
1750
|
-
choose_users:
|
2142
|
+
choose_users: 'Input the full email address of a registered customer(s) in the search field to whom this discount should apply:'
|
1751
2143
|
users: Users
|
1752
2144
|
validation:
|
1753
|
-
unpaid_amount_not_zero: "Amount was not fully reimbursed. Still due: %{amount}"
|
1754
2145
|
cannot_be_less_than_shipped_units: cannot be less than the number of shipped units.
|
1755
2146
|
cannot_destroy_line_item_as_inventory_units_have_shipped: Cannot destroy line item as some inventory units have shipped.
|
1756
2147
|
exceeds_available_stock: exceeds available stock. Please ensure line items have a valid quantity.
|
1757
2148
|
is_too_large: is too large -- stock on hand cannot cover requested quantity!
|
1758
2149
|
must_be_int: must be an integer
|
1759
2150
|
must_be_non_negative: must be a non-negative value
|
2151
|
+
unpaid_amount_not_zero: 'Amount was not fully reimbursed. Still due: %{amount}'
|
1760
2152
|
value: Value
|
1761
2153
|
variant: Variant
|
1762
2154
|
variant_placeholder: Choose a variant
|
1763
2155
|
variant_prices_search_placeholder: Search for SKU or variant name...
|
1764
2156
|
variants: Variants
|
2157
|
+
variants_count: Variants count
|
2158
|
+
vendor: Vendor
|
2159
|
+
vendors: Vendors
|
1765
2160
|
version: Version
|
2161
|
+
view: View
|
2162
|
+
view_all: View all
|
2163
|
+
view_full_details: View full details
|
2164
|
+
view_store: View store
|
2165
|
+
view_your_store: View your store
|
2166
|
+
visibility: Visibility
|
2167
|
+
visits: Visits
|
1766
2168
|
void: Void
|
2169
|
+
we_are_busy_updating: We're updating the %{store_name} homepage.
|
2170
|
+
we_are_busy_updating_page: We're busy updating this page.
|
1767
2171
|
we_will_be_back: We will be back.
|
1768
|
-
|
1769
|
-
we_are_busy_updating_page: "We're busy updating this page."
|
1770
|
-
please_check_back_soon: Please check back soon.
|
2172
|
+
webhooks: Webhooks
|
1771
2173
|
weight: Weight
|
2174
|
+
weight_unit: Weight unit
|
2175
|
+
weight_units:
|
2176
|
+
gram: Gram (g)
|
2177
|
+
kilogram: Kilogram (kg)
|
2178
|
+
ounce: Ounce (oz)
|
2179
|
+
pound: Pound (lb)
|
1772
2180
|
what_is_a_cvv: What is a (CVV) Credit Card Code?
|
1773
2181
|
what_is_this: What's This?
|
1774
2182
|
width: Width
|
2183
|
+
wishlist: Wishlist
|
2184
|
+
without_taxon: Without taxon
|
1775
2185
|
year: Year
|
1776
2186
|
you_have_no_orders_yet: You have no orders yet
|
1777
2187
|
your_cart_is_empty: Your cart is empty
|
@@ -1781,4 +2191,6 @@ en:
|
|
1781
2191
|
zipcode_required: Zip Code Required
|
1782
2192
|
zone: Zone
|
1783
2193
|
zones: Zones
|
1784
|
-
|
2194
|
+
views:
|
2195
|
+
pagination:
|
2196
|
+
truncate: Truncate
|