spree_core 5.5.3 → 5.6.0.rc1

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.
Files changed (133) hide show
  1. checksums.yaml +4 -4
  2. data/app/helpers/spree/base_helper.rb +12 -2
  3. data/app/helpers/spree/currency_helper.rb +1 -4
  4. data/app/helpers/spree/locale_helper.rb +18 -13
  5. data/app/helpers/spree/localized_names_helper.rb +25 -0
  6. data/app/mailers/spree/admin_user_mailer.rb +71 -0
  7. data/app/mailers/spree/base_mailer.rb +73 -11
  8. data/app/mailers/spree/export_mailer.rb +7 -7
  9. data/app/mailers/spree/import_mailer.rb +19 -0
  10. data/app/mailers/spree/invitation_mailer.rb +16 -11
  11. data/app/mailers/spree/report_mailer.rb +6 -6
  12. data/app/mailers/spree/webhook_mailer.rb +7 -6
  13. data/app/models/concerns/spree/admin_user_methods.rb +44 -0
  14. data/app/models/concerns/spree/legacy_multi_store_support.rb +48 -0
  15. data/app/models/concerns/spree/presentation_translatable.rb +39 -0
  16. data/app/models/concerns/spree/product_scopes.rb +21 -3
  17. data/app/models/concerns/spree/single_store_resource.rb +5 -0
  18. data/app/models/concerns/spree/store_scoped_resource.rb +10 -0
  19. data/app/models/concerns/spree/stores/markets.rb +9 -1
  20. data/app/models/concerns/spree/stores/setup.rb +37 -23
  21. data/app/models/concerns/spree/translatable_resource.rb +95 -5
  22. data/app/models/concerns/spree/user_methods.rb +27 -2
  23. data/app/models/spree/ability.rb +5 -4
  24. data/app/models/spree/allowed_origin.rb +31 -0
  25. data/app/models/spree/category.rb +12 -2
  26. data/app/models/spree/channel/gating.rb +67 -0
  27. data/app/models/spree/channel.rb +1 -0
  28. data/app/models/spree/classification.rb +12 -0
  29. data/app/models/spree/country.rb +22 -1
  30. data/app/models/spree/credit_card.rb +29 -0
  31. data/app/models/spree/currency.rb +47 -0
  32. data/app/models/spree/current.rb +12 -1
  33. data/app/models/spree/customer_group.rb +1 -0
  34. data/app/models/spree/export.rb +19 -0
  35. data/app/models/spree/exports/coupon_codes.rb +1 -2
  36. data/app/models/spree/import.rb +84 -1
  37. data/app/models/spree/import_row.rb +7 -1
  38. data/app/models/spree/imports/product_translations.rb +6 -0
  39. data/app/models/spree/locale.rb +104 -0
  40. data/app/models/spree/option_type.rb +11 -13
  41. data/app/models/spree/option_value.rb +5 -17
  42. data/app/models/spree/order.rb +19 -2
  43. data/app/models/spree/payment_method.rb +6 -5
  44. data/app/models/spree/policy.rb +2 -1
  45. data/app/models/spree/product.rb +23 -2
  46. data/app/models/spree/promotion/rules/channel.rb +37 -0
  47. data/app/models/spree/promotion/rules/market.rb +37 -0
  48. data/app/models/spree/promotion.rb +5 -3
  49. data/app/models/spree/promotion_handler/promotion_duplicator.rb +1 -1
  50. data/app/models/spree/role_user.rb +4 -0
  51. data/app/models/spree/search_provider/meilisearch.rb +22 -9
  52. data/app/models/spree/setup_task.rb +12 -0
  53. data/app/models/spree/setup_tasks.rb +86 -0
  54. data/app/models/spree/shipment.rb +38 -1
  55. data/app/models/spree/shipment_handler.rb +1 -1
  56. data/app/models/spree/stock/availability_validator.rb +1 -1
  57. data/app/models/spree/stock/quantifier.rb +21 -1
  58. data/app/models/spree/stock_item.rb +2 -1
  59. data/app/models/spree/stock_location.rb +4 -1
  60. data/app/models/spree/store.rb +45 -9
  61. data/app/models/spree/store_payment_method.rb +5 -1
  62. data/app/models/spree/store_promotion.rb +4 -0
  63. data/app/models/spree/taxon.rb +112 -9
  64. data/app/models/spree/taxonomy.rb +1 -1
  65. data/app/models/spree/translations/batch.rb +104 -0
  66. data/app/models/spree/variant.rb +29 -2
  67. data/app/presenters/spree/search_provider/product_presenter.rb +3 -0
  68. data/app/services/spree/carts/complete.rb +3 -0
  69. data/app/services/spree/fulfillments/create.rb +259 -0
  70. data/app/services/spree/locales/set_fallback_locale_for_store.rb +7 -1
  71. data/app/services/spree/locales.rb +52 -0
  72. data/app/services/spree/products/prepare_nested_attributes.rb +40 -12
  73. data/app/services/spree/shipments/update.rb +1 -1
  74. data/app/services/spree/stock_reservations/reserve.rb +4 -1
  75. data/app/services/spree/taxons/add_products.rb +3 -0
  76. data/app/services/spree/taxons/remove_products.rb +3 -0
  77. data/app/subscribers/spree/admin_user_email_subscriber.rb +29 -0
  78. data/app/subscribers/spree/import_email_subscriber.rb +26 -0
  79. data/app/views/layouts/spree/base_mailer.html.erb +14 -17
  80. data/app/views/spree/admin_user_mailer/confirmation_email.html.erb +7 -0
  81. data/app/views/spree/admin_user_mailer/password_reset_email.html.erb +8 -0
  82. data/app/views/spree/export_mailer/export_done.html.erb +6 -14
  83. data/app/views/spree/import_mailer/import_done.html.erb +12 -0
  84. data/app/views/spree/invitation_mailer/invitation_accepted.html.erb +4 -12
  85. data/app/views/spree/invitation_mailer/invitation_email.html.erb +11 -24
  86. data/app/views/spree/report_mailer/report_done.html.erb +6 -14
  87. data/app/views/spree/shared/_base_mailer_footer.html.erb +15 -8
  88. data/app/views/spree/shared/_base_mailer_header.html.erb +7 -5
  89. data/app/views/spree/shared/_base_mailer_stylesheets.html.erb +211 -273
  90. data/app/views/spree/shared/_mailer_button.html.erb +10 -0
  91. data/app/views/spree/shared/_mailer_hero.html.erb +12 -0
  92. data/app/views/spree/shared/_purchased_items_styles.html.erb +112 -0
  93. data/app/views/spree/webhook_mailer/endpoint_disabled.html.erb +39 -14
  94. data/config/initializers/spree_store_setup_tasks.rb +23 -0
  95. data/config/locales/en.yml +42 -992
  96. data/db/migrate/20260613000001_add_store_id_to_spree_role_users.rb +10 -0
  97. data/db/migrate/20260626000001_add_store_id_to_spree_taxons.rb +11 -0
  98. data/db/migrate/20260627000001_add_products_count_to_spree_taxons.rb +6 -0
  99. data/db/migrate/20260628000001_add_store_id_to_spree_promotions.rb +10 -0
  100. data/db/migrate/20260628000002_add_store_id_to_spree_payment_methods.rb +11 -0
  101. data/db/migrate/20260630000001_add_preorder_fields_to_spree_variants.rb +7 -0
  102. data/db/migrate/20260707000001_add_fingerprint_to_spree_credit_cards.rb +39 -0
  103. data/db/migrate/20260710000001_add_import_id_status_index_to_spree_import_rows.rb +7 -0
  104. data/db/migrate/20260711000001_add_preferences_to_spree_exports.rb +7 -0
  105. data/db/sample_data/promotions.rb +1 -1
  106. data/lib/generators/spree/authentication/dummy/templates/create_spree_admin_users.rb.tt +0 -1
  107. data/lib/mobility/plugins/store_based_fallbacks.rb +7 -5
  108. data/lib/spree/core/configuration.rb +1 -0
  109. data/lib/spree/core/controller_helpers/locale.rb +4 -1
  110. data/lib/spree/core/controller_helpers/strong_parameters.rb +1 -0
  111. data/lib/spree/core/dependencies.rb +3 -0
  112. data/lib/spree/core/engine.rb +24 -0
  113. data/lib/spree/core/preferences/preferable.rb +6 -1
  114. data/lib/spree/core/previews/admin_user_preview.rb +22 -0
  115. data/lib/spree/core/previews/export_preview.rb +37 -0
  116. data/lib/spree/core/previews/invitation_preview.rb +47 -0
  117. data/lib/spree/core/previews/preview_data.rb +52 -0
  118. data/lib/spree/core/previews/report_preview.rb +40 -0
  119. data/lib/spree/core/previews/webhook_preview.rb +34 -0
  120. data/lib/spree/core/version.rb +1 -1
  121. data/lib/spree/core.rb +22 -1
  122. data/lib/spree/permitted_attributes.rb +5 -4
  123. data/lib/spree/testing_support/factories/export_factory.rb +4 -0
  124. data/lib/spree/testing_support/factories/payment_method_factory.rb +1 -9
  125. data/lib/spree/testing_support/factories/promotion_factory.rb +1 -9
  126. data/lib/spree/testing_support/factories/promotion_rule_factory.rb +24 -0
  127. data/lib/spree/translations.rb +113 -0
  128. data/lib/spree/upgrades/5_5_to_5_6/manifest.yml +59 -0
  129. data/lib/tasks/role_users.rake +21 -0
  130. data/lib/tasks/single_store_associations.rake +65 -0
  131. data/lib/tasks/taxons.rake +62 -1
  132. metadata +47 -5
  133. data/app/models/spree/product/legacy_multi_store_support.rb +0 -40
@@ -633,178 +633,79 @@ en:
633
633
  spree:
634
634
  abbreviation: Abbreviation
635
635
  accept: Accept
636
- acceptance_errors: Acceptance errors
637
636
  acceptance_status: Acceptance status
638
637
  accepted: Accepted
639
638
  accepts_email_marketing: Accepts email marketing
640
639
  account: Account
641
- account_info: Account info
642
640
  action: Action
643
- actions:
644
- approve: Approve
645
- cancel: Cancel
646
- close: Close
647
- confirm: Confirm
648
- connect: Connect
649
- continue: Continue
650
- create: Create
651
- destroy: Delete
652
- discard: Discard
653
- disconnect: Disconnect
654
- edit: Edit
655
- list: List
656
- listing: Listing
657
- new: New
658
- open: Open
659
- publish: Publish
660
- receive: Mark as received
661
- refund: Refund
662
- reject: Reject
663
- remove: Remove
664
- resend: Resend
665
- resolve: Mark as resolved
666
- save: Save
667
- select_file: Select file
668
- send_invitation: Send invitation
669
- update: Update
670
641
  activate: Activate
671
642
  active: Active
672
643
  add: Add
673
- add_action_of_type: Add action of type
674
- add_address: Add address
675
- add_country: Add Country
676
- add_coupon_code: Add Coupon Code
677
644
  add_customers: Add Customers
678
- add_gift_card: Add Gift Card
679
- add_link: Add link
680
- add_new_address: Add new address
681
- add_new_credit_card: Add a new card
682
- add_new_header: Add New Header
683
- add_new_page: Add new page
684
- add_new_store: Add New Store
685
- add_new_style: Add New Style
686
- add_one: Add One
687
- add_option_value: Add Option Value
688
- add_page_block: Add Block
689
645
  add_product: Add Product
