workarea-admin 3.4.45 → 3.5.0.beta.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (388) hide show
  1. checksums.yaml +4 -4
  2. data/LICENSE.txt +52 -0
  3. data/app/assets/images/workarea/admin/email_logo.png +0 -0
  4. data/app/assets/javascripts/workarea/admin/application.js.erb +11 -1
  5. data/app/assets/javascripts/workarea/admin/config.js.erb +96 -0
  6. data/app/assets/javascripts/workarea/admin/modules/active_by_segment_tooltips.js +108 -0
  7. data/app/assets/javascripts/workarea/admin/modules/calendars.js +1 -1
  8. data/app/assets/javascripts/workarea/admin/modules/categorized_autocomplete_fields.js +1 -1
  9. data/app/assets/javascripts/workarea/admin/modules/impersonation_notification.js +44 -0
  10. data/app/assets/javascripts/workarea/admin/modules/jump_to_menus.js +74 -0
  11. data/app/assets/javascripts/workarea/admin/modules/new_navigation_taxons.js +1 -2
  12. data/app/assets/javascripts/workarea/admin/modules/release_reminder.js +1 -0
  13. data/app/assets/javascripts/workarea/admin/modules/selects.js +33 -0
  14. data/app/assets/javascripts/workarea/admin/modules/style_guide_autocomplete_fields.js +42 -0
  15. data/app/assets/javascripts/workarea/admin/modules/timeline_report_chart.js +105 -0
  16. data/app/assets/javascripts/workarea/admin/modules/toggle_elements.js +27 -0
  17. data/app/assets/javascripts/workarea/admin/modules/tribute_areas.js +91 -0
  18. data/app/assets/javascripts/workarea/admin/templates/chart_legend.jst.ejs +17 -9
  19. data/app/assets/javascripts/workarea/admin/templates/jump_to_menu.jst.ejs +13 -0
  20. data/app/assets/stylesheets/workarea/admin/application.scss.erb +3 -0
  21. data/app/assets/stylesheets/workarea/admin/base/_forms.scss +2 -2
  22. data/app/assets/stylesheets/workarea/admin/components/_activity.scss +24 -16
  23. data/app/assets/stylesheets/workarea/admin/components/_activity_group.scss +3 -19
  24. data/app/assets/stylesheets/workarea/admin/components/_box.scss +21 -5
  25. data/app/assets/stylesheets/workarea/admin/components/_calendar.scss +102 -140
  26. data/app/assets/stylesheets/workarea/admin/components/_chart_legend.scss +10 -13
  27. data/app/assets/stylesheets/workarea/admin/components/_checkbox.scss +49 -23
  28. data/app/assets/stylesheets/workarea/admin/components/_content_block_list.scss +5 -3
  29. data/app/assets/stylesheets/workarea/admin/components/_date_marker.scss +24 -3
  30. data/app/assets/stylesheets/workarea/admin/components/_index_table.scss +5 -0
  31. data/app/assets/stylesheets/workarea/admin/components/_jump_to_menu.scss +57 -0
  32. data/app/assets/stylesheets/workarea/admin/components/_product_summary.scss +46 -0
  33. data/app/assets/stylesheets/workarea/admin/components/_toggle_button.scss +1 -4
  34. data/app/assets/stylesheets/workarea/admin/email/_base.scss +30 -2
  35. data/app/assets/stylesheets/workarea/admin/email/_components.scss +66 -5
  36. data/app/assets/stylesheets/workarea/admin/email/_helpers.scss +16 -5
  37. data/app/assets/stylesheets/workarea/admin/email/{_settings.scss → _settings.scss.erb} +4 -4
  38. data/app/controllers/workarea/admin/application_controller.rb +2 -4
  39. data/app/controllers/workarea/admin/bulk_action_sequential_product_edits_controller.rb +4 -6
  40. data/app/controllers/workarea/admin/bulk_variant_saving.rb +1 -2
  41. data/app/controllers/workarea/admin/catalog_products_controller.rb +4 -6
  42. data/app/controllers/workarea/admin/catalog_variants_controller.rb +2 -3
  43. data/app/controllers/workarea/admin/comments_controller.rb +9 -0
  44. data/app/controllers/workarea/admin/configurations_controller.rb +29 -0
  45. data/app/controllers/workarea/admin/content_assets_controller.rb +3 -1
  46. data/app/controllers/workarea/admin/content_blocks_controller.rb +1 -7
  47. data/app/controllers/workarea/admin/create_catalog_products_controller.rb +2 -8
  48. data/app/controllers/workarea/admin/create_release_undos_controller.rb +43 -0
  49. data/app/controllers/workarea/admin/create_segments_controller.rb +68 -0
  50. data/app/controllers/workarea/admin/dashboards_controller.rb +2 -0
  51. data/app/controllers/workarea/admin/data_file_imports_controller.rb +7 -2
  52. data/app/controllers/workarea/admin/fulfillment_skus_controller.rb +58 -0
  53. data/app/controllers/workarea/admin/fulfillment_tokens_controller.rb +56 -0
  54. data/app/controllers/workarea/admin/guest_browsings_controller.rb +2 -2
  55. data/app/controllers/workarea/admin/impersonations_controller.rb +3 -4
  56. data/app/controllers/workarea/admin/orders_controller.rb +3 -0
  57. data/app/controllers/workarea/admin/pricing_discount_redemptions_controller.rb +13 -0
  58. data/app/controllers/workarea/admin/pricing_overrides_controller.rb +1 -1
  59. data/app/controllers/workarea/admin/product_rules_controller.rb +1 -2
  60. data/app/controllers/workarea/admin/releases_controller.rb +8 -13
  61. data/app/controllers/workarea/admin/reports_controller.rb +18 -0
  62. data/app/controllers/workarea/admin/segment_overrides_controller.rb +19 -0
  63. data/app/controllers/workarea/admin/segment_rules_controller.rb +62 -0
  64. data/app/controllers/workarea/admin/segments_controller.rb +48 -0
  65. data/app/controllers/workarea/admin/tax_rates_controller.rb +62 -1
  66. data/app/controllers/workarea/admin/unsubscribes_controller.rb +40 -0
  67. data/app/controllers/workarea/admin/users_controller.rb +19 -0
  68. data/app/helpers/workarea/admin/application_helper.rb +2 -12
  69. data/app/helpers/workarea/admin/configurations_helper.rb +9 -0
  70. data/app/helpers/workarea/admin/content_helper.rb +2 -3
  71. data/app/helpers/workarea/admin/fulfillment_helper.rb +10 -0
  72. data/app/helpers/workarea/admin/icons_helper.rb +26 -0
  73. data/app/helpers/workarea/admin/navigation_helper.rb +1 -0
  74. data/app/helpers/workarea/admin/pricing_overrides_helper.rb +1 -1
  75. data/app/helpers/workarea/admin/products_helper.rb +13 -0
  76. data/app/helpers/workarea/admin/releases_helper.rb +5 -21
  77. data/app/helpers/workarea/admin/segments_helper.rb +68 -0
  78. data/app/helpers/workarea/admin/settings_helper.rb +11 -3
  79. data/app/mailers/workarea/admin/comment_mailer.rb +3 -3
  80. data/app/mailers/workarea/admin/status_report_mailer.rb +19 -6
  81. data/app/view_models/workarea/admin/bulk_action_product_edit_view_model.rb +5 -0
  82. data/app/view_models/workarea/admin/changeset_view_model.rb +15 -3
  83. data/app/view_models/workarea/admin/code_list_view_model.rb +1 -1
  84. data/app/view_models/workarea/admin/commentable_view_model.rb +4 -0
  85. data/app/view_models/workarea/admin/content_view_model.rb +2 -0
  86. data/app/view_models/workarea/admin/dashboards/marketing_view_model.rb +5 -9
  87. data/app/view_models/workarea/admin/dashboards/reports_view_model.rb +25 -0
  88. data/app/view_models/workarea/admin/discounts/buy_some_get_some_view_model.rb +6 -0
  89. data/app/view_models/workarea/admin/discounts/category_view_model.rb +6 -0
  90. data/app/view_models/workarea/admin/discounts/free_gift_view_model.rb +6 -0
  91. data/app/view_models/workarea/admin/discounts/order_total_view_model.rb +6 -0
  92. data/app/view_models/workarea/admin/discounts/product_attribute_view_model.rb +6 -0
  93. data/app/view_models/workarea/admin/discounts/product_view_model.rb +6 -0
  94. data/app/view_models/workarea/admin/discounts/quantity_fixed_price_view_model.rb +6 -0
  95. data/app/view_models/workarea/admin/discounts/shipping_view_model.rb +6 -0
  96. data/app/view_models/workarea/admin/featured_products_view_model.rb +6 -12
  97. data/app/view_models/workarea/admin/fulfillment_sku_view_model.rb +22 -0
  98. data/app/view_models/workarea/admin/fulfillment_token_view_model.rb +15 -0
  99. data/app/view_models/workarea/admin/fulfillment_view_model.rb +14 -0
  100. data/app/view_models/workarea/admin/insight_view_model.rb +2 -2
  101. data/app/view_models/workarea/admin/insights/product_view_model.rb +2 -2
  102. data/app/view_models/workarea/admin/insights/segment_view_model.rb +25 -0
  103. data/app/view_models/workarea/admin/order_view_model.rb +4 -0
  104. data/app/view_models/workarea/admin/pricing_sku_view_model.rb +0 -51
  105. data/app/view_models/workarea/admin/product_rules_preview_view_model.rb +2 -2
  106. data/app/view_models/workarea/admin/product_view_model.rb +26 -5
  107. data/app/view_models/workarea/admin/recommendations_view_model.rb +3 -11
  108. data/app/view_models/workarea/admin/release_calendar_view_model.rb +4 -9
  109. data/app/view_models/workarea/admin/release_event_view_model.rb +8 -41
  110. data/app/view_models/workarea/admin/release_view_model.rb +10 -17
  111. data/app/view_models/workarea/admin/releases_feed_view_model.rb +5 -13
  112. data/app/view_models/workarea/admin/reports/customers_view_model.rb +4 -2
  113. data/app/view_models/workarea/admin/reports/low_inventory_view_model.rb +2 -5
  114. data/app/view_models/workarea/admin/reports/sales_by_category_view_model.rb +2 -5
  115. data/app/view_models/workarea/admin/reports/sales_by_discount_view_model.rb +2 -5
  116. data/app/view_models/workarea/admin/reports/sales_by_product_view_model.rb +2 -5
  117. data/app/view_models/workarea/admin/reports/sales_by_tender_view_model.rb +13 -0
  118. data/app/view_models/workarea/admin/reports/timeline_view_model.rb +74 -0
  119. data/app/view_models/workarea/admin/search_customization_product_rules_view_model.rb +1 -1
  120. data/app/view_models/workarea/admin/segment_view_model.rb +19 -0
  121. data/app/view_models/workarea/admin/user_view_model.rb +6 -9
  122. data/app/view_models/workarea/admin/variant_view_model.rb +8 -0
  123. data/app/views/layouts/workarea/admin/application.html.haml +1 -1
  124. data/app/views/layouts/workarea/admin/email.html.haml +35 -41
  125. data/app/views/workarea/admin/activities/_configuration_admin_update.html.haml +10 -0
  126. data/app/views/workarea/admin/activities/_fulfillment_sku_create.html.haml +12 -0
  127. data/app/views/workarea/admin/activities/_fulfillment_sku_destroy.html.haml +10 -0
  128. data/app/views/workarea/admin/activities/_fulfillment_sku_update.html.haml +10 -0
  129. data/app/views/workarea/admin/activities/_segment_create.html.haml +12 -0
  130. data/app/views/workarea/admin/activities/_segment_destroy.html.haml +10 -0
  131. data/app/views/workarea/admin/activities/_segment_update.html.haml +10 -0
  132. data/app/views/workarea/admin/activities/show.html.haml +18 -11
  133. data/app/views/workarea/admin/bulk_action_product_edits/edit.html.haml +4 -0
  134. data/app/views/workarea/admin/bulk_action_product_edits/review.html.haml +11 -4
  135. data/app/views/workarea/admin/bulk_action_sequential_product_edits/product.html.haml +1 -1
  136. data/app/views/workarea/admin/catalog_categories/_cards.html.haml +3 -1
  137. data/app/views/workarea/admin/catalog_categories/edit.html.haml +1 -4
  138. data/app/views/workarea/admin/catalog_categories/index.html.haml +1 -0
  139. data/app/views/workarea/admin/catalog_product_images/edit.html.haml +1 -1
  140. data/app/views/workarea/admin/catalog_products/_cards.html.haml +2 -4
  141. data/app/views/workarea/admin/catalog_products/edit.html.haml +2 -1
  142. data/app/views/workarea/admin/catalog_products/index.html.haml +4 -2
  143. data/app/views/workarea/admin/catalog_products/insights.html.haml +2 -0
  144. data/app/views/workarea/admin/catalog_variants/edit.html.haml +6 -1
  145. data/app/views/workarea/admin/catalog_variants/index.html.haml +2 -0
  146. data/app/views/workarea/admin/catalog_variants/new.html.haml +5 -0
  147. data/app/views/workarea/admin/changesets/fields/_active_segment_ids.html.haml +4 -0
  148. data/app/views/workarea/admin/comment_mailer/notify.html.haml +27 -19
  149. data/app/views/workarea/admin/comments/index.html.haml +18 -12
  150. data/app/views/workarea/admin/configurations/_overridden.html.haml +2 -0
  151. data/app/views/workarea/admin/configurations/show.html.haml +49 -0
  152. data/app/views/workarea/admin/configurations/types/_array.html.haml +3 -0
  153. data/app/views/workarea/admin/configurations/types/_boolean.html.haml +1 -0
  154. data/app/views/workarea/admin/configurations/types/_duration.html.haml +2 -0
  155. data/app/views/workarea/admin/configurations/types/_encrypted.html.haml +1 -0
  156. data/app/views/workarea/admin/configurations/types/_float.html.haml +1 -0
  157. data/app/views/workarea/admin/configurations/types/_hash.html.haml +17 -0
  158. data/app/views/workarea/admin/configurations/types/_integer.html.haml +1 -0
  159. data/app/views/workarea/admin/configurations/types/_select.html.haml +1 -0
  160. data/app/views/workarea/admin/configurations/types/_string.html.haml +1 -0
  161. data/app/views/workarea/admin/configurations/types/_symbol.html.haml +1 -0
  162. data/app/views/workarea/admin/content/_edit.html.haml +8 -1
  163. data/app/views/workarea/admin/content/_form.html.haml +13 -7
  164. data/app/views/workarea/admin/content/advanced.html.haml +18 -10
  165. data/app/views/workarea/admin/content_assets/_cards.html.haml +3 -0
  166. data/app/views/workarea/admin/content_assets/_summary.html.haml +1 -1
  167. data/app/views/workarea/admin/content_assets/edit.html.haml +6 -0
  168. data/app/views/workarea/admin/content_assets/index.html.haml +7 -2
  169. data/app/views/workarea/admin/content_assets/new.html.haml +10 -3
  170. data/app/views/workarea/admin/content_blocks/_asset.html.haml +8 -1
  171. data/app/views/workarea/admin/content_pages/_cards.html.haml +1 -0
  172. data/app/views/workarea/admin/content_pages/edit.html.haml +1 -1
  173. data/app/views/workarea/admin/content_pages/index.html.haml +1 -0
  174. data/app/views/workarea/admin/create_catalog_categories/publish.html.haml +1 -0
  175. data/app/views/workarea/admin/create_catalog_products/content.html.haml +1 -1
  176. data/app/views/workarea/admin/create_catalog_products/publish.html.haml +1 -0
  177. data/app/views/workarea/admin/create_content_pages/publish.html.haml +1 -0
  178. data/app/views/workarea/admin/create_pricing_discounts/publish.html.haml +1 -0
  179. data/app/views/workarea/admin/create_release_undos/new.html.haml +45 -0
  180. data/app/views/workarea/admin/create_release_undos/review.html.haml +51 -0
  181. data/app/views/workarea/admin/create_releases/plan.html.haml +4 -3
  182. data/app/views/workarea/admin/create_releases/setup.html.haml +8 -12
  183. data/app/views/workarea/admin/create_segments/rules.html.haml +55 -0
  184. data/app/views/workarea/admin/create_segments/setup.html.haml +42 -0
  185. data/app/views/workarea/admin/create_users/admin.html.haml +0 -2
  186. data/app/views/workarea/admin/dashboards/catalog.html.haml +1 -0
  187. data/app/views/workarea/admin/dashboards/people.html.haml +1 -1
  188. data/app/views/workarea/admin/dashboards/reports.html.haml +31 -0
  189. data/app/views/workarea/admin/dashboards/settings.html.haml +23 -3
  190. data/app/views/workarea/admin/data_file_imports/new.html.haml +4 -2
  191. data/app/views/workarea/admin/data_file_mailer/export.html.haml +2 -0
  192. data/app/views/workarea/admin/data_file_mailer/import.html.haml +2 -0
  193. data/app/views/workarea/admin/data_file_mailer/import_failure.html.haml +2 -0
  194. data/app/views/workarea/admin/facets/_applied.html.haml +1 -1
  195. data/app/views/workarea/admin/featured_products/_selected.html.haml +3 -2
  196. data/app/views/workarea/admin/featured_products/_unselected.html.haml +3 -1
  197. data/app/views/workarea/admin/featured_products/edit.html.haml +3 -3
  198. data/app/views/workarea/admin/featured_products/select.html.haml +0 -1
  199. data/app/views/workarea/admin/fulfillment_skus/_aux_navigation.html.haml +3 -0
  200. data/app/views/workarea/admin/fulfillment_skus/_cards.html.haml +57 -0
  201. data/app/views/workarea/admin/fulfillment_skus/_summary.html.haml +6 -0
  202. data/app/views/workarea/admin/fulfillment_skus/edit.html.haml +53 -0
  203. data/app/views/workarea/admin/fulfillment_skus/index.html.haml +75 -0
  204. data/app/views/workarea/admin/fulfillment_skus/new.html.haml +41 -0
  205. data/app/views/workarea/admin/fulfillment_skus/show.html.haml +17 -0
  206. data/app/views/workarea/admin/fulfillment_tokens/index.html.haml +73 -0
  207. data/app/views/workarea/admin/fulfillments/show.html.haml +41 -6
  208. data/app/views/workarea/admin/insights/_most_discounted_products.html.haml +4 -4
  209. data/app/views/workarea/admin/inventory_skus/show.html.haml +1 -1
  210. data/app/views/workarea/admin/navigation_menus/_summary.html.haml +1 -1
  211. data/app/views/workarea/admin/navigation_menus/edit.html.haml +1 -1
  212. data/app/views/workarea/admin/navigation_menus/index.html.haml +3 -1
  213. data/app/views/workarea/admin/navigation_redirects/index.html.haml +0 -5
  214. data/app/views/workarea/admin/navigation_taxons/index.html.haml +20 -4
  215. data/app/views/workarea/admin/orders/_cards.html.haml +23 -5
  216. data/app/views/workarea/admin/orders/attributes.html.haml +4 -1
  217. data/app/views/workarea/admin/orders/fraud.html.haml +43 -0
  218. data/app/views/workarea/admin/orders/index.html.haml +1 -0
  219. data/app/views/workarea/admin/orders/timeline.html.haml +1 -1
  220. data/app/views/workarea/admin/pricing_discount_code_lists/_cards.html.haml +1 -1
  221. data/app/views/workarea/admin/pricing_discount_code_lists/promo_codes.html.haml +1 -1
  222. data/app/views/workarea/admin/pricing_discount_redemptions/index.html.haml +44 -0
  223. data/app/views/workarea/admin/pricing_discounts/_cards.html.haml +22 -0
  224. data/app/views/workarea/admin/pricing_discounts/conditions/_segments.html.haml +5 -0
  225. data/app/views/workarea/admin/pricing_discounts/edit.html.haml +5 -15
  226. data/app/views/workarea/admin/pricing_discounts/index.html.haml +1 -0
  227. data/app/views/workarea/admin/pricing_discounts/properties/_buy_some_get_some.html.haml +1 -0
  228. data/app/views/workarea/admin/pricing_discounts/properties/_category.html.haml +1 -0
  229. data/app/views/workarea/admin/pricing_discounts/properties/_free_gift.html.haml +1 -0
  230. data/app/views/workarea/admin/pricing_discounts/properties/_order_total.html.haml +1 -0
  231. data/app/views/workarea/admin/pricing_discounts/properties/_product.html.haml +1 -0
  232. data/app/views/workarea/admin/pricing_discounts/properties/_product_attribute.html.haml +2 -1
  233. data/app/views/workarea/admin/pricing_discounts/properties/_quantity_fixed_price.html.haml +1 -0
  234. data/app/views/workarea/admin/pricing_discounts/properties/_shipping.html.haml +1 -0
  235. data/app/views/workarea/admin/pricing_skus/_cards.html.haml +7 -7
  236. data/app/views/workarea/admin/pricing_skus/edit.html.haml +5 -5
  237. data/app/views/workarea/admin/pricing_skus/index.html.haml +4 -4
  238. data/app/views/workarea/admin/pricing_skus/new.html.haml +6 -9
  239. data/app/views/workarea/admin/product_rules/_card.html.haml +2 -2
  240. data/app/views/workarea/admin/product_rules/_form.html.haml +1 -0
  241. data/app/views/workarea/admin/product_rules/index.html.haml +2 -0
  242. data/app/views/workarea/admin/releases/_cards.html.haml +50 -12
  243. data/app/views/workarea/admin/releases/_publish.html.haml +1 -1
  244. data/app/views/workarea/admin/releases/edit.html.haml +33 -46
  245. data/app/views/workarea/admin/releases/index.html.haml +81 -90
  246. data/app/views/workarea/admin/releases/list.html.haml +107 -0
  247. data/app/views/workarea/admin/releases/original.html.haml +50 -0
  248. data/app/views/workarea/admin/releases/show.html.haml +3 -17
  249. data/app/views/workarea/admin/releases/undo.html.haml +64 -0
  250. data/app/views/workarea/admin/reports/average_order_value.html.haml +1 -1
  251. data/app/views/workarea/admin/reports/customers.html.haml +4 -0
  252. data/app/views/workarea/admin/reports/first_time_vs_returning_sales.html.haml +1 -1
  253. data/app/views/workarea/admin/reports/reference.html.haml +19 -60
  254. data/app/views/workarea/admin/reports/sales_by_country.html.haml +6 -0
  255. data/app/views/workarea/admin/reports/sales_by_product.html.haml +6 -0
  256. data/app/views/workarea/admin/reports/sales_by_sku.html.haml +6 -0
  257. data/app/views/workarea/admin/reports/sales_by_tender.html.haml +30 -0
  258. data/app/views/workarea/admin/reports/sales_over_time.html.haml +5 -1
  259. data/app/views/workarea/admin/reports/timeline.html.haml +20 -0
  260. data/app/views/workarea/admin/search_customizations/_cards.html.haml +1 -0
  261. data/app/views/workarea/admin/search_customizations/edit.html.haml +1 -1
  262. data/app/views/workarea/admin/search_customizations/index.html.haml +1 -0
  263. data/app/views/workarea/admin/searches/show.html.haml +6 -5
  264. data/app/views/workarea/admin/segment_overrides/show.html.haml +29 -0
  265. data/app/views/workarea/admin/segment_rules/_form.html.haml +13 -0
  266. data/app/views/workarea/admin/segment_rules/fields/_browser_info.html.haml +13 -0
  267. data/app/views/workarea/admin/segment_rules/fields/_geolocation.html.haml +4 -0
  268. data/app/views/workarea/admin/segment_rules/fields/_last_order.html.haml +3 -0
  269. data/app/views/workarea/admin/segment_rules/fields/_logged_in.html.haml +2 -0
  270. data/app/views/workarea/admin/segment_rules/fields/_orders.html.haml +5 -0
  271. data/app/views/workarea/admin/segment_rules/fields/_revenue.html.haml +9 -0
  272. data/app/views/workarea/admin/segment_rules/fields/_sessions.html.haml +5 -0
  273. data/app/views/workarea/admin/segment_rules/fields/_tags.html.haml +4 -0
  274. data/app/views/workarea/admin/segment_rules/fields/_traffic_referrer.html.haml +13 -0
  275. data/app/views/workarea/admin/segment_rules/geolocation_options.json.jbuilder +4 -0
  276. data/app/views/workarea/admin/segment_rules/index.html.haml +25 -0
  277. data/app/views/workarea/admin/segment_rules/summaries/_browser_info.html.haml +11 -0
  278. data/app/views/workarea/admin/segment_rules/summaries/_geolocation.html.haml +2 -0
  279. data/app/views/workarea/admin/segment_rules/summaries/_last_order.html.haml +2 -0
  280. data/app/views/workarea/admin/segment_rules/summaries/_logged_in.html.haml +5 -0
  281. data/app/views/workarea/admin/segment_rules/summaries/_orders.html.haml +6 -0
  282. data/app/views/workarea/admin/segment_rules/summaries/_revenue.html.haml +7 -0
  283. data/app/views/workarea/admin/segment_rules/summaries/_sessions.html.haml +6 -0
  284. data/app/views/workarea/admin/segment_rules/summaries/_tags.html.haml +2 -0
  285. data/app/views/workarea/admin/segment_rules/summaries/_traffic_referrer.html.haml +10 -0
  286. data/app/views/workarea/admin/segments/_cards.html.haml +81 -0
  287. data/app/views/workarea/admin/segments/_publish.html.haml +10 -0
  288. data/app/views/workarea/admin/segments/edit.html.haml +41 -0
  289. data/app/views/workarea/admin/segments/index.html.haml +64 -0
  290. data/app/views/workarea/admin/segments/insights.html.haml +52 -0
  291. data/app/views/workarea/admin/segments/show.html.haml +20 -0
  292. data/app/views/workarea/admin/shared/_active_field.html.haml +17 -0
  293. data/app/views/workarea/admin/shared/_bulk_actions.html.haml +10 -8
  294. data/app/views/workarea/admin/shared/_primary_nav.html.haml +5 -2
  295. data/app/views/workarea/admin/shared/_toggle_button.html.haml +1 -1
  296. data/app/views/workarea/admin/shipping_services/edit.html.haml +0 -4
  297. data/app/views/workarea/admin/shipping_services/new.html.haml +0 -4
  298. data/app/views/workarea/admin/status_report_mailer/report.html.haml +83 -86
  299. data/app/views/workarea/admin/style_guides/components/_activity.html.haml +3 -5
  300. data/app/views/workarea/admin/style_guides/components/_activity_group.html.haml +9 -15
  301. data/app/views/workarea/admin/style_guides/components/_box.html.haml +12 -7
  302. data/app/views/workarea/admin/style_guides/components/_checkbox.html.haml +21 -2
  303. data/app/views/workarea/admin/style_guides/components/_release_changeset.html.haml +3 -5
  304. data/app/views/workarea/admin/tax_rates/edit.html.haml +64 -0
  305. data/app/views/workarea/admin/tax_rates/index.html.haml +59 -20
  306. data/app/views/workarea/admin/tax_rates/new.html.haml +62 -0
  307. data/app/views/workarea/admin/timeline/show.html.haml +34 -41
  308. data/app/views/workarea/admin/toolbar/show.html.haml +11 -1
  309. data/app/views/workarea/admin/trash/index.html.haml +1 -1
  310. data/app/views/workarea/admin/users/edit.html.haml +60 -57
  311. data/app/views/workarea/admin/users/index.html.haml +1 -3
  312. data/app/views/workarea/admin/users/index.json.jbuilder +8 -0
  313. data/app/views/workarea/admin/users/insights.html.haml +31 -23
  314. data/app/views/workarea/admin/users/permissions.html.haml +10 -1
  315. data/app/views/workarea/admin/users/show.html.haml +7 -0
  316. data/config/locales/en.yml +569 -124
  317. data/config/routes.rb +57 -5
  318. data/lib/workarea/mailer_previews/admin/status_report_mailer_preview.rb +3 -1
  319. data/public/workarea/import_samples/tax_rates.csv +3 -3
  320. data/test/dummy/config/initializers/session_store.rb +1 -1
  321. data/test/helpers/workarea/admin/application_helper_test.rb +0 -16
  322. data/test/helpers/workarea/admin/icons_helper_test.rb +9 -0
  323. data/test/helpers/workarea/admin/products_helper_test.rb +73 -0
  324. data/test/helpers/workarea/admin/releases_helper_test.rb +0 -49
  325. data/test/helpers/workarea/admin/settings_helper_test.rb +22 -1
  326. data/test/integration/workarea/admin/assets_integration_test.rb +2 -5
  327. data/test/integration/workarea/admin/comments_integration_test.rb +27 -7
  328. data/test/integration/workarea/admin/configurations_integration_test.rb +21 -0
  329. data/test/integration/workarea/admin/create_release_undos_integration_test.rb +29 -0
  330. data/test/integration/workarea/admin/create_segments_integration_test.rb +26 -0
  331. data/test/integration/workarea/admin/data_file_imports_integration_test.rb +34 -8
  332. data/test/integration/workarea/admin/fulfillment_skus_integration_test.rb +55 -0
  333. data/test/integration/workarea/admin/fulfillment_tokens_integration_test.rb +43 -0
  334. data/test/integration/workarea/admin/guest_browsings_integration_test.rb +8 -32
  335. data/test/integration/workarea/admin/impersonations_integration_test.rb +13 -57
  336. data/test/integration/workarea/admin/jump_to_integration_test.rb +0 -29
  337. data/test/integration/workarea/admin/pricing_overrides_integration_test.rb +11 -0
  338. data/test/integration/workarea/admin/products_integration_test.rb +0 -13
  339. data/test/integration/workarea/admin/releases_integration_test.rb +71 -87
  340. data/test/integration/workarea/admin/segment_overrides_integration_test.rb +28 -0
  341. data/test/integration/workarea/admin/segment_rules_integration_test.rb +49 -0
  342. data/test/integration/workarea/admin/segments_integration_test.rb +31 -0
  343. data/test/integration/workarea/admin/shipping_service_integration_test.rb +1 -3
  344. data/test/integration/workarea/admin/tax_categories_integration_test.rb +1 -1
  345. data/test/integration/workarea/admin/unsubscribes_integration_test.rb +32 -0
  346. data/test/integration/workarea/admin/users_integration_test.rb +32 -0
  347. data/test/javascripts/fixtures/release_reminder.html.haml +3 -3
  348. data/test/javascripts/new_navigation_taxons_spec.js +1 -12
  349. data/test/mailers/workarea/admin/comment_mailer_test.rb +35 -0
  350. data/test/mailers/workarea/admin/status_report_mailer_test.rb +30 -25
  351. data/test/system/workarea/admin/alerts_system_test.rb +2 -1
  352. data/test/system/workarea/admin/bulk_actions_system_test.rb +1 -1
  353. data/test/system/workarea/admin/comments_system_test.rb +43 -0
  354. data/test/system/workarea/admin/content_system_test.rb +6 -0
  355. data/test/system/workarea/admin/dashboard_system_test.rb +8 -9
  356. data/test/system/workarea/admin/data_files_system_test.rb +1 -1
  357. data/test/system/workarea/admin/discounts_system_test.rb +18 -0
  358. data/test/system/workarea/admin/featured_products_system_test.rb +3 -0
  359. data/test/system/workarea/admin/fulfillment_skus_system_test.rb +48 -0
  360. data/test/system/workarea/admin/impersonation_system_test.rb +5 -2
  361. data/test/system/workarea/admin/orders_system_test.rb +32 -21
  362. data/test/system/workarea/admin/payment_transactions_system_test.rb +34 -32
  363. data/test/system/workarea/admin/releases_system_test.rb +151 -37
  364. data/test/system/workarea/admin/reports_system_test.rb +29 -0
  365. data/test/system/workarea/admin/segments_system_test.rb +124 -0
  366. data/test/system/workarea/admin/tax_categories_system_test.rb +166 -16
  367. data/test/system/workarea/admin/users_system_test.rb +15 -0
  368. data/test/view_models/workarea/admin/changeset_view_model_test.rb +59 -9
  369. data/test/view_models/workarea/admin/code_list_view_model_test.rb +0 -5
  370. data/test/view_models/workarea/admin/content_view_model_test.rb +13 -11
  371. data/test/view_models/workarea/admin/insights/product_view_model_test.rb +4 -4
  372. data/test/view_models/workarea/admin/insights/segment_view_model_test.rb +73 -0
  373. data/test/view_models/workarea/admin/product_rules_preview_view_model_test.rb +37 -0
  374. data/test/view_models/workarea/admin/product_view_model_test.rb +13 -19
  375. data/test/view_models/workarea/admin/release_calendar_view_model_test.rb +16 -0
  376. data/test/view_models/workarea/admin/release_view_model_test.rb +13 -56
  377. data/test/view_models/workarea/admin/releases_feed_view_model_test.rb +8 -21
  378. data/test/view_models/workarea/admin/reports/timeline_view_model_test.rb +76 -0
  379. data/test/view_models/workarea/admin/search_analysis_view_model_test.rb +14 -16
  380. data/test/view_models/workarea/admin/timeline_view_model_test.rb +1 -1
  381. metadata +128 -17
  382. data/app/views/workarea/admin/featured_products/_release_preview_warning.html.haml +0 -4
  383. data/app/views/workarea/admin/releases/calendar.html.haml +0 -54
  384. data/test/dummy/tmp/screenshots/.keep +0 -0
  385. data/test/helpers/workarea/admin/content_helper_test.rb +0 -17
  386. data/test/integration/workarea/admin/index_tracking_integration_test.rb +0 -21
  387. data/test/javascripts/fixtures/existing_navigation_taxon.html.haml +0 -10
  388. data/test/view_models/workarea/admin/pricing_sku_view_model_test.rb +0 -84
