spree_admin 5.5.3 → 5.6.0.rc1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/app/assets/images/vercel-deploy-button.svg +14 -0
- data/app/assets/tailwind/spree/admin/components/_alerts.css +5 -1
- data/app/assets/tailwind/spree/admin/components/_badges.css +1 -1
- data/app/assets/tailwind/spree/admin/components/_breadcrumbs.css +1 -1
- data/app/assets/tailwind/spree/admin/components/_buttons.css +1 -1
- data/app/assets/tailwind/spree/admin/components/_cards.css +1 -1
- data/app/assets/tailwind/spree/admin/components/_dialogs.css +3 -1
- data/app/assets/tailwind/spree/admin/components/_dropdowns.css +2 -2
- data/app/assets/tailwind/spree/admin/components/_filters.css +1 -1
- data/app/assets/tailwind/spree/admin/components/_forms.css +10 -6
- data/app/assets/tailwind/spree/admin/components/_layout.css +30 -23
- data/app/assets/tailwind/spree/admin/components/_rtl.css +53 -0
- data/app/assets/tailwind/spree/admin/components/_search-picker.css +2 -2
- data/app/assets/tailwind/spree/admin/components/_tables.css +1 -1
- data/app/assets/tailwind/spree/admin/index.css +1 -0
- data/app/assets/tailwind/spree/admin/plugins/_tom-select.css +6 -6
- data/app/assets/tailwind/spree/admin/plugins/_trix.css +1 -1
- data/app/assets/tailwind/spree/admin/plugins/_uppy.css +1 -1
- data/app/assets/tailwind/spree/admin/views/_page-builder.css +8 -5
- data/app/controllers/concerns/spree/admin/locale_concern.rb +76 -0
- data/app/controllers/spree/admin/base_controller.rb +38 -2
- data/app/controllers/spree/admin/countries_controller.rb +18 -4
- data/app/controllers/spree/admin/exports_controller.rb +7 -0
- data/app/controllers/spree/admin/imports_controller.rb +8 -0
- data/app/controllers/spree/admin/products_controller.rb +1 -0
- data/app/controllers/spree/admin/storefront_controller.rb +100 -0
- data/app/controllers/spree/admin/user_sessions_controller.rb +10 -0
- data/app/controllers/spree/admin/variants_controller.rb +3 -1
- data/app/helpers/spree/admin/base_helper.rb +10 -0
- data/app/helpers/spree/admin/channels_helper.rb +17 -0
- data/app/helpers/spree/admin/dropdown_helper.rb +14 -0
- data/app/helpers/spree/admin/navigation_helper.rb +1 -1
- data/app/helpers/spree/admin/onboarding_helper.rb +1 -1
- data/app/helpers/spree/admin/orders_helper.rb +9 -34
- data/app/helpers/spree/admin/products_helper.rb +1 -1
- data/app/helpers/spree/admin/rtl_helper.rb +15 -0
- data/app/helpers/spree/admin/shipment_helper.rb +1 -1
- data/app/helpers/spree/admin/storefront_helper.rb +46 -0
- data/app/helpers/spree/admin/stores_helper.rb +2 -1
- data/app/javascript/spree/admin/application.js +2 -0
- data/app/javascript/spree/admin/controllers/autocomplete_select_controller.js +4 -0
- data/app/javascript/spree/admin/controllers/calendar_range_controller.js +7 -3
- data/app/javascript/spree/admin/controllers/display_name_controller.js +18 -0
- data/app/javascript/spree/admin/controllers/query_builder_controller.js +39 -28
- data/app/javascript/spree/admin/controllers/variants_form_controller.js +49 -1
- data/app/javascript/spree/admin/helpers/display_names.js +54 -0
- data/app/models/spree/admin/table/column.rb +15 -1
- data/app/models/spree/admin/table/filter.rb +23 -16
- data/app/models/spree/admin/table/query_builder.rb +11 -2
- data/app/views/active_storage/_upload_form.html.erb +1 -1
- data/app/views/layouts/spree/admin.html.erb +1 -1
- data/app/views/layouts/spree/admin_settings.html.erb +1 -1
- data/app/views/layouts/spree/admin_wizard.html.erb +2 -2
- data/app/views/layouts/spree/minimal.html.erb +1 -1
- data/app/views/spree/admin/admin_users/_audit_log.html.erb +2 -2
- data/app/views/spree/admin/admin_users/new.html.erb +1 -1
- data/app/views/spree/admin/assets/edit.html.erb +1 -1
- data/app/views/spree/admin/channels/_form.html.erb +10 -0
- data/app/views/spree/admin/dashboard/_setup_progress.html.erb +4 -4
- data/app/views/spree/admin/dashboard/_setup_tasks.html.erb +5 -4
- data/app/views/spree/admin/dashboard/_updater.html.erb +4 -4
- data/app/views/spree/admin/dashboard/_visits.html.erb +12 -12
- data/app/views/spree/admin/dashboard/analytics.html.erb +5 -5
- data/app/views/spree/admin/dashboard/setup_tasks/_add_products.html.erb +4 -4
- data/app/views/spree/admin/dashboard/setup_tasks/_set_customer_support_email.html.erb +3 -4
- data/app/views/spree/admin/dashboard/setup_tasks/_setup_storefront.html.erb +18 -0
- data/app/views/spree/admin/gift_card_batches/_form.html.erb +1 -1
- data/app/views/spree/admin/import_rows/show.html.erb +2 -2
- data/app/views/spree/admin/imports/_footer.html.erb +1 -1
- data/app/views/spree/admin/imports/_mapping_form.html.erb +1 -1
- data/app/views/spree/admin/imports/show.html.erb +3 -3
- data/app/views/spree/admin/integrations/_integration.html.erb +1 -1
- data/app/views/spree/admin/integrations/index.html.erb +2 -4
- data/app/views/spree/admin/invitations/_invitation.html.erb +1 -1
- data/app/views/spree/admin/invitations/new.html.erb +1 -1
- data/app/views/spree/admin/invitations/show.html.erb +1 -1
- data/app/views/spree/admin/line_items/new.html.erb +1 -1
- data/app/views/spree/admin/markets/_form.html.erb +8 -6
- data/app/views/spree/admin/metafields/edit.html.erb +1 -1
- data/app/views/spree/admin/option_types/_form.html.erb +9 -6
- data/app/views/spree/admin/option_types/index.html.erb +2 -3
- data/app/views/spree/admin/orders/_customer.html.erb +1 -1
- data/app/views/spree/admin/orders/_customer_summary.html.erb +1 -1
- data/app/views/spree/admin/orders/_payments.html.erb +1 -1
- data/app/views/spree/admin/orders/_shipment.html.erb +7 -2
- data/app/views/spree/admin/orders/_shipments.html.erb +1 -1
- data/app/views/spree/admin/orders/_user_overview.html.erb +9 -6
- data/app/views/spree/admin/orders/return_authorizations/edit.html.erb +1 -1
- data/app/views/spree/admin/payment_methods/_form.html.erb +1 -1
- data/app/views/spree/admin/payment_methods/index.html.erb +2 -2
- data/app/views/spree/admin/payments/_payment.html.erb +1 -1
- data/app/views/spree/admin/price_lists/index.html.erb +2 -2
- data/app/views/spree/admin/products/form/_inventory.html.erb +19 -0
- data/app/views/spree/admin/products/form/_publishing.html.erb +2 -3
- data/app/views/spree/admin/products/index.html.erb +1 -2
- data/app/views/spree/admin/profile/edit.html.erb +3 -0
- data/app/views/spree/admin/promotion_rules/forms/_channel.html.erb +7 -0
- data/app/views/spree/admin/promotion_rules/forms/_country.html.erb +1 -1
- data/app/views/spree/admin/promotion_rules/forms/_item_total.html.erb +1 -1
- data/app/views/spree/admin/promotion_rules/forms/_market.html.erb +7 -0
- data/app/views/spree/admin/promotions/_form.html.erb +2 -2
- data/app/views/spree/admin/promotions/_sidebar.html.erb +1 -1
- data/app/views/spree/admin/promotions/edit.html.erb +2 -2
- data/app/views/spree/admin/promotions/form/_kind.html.erb +11 -11
- data/app/views/spree/admin/promotions/form/_settings.html.erb +4 -5
- data/app/views/spree/admin/reports/new.html.erb +2 -2
- data/app/views/spree/admin/shared/_address.html.erb +1 -1
- data/app/views/spree/admin/shared/_analytics_loader_skeleton.html.erb +5 -5
- data/app/views/spree/admin/shared/_calendar_range_picker.html.erb +11 -1
- data/app/views/spree/admin/shared/_content_header.html.erb +2 -2
- data/app/views/spree/admin/shared/_edit_resource_links.html.erb +1 -1
- data/app/views/spree/admin/shared/_filters_search_bar.html.erb +1 -1
- data/app/views/spree/admin/shared/_growth_rate_badge.html.erb +1 -1
- data/app/views/spree/admin/shared/_head.html.erb +4 -1
- data/app/views/spree/admin/shared/_index_table_options.html.erb +2 -2
- data/app/views/spree/admin/shared/_media_asset.html.erb +1 -1
- data/app/views/spree/admin/shared/_media_form.html.erb +1 -1
- data/app/views/spree/admin/shared/_seo.html.erb +1 -1
- data/app/views/spree/admin/shared/_sidebar.html.erb +1 -1
- data/app/views/spree/admin/shared/sidebar/_enterprise_edition_notice.html.erb +2 -2
- data/app/views/spree/admin/shared/sortable_tree/_taxonomy.html.erb +1 -1
- data/app/views/spree/admin/shipping_methods/form/_display.html.erb +2 -2
- data/app/views/spree/admin/shipping_methods/form/_estimated_transit_business_days.html.erb +1 -2
- data/app/views/spree/admin/shipping_methods/form/_tracking_url.html.erb +1 -1
- data/app/views/spree/admin/shipping_methods/form/_zones.html.erb +1 -1
- data/app/views/spree/admin/shipping_methods/index.html.erb +1 -1
- data/app/views/spree/admin/storefront/show.html.erb +150 -0
- data/app/views/spree/admin/stores/form/_basic.html.erb +2 -2
- data/app/views/spree/admin/stores/form/_checkout.html.erb +4 -0
- data/app/views/spree/admin/stores/form/_emails.html.erb +4 -6
- data/app/views/spree/admin/tables/_table.html.erb +3 -2
- data/app/views/spree/admin/taxons/_form.html.erb +2 -2
- data/app/views/spree/admin/user_sessions/new.html.erb +11 -2
- data/app/views/spree/admin/users/_tabs.html.erb +1 -1
- data/app/views/spree/admin/variants/_search_result.html.erb +1 -1
- data/app/views/spree/admin/variants/_variant.html.erb +1 -1
- data/app/views/spree/admin/variants/form/_inventory.html.erb +17 -0
- data/app/views/spree/admin/webhook_endpoints/_form.html.erb +2 -2
- data/app/views/spree/admin/zones/index.html.erb +1 -1
- data/config/i18n-tasks.yml +3 -0
- data/config/initializers/spree_admin_navigation.rb +9 -0
- data/config/initializers/spree_admin_tables.rb +20 -18
- data/config/locales/en.yml +647 -0
- data/config/routes.rb +5 -0
- metadata +18 -6
data/config/locales/en.yml
CHANGED
|
@@ -4,7 +4,43 @@ en:
|
|
|
4
4
|
video_embed:
|
|
5
5
|
not_found: Can't embed a video using the provided URL
|
|
6
6
|
spree:
|
|
7
|
+
acceptance_errors: Acceptance errors
|
|
8
|
+
actions:
|
|
9
|
+
cancel: Cancel
|
|
10
|
+
close: Close
|
|
11
|
+
connect: Connect
|
|
12
|
+
continue: Continue
|
|
13
|
+
create: Create
|
|
14
|
+
destroy: Delete
|
|
15
|
+
discard: Discard
|
|
16
|
+
edit: Edit
|
|
17
|
+
open: Open
|
|
18
|
+
reject: Reject
|
|
19
|
+
remove: Remove
|
|
20
|
+
resend: Resend
|
|
21
|
+
save: Save
|
|
22
|
+
select_file: Select file
|
|
23
|
+
send_invitation: Send invitation
|
|
24
|
+
update: Update
|
|
25
|
+
add_action_of_type: Add action of type
|
|
26
|
+
add_coupon_code: Add Coupon Code
|
|
27
|
+
add_gift_card: Add Gift Card
|
|
28
|
+
add_new_address: Add new address
|
|
29
|
+
add_one: Add One
|
|
30
|
+
add_option_value: Add Option Value
|
|
31
|
+
add_rule_of_type: Add rule of type
|
|
32
|
+
add_selected: Add Selected
|
|
33
|
+
add_selected_products: Add selected products
|
|
34
|
+
add_selected_variant: Add selected variant
|
|
35
|
+
add_variant: Add Variant
|
|
36
|
+
added_at: Added At
|
|
37
|
+
adjustment_amount_help: Positive values are charges, negative values are credits.
|
|
38
|
+
adjustment_closed_description: The adjustment is closed, and will not be recalculated.
|
|
39
|
+
adjustment_open_description: The adjustment is open, and will be recalculated.
|
|
7
40
|
admin:
|
|
41
|
+
admin_users:
|
|
42
|
+
audit_log_enterprise_notice: Audit log is part of the Spree Enterprise offering.
|
|
43
|
+
upgrade_to_enterprise: Upgrade to Spree Enterprise
|
|
8
44
|
allowed_origins:
|
|
9
45
|
origin_help: Enter the full origin URL of your storefront (e.g. https://myshop.com). Do not include paths or query strings.
|
|
10
46
|
origin_settings: Origin Settings
|
|
@@ -38,6 +74,7 @@ en:
|
|
|
38
74
|
usage_instructions:
|
|
39
75
|
publishable: Use this key for client-side requests. It can be safely included in your frontend code.
|
|
40
76
|
secret: Use this key for server-side requests only. Keep it confidential and never expose it in client-side code.
|
|
77
|
+
assistant: Assistant
|
|
41
78
|
audit_log: Audit Log
|
|
42
79
|
avg_order_value: Avg. Order Value
|
|
43
80
|
back_to_dashboard: Back to dashboard
|
|
@@ -80,9 +117,21 @@ en:
|
|
|
80
117
|
code_hint: A short, stable identifier (e.g. "online", "pos", "wholesale"). Used by API clients via the X-Spree-Channel header and for order attribution.
|
|
81
118
|
default: Default channel
|
|
82
119
|
default_hint: Exactly one channel per store is the default. Used as the fallback when no channel is selected and as the auto-publish target for new products.
|
|
120
|
+
guest_checkout: Guest checkout
|
|
121
|
+
guest_checkout_allowed: Allowed
|
|
122
|
+
guest_checkout_blocked: Not allowed
|
|
123
|
+
guest_checkout_hint: Whether shoppers can check out without an account on this channel. Inherits the store setting when unset.
|
|
124
|
+
guest_checkout_inherit: Inherit from store
|
|
83
125
|
order_routing_strategy: Order routing strategy
|
|
84
126
|
order_routing_strategy_hint: Overrides the store-level routing strategy for orders attributed to this channel.
|
|
85
127
|
order_routing_strategy_inherit: Inherit from store
|
|
128
|
+
storefront_access: Storefront access
|
|
129
|
+
storefront_access_hint: Controls what anonymous visitors can see on this channel. Inherits the store setting when unset. When prices are hidden, guests must sign in to check out — guest checkout does not apply.
|
|
130
|
+
storefront_access_inherit: Inherit from store
|
|
131
|
+
storefront_access_options:
|
|
132
|
+
login_required: Login required — visitors must sign in to browse
|
|
133
|
+
prices_hidden: Prices hidden — visitors must sign in to see prices
|
|
134
|
+
public: Public — anyone can browse and see prices
|
|
86
135
|
checkout_settings:
|
|
87
136
|
checkout_links:
|
|
88
137
|
description: Links to these pages will be displayed in the checkout footer.
|
|
@@ -95,6 +144,9 @@ en:
|
|
|
95
144
|
special_instructions:
|
|
96
145
|
description: Allow customers to add special instructions to their order.
|
|
97
146
|
label: Display the special instructions field
|
|
147
|
+
storefront_access:
|
|
148
|
+
description: Default control over what anonymous visitors can see across the store. Individual sales channels can override this. When prices are hidden, guests must sign in to check out — guest checkout does not apply.
|
|
149
|
+
label: Storefront access
|
|
98
150
|
close_sidebar: Close sidebar
|
|
99
151
|
copied: Copied!
|
|
100
152
|
copy_payment_link: Copy Payment Link
|
|
@@ -107,8 +159,22 @@ en:
|
|
|
107
159
|
getting_started:
|
|
108
160
|
description: Everything you need to set up to start selling.
|
|
109
161
|
hi: Hi
|
|
162
|
+
setup_progress:
|
|
163
|
+
steps_done_html: "<strong>%{done}</strong> of %{total} steps done"
|
|
164
|
+
title: Your overall setup progress
|
|
110
165
|
top_products: Top products
|
|
166
|
+
updater:
|
|
167
|
+
available_html: "%{version} is available."
|
|
168
|
+
current_version_html: Your current version is %{version}.
|
|
169
|
+
view_release_notes: View release notes
|
|
111
170
|
view_report: View report
|
|
171
|
+
visits:
|
|
172
|
+
devices_title: Visitor devices
|
|
173
|
+
landing_pages_title: Top landing pages
|
|
174
|
+
locations_title: Visitor locations
|
|
175
|
+
no_data: No data
|
|
176
|
+
no_data_for_period: No data available for this period.
|
|
177
|
+
referrers_title: Where are visitors coming from?
|
|
112
178
|
whats_happening_on_html: Here's what's happening on <strong>%{store_name}</strong> today.
|
|
113
179
|
datetime_field_timezone_help: 'Time zone: %{zone}'
|
|
114
180
|
digital_shipment_fulfillment_note: This shipment will be marked as fulfilled once the user downloads the digital product
|
|
@@ -122,6 +188,9 @@ en:
|
|
|
122
188
|
edit_profile: Edit Profile
|
|
123
189
|
edit_shipping_address: Edit shipping address
|
|
124
190
|
edit_theme: Edit theme
|
|
191
|
+
enterprise_edition_notice:
|
|
192
|
+
body: Thank you for using Spree Community Edition! Please consider upgrading to Enterprise Edition for access to all features and support.
|
|
193
|
+
upgrade: Upgrade
|
|
125
194
|
errors: Errors
|
|
126
195
|
execution_time: Execution Time
|
|
127
196
|
expand_sidebar: Expand sidebar
|
|
@@ -134,6 +203,7 @@ en:
|
|
|
134
203
|
getting_started: Getting started
|
|
135
204
|
gift_card_batches:
|
|
136
205
|
codes_count: Codes count
|
|
206
|
+
expires_at_help: Gift cards will expire after this date.
|
|
137
207
|
new_gift_card_batch: New Gift Card Batch
|
|
138
208
|
prefix: Prefix
|
|
139
209
|
gift_cards:
|
|
@@ -146,15 +216,30 @@ en:
|
|
|
146
216
|
all_required_columns_mapped: Good job, all required columns are mapped!
|
|
147
217
|
field_required: Field required
|
|
148
218
|
import_done: All done!
|
|
219
|
+
json: JSON
|
|
149
220
|
large_import_background_note: You can close this page — the import will continue in the background.
|
|
150
221
|
large_import_message: This import contains %{count} rows and is too large to display individually.
|
|
151
222
|
large_import_summary: "%{completed} completed, %{failed} failed"
|
|
152
223
|
mapping_required: This field is required
|
|
153
224
|
please_map_all_required_fields: Please map all the required fields to continue.
|
|
225
|
+
please_select_a_column: Please select a column
|
|
226
|
+
rows_processed: "%{processed} / %{total} rows processed"
|
|
227
|
+
schema: Schema
|
|
228
|
+
steps:
|
|
229
|
+
complete: 3. Complete
|
|
230
|
+
map_fields: 1. Map fields
|
|
231
|
+
process_rows: 2. Process rows
|
|
154
232
|
waiting_for_file_to_be_processed: Waiting for file to be processed...
|
|
155
233
|
integrations:
|
|
234
|
+
find_more_html: Find more integrations in %{integrations_link}
|
|
156
235
|
invalid_integration_type: This integration is not allowed
|
|
236
|
+
none_installed_html: No integrations installed yet. Find integrations in %{integrations_link}
|
|
157
237
|
page_subtitle: Connect your store to third-party services to enhance customer experience.
|
|
238
|
+
integrations_directory: Integrations Directory
|
|
239
|
+
invitations:
|
|
240
|
+
email_placeholder: eg. steve@apple.com
|
|
241
|
+
expires_at: Expires at
|
|
242
|
+
invited_you_to_join_html: "%{inviter} has invited you to join %{resource}"
|
|
158
243
|
json_preview:
|
|
159
244
|
no_api_response: No API response found for this resource
|
|
160
245
|
manage_markets: Manage Markets
|
|
@@ -170,6 +255,8 @@ en:
|
|
|
170
255
|
metafield_definitions:
|
|
171
256
|
edit_warning: You can't change the resource type or metafield type after the definition has been used.
|
|
172
257
|
used_in: Used in
|
|
258
|
+
metafields:
|
|
259
|
+
none_configured_for: No metafield definitions configured for %{resource}.
|
|
173
260
|
name: Name
|
|
174
261
|
navigation:
|
|
175
262
|
nested_under: Nested under
|
|
@@ -177,6 +264,8 @@ en:
|
|
|
177
264
|
all: All
|
|
178
265
|
unverified: Unverified
|
|
179
266
|
verified: Verified
|
|
267
|
+
next_page: Next page
|
|
268
|
+
no_change: No change
|
|
180
269
|
not_tracking_inventory: Not tracking inventory
|
|
181
270
|
notifications: Notifications
|
|
182
271
|
num_orders: No. of Orders
|
|
@@ -190,6 +279,15 @@ en:
|
|
|
190
279
|
read_and_write: Read & Write
|
|
191
280
|
read_only: Read Only
|
|
192
281
|
scopes: Scopes
|
|
282
|
+
option_types:
|
|
283
|
+
intro_help: Options are used to group certain attributes. For example, you can create an option named "shirt size" and then create an option value named "small" and "medium" for this option.
|
|
284
|
+
learn_more: Learn more about options
|
|
285
|
+
name_help_html: This is used internally to identify the option type. <strong>It must be unique.</strong>
|
|
286
|
+
presentation_help: This is used to display the option type on the storefront.
|
|
287
|
+
showing_pagination: Showing %{from}-%{to} of %{total}
|
|
288
|
+
value_count:
|
|
289
|
+
one: "%{count} value"
|
|
290
|
+
other: "%{count} values"
|
|
193
291
|
order:
|
|
194
292
|
events:
|
|
195
293
|
approve: Approve
|
|
@@ -199,15 +297,54 @@ en:
|
|
|
199
297
|
orders:
|
|
200
298
|
add_user_to_this_order: Add customer to this order
|
|
201
299
|
all_orders: All Orders
|
|
300
|
+
avs_responses:
|
|
301
|
+
a: Street address matches, but 5-digit and 9-digit postal code do not match.
|
|
302
|
+
b: Street address matches, but postal code not verified.
|
|
303
|
+
c: Street address and postal code do not match.
|
|
304
|
+
d: Street address and postal code match.
|
|
305
|
+
e: AVS data is invalid or AVS is not allowed for this card type.
|
|
306
|
+
f: Card member's name does not match, but billing postal code matches.
|
|
307
|
+
g: Non-U.S. issuing bank does not support AVS.
|
|
308
|
+
h: Card member's name does not match. Street address and postal code match.
|
|
309
|
+
i: Address not verified.
|
|
310
|
+
j: Card member's name, billing address, and postal code match.
|
|
311
|
+
k: Card member's name matches but billing address and billing postal code do not match.
|
|
312
|
+
l: Card member's name and billing postal code match, but billing address does not match.
|
|
313
|
+
m: Street address and postal code match.
|
|
314
|
+
"n": Street address and postal code do not match.
|
|
315
|
+
o: Card member's name and billing address match, but billing postal code does not match.
|
|
316
|
+
p: Postal code matches, but street address not verified.
|
|
317
|
+
q: Card member's name, billing address, and postal code match.
|
|
318
|
+
r: System unavailable.
|
|
319
|
+
s: Bank does not support AVS.
|
|
320
|
+
t: Card member's name does not match, but street address matches.
|
|
321
|
+
u: Address information unavailable. Returned if the U.S. bank does not support non-U.S. AVS or if the AVS in a U.S. bank is not functioning properly.
|
|
322
|
+
v: Card member's name, billing address, and billing postal code match.
|
|
323
|
+
w: Street address does not match, but 9-digit postal code matches.
|
|
324
|
+
x: Street address and 9-digit postal code match.
|
|
325
|
+
"y": Street address and 5-digit postal code match.
|
|
326
|
+
z: Street address does not match, but 5-digit postal code matches.
|
|
202
327
|
canceled: Canceled
|
|
328
|
+
cvv_responses:
|
|
329
|
+
blank: Transaction failed because wrong CVV2 number was entered or no CVV2 number was entered
|
|
330
|
+
m: CVV2 Match
|
|
331
|
+
"n": CVV2 No Match
|
|
332
|
+
p: Not Processed
|
|
333
|
+
s: Issuer indicates that CVV2 data should be present on the card, but the merchant has indicated data is not present on the card
|
|
334
|
+
u: Issuer has not certified for CVV2 or Issuer has not provided Visa with the CVV2 encryption keys
|
|
203
335
|
fulfilled: Fulfilled
|
|
204
336
|
no_email_present: Please add an email address to send the payment link
|
|
337
|
+
orders_count:
|
|
338
|
+
one: "%{count} order"
|
|
339
|
+
other: "%{count} orders"
|
|
205
340
|
orders_to_fulfill: Orders to fulfill
|
|
206
341
|
partially_refunded: Partially Refunded
|
|
207
342
|
payment_link_sent: Payment link was sent to the customer
|
|
343
|
+
placed_by_guest: This order was placed by a guest customer
|
|
208
344
|
provide_email: Provide an email address
|
|
209
345
|
refunded: Refunded
|
|
210
346
|
remove_user_from_this_order: Remove customer from this order
|
|
347
|
+
repeat_customer_summary_html: This is a repeat customer that has spent a total of %{amount} across %{count}, averaging %{average} per order.
|
|
211
348
|
unfulfilled: Unfulfilled
|
|
212
349
|
page_builder:
|
|
213
350
|
background_color: Background color
|
|
@@ -245,7 +382,12 @@ en:
|
|
|
245
382
|
use_description_from_admin: Use description from admin
|
|
246
383
|
vertical_alignment: Vertical alignment
|
|
247
384
|
youtube_video_url: Youtube video URL
|
|
385
|
+
payment_methods:
|
|
386
|
+
available_payment_methods: Available Payment Methods
|
|
387
|
+
find_more_payment_methods_html: Find more payment methods in %{integrations_link}
|
|
388
|
+
name_help: This name will be used to identify the payment method on the storefront
|
|
248
389
|
personal_details: Personal Details
|
|
390
|
+
previous_page: Previous page
|
|
249
391
|
price_lists:
|
|
250
392
|
activate: Activate
|
|
251
393
|
activated: Price list has been activated
|
|
@@ -255,6 +397,8 @@ en:
|
|
|
255
397
|
confirm_unschedule: Are you sure you want to unschedule this price list?
|
|
256
398
|
deactivate: Deactivate
|
|
257
399
|
deactivated: Price list has been deactivated
|
|
400
|
+
learn_more: Learn more about price lists
|
|
401
|
+
page_info: Price lists are a powerful tool for managing pricing strategies based on customer groups, products, or other criteria.
|
|
258
402
|
schedule: Schedule
|
|
259
403
|
scheduled: Price list has been scheduled
|
|
260
404
|
unschedule: Unschedule
|
|
@@ -281,6 +425,7 @@ en:
|
|
|
281
425
|
inventory:
|
|
282
426
|
barcode: Barcode (ISBN, UPC, GTIN, etc.)
|
|
283
427
|
sku: SKU (Stock Keeping Unit)
|
|
428
|
+
learn_more: Learn more about managing products
|
|
284
429
|
out_of_stock: Out of Stock
|
|
285
430
|
paused: Paused
|
|
286
431
|
search_results:
|
|
@@ -297,6 +442,23 @@ en:
|
|
|
297
442
|
choose_stores: Choose which stores this product should be available in
|
|
298
443
|
variants:
|
|
299
444
|
option_types_link: To add more option types please go to <a href="%{link}">Option Types</a>
|
|
445
|
+
promotions:
|
|
446
|
+
add_more_codes_help: To add more codes just increase this number
|
|
447
|
+
code_prefix_example_html: eg. %{example}
|
|
448
|
+
code_prefix_placeholder: Coupon Prefix (optional)
|
|
449
|
+
coupon_code_placeholder: Your coupon code
|
|
450
|
+
expires_at_help: 'Leave this field blank for no expiration. Time zone: %{zone}'
|
|
451
|
+
kind:
|
|
452
|
+
automatic_help: This promotion will be automatically applied to all eligible orders.
|
|
453
|
+
multi_codes_help: These codes are generated automatically and can be downloaded as a CSV file. Codes are unique and can only be used once.
|
|
454
|
+
multi_codes_label: Generate unique codes
|
|
455
|
+
one_code_help: You can limit the number of times this code can be used.
|
|
456
|
+
one_code_label: One code for all customers
|
|
457
|
+
name_help: Customers will see this in their cart and at checkout.
|
|
458
|
+
next_step_info: In the next step you will be able to add actions and rules to your promotion
|
|
459
|
+
number_of_codes_help: How many codes you want to generate.
|
|
460
|
+
number_of_codes_placeholder: Number of codes
|
|
461
|
+
usage_limit_help: Leave this field blank for unlimited usage.
|
|
300
462
|
publishing:
|
|
301
463
|
caption_hidden_after: Comes down %{date}
|
|
302
464
|
caption_live: Visible to customers now
|
|
@@ -320,13 +482,23 @@ en:
|
|
|
320
482
|
report_created: Your report is being generated. You will receive an email with a download link when it is ready!
|
|
321
483
|
reset_digital_link_download_limits: Reset download limits
|
|
322
484
|
response_code: Response Code
|
|
485
|
+
search_placeholder: Search %{resource}
|
|
323
486
|
selected: selected
|
|
324
487
|
send_payment_link: Send Payment Link
|
|
325
488
|
shipment:
|
|
326
489
|
please_provide_tracking_details: Before marking shipment as shipped please provide tracking details
|
|
327
490
|
shipment_transfer:
|
|
328
491
|
wrong_destination: Wrong destination
|
|
492
|
+
shipments:
|
|
493
|
+
stock_location_option: "%{name} (%{count} on hand)"
|
|
494
|
+
shipping_methods:
|
|
495
|
+
admin_name_help: This will be displayed to admins
|
|
496
|
+
checkout_info: Shipping methods are options that the customer sees when they reach the checkout, they are the carriers and services used to send your products.
|
|
497
|
+
estimated_transit_business_days_help: This is the estimated number of business days it will take for the package to arrive at the customer's address. It will be displayed on the checkout page.
|
|
498
|
+
name_help: This will be displayed to customers
|
|
499
|
+
tracking_url_token_help: will be replaced with the tracking number.
|
|
329
500
|
show_json: Show JSON
|
|
501
|
+
sign_ups: Sign-ups
|
|
330
502
|
stock_transfers:
|
|
331
503
|
add_products_tip: You need to select a destination location first
|
|
332
504
|
store_credit:
|
|
@@ -335,26 +507,92 @@ en:
|
|
|
335
507
|
company_field:
|
|
336
508
|
description: It shows the company field on the address form in the My Account section and on the checkout address step.
|
|
337
509
|
label: Display the company address field
|
|
510
|
+
currencies_managed_by_markets_html: Currencies and locales are now managed by %{markets_link}.
|
|
338
511
|
customer_support_email_help: This email is visible to your Store visitors in the Footer section
|
|
512
|
+
email_addresses: Email addresses
|
|
513
|
+
logo_help: Used in the admin dashboard
|
|
514
|
+
mail_from_address_help: Please provide the email address that will be used as the sender of all emails sent from your store.
|
|
515
|
+
mailer_logo_format_hint: We recommend images with a transparent background. Only JPEG and PNG formats are supported.
|
|
516
|
+
mailer_logo_help: This logo is included in all email notifications such as order confirmation
|
|
339
517
|
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
|
|
340
518
|
send_consumer_transactional_emails_help: When unchecked, transactional emails like order confirmations and shipment notifications will not be sent to customers
|
|
341
519
|
store_setup_tasks:
|
|
342
520
|
add_billing_address: Add billing address
|
|
343
521
|
add_products: Add products
|
|
522
|
+
add_products_task:
|
|
523
|
+
copy: Add products to your store, either your own or invite 3rd party vendors to sell together.
|
|
524
|
+
done_subtitle: Remember you can always add more!
|
|
525
|
+
done_title: Good job, you've added products to your store!
|
|
526
|
+
import_hint: You can also import products in bulk from a CSV or Excel file.
|
|
527
|
+
customer_support_email_task:
|
|
528
|
+
copy: We need your customer support email to display on your storefront. This email will work as a contact point for your customers to reach out to you for any queries or support.
|
|
529
|
+
current_html: Your customer support email is %{email}.
|
|
530
|
+
label: Customer support email
|
|
344
531
|
payment_methods:
|
|
345
532
|
copy: In order to collect payments, please setup at least one online payment provider.
|
|
346
533
|
done: You're all set! You can always manage your Payment Methods on <a href="%{link}" data-turbo-frame="_top">this</a> page.
|
|
347
534
|
setup: Setup Payment Methods
|
|
348
535
|
title: Please setup Payment Methods for your store
|
|
349
536
|
set_customer_support_email: Set customer support email
|
|
537
|
+
setup_payment_method: Setup Payment Methods
|
|
538
|
+
setup_storefront: Setup Storefront
|
|
350
539
|
setup_taxes_collection: Setup taxes collection
|
|
540
|
+
storefront:
|
|
541
|
+
copy: Spree is headless — connect any storefront to the Store API, whether it's a web storefront or a mobile app. Need one? Deploy the official Next.js storefront in one click.
|
|
542
|
+
done: Your storefront is connected and live at
|
|
543
|
+
manage: Manage storefront
|
|
544
|
+
setup: Setup Storefront
|
|
351
545
|
taxes:
|
|
352
546
|
copy: In order to collect taxes, please setup your tax rates.
|
|
353
547
|
done: You're all set! You can always manage your taxes on the <a href="%{link}" data-turbo-frame="_top">settings</a> page.
|
|
354
548
|
setup: Setup Tax Rates
|
|
355
549
|
storefront: Storefront
|
|
550
|
+
storefront_setup:
|
|
551
|
+
allow_origin_button: Allow this origin & finish setup
|
|
552
|
+
api_url_label: Store API URL
|
|
553
|
+
connect_copy: 'Use these credentials in any client that talks to the Store API — a web storefront, a mobile app, or anything else:'
|
|
554
|
+
connect_title: Connect your storefront
|
|
555
|
+
connected_title: Connected storefronts
|
|
556
|
+
deploy_button: Deploy to Vercel
|
|
557
|
+
deploy_copy: Don't have a storefront yet? The fastest way to launch is the official open-source Next.js storefront. Deploying clones it to your Git account and builds it on Vercel with your credentials prefilled.
|
|
558
|
+
deploy_finish_hint: Once the deployment finishes, copy your storefront's URL from Vercel into the Storefront URL field below and save it to finish the setup.
|
|
559
|
+
deploy_title: 'Recommended: deploy the official Next.js storefront'
|
|
560
|
+
deployed_copy: It's now live at
|
|
561
|
+
deployed_title: Your storefront has been deployed!
|
|
562
|
+
deployment_already_allowed: This storefront origin is already allowed —
|
|
563
|
+
description: Connect your web storefront or mobile app with the credentials below, or deploy the official Next.js storefront in one click.
|
|
564
|
+
done: Your storefront is connected and live at
|
|
565
|
+
env_description: Your Spree Store API URL and publishable key. Both are prefilled from your store — adjust them before deploying if needed.
|
|
566
|
+
invalid_origin: This doesn't look like a valid storefront URL.
|
|
567
|
+
local_installation_instructions: Local installation instructions
|
|
568
|
+
loopback_warning: Your store URL points to a local address that Vercel's build servers can't reach. Deploy your backend to a public URL first, or adjust the SPREE_API_URL value during the Vercel setup.
|
|
569
|
+
manage_allowed_origins: Manage allowed origins
|
|
570
|
+
origin_allowed: "%{origin} can now access your Store API."
|
|
571
|
+
publishable_key_label: Publishable API key
|
|
572
|
+
see_online_demo: See online demo
|
|
573
|
+
storefront_url_help: The URL customers use to reach your storefront. It becomes the base for links in customer emails and is automatically added as an allowed origin so browser-based storefronts can call the Store API.
|
|
574
|
+
storefront_url_label: Storefront URL
|
|
575
|
+
storefront_url_saved: 'Storefront URL saved: %{url}'
|
|
576
|
+
title: Setup Storefront
|
|
577
|
+
view_on_vercel: View on Vercel
|
|
356
578
|
successful: Successful
|
|
357
579
|
successfully_reset_digital_links_limit: Download limits have been reset
|
|
580
|
+
table:
|
|
581
|
+
operators:
|
|
582
|
+
cont: contains
|
|
583
|
+
end: ends with
|
|
584
|
+
eq: equals
|
|
585
|
+
gt: greater than
|
|
586
|
+
gteq: greater than or equal to
|
|
587
|
+
in: is any of
|
|
588
|
+
lt: less than
|
|
589
|
+
lteq: less than or equal to
|
|
590
|
+
not_cont: does not contain
|
|
591
|
+
not_eq: does not equal
|
|
592
|
+
not_in: is none of
|
|
593
|
+
not_null: is not empty
|
|
594
|
+
'null': is empty
|
|
595
|
+
start: starts with
|
|
358
596
|
tables:
|
|
359
597
|
add_filter: Add filter
|
|
360
598
|
add_or_group: Add OR group
|
|
@@ -407,25 +645,43 @@ en:
|
|
|
407
645
|
automatic_info: Automatically add products to this category if they match the rules you set.
|
|
408
646
|
manual: Manual
|
|
409
647
|
manual_info: Curate products manually. You can add or remove them in bulk.
|
|
648
|
+
taxons:
|
|
649
|
+
seo:
|
|
650
|
+
placeholder: Add a title and description to see how this taxon might appear in a search engine listing
|
|
651
|
+
square_image_help: Used for the featured image on the homepage.
|
|
652
|
+
total_orders: Total Orders
|
|
410
653
|
translations:
|
|
411
654
|
no_translations_configured: No translations configured. Please setup Markets to use translations.
|
|
412
655
|
upload_new_asset: Upload new media
|
|
413
656
|
user:
|
|
414
657
|
last_order_placed: Last order placed
|
|
415
658
|
no_store_credit: Customer has no Store Credit available
|
|
659
|
+
user_sessions:
|
|
660
|
+
email_placeholder: steve@getvendo.com
|
|
661
|
+
welcome_back: Welcome back
|
|
416
662
|
users:
|
|
417
663
|
filters:
|
|
418
664
|
search_placeholder: Search customers by email or name
|
|
665
|
+
timeline: Timeline
|
|
419
666
|
utilities:
|
|
420
667
|
preview: Preview
|
|
421
668
|
variants:
|
|
669
|
+
count_at_location:
|
|
670
|
+
one: "%{count} at location"
|
|
671
|
+
other: "%{count} at location"
|
|
422
672
|
search_results:
|
|
423
673
|
no_variants: We couldn't find any variants matching your search :(
|
|
424
674
|
variants_form:
|
|
425
675
|
add_option:
|
|
426
676
|
empty: Add options like size or color
|
|
427
677
|
not_empty: Add another option
|
|
678
|
+
backorder_limit_hint: Maximum number of units sold beyond available stock — caps backorders and pre-orders. Leave blank for unlimited.
|
|
679
|
+
backorder_limit_label: Backorder limit
|
|
428
680
|
compare_at_price_description: This price is used to show marked down price on the product page.
|
|
681
|
+
preorder_ships_at_hint: When you expect to ship pre-orders. Shown to customers as the delivery promise; the pre-order ends once this date passes.
|
|
682
|
+
preorder_ships_at_label: Ships by
|
|
683
|
+
preorderable_hint: Sell this variant before it's in stock. Cap how many you'll take with the backorder limit, enter incoming stock as the count, or leave the limit blank for unlimited.
|
|
684
|
+
preorderable_label: Available for pre-order
|
|
429
685
|
stock_locations_link: To add more stock locations please go to <a href="%{link}">Stock Locations</a>
|
|
430
686
|
total_inventory_html: 'Total inventory at %{stock_location} location: %{count} available'
|
|
431
687
|
vendors:
|
|
@@ -462,6 +718,7 @@ en:
|
|
|
462
718
|
healthy: "%{percentage}% success"
|
|
463
719
|
no_deliveries: No data
|
|
464
720
|
health_label: Health
|
|
721
|
+
name_placeholder: e.g. Storefront emails, Fulfillment service
|
|
465
722
|
new: New Webhook Endpoint
|
|
466
723
|
re_enable: Re-enable
|
|
467
724
|
secret_key: Secret Key
|
|
@@ -471,6 +728,7 @@ en:
|
|
|
471
728
|
successful_deliveries: Successful Deliveries
|
|
472
729
|
test_failed: Failed to send test webhook. Please check the endpoint configuration.
|
|
473
730
|
test_sent: Test webhook sent. Check deliveries for the result.
|
|
731
|
+
url_placeholder: https://example.com/webhooks
|
|
474
732
|
webhooks_subscribers:
|
|
475
733
|
all_events: All Events
|
|
476
734
|
new_webhooks_subscriber: New Webhooks Subscriber
|
|
@@ -480,3 +738,392 @@ en:
|
|
|
480
738
|
subscriptions: Subscriptions
|
|
481
739
|
time_of_last_event: Time of Last Event
|
|
482
740
|
webhooks_events: Webhooks Events
|
|
741
|
+
zones:
|
|
742
|
+
info: Zones are geographical groupings, they represent collections of either states or countries.
|
|
743
|
+
admin_language_help: The language your admin dashboard is displayed in. Only affects what you see, not the store or other staff.
|
|
744
|
+
admin_locale_help: The language used for the admin dashboard. If not set, defaults to the application locale.
|
|
745
|
+
all_items_have_been_returned: All items have been returned
|
|
746
|
+
all_time: All time
|
|
747
|
+
alt_text: Alternative Text
|
|
748
|
+
apis:
|
|
749
|
+
admin: Admin API
|
|
750
|
+
store: Store API
|
|
751
|
+
applied_to: Applied to
|
|
752
|
+
are_you_sure: Are you sure?
|
|
753
|
+
are_you_sure_delete: Are you sure you want to delete this record?
|
|
754
|
+
assigned_variants: Assigned variants
|
|
755
|
+
assigned_variants_help: Pick the variants this image represents. Leave blank to apply to all variants.
|
|
756
|
+
authorization_failure: Authorization Failure
|
|
757
|
+
automatic_promotion: Automatic
|
|
758
|
+
breadcrumbs: Breadcrumbs
|
|
759
|
+
calculated_reimbursements: Calculated Reimbursements
|
|
760
|
+
cancel_order: Cancel order
|
|
761
|
+
cannot_perform_operation: Cannot perform requested operation
|
|
762
|
+
cannot_ship: Shipment cannot be shipped
|
|
763
|
+
card_expiration_placeholder: MM/YYYY
|
|
764
|
+
card_type: Brand
|
|
765
|
+
card_type_is: Card type is
|
|
766
|
+
categorization: Categorization
|
|
767
|
+
change_password: Change password
|
|
768
|
+
close_sidebar: Close sidebar
|
|
769
|
+
confirm_password: Password Confirmation
|
|
770
|
+
contact_information: Contact information
|
|
771
|
+
contact_us: Contact us
|
|
772
|
+
continue_selling_when_out_of_stock: Continue selling when out of stock
|
|
773
|
+
copied: Copied!
|
|
774
|
+
copy_id: Copy ID
|
|
775
|
+
copy_number: Copy number
|
|
776
|
+
country_based: Country Based
|
|
777
|
+
create_a_new_account: Create a new account
|
|
778
|
+
custom_domains: Custom domains
|
|
779
|
+
customer_could_not_be_removed_from_group: Customer could not be removed from group
|
|
780
|
+
customer_group_rule:
|
|
781
|
+
choose_customer_groups: 'Select the customer group(s) to which this promotion should apply:'
|
|
782
|
+
customer_removed_from_group: Customer removed from group
|
|
783
|
+
customers_added_to_group:
|
|
784
|
+
one: "%{count} customer added to group"
|
|
785
|
+
other: "%{count} customers added to group"
|
|
786
|
+
customers_removed_from_group:
|
|
787
|
+
one: "%{count} customer removed from group"
|
|
788
|
+
other: "%{count} customers removed from group"
|
|
789
|
+
date_range_presets:
|
|
790
|
+
last_30_days: Last 30 Days
|
|
791
|
+
last_7_days: Last 7 Days
|
|
792
|
+
last_month: Last Month
|
|
793
|
+
this_month: This Month
|
|
794
|
+
today: Today
|
|
795
|
+
yesterday: Yesterday
|
|
796
|
+
days_ago: Days ago
|
|
797
|
+
delete_selected: Delete selected
|
|
798
|
+
digital_assets_help: Digital assets are files that can be downloaded by customers after purchase.
|
|
799
|
+
dimension_units:
|
|
800
|
+
centimeter: Centimeter (cm)
|
|
801
|
+
foot: Foot (ft)
|
|
802
|
+
inch: Inch (in)
|
|
803
|
+
millimeter: Millimeter (mm)
|
|
804
|
+
display_settings: Display settings
|
|
805
|
+
domains: Domains
|
|
806
|
+
draft_orders: Draft Orders
|
|
807
|
+
edit_address: Edit address
|
|
808
|
+
edit_prices: Edit Prices
|
|
809
|
+
edit_refund: Edit refund
|
|
810
|
+
errors_prohibited_this_record_from_being_saved:
|
|
811
|
+
one: 1 error prohibited this record from being saved
|
|
812
|
+
other: "%{count} errors prohibited this record from being saved"
|
|
813
|
+
estimated_delivery_time: Estimated delivery time
|
|
814
|
+
excerpt: Excerpt
|
|
815
|
+
exchange_for: Exchange for
|
|
816
|
+
existing_shipments: Existing shipments
|
|
817
|
+
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.
|
|
818
|
+
favicon: Favicon
|
|
819
|
+
filter_results: Filter Results
|
|
820
|
+
filtered_records: Filtered records
|
|
821
|
+
forbidden_message: You are not authorized to access this page.
|
|
822
|
+
forgot_password: Forgot password?
|
|
823
|
+
general_information: General information
|
|
824
|
+
general_settings: General Settings
|
|
825
|
+
get_back_to_the: Get back to the
|
|
826
|
+
homepage: Homepage
|
|
827
|
+
internal_name: Internal Name
|
|
828
|
+
internal_server_error: Internal Server Error
|
|
829
|
+
internal_server_error_message: The server encountered an internal error and was unable to complete your request.
|
|
830
|
+
invitation_expired:
|
|
831
|
+
body: This invitation link is no longer valid. Please ask the person who invited you to send a new one.
|
|
832
|
+
heading: Invitation invalid or expired
|
|
833
|
+
invitation_resent: Invitation resent!
|
|
834
|
+
issued_on: Issued On
|
|
835
|
+
item_total_rule:
|
|
836
|
+
max_amount_help: Leave this field blank to not limit the maximum amount.
|
|
837
|
+
operators:
|
|
838
|
+
gt: greater than
|
|
839
|
+
gte: greater than or equal to
|
|
840
|
+
lt: less than
|
|
841
|
+
lte: less than or equal to
|
|
842
|
+
items_in_rmas: Items in Return Authorizations
|
|
843
|
+
items_reimbursed: Items reimbursed
|
|
844
|
+
items_to_be_reimbursed: Items to be reimbursed
|
|
845
|
+
lifetime_stats: Lifetime Stats
|
|
846
|
+
log_in: Log in
|
|
847
|
+
make_sure_the_above_reimbursement_amount_is_correct: Make sure the above reimbursement amount is correct
|
|
848
|
+
manual_adjustment: Manual Adjustment
|
|
849
|
+
manual_adjustments: Manual Adjustments
|
|
850
|
+
mark_as_default: Mark as default
|
|
851
|
+
match_choices:
|
|
852
|
+
none: None
|
|
853
|
+
move_variant_to: Move variant to
|
|
854
|
+
name_on_card: Name on card
|
|
855
|
+
new_adjustment: New Adjustment
|
|
856
|
+
new_allowed_origin: New Allowed Origin
|
|
857
|
+
new_api_key: New API Key
|
|
858
|
+
new_balance: New balance
|
|
859
|
+
new_billing_address: New Billing Address
|
|
860
|
+
new_channel: New sales channel
|
|
861
|
+
new_country: New Country
|
|
862
|
+
new_custom_domain: New Custom Domain
|
|
863
|
+
new_customer: New Customer
|
|
864
|
+
new_customer_group: New Customer Group
|
|
865
|
+
new_customer_return: New Customer Return
|
|
866
|
+
new_digital_asset: New digital asset
|
|
867
|
+
new_domain: New domain
|
|
868
|
+
new_gift_card: New Gift Card
|
|
869
|
+
new_line_item: Add line item
|
|
870
|
+
new_metafield_definition: New Metafield Definition
|
|
871
|
+
new_nested_taxon: New nested subcategory
|
|
872
|
+
new_option_type: New Option Type
|
|
873
|
+
new_order_completed: New Order Completed
|
|
874
|
+
new_page: New Page
|
|
875
|
+
new_password: New password
|
|
876
|
+
new_payment: New Payment
|
|
877
|
+
new_payment_method: New Payment Method
|
|
878
|
+
new_policy: New Policy
|
|
879
|
+
new_promotion_category: New Promotion Category
|
|
880
|
+
new_property: New Property
|
|
881
|
+
new_prototype: New Prototype
|
|
882
|
+
new_refund: New Refund
|
|
883
|
+
new_refund_reason: New Refund Reason
|
|
884
|
+
new_reimbursement_type: New Reimbursement Type
|
|
885
|
+
new_rma_reason: New RMA Reason
|
|
886
|
+
new_role: New Role
|
|
887
|
+
new_shipment_at_location: New shipment at location
|
|
888
|
+
new_shipping_address: New Shipping Address
|
|
889
|
+
new_shipping_category: New Shipping Category
|
|
890
|
+
new_shipping_method: New Shipping Method
|
|
891
|
+
new_stock_location: New Stock Location
|
|
892
|
+
new_stock_movement: New Stock Movement
|
|
893
|
+
new_stock_transfer: New Stock Transfer
|
|
894
|
+
new_store: New Store
|
|
895
|
+
new_store_credit: New Store Credit
|
|
896
|
+
new_store_credit_category: New Store Credit Category
|
|
897
|
+
new_tax_category: New Tax Category
|
|
898
|
+
new_tax_rate: New Tax Rate
|
|
899
|
+
new_taxon: New Subcategory
|
|
900
|
+
new_taxonomy: New Category
|
|
901
|
+
new_tracker: New Tracker
|
|
902
|
+
new_webhook_endpoint: New Webhook Endpoint
|
|
903
|
+
new_zone: New Zone
|
|
904
|
+
no_adjustments: No adjustments
|
|
905
|
+
no_billing_address_available: No billing address available
|
|
906
|
+
no_customers_found: No customers found
|
|
907
|
+
no_email_provided: No email provided
|
|
908
|
+
no_internal_note: No internal note
|
|
909
|
+
no_products_added: No products added
|
|
910
|
+
no_products_in_price_list: No products in this price list
|
|
911
|
+
no_promotions_applied: No promotions applied
|
|
912
|
+
no_resource_found: No %{resource} found
|
|
913
|
+
no_saved_cards: No saved cards
|
|
914
|
+
no_shipping_address_available: No shipping address available
|
|
915
|
+
no_shipping_method_selected: No shipping method selected.
|
|
916
|
+
no_taxes: No taxes
|
|
917
|
+
no_tracking_present: No tracking details provided.
|
|
918
|
+
no_users_selected: No users selected
|
|
919
|
+
not_risky: Not risky
|
|
920
|
+
notice_messages:
|
|
921
|
+
product_cloned: Product has been cloned
|
|
922
|
+
product_not_cloned: 'Product could not be cloned. Reason: %{error}'
|
|
923
|
+
oauth_applications: OAuth Applications
|
|
924
|
+
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.
|
|
925
|
+
option_type_kind_info: Controls how the option is displayed on the storefront. Color swatches show color circles, buttons show clickable chips, and dropdown shows a select menu.
|
|
926
|
+
option_type_kinds:
|
|
927
|
+
buttons: Buttons
|
|
928
|
+
color_swatch: Color Swatch
|
|
929
|
+
dropdown: Dropdown
|
|
930
|
+
or_select_other_address: or select other address
|
|
931
|
+
order_adjustments: Order adjustments
|
|
932
|
+
order_email_resent: Order Email Resent
|
|
933
|
+
order_email_resent_error: Order confirmation mail can only be sent for completed orders
|
|
934
|
+
order_line_items: Order Line Items
|
|
935
|
+
overview: Overview
|
|
936
|
+
package_from: package from
|
|
937
|
+
page_not_found: Sorry! Page you are looking can’t be found.
|
|
938
|
+
page_not_found_message: This page just doesn't exist.
|
|
939
|
+
paste: Paste
|
|
940
|
+
payment_amount: Payment amount
|
|
941
|
+
payment_provider_settings: Payment Provider Settings
|
|
942
|
+
payment_states:
|
|
943
|
+
balance_due: Balance Due
|
|
944
|
+
checkout: Checkout
|
|
945
|
+
complete: Complete
|
|
946
|
+
completed: Completed
|
|
947
|
+
credit_owed: Credit Owed
|
|
948
|
+
failed: Failed
|
|
949
|
+
paid: Paid
|
|
950
|
+
partially_refunded: Partially Refunded
|
|
951
|
+
pending: Pending
|
|
952
|
+
processing: Processing
|
|
953
|
+
refunded: Refunded
|
|
954
|
+
void: Void
|
|
955
|
+
payment_type: Payment type
|
|
956
|
+
payment_updated: Payment Updated
|
|
957
|
+
payments_gateway_processing_errors: "%{payment_method_name} processing errors"
|
|
958
|
+
personal_details: Personal details
|
|
959
|
+
pre_tax_refund_amount: Pre-Tax Refund Amount
|
|
960
|
+
previously_used_card: Previously Used Cards
|
|
961
|
+
price_list_form:
|
|
962
|
+
match_policies:
|
|
963
|
+
all: Match all of these rules
|
|
964
|
+
any: Match any of these rules
|
|
965
|
+
price_list_statuses:
|
|
966
|
+
active: Active
|
|
967
|
+
draft: Draft
|
|
968
|
+
inactive: Inactive
|
|
969
|
+
scheduled: Scheduled
|
|
970
|
+
scheduled_active: Scheduled (Active)
|
|
971
|
+
product_rule:
|
|
972
|
+
choose_products: Choose products
|
|
973
|
+
products_added: Products added
|
|
974
|
+
products_removed: Products removed
|
|
975
|
+
products_sort_options:
|
|
976
|
+
best_selling: Best Selling
|
|
977
|
+
manual: Manual
|
|
978
|
+
name_a_z: Alphabetically, A-Z
|
|
979
|
+
name_z_a: Alphabetically, Z-A
|
|
980
|
+
newest_first: Newest
|
|
981
|
+
oldest_first: Oldest
|
|
982
|
+
price_high_to_low: Price (high-low)
|
|
983
|
+
price_low_to_high: Price (low-high)
|
|
984
|
+
relevance: Relevance
|
|
985
|
+
promotion_cloned: Promotion has been cloned
|
|
986
|
+
promotion_form:
|
|
987
|
+
match_policies:
|
|
988
|
+
all: Match all of these rules
|
|
989
|
+
any: Match any of these rules
|
|
990
|
+
promotion_not_cloned: 'Promotion has not been cloned. Reason: %{error}'
|
|
991
|
+
purchased_quantity: Purchased Quantity
|
|
992
|
+
refund_reasons: Refund Reasons
|
|
993
|
+
reimbursement_type_override: Reimbursement Type Override
|
|
994
|
+
remaining: Remaining
|
|
995
|
+
remove_condition: Remove condition
|
|
996
|
+
return_authorization_reasons: Return Authorization Reasons
|
|
997
|
+
return_authorization_states:
|
|
998
|
+
authorized: Authorized
|
|
999
|
+
canceled: Canceled
|
|
1000
|
+
risk_analysis: Risk Analysis
|
|
1001
|
+
rma_number: RMA Number
|
|
1002
|
+
same_as_shipping_address: Same as shipping address
|
|
1003
|
+
search_customers: Search customers
|
|
1004
|
+
search_engine_listing: Search engine listing
|
|
1005
|
+
search_products: Search products
|
|
1006
|
+
search_results: Search results for '%{keywords}'
|
|
1007
|
+
select_a_return_authorization_reason: Select a reason for the return authorization
|
|
1008
|
+
select_a_stock_location: Select a stock location
|
|
1009
|
+
select_existing_address: Select existing address
|
|
1010
|
+
select_key_type: Select key type
|
|
1011
|
+
select_user: Select customer
|
|
1012
|
+
select_vendor: Select vendor
|
|
1013
|
+
send_payment_link: Send payment link
|
|
1014
|
+
send_payment_link_title: Send payment link to the customer by email. They will be able to complete the payment later.
|
|
1015
|
+
server_error: The server returned an error
|
|
1016
|
+
service_unavailable: Service Unavailable
|
|
1017
|
+
service_unavailable_message: The server is temporarily unable to service your request due to maintenance downtime or capacity problems. Please try again later.
|
|
1018
|
+
shipment_states:
|
|
1019
|
+
backorder: Backorder
|
|
1020
|
+
canceled: Canceled
|
|
1021
|
+
partial: Partial
|
|
1022
|
+
pending: Pending
|
|
1023
|
+
ready: Ready
|
|
1024
|
+
shipped: Shipped
|
|
1025
|
+
shipment_successfully_shipped: Shipment successfully shipped
|
|
1026
|
+
shipment_transfer_success: Variants successfully transferred
|
|
1027
|
+
show_details: Show details
|
|
1028
|
+
show_report: Show report
|
|
1029
|
+
standards_and_formats: Standards and formats
|
|
1030
|
+
standards_and_formats_help: Set the timezone, default unit system and weight unit for your store.
|
|
1031
|
+
start_typing_to_search_for_products: Start typing to search for products
|
|
1032
|
+
start_typing_to_search_for_variants: Start typing to search for variants
|
|
1033
|
+
state_based: State Based
|
|
1034
|
+
state_machine_states:
|
|
1035
|
+
accepted: Accepted
|
|
1036
|
+
address: Address
|
|
1037
|
+
authorized: Authorized
|
|
1038
|
+
awaiting: Awaiting
|
|
1039
|
+
awaiting_return: Awaiting return
|
|
1040
|
+
backordered: Back ordered
|
|
1041
|
+
canceled: Canceled
|
|
1042
|
+
cart: Cart
|
|
1043
|
+
checkout: Checkout
|
|
1044
|
+
closed: Closed
|
|
1045
|
+
complete: Complete
|
|
1046
|
+
completed: Completed
|
|
1047
|
+
confirm: Confirm
|
|
1048
|
+
delivery: Delivery
|
|
1049
|
+
errored: Errored
|
|
1050
|
+
failed: Failed
|
|
1051
|
+
given_to_customer: Given to customer
|
|
1052
|
+
invalid: Invalid
|
|
1053
|
+
manual_intervention_required: Manual intervention required
|
|
1054
|
+
on_hand: On hand
|
|
1055
|
+
open: Open
|
|
1056
|
+
order: Order
|
|
1057
|
+
payment: Payment
|
|
1058
|
+
pending: Pending
|
|
1059
|
+
processing: Processing
|
|
1060
|
+
ready: Ready
|
|
1061
|
+
reimbursed: Reimbursed
|
|
1062
|
+
resumed: Resumed
|
|
1063
|
+
returned: Returned
|
|
1064
|
+
shipment: Shipment
|
|
1065
|
+
shipped: Shipped
|
|
1066
|
+
void: Void
|
|
1067
|
+
stock_transfers: Stock Transfers
|
|
1068
|
+
store_credit:
|
|
1069
|
+
errors:
|
|
1070
|
+
cannot_change_used_store_credit: You cannot change a store credit that has already been used
|
|
1071
|
+
unable_to_create: Unable to create store credit
|
|
1072
|
+
unable_to_delete: Unable to delete store credit
|
|
1073
|
+
unable_to_update: Unable to update store credit
|
|
1074
|
+
remaining: Remaining
|
|
1075
|
+
store_credit_categories: Store Credit Categories
|
|
1076
|
+
store_details: Store details
|
|
1077
|
+
store_errors:
|
|
1078
|
+
unable_to_update: Unable to update store.
|
|
1079
|
+
store_form:
|
|
1080
|
+
customer_support_email_help: This email is visible to your Store visitors in the Footer section
|
|
1081
|
+
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
|
|
1082
|
+
store_name_help: This is the name of your store. It will be displayed in the header and in the footer.
|
|
1083
|
+
successfully_created: "%{resource} has been successfully created!"
|
|
1084
|
+
successfully_removed: "%{resource} has been successfully removed!"
|
|
1085
|
+
successfully_updated: "%{resource} has been successfully updated!"
|
|
1086
|
+
tax_categories: Tax Categories
|
|
1087
|
+
tax_included: Tax (incl.)
|
|
1088
|
+
taxon_rule:
|
|
1089
|
+
choose_taxons: Choose taxons
|
|
1090
|
+
this_order_has_already_received_a_refund: This order has already received a refund
|
|
1091
|
+
total_pre_tax_refund: Total Pre-Tax Refund
|
|
1092
|
+
total_sales: Total Sales
|
|
1093
|
+
track_quantity: Track quantity
|
|
1094
|
+
tracking_url_placeholder: e.g. http://quickship.com/package?num=:tracking
|
|
1095
|
+
transaction_id_help: This is the ID of the transaction that was created in the 3rd party payment gateway.
|
|
1096
|
+
true_label: 'TRUE'
|
|
1097
|
+
type_to_search: Type to search
|
|
1098
|
+
type_to_search_customers: Type to search for customers
|
|
1099
|
+
type_to_search_products: Type to search for products
|
|
1100
|
+
unable_to_create_reimbursements: Unable to create reimbursements because there are items pending manual intervention.
|
|
1101
|
+
unit_system_help: This will be used as the default unit system for your store. You can override this on a per-product basis.
|
|
1102
|
+
unit_systems:
|
|
1103
|
+
imperial_system: Imperial system
|
|
1104
|
+
metric: metric
|
|
1105
|
+
metric_system: Metric system
|
|
1106
|
+
unprocessable_entity: Unprocessable Entity
|
|
1107
|
+
unprocessable_entity_message: Your request could not be processed. Please check the form for errors and try again.
|
|
1108
|
+
unrecognized_card_type: Unrecognized card type
|
|
1109
|
+
update_address: Update address
|
|
1110
|
+
update_billing_address: Update billing address
|
|
1111
|
+
update_contact_information: Update contact information
|
|
1112
|
+
update_shipping_address: Update shipping address
|
|
1113
|
+
use_app_default: Use App Default
|
|
1114
|
+
use_new_cc: Use a new card
|
|
1115
|
+
use_shipping_address: Use Shipping Address
|
|
1116
|
+
user_rule:
|
|
1117
|
+
choose_users: 'Input the full email address of a registered customer(s) in the search field to whom this discount should apply:'
|
|
1118
|
+
validation:
|
|
1119
|
+
is_too_large: is too large -- stock on hand cannot cover requested quantity!
|
|
1120
|
+
vendors: Vendors
|
|
1121
|
+
view_full_size: View full size
|
|
1122
|
+
view_store: View store
|
|
1123
|
+
visits: Visits
|
|
1124
|
+
weight_unit_help: This will be used as the default weight unit for your store. You can override this on a per-product basis.
|
|
1125
|
+
weight_units:
|
|
1126
|
+
gram: Gram (g)
|
|
1127
|
+
kilogram: Kilogram (kg)
|
|
1128
|
+
ounce: Ounce (oz)
|
|
1129
|
+
pound: Pound (lb)
|