690
- add_product_properties: Add Product Properties
691
646
  add_products: Add Products
692
- add_rule_of_type: Add rule of type
693
- add_section: Add section
694
- add_selected: Add Selected
695
- add_selected_products: Add selected products
696
- add_selected_variant: Add selected variant
697
- add_state: Add State
698
- add_stock: Add Stock
699
647
  add_store: New Store
700
648
  add_store_credit: Add Store Credit
701
- add_to_cart: Add To Cart
702
- add_to_waitlist: Add to waitlist
703
- add_to_waitlist_description: Add to waitlist description
704
- add_variant: Add Variant
705
- added_at: Added At
706
649
  added_to_cart: Added to cart successfully!
707
650
  additional_item: Additional Item
708
651
  address: Address
709
652
  address1: Address
710
653
  address2: Address (contd.)
711
- address_action_popup:
712
- delete_button: yes, delete
713
- delete_text: Do you really want <br /> to delete this address?
714
- delete_title: Are you sure?
715
654
  address_book:
716
655
  add_house_number: Add a house number if you have one
717
- add_new_shipping_address: Add new address
718
- address_name_label: Address Name
719
- address_name_placeholder: Give this address a unique name (Work, Home, etc.)
720
- addresses: Addresses
721
- label: Address Name
722
- no_shipping_addresses_on_file: No addresses on file
723
- other_address: Other address
724
- remove_address: Remove Address
725
- set_as_default_billing_address: Set as default billing address
726
- set_as_default_delivery_address: Set as default delivery address
727
- successfully_created: Address has been successfully created.
728
- successfully_removed: Address has been successfully removed.
729
- successfully_saved: Saved successfully
730
- successfully_updated: Updated successfully
731
- unsuccessfully_saved: There was an error while trying to save your address.
732
- unsuccessfully_updated: There was an update while trying to update your address.
733
656
  address_not_owned_by_user: The specified address does not belong to this user.
734
- address_settings: Address settings
735
657
  addresses: Addresses
736
658
  adjustable: Adjustable
737
659
  adjustment: Adjustment
738
660
  adjustment_amount: Amount
739
- adjustment_amount_help: Positive values are charges, negative values are credits.
740
- adjustment_closed_description: The adjustment is closed, and will not be recalculated.
741
661
  adjustment_labels:
742
662
  tax_rates:
743
663
  excluding_tax: "%{name}%{amount}"
744
664
  including_tax: "%{name}%{amount} (Included in Price)"
745
- adjustment_open_description: The adjustment is open, and will be recalculated.
746
- adjustment_successfully_closed: Adjustment has been successfully closed!
747
- adjustment_successfully_opened: Adjustment has been successfully opened!
748
665
  adjustment_total: Adjustment Total
749
666
  adjustments: Adjustments
750
667
  adjustments_deleted: Adjustments Deleted
751
668
  admin_locale: Admin locale
752
- admin_locale_help: The language used for the admin dashboard. If not set, defaults to the application locale.
669
+ admin_user_mailer:
670
+ confirmation_email:
671
+ action: Confirm Email
672
+ greeting: Hi %{name},
673
+ ignore_notice: If you did not create this account, you can safely ignore this email.
674
+ instructions: Please confirm the email address for your %{store_name} admin account by clicking the button below.
675
+ subject: Email Confirmation Instructions
676
+ password_reset_email:
677
+ action: Reset Password
678
+ expiry_notice: This password reset link will expire shortly. If you did not request this, no action is needed.
679
+ greeting: Hi %{name},
680
+ ignore_notice: If you did not request a password reset, you can safely ignore this email. Your password will not be changed.
681
+ instructions: We received a request to reset the password for your %{store_name} admin account. Click the button below to choose a new password.
682
+ subject: Password Reset Instructions
753
683
  administration: Administration
754
684
  advertise: Advertise
755
- agree_to_privacy_policy: Agree to Privacy Policy
756
- agree_to_terms_of_service: Agree to Terms of Service
757
685
  all: All
758
- all_adjustments_closed: All adjustments successfully closed!
759
- all_adjustments_opened: All adjustments successfully opened!
760
- all_departments: All departments
761
- all_items_have_been_returned: All items have been returned
762
686
  all_products: All products
763
- all_rights_reserved: All rights reserved
764
- all_time: All time
765
687
  allowed_origin: Allowed Origin
766
688
  allowed_origins: Allowed Origins
767
- already_have_account: Already have an account?
768
- alt_text: Alternative Text
769
689
  alternative_phone: Alternative Phone
770
690
  amount: Amount
771
691
  analytics: Analytics
772
692
  and: and
773
- and_n_more:
774
- one: "...and %{count} more"
775
- other: "...and %{count} more"
776
693
  api_key: API Key
777
694
  api_key_no_current_key: No API key authenticated this request
778
695
  api_key_scopes_immutable: cannot be changed after the key is created; create a new key with the scopes you need and revoke this one
779
696
  api_keys: API Keys
780
- apis:
781
- admin: Admin API
782
- platform: Platform API
783
- store: Store API
784
- storefront: Storefront API
785
- applied_to: Applied to
786
697
  apply: Apply
787
698
  apply_only_on_full_priced_items: Apply only on full priced items
788
699
  apply_store_credit: Apply Store Credit
789
700
  approve: approve
790
701
  approved_at: Approved at
791
702
  approver: Approver
792
- are_you_sure: Are you sure?
793
- are_you_sure_delete: Are you sure you want to delete this record?
794
703
  assets: Media
795
- assigned_variants: Assigned variants
796
- assigned_variants_help: Pick the variants this image represents. Leave blank to apply to all variants.
797
- associated_adjustment_closed: The associated adjustment is closed, and will not be recalculated. Do you want to open it?
798
704
  at_symbol: "@"
799
705
  attachments: Attachments
800
706
  author: Author
801
- authorization_failure: Authorization Failure
802
707
  authorized: Authorized
803
708
  auto_capture: Auto Capture
804
- automatic_promotion: Automatic
805
- automatic_taxon_names:
806
- new_arrivals: New arrivals
807
- on_sale: On sale
808
709
  availability: availability
809
710
  available: Available
810
711
  available_on: Available On
@@ -812,110 +713,59 @@ en:
812
713
  avs_response: AVS Response
813
714
  back: Back
814
715
  back_end: Backend
815
- back_to_payment: Back To Payment
816
- back_to_resource_list: Back To %{resource} List
817
- back_to_rma_reason_list: Back To RMA Reason List
818
- back_to_store: Back to Store
819
- back_to_users_list: Back To Users List
820
716
  backorderable: Backorderable
821
717
  backorderable_default: Backorderable default
822
718
  backordered: Backordered
823
- backordered_confirm_info: Selected item is backordered so expect delays. Are you sure you want to order it?
824
- backordered_info: Backordered
825
- backorders_allowed: backorders allowed
826
719
  balance: Balance
827
720
  balance_due: Balance Due
828
721
  barcode: Barcode
829
722
  base_amount: Base Amount
830
723
  base_percent: Base Percent
831
- basic_information: Basic Information
832
724
  bill_address: Bill Address
833
725
  billing: Billing
834
726
  billing_address: Billing Address
835
- body_tag_end: Body tag end
836
- body_tag_start: Body tag start
837
727
  both: Both
838
728
  brand: Brand
839
- breadcrumbs: Breadcrumbs
840
- calculated_reimbursements: Calculated Reimbursements
841
729
  calculator: Calculator
842
- calculator_settings_warning: If you are changing the calculator type, you must save first before you can edit the calculator settings
843
- call_us_now: 'Call us now: '
844
730
  cancel: cancel
845
- cancel_order: Cancel order
846
731
  canceled: Canceled
847
732
  canceled_at: Canceled at
848
733
  canceler: Canceler
849
734
  cannot_be_destroyed: Order cannot be destroyed.
850
- cannot_create_customer_returns: Cannot create customer returns as this order has no shipped units.
851
- cannot_create_payment_without_payment_methods: You cannot create a payment for an order without any payment methods defined.
852
- cannot_create_returns: Cannot create returns as this order has no shipped units.
853
735
  cannot_empty: Cannot empty order.
854
736
  cannot_empty_completed_order: Order has already been processed so it cannot be emptied
855
- cannot_perform_operation: Cannot perform requested operation
856
737
  cannot_return_more_than_bought_quantity: Cannot return more than bought quantity.
857
- cannot_set_shipping_method_without_address: Cannot set shipping method until customer details are provided.
858
- cannot_ship: Shipment cannot be shipped
859
738
  capture: Capture
860
739
  capture_events: Capture events
861
740
  card_code: Card Verification Code (CVC)
862
- card_expiration_placeholder: MM/YYYY
863
741
  card_number: Card Number
864
- card_type: Brand
865
- card_type_is: Card type is
866
742
  cart: Cart
867
743
  cart_already_updated: The cart has already been updated.
868
744
  cart_line_item:
869
745
  delivery_unavailable: "%{li_name} cannot be delivered to the selected address"
870
746
  discontinued: "%{li_name} was removed because it was discontinued"
871
747
  out_of_stock: "%{li_name} was removed because it was sold out"
872
- cart_page:
873
- add_promo_code: ADD PROMO CODE
874
- change_quantity: Change quantity
875
- checkout: checkout
876
- empty_info: Your cart is empty.
877
- header: Your shopping cart
878
- product: product
879
- quantity: quantity
880
- remove_from_cart: Remove from cart
881
- title: Shopping Cart
882
- cart_state_changed: Cart changed
883
- cart_subtotal:
884
- one: Subtotal (1 item)
885
- other: Subtotal (%{count} items)
886
748
  categories: Categories
887
- categorization: Categorization
888
749
  category: Category
889
750
  change: Change
890
- change_password: Change password
891
- changes_published: Changes published!
892
751
  channel: Sales channel
752
+ channel_ids: Sales channels
893
753
  channels: Sales channels
894
754
  charged: Charged
895
755
  checkout: Checkout
896
- checkout_message: Checkout message
897
756
  checkout_requirements:
898
757
  email_required: Email address is required
899
758
  line_items_required: Add at least one item to your cart
900
759
  payment_required: Add a payment method
901
760
  ship_address_required: Shipping address is required
902
761
  shipping_method_required: Select a shipping method for all shipments
903
- choose_a_customer: Choose a customer
904
- choose_a_taxon_to_sort_products_for: Choose a taxon to sort products for
905
762
  choose_currency: Choose Currency
906
- choose_dashboard_locale: Choose Dashboard Locale
907
- choose_location: Choose location
908
763
  city: City
909
764
  clear: Clear
910
765
  clear_all: Clear all
911
766
  clear_cache: Clear Cache
912
- clear_cache_ok: Cache was flushed
913
- clear_cache_warning: Clearing cache will temporarily reduce the performance of your store.
914
- click_and_drag_on_the_products_to_sort_them: Click and drag on the products to sort them.
915
767
  clone: Clone
916
768
  close: Close
917
- close_all_adjustments: Close All Adjustments
918
- close_sidebar: Close sidebar
919
769
  closed: Closed
920
770
  code: Code
921
771
  color_code: Color Code
@@ -927,64 +777,44 @@ en:
927
777
  configuration: Configuration
928
778
  configurations: Configurations
929
779
  confirm: Confirm
930
- confirm_delete: Confirm Deletion
931
- confirm_password: Password Confirmation
932
780
  contact: Contact
933
- contact_information: Contact information
934
781
  contact_phone: Contact phone