@@ -2,9 +2,11 @@ en:
2
2
  workarea:
3
3
  admin:
4
4
  actions:
5
+ back: Back
5
6
  cancel: Cancel
6
7
  delete: Delete
7
8
  delete_confirmation: Are you sure you want to delete?
9
+ impersonation_confirmation: You are currently impersonating %{name}. Would you like to continue as this user?
8
10
  drag: Drag
9
11
  edit: Edit
10
12
  remove: Remove
@@ -44,6 +46,8 @@ en:
44
46
  comment_create_html: posted a comment
45
47
  comment_destroy_html: removed a comment
46
48
  comment_update_html: updated a comment
49
+ configuration_admin: configuration settings
50
+ configuration_admin_update_html: updated %{fields} within the %{name}
47
51
  content_asset_create_html: created the %{name} asset
48
52
  content_asset_destroy_html: removed the %{name} asset
49
53
  content_asset_update_html: updated %{fields} on the %{name} asset
@@ -58,6 +62,9 @@ en:
58
62
  filters:
59
63
  all_types: all types of
60
64
  everyone: everyone
65
+ fulfillment_sku_create_html: created %{name}
66
+ fulfillment_sku_destroy_html: removed %{name}
67
+ fulfillment_sku_update_html: updated %{fields} on %{name}
61
68
  generic_create_html: created %{model} %{id}
