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