935
- contact_us: Contact us
936
- container_alignment: Container alignment
937
782
  content: Content
938
783
  continue: Continue
939
- continue_as_guest: Continue as a guest
940
- continue_selling_when_out_of_stock: Continue selling when out of stock
941
784
  continue_shopping: Continue shopping
942
- continue_without_logging_in: Continue without logging in
943
- copied: Copied!
944
785
  copy: Copy
945
- copy_id: Copy ID
946
786
  copy_link: Copy link
947
787
  cost_currency: Cost Currency
948
788
  cost_price: Cost Price
949
- could_not_create_customer_return: Could not create customer return
950
- could_not_create_stock_movement: There was a problem saving this stock movement. Please try again.
951
789
  count_on_hand: Count On Hand
952
790
  countries: Countries
953
791
  country: Country
954
- country_based: Country Based
955
792
  country_name: Name
956
793
  country_names:
957
794
  CA: Canada
958
795
  FRA: France
959
796
  ITA: Italy
960
797
  US: United States of America
961
- country_rule:
962
- label: Choose must be shipped to this country
963
798
  coupon: Coupon
964
799
  coupon_code: Coupon code
965
800
  coupon_code_already_applied: The coupon code has already been applied to this order
966
801
  coupon_code_applied: The coupon code was successfully applied to your order.
967
- coupon_code_apply: Apply
968
802
  coupon_code_better_exists: The previously applied coupon code results in a better deal
969
803
  coupon_code_expired: The coupon code is expired
970
804
  coupon_code_max_usage: Coupon code usage limit exceeded
971
805
  coupon_code_not_eligible: This coupon code is not eligible for this order
972
806
  coupon_code_not_found: The coupon code you entered doesn't exist. Please try again.
973
- coupon_code_removed: The coupon code was successfully removed from your order.
974
807
  coupon_code_unknown_error: This coupon code could not be applied to the cart at this time.
975
808
  coupon_code_used: The coupon code you entered has already been used. Please try again.
976
809
  coupon_codes: Coupon codes
977
810
  create: Create
978
- create_a_new_account: Create a new account
979
811
  create_new: Create new
980
- create_new_order: Create new order
981
812
  create_reimbursement: Create reimbursement
982
813
  created_at: Created at
983
814
  created_by: Created by
984
815
  credit: Credit
985
816
  credit_allowed: Credit allowed
986
817
  credit_card: Credit Card
987
- credit_card_remove_confirmation: Are you sure you want to delete the credit card?
988
818
  credit_cards: Credit Cards
989
819
  credit_owed: Credit Owed
990
820
  credited: Credited
@@ -992,19 +822,10 @@ en:
992
822
  currencies: Currencies
993
823
  currency: Currency
994
824
  currency_not_supported_by_store: is not supported by this store
995
- currency_settings: Currency Settings
996
825
  current: Current
997
826
  current_password: Current password
998
- custom_code: Custom code
999
- custom_domains: Custom domains
1000
- custom_font_code: Custom font code
1001
827
  customer: Customer
1002
- customer_could_not_be_removed_from_group: Customer could not be removed from group
1003
- customer_details: Customer Details
1004
- customer_details_updated: Customer Details Updated
1005
828
  customer_group: Customer Group
1006
- customer_group_rule:
1007
- choose_customer_groups: 'Select the customer group(s) to which this promotion should apply:'
1008
829
  customer_groups: Customer Groups
1009
830
  customer_mailer:
1010
831
  password_reset_email:
@@ -1013,34 +834,19 @@ en:
1013
834
  greeting: Hi %{name},
1014
835
  ignore_notice: If you did not request a password reset, you can safely ignore this email. Your password will not be changed.
1015
836
  instructions: We received a request to reset your password. Click the button below to choose a new password.
1016
- subject: Password Reset
1017
- customer_removed_from_group: Customer removed from group
837
+ subject: Password Reset Instructions
1018
838
  customer_return: Customer Return
1019
839
  customer_returns: Customer Returns
1020
- customer_search: Customer Search
1021
840
  customer_support_email: Customer Support Email
1022
841
  customers: Customers
1023
- customers_added_to_group:
1024
- one: "%{count} customer added to group"
1025
- other: "%{count} customers added to group"
1026
- customers_removed_from_group:
1027
- one: "%{count} customer removed from group"
1028
- other: "%{count} customers removed from group"
1029
842
  cut: Cut
1030
843
  cvv: CVV
1031
844
  cvv_response: CVV Response
1032
845
  date: Date
1033
- date_completed: Date Completed
1034
- date_picker:
1035
- fpr_human_friendly_date_format: M j, Y
1036
- fpr_human_friendly_date_time_format: M j, Y at H:i
1037
846
  date_range: Date Range
1038
- days_ago: Days ago
1039
847
  default: Default
1040
848
  default_billing_address: Default billing address
1041
849
  default_country: Default Country
1042
- default_country_cannot_be_deleted: Default country cannot be deleted
1043
- default_country_help: Country that will be used for the default shipping and billing addresses on Checkout
1044
850
  default_currency: Default currency
1045
851
  default_locale: Default locale
1046
852
  default_refund_amount: Default Refund Amount
@@ -1048,64 +854,35 @@ en:
1048
854
  default_stock_location_name: Shop location
1049
855
  default_tax: Default Tax
1050
856
  default_tax_zone: Default Tax Zone
1051
- default_theme_name: Default
1052
857
  default_wishlist_name: Wishlist
1053
858
  delete: Delete
1054
- delete_address: Delete address
1055
- delete_from_taxon: Delete From Taxon
1056
- delete_selected: Delete selected
1057
859
  deleted: Deleted
1058
860
  delivery: Delivery
1059
- delivery_address: Delivery Address
1060
- delivery_information: Delivery Information
1061
861
  depth: Depth
1062
862
  description: Description
1063
863
  destination: Destination
1064
864
  destroy: Destroy
1065
865
  details: Details
1066
866
  developers: Developers
1067
- didn_t_receive_confirmation_instructions: Didn't receive confirmation instructions?
1068
- didn_t_receive_unlock_instructions: Didn't receive unlock instructions?
1069
867
  digital:
1070
868
  digital_delivery: Digital Delivery
1071
869
  digital_assets: Digital assets
1072
- digital_assets_help: Digital assets are files that can be downloaded by customers after purchase.
1073
- digital_link_unauthorized: You are not authorized to access this asset
1074
- dimension_units:
1075
- centimeter: Centimeter (cm)
1076
- foot: Foot (ft)
1077
- inch: Inch (in)
1078
- millimeter: Millimeter (mm)
1079
870
  discontinue_on: Discontinue On
1080
871
  discontinued: Discontinued
1081
872
  discontinued_variants_present: Some line items in this order have products that are no longer available.
1082
873
  discount: Discount
1083
874
  discount_amount: Discount Amount
1084
875
  discounts: Discounts
1085
- dismiss_banner: No. Thanks! I'm not interested, do not display this message again
1086
876
  display: Display
1087
877
  display_delivery_range: Delivery in %{delivery_range} business days
1088
878
  display_on: Display on
1089
- display_settings: Display settings
1090
- do_not_import: Do not import
1091
- doesnt_track_inventory: It doesn't track inventory
1092
879
  domain: Domain
1093
- domains: Domains
1094
880
  done: Done
1095
- dont_have_account: No account?
1096
881
  download: Download
1097
882
  draft: Draft
1098
- draft_mode: Draft Mode
1099
- draft_orders: Draft Orders
1100
883
  duplicate: Duplicate
1101
884
  duplicating: Duplicating
1102
885
  edit: Edit
1103
- edit_address: Edit address
1104
- edit_prices: Edit Prices
1105
- edit_refund: Edit refund
1106
- editing_resource: Editing %{resource}
1107
- editing_rma_reason: Editing RMA Reason
1108
- editing_user: Edit Your account
1109
886
  eligibility_errors:
1110
887
  messages:
1111
888
  has_excluded_product: Your cart contains a product that prevents this coupon code from being applied.
@@ -1117,6 +894,8 @@ en:
1117
894
  missing_product: This coupon code can't be applied because you don't have all of the necessary products in your cart.
1118
895
  missing_taxon: You need to add a product from all applicable categories before applying this coupon code.
1119
896
  no_applicable_products: You need to add an applicable product before applying this coupon code.
897
+ no_matching_channel: This coupon code is not eligible for this sales channel.
898
+ no_matching_market: This coupon code is not eligible in your market.
1120
899
  no_matching_taxons: You need to add a product from an applicable category before applying this coupon code.
1121
900
  no_user_or_email_specified: You need to login or provide your email before applying this coupon code.
1122
901
  no_user_specified: You need to login before applying this coupon code.
@@ -1126,66 +905,33 @@ en:
1126
905
  email_marketing: Email marketing
1127
906
  emails: Emails
1128
907
  empty: Empty
1129
- empty_cart: Empty Cart
1130
- enable_mail_delivery: Enable Mail Delivery
1131
908
  end: End
1132
- ending_at: Ending at
1133
- ending_in: Ending in
1134
909
  ends_at: Ends at
1135
910
  enter: Enter
1136
- enter_using_password: Enter using password
1137
911
  error: error
1138
912
  error_user_destroy_with_orders: User associated with orders cannot be destroyed
1139
913
  error_user_does_not_have_any_store_credits: User does not have any Store Credits available
1140
914
  errors:
1141
915
  messages:
1142
- blank: can't be blank
1143
916
  cannot_delete_default_channel: Default channel cannot be deleted. Promote another channel to default first.
1144
- cannot_remove_icon: Cannot remove image
1145
917
  channel_store_mismatch: must belong to the same store
1146
- could_not_create_taxon: Could not create taxon
1147
918
  invalid_order_routing_rule: is not a registered order routing rule
1148
919
  invalid_order_routing_strategy: is not a registered order routing strategy
920
+ invalid_storefront_access: is not a valid storefront access level
1149
921
  must_be_origin_only: must be an origin (scheme and host) without path, query, or fragment
1150
- no_shipping_methods_available: No shipping methods available for selected location, please change your address and try again.
1151
922
  store_association_can_not_be_changed: The store association can not be changed
1152
923
  store_is_already_set: Store is already set
1153
924
  services:
1154
925
  get_shipping_rates:
1155
926
  no_line_items: To generate Shipping Rates you need to add some Line Items to Order
1156
927
  no_shipping_address: To generate Shipping Rates Order needs to have a Shipping Address
1157
- errors_prohibited_this_record_from_being_saved:
1158
- one: 1 error prohibited this record from being saved
1159
- other: "%{count} errors prohibited this record from being saved"
1160
- estimated_delivery_time: Estimated delivery time
1161
928
  estimated_transit_business_days: Estimated transit business days
1162
929
  event: Event
1163
- events:
1164
- spree:
1165
- cart:
1166
- add: Add to cart
1167
- checkout:
1168
- coupon_code_added: Coupon code added
1169
- content:
1170
- visited: Visit static content page
1171
- order:
1172
- contents_changed: Order contents changed
1173
- page_view: Static page viewed
1174
- user:
1175
- signup: User signup
1176
- exceptions:
1177
- 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.
1178
- excerpt: Excerpt
1179
- exchange_for: Exchange for
1180
930
  excl: excl.
1181
931
  existing_address: Existing address
1182
- existing_shipments: Existing shipments
1183
- 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.
1184
932
  expiration: Expiration
1185
- expiration_date: Expiration Date
1186
933
  expired: Expired
1187
934
  expires_at: Expires at