62
69
  generic_update_html: updated %{model} %{id}
63
70
  generic_destroy_html: removed %{model} %{id}
@@ -104,10 +111,16 @@ en:
104
111
  search_customization_update_html: updated %{fields} on the %{name} search customizations
105
112
  search_settings: search settings
106
113
  search_settings_update_html: updated %{fields} on %{link}
114
+ segment_create_html: created the %{name} segment
115
+ segment_update_html: updated %{fields} on the %{name} segment
116
+ segment_destroy_html: removed the %{name} shipping segment
107
117
  shipping_service_create_html: created the %{name} shipping service
108
118
  shipping_service_destroy_html: removed the %{name} shipping service
109
119
  shipping_service_update_html: updated %{fields} on the %{name} shipping service
110
120
  show:
121
+ activity:
122
+ one: 1 Activity
123
+ other: "%{count} Activities"
111
124
  activity_by: activity by
112
125
  admin_activity: Admin Activity
113
126
  main_dashboard: Main dashboard
@@ -126,6 +139,9 @@ en:
126
139
  not_applicable: N/A
127
140
  today: Today
128
141
  yesterday: Yesterday
142
+ authorization:
143
+ unauthorized_action: You are not authorized to perform this action
144
+ unauthorized_area: You are not authorized to access this area
129
145
  date_selector:
130
146
  date_range: "%{starts_at} to %{ends_at}"