1188
- explore_taxon: Explore taxon
1189
935
  export: Export
1190
936
  export_mailer:
1191
937
  export_done:
@@ -1194,52 +940,41 @@ en:
1194
940
  greeting: Hi %{user_name},
1195
941
  thanks: Thank you,
1196
942
  extension: Extension
1197
- extensions_directory: Extensions Directory
1198
943
  facebook: Facebook
1199
- failed_payment_attempts: Failed Payment Attempts
1200
- favicon: Favicon
1201
- favicon_upload_info: 'File format: PNG or ICO. File resolution: up to 256x256. File size: up to 1MB'
1202
944
  featured_image: Featured image
1203
- featured_taxon: Featured taxon
1204
945
  field: Field
1205
946
  filename: Filename
1206
- fill_in_customer_info: Please fill in customer info
1207
947
  filled: Filled
1208
948
  filter: Filter
1209
- filter_results: Filter Results
1210
949
  filterable: Filterable
1211
- filtered_records: Filtered records
1212
950
  finalize: Finalize
1213
951
  finalized: Finalized
1214
- find_a_taxon: Find a Taxon
1215
- find_your_order: Find your order
1216
952
  first_item: First Item
1217
953
  first_name: First Name
1218
- first_name_begins_with: First Name Begins With
1219
954
  firstname: First Name
1220
955
  flat_percent: Flat Percent
1221
956
  flat_rate_per_order: Flat Rate
1222
957
  flexible_rate: Flexible Rate
1223
- follow_us: Follow us
1224
- font_family: Font family
1225
- font_size_scale: Font size scale
1226
958
  fonts: Fonts
1227
959
  footer: Footer
1228
960
  forbidden: Access denied
1229
- forbidden_message: You are not authorized to access this page.
1230
- forgot_password: Forgot password?
1231
961
  free: Free
1232
962
  free_shipping: Free Shipping
1233
- free_shipping_amount: "-"
1234
963
  from: From
1235
964
  front_end: Front End
965
+ fulfillments:
966
+ errors:
967
+ insufficient_quantity: Requested quantity (%{requested}) for item %{item} exceeds its unfulfilled quantity (%{available})
968
+ invalid_cost: cost must be a non-negative number
969
+ invalid_quantity: Quantity for item %{item} must be a positive integer
970
+ invalid_status: status must be 'shipped' when provided
971
+ no_items_to_fulfill: Order has no unfulfilled items
972
+ order_canceled: Fulfillments cannot be created on a canceled order
973
+ order_not_completed: Fulfillments can only be created manually on completed orders
1236
974
  gateway: Gateway
1237
975
  gateway_error: Gateway Error
1238
976
  general: General
1239
- general_information: General information
1240
- general_settings: General Settings
1241
977
  generate_code: Generate coupon code
1242
- get_back_to_the: Get back to the
1243
978
  gift_card: Gift Card
1244
979
  gift_card_already_redeemed: The Gift Card has already been redeemed.
1245
980
  gift_card_applied: The Gift Card was successfully applied to your order!
@@ -1252,88 +987,44 @@ en:
1252
987
  gift_card_removed: The Gift Card was successfully removed from your order
1253
988
  gift_card_using_store_credit_error: You can't apply the Gift Card after you applied the store credit.
1254
989
  gift_cards: Gift Cards
1255
- go_to_category: Go to category
1256
- go_to_facebook: Go to facebook
1257
- go_to_homepage: Go to Home Page
1258
- go_to_instagram: Go to instagram
1259
- go_to_twitter: Go to twitter
1260
990
  guest_checkout: Guest Checkout
1261
- guest_user_account: Checkout as a Guest
991
+ guest_checkout_not_allowed: You must be signed in to complete checkout.
1262
992
  has_no_shipped_units: has no shipped units
1263
- head_tag: Head tag
1264
- header_banner: Header banner
1265
- header_font_family: Header font family
1266
- header_font_size_scale: Header font size scale
1267
993
  height: Height
1268
- help_center: Help Center
1269
994
  hide: Hide
1270
- hide_from_subcategories_nav: Hide from subcategories navigation
1271
995
  home: Home
1272
- home_page: homepage
1273
- homepage: Homepage
1274
996
  i18n:
1275
- available_locales: Available Locales
1276
- country: Country
1277
- default_country: Default Country
1278
- fields: Fields
1279
- language: Language
1280
- localization_settings: Localization Settings
1281
- only_complete: Only complete
1282
- only_incomplete: Only incomplete
1283
- select_locale: Select locale
1284
- show_only: Show only
1285
- supported_locales: Supported Locales
1286
997
  this_file_language: English (US)
1287
- translations: Translations
1288
998
  icon: Icon
1289
999
  idempotency_key_reused: This Idempotency-Key has already been used with different request parameters.
1290
1000
  image: Image
1291
- image_alt_text: Add Alt text to your image
1292
1001
  images: Images
1293
1002
  immediately: Immediately
1294
1003
  implement_eligible_for_return: 'Must implement #eligible_for_return? for your EligibilityValidator.'
1295
1004
  implement_requires_manual_intervention: 'Must implement #requires_manual_intervention? for your EligibilityValidator.'
1296
1005
  import: Import
1297
- import_payment_methods_from: Import payment methods from
1298
- import_products_from: Import products from
1006
+ import_mailer:
1007
+ greeting: Hi %{user_name},
1008
+ import_done:
1009
+ failed_message: "%{failed_count} rows could not be imported — review and retry them from the import report."
1010
+ message: Your import has finished. %{completed_count} rows were imported successfully.
1011
+ subject: Your import %{import_number} has finished processing
1012
+ view_results: View import report
1299
1013
  in_stock: In Stock
1300
1014
  inactive: Inactive
1301
1015
  incl: incl.
1302
1016
  included_in_price: Included in Price
1303
- included_price_validation: cannot be selected unless you have set a Default Tax Zone
1304
1017
  incomplete: Incomplete
1305
- index_in_search_engines: Index in search engines
1306
- info_number_of_skus_not_shown:
1307
- one: and one other
1308
- other: and %{count} others
1309
- info_product_has_multiple_skus: 'This product has %{count} variants:'
1310
1018
  instagram: Instagram
1311
- instructions_to_reset_password: Please enter your email on the form below
1312
1019
  insufficient_stock: Insufficient stock available, only %{on_hand} remaining
1313
- insufficient_stock_item_quantity: Insufficient stock quantity available
1314
1020
  insufficient_stock_lines_present: Some line items in this order have insufficient quantity.
1315
1021
  integrations: Integrations
1316
- intercept_email_address: Intercept Email Address
1317
- intercept_email_instructions: Override email recipient and replace with this address.
1318
- internal_name: Internal Name
1319
1022
  internal_note: Internal Note
1320
- internal_server_error: Internal Server Error
1321
- internal_server_error_message: The server encountered an internal error and was unable to complete your request.
1322
1023
  internationalization: Internationalization
1323
1024
  invalid_credit_card: Invalid credit card.
1324
1025
  invalid_exchange_variant: Invalid exchange variant.
1325
- invalid_or_expired_invitation: Invalid or expired invitation
1326
- invalid_payment_provider: Invalid payment provider.
1327
- invalid_promotion_action: Invalid promotion action.
1328
- invalid_promotion_rule: Invalid promotion rule.
1329
1026
  inventory: Inventory
1330
- inventory_adjustment: Inventory Adjustment
1331
- inventory_error_flash_for_insufficient_quantity: An item in your cart has become unavailable.
1332
- inventory_state: Inventory State
1333
1027
  invitation_accepted: Invitation accepted!
1334
- invitation_expired:
1335
- body: This invitation link is no longer valid. Please ask the person who invited you to send a new one.
1336
- heading: Invitation invalid or expired
1337
1028
  invitation_mailer:
1338
1029
  greeting: Hi %{user_name},
1339
1030
  invitation_accepted:
@@ -1344,37 +1035,21 @@ en:
1344
1035
  link_description: 'To accept this invitation, please click the link below:'
1345
1036
  subject: Invitation to join %{resource_name}
1346
1037
  thanks: Thank you,
1347
- invitation_resent: Invitation resent!
1348
1038
  invitations: Invitations
1349
1039
  invited_by: Invited by
1350
- is_not_available_to_shipment_address: is not available to shipment address
1351
1040
  iso: ISO Alpha-2
1352
1041
  iso3: ISO Alpha-3
1353
1042
  iso_name: ISO Name
1354
- issued_on: Issued On
1355
1043
  item: Item
1356
1044
  item_description: Item Description
1357
1045
  item_total: Item Total
1358
- item_total_rule:
1359
- operators:
1360
- gt: greater than
1361
- gte: greater than or equal to
1362
- lt: less than
1363
- lte: less than or equal to
1364
1046
  items_cannot_be_shipped: We are unable to calculate shipping rates for the selected items.
1365
- items_in_rmas: Items in Return Authorizations
1366
- items_reimbursed: Items reimbursed
1367
- items_to_be_reimbursed: Items to be reimbursed
1368
1047
  key: Key
1369
1048
  kind: Kind
1370
1049
  label: Label
1371
1050
  language: Language
1372
1051
  last_name: Last Name
1373
- last_name_begins_with: Last Name Begins With
1374
1052
  lastname: Last Name
1375
- learn_more: Learn More
1376
- lifetime_stats: Lifetime Stats
1377
- limit_usage_to: Limit usage to
1378
1053
  line_item: Line Item
1379
1054
  line_item_adjustments: Line item adjustments
1380
1055
  line_items: Line items
@@ -1383,48 +1058,25 @@ en:
1383
1058
  live: Live
1384
1059
  loading: Loading
1385
1060
  locale: Locale
1386
- locale_changed: Locale Changed
1387
1061
  locale_not_supported_by_store: is not supported by this store
1388
1062
  location: Location
1389
1063
  lock: Lock
1390
1064
  log_entries: Log Entries
1391
- log_in: Log in
1392
- log_in_to_continue: Log in to continue
1393
- logged_in_as: Logged in as
1394
1065
  logged_in_successfully: Logged in successfully
1395
- logged_out: You have been logged out.
1396
1066
  login: Login
1397
- login_as_existing: Login as Existing Customer
1398
- login_failed: Login authentication failed.
1399
- login_name: Login
1400
1067
  logo: Logo
1401
1068
  logout: Logout
1402
1069
  logs: Logs
1403
- look_for_similar_items: Look for similar items
1404
1070
  mail_from_address: Mail from address
1405
1071
  mailer_logo: Mailer logo (JPG or PNG images only)
1406
1072
  make_active_at: Make Active At
1407
- make_refund: Make refund
1408
- make_sure_the_above_reimbursement_amount_is_correct: Make sure the above reimbursement amount is correct
1409
- manage_promotion_categories: Manage Promotion Categories
1410
- manage_variants: Manage Variants
1411
1073
  manual: Manual
1412
- manual_adjustment: Manual Adjustment
1413
- manual_adjustments: Manual Adjustments
1414
1074
  manual_intervention_required: Manual intervention required
1415
- mark_as_default: Mark as default
1416
1075
  market: Market
1417
1076
  market_ids: Markets
1418
1077
  markets: Markets
1419
1078
  master: Master
1420
1079
  master_price: Master Price
1421
- master_sku: Master SKU
1422
- match_choices:
1423
- all: All
1424
- none: None
1425
- match_policies:
1426
- all: Match ALL rules
1427
- any: Match ANY rule
1428
1080
  max: Max
1429
1081
  max_items: Max Items
1430
1082
  max_quantity: Max Quantity
@@ -1440,89 +1092,29 @@ en:
1440
1092
  min: Min
1441
1093
  min_quantity: Min Quantity
1442
1094
  minimal_amount: Minimal Amount
1443
- minimum_password_length:
1444
- one: "(%{count} character minimum)"
1445
- other: "(%{count} characters minimum)"
1446
1095
  missing_return_authorization: Missing Return Authorization for %{item_name}.
1447
1096
  month: Month
1448
1097
  more: More
1449
- more_actions: More actions
1450
1098
  move: Move
1451
- move_down: Move down
1452
- move_stock_between_locations: Move Stock Between Locations
1453
- move_up: Move up
1454
- move_variant_to: Move variant to
1455
- must_have_one_store: The resource must belong to a store.
1456
1099
  mutable: Mutable
1457
1100
  my_account: My Account
1458
- my_addresses: My addresses
1459
1101
  my_orders: My Orders
1460
1102
  name: Name
1461
- name_on_card: Name on card
1462
1103
  name_or_sku: Name or SKU (enter at least first 3 characters of product name)
1463
1104
  navigation: Navigation
1464
1105
  never: Never
1465
1106
  new: New
1466
1107
  new_address: New address
1467
- new_adjustment: New Adjustment
1468
- new_allowed_origin: New Allowed Origin
1469
- new_api_key: New API Key
1470
- new_balance: New balance
1471
- new_billing_address: New Billing Address
1472
- new_channel: New sales channel
1473
- new_country: New Country
1474
- new_custom_domain: New Custom Domain
1475
- new_customer: New Customer
1476
- new_customer_group: New Customer Group
1477
- new_customer_return: New Customer Return
1478
- new_digital_asset: New digital asset
1479
- new_domain: New domain
1480
- new_gift_card: New Gift Card
1481
1108
  new_image: New Image
1482
- new_line_item: Add line item
1483
- new_metafield_definition: New Metafield Definition
1484
- new_nested_taxon: New nested subcategory
1485
- new_option_type: New Option Type
1486
1109
  new_order: New Order
1487
- new_order_completed: New Order Completed
1488
1110
  new_order_notifications_email: New Order Notifications Email
1489
- new_page: New Page
1490
- new_password: New password
1491
- new_payment: New Payment
1492
- new_payment_method: New Payment Method
1493
- new_policy: New Policy
1494
1111
  new_price_list: New Price List
1495
1112
  new_product: New Product
1496
1113
  new_promotion: New Promotion
1497
- new_promotion_category: New Promotion Category
1498
- new_property: New Property
1499
- new_prototype: New Prototype
1500
- new_refund: New Refund
1501
- new_refund_reason: New Refund Reason
1502
- new_reimbursement_type: New Reimbursement Type
1503
1114
  new_return_authorization: New Return Authorization
1504
- new_rma_reason: New RMA Reason
1505
- new_role: New Role
1506
- new_shipment_at_location: New shipment at location
1507
- new_shipping_address: New Shipping Address
1508
- new_shipping_category: New Shipping Category
1509
- new_shipping_method: New Shipping Method
1510
1115
  new_state: New State
1511
- new_stock_location: New Stock Location
1512
- new_stock_movement: New Stock Movement
1513
- new_stock_transfer: New Stock Transfer
1514
- new_store: New Store
1515
- new_store_credit: New Store Credit
1516
- new_store_credit_category: New Store Credit Category
1517
- new_tax_category: New Tax Category
1518
- new_tax_rate: New Tax Rate
1519
- new_taxon: New Subcategory
1520
- new_taxonomy: New Category
1521
- new_tracker: New Tracker
1522
1116
  new_user: New User
1523
1117
  new_variant: New Variant
1524
- new_webhook_endpoint: New Webhook Endpoint
1525
- new_zone: New Zone
1526
1118
  newsletter_mailer:
1527
1119
  email_confirmation:
1528
1120
  dear_customer: Hey,
@@ -1534,99 +1126,32 @@ en:
1534
1126
  thanks: Thank you
1535
1127
  verify_email_address_link: Verify email address
1536
1128
  newsletter_subscribers: Newsletter Subscribers
1537
- newsletters: Newsletters
1538
1129
  next: Next
1539
- no_actions_added: No actions added
1540
- no_address_given: No address given
1541
- no_adjustments: No adjustments
1542
- no_available_date_set: No available date set
1543
- no_billing_address_available: No billing address available
1544
1130
  no_cc_type: N/A
1545
- no_country: No country set
1546
- no_customers_found: No customers found
1547
- no_customers_in_group: No customers in this group yet
1548
- no_email_provided: No email provided
1549
- no_internal_note: No internal note
1550
- no_limits_zone: No Limits
1551
1131
  no_payment_found: No payment found
1552
- no_payment_provider_settings_message: This payment provider has no custom settings available
1553
- no_pending_payments: No pending payments
1554
- no_product_available:
1555
- for_this_quantity: Sorry, it looks like some products are not available in selected quantity.
1556
- oops: Oops!
1557
- no_products_added: No products added
1558
- no_products_found: No products found
1559
- no_products_in_price_list: No products in this price list
1560
- no_promotions_applied: No promotions applied
1561
1132
  no_report_data: No report data
1562
- no_resource_found: No %{resource} found
1563
- no_results: No results
1564
- no_returns_found: No returns found
1565
- no_rules_added: No rules added
1566
- no_saved_cards: No saved cards
1567
- no_shipping_address_available: No shipping address available
1568
- no_shipping_method_selected: No shipping method selected.
1569
- no_state_changes: No state changes yet.
1570
- no_taxes: No taxes
1571
- no_tracking_present: No tracking details provided.
1572
- no_users_selected: No users selected
1573
1133
  none: None
1574
- none_selected: None Selected
1575
1134
  normal_amount: Normal Amount
1576
1135
  not: not
1577
1136
  not_available: N/A
1578
1137
  not_enough_stock: There is not enough inventory at the source location to complete this transfer.
1579
1138
  not_found: "%{resource} is not found"
1580
- not_risky: Not risky
1581
- not_subscribed: Not subscribed
1582
1139
  note: Note
1583
- notice_messages:
1584
- icon_removed: Image has been successfully removed
1585
- prices_saved: Prices successfully saved
1586
- product_cloned: Product has been cloned
1587
- product_deleted: Product has been deleted
1588
- product_not_cloned: 'Product could not be cloned. Reason: %{error}'
1589
- product_not_deleted: 'Product could not be deleted. Reason: %{error}'
1590
- translations_saved: Translations successfully saved
1591
- variant_deleted: Variant has been deleted
1592
- variant_not_deleted: 'Variant could not be deleted. Reason: %{error}'
1593
- notify_me_when_available: Notify me when available
1594
- num_orders: "# Orders"
1595
1140
  number: Number
1596
- oauth_applications: OAuth Applications
1597
1141
  ok: OK
1598
1142
  on_hand: On Hand
1599
1143
  only_active_products_can_be_added_to_cart: Draft and archived products cannot be added to cart, please mark the product as active before.
1600
- only_left: Only %{count} left
1601
1144
  open: Open
1602
- open_all_adjustments: Open All Adjustments
1603
1145
  option_name: Option name
1604
1146
  option_type: Option Type
1605
- 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.
1606
- option_type_kind_info: Controls how the option is displayed on the storefront. Color swatches show color circles, buttons show clickable chips, and dropdown shows a select menu.
1607
- option_type_kinds:
1608
- buttons: Buttons
1609
- color_swatch: Color Swatch
1610
- dropdown: Dropdown
1611
- option_type_placeholder: Choose an option type
1612
1147
  option_types: Option Types
1613
1148
  option_value: Option Value
1614
1149
  option_values: Option Values
1615
1150
  optional: Optional
1616
1151
  options: Options
1617
1152
  or: or
1618
- or_over_price: "%{price} or over"
1619
- or_select_other_address: or select other address
1620
1153
  order: Order
1621
- order_adjustments: Order adjustments
1622
- order_again: Order again
1623
- order_approved: Order approved
1624
1154
  order_canceled: Order canceled
1625
- order_details: Order Details
1626
- order_email_resent: Order Email Resent
1627
- order_email_resent_error: Order confirmation mail can only be sent for completed orders
1628
- order_information: Order Information
1629
- order_line_items: Order Line Items
1630
1155
  order_mailer:
1631
1156
  cancel_email:
1632
1157
  dear_customer: Hey %{name},
@@ -1656,190 +1181,49 @@ en:
1656
1181
  total: 'Order Total:'
1657
1182
  order_not_found: We couldn't find your order. Please try that action again.
1658
1183
  order_number: Order %{number}
1659
- order_processed_successfully: Your order has been processed successfully
1660
1184
  order_resumed: Order resumed
1661
1185
  order_routing:
1662
1186
  strategies:
1663
1187
  legacy: Legacy
1664
1188
  rules: Rules (ordered)
1665
- order_state:
1666
- address: address
1667
- awaiting_return: awaiting return
1668
- canceled: canceled
1669
- cart: cart
1670
- complete: complete
1671
- confirm: confirm
1672
- considered_risky: considered risky
1673
- delivery: delivery
1674
- payment: payment
1675
- resumed: resumed
1676
- returned: returned
1677
- order_status: Order status
1678
- order_success: Order placed successfully
1679
- order_success_explain: Your order information will be sent to your email
1680
1189
  order_summary: Order Summary
1681
- order_sure_want_to: Are you sure you want to %{event} this order?
1682
1190
  order_total: Order Total
1683
- order_updated: Order Updated
1684
1191
  orders: Orders
1685
1192
  origin: Origin
1686
1193
  other: Other
1687
1194
  out_of_stock: Out of Stock
1688
1195
  outstanding_balance: Outstanding Balance
1689
- overview: Overview
1690
- package_from: package from
1691
1196
  page: Page
1692
- page_blocks:
1693
- buttons:
1694
- display_name: Button
1695
- link:
1696
- display_name: Link
1697
- nav:
1698
- label_default: Menu
1699
- newsletter_form:
1700
- button_text_default: Submit
1701
- placeholder_default: Enter your email
1702
- products:
1703
- buy_buttons:
1704
- display_name: Add To Cart
1705
- page_not_found: Sorry! Page you are looking can’t be found.
1706
- page_not_found_message: This page just doesn't exist.
1707
- page_sections:
1708
- announcement_bar:
1709
- default_text: Welcome to my Store!
1710
- featured_taxon:
1711
- button_text_default: Explore category
1712
- heading_default: Beloved products
1713
- featured_taxons:
1714
- heading_default: Shop by category
1715
- image_banner:
1716
- heading_default: Welcome to your website
1717
- text_default: This is the place to tell people about your business and what you do.
1718
- image_with_text:
1719
- heading_default: Welcome to our shop!
1720
- text_default: At %{store_name} we offer a wide range of products for your home and business.
1721
- newsletter:
1722
- heading_default: Subscribe to our newsletter
1723
- text_default: Thank you for choosing us as your trusted online shopping destination.
1724
- page_title:
1725
- display_name: Page Title
1726
- related_products:
1727
- heading_default: You might also like
1728
- rich_text:
1729
- heading_default: This is a heading
1730
- text_default: This is a paragraph of text
1731
- taxon_grid:
1732
- heading_default: Brands we work with
1733
- video:
1734
- heading_1_default: Why I recommend it?
1735
- heading_2_default: There's nothing like a soft hint of blush to add dimension and color to your look.
1736
1197
  pages: Pages