131
147
  or_choose: Or choose
@@ -286,7 +302,6 @@ en:
286
302
  views: views
287
303
  edit:
288
304
  client_id_note: Identifies the category for product import
289
- default_sort_note: 'Since this category has featured products, this sort controls the products listed after the selected featured products.'
290
305
  filters_note_html: 'Comma separated: just, like, this. If these fields are blank, the global values will be used from %{search_settings_link}.'
291
306
  page_title: Attributes for %{category}
292
307
  search_settings: search settings
@@ -486,6 +501,7 @@ en:
486
501
  new_attribute_name_note: 'Example: Material'
487
502
  new_attribute_name_placeholder: New Attribute Name
488
503
  new_attribute_value: New Attribute Value
504
+ new_attribute_value_csv: 'Comma separated: just, like, this'
489
505
  new_attribute_value_note: 'Example: Cotton'
490
506
  new_attribute_value_placeholder: New Attribute Value
491
507
  remove: Remove
@@ -524,6 +540,7 @@ en:
524
540
  new_attribute_name_note: 'Example: Material'
525
541
  new_attribute_name_placeholder: New Attribute Name
526
542
  new_attribute_value: New Attribute Value
543
+ new_attribute_value_csv: 'Comma separated: just, like, this'
527
544
  new_attribute_value_note: 'Example: Cotton'
528
545
  new_attribute_value_placeholder: New Attribute Value
529
546
  remove: Remove
@@ -584,12 +601,14 @@ en:
584
601
  notify:
585
602
  by: by
586
603
  discussion_history: 'Discussion History:'
604
+ new_comment_about: New comment about
587
605
  post_a_comment: Post a comment
588
606
  posted_a_comment_about: posted a comment about
589
607
  posted_at: Posted at
590
608
  reply_here: 'Reply here:'
591
- reply_to_this_comment: Reply to this comment
609
+ reply_to_this_comment: Reply
592
610
  subject: 'Re: %{commentable} Discussion'
611
+ title: Hey %{site} Team,
593
612
  unsubscribe_from_notifications: 'Unsubscribe from notifications on %{commentable_name}'
594
613
  comments:
595
614
  card:
@@ -608,26 +627,44 @@ en:
608
627
  added: Your comment has been added
609
628
  added_error: There was a problem adding your comment
610
629
  comment_edit_error: You cannot edit someone else's comment
611
- comment_unsubscribed: You have been unsubscribed from notifications for %{commentable} string
612
630
  removed: Your comment has been removed
613
631
  saved: Your comment has been saved
614
632
  saved_error: There was a problem saving your comment
633
+ comment_subscribed: Your comments subscription has been added. You will be notified of any future comments.
634
+ comment_unsubscribed: You have been unsubscribed from future comments.
615
635
  index:
616
636
  body: Comment Body
617
637
  create: Create Comment
618
638
  email_authentication: Each admin will receive an email notification about this comment
619
639
  heading: Comments on %{name}
640
+ mention_note: Notify other admins by typing the @ symbol. Once notified they may unsubscribe at any time via a link sent in the notification email.
620
641
  new: New Comment
621
642
  notify: Notify Admins
643
+ subscribe: Subscribe
644
+ subscribe_message: to receive emails about future comments.
622
645
  title: Comments on %{name}
646
+ unsubscribe: Unsubscribe
647
+ unsubscribe_message: to stop receiving emails about future comments.
623
648
  icon:
624
649
  viewed: Comments
625
650
  unviewed: Unread Comments
651
+ configurations:
652
+ flash_messages:
653
+ configuration_updated: Configuration updated.
654
+ configuration_error: Configuration could not be saved.
655
+ show:
656
+ dashboard_link: Settings Dashboard
657
+ title: Configuration
658
+ description: Change configuration of your site.
659
+ save: Update Configuration
660
+ field_overridden: This field is overridden by static configuration
661
+ field_overridden_message: This field is overridden by static configuration. The value of this field will not apply until a developer removes the static value.
626
662
  content:
627
663
  advanced:
628
664
  automate: Automate
629
665
  automate_metadata: Automate Metadata
630
666
  automation_help_content: The system will automatically generate browser title and meta description. These fields will be updated monthly.
667
+ automation_note_content: Disable this setting to manually edit the title and meta description for this page
631
668
  browser_title: Browser Title
632
669
  browser_title_note: The title appears in the top bar of a web browser and is shown in search engine results.
633
670
  browser_title_placeholder: "(defaults to content name)"
@@ -637,6 +674,7 @@ en:
637
674
  do_not_automate: Do not Automate
638
675
  javascript: JavaScript
639
676
  javascript_note: The JavaScript is output before the end of the body. The content of this block is automatically wrapped in script tags.
677
+ head_content_note: Use this field to add external style or script tags, meta elements, or custom JavaScript.
640
678
  learn_more: Learn More
641
679
  metadata_description: Metadata Description
642
680
  metadata_description_note: Provides a summary that is displayed on search engine result pages.
@@ -653,6 +691,7 @@ en:
653
691
  description: Add associated content blocks to be displayed with this in the storefront.
654
692
  title: Content
655
693
  edit:
694
+ active_for_html: Only active for <strong>%{segments}</strong>
656
695
  add: Add a Block
657
696
  add_block_above: Add Block Above
658
697
  add_block_below: Add Block Below
@@ -663,13 +702,14 @@ en:
663
702
  loading: Loading...
664
703
  preview: Preview
665
704
  title: Content for %{content}
666
- current_area: 'Current Area'
667
705
  form:
668
706
  all_blocks: All blocks
669
707
  cancel: Cancel
670
708
  devices: Devices
671
709
  display: Display
710
+ exclusive_segments: Only show for these segments
672
711
  hide_for: Hide for
712
+ segments: Segments
673
713
  index:
674
714
  dashboard_link: Store dashboard
675
715
  help_link: Create your own pages
@@ -698,6 +738,7 @@ en:
698
738
  button: View Original
699
739
  title: Original
700
740
  edit:
741
+ alt_text_note: Used as default Alt text in Content
701
742
  file_label: Choose File
702
743
  name_label: Name
703
744
  page_title: Attributes for %{asset}
@@ -724,6 +765,7 @@ en:
724
765
  page_title: Choose an Asset
725
766
  title: Select Asset
726
767
  new:
768
+ alt_text_note: Used as default Alt text in Content
727
769
  create_asset: Create Asset
728
770
  create_asset_disabled_text: Creating Asset...
729
771
  file_label: Choose File
@@ -740,6 +782,7 @@ en:
740
782
  clear_asset: Clear asset
741
783
  name_missing: "(none)"
742
784
  select_an_asset: Select an asset
785
+ alt_text_note: Leave alt text blank to default to the asset's alt text
743
786
  category:
744
787
  select_placeholder: Choose a category...
745
788
  flash_messages:
@@ -916,7 +959,6 @@ en:
916
959
  browser_title: Browser Title
917
960
  cancel: Cancel
918
961
  defaults_to_a_truncated_description: "(defaults to a truncated description)"
919
- defaults_to_description: "(defaults to description)"
920
962
  description: Description
921
963
  meta_description: Meta Description
922
964
  or_skip_this: or skip this
@@ -1076,6 +1118,7 @@ en:
1076
1118
  redeem_once_per_email: Redeem once per email address
1077
1119
  redeem_unlimited_times: Redeem an unlimited number of times for anyone
1078
1120
  sale_items: Sale Items
1121
+ segments_note: Only these segments can qualify for this discount
1079
1122
  single_use: Single Use
1080
1123
  title: Setup for new discount
1081
1124
  what_does_it_discount: "%{discount_name}: What does it discount?"
@@ -1144,6 +1187,38 @@ en:
1144
1187
  save_and_plan_changes: Save and Plan Changes
1145
1188
  setup: Setup
1146
1189
  skip_and_finish: Skip and Finish
1190
+ create_release_undos:
1191
+ flash_messages:
1192
+ saved: Your undo release has been saved.
1193
+ new:
1194
+ title: Setup Undo for %{name}
1195
+ release_name_placeholder: My Release Undo
1196
+ tags_note: 'Comma separated: just, like, this'
1197
+ review:
1198
+ title: Review Undo Changes for %{name}
1199
+ changes_description_html: These changes have been saved on the %{undo} release. They are the opposite of the changes in the %{original} release. You can view, edit, or delete these changes like changes in a normal release.
1200
+ workflow:
1201
+ setup: Setup
1202
+ review: Review
1203
+ create_undo: Create Undo
1204
+ done: I'm done
1205
+ or_skip_this: or skip this
1206
+ delete_confirmation: Are you sure you want to delete this?
1207
+ create_segments:
1208
+ flash_messages:
1209
+ saved: Your custom segment has been saved.
1210
+ setup:
1211
+ title: Setup a Custom Segment
1212
+ save_and_add_rules: Save and Add Rules
1213
+ rules:
1214
+ title: Add Rules to %{name}
1215
+ complete: I'm all done
1216
+ add_rule: Add rule
1217
+ workflow:
1218
+ cancel_message: Are you sure you want to delete this?
1219
+ steps:
1220
+ setup: Setup
1221
+ rules: Rules
1147
1222
  create_users:
1148
1223
  admin:
1149
1224
  page_title: Create an Account
@@ -1174,6 +1249,7 @@ en:
1174
1249
  catalog: Catalog
1175
1250
  catalog_dashboards: Catalog dashboards
1176
1251
  categories: Categories
1252
+ fulfillment: Fulfillment
1177
1253
  imports: Create Import
1178
1254
  inventory: Inventory
1179
1255
  pricing: Pricing
@@ -1335,6 +1411,7 @@ en:
1335
1411
  new_vs_returning: New vs Returning
1336
1412
  new: New
1337
1413
  returning: Returning
1414
+ segments: Segments
1338
1415
  last_seven_days: Last 7 Days
1339
1416
  percent_orders_discounted:
1340
1417
  percent_orders_discounted: Percent Orders Discounted
@@ -1391,14 +1468,15 @@ en:
1391
1468
  searches_to_improve_info: Searches to Improve Info
1392
1469
  searches_to_improve_info_tooltip_html: "<p>Your top 3% most searched over the last four weeks, sorted by worst abandonment rate. Suggestions for improvement:</p><ul><li>Select and sort featured products to improve results<li>Rewrite the query string to match customer expectations</li><li>Redirect to a curated category or page</li></ul>"
1393
1470
  settings:
1394
- current_configuration: Current Configuration
1471
+ configuration: Configuration
1395
1472
  redirects: Redirects
1396
1473
  search: Search
1397
1474
  settings_dashboard: Settings dashboard
1398
1475
  shipping_services: Shipping services
1476
+ static_configuration: Static Configuration
1477
+ static_note: These values cannot be changed in the admin.
1399
1478
  tax_categories: Tax categories
1400
1479
  time_zone: Time Zone
1401
- times_in_seconds: assume all time values are in seconds
1402
1480
  title: Settings
1403
1481
  trash: Trash
1404
1482
  store:
@@ -1478,6 +1556,11 @@ en:
1478
1556
  to: To
1479
1557
  'false': 'No'
1480
1558
  featured_products:
1559
+ statuses:
1560
+ inactive: Inactive
1561
+ out_of_stock: Out Of Stock
1562
+ low_inventory: Only %{count} left
1563
+ backordered: Backordered
1481
1564
  edit:
1482
1565
  browse_link: Browse products to add
1483
1566
  drag_instructions: Drag to sort products
@@ -1494,29 +1577,37 @@ en:
1494
1577
  sort_link: I'm done, go sort
1495
1578
  sort_now_link: Go sort now
1496
1579
  title: Select products for %{featurable}
1497
- release_preview_warning: Changes to featured products for a release will not be reflected in release previewing. Changes will still apply at the time of publishing.
1498
1580
  fields:
1499
1581
  action: Action
1500
1582
  active: Active
1583
+ active_segments: Active for
1584
+ active_segment_ids: Active Segments
1501
1585
  admin: Administrator
1502
1586
  allow_discounting: Allow Discounting
1503
1587
  allow_sale_items: Allow Sale Items
1504
1588
  allow_sale_items: Allow Sale Items
1589
+ alt_text: Alt Text
1505
1590
  amount: Amount
1506
- auto_deactivate: Auto Deactivate
1591
+ aov: AOV
1507
1592
  automate_metadata: Automate Metadata