1737
- pages_defaults:
1738
- homepage:
1739
- featured_taxon_heading_new_arrivals: New arrivals
1740
- featured_taxon_heading_on_sale: On sale
1741
- image_with_text_heading: About us
1742
- 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.
1743
- password:
1744
- newsletter_heading: Opening soon
1745
- newsletter_text: Be the first one to know when we launch.
1746
- pagination:
1747
- next_page: next page &raquo;
1748
- previous_page: "&laquo; previous page"
1749
- truncate: "&hellip;"
1750
1198
  password: Password
1751
- password_protected: Password protected
1752
- paste: Paste
1753
1199
  path: Path
1754
1200
  pay: Pay
1755
1201
  payment: Payment
1756
- payment_amount: Payment amount
1757
- payment_attempts: failed attempts
1758
- payment_could_not_be_created: Payment could not be created.
1759
- payment_identifier: Payment Identifier
1760
- payment_information: Payment Information
1761
1202
  payment_method: Payment Method
1762
1203
  payment_method_not_supported: That payment method is unsupported. Please choose another one.
1763
1204
  payment_methods: Payment Methods
1764
1205
  payment_processing_failed: Payment could not be processed, please check the details you entered
1765
- payment_processor_choose_banner_text: If you need help choosing a payment processor, please visit
1766
- payment_processor_choose_link: our payments page
1767
- payment_provider_settings: Payment Provider Settings
1768
1206
  payment_source: Payment source
1769
1207
  payment_state: Payment State
1770
- payment_states:
1771
- balance_due: Balance Due
1772
- checkout: Checkout
1773
- complete: Complete
1774
- completed: Completed
1775
- credit_owed: Credit Owed
1776
- failed: Failed
1777
- paid: Paid
1778
- partially_refunded: Partially Refunded
1779
- pending: Pending
1780
- processing: Processing
1781
- refunded: Refunded
1782
- void: Void
1783
1208
  payment_total: Payment Total
1784
- payment_type: Payment type
1785
- payment_updated: Payment Updated
1786
1209
  payments: Payments
1787
- payments_count: Payments count
1788
- payments_gateway_processing_errors: "%{payment_method_name} processing errors"
1789
1210
  pending: Pending
1790
- pending_sale: Pending Sale
1791
1211
  percent: Percent
1792
1212
  percent_per_item: Percent Per Item
1793
1213
  permalink: Permalink
1794
1214
  permissions: Permissions
1795
- personal_details: Personal details
1796
1215
  phone: Phone
1797
- place_order: Place Order
1798
- please_check_back_soon: Please check back soon.
1799
- please_define_payment_methods: Please define some payment methods first.
1800
- please_enter_reasonable_quantity: Please enter a reasonable quantity.
1801
1216
  policies: Policies
1802
- populate_get_error: Something went wrong. Please try adding the item again.
1803
1217
  powered_by: Powered by
1804
1218
  pre_tax_amount: Pre-Tax Amount
1805
- pre_tax_refund_amount: Pre-Tax Refund Amount
1806
1219
  pre_tax_total: Pre-Tax Total
1807
1220
  preferred_reimbursement_type: Preferred Reimbursement Type
1808
1221
  presentation: Presentation
1809
1222
  preview: Preview
1810
- preview_product: Preview Product
1811
- preview_taxon: Preview Taxon
1812
1223
  previous: Previous
1813
- previously_used_card: Previously Used Cards
1814
1224
  price: Price
1815
- price_list_form:
1816
- match_policies:
1817
- all: Match all of these rules
1818
- any: Match any of these rules
1819
- price_list_statuses:
1820
- active: Active
1821
- draft: Draft
1822
- inactive: Inactive
1823
- scheduled: Scheduled
1824
- scheduled_active: Scheduled (Active)
1825
1225
  price_lists: Price Lists
1826
1226
  price_range: Price Range
1827
- price_rule_types:
1828
- customer_group_rule:
1829
- description: Apply pricing to specific customer groups
1830
- name: Customer Group
1831
- market_rule:
1832
- description: Apply pricing based on the market
1833
- name: Market
1834
- user_rule:
1835
- description: Apply pricing to specific customers
1836
- name: User
1837
- volume_rule:
1838
- description: Apply pricing based on quantity
1839
- name: Volume
1840
- zone_rule:
1841
- description: Apply pricing based on geographic zone
1842
- name: Zone
1843
1227
  price_rules:
1844
1228
  channel_rule:
1845
1229
  description: Apply pricing based on the sales channel
@@ -1852,36 +1236,12 @@ en:
1852
1236
  process: Process
1853
1237
  processing: Processing
1854
1238
  product: Product
1855
- product_details: Product Details
1856
1239
  product_has_no_description: This product has no description
1857
1240
  product_name: Product Name
1858
- product_not_available_in_this_currency: This product is not available in the selected currency.
1859
1241
  product_properties: Product Properties
1860
- product_rule:
1861
- choose_products: Choose products
1862
- label: Order must contain x amount of these products
1863
- match_all: all
1864
- match_any: at least one
1865
- match_none: none
1866
- product_source:
1867
- group: From product group
1868
- manual: Manually choose
1869
- product_sold_out: This item is sold out
1870
1242
  product_translations: Product Translations
1871
1243
  products: Products
1872
- products_added: Products added
1873
1244
  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.
1874
- products_removed: Products removed
1875
- products_sort_options:
1876
- best_selling: Best Selling
1877
- manual: Manual
1878
- name_a_z: Alphabetically, A-Z
1879
- name_z_a: Alphabetically, Z-A
1880
- newest_first: Newest
1881
- oldest_first: Oldest
1882
- price_high_to_low: Price (high-low)
1883
- price_low_to_high: Price (low-high)
1884
- relevance: Relevance
1885
1245
  promotion: Promotion
1886
1246
  promotion_action: Promotion Action
1887
1247
  promotion_action_types:
@@ -1900,18 +1260,15 @@ en:
1900
1260
  promotion_actions: Actions
1901
1261
  promotion_already_used: You can not destroy promotion that was already applied
1902
1262
  promotion_category: Promotion Category
1903
- promotion_cloned: Promotion has been cloned
1904
- promotion_form:
1905
- match_policies:
1906
- all: Match all of these rules
1907
- any: Match any of these rules
1908
1263
  promotion_label: Promotion (%{name})
1909
- promotion_not_cloned: 'Promotion has not been cloned. Reason: %{error}'
1910
1264
  promotion_rule: Promotion Rule
1911
1265
  promotion_rule_types:
1912
1266
  category:
1913
1267
  description: Order includes products in specified categories
1914
1268
  name: Categories
1269
+ channel:
1270
+ description: Limit to orders placed through specified channel(s)
1271
+ name: Channel(s)
1915
1272
  country:
1916
1273
  description: Limit to orders with shipping address in a specific country
1917
1274
  name: Country
@@ -1933,6 +1290,9 @@ en:
1933
1290
  item_total:
1934
1291
  description: Order total meets these criteria
1935
1292
  name: Item total
1293
+ market:
1294
+ description: Limit to orders placed in specified market(s)
1295
+ name: Market(s)
1936
1296
  one_use_per_user:
1937
1297
  description: Only One Use Per User
1938
1298
  name: One Use Per User
@@ -1942,7 +1302,6 @@ en:
1942
1302
  product:
1943
1303
  description: Order includes specified product(s)
1944
1304
  name: Product(s)
1945
- promotion_uses: Promotion uses
1946
1305
  promotionable: Promotable
1947
1306
  promotions: Promotions
1948
1307
  propagate_all_variants: Propagate all variants
@@ -1951,34 +1310,21 @@ en:
1951
1310
  prototype: Prototype
1952
1311
  prototypes: Prototypes
1953
1312
  provider: Provider
1954
- provider_settings_warning: If you are changing the provider type, you must save first before you can edit the provider settings
1955
1313
  published_at: Published at
1956
- purchased_quantity: Purchased Quantity
1957
1314
  qty: Qty
1958
1315
  quantity: Quantity
1959
- quantity_returned: Quantity Returned
1960
- quantity_shipped: Quantity Shipped
1961
1316
  query: Query
1962
- quick_search: Quick search..
1963
1317
  rate: Rate
1964
- read_less: Read less
1965
- read_more: Read more
1966
1318
  reason: Reason
1967
1319
  receive: receive
1968
- receive_stock: Receive Stock
1969
1320
  received: Received
1970
1321
  reception_status: Reception Status
1971
1322
  reference: Reference
1972
- reference_contains: Reference Contains
1973
1323
  refund: Refund
1974
1324
  refund_amount: Refund Amount
1975
- refund_amount_must_be_greater_than_zero: Refund amount must be greater than zero
1976
- refund_reasons: Refund Reasons
1977
- refunded_amount: Refunded Amount
1978
1325
  refunds: Refunds
1979
1326
  register: Register
1980
1327
  registration: Registration
1981
- regular_price: Regular price
1982
1328
  reimburse: Reimburse
1983
1329
  reimbursed: Reimbursed
1984
1330
  reimbursement: Reimbursement
@@ -1987,27 +1333,21 @@ en:
1987
1333
  days_to_send: You have %{days} days to send back any items awaiting exchange.
1988
1334
  dear_customer: Dear %{name},
1989
1335
  exchange_summary: Exchange Summary
1990
- for: for
1991
1336
  instructions: Your reimbursement has been processed.
1992
1337
  refund_summary: Refund Summary
1993
1338
  store_team: "%{store_name} Team"
1994
1339
  subject: Reimbursement Notification
1995
1340
  thanks: Thank you for your business.
1996
1341
  total_refunded: 'Total refunded: %{total}'
1997
- reimbursement_perform_failed: 'Reimbursement could not be performed. Error: %{error}'
1998
1342
  reimbursement_status: Reimbursement status
1999
1343
  reimbursement_type: Reimbursement type
2000
- reimbursement_type_override: Reimbursement Type Override
2001
1344
  reimbursement_types: Reimbursement Types
2002
1345
  reimbursements: Reimbursements
2003
1346
  reject: Reject
2004
- reject_reason: Reject Reason
2005
1347
  rejected: Rejected
2006
1348
  remember_me: Remember me
2007
1349
  remove: Remove
2008
- remove_condition: Remove condition
2009
1350
  remove_gift_card_on_completed_order_error: You can't remove the gift card after the order was placed
2010
- remove_image: Remove Image
2011
1351
  rename: Rename
2012
1352
  report: Report
2013
1353
  report_mailer:
@@ -2027,17 +1367,11 @@ en:
2027
1367
  reset_password: Reset my password
2028
1368
  resource: Resource
2029
1369
  response_code: Response Code
2030
- restore_defaults: Restore defaults
2031
1370
  resume: resume
2032
1371
  resumed: Resumed
2033
1372
  return: return
2034
1373
  return_authorization: Return Authorization
2035
1374
  return_authorization_canceled: Return authorization canceled
2036
- return_authorization_reasons: Return Authorization Reasons
2037
- return_authorization_states:
2038
- authorized: Authorized
2039
- canceled: Canceled
2040
- return_authorization_updated: Return authorization updated
2041
1375
  return_authorizations: Return Authorizations
2042
1376
  return_item_inventory_unit_ineligible: Return item's inventory unit must be shipped
2043
1377
  return_item_inventory_unit_reimbursed: Return item's inventory unit is already reimbursed
@@ -2046,84 +1380,40 @@ en:
2046
1380
  return_item_time_period_ineligible: Return item is outside the eligible time period