1508
1593
  available: Available Units
1509
1594
  avatar: Avatar
1510
1595
  average_order_value: Average Order Value
1596
+ average_price: Average Price
1511
1597
  backordered: Backordered Units
1512
1598
  backordered_units: Backordered Units
1513
1599
  backordered_until: Backordered Until
1514
1600
  body: Body
1515
1601
  breadcrumbs: Breadcrumbs
1602
+ browser_info: Browser Info
1516
1603
  browser_title: Browser Title
1604
+ cancellations: Cancellations
1605
+ categories: Categories
1517
1606
  category: Category
1518
1607
  category_id: Category
1519
1608
  category_ids: Categories
1609
+ changes: Changes
1610
+ city: City
1520
1611
  client_id: Client ID
1521
1612
  code: Code
1522
1613
  compatible_discount_ids: Compatible Discounts
@@ -1527,6 +1618,7 @@ en:
1527
1618
  copied_from_id: Copied From
1528
1619
  count: Count
1529
1620
  country: Country
1621
+ country_percentage: Country %
1530
1622
  created_at: Created
1531
1623
  created_by: Created By
1532
1624
  css: CSS
@@ -1539,13 +1631,16 @@ en:
1539
1631
  description: Description
1540
1632
  destination: Destination
1541
1633
  details: Details
1542
- digital: Digital
1634
+ device: Device
1635
+ digital: Digital # TODO: remove in v3.6
1543
1636
  dimensions: Dimensions
1544
1637
  discountable: Allow Discounting
1545
1638
  discount: Discount
1546
1639
  discounts: Discounts
1547
1640
  display_name: Display Name
1641
+ downloads: Downloads
1548
1642
  email: Email
1643
+ enabled: Enabled
1549
1644
  ends_at: Ends At
1550
1645
  errors: Errors
1551
1646
  excluded_category_ids: Excluded Categories
@@ -1560,23 +1655,31 @@ en:
1560
1655
  first_order_at: First Order At
1561
1656
  first_time_orders: First-time Orders
1562
1657
  from: From
1658
+ fulfillment: Fulfillment
1563
1659
  fulfillment_status: Fulfillment Status
1660
+ geolocation: Geolocation
1564
1661
  merchandise: Merchandise
1662
+ head_content: Content Appended to Head Element
1565
1663
  hidden_breakpoints: Hidden Breakpoints
1566
1664
  id: ID
1567
1665
  image: Image
1568
1666
  impersonate_after_create: Impersonate Now
1569
1667
  imports: Imports
1668
+ inactive: Inactive
1669
+ inactive_segments: Inactive for
1570
1670
  insights: Insights
1571
1671
  inventory: Inventory
1572
- javascript: JavaScript
1672
+ javascript: JavaScript Appended to Body Element
1573
1673
  last_impersonated_at: Last Impersonated At
1574
1674
  last_impersonated_by: Last Impersonated By
1575
1675
  last_name: Last Name
1676
+ last_order: Last Order
1576
1677
  last_order_at: Last Order At
1577
1678
  last_published: Last Published
1578
1679
  last_purchase: Last Purchase
1579
1680
  list: List
1681
+ locations: Locations
1682
+ logged_in: Logged In
1580
1683
  matching_url: Matching URL
1581
1684
  medium: Medium
1582
1685
  meta_description: Meta Description
@@ -1607,7 +1710,8 @@ en:
1607
1710
  period: Period
1608
1711
  permissions_manager: Permissions Manager
1609
1712
  placed_at: Placed
1610
- policy: Tracking Policy
1713
+ platform: Platform
1714
+ policy: Policy
1611
1715
  prefix: Prefix
1612
1716
  price: Price
1613
1717
  pricing: Pricing
@@ -1626,7 +1730,9 @@ en:
1626
1730
  rates_file: Rates File
1627
1731
  redemptions: Redemptions
1628
1732
  redirect: Redirect
1733
+ refund: Refund
1629
1734
  region: Region
1735
+ region_percentage: Region %
1630
1736
  regions: Regions
1631
1737
  regular: Regular Price
1632
1738
  related_product: Related Product
@@ -1644,11 +1750,11 @@ en:
1644
1750
  search_id: Search ID
1645
1751
  search_terms: Search Terms
1646
1752
  searches: Searches
1647
- sell_price: Sell Price
1753
+ segments: Segments
1648
1754
  send_account_creation_email: Notify Them by Email
1649
1755
  service: Service
1650
- service_code: Service Code
1651
1756
  services_file: Services File
1757
+ sessions: Sessions
1652
1758
  shipping: Shipping
1653
1759
  shipping_service_id: Shipping Service
1654
1760
  show_left_navigation: Show Left Navigation
@@ -1665,6 +1771,7 @@ en:
1665
1771
  starts_at: Starts At
1666
1772
  status: Status
1667
1773
  status_email_recipient: Status Email Recipient
1774
+ strength: Stength
1668
1775
  store_credit: Store Credit
1669
1776
  subscribed_user_ids: Notified Admins
1670
1777
  summary: Summary
@@ -1674,6 +1781,7 @@ en:
1674
1781
  tax_code: Tax Code
1675
1782
  taxon_id: Taxonomy
1676
1783
  template: Template
1784
+ tender: Tender
1677
1785
  terms: Terms
1678
1786
  terms_facets_list: Filters
1679
1787
  thumbnail: Thumbnail
@@ -1687,8 +1795,10 @@ en:
1687
1795
  total_price: Total Price
1688
1796
  total_results: Total Results
1689
1797
  tracking_policy: Tracking Policy
1798
+ traffic_referrer: Traffic Referrer
1690
1799
  type: Type
1691
1800
  undo_at: Undo At
1801
+ units_canceled: Units Canceled
1692
1802
  units_sold: Units Sold
1693
1803
  updated_at: Updated
1694
1804
  url: URL
@@ -1699,10 +1809,67 @@ en:
1699
1809
  csv_field_note: 'Comma separated: just, like, this'
1700
1810
  save_changes: Save Changes
1701
1811
  unsaved_changed_message: You have unsaved changes, do you want to continue?
1812
+ fulfillment_tokens:
1813
+ card:
1814
+ header: Tokens
1815
+ button: View tokens
1816
+ not_available: Tokens are not available for this SKU.
1817
+ download_pluralize:
1818
+ one: download
1819
+ other: downloads
1820
+ pluralize:
1821
+ one: token
1822
+ other: tokens
1823
+ flash_messages:
1824
+ created: Token successfully created
1825
+ disabled: Token has been disabled
1826
+ enabled: Token has been enabled
1827
+ error: There was a problem creating a new download. Try again.
1828
+ update_failed: Token could not be updated
1829
+ index:
1830
+ add_new: Create New Token
1831
+ copy_button: Copy URL
1832
+ copy_title: Copy Token URL
1833
+ heading: Tokens
1834
+ page_title: Fulfillment SKU %{sku} Downloads
1835
+ pluralize:
1836
+ one: '%{count} Token'
1837
+ other: '%{count} Tokens'
1838
+ tokens_unavailable: Tokens are not available for this SKU's policy. They are used for generating unique URLs for the download policy.
1839
+ fulfillment_skus:
1840
+ aux_navigation:
1841
+ view_product: View Product
1842
+ cards:
1843
+ policy: 'Policy:'
1844
+ file: 'File:'
1845
+ edit:
1846
+ policy_info_html: "<p><strong>Ship:</strong> Item requires shipping. System does nothing automatically for this SKU.</p> <p><strong>Ignore:</strong> Item does not require shipping. System does nothing automatically for this SKU.</p> <p><strong>Download:</strong> Generates a unique URL token that grants the customer access to attached file through a download link in the order summary.</p>"
1847
+ page_title: Edit Fulfillment SKU %{sku}
1848
+ save_sku: Save SKU
1849
+ flash_messages:
1850
+ created: "%{id} has been created."
1851
+ removed: This fulfillment SKU has been removed
1852
+ saved: "%{id} has been saved."
1853
+ index:
1854
+ heading: Fulfillment SKUs
1855
+ new_button: Add New Fulfillment SKU
1856
+ page_title: Fulfillment SKUs
1857
+ sku_pluralize:
1858
+ one: "%{count} SKU"
1859
+ other: "%{count} SKUs"
1860
+ new:
1861
+ create_sku: Create SKU
1862
+ heading: New Fulfillment SKU
1863
+ page_title: New Fulfillment SKU
1864
+ sku_placeholder: SKU123
1865
+ show:
1866
+ page_title: Fulfillment SKU %{sku}
1867
+ summary:
1868
+ type: Fulfillment SKU
1702
1869
  fulfillments:
1703
1870
  show:
1704
- by_carrier: by %{carrier}
1705
1871
  cancellations: Cancellations
1872
+ delivered: Delivered
1706
1873
  no_items_marked_cancelled: There are no items marked as cancelled.
1707
1874
  no_items_marked_shipped: There are no items marked as shipped.
1708
1875
  on_time_created_html: on %{time}
@@ -1713,6 +1880,8 @@ en:
1713
1880
  product: Product
1714
1881
  quantity: Quantity
1715
1882
  shipped: Shipped
1883
+ shipped_by_carrier: Shipped by %{carrier}
1884
+ tokens: Tokens
1716
1885
  with_no_tracking_number: with no tracking number
1717
1886
  with_tracking_number_html: with tracking number %{tracking_number_link}
1718
1887
  guest_browsing:
@@ -1802,6 +1971,9 @@ en:
1802
1971
  download_html: "%{link} your %{name} %{type} export."
1803
1972
  download_link: Download
1804
1973
  subject: Here's your Workarea %{name} export
1974
+ email_action:
1975
+ name: Download
1976
+ description: Download your exported items
1805
1977
  import_error:
1806
1978
  subject: Your Workarea %{type} import of %{file} was a failure!
1807
1979
  message: Your import of %{name} could not complete.
@@ -1816,11 +1988,17 @@ en:
1816
1988
  unknown: Unknown
1817
1989
  id: ID
1818
1990
  link_text: View %{name}
1991
+ email_action:
1992
+ name: View Import
1993
+ description: View successfully imported items
1819
1994
  import:
1820
1995
  subject: Your Workarea %{type} import of %{file} has completed successfully
1821
1996
  message: Your import of %{name} has completed!
1822
1997
  success: '%{count} imported successfully.'
1823
1998
  link_text: View %{name}
1999
+ email_action:
2000
+ name: View Import
2001
+ description: View all imported items
1824
2002
  data_file_tax_imports:
1825
2003
  flash_messages:
1826
2004
  processing: Your tax rates import is being processed. You will receive an email when the import completes.
@@ -1907,6 +2085,7 @@ en:
1907
2085
  icons:
1908
2086
  top_selling: Top Selling
1909
2087
  trending: Trending
2088
+ segments: Only shows for certain segments
1910
2089
  revenue:
1911
2090
  other_label: Other %{name}
1912
2091
  top_label: Top %{name}
@@ -2288,10 +2467,6 @@ en:
2288
2467
  destination_label: Redirect To
2289
2468
  destination_note: Can be any URL
2290
2469
  destination_placeholder: "/new/path.html"
2291
- disabled: >
2292
- This application is configured to consider requests to be local, so the Workarea exception handling isn't used.
2293
- This is most likely because it's running the development environment, where you want exceptions to be seen in responses.
2294
- These redirects won't work without this.
2295
2470
  from: From
2296
2471
  import: Import Redirects
2297
2472
  modified: Modified
@@ -2338,6 +2513,7 @@ en:
2338
2513
  home: Home
2339
2514
  navigation: Navigation
2340
2515
  page_title: Taxonomy
2516
+ releasable_note_html: Note that you can't change taxonomy in a release. If you're looking to make changes to your primary navigation, changes in the <a href="%{url}">navigation</a> admin can be made in a release.
2341
2517
  title: Manage Taxonomy
2342
2518
  insert:
2343
2519
  heading_step_1: Pick breadcrumbs
@@ -2383,6 +2559,7 @@ en:
2383
2559
  status: 'Status:'
2384
2560
  traffic_referrer: 'Traffic Referrer:'
2385
2561
  traffic_referrer_url: 'Referrer URL:'
2562
+ segments: 'Segments:'
2386
2563
  view: View
2387
2564
  copy_url: Copy URL
2388
2565
  items:
@@ -2395,6 +2572,8 @@ en:
2395
2572
  empty: There are no tenders on this order.
2396
2573
  payment_tenders: Payment Tenders
2397
2574
  title: Payment
2575
+ fraud:
2576
+ title: Fraud
2398
2577
  shipping:
2399
2578
  address: Address
2400
2579
  empty: No shipping info for this order
@@ -2421,13 +2600,27 @@ en:
2421
2600
  pending: 'Pending:'
2422
2601
  status: 'Status:'
2423
2602
  title: Fulfillment
2603
+ tokens: 'Tokens:'
2424
2604
  tracking_numbers: 'Tracking Numbers:'
2425
2605
  not_available: Fulfillment is not yet available for this order.
2606
+ fraud:
2607
+ button: View Fraud
2608
+ decision: Decision
2609
+ no_fraud_decision: This order has not been evaluated for fraud.
2610
+ suspected_fraud: Declined for fraud
2426
2611
  payment:
2427
2612
  status: Status
2428
2613
  button: View Payment
2429
2614
  shipping:
2430
2615
  button: View Shipping
2616
+ fraud:
2617
+ decision: Decision
2618
+ title: Fraud Decision
2619
+ message: Message
2620
+ more_link: Learn More
2621
+ no_fraud_decision_available: No fraud decision available
2622
+ response: Response
2623
+ response_tooltip: The response received from a 3rd party fraud processor if implemented.
2431
2624
  index:
2432
2625
  dashboard_link: Orders Dashboard
2433
2626
  filters:
@@ -2661,6 +2854,12 @@ en:
2661
2854
  young_label: This week,
2662
2855
  past_three_months: Past 3 Months
2663
2856
  discounts: discounts
2857
+ redemptions:
2858
+ header: Redemptions
2859
+ order_pluralize:
2860
+ one: order
2861
+ other: orders
2862
+ view: View Redemptions
2664
2863
  conditions:
2665
2864
  promo_code:
2666
2865
  list_help: You can allow more than one promo code for this discount by separating them with commas, e.g. SAVE20, SAVETWENTY. Or, select "is from" in the menu on the left to pick a list of generated promo codes.
@@ -2668,7 +2867,6 @@ en:
2668
2867
  list_help: You can allow more than one user tag for this discount by separating them with commas, e.g. vip, employee.
2669
2868
  edit:
2670
2869
  page_title: Attributes for %{name}
2671
- auto_deactivate_info: A discount that can be auto-deactivated will becomes inactive automatically if it has not been updated or redeemed in the last %{duration}.
2672
2870
  flash_messages:
2673
2871
  removed: These changes have been removed
2674
2872
  saved: Your changes have been saved
@@ -2685,6 +2883,7 @@ en:
2685
2883
  application_promo_code: when promo code
2686
2884
  code_list_select: select a promo code list
2687
2885
  for_everyone: for everyone
2886
+ when_in_segment: when in segment
2688
2887
  promo_code_is: is
2689
2888
  promo_code_is_from: is from
2690
2889
  unlimited_applications: unlimited
@@ -2708,6 +2907,7 @@ en:
2708
2907
  item: Sale items won't receive a discount.
2709
2908
  order: Deduction is based on the sum of regular priced items only.
2710
2909
  shipping: Orders made of only sale items don't qualify.
2910
+ segments_note: Only these segments can qualify for this discount
2711
2911
  show:
2712
2912
  deactivated_html: This discount was automatically deactivated on %{time} because it had not been redeemed in %{timespan}.
2713
2913
  disable_auto_deactivation: Turn off auto deactivation for this discount
@@ -2726,6 +2926,15 @@ en:
2726
2926
  date_range: "%{starts_at} to %{ends_at}"
2727
2927
  insights_featuring_this_discount: Insights Featuring this Discount
2728
2928
  discounts: Discounts
2929
+ pricing_discount_redemptions:
2930
+ index:
2931
+ title: Redemptions
2932
+ most_recent_redemptions: Most Recent Redemptions
2933
+ redeemed: Redeemed
2934
+ view_orders: View orders that have redeemed this discount
2935
+ redemption_pluralize:
2936
+ one: 1 redemption
2937
+ other: "%{count} redemptions"
2729
2938
  pricing_overrides:
2730
2939
  adjusted_unit_price: Adjusted Unit Price
2731
2940
  adjustment: Adjustment
@@ -2836,10 +3045,13 @@ en:
2836
3045
  releases:
2837
3046
  calendar:
2838
3047
  title: Release Calendar
2839
- add_new_release: Add New Release
3048
+ add_new_release: New Release
2840
3049
  next_week: Next Week
2841
3050
  previous_week: Previous Week
2842
3051
  today: Today
3052
+ plus_more_releases:
3053
+ one: +1 More Release
3054
+ other: +%{count} More Releases
2843
3055
  cards:
2844
3056
  attributes:
2845
3057
  button: Edit Attributes
@@ -2865,8 +3077,21 @@ en:
2865
3077
  changes: Changes
2866
3078
  empty_note: You can view and manage changes for this release once they are planned.
2867
3079
  planned: Planned
3080
+ undo:
3081
+ title: Undo
3082
+ not_setup: This release doesn't have an undo setup.
3083
+ build_an_undo: Build an Undo
3084
+ set_to_publish_html: "%{link} is set to publish at <strong>%{at}</strong>."
3085
+ published_html: "%{link} published at <strong>%{at}</strong>."
3086
+ unscheduled_html: "%{link} is unscheduled."
3087
+ undo_html: The %{link} release was created <strong>%{at}</strong> to undo this release.
3088
+ learn_more: Learn More
3089
+ original:
3090
+ title: Original Release
3091
+ undoes_html: This release undoes the %{link} release.
3092
+ learn_more: Learn More
2868
3093
  edit:
2869
- index_link: All releases
3094
+ index_link: Release calendar
2870
3095
  last_published_at: Last Published at
2871
3096
  last_undone_at: Last Undone At
2872
3097
  name: Name
@@ -2886,13 +3111,19 @@ en:
2886
3111
  index:
2887
3112
  add_new_release: Add New Release
2888
3113
  dashboard_link: Main dashboard
3114
+ displaying_releases: Displaying %{count} of %{total} releases.
3115
+ index_link: Release calendar
2889
3116
  instruction: Use releases to plan upcoming changes for your site. Click on a day to begin planning. Releases are managed and published in the %{time_zone} time zone.
2890
3117
  never: "(never)"
2891
3118
  page_title: Releases
3119
+ there_are_unscheduled:
3120
+ one: There is also %{count} unscheduled release.
3121
+ other: There are also %{count} unscheduled releases.
2892
3122
  title: Releases
2893
3123
  unscheduled_releases: Unscheduled releases
2894
3124
  unscheduled: Unscheduled
2895
- view_calendar: View Calendar
3125
+ view_all_releases: View All Releases
3126
+ view_all: View all?
2896
3127
  add_to_calendar:
2897
3128
  link_text: Add to Calendar
2898
3129
  tooltip:
@@ -2924,13 +3155,13 @@ en:
2924
3155
  view: View
2925
3156
  view_release: View Release
2926
3157
  show:
2927
- index_link: All releases
3158
+ index_link: Release calendar
2928
3159
  plan_changes_to_preview: Plan some changes to preview this release
2929
3160
  publish_now: Publish Now
2930
3161
  republish_now: Republish Now
2931
3162
  start_preview_in_storefront: Start preview in storefront
2932
3163
  undo: Undo
2933
- visit_storefront_to_preview: Visit storefront to preview
3164
+ visit_storefront_to_preview: Preview
2934
3165
  no_changes_to_preview: There are no changes to preview. Click on the Plan Changes card to start!
2935
3166
  no_changes_to_publish: There are no changes to publish for this release. Click on the Plan Changes card to start!
2936
3167
  no_changes_to_undo: There are no changes to undo for this release. Click on the Plan Changes card to start!
@@ -2961,124 +3192,169 @@ en:
2961
3192
  starts_on: Starts on %{date}
2962
3193
  ends_on: Ends on %{date}
2963
3194
  no_undo_date: There is no undo date set for this release.
3195
+ undo:
3196
+ page_title: Undo %{name}
3197
+ index_link: Release calendar
3198
+ plan_changes: Plan Changes
3199
+ no_changes_html: There are no changes to undo for this release! Head to %{plan_changes} to make some.
3200
+ undoing: Undoing a Release
3201
+ description: You can setup an undo to automatically revert the changes in this release at a future point in time. After being setup, this "undo release" will behave like any other release. You'll be able to edit, reschdule, or modify the changes as you please.
3202
+ build_an_undo_now: Build an Undo Now
3203
+ created_description_html: "%{undo} was created %{at} to undo the %{original} release."
3204
+ no_changes_for_this_release: No changes for this release now.
3205
+ view_the_undo_release: View the Undo Release
3206
+ original:
3207
+ page_title: Original Release for %{name}
3208
+ index_link: Release calendar
3209
+ title: Original Release
3210
+ created_description_html: "%{undo} was created %{at} to undo the %{original} release."
3211
+ no_changes_for_this_release: No changes for this release now.
3212
+ view_the_original_release: View the Original Release
2964
3213
  reports:
2965
3214
  all_reports: View All Reports
2966
3215
  average_order_value:
2967
3216
  title: Average Order Value
2968
- date_range: "%{starts_at} to %{ends_at}"
2969
- by: by
2970
- export_results: Export All Results
2971
3217
  back: Back
2972
- full_results_html: "Showing all %{count} results. %{export_link}"
2973
- group_by_time:
2974
- uneven_day_distribution: Some days may show more or less than others, since your date range isn't an even number of weeks.
2975
- partial_results_html: "Showing first %{count} results. To see all, %{export_link}"
3218
+ by: by
3219
+ customers:
3220
+ filters:
3221
+ all: All Customers
3222
+ one_time: One-Time Customers
3223
+ returning: Returning Customers
3224
+ results_filter: Results Filter
3225
+ title: Customers
2976
3226
  export_results: Export results
2977
- unknown: Unknown
2978
3227
  export:
2979
- where_will_the_file_go: Where will the file go?
3228
+ emails_note: 'Comma separated: developer@example.com, manager@example.com'
2980
3229
  enter_email: Enter email
2981
3230
  start_export: Start Export
2982
- emails_note: 'Comma separated: developer@example.com, manager@example.com'
3231
+ where_will_the_file_go: Where will the file go?
2983
3232
  first_time_vs_returning_sales:
2984
3233
  title: First-time vs Returning Sales
2985
- date_range: "%{starts_at} to %{ends_at}"
2986
- by: by
2987
- export_results: Export All Results
2988
3234
  flash_messages:
2989
3235
  success: Your export is being generated, and will be emailed as soon as it's done.
3236
+ full_results_html: "Showing all %{count} results. %{export_link}"
3237
+ group_by_time:
3238
+ uneven_day_distribution: Some days may show more or less than others, since your date range isn't an even number of weeks.
2990
3239
  insights:
2991
- title: Insights
2992
3240
  all_insights: All Insights
3241
+ title: Insights
2993
3242
  low_inventory:
2994
3243
  title: Low Inventory
3244
+ partial_results_html: "Showing first %{count} results. To see all, %{export_link}"
2995
3245
  reference:
2996
3246
  title: Reports Reference
2997
3247
  intro: This page serves as a reference for terms and ideas used throughout the reporting area.