2047
1381
  return_items: Return Items
2048
1382
  return_items_cannot_be_associated_with_multiple_orders: Return items cannot be associated with multiple orders.
2049
- return_number: Return Number
2050
1383
  return_quantity: Return Quantity
2051
1384
  returned: Returned
2052
1385
  returns: Returns
2053
1386
  returns_policy: Returns Policy
2054
1387
  review: Review
2055
1388
  risk: Risk
2056
- risk_analysis: Risk Analysis
2057
1389
  risky: Risky
2058
- rma_credit: RMA Credit
2059
- rma_number: RMA Number
2060
- rma_value: RMA Value
2061
1390
  role_id: Role ID
2062
1391
  roles: Roles
2063
1392
  row: Row
2064
1393
  rules: Rules
2065
1394
  safe: Safe
2066
1395
  sale: Sale
2067
- sale_price: Sale price
2068
1396
  sales_total: Sales Total
2069
- sales_total_description: Sales Total For All Orders
2070
- sales_totals: Sales Totals
2071
- same_as_shipping_address: Same as shipping address
2072
- save_and_continue: Save and Continue
2073
- save_my_address: Save my address
2074
1397
  saving: Saving
2075
1398
  say_no: 'No'
2076
1399
  say_yes: 'Yes'
2077
1400
  scope: Scope
2078
1401
  scopes: Scopes
2079
1402
  search: Search
2080
- search_all: Search all
2081
1403
  search_by: 'Search by:'
2082
- search_customers: Search customers
2083
- search_customers_hint: Search by email address
2084
- search_engine_listing: Search engine listing
2085
- search_order_number: Order Number
2086
- search_products: Search products
2087
- search_results: Search results for '%{keywords}'
2088
- search_results_for: Search results for %{query}
2089
- searching: Searching
2090
- secure_connection_type: Secure Connection Type
2091
1404
  security: Security
2092
- security_settings: Security Settings
2093
1405
  seed:
2094
1406
  shipping:
2095
1407
  categories:
2096
1408
  default: Default
2097
1409
  digital: Digital
2098
1410
  select: Select
2099
- select_a_date: Select a date
2100
- select_a_date_range: Select a date range
2101
- select_a_return_authorization_reason: Select a reason for the return authorization
2102
- select_a_stock_location: Select a stock location
2103
- select_a_store_credit_reason: Select a reason for the store credit
2104
- select_an_option: Select an option
2105
- select_existing_address: Select existing address
2106
- select_from_prototype: Select From Prototype
2107
- select_key_type: Select key type
2108
1411
  select_stock: Select stock
2109
- select_stores: Select Store(s)
2110
- select_user: Select customer
2111
- select_vendor: Select vendor
2112
1412
  selected_quantity_not_available: selected of %{item} is not available.
2113
1413
  send_consumer_transactional_emails: Send Customer Transactional Emails
2114
- send_copy_of_all_mails_to: Send Copy of All Mails To
2115
- send_mails_as: Send Mails As
2116
- send_message: Send message
2117
- send_payment_link: Send payment link
2118
- send_payment_link_title: Send payment link to the customer by email. They will be able to complete the payment later.
2119
- send_us_a_message: Send us a message
2120
1414
  seo: SEO
2121
- seo_robots: SEO Robots
2122
1415
  seo_title: SEO Title
2123
1416
  server: Server
2124
- server_error: The server returned an error
2125
- service_unavailable: Service Unavailable
2126
- service_unavailable_message: The server is temporarily unable to service your request due to maintenance downtime or capacity problems. Please try again later.
2127
1417
  settings: Settings
2128
1418
  ship: Ship
2129
1419
  ship_address: Ship Address
@@ -2131,7 +1421,6 @@ en:
2131
1421
  ship_total: Ship Total
2132
1422
  shipment: Shipment
2133
1423
  shipment_adjustments: Shipment adjustments
2134
- shipment_details: From %{stock_location} via %{shipping_method}
2135
1424
  shipment_mailer:
2136
1425
  shipped_email:
2137
1426
  dear_customer: Dear %{name},
@@ -2143,21 +1432,9 @@ en:
2143
1432
  thanks: Thank you for your business.
2144
1433
  track_information: 'Tracking Information: %{tracking}'
2145
1434
  track_link: 'Tracking Link: %{url}'
2146
- shipment_refunded_message: You will receive a refund in the next few days.
2147
1435
  shipment_state: Shipment State
2148
- shipment_states:
2149
- backorder: Backorder
2150
- canceled: Canceled
2151
- partial: Partial
2152
- pending: Pending
2153
- ready: Ready
2154
- shipped: Shipped
2155
- shipment_successfully_shipped: Shipment successfully shipped
2156
- shipment_transfer_error: There was an error transferring variants
2157
- shipment_transfer_success: Variants successfully transferred
2158
1436
  shipments: Shipments
2159
1437
  shipped: Shipped
2160
- shipped_from: Shipped from
2161
1438
  shipping: Shipping
2162
1439
  shipping_address: Shipping Address
2163
1440
  shipping_categories: Shipping Categories
@@ -2168,36 +1445,19 @@ en:
2168
1445
  shipping_instructions: Shipping Instructions
2169
1446
  shipping_method: Shipping Method
2170
1447
  shipping_methods: Shipping Methods
2171
- shipping_not_available: Shipping not available
2172
1448
  shipping_policy: Shipping Policy
2173
1449
  shipping_price_sack: Price sack
2174
1450
  shipping_rates:
2175
1451
  display_price:
2176
1452
  excluding_tax: "%{price} (+ %{tax_amount} %{tax_rate_name})"
2177
1453
  including_tax: "%{price} (incl. %{tax_amount} %{tax_rate_name})"
2178
- shipping_total: Shipping total
2179
1454
  shipping_zone: Shipping Zone
2180
- shipping_zone_help: Zone will limit to which Countries or States products are shipped.
2181
- shop_all: Shop All
2182
- shop_by_taxonomy: Shop by %{taxonomy}
2183
1455
  shopping_cart: Shopping Cart
2184
1456
  show: Show
2185
- show_active: Show Active
2186
- show_all: Show all
2187
1457
  show_deleted: Show Deleted
2188
- show_details: Show details
2189
1458
  show_discontinued: Show Discontinued
2190
- show_less: Show less
2191
1459
  show_only_complete_orders: Only show complete orders
2192
- show_only_considered_risky: Only show risky orders
2193
- show_property: Show Property
2194
1460
  show_rate_in_label: Show rate in label
2195
- show_report: Show report
2196
- show_store_selector:
2197
- long: Display the Store selector in the main nav bar of Storefront and allow users to change Store and Currency
2198
- short: Show Store selector
2199
- sign_in_with_provider: Sign in with %{provider}
2200
- sign_out: Sign out
2201
1461
  sign_up: Sign Up
2202
1462
  site_name: Site name
2203
1463
  size: Size
@@ -2205,109 +1465,42 @@ en:
2205
1465
  skus: SKUs
2206
1466
  slug: Slug
2207
1467
  social: Social
2208
- social_media: Social media
2209
- sold_out: Sold out
2210
- something_went_wrong: Something went wrong
2211
1468
  sort_by: Sort by
2212
1469
  source: Source
2213
1470
  special_instructions: Special Instructions
2214
1471
  split: Split
2215
- spree_gateway_error_flash_for_checkout: There was a problem with your payment information. Please check your information and try again.
2216
1472
  square_image: Square image
2217
- ssl:
2218
- change_protocol: Please switch to using HTTP (rather than HTTPS) and retry this request.
2219
- standards_and_formats: Standards and formats
2220
- standards_and_formats_help: Set the timezone, default unit system and weight unit for your store.
2221
1473
  start: Start
2222
- start_typing_to_search_for_products: Start typing to search for products
2223
- start_typing_to_search_for_variants: Start typing to search for variants
2224
- starting_from: Starts at
2225
1474
  starts_at: Starts at
2226
1475
  state: State
2227
- state_based: State Based
2228
1476
  state_changes: State Changes
2229
- state_machine_states:
2230
- accepted: Accepted
2231
- address: Address
2232
- authorized: Authorized
2233
- awaiting: Awaiting
2234
- awaiting_return: Awaiting return
2235
- backordered: Back ordered
2236
- canceled: Canceled
2237
- cart: Cart
2238
- checkout: Checkout
2239
- closed: Closed
2240
- complete: Complete
2241
- completed: Completed
2242
- confirm: Confirm
2243
- delivery: Delivery
2244
- errored: Errored
2245
- failed: Failed
2246
- given_to_customer: Given to customer
2247
- invalid: Invalid
2248
- manual_intervention_required: Manual intervention required
2249
- on_hand: On hand
2250
- open: Open
2251
- order: Order
2252
- payment: Payment
2253
- pending: Pending
2254
- processing: Processing
2255
- ready: Ready
2256
- reimbursed: Reimbursed
2257
- resumed: Resumed
2258
- returned: Returned
2259
- shipment: Shipment
2260
- shipped: Shipped
2261
- void: Void
2262
1477
  states: States
2263
1478
  states_required: States Required
2264
1479
  status: Status
2265
1480
  stock: Stock
2266
1481
  stock_items: Stock Items
2267
1482
  stock_location: Stock Location
2268
- stock_location_info: Stock location info
2269
1483
  stock_locations: Stock Locations
2270
- stock_locations_need_a_default_country: You must create a default country before creating a stock location.
2271
- stock_management: Stock Management
2272
- stock_management_requires_a_stock_location: Please create a stock location in order to manage stock.
2273
1484
  stock_movements: Stock Movements
2274
- stock_movements_for_stock_location: Stock Movements for %{stock_location_name}
2275
- stock_successfully_transferred: Stock was successfully transferred between locations.
2276
1485
  stock_transfer:
2277
1486
  errors:
2278
1487
  must_have_variant: You must add at least one variant
2279
1488
  same_location: cannot be the same as the destination location
2280
1489
  variants_unavailable: Some variants are not available on %{stock}
2281
- stock_transfer_name: Stock Transfer
2282
- stock_transfers: Stock Transfers
2283
1490
  stop: Stop
2284
1491
  store: Store
2285
1492
  store_credit:
2286
- additional_payment_needed: Select another payment method for the remaining <strong>%{amount}</strong>.
2287
1493
  allocated: Added
2288
- applicable_amount: "<strong>%{amount}</strong> in store credit will be applied to this order."
2289
1494
  authorized: Authorized
2290
- available_amount: You have <strong>%{amount}</strong> in Store Credit available!
2291
1495
  captured: Used
2292
1496
  credit: Credit
2293
1497
  eligible: Eligible
2294
- errors:
2295
- cannot_change_used_store_credit: You cannot change a store credit that has already been used
2296
- unable_to_create: Unable to create store credit
2297
- unable_to_delete: Unable to delete store credit
2298
- unable_to_fund: Unable to pay for order using store credits
2299
- unable_to_update: Unable to update store credit
2300
- remaining: Remaining
2301
- remaining_amount: You have <strong>%{amount}</strong> remaining in your account's Store Credit.
2302
- remove: Remove
2303
- store_credit_categories: Store Credit Categories
2304
1498
  store_credit_events: Store Credit Events
2305
1499
  store_credit_name: Store Credit
2306
1500
  store_credit_payment_method:
2307
1501
  currency_mismatch: Store credit currency does not match order currency
2308
1502
  insufficient_authorized_amount: Unable to capture more than authorized amount
2309
1503
  insufficient_funds: Store credit amount remaining is not sufficient
2310
- select_one_store_credit: Select store credit to go towards remaining balance
2311
1504
  successful_action: Successful store credit %{action}
2312
1505
  unable_to_credit: 'Unable to credit code: %{auth_code}'
2313
1506
  unable_to_find: Could not find store credit
@@ -2315,100 +1508,37 @@ en:
2315
1508
  unable_to_void: 'Unable to void code: %{auth_code}'
2316
1509
  store_credits: Store Credits
2317
1510
  store_default: Default store
2318
- store_details: Store details
2319
- store_errors:
2320
- unable_to_create: Unable to create store.
2321
- unable_to_delete: Unable to delete store.
2322
- unable_to_update: Unable to update store.
2323
- store_form:
2324
- 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>
2325
- 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)
2326
- customer_support_email_help: This email is visible to your Store visitors in the Footer section
2327
- default_country_help: This is the Country that will be pre-selected on the Checkout Address form
2328
- footer_help: This content is visible in the footer section of your Store
2329
- 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
2330
- mail_from_address_help: This is the email which will be the sender of all your Store emails (Order Confirmation, Shipment notification etc)
2331
- 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
2332
- seo_robots: Please check <a href='https://developers.google.com/search/reference/robots_meta_tag' target='_blank'>this page for more help</a>
2333
- social_help: If you want to link to your social accounts in the footer part of your website please fill below fields
2334
1511
  store_name: Store name
2335
- store_name_help: This is the name of your store. It will be displayed in the header and in the footer.
2336
- store_not_set_as_default: Couldn't set store %{store} as a default store
2337
- store_set_as_default: Store %{store} is now a default store
2338
- store_set_default_button: Set as default
2339
1512
  stores: Stores
2340
1513
  street_address: Street Address
2341
- street_address_2: Street Address (cont'd)
2342
1514
  subscribed: Subscribed
2343
1515
  subtotal: Subtotal
2344
1516
  subtract: Subtract
2345
1517
  success: Success
2346
- successfully_created: "%{resource} has been successfully created!"
2347
- successfully_refunded: "%{resource} has been successfully refunded!"
2348
- successfully_removed: "%{resource} has been successfully removed!"
2349
- successfully_updated: "%{resource} has been successfully updated!"
2350
1518
  summary: Summary
2351
1519
  support: Support
2352
1520
  supported_currencies: Supported Currencies
2353
- supported_currencies_long: A comma separated list of supported currencies
2354
1521
  supported_locales: Supported Locales
2355
- switch_store: Switch store
2356
- switch_team: Switch team
2357
1522
  tags: Tags
2358
- tags_placeholder: Add Tags
2359
1523
  tax: Tax
2360
- tax_categories: Tax Categories
2361
1524
  tax_category: Tax Category
2362
1525
  tax_code: Tax Code
2363
- tax_included: Tax (incl.)
2364
1526
  tax_inclusive: Tax inclusive
2365
- 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)
2366
1527
  tax_rates: Tax Rates
2367
1528
  taxes: Taxes
2368
1529
  taxon: Taxon
2369
- taxon_edit: Edit Taxon
2370
- taxon_missing_alt: Category banner description
2371
- taxon_placeholder: Add a Taxon
2372
- taxon_rule:
2373
- choose_taxons: Choose taxons
2374
- label: Order must contain x amount of these taxons
2375
- match_all: all
2376
- match_any: at least one
2377
1530
  taxonomies: Categories
2378
1531
  taxonomy: Category
2379
1532
  taxonomy_brands_name: Brands
2380
1533
  taxonomy_categories_name: Categories
2381
1534
  taxonomy_collections_name: Collections
2382
- taxonomy_edit: Edit taxonomy
2383
- taxonomy_tree_error: The requested change has not been accepted and the tree has been returned to its previous state, please try again.
2384
- 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."
2385
1535
  taxons: Categories
2386
1536
  terms_of_service: Terms of Service
2387
1537
  test: Test
2388
1538
  test_mode: Test Mode
2389
- text_alignment: Text alignment
2390
- thank_you_for_your_order: Thank you for your business. Please print out a copy of this confirmation page for your records.
2391
1539
  theme: Theme
2392
- theme_copied: Theme has been successfully copied.
2393
- theme_duplicating: Theme is still duplicating
2394
- theme_is_now_live: Theme is now live
2395
- theme_not_copied: 'Theme could not be copied with errors: %{error}'
2396
- theme_settings:
2397
- accent_color: Accent color
2398
- background_color: Background color
2399
- border_color: Border color
2400
- brand_color: Brand color
2401
- button_border_color: Button border color
2402
- button_text_color: Button text color
2403
- danger_color: Danger color
2404
- input_text_color: Input text color
2405
- neutral_color: Neutral color
2406
- success_color: Success color
2407
- text_color: Text color
2408
1540
  themes: Themes
2409
1541
  there_are_no_items_for_this_order: There are no items for this order
2410
- there_were_problems_with_the_following_fields: There were problems with the following fields
2411
- this_order_has_already_received_a_refund: This order has already received a refund
2412
1542
  thumbnail: Thumbnail
2413
1543
  tiered_flat_rate: Tiered Flat Rate
2414
1544
  tiered_percent: Tiered Percent
@@ -2416,112 +1546,44 @@ en:
2416
1546
  time: Time
2417
1547
  timezone: Timezone
2418
1548
  title: Title
2419
- title_link: Title link
2420
1549
  to: To
2421
- to_add_variants_you_must_first_define: To add variants, you must first define
2422
- toggle_menu: Toggle menu
2423
- top_suggestions: Top suggestions
2424
1550
  total: Total
2425
- total_per_item: Total per item
2426
- total_pre_tax_refund: Total Pre-Tax Refund
2427
- total_price: Total price
2428
- total_sales: Total Sales
2429
1551
  track_inventory: Track Inventory
2430
- track_items: Track items
2431
- track_quantity: Track quantity
2432
1552
  tracking: Tracking
2433
1553
  tracking_number: Tracking Number
2434
1554
  tracking_url: Tracking URL
2435
- tracking_url_placeholder: e.g. http://quickship.com/package?num=:tracking
2436
1555
  transaction_id: Transaction ID
2437
- transaction_id_help: This is the ID of the transaction that was created in the 3rd party payment gateway.
2438
- transfer_from_location: Transfer From
2439
- transfer_stock: Transfer Stock
2440
1556
  transfer_to_location: Transfer To
2441
1557
  translations: Translations
2442
- translations_for: "%{resource_name} translations"
2443
1558
  tree: Tree
2444
- true_label: 'TRUE'
2445
- try_removing_filters: Try removing some filters to see more products
2446
1559
  twitter: Twitter
2447
1560
  type: Type
2448
- type_to_search: Type to search
2449
- type_to_search_customers: Type to search for customers
2450
- type_to_search_products: Type to search for products
2451
1561
  unable_to_connect_to_gateway: Unable to connect to gateway.
2452
- unable_to_create_reimbursements: Unable to create reimbursements because there are items pending manual intervention.
2453
- under_price: Under %{price}
2454
1562
  unit: Unit
2455
1563
  unit_system: Unit system
2456
- unit_system_help: This will be used as the default unit system for your store. You can override this on a per-product basis.
2457
- unit_systems:
2458
- imperial_system: Imperial system
2459
- metric: metric
2460
- metric_system: Metric system
2461
1564
  unlimited: Unlimited
2462
- unlock: Unlock
2463
- unprocessable_entity: Unprocessable Entity
2464
- unprocessable_entity_message: Your request could not be processed. Please check the form for errors and try again.
2465
- unrecognized_card_type: Unrecognized card type
2466
- unshippable_items: Unshippable Items
2467
1565
  update: Update
2468
- update_address: Update address
2469
- update_billing_address: Update billing address
2470
- update_contact_information: Update contact information
2471
- update_shipping_address: Update shipping address
2472
1566
  updated_at: Updated at
2473
1567
  updating: Updating
2474
- upload_image: Upload image
2475
1568
  url: URL
2476
1569
  usage_limit: Usage Limit
2477
- use_app_default: Use App Default
2478
- use_billing_address: Use Billing Address
2479
- use_existing_cc: Use an existing card on file
2480
- use_new_cc: Use a new card
2481
- use_new_cc_or_payment_method: Use a new card / payment method
2482
- use_s3: Use Amazon S3 For Images
2483
- use_shipping_address: Use Shipping Address
2484
1570
  used: Used
2485
1571
  user: User
2486
1572
  user_ids: Users
2487
- user_not_found: User not found
2488
- user_rule:
2489
- choose_users: 'Input the full email address of a registered customer(s) in the search field to whom this discount should apply:'
2490
1573
  users: Users
2491
1574
  validation:
2492
- cannot_be_less_than_shipped_units: cannot be less than the number of shipped units.
2493
- cannot_destroy_line_item_as_inventory_units_have_shipped: Cannot destroy line item as some inventory units have shipped.
2494
- exceeds_available_stock: exceeds available stock. Please ensure line items have a valid quantity.
2495
- is_too_large: is too large -- stock on hand cannot cover requested quantity!
2496
1575
  must_be_int: must be an integer
2497
- must_be_non_negative: must be a non-negative value
2498
1576
  unpaid_amount_not_zero: 'Amount was not fully reimbursed. Still due: %{amount}'
2499
1577
  value: Value
2500
1578
  variant: Variant
2501
- variant_placeholder: Choose a variant
2502
- variant_prices_search_placeholder: Search for SKU or variant name...
2503
1579
  variants: Variants
2504
- variants_count: Variants count
2505
1580
  vendor: Vendor
2506
- vendors: Vendors
2507
1581
  verified: Verified
2508
1582
  verified_at: Verified at
2509
1583
  version: Version
2510
1584
  view: View
2511
- view_all: View all
2512
- view_full_details: View full details
2513
- view_full_size: View full size
2514
- view_store: View store
2515
- view_your_store: View your store
2516
1585
  visibility: Visibility
2517
- visits: Visits
2518
1586
  void: Void
2519
- volume_rule:
2520
- cart_total: Cart Total Quantity
2521
- line_item: Line Item Quantity
2522
- we_are_busy_updating: We're updating the %{store_name} homepage.
2523
- we_are_busy_updating_page: We're busy updating this page.
2524
- we_will_be_back: We will be back.
2525
1587
  webhook_endpoints: Webhook Endpoints
2526
1588
  webhook_mailer:
2527
1589
  endpoint_disabled:
@@ -2536,21 +1598,9 @@ en:
2536
1598
  webhooks: Webhooks
2537
1599
  weight: Weight
2538
1600
  weight_unit: Weight unit
2539
- weight_unit_help: This will be used as the default weight unit for your store. You can override this on a per-product basis.
2540
- weight_units:
2541
- gram: Gram (g)
2542
- kilogram: Kilogram (kg)
2543
- ounce: Ounce (oz)
2544
- pound: Pound (lb)
2545
- what_is_a_cvv: What is a (CVV) Credit Card Code?
2546
- what_is_this: What's This?
2547
1601
  width: Width
2548
1602
  wishlist: Wishlist
2549
- without_taxon: Without taxon
2550
1603
  year: Year
2551
- you_have_no_orders_yet: You have no orders yet
2552
- your_cart_is_empty: Your cart is empty
2553
- your_order_is_empty_add_product: Your order is empty, please search for and add a product above
2554
1604
  zip: Zip
2555
1605
  zipcode: Zip Code
2556
1606
  zipcode_required: Zip Code Required