2998
- terms: Terms
2999
- units_sold: Units Sold
3000
- units_sold_description: The number of individual quantity of order items, summed
3001
- orders: Orders
3002
- orders_description: The total number of placed orders
3003
- merchandise: Merchandise
3004
- merchandise_description: The total cost of items (including customization fees), before discounting, shipping, or taxes
3005
- discounts: Discounts
3006
- discounts_description: The total of all discounts, including item discounts, shipping discounts, and order level discounts
3007
- shipping: Shipping
3008
- shipping_description: The total shipping charges, before shipping discounts have been applied.
3009
- tax: Tax
3010
- tax_description: The total tax collected.
3011
- revenue: Revenue
3012
- revenue_description: Total money collected - on orders, this includes merchandise, discounts, shipping and taxes. For item level reports, this is the merchandise and tax.
3013
- average_order_value: Average Order Value
3014
- average_order_value_description: The revenue dividing by the number of orders
3015
- first_time_orders: First-time Orders
3016
- first_time_orders_description: Orders placed with an email address matching no previous orders
3017
- returning_orders: Returning Orders
3018
- returning_orders_description: Orders placed with an email address that also has at least one previous order
3019
- searches: Searches
3020
- searches_description: The number of times these terms have been searched
3021
- search_id: Search ID
3022
- search_id_description: The unique ID of a set of search terms. The terms are stemmed to remove endings. This ensures different search terms with slight language variations (e.g. different tense, plurals) are counted the same.
3023
- discrepancies: Discrepancies
3248
+ terms_title: Terms
3249
+ terms:
3250
+ average_order_value:
3251
+ name: Average Order Value
3252
+ description: The revenue dividing by the number of orders.
3253
+ average_price:
3254
+ name: Average Price
3255
+ description: The average price per unit after factoring in discounts, quantity pricing, and pricing overrides.
3256
+ cancellations:
3257
+ name: Cancellations
3258
+ description: The total number of times items have been canceled or returned.
3259
+ discounts:
3260
+ name: Discounts
3261
+ description: The total of all discounts, including item discounts, shipping discounts, and order level discounts.
3262
+ first_time_orders:
3263
+ name: First-time Orders
3264
+ description: Orders placed with an email address matching no previous orders.
3265
+ merchandise:
3266
+ name: Merchandise
3267
+ description: The total cost of items (including customization fees), before discounting, shipping, or taxes.
3268
+ orders:
3269
+ name: Orders
3270
+ description: The total number of placed orders.
3271
+ refund:
3272
+ name: Refund
3273
+ description: The total amount of revenue lost by canceled or returned items. This includes merchandise, shipping, and taxes.
3274
+ returning_orders:
3275
+ name: Returning Orders
3276
+ description: Orders placed with an email address that also has at least one previous order.
3277
+ revenue:
3278
+ name: Revenue
3279
+ description: Total money collected - on orders, this includes merchandise, discounts, shipping and taxes. For item level reports, this is the merchandise and tax.
3280
+ search_id:
3281
+ name: Search ID
3282
+ description: The unique ID of a set of search terms. The terms are stemmed to remove endings. This ensures different search terms with slight language variations (e.g. different tense, plurals) are counted the same.
3283
+ searches:
3284
+ name: Searches
3285
+ description: The number of times these terms have been searched.
3286
+ shipping:
3287
+ name: Shipping
3288
+ description: The total shipping charges, before shipping discounts have been applied.
3289
+ tax:
3290
+ name: Tax
3291
+ description: The total tax collected.
3292
+ units_canceled:
3293
+ name: Units Canceled
3294
+ description: The number of individual quantity of order items canceled or returned, summed.
3295
+ units_sold:
3296
+ name: Units Sold
3297
+ description: The number of individual quantity of order items, summed.
3298
+ discrepancies_title: Discrepancies
3024
3299
  discrepancies_description: Often times, retailers will contact their implementer wondering why Workarea reports and insights may not exactly match a third-party analytics system like Google Analytics, Omniture, Coremetrics, etc. Some of the major causes of this below.
3025
- definitions: Definitions
3026
- definitions_description: Differences in the way terms are defined, like "sessions" and "uniques".
3027
- browser_configuration: Browser Configuration
3028
- browser_configuration_description: Users can disable JavaScript and cookies, both of which are used by most major analytics software (Workarea uses both for tracking too).
3029
- time_delay: Time Delay
3030
- time_delay_description_html: Report data display is refreshed no more than once per hour in Workarea. Other platforms (looking at you, Google Analytics) may have a longer or shorter time delay when displaying data.
3031
- time_zones: Time Zones
3032
- time_zones_description_html: All Workarea reports and insights are tracked in the time zone configured by the implementer. The current time zone configured for this admin is <code>%{time_zone}</code>.
3033
- insights: Insights
3034
- insights_description: Insights are generated on a daily, weekly, and monthly basis (depending on the insight). You can tell how often an insight is generated by the green time pill in the top right. A month name indicates monthly, "week ending" indicates weekly, and a date indicates daily. Each insight represents data from a snapshot in time.
3300
+ discrepancies:
3301
+ browser_configuration:
3302
+ name: Browser Configuration
3303
+ description: Users can disable JavaScript and cookies, both of which are used by most major analytics software (Workarea uses both for tracking too).
3304
+ definitions:
3305
+ name: Definitions
3306
+ description: Differences in the way terms are defined, like "sessions" and "uniques".
3307
+ insights:
3308
+ name: Insights
3309
+ description: Insights are generated on a daily, weekly, and monthly basis (depending on the insight). You can tell how often an insight is generated by the green time pill in the top right. A month name indicates monthly, "week ending" indicates weekly, and a date indicates daily. Each insight represents data from a snapshot in time.
3310
+ time_delay:
3311
+ name: Time Delay
3312
+ description_html: Report data display is refreshed no more than once per hour in Workarea. Other platforms (looking at you, Google Analytics) may have a longer or shorter time delay when displaying data.
3313
+ time_zones:
3314
+ name: Time Zones
3315
+ description_html: All Workarea reports and insights are tracked in the time zone configured by the implementer. The current time zone configured for this admin is <code>%{time_zone}</code>.
3035
3316
  reference_link_html: Questions? See our <a href="%{path}">reports reference</a>.
3036
- customers:
3037
- title: Customers
3038
- export_results: Export All Results
3039
- results_filter: Results Filter
3040
- filters:
3041
- all: All Customers
3042
- returning: Returning Customers
3043
- one_time: One-Time Customers
3044
3317
  sales_by_category:
3045
3318
  title: Sales by Category
3046
- date_range: "%{starts_at} to %{ends_at}"
3047
- export_results: Export All Results
3048
3319
  sales_by_country:
3049
3320
  title: Sales by Country
3050
- date_range: "%{starts_at} to %{ends_at}"
3051
- export_results: Export All Results
3052
3321
  sales_by_discount:
3053
3322
  title: Sales by Discount
3054
- date_range: "%{starts_at} to %{ends_at}"
3055
- export_results: Export All Results
3056
3323
  sales_by_product:
3057
3324
  title: Sales by Product
3058
- date_range: "%{starts_at} to %{ends_at}"
3059
- export_results: Export All Results
3060
3325
  sales_by_sku:
3061
3326
  title: Sales by SKU
3062
- date_range: "%{starts_at} to %{ends_at}"
3063
- export_results: Export All Results
3327
+ sales_by_tender:
3328
+ title: Sales by Tender
3064
3329
  sales_by_traffic_referrer:
3065
3330
  title: Sales by Traffic Referrer
3066
- date_range: "%{starts_at} to %{ends_at}"
3067
- export_results: Export All Results
3068
3331
  sales_over_time:
3069
3332
  title: Sales over Time
3070
- date_range: "%{starts_at} to %{ends_at}"
3071
- by: by
3072
- export_results: Export All Results
3073
3333
  searches:
3074
- title: Searches
3075
- date_range: "%{starts_at} to %{ends_at}"
3076
- export_results: Export All Results
3077
- results_filter: Results Filter
3078
3334
  filters:
3079
3335
  all: All Searches
3080
3336
  with_results: Searches with results
3081
3337
  without_results: Searches without results
3338
+ results_filter: Results Filter
3339
+ title: Searches
3340
+ unknown: Unknown
3341
+ timeline:
3342
+ chart_title: Timeline Report
3343
+ date: Date
3344
+ title: Timeline
3345
+ revenue: Revenue
3346
+ orders: Orders
3347
+ units_sold: Units Sold
3348
+ customers: Customers
3349
+ releases: Releases
3350
+ summary:
3351
+ intro_html:
3352
+ one: Over the last <strong>3 Months</strong> there has been <strong>%{count} Release</strong> with
3353
+ other: Over the last <strong>3 Months</strong> there have been <strong>%{count} Releases</strong> with
3354
+ revenue_html: <strong>%{revenue}</strong> in revenue
3355
+ orders_html: <strong>%{orders}</strong> orders
3356
+ units_sold_html: <strong>%{units_sold}</strong> units sold
3357
+ customers_html: <strong>%{customers}</strong> new customers
3082
3358
  reports_mailer:
3083
3359
  export:
3084
3360
  subject: Here's your %{name} export
@@ -3194,10 +3470,10 @@ en:
3194
3470
  description: Define what filters should be shown on search results and categories.
3195
3471
  title: Filters
3196
3472
  synonyms:
3197
- description: Define groups of search terms that mean the same thing. Keep in mind this is not the same as "return the same results". For that task, use search customizations.
3473
+ description: Define groups of search terms that should return the same result.
3198
3474
  phrase_example: united states,u s a,united states of america => usa
3199
3475
  phrase_example_description: 'You can create synonym functionality out of a phrase like so:'
3200
- simple_example: "denim, jeans, dungarees \nshirt, pullover, blouse"
3476
+ simple_example: "tshirt, t-shirt, tee-shirt \nskirt, skort"
3201
3477
  simple_example_description: 'Enter one synonym group per line, for example:'
3202
3478
  title: Synonyms
3203
3479
  title: Search Settings
@@ -3212,9 +3488,142 @@ en:
3212
3488
  show_filters: Show Filters
3213
3489
  sort_by: Sort by
3214
3490
  title: Search results
3491
+ segment_rules:
3492
+ unknown: Unknown
3493
+ email: Email
3494
+ social: Social
3495
+ search: Search
3496
+ tags_note: "Comma separated: just, like, this"
3497
+ browser_info:
3498
+ bot: Bot
3499
+ chrome: Chrome
3500
+ edge: Edge
3501
+ firefox: Firefox
3502
+ ie: Internet Explorer
3503
+ opera: Opera
3504
+ safari: Safari
3505
+ devices:
3506
+ console: Console
3507
+ ipad: iPad
3508
+ iphone: iPhone
3509
+ ipod_touch: iPod Touch
3510
+ kindle: Kindle
3511
+ mobile: Mobile
3512
+ nintendo: Nintendo
3513
+ playstation: Playstation
3514
+ tablet: Tablet
3515
+ tv: TV
3516
+ xbox: Xbox
3517
+ fields:
3518
+ browser_info:
3519
+ note_html: Any selections made below will cause a match. This is based on the visitor's <a href="https://en.wikipedia.org/wiki/User_agent" target="_blank" rel="noopener">user agent</a>.
3520
+ geolocation:
3521
+ note: You can enter countries, regions, states, or postal codes here.
3522
+ traffic_referrer:
3523
+ source_notes: You can use a regular expression here.
3524
+ source_notes_html: You can use a regular expression syntax in this field. For instance <code>twitter|facebook</code> will match either Twitter or Facebook. Matches are case-insensitive. Learn more about regular expressions <a href="https://en.wikipedia.org/wiki/Regular_expression" target="_blank" rel="noopener">here</a>.
3525
+ flash_messages:
3526
+ destroyed: Your rule has been removed.
3527
+ error: There was a problem saving your rule.
3528
+ saved: Your rule has been saved.
3529
+ index:
3530
+ title: Segment Rules for %{name}
3531
+ rules: Rules
3532
+ no_edit: Why can't I edit these?
3533
+ no_edit_description_html: Changing the rules for a segment changes who's in that segment, and invalidates all data and insights collected for those people. Try %{link} instead.
3534
+ creating_a_new_segment: creating a new segment
3535
+ platform:
3536
+ android: Android
3537
+ blackberry: BlackBerry
3538
+ ios: iOS
3539
+ linux: Linux
3540
+ mac: macOS
3541
+ windows: Windows
3542
+ summaries:
3543
+ categories:
3544
+ description_html: "%{strength} any of: <strong>%{categories}</strong>"
3545
+ geolocation:
3546
+ description_html: "Browsing from <strong>%{locations}</strong>"
3547
+ last_order:
3548
+ description_html:
3549
+ one: Ordered within <strong>1</strong> day ago
3550
+ other: Ordered within <string>%{count}</strong> days ago
3551
+ logged_in:
3552
+ logged_in_html: "The visitor is <strong>logged in</strong>."
3553
+ logged_out_html: "The visitor is <strong>not logged in</strong>."
3554
+ orders:
3555
+ description_html: "Placed <strong>%{minimum}</strong> to <strong>%{maximum}</strong> orders"
3556
+ single_value_description_html:
3557
+ one: "Placed <strong>%{count}</strong> order"
3558
+ other: "Placed <strong>%{count}</strong> orders"
3559
+ revenue:
3560
+ description_html: "Spent <strong>%{minimum}</strong> to <strong>%{maximum}</strong>"
3561
+ single_value_description_html: "Spent <strong>%{amount}</strong>"
3562
+ sessions:
3563
+ description_html: "Has visited <strong>%{minimum}</strong> to <strong>%{maximum}</strong> times"
3564
+ single_value_description_html:
3565
+ one: "Has visited <strong>once</strong>"
3566
+ other: "Has visited <strong>%{count}</strong> times"
3567
+ tags:
3568
+ description_html: "Tagged with any of <strong>%{tags}</strong>"
3569
+ segments:
3570
+ cards:
3571
+ attributes:
3572
+ header: Attributes
3573
+ button: Edit
3574
+ rules:
3575
+ header: Rules
3576
+ button: View Rules
3577
+ insights:
3578
+ header: Insights
3579
+ button: View Insights
3580
+ orders: orders
3581
+ revenue: revenue
3582
+ aov: AOV
3583
+ edit:
3584
+ page_title: Edit %{name}
3585
+ flash_messages:
3586
+ removed: The segment has been removed.
3587
+ index:
3588
+ page_title: Segments
3589
+ dashboard_link: People
3590
+ description: Segments allow categorizing visitors to compare behavior and tailor the site's content. Throughout the admin you can control whether things are active per-segment.
3591
+ segment:
3592
+ one: 1 segment
3593
+ other: "%{count} segments"
3594
+ add_custom: Add Custom
3595
+ life_cycle: Life Cycle
3596
+ custom: Custom
3597
+ sparkline_title: Based on orders over the last three months
3598
+ max_segments: For performance reasons, Workarea doesn't allow more than 15 segments.
3599
+ insights:
3600
+ page_title: Insights on %{segment}
3601
+ orders: Orders
3602
+ revenue: Revenue
3603
+ average_order_value: Average Order Value
3604
+ publish:
3605
+ title: Publish by segment?
3606
+ description: You can control which segments this publishes for below. If you leave these blank, it will show for everyone.
3607
+ select:
3608
+ reset: Reset
3609
+ segment_overrides:
3610
+ show:
3611
+ title: Select Segments
3612
+ description: Select the segments for storefront browsing. This can be helpful for testing site changes or helping a customer who's in certain segments.
3613
+ button: Apply
3215
3614
  shared:
3216
3615
  activate_select:
3217
3616
  when_does_this_activate: When does this activate
3617
+ active_field:
3618
+ active_by_segment: Active by Segment
3619
+ by_segment:
3620
+ zero: by segment
3621
+ one: "only for %{name}"
3622
+ other: "only for %{name} and %{more_count} more..."
3623
+ description_html: 'If you select segments here this will only show for visitors in one of those segments.'
3624
+ only_for: Only for
3625
+ select_segments: Select segments...
3626
+ only_these_segments: Only these segments will see this.
3218
3627
  bulk_actions:
3219
3628
  import: Import
3220
3629
  export: Export
@@ -3241,12 +3650,14 @@ en:
3241
3650
  catalog: Catalog
3242
3651
  categories: Categories
3243
3652
  content_pages: Content Pages
3653
+ configuration: Configuration
3244
3654
  create_one: Create One
3245
3655
  customers: Customers
3246
3656
  customizations: All Customizations
3247
3657
  data_files: Imports & Exports
3248
3658
  discounts: Discounts
3249
3659
  email_signups: Email Signups
3660
+ fulfillment: Fulfillment
3250
3661
  home_page: Home Page
3251
3662
  imports: Create Import
3252
3663
  inventory: Inventory
@@ -3272,6 +3683,7 @@ en:
3272
3683
  search: Search
3273
3684
  search_placeholder: Find products, assets, categories, orders, etc...
3274
3685
  searches: Searches
3686
+ segments: Segments
3275
3687
  settings: Settings
3276
3688
  shipping_services: Shipping Services
3277
3689
  site_planner: Site Planner
@@ -3279,10 +3691,12 @@ en:
3279
3691
  system_pages: System Pages
3280
3692
  tax_categories: Tax Categories
3281
3693
  taxonomy: Taxonomy
3694
+ timeline: Timeline
3282
3695
  todays_orders: Today's Orders
3283
3696
  todays_signups: Today's Signups
3284
3697
  transactional_emails: Transactional Emails
3285
3698
  trash: Trash
3699
+ view_all_releases: View All Releases
3286
3700
  yesterdays_orders: Yesterday's Orders
3287
3701
  publishing_select:
3288
3702
  when_do_these_changes_publish: When do these changes publish
@@ -3365,13 +3779,16 @@ en:
3365
3779
  orders:
3366
3780
  average_order_value: 'AOV:'
3367
3781
  orders_discounted: 'Orders Discounted:'
3368
- revenue: 'Revenue:'
3782
+ revenue: in revenue
3369
3783
  title: Orders
3370
- total_orders: 'Total Orders:'
3371
- units_sold: 'Units Sold:'
3372
- discounts: 'Discounts:'
3373
- customers: 'Customers:'
3374
- title: Daily Status Report
3784
+ total_orders: total orders
3785
+ units_sold: units sold
3786
+ discounts: discounts applied
3787
+ customers: new customers
3788
+ title: Hey %{site} Team,
3789
+ subject: Daily Status Report for %{site}
3790
+ description: Here is your daily status report for %{date}
3791
+ unsubscribe: Unsubscribe from this email
3375
3792
  summary:
3376
3793
  last_updated: 'Last updated %{timestamp} ago'
3377
3794
  tax_categories:
@@ -3424,11 +3841,23 @@ en:
3424
3841
  instruction_html: Before getting started, please refer to the %{help_link} help article for more information on managing tax categories.
3425
3842
  title: Using Tax Categories
3426
3843
  tax_rates:
3844
+ flash_messages:
3845
+ saved: Foo
3846
+ changes_error: Foo
3847
+ removed: Foo
3427
3848
  index:
3428
- button: Import and replace
3429
3849
  empty_button: Import tax rates
3850
+ empty_message: No rates to display
3851
+ import_button: Import
3852
+ new_button: Add new tax rate
3430
3853
  not_applicable: N/A
3854
+ or: or
3855
+ rates:
3856
+ one: 1 Rate
3857
+ other: "%{count} Rates"
3858
+ search_placeholder: Search by country, region or postal code
3431
3859
  table:
3860
+ actions: Actions
3432
3861
  charge_on_shipping: Charge on Shipping
3433
3862
  country: Country
3434
3863
  max_value: Max Value
@@ -3437,10 +3866,19 @@ en:
3437
3866
  min_value: Min Value
3438
3867
  min_value_link: More Info on Min Value
3439
3868
  min_value_tooltip: Minimum value represents the lowest order total on which a tax rate can be charged.
3440
- percentage: Percentage
3869
+ combined_percentage: Combined %
3870
+ country_percentage: Country %
3871
+ region_percentage: Region %
3872
+ postal_code_percentage: Postal Code %
3441
3873
  postal_code: Postal Code
3442
3874
  region: Region
3443
3875
  title: Rates for %{category}
3876
+ new:
3877
+ title: Add new tax rate for %{category}
3878
+ create_button: Create tax rate
3879
+ edit:
3880
+ title: Editing tax rate
3881
+ save_button: Save tax rate
3444
3882
  timeline:
3445
3883
  card:
3446
3884
  button: View Timeline
@@ -3460,10 +3898,14 @@ en:
3460
3898
  edit_content: Edit Content
3461
3899
  inactive_message: '%{model} is not active'
3462
3900
  managing_changes_for: Managing changes for
3901
+ more_segments:
3902
+ one: and 1 more segment
3903
+ other: "and %{count} more segments"
3463
3904
  open_primary_menu: Open Primary Menu
3464
3905
  search: search
3465
3906
  search_placeholder: search the admin for products, assets, categories, orders, etc
3466
3907
  search_title: find products, assets, categories, orders, etc...
3908
+ select_segments: Select Segments
3467
3909
  stop_guest_browsing: Stop Guest Browsing
3468
3910
  stop_impersonation: Stop Impersonation
3469
3911
  view: view
@@ -3478,6 +3920,12 @@ en:
3478
3920
  description: Here you can see things that have been deleted. Items will stay in the trash for three months. Some items can be restored.
3479
3921
  empty: There's currently no trash to show. Go delete something!
3480
3922
  'true': 'Yes'
3923
+ unsubscribe:
3924
+ flash_messages:
3925
+ status_report_success: You've been unsubscribed from the daily status email
3926
+ status_report_error: Something went wrong while unsubscribing you from the daily status email
3927
+ commentable_success: You have been unsubscribed from notifications for %{commentable}
3928
+ commentable_error: Something went wrong while unsubscribing you from notifications
3481
3929
  users:
3482
3930
  addresses:
3483
3931
  empty: No saved addresses.
@@ -3513,13 +3961,16 @@ en:
3513
3961
  avatar_tooltip_content: Images should be at least 80 x 80 pixels. Files not matching these dimensions will be resized and cropped.
3514
3962
  avatar_delete: Delete Avatar?
3515
3963
  email_signup: Email Signup?
3964
+ send_password_reset: Send password reset email
3516
3965
  flash_messages:
3517
3966
  changes_saved: Your changes have been saved
3518
3967
  saved: Your changes have been saved
3519
3968
  started: You are now browsing as %{email}
3520
- stopped: Impersonation has been stopped, you are now browsing as your account.
3969
+ stopped: Impersonation for this user has been stopped.
3521
3970
  created: This account has been created
3522
3971
  error: There was an error saving this account
3972
+ password_reset: Password reset created. User will receive an email shortly.
3973
+ unlocked: User account is now unlocked.
3523
3974
  index:
3524
3975
  add_new: Add New Account
3525
3976
  browse_as_guest: Browse As Guest
@@ -3558,17 +4009,6 @@ en:
3558
4009
  aov: AOV
3559
4010
  insights_for_this_customer: Insights for this Customer
3560
4011
  percentile: percentile
3561
- customer_insights: Wondering about how Workarea customer insights work?
3562
- customer_insights_info_html: >
3563
- <strong>How are customer metrics tracked?</strong>
3564
- <p>Workarea's metrics engine saves reporting and insights data based on the customer's email address.
3565
- This allows for the best tracking of customers for generating helpful insights like
3566
- <a href="%{best_customers_path}">Best Customers</a>, <a href="%{customers_at_risk_path}">Customers at Risk</a>,
3567
- and <a href="%{repeat_purchase_rate_path}">Repeat Purchase Rate</a> as accurately as possible across both
3568
- guest and account checkouts.</p>
3569
- <strong>Wondering why some numbers don't line up?</strong>
3570
- <p>Because reporting is tracked by email address, changes in email address and/or having an account
3571
- can cause mismatch between the <a href="%{orders_path}">Orders</a> card and these insights.</p>
3572
4012
  login:
3573
4013
  never: Never logged in
3574
4014
  time_ago: "%{period} ago"
@@ -3586,8 +4026,11 @@ en:
3586
4026
  admin: Admin
3587
4027
  admin_access: Admin Access
3588
4028
  admin_areas: Admin Areas
4029
+ admin_capabilities: Admin Capabilities
3589
4030
  button: Save Permissions
3590
4031
  can_grant_or_revoke_permissions: Can grant or revoke permissions
4032
+ can_manage_orders: Can manage orders
4033
+ can_manage_orders_message: Admin users with this permission can modify orders.
3591
4034
  can_publish_now: Can publish to the live site
3592
4035
  can_publish_now_info: Publish now permission information
3593
4036
  can_publish_now_message: Admin users with this permission can make changes to the live site. Users without the permission are required to assign changes to a release, if possible, and cannot publish or schedule releases.
@@ -3614,8 +4057,10 @@ en:
3614
4057
  impersonate_customer: Impersonate This Customer
3615
4058
  impersonation_link: Impersonation Info
3616
4059
  impersonation_tooltip: Impersonating another administrator would allow you to steal their permissions
4060
+ locked: This user is currently locked out from logging in due to repeated login failures.
3617
4061
  stop_impersonation: Stop Impersonation
3618
4062
  impersonate: Impersonate
4063
+ unlock: Unlock user
3619
4064
  summary:
3620
4065
  admin_user: Admin User
3621
4066
  order: Order