solidus_categories 1.2 → 2.3
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/.bundle/config +1 -0
- data/Gemfile +4 -0
- data/Gemfile.lock +20 -0
- data/LICENSE.txt +21 -0
- data/README.md +45 -0
- data/Rakefile +2 -0
- data/app/decorators/spree/admin/properties_controller_decorator.rb +61 -0
- data/app/helpers/render_nested_options_helper.rb +23 -0
- data/app/helpers/render_sortable_tree_helper.rb +62 -0
- data/app/helpers/render_tree_helper.rb +45 -0
- data/app/helpers/the_sortable_tree_helper.rb +146 -0
- data/app/models/spree/property_decorator.rb +7 -0
- data/app/overrides/listing_properties.rb +5 -0
- data/app/views/spree/admin/_listing_properties.html.erb +10 -0
- data/app/views/spree/admin/properties/_editform.html.erb +21 -0
- data/app/views/spree/admin/properties/_form.html.erb +24 -0
- data/app/views/spree/admin/properties/edit.html.erb +28 -0
- data/app/views/spree/admin/properties/manage.html.erb +3 -0
- data/app/views/spree/admin/properties/show.html.erb +15 -0
- data/bin/console +14 -0
- data/bin/setup +8 -0
- data/config/locales/en.yml +1918 -0
- data/config/routes.rb +15 -0
- data/db/20160701150045_add_position_to_spree_properties.rb +5 -0
- data/db/20160705145644_add_fields_to_properties.rb +10 -0
- data/lib/solidus_categories.rb +5 -0
- data/lib/solidus_categories/engine.rb +24 -0
- data/lib/solidus_categories/version.rb +3 -0
- data/lib/tasks/install.rake +57 -0
- data/solidus_categories.gemspec +25 -0
- data/vendor/assets/javascripts/spree/backend/all.js +16 -0
- data/vendor/assets/javascripts/spree/frontend/all.js +11 -0
- data/vendor/assets/stylesheets/.keep +0 -0
- data/vendor/assets/stylesheets/spree/backend/all.css +12 -0
- data/vendor/assets/stylesheets/spree/frontend/all.css +10 -0
- metadata +53 -3
@@ -0,0 +1,21 @@
|
|
1
|
+
<div data-hook="admin_property_form" class="align-center row">
|
2
|
+
<div class="alpha eight columns">
|
3
|
+
<%= f.field_container :name do %>
|
4
|
+
<%= f.label :name, class: 'required' %><br />
|
5
|
+
<%= f.text_field :name, :class => 'fullwidth' %>
|
6
|
+
|
7
|
+
<%= f.error_message_on :name %>
|
8
|
+
<% end %>
|
9
|
+
</div>
|
10
|
+
|
11
|
+
<div class="eight columns omega">
|
12
|
+
<%= f.field_container :presentation do %>
|
13
|
+
<%= f.label :presentation, class: 'required' %><br />
|
14
|
+
<%= f.text_field :presentation, :class => 'fullwidth' %>
|
15
|
+
<%= f.error_message_on :presentation %>
|
16
|
+
<% end %>
|
17
|
+
</div>
|
18
|
+
|
19
|
+
|
20
|
+
|
21
|
+
</div>
|
@@ -0,0 +1,24 @@
|
|
1
|
+
<div data-hook="admin_property_form" class="align-center row">
|
2
|
+
<div class="alpha eight columns">
|
3
|
+
<%= f.field_container :name do %>
|
4
|
+
<%= f.label :name, class: 'required' %><br />
|
5
|
+
<%= f.text_field :name, :class => 'fullwidth' %>
|
6
|
+
|
7
|
+
<%= f.error_message_on :name %>
|
8
|
+
<% end %>
|
9
|
+
</div>
|
10
|
+
|
11
|
+
<div class="eight columns omega">
|
12
|
+
<%= f.field_container :presentation do %>
|
13
|
+
<%= f.label :presentation, class: 'required' %><br />
|
14
|
+
<%= f.text_field :presentation, :class => 'fullwidth' %>
|
15
|
+
<%= f.error_message_on :presentation %>
|
16
|
+
<% end %>
|
17
|
+
</div>
|
18
|
+
|
19
|
+
<div class="eight columns omega">
|
20
|
+
<%= f.label 'Choose Parent Property', class: '' %>
|
21
|
+
<%=select_tag 'property[parent_id]', nested_options(Spree::Property.all, :selected => Spree::Property.first), class: :nested_options%>
|
22
|
+
</div>
|
23
|
+
|
24
|
+
</div>
|
@@ -0,0 +1,28 @@
|
|
1
|
+
<% content_for :page_title do %>
|
2
|
+
<%= Spree.t(:property_edit) %>
|
3
|
+
<% end %>
|
4
|
+
|
5
|
+
|
6
|
+
<% content_for :page_actions do %>
|
7
|
+
<li>
|
8
|
+
<%= button_link_to Spree.t(:back_to_properties_list), spree.admin_properties_path, :icon => 'arrow-left' %>
|
9
|
+
</li>
|
10
|
+
<li>
|
11
|
+
<%= button_link_to Spree.t(:add_property), spree.admin_properties_path, { icon: 'plus', class: 'add-property-button' } %>
|
12
|
+
</li>
|
13
|
+
<% end %>
|
14
|
+
|
15
|
+
<%= form_for [:admin, @property] do |f| %>
|
16
|
+
<fieldset class="no-border-top">
|
17
|
+
<%= render :partial => 'editform', :locals => { :f => f } %>
|
18
|
+
<div class="filter-actions actions">
|
19
|
+
<%= button Spree.t('actions.update'), 'refresh' %>
|
20
|
+
<%= button_link_to Spree.t('actions.cancel'), admin_properties_path, :icon => 'remove' %>
|
21
|
+
</div>
|
22
|
+
</fieldset>
|
23
|
+
|
24
|
+
<% end %>
|
25
|
+
|
26
|
+
<ol class="sortable_tree" >
|
27
|
+
<%= build_server_tree @property, :namespace => 'admin' ,type: :sortable %>
|
28
|
+
</ol>
|
@@ -0,0 +1,15 @@
|
|
1
|
+
<% content_for :page_title do %>
|
2
|
+
Property Show
|
3
|
+
<% end %>
|
4
|
+
|
5
|
+
|
6
|
+
<% content_for :page_actions do %>
|
7
|
+
<li>
|
8
|
+
<%= button_link_to Spree.t(:back_to_properties_list), spree.admin_properties_path, :icon => 'arrow-left' %>
|
9
|
+
</li>
|
10
|
+
|
11
|
+
<% end %>
|
12
|
+
|
13
|
+
<ol class="sortable_tree">
|
14
|
+
<%= build_server_tree @property, :namespace => 'admin' ,type: :sortable %>
|
15
|
+
</ol>
|
data/bin/console
ADDED
@@ -0,0 +1,14 @@
|
|
1
|
+
#!/usr/bin/env ruby
|
2
|
+
|
3
|
+
require "bundler/setup"
|
4
|
+
require "solidus_categories"
|
5
|
+
|
6
|
+
# You can add fixtures and/or initialization code here to make experimenting
|
7
|
+
# with your gem easier. You can also use a different console, if you like.
|
8
|
+
|
9
|
+
# (If you use this, don't forget to add pry to your Gemfile!)
|
10
|
+
# require "pry"
|
11
|
+
# Pry.start
|
12
|
+
|
13
|
+
require "irb"
|
14
|
+
IRB.start
|
data/bin/setup
ADDED
@@ -0,0 +1,1918 @@
|
|
1
|
+
en:
|
2
|
+
activemodel:
|
3
|
+
attributes:
|
4
|
+
spree/order_cancellations:
|
5
|
+
quantity: Quantity
|
6
|
+
state: State
|
7
|
+
shipment: Shipment
|
8
|
+
cancel: Cancel
|
9
|
+
activerecord:
|
10
|
+
attributes:
|
11
|
+
spree/address:
|
12
|
+
address1: Street Address
|
13
|
+
address2: Street Address (cont'd)
|
14
|
+
city: City
|
15
|
+
company: Company
|
16
|
+
firstname: First Name
|
17
|
+
lastname: Last Name
|
18
|
+
phone: Phone
|
19
|
+
zipcode: Zip Code
|
20
|
+
spree/adjustment:
|
21
|
+
adjustable: Adjustable
|
22
|
+
amount: Amount
|
23
|
+
label: Description
|
24
|
+
name: Name
|
25
|
+
state: State
|
26
|
+
adjustment_reason_id: Reason
|
27
|
+
spree/adjustment_reason:
|
28
|
+
active: Active
|
29
|
+
code: Code
|
30
|
+
name: Name
|
31
|
+
state: State
|
32
|
+
spree/calculator/tiered_flat_rate:
|
33
|
+
preferred_base_amount: Base Amount
|
34
|
+
preferred_tiers: Tiers
|
35
|
+
spree/calculator/tiered_percent:
|
36
|
+
preferred_base_percent: Base Percent
|
37
|
+
preferred_tiers: Tiers
|
38
|
+
spree/carton:
|
39
|
+
tracking: Tracking
|
40
|
+
spree/country:
|
41
|
+
iso: ISO
|
42
|
+
iso3: ISO3
|
43
|
+
iso_name: ISO Name
|
44
|
+
name: Name
|
45
|
+
numcode: ISO Code
|
46
|
+
states_required: States Required
|
47
|
+
spree/credit_card:
|
48
|
+
base: ''
|
49
|
+
cc_type: Brand
|
50
|
+
card_code: Card Code
|
51
|
+
expiration: Expiration
|
52
|
+
month: Month
|
53
|
+
name: Name
|
54
|
+
number: Card Number
|
55
|
+
verification_value: Verification Value
|
56
|
+
year: Year
|
57
|
+
spree/customer_return:
|
58
|
+
number: Return Number
|
59
|
+
pre_tax_total: Pre-Tax Total
|
60
|
+
total: Total
|
61
|
+
created_at: "Date/Time"
|
62
|
+
reimbursement_status: Reimbursement status
|
63
|
+
name: Name
|
64
|
+
spree/image:
|
65
|
+
alt: Alternative Text
|
66
|
+
attachment: Filename
|
67
|
+
spree/inventory_unit:
|
68
|
+
state: State
|
69
|
+
spree/legacy_user:
|
70
|
+
email: Email
|
71
|
+
password: Password
|
72
|
+
password_confirmation: Password Confirmation
|
73
|
+
spree/line_item:
|
74
|
+
description: Item Description
|
75
|
+
name: Name
|
76
|
+
price: Price
|
77
|
+
quantity: Quantity
|
78
|
+
total: Total price
|
79
|
+
spree/option_type:
|
80
|
+
name: Name
|
81
|
+
presentation: Presentation
|
82
|
+
spree/option_value:
|
83
|
+
name: Name
|
84
|
+
presentation: Presentation
|
85
|
+
spree/order:
|
86
|
+
additional_tax_total: Tax
|
87
|
+
approved_at: Approved at
|
88
|
+
approver_id: Approver
|
89
|
+
canceled_at: Canceled at
|
90
|
+
canceler_id: Canceler
|
91
|
+
checkout_complete: Checkout Complete
|
92
|
+
completed_at: Completed At
|
93
|
+
coupon_code: Coupon Code
|
94
|
+
created_at: Order Date
|
95
|
+
email: Customer E-Mail
|
96
|
+
included_tax_total: Tax (incl.)
|
97
|
+
ip_address: IP Address
|
98
|
+
item_total: Item Total
|
99
|
+
number: Number
|
100
|
+
payment_state: Payment State
|
101
|
+
shipment_state: Shipment State
|
102
|
+
shipment_total: Ship Total
|
103
|
+
special_instructions: Special Instructions
|
104
|
+
state: State
|
105
|
+
total: Total
|
106
|
+
considered_risky: Risky
|
107
|
+
spree/order/bill_address:
|
108
|
+
address1: Billing address street
|
109
|
+
city: Billing address city
|
110
|
+
firstname: Billing address first name
|
111
|
+
lastname: Billing address last name
|
112
|
+
phone: Billing address phone
|
113
|
+
state: Billing address state
|
114
|
+
zipcode: Billing address zipcode
|
115
|
+
spree/order/ship_address:
|
116
|
+
address1: Shipping address street
|
117
|
+
city: Shipping address city
|
118
|
+
firstname: Shipping address first name
|
119
|
+
lastname: Shipping address last name
|
120
|
+
phone: Shipping address phone
|
121
|
+
state: Shipping address state
|
122
|
+
zipcode: Shipping address zipcode
|
123
|
+
spree/payment:
|
124
|
+
amount: Amount
|
125
|
+
created_at: Date/Time
|
126
|
+
number: Identifier
|
127
|
+
response_code: Transaction ID
|
128
|
+
state: Payment State
|
129
|
+
spree/payment_method:
|
130
|
+
active: Active
|
131
|
+
auto_capture: Auto Capture
|
132
|
+
description: Description
|
133
|
+
display_on: Display
|
134
|
+
name: Name
|
135
|
+
preference_source: Preference Source
|
136
|
+
type: Provider
|
137
|
+
spree/price:
|
138
|
+
currency: Currency
|
139
|
+
amount: Price
|
140
|
+
is_default: Currently Valid
|
141
|
+
spree/product:
|
142
|
+
available_on: Available On
|
143
|
+
cost_currency: Cost Currency
|
144
|
+
cost_price: Cost Price
|
145
|
+
description: Description
|
146
|
+
depth: Depth
|
147
|
+
height: Height
|
148
|
+
master_price: Master Price
|
149
|
+
meta_description: Meta Description
|
150
|
+
meta_keywords: Meta Keywords
|
151
|
+
meta_title: Meta Title
|
152
|
+
name: Name
|
153
|
+
on_hand: On Hand
|
154
|
+
price: Master Price
|
155
|
+
promotionable: Promotable
|
156
|
+
shipping_category: Shipping Category
|
157
|
+
slug: Slug
|
158
|
+
tax_category: Tax Category
|
159
|
+
weight: Weight
|
160
|
+
width: Width
|
161
|
+
spree/product_property:
|
162
|
+
value: Value
|
163
|
+
spree/promotion:
|
164
|
+
advertise: Advertise
|
165
|
+
apply_automatically: Apply Automatically
|
166
|
+
code: Code
|
167
|
+
description: Description
|
168
|
+
event_name: Event Name
|
169
|
+
expires_at: Expiration
|
170
|
+
name: Name
|
171
|
+
path: Path
|
172
|
+
per_code_usage_limit: Per Code Usage Limit
|
173
|
+
promotion_uses: Promotion Uses
|
174
|
+
starts_at: Starts
|
175
|
+
usage_limit: Overall Usage Limit
|
176
|
+
spree/promotion_category:
|
177
|
+
name: Name
|
178
|
+
spree/property:
|
179
|
+
name: Name
|
180
|
+
presentation: Presentation
|
181
|
+
spree/prototype:
|
182
|
+
name: Name
|
183
|
+
spree/refund:
|
184
|
+
amount: Amount
|
185
|
+
description: Description
|
186
|
+
refund_reason_id: Reason
|
187
|
+
spree/refund_reason:
|
188
|
+
active: Active
|
189
|
+
name: Name
|
190
|
+
code: Code
|
191
|
+
spree/reimbursement:
|
192
|
+
created_at: "Date/Time"
|
193
|
+
number: Number
|
194
|
+
reimbursement_status: Status
|
195
|
+
total: Total
|
196
|
+
spree/reimbursement/credit:
|
197
|
+
amount: Amount
|
198
|
+
spree/reimbursement_type:
|
199
|
+
name: Name
|
200
|
+
type: Type
|
201
|
+
created_at: "Date/Time"
|
202
|
+
spree/return_authorization:
|
203
|
+
amount: Amount
|
204
|
+
pre_tax_total: Pre-Tax Total
|
205
|
+
spree/return_item:
|
206
|
+
acceptance_status: Acceptance status
|
207
|
+
acceptance_status_errors: Acceptance errors
|
208
|
+
amount: Amount Before Sales Tax
|
209
|
+
charged: Charged
|
210
|
+
exchange_variant: Exchange for
|
211
|
+
inventory_unit_state: State
|
212
|
+
item_received?: "Item Received?"
|
213
|
+
override_reimbursement_type_id: Reimbursement Type Override
|
214
|
+
preferred_reimbursement_type_id: Preferred Reimbursement Type
|
215
|
+
reception_status: Reception Status
|
216
|
+
resellable: "Resellable?"
|
217
|
+
return_reason: Reason
|
218
|
+
total: Total
|
219
|
+
spree/return_reason:
|
220
|
+
name: Name
|
221
|
+
active: Active
|
222
|
+
created_at: "Date/Time"
|
223
|
+
memo: Memo
|
224
|
+
number: RMA Number
|
225
|
+
state: State
|
226
|
+
spree/role:
|
227
|
+
name: Name
|
228
|
+
spree/shipping_category:
|
229
|
+
name: Name
|
230
|
+
spree/shipment:
|
231
|
+
tracking: Tracking Number
|
232
|
+
spree/shipping_method:
|
233
|
+
admin_name: Internal Name
|
234
|
+
carrier: Carrier
|
235
|
+
code: Code
|
236
|
+
display_on: Display
|
237
|
+
name: Name
|
238
|
+
service_level: Service Level
|
239
|
+
tracking_url: Tracking URL
|
240
|
+
spree/shipping_rate:
|
241
|
+
label: Label
|
242
|
+
tax_rate: Tax Rate
|
243
|
+
shipping_rate: Shipping Rate
|
244
|
+
amount: Amount
|
245
|
+
spree/state:
|
246
|
+
abbr: Abbreviation
|
247
|
+
name: Name
|
248
|
+
spree/store:
|
249
|
+
url: Site URL
|
250
|
+
meta_description: Meta Description
|
251
|
+
meta_keywords: Meta Keywords
|
252
|
+
seo_title: Seo Title
|
253
|
+
name: Site Name
|
254
|
+
mail_from_address: Mail From Address
|
255
|
+
spree/store_credit:
|
256
|
+
amount: Amount
|
257
|
+
amount_authorized: Amount Authorized
|
258
|
+
amount_credited: Amount Credited
|
259
|
+
amount_used: Amount Used
|
260
|
+
category_id: Credit Type
|
261
|
+
created_at: Issued On
|
262
|
+
created_by_id: Created By
|
263
|
+
invalidated_at: Invalidated
|
264
|
+
memo: Memo
|
265
|
+
spree/store_credit_event:
|
266
|
+
action: Action
|
267
|
+
user_total_amount: Total Unused
|
268
|
+
spree/store_credit_update_reason:
|
269
|
+
name: Reason For Updating
|
270
|
+
spree/stock_item:
|
271
|
+
count_on_hand: Count On Hand
|
272
|
+
spree/stock_location:
|
273
|
+
admin_name: Internal Name
|
274
|
+
active: Active
|
275
|
+
address1: Street Address
|
276
|
+
address2: Street Address (cont'd)
|
277
|
+
backorderable_default: Backorderable default
|
278
|
+
check_stock_on_transfer: Check stock on transfer
|
279
|
+
city: City
|
280
|
+
code: Code
|
281
|
+
country_id: Country
|
282
|
+
default: Default
|
283
|
+
fulfillable: Fulfillable
|
284
|
+
internal_name: Internal Name
|
285
|
+
name: Name
|
286
|
+
phone: Phone
|
287
|
+
propagate_all_variants: Propagate all variants
|
288
|
+
restock_inventory: Restock Inventory
|
289
|
+
state_id: State
|
290
|
+
zipcode: Zip
|
291
|
+
spree/stock_movement:
|
292
|
+
action: Action
|
293
|
+
quantity: Quantity
|
294
|
+
spree/stock_transfer:
|
295
|
+
created_at: Created At
|
296
|
+
created_by_id: Created By
|
297
|
+
description: Description
|
298
|
+
destination_location_id: Destination Location
|
299
|
+
finalized_at: Finalized At
|
300
|
+
finalized_by_id: Finalized By
|
301
|
+
number: Transfer Number
|
302
|
+
shipped_at: Shipped At
|
303
|
+
source_location_id: Source Location
|
304
|
+
tracking_number: Tracking Number
|
305
|
+
spree/tax_category:
|
306
|
+
description: Description
|
307
|
+
name: Name
|
308
|
+
is_default: Default
|
309
|
+
tax_code: Tax Code
|
310
|
+
spree/tax_rate:
|
311
|
+
amount: Rate
|
312
|
+
included_in_price: Included In Price
|
313
|
+
name: Name
|
314
|
+
show_rate_in_label: Show Rate In Label
|
315
|
+
spree/taxon:
|
316
|
+
description: Description
|
317
|
+
icon: Icon
|
318
|
+
meta_description: Meta Description
|
319
|
+
meta_keywords: Meta Keywords
|
320
|
+
meta_title: Meta Title
|
321
|
+
name: Name
|
322
|
+
permalink: Permalink
|
323
|
+
position: Position
|
324
|
+
spree/taxonomy:
|
325
|
+
name: Name
|
326
|
+
spree/tracker:
|
327
|
+
analytics_id: Analytics ID
|
328
|
+
active: Active
|
329
|
+
spree/user:
|
330
|
+
email: Email
|
331
|
+
password: Password
|
332
|
+
password_confirmation: Password Confirmation
|
333
|
+
spree/variant:
|
334
|
+
cost_currency: Cost Currency
|
335
|
+
cost_price: Cost Price
|
336
|
+
depth: Depth
|
337
|
+
height: Height
|
338
|
+
price: Price
|
339
|
+
sku: SKU
|
340
|
+
tax_category: Variant tax category
|
341
|
+
weight: Weight
|
342
|
+
width: Width
|
343
|
+
spree/zone:
|
344
|
+
description: Description
|
345
|
+
name: Name
|
346
|
+
default_tax: Default Tax Zone
|
347
|
+
models:
|
348
|
+
spree/address:
|
349
|
+
one: Address
|
350
|
+
other: Addresses
|
351
|
+
spree/adjustment:
|
352
|
+
one: Adjustment
|
353
|
+
other: Adjustments
|
354
|
+
spree/adjustment_reason:
|
355
|
+
one: Adjustment Reason
|
356
|
+
other: Adjustment Reasons
|
357
|
+
spree/calculator:
|
358
|
+
one: Calculator
|
359
|
+
other: Calculators
|
360
|
+
spree/country:
|
361
|
+
one: Country
|
362
|
+
other: Countries
|
363
|
+
spree/credit_card:
|
364
|
+
one: Credit Card
|
365
|
+
other: Credit Cards
|
366
|
+
spree/customer_return:
|
367
|
+
one: Customer Return
|
368
|
+
other: Customer Returns
|
369
|
+
spree/exchange:
|
370
|
+
one: Exchange
|
371
|
+
other: Exchanges
|
372
|
+
spree/inventory_unit:
|
373
|
+
one: Inventory Unit
|
374
|
+
other: Inventory Units
|
375
|
+
spree/legacy_user:
|
376
|
+
one: User
|
377
|
+
other: Users
|
378
|
+
spree/line_item:
|
379
|
+
one: Line Item
|
380
|
+
other: Line Items
|
381
|
+
spree/log_entry:
|
382
|
+
one: Log Entry
|
383
|
+
other: Log Entries
|
384
|
+
spree/option_type:
|
385
|
+
one: Option Type
|
386
|
+
other: Option Types
|
387
|
+
spree/option_value:
|
388
|
+
one: Option Value
|
389
|
+
other: Option Values
|
390
|
+
spree/order:
|
391
|
+
one: Order
|
392
|
+
other: Orders
|
393
|
+
spree/payment:
|
394
|
+
one: Payment
|
395
|
+
other: Payments
|
396
|
+
spree/payment_capture_event:
|
397
|
+
one: Capture Event
|
398
|
+
other: Capture Events
|
399
|
+
spree/payment_method:
|
400
|
+
one: Payment Method
|
401
|
+
other: Payment Methods
|
402
|
+
spree/price:
|
403
|
+
one: Price
|
404
|
+
other: Prices
|
405
|
+
spree/product:
|
406
|
+
one: Product
|
407
|
+
other: Products
|
408
|
+
spree/product_property:
|
409
|
+
one: Product Property
|
410
|
+
other: Product Properties
|
411
|
+
spree/promotion:
|
412
|
+
one: Promotion
|
413
|
+
other: Promotions
|
414
|
+
spree/promotion_category:
|
415
|
+
one: Promotion Category
|
416
|
+
other: Promotion Categories
|
417
|
+
spree/property:
|
418
|
+
one: Property
|
419
|
+
other: Properties
|
420
|
+
spree/prototype:
|
421
|
+
one: Prototype
|
422
|
+
other: Prototypes
|
423
|
+
spree/refund:
|
424
|
+
one: Refund
|
425
|
+
other: Refunds
|
426
|
+
spree/refund_reason:
|
427
|
+
one: Refund Reason
|
428
|
+
other: Refund Reasons
|
429
|
+
spree/reimbursement:
|
430
|
+
one: Reimbursement
|
431
|
+
other: Reimbursements
|
432
|
+
spree/reimbursement_type:
|
433
|
+
one: Reimbursement Type
|
434
|
+
other: Reimbursement Types
|
435
|
+
spree/return_authorization:
|
436
|
+
one: Return Authorization
|
437
|
+
other: Return Authorizations
|
438
|
+
spree/return_reason:
|
439
|
+
one: Return Reason
|
440
|
+
other: Return Reasons
|
441
|
+
spree/role:
|
442
|
+
one: Roles
|
443
|
+
other: Roles
|
444
|
+
spree/shipment:
|
445
|
+
one: Shipment
|
446
|
+
other: Shipments
|
447
|
+
spree/shipping_category:
|
448
|
+
one: Shipping Category
|
449
|
+
other: Shipping Categories
|
450
|
+
spree/shipping_method:
|
451
|
+
one: Shipping Method
|
452
|
+
other: Shipping Methods
|
453
|
+
spree/state:
|
454
|
+
one: State
|
455
|
+
other: States
|
456
|
+
spree/stock: stock
|
457
|
+
spree/stock_item:
|
458
|
+
one: Stock Item
|
459
|
+
other: Stock Items
|
460
|
+
spree/stock_movement:
|
461
|
+
one: Stock Movement
|
462
|
+
other: Stock Movements
|
463
|
+
spree/stock_location:
|
464
|
+
one: Stock Location
|
465
|
+
other: Stock Locations
|
466
|
+
spree/stock_transfer:
|
467
|
+
one: Stock Transfer
|
468
|
+
other: Stock Transfers
|
469
|
+
spree/store_credit_category:
|
470
|
+
one: Category
|
471
|
+
other: Categories
|
472
|
+
spree/tax_category:
|
473
|
+
one: Tax Category
|
474
|
+
other: Tax Categories
|
475
|
+
spree/tax_rate:
|
476
|
+
one: Tax Rate
|
477
|
+
other: Tax Rates
|
478
|
+
spree/taxon:
|
479
|
+
one: Categories
|
480
|
+
other: Categories
|
481
|
+
spree/taxonomy:
|
482
|
+
one: Catalog
|
483
|
+
other: Catalogs
|
484
|
+
spree/tracker:
|
485
|
+
one: Analytics Tracker
|
486
|
+
other: Analytics Trackers
|
487
|
+
spree/transfer_item:
|
488
|
+
one: Transfer Item
|
489
|
+
other: Transfer Items
|
490
|
+
spree/user:
|
491
|
+
one: User
|
492
|
+
other: Users
|
493
|
+
spree/variant:
|
494
|
+
one: Variant
|
495
|
+
other: Variants
|
496
|
+
spree/zone:
|
497
|
+
one: Zone
|
498
|
+
other: Zones
|
499
|
+
errors:
|
500
|
+
models:
|
501
|
+
spree/calculator/tiered_flat_rate:
|
502
|
+
attributes:
|
503
|
+
base:
|
504
|
+
keys_should_be_positive_number: "Tier keys should all be numbers larger than 0"
|
505
|
+
preferred_tiers:
|
506
|
+
should_be_hash: "should be a hash"
|
507
|
+
spree/calculator/tiered_percent:
|
508
|
+
attributes:
|
509
|
+
base:
|
510
|
+
keys_should_be_positive_number: "Tier keys should all be numbers larger than 0"
|
511
|
+
values_should_be_percent: "Tier values should all be percentages between 0% and 100%"
|
512
|
+
preferred_tiers:
|
513
|
+
should_be_hash: "should be a hash"
|
514
|
+
spree/classification:
|
515
|
+
attributes:
|
516
|
+
taxon_id:
|
517
|
+
already_linked: "is already linked to this product"
|
518
|
+
spree/credit_card:
|
519
|
+
attributes:
|
520
|
+
base:
|
521
|
+
card_expired: "Card has expired"
|
522
|
+
expiry_invalid: "Card expiration is invalid"
|
523
|
+
spree/inventory_unit:
|
524
|
+
attributes:
|
525
|
+
state:
|
526
|
+
cannot_destroy: "Cannot destroy a %{state} inventory unit"
|
527
|
+
base:
|
528
|
+
cannot_destroy_shipment_state: "Cannot destroy an inventory unit for a %{state} shipment"
|
529
|
+
spree/line_item:
|
530
|
+
attributes:
|
531
|
+
currency:
|
532
|
+
must_match_order_currency: "Must match order currency"
|
533
|
+
spree/price:
|
534
|
+
attributes:
|
535
|
+
currency:
|
536
|
+
invalid_code: "is not a valid currency code"
|
537
|
+
spree/promotion:
|
538
|
+
attributes:
|
539
|
+
apply_automatically:
|
540
|
+
disallowed_with_code: Disallowed for promotions with a code
|
541
|
+
disallowed_with_path: Disallowed for promotions with a path
|
542
|
+
spree/refund:
|
543
|
+
attributes:
|
544
|
+
amount:
|
545
|
+
greater_than_allowed: is greater than the allowed amount.
|
546
|
+
spree/reimbursement:
|
547
|
+
attributes:
|
548
|
+
base:
|
549
|
+
return_items_order_id_does_not_match: One or more of the return items specified do not belong to the same order as the reimbursement.
|
550
|
+
spree/return_item:
|
551
|
+
attributes:
|
552
|
+
reimbursement:
|
553
|
+
cannot_be_associated_unless_accepted: cannot be associated to a return item that is not accepted.
|
554
|
+
inventory_unit:
|
555
|
+
other_completed_return_item_exists: "%{inventory_unit_id} has already been taken by return item %{return_item_id}"
|
556
|
+
spree/shipment:
|
557
|
+
attributes:
|
558
|
+
state:
|
559
|
+
cannot_destroy: "Cannot destroy a %{state} shipment"
|
560
|
+
base:
|
561
|
+
cannot_remove_items_shipment_state: "Cannot remove items from a %{state} shipment"
|
562
|
+
spree/store:
|
563
|
+
attributes:
|
564
|
+
base:
|
565
|
+
cannot_destroy_default_store: Cannot destroy the default Store.
|
566
|
+
spree/user_address:
|
567
|
+
attributes:
|
568
|
+
user_id:
|
569
|
+
default_address_exists: "already has a default address"
|
570
|
+
|
571
|
+
devise:
|
572
|
+
confirmations:
|
573
|
+
confirmed: Your account was successfully confirmed. You are now signed in.
|
574
|
+
send_instructions: You will receive an email with instructions about how to confirm your account in a few minutes.
|
575
|
+
failure:
|
576
|
+
inactive: Your account was not activated yet.
|
577
|
+
invalid: Invalid email or password.
|
578
|
+
invalid_token: Invalid authentication token.
|
579
|
+
locked: Your account is locked.
|
580
|
+
timeout: Your session expired, please sign in again to continue.
|
581
|
+
unauthenticated: You need to sign in or sign up before continuing.
|
582
|
+
unconfirmed: You have to confirm your account before continuing.
|
583
|
+
mailer:
|
584
|
+
confirmation_instructions:
|
585
|
+
subject: Confirmation instructions
|
586
|
+
reset_password_instructions:
|
587
|
+
subject: Reset password instructions
|
588
|
+
unlock_instructions:
|
589
|
+
subject: Unlock Instructions
|
590
|
+
oauth_callbacks:
|
591
|
+
failure: Could not authorize you from %{kind} because "%{reason}".
|
592
|
+
success: Successfully authorized from %{kind} account.
|
593
|
+
unlocks:
|
594
|
+
send_instructions: You will receive an email with instructions about how to unlock your account in a few minutes.
|
595
|
+
unlocked: Your account was successfully unlocked. You are now signed in.
|
596
|
+
user_passwords:
|
597
|
+
user:
|
598
|
+
cannot_be_blank: Your password cannot be blank.
|
599
|
+
send_instructions: You will receive an email with instructions about how to reset your password in a few minutes.
|
600
|
+
updated: Your password was changed successfully. You are now signed in.
|
601
|
+
user_registrations:
|
602
|
+
destroyed: Bye! Your account was successfully cancelled. We hope to see you again soon.
|
603
|
+
inactive_signed_up: You have signed up successfully. However, we could not sign you in because your account is %{reason}.
|
604
|
+
signed_up: Welcome! You have signed up successfully.
|
605
|
+
updated: You updated your account successfully.
|
606
|
+
user_sessions:
|
607
|
+
signed_in: Signed in successfully.
|
608
|
+
signed_out: Signed out successfully.
|
609
|
+
errors:
|
610
|
+
messages:
|
611
|
+
already_confirmed: was already confirmed
|
612
|
+
not_found: not found
|
613
|
+
not_locked: was not locked
|
614
|
+
not_saved:
|
615
|
+
one: ! '1 error prohibited this %{resource} from being saved:'
|
616
|
+
other: ! '%{count} errors prohibited this %{resource} from being saved:'
|
617
|
+
spree:
|
618
|
+
abbreviation: Abbreviation
|
619
|
+
accept: Accept
|
620
|
+
acceptance_status: Acceptance status
|
621
|
+
acceptance_errors: Acceptance errors
|
622
|
+
accepted: Accepted
|
623
|
+
account: Account
|
624
|
+
account_updated: Account updated
|
625
|
+
action: Action
|
626
|
+
actions:
|
627
|
+
add: Add
|
628
|
+
cancel: Cancel
|
629
|
+
continue: Continue
|
630
|
+
create: Create
|
631
|
+
delete: Delete
|
632
|
+
destroy: Destroy
|
633
|
+
edit: Edit
|
634
|
+
list: List
|
635
|
+
listing: Listing
|
636
|
+
new: New
|
637
|
+
refund: Refund
|
638
|
+
receive: Receive
|
639
|
+
remove: Remove
|
640
|
+
save: Save
|
641
|
+
ship: ship
|
642
|
+
update: Update
|
643
|
+
split: Split
|
644
|
+
ship: ship
|
645
|
+
activate: Activate
|
646
|
+
active: Active
|
647
|
+
add: Add
|
648
|
+
added: Added
|
649
|
+
add_action_of_type: Add action of type
|
650
|
+
add_country: Add Country
|
651
|
+
add_coupon_code: Add Coupon Code
|
652
|
+
add_new_header: Add New Header
|
653
|
+
add_new_style: Add New Style
|
654
|
+
add_one: Add One
|
655
|
+
add_option_value: Add Option Value
|
656
|
+
add_product: Add Product
|
657
|
+
add_product_properties: Add Product Properties
|
658
|
+
add_variant_properties: Add Variant Properties
|
659
|
+
add_rule_of_type: Add rule of type
|
660
|
+
add_state: Add State
|
661
|
+
add_stock: Add Stock
|
662
|
+
add_stock_management: Add Stock Management
|
663
|
+
add_taxon: Add Category
|
664
|
+
add_to_cart: Add To Cart
|
665
|
+
add_to_stock_location: Add to location
|
666
|
+
add_variant: Add Variant
|
667
|
+
adding_match: Adding match
|
668
|
+
additional_item: Additional Item
|
669
|
+
address1: Address
|
670
|
+
address2: Address (contd.)
|
671
|
+
adjustable: Adjustable
|
672
|
+
adjustment: Adjustment
|
673
|
+
adjustment_amount: Amount
|
674
|
+
adjustment_labels:
|
675
|
+
tax_rates:
|
676
|
+
sales_tax: '%{name}'
|
677
|
+
vat: '%{name} (Included in Price)'
|
678
|
+
sales_tax_with_rate: '%{name} %{amount}'
|
679
|
+
vat_with_rate: '%{name} %{amount} (Included in Price)'
|
680
|
+
sales_tax_refund: 'Refund: %{name}'
|
681
|
+
vat_refund: 'Refund: %{name} (Included in Price)'
|
682
|
+
sales_tax_refund_with_rate: 'Refund: %{name} %{amount}'
|
683
|
+
vat_refund_with_rate: 'Refund: %{name} %{amount} (Included in Price)'
|
684
|
+
adjustment_reasons: Adjustment Reasons
|
685
|
+
adjustment_successfully_closed: Adjustment has been successfully closed!
|
686
|
+
adjustment_successfully_opened: Adjustment has been successfully opened!
|
687
|
+
adjustment_total: Adjustment Total
|
688
|
+
adjustments: Adjustments
|
689
|
+
admin:
|
690
|
+
tab:
|
691
|
+
areas: Areas
|
692
|
+
checkout: Checkout
|
693
|
+
configuration: Configuration
|
694
|
+
general: General
|
695
|
+
option_types: Option Types
|
696
|
+
orders: Orders
|
697
|
+
overview: Overview
|
698
|
+
payments: Payments
|
699
|
+
products: Products
|
700
|
+
promotions: Promotions
|
701
|
+
promotion_categories: Promotion Categories
|
702
|
+
properties: Properties
|
703
|
+
prototypes: Prototypes
|
704
|
+
reports: Reports
|
705
|
+
rma: RMA
|
706
|
+
settings: Settings
|
707
|
+
shipping: Shipping
|
708
|
+
stock: Stock
|
709
|
+
stock_items: Management
|
710
|
+
stock_transfers: Transfers
|
711
|
+
taxes: Taxes
|
712
|
+
taxonomies: Catalogs
|
713
|
+
taxons: Categories
|
714
|
+
users: Users
|
715
|
+
user:
|
716
|
+
account: Account
|
717
|
+
addresses: Addresses
|
718
|
+
items: Items
|
719
|
+
items_purchased: Items Purchased
|
720
|
+
order_history: Order History
|
721
|
+
order_num: "Order #"
|
722
|
+
orders: Orders
|
723
|
+
store_credit: Store Credit
|
724
|
+
user_information: User Information
|
725
|
+
store_credits:
|
726
|
+
add: "Add store credit"
|
727
|
+
amount_authorized: "Amount Authorized"
|
728
|
+
amount_credited: "Amount Credited"
|
729
|
+
amount_used: "Amount Used"
|
730
|
+
back_to_edit: "Back to edit"
|
731
|
+
back_to_user_list: "Back to user list"
|
732
|
+
back_to_store_credit_list: "Store credit list"
|
733
|
+
change_amount: "Change amount"
|
734
|
+
created_by: "Created By"
|
735
|
+
credit_type: "Credit type"
|
736
|
+
current_balance: "Current balance:"
|
737
|
+
edit: "Editing store credit"
|
738
|
+
edit_amount: "Editing store credit amount"
|
739
|
+
history: "Store credit history"
|
740
|
+
invalidate_store_credit: "Invalidating store credit"
|
741
|
+
invalidated: "Invalidated"
|
742
|
+
issued_on: "Issued On"
|
743
|
+
new: "New store credit"
|
744
|
+
no_store_credit_selected: "No store credit was selected"
|
745
|
+
payment_originator: "Payment - Order #%{order_number}"
|
746
|
+
reason_for_updating: "Reason for updating"
|
747
|
+
refund_originator: "Refund - Order #%{order_number}"
|
748
|
+
resource_name: "store credits"
|
749
|
+
user_originator: "User - %{email}"
|
750
|
+
unable_to_create: "Unable to create store credit"
|
751
|
+
unable_to_update: "Unable to update store credit"
|
752
|
+
unable_to_delete: "Unable to delete store credit"
|
753
|
+
unable_to_invalidate: "Unable to invalidate store credit"
|
754
|
+
select_reason: "Select a reason for this store credit"
|
755
|
+
select_amount_update_reason: "Select a reason for updating the amount"
|
756
|
+
total_unused: "Total unused"
|
757
|
+
type_html_header: "Credit Type"
|
758
|
+
errors:
|
759
|
+
cannot_change_used_store_credit: "Store credit that has been claimed cannot be changed"
|
760
|
+
cannot_be_modified: "cannot be modified"
|
761
|
+
amount_used_cannot_be_greater: "cannot be greater than the credited amount"
|
762
|
+
amount_authorized_exceeds_total_credit: " exceeds the available credit"
|
763
|
+
amount_used_not_zero: "is greater than zero. Can not delete store credit"
|
764
|
+
update_reason_required: "A reason for the change must be selected"
|
765
|
+
variants:
|
766
|
+
table_filter:
|
767
|
+
show_deleted: Show deleted variants
|
768
|
+
new:
|
769
|
+
new_variant: New variant
|
770
|
+
edit:
|
771
|
+
edit_variant: Edit Variant
|
772
|
+
form:
|
773
|
+
dimensions: Dimensions
|
774
|
+
use_product_tax_category: Use Product Tax Category
|
775
|
+
pricing: Pricing
|
776
|
+
pricing_hint: These values are populated from the product details page and can be overridden below
|
777
|
+
prices:
|
778
|
+
any_country: "Any Country"
|
779
|
+
index:
|
780
|
+
amount_greater_than: Amount greater than
|
781
|
+
amount_less_than: Amount less than
|
782
|
+
new_price: New Price
|
783
|
+
edit:
|
784
|
+
edit_price: Edit Price
|
785
|
+
new:
|
786
|
+
new_price: New Price
|
787
|
+
administration: Administration
|
788
|
+
agree_to_privacy_policy: Agree to Privacy Policy
|
789
|
+
agree_to_terms_of_service: Agree to Terms of Service
|
790
|
+
all: All
|
791
|
+
all_adjustments_finalized: All adjustments successfully finalized!
|
792
|
+
all_adjustments_unfinalized: All adjustments successfully unfinalized!
|
793
|
+
all_departments: All departments
|
794
|
+
all_items_have_been_returned: All items have been returned
|
795
|
+
already_signed_up_for_analytics: You have already signed up for Spree Analytics
|
796
|
+
alt_text: Alternative Text
|
797
|
+
alternative_phone: Alternative Phone
|
798
|
+
amount: Amount
|
799
|
+
analytics_desc_header_1: Spree Analytics
|
800
|
+
analytics_desc_header_2: Live analytics integrated into your Spree dashboard
|
801
|
+
analytics_desc_list_1: Get live sales information as it happens
|
802
|
+
analytics_desc_list_2: Requires only a free Spree account to activate
|
803
|
+
analytics_desc_list_3: Absolutely no code to install
|
804
|
+
analytics_desc_list_4: It's completely free!
|
805
|
+
analytics_trackers: Analytics Trackers
|
806
|
+
and: and
|
807
|
+
apply_code: Apply Code
|
808
|
+
approve: approve
|
809
|
+
approver: Approver
|
810
|
+
approved_at: Approved at
|
811
|
+
are_you_sure: Are you sure?
|
812
|
+
are_you_sure_delete: Are you sure you want to delete this record?
|
813
|
+
are_you_sure_ship_stock_transfer: Are you sure you want to ship this stock transfer?
|
814
|
+
authorization_failure: Authorization Failure
|
815
|
+
authorized: Authorized
|
816
|
+
auto_capture: Auto Capture
|
817
|
+
auto_receive: Auto Receive
|
818
|
+
available_on: Available On
|
819
|
+
average_order_value: Average Order Value
|
820
|
+
avs_response: AVS Response
|
821
|
+
back: Back
|
822
|
+
back_end: Backend
|
823
|
+
backordered: Backordered
|
824
|
+
back_to_adjustments_list: Back To Adjustments List
|
825
|
+
back_to_adjustment_reason_list: Back To Adjustment Reason List
|
826
|
+
back_to_countries_list: Back To Countries List
|
827
|
+
back_to_customer_return: Back To Customer Return
|
828
|
+
back_to_customer_return_list: Back To Customer Return List
|
829
|
+
back_to_images_list: Back To Images List
|
830
|
+
back_to_option_types_list: Back To Option Types List
|
831
|
+
back_to_orders_list: Back To Orders List
|
832
|
+
back_to_payment: Back To Payment
|
833
|
+
back_to_payment_methods_list: Back To Payment Methods List
|
834
|
+
back_to_payments_list: Back To Payments List
|
835
|
+
back_to_products_list: Back To Products List
|
836
|
+
back_to_promotions_list: Back To Promotions List
|
837
|
+
back_to_promotion_categories_list: Back To Promotions Categories List
|
838
|
+
back_to_properties_list: Back To Properties List
|
839
|
+
back_to_prototypes_list: Back To Prototypes List
|
840
|
+
back_to_reports_list: Back To Reports List
|
841
|
+
back_to_refund_reason_list: Back To Refund Reason List
|
842
|
+
back_to_reimbursement_type_list: Back To Reimbursement Type List
|
843
|
+
back_to_return_authorizations_list: Back To Return Authorizations List
|
844
|
+
back_to_rma_reason_list: Back To RMA Reason List
|
845
|
+
back_to_shipping_categories: Back To Shipping Categories
|
846
|
+
back_to_shipping_categories_list: Back To Shipping Categories List
|
847
|
+
back_to_shipping_methods_list: Back To Shipping Methods List
|
848
|
+
back_to_states_list: Back To States List
|
849
|
+
back_to_stock_locations_list: Back to Stock Locations List
|
850
|
+
back_to_stock_movements_list: Back to Stock Movements List
|
851
|
+
back_to_stock_transfers_list: Back to Stock Transfers List
|
852
|
+
back_to_store: View store
|
853
|
+
back_to_tax_categories_list: Back To Tax Categories List
|
854
|
+
back_to_tax_rates_list: Back To Tax Rates List
|
855
|
+
back_to_taxonomies_list: Back To Catalogs List
|
856
|
+
back_to_trackers_list: Back To Trackers List
|
857
|
+
back_to_users_list: Back To Users List
|
858
|
+
back_to_zones_list: Back To Zones List
|
859
|
+
backorderable: Backorderable
|
860
|
+
backorderable_default: Backorderable default
|
861
|
+
backorderable_header: Back orderable
|
862
|
+
backorders_allowed: backorders allowed
|
863
|
+
balance_due: Balance Due
|
864
|
+
base_amount: Base Amount
|
865
|
+
base_percent: Base Percent
|
866
|
+
bill_address: Bill Address
|
867
|
+
billing: Billing
|
868
|
+
billing_address: Billing Address
|
869
|
+
both: Both
|
870
|
+
calculated_reimbursements: Calculated Reimbursements
|
871
|
+
calculator: Calculator
|
872
|
+
calculator_settings_warning: If you are changing the calculator type or preference source, you must save first before you can edit the calculator settings
|
873
|
+
cancel: cancel
|
874
|
+
cancel_inventory: 'Cancel Inventory'
|
875
|
+
canceled: canceled
|
876
|
+
canceled_at: Canceled at
|
877
|
+
canceler: Canceler
|
878
|
+
cancellation: Cancellation
|
879
|
+
cannot_create_payment_without_payment_methods_html: You cannot create a payment for an order without any payment methods defined. %{link}
|
880
|
+
cannot_create_payment_link: Please define some payment methods first.
|
881
|
+
cannot_create_returns: Cannot create returns as this order has no shipped units.
|
882
|
+
cannot_rebuild_shipments_order_completed: Cannot rebuild shipments for a completed order.
|
883
|
+
cannot_rebuild_shipments_shipments_not_pending: Cannot rebuild shipments for an order with non-pending shipments.
|
884
|
+
cannot_perform_operation: Cannot perform requested operation
|
885
|
+
cannot_set_shipping_method_without_address: Cannot set shipping method until customer details are provided.
|
886
|
+
cannot_update_email: You do not have access to update this user's email address. <br />Please contact a superuser if you need to perform this action.
|
887
|
+
capture: Capture
|
888
|
+
capture_events: Capture events
|
889
|
+
card_code: Card Code
|
890
|
+
card_number: Card Number
|
891
|
+
card_type: Brand
|
892
|
+
card_type_is: Card type is
|
893
|
+
cart: Cart
|
894
|
+
cart_subtotal:
|
895
|
+
one: 'Subtotal (1 item)'
|
896
|
+
other: 'Subtotal (%{count} items)'
|
897
|
+
carton_external_number: External Number
|
898
|
+
carton_orders: 'Other orders with Carton'
|
899
|
+
categories: Categories
|
900
|
+
category: Category
|
901
|
+
charged: Charged
|
902
|
+
check: Check
|
903
|
+
check_stock_on_transfer: Check stock on transfer
|
904
|
+
checkout: Checkout
|
905
|
+
choose_a_customer: Choose a customer
|
906
|
+
choose_a_taxon_to_sort_products_for: "Choose a Category to sort products for"
|
907
|
+
choose_currency: Choose Currency
|
908
|
+
choose_dashboard_locale: Choose Dashboard Locale
|
909
|
+
choose_location: Choose location
|
910
|
+
city: City
|
911
|
+
clear_cache: Clear Cache
|
912
|
+
clear_cache_ok: Cache was flushed
|
913
|
+
clear_cache_warning: Clearing cache will temporarily reduce the performance of your store.
|
914
|
+
clone: Clone
|
915
|
+
close: Close
|
916
|
+
close_stock_transfer:
|
917
|
+
confirm: "Are you sure you want to close this stock transfer?\n\nStock levels will be changed for the received items and you will no longer be able to edit the stock transfer."
|
918
|
+
code: Code
|
919
|
+
company: Company
|
920
|
+
complete: complete
|
921
|
+
complete_order: Complete Order
|
922
|
+
configuration: Configuration
|
923
|
+
configurations: Configurations
|
924
|
+
confirm: Confirm
|
925
|
+
confirm_delete: Confirm Deletion
|
926
|
+
confirm_order: Confirm Order
|
927
|
+
confirm_password: Password Confirmation
|
928
|
+
continue: Continue
|
929
|
+
continue_shopping: Continue shopping
|
930
|
+
cost_currency: Cost Currency
|
931
|
+
cost_price: Cost Price
|
932
|
+
could_not_connect_to_jirafe: Could not connect to Jirafe to sync data. This will be automatically retried later.
|
933
|
+
could_not_create_customer_return: Could not create customer return
|
934
|
+
could_not_create_stock_movement: There was a problem saving this stock movement. Please try again.
|
935
|
+
count_on_hand: Count On Hand
|
936
|
+
countries: Countries
|
937
|
+
country: Country
|
938
|
+
country_based: Country Based
|
939
|
+
country_name: Name
|
940
|
+
country_names:
|
941
|
+
CA: Canada
|
942
|
+
FRA: France
|
943
|
+
ITA: Italy
|
944
|
+
US: United States of America
|
945
|
+
coupon: Coupon
|
946
|
+
coupon_code: Coupon code
|
947
|
+
coupon_code_already_applied: The coupon code has already been applied to this order
|
948
|
+
coupon_code_applied: The coupon code was successfully applied to your order.
|
949
|
+
coupon_code_better_exists: The previously applied coupon code results in a better deal
|
950
|
+
coupon_code_expired: The coupon code is expired
|
951
|
+
coupon_code_max_usage: Coupon code usage limit exceeded
|
952
|
+
coupon_code_not_eligible: This coupon code is not eligible for this order
|
953
|
+
coupon_code_not_found: The coupon code you entered doesn't exist. Please try again.
|
954
|
+
coupon_code_unknown_error: This coupon code could not be applied to the cart at this time.
|
955
|
+
customer: Customer
|
956
|
+
customer_return: Customer Return
|
957
|
+
customer_returns: Customer Returns
|
958
|
+
create: Create
|
959
|
+
create_a_new_account: Create a new account
|
960
|
+
create_new_order: Create new order
|
961
|
+
create_reimbursement: Create reimbursement
|
962
|
+
create_one: Create One.
|
963
|
+
created_at: Created At
|
964
|
+
created_by: Created by
|
965
|
+
created_successfully: Created successfully
|
966
|
+
credit: Credit
|
967
|
+
credits: Credits
|
968
|
+
credit_allowed: Credit Allowed
|
969
|
+
credit_card: Credit Card
|
970
|
+
credit_cards: Credit Cards
|
971
|
+
credit_owed: Credit Owed
|
972
|
+
currency: Currency
|
973
|
+
currency_settings: Currency Settings
|
974
|
+
current: Current
|
975
|
+
current_promotion_usage: ! 'Current Usage: %{count}'
|
976
|
+
customer: Customer
|
977
|
+
customer_details: Customer Details
|
978
|
+
customer_details_updated: Customer Details Updated
|
979
|
+
customer_search: Customer Search
|
980
|
+
cut: Cut
|
981
|
+
cvv_response: CVV Response
|
982
|
+
dash:
|
983
|
+
jirafe:
|
984
|
+
app_id: App ID
|
985
|
+
app_token: App Token
|
986
|
+
currently_unavailable: Jirafe is currently unavailable. Spree will automatically connect to Jirafe once it is available.
|
987
|
+
explanation: The fields below may already be populated if you chose to register with Jirafe from the admin dashboard.
|
988
|
+
header: Jirafe Analytics Settings
|
989
|
+
site_id: Site ID
|
990
|
+
token: Token
|
991
|
+
jirafe_settings_updated: Jirafe Settings have been updated.
|
992
|
+
date: Date
|
993
|
+
date_completed: Date Completed
|
994
|
+
date_picker:
|
995
|
+
first_day: 0
|
996
|
+
format: ! '%Y/%m/%d'
|
997
|
+
js_format: yy/mm/dd
|
998
|
+
date_range: Date Range
|
999
|
+
default: Default
|
1000
|
+
default_refund_amount: Default Refund Amount
|
1001
|
+
default_tax: Default Tax
|
1002
|
+
default_tax_zone: Default Tax Zone
|
1003
|
+
delete: Delete
|
1004
|
+
deleted_variants_present: Some line items in this order have products that are no longer available.
|
1005
|
+
deleted_successfully: Deleted successfully
|
1006
|
+
delivery: Delivery
|
1007
|
+
depth: Depth
|
1008
|
+
description: Description
|
1009
|
+
destination: Destination
|
1010
|
+
destination_location: Destination location
|
1011
|
+
destroy: Destroy
|
1012
|
+
details: Details
|
1013
|
+
discount_amount: Discount Amount
|
1014
|
+
dismiss_banner: No. Thanks! I'm not interested, do not display this message again
|
1015
|
+
display: Display
|
1016
|
+
download_promotion_code_list: Download Code List
|
1017
|
+
edit: Edit
|
1018
|
+
editing_country: Editing Country
|
1019
|
+
editing_adjustment_reason: Editing Adjustment Reason
|
1020
|
+
editing_option_type: Editing Option Type
|
1021
|
+
editing_payment_method: Editing Payment Method
|
1022
|
+
editing_product: Editing Product
|
1023
|
+
editing_promotion: Editing Promotion
|
1024
|
+
editing_promotion_category: Editing Promotion Category
|
1025
|
+
editing_property: Editing Property
|
1026
|
+
editing_prototype: Editing Prototype
|
1027
|
+
edit_refund_reason: Edit Refund Reason
|
1028
|
+
editing_refund: Editing Refund
|
1029
|
+
editing_refund_reason: Editing Refund Reason
|
1030
|
+
editing_reimbursement: Editing Reimbursement
|
1031
|
+
editing_reimbursement_type: Editing Reimbursement Type
|
1032
|
+
editing_rma_reason: Editing RMA Reason
|
1033
|
+
editing_shipping_category: Editing Shipping Category
|
1034
|
+
editing_shipping_method: Editing Shipping Method
|
1035
|
+
editing_state: Editing State
|
1036
|
+
editing_stock_location: Editing Stock Location
|
1037
|
+
editing_stock_movement: Editing Stock Movement
|
1038
|
+
editing_stock_transfer: Editing Stock Transfer
|
1039
|
+
editing_tax_category: Editing Tax Category
|
1040
|
+
editing_tax_rate: Editing Tax Rate
|
1041
|
+
editing_tracker: Editing Tracker
|
1042
|
+
editing_user: Editing User
|
1043
|
+
editing_zone: Editing Zone
|
1044
|
+
eligibility_errors:
|
1045
|
+
messages:
|
1046
|
+
has_excluded_product: Your cart contains a product that prevents this coupon code from being applied.
|
1047
|
+
item_total_less_than: This coupon code can't be applied to orders less than %{amount}.
|
1048
|
+
item_total_less_than_or_equal: This coupon code can't be applied to orders less than or equal to %{amount}.
|
1049
|
+
limit_once_per_user: This coupon code can only be used once per user.
|
1050
|
+
missing_product: This coupon code can't be applied because you don't have all of the necessary products in your cart.
|
1051
|
+
missing_taxon: You need to add a product from all applicable categories before applying this coupon code.
|
1052
|
+
no_applicable_products: You need to add an applicable product before applying this coupon code.
|
1053
|
+
no_matching_taxons: You need to add a product from an applicable category before applying this coupon code.
|
1054
|
+
no_user_or_email_specified: You need to login or provide your email before applying this coupon code.
|
1055
|
+
no_user_specified: You need to login before applying this coupon code.
|
1056
|
+
not_first_order: This coupon code can only be applied to your first order.
|
1057
|
+
email: Email
|
1058
|
+
empty: Empty
|
1059
|
+
empty_cart: Empty Cart
|
1060
|
+
enable_mail_delivery: Enable Mail Delivery
|
1061
|
+
end: End
|
1062
|
+
ending_in: Ending in
|
1063
|
+
error: error
|
1064
|
+
errors:
|
1065
|
+
messages:
|
1066
|
+
cannot_modify_transfer_item_closed_stock_transfer: Transfer items that are part of a closed stock transfer cannot be modified.
|
1067
|
+
cannot_delete_finalized_stock_transfer: Finalized stock transfers cannot be destroyed.
|
1068
|
+
cannot_delete_transfer_item_with_finalized_stock_transfer: Transfer items that are part of a finalized stock transfer cannot be destroyed.
|
1069
|
+
cannot_update_expected_transfer_item_with_finalized_stock_transfer: The expected quantity cannot be updated on transfer items that are part of a finalized stock transfer.
|
1070
|
+
could_not_create_taxon: Could not create Category
|
1071
|
+
transfer_item_insufficient_stock: Transfer item's variant does not have enough stock in the stock transfer's source location
|
1072
|
+
no_payment_methods_available: No payment methods are configured for this environment
|
1073
|
+
no_shipping_methods_available: No shipping methods available for selected location, please change your address and try again.
|
1074
|
+
errors_prohibited_this_record_from_being_saved:
|
1075
|
+
one: 1 error prohibited this record from being saved
|
1076
|
+
other: ! '%{count} errors prohibited this record from being saved'
|
1077
|
+
event: Event
|
1078
|
+
events:
|
1079
|
+
spree:
|
1080
|
+
cart:
|
1081
|
+
add: Add to cart
|
1082
|
+
checkout:
|
1083
|
+
coupon_code_added: Coupon code added
|
1084
|
+
content:
|
1085
|
+
visited: Visit static content page
|
1086
|
+
order:
|
1087
|
+
contents_changed: Order contents changed
|
1088
|
+
page_view: Static page viewed
|
1089
|
+
user:
|
1090
|
+
signup: User signup
|
1091
|
+
exceptions:
|
1092
|
+
count_on_hand_setter: Cannot set count_on_hand manually, as it is set automatically by the recalculate_count_on_hand callback. Please use `update_column(:count_on_hand, value)` instead.
|
1093
|
+
exchange_for: Exchange for
|
1094
|
+
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."
|
1095
|
+
excl: excl.
|
1096
|
+
expected: Expected
|
1097
|
+
expected_items: Expected Items
|
1098
|
+
expiration: Expiration
|
1099
|
+
extension: Extension
|
1100
|
+
existing_shipments: Existing shipments
|
1101
|
+
hints:
|
1102
|
+
spree/product:
|
1103
|
+
promotionable: "This determines whether or not promotions can apply to this product.<br/>Default: checked"
|
1104
|
+
failed_payment_attempts: Failed Payment Attempts
|
1105
|
+
failure: Failure
|
1106
|
+
filename: Filename
|
1107
|
+
fill_in_customer_info: Please fill in customer info
|
1108
|
+
filter_results: Filter Results
|
1109
|
+
finalize: Finalize
|
1110
|
+
finalize_all_adjustments: Finalize All Adjustments
|
1111
|
+
finalize_stock_transfer:
|
1112
|
+
confirm: "Are you sure you want to finalize this stock transfer?\n\nYou will no longer be able to add or edit any transfer items"
|
1113
|
+
find_a_taxon: Find a Category
|
1114
|
+
finalized: Finalized
|
1115
|
+
finalized_at: Finalized at
|
1116
|
+
finalized_by: Finalized by
|
1117
|
+
first_item: First Item
|
1118
|
+
first_name: First Name
|
1119
|
+
first_name_begins_with: First Name Begins With
|
1120
|
+
flat_percent: Flat Percent
|
1121
|
+
flat_rate_per_order: Flat Rate
|
1122
|
+
flexible_rate: Flexible Rate
|
1123
|
+
forgot_password: Forgot Password?
|
1124
|
+
free_shipping: Free Shipping
|
1125
|
+
free_shipping_amount: "-"
|
1126
|
+
from: From
|
1127
|
+
front_end: Front End
|
1128
|
+
gateway: Gateway
|
1129
|
+
gateway_config_unavailable: Gateway unavailable for environment
|
1130
|
+
gateway_error: Gateway Error
|
1131
|
+
general: General
|
1132
|
+
general_settings: General Settings
|
1133
|
+
google_analytics: Google Analytics
|
1134
|
+
google_analytics_id: Analytics ID
|
1135
|
+
group_size: Group size
|
1136
|
+
guest_checkout: Guest Checkout
|
1137
|
+
guest_user_account: Checkout as a Guest
|
1138
|
+
has_no_shipped_units: has no shipped units
|
1139
|
+
height: Height
|
1140
|
+
helpers:
|
1141
|
+
products:
|
1142
|
+
price_diff_add_html: "(Add: %{amount_html})"
|
1143
|
+
price_diff_subtract_html: "(Subtract: %{amount_html})"
|
1144
|
+
hidden: hidden
|
1145
|
+
hide_out_of_stock: Hide out of stock
|
1146
|
+
home: Home
|
1147
|
+
i18n:
|
1148
|
+
available_locales: Available Locales
|
1149
|
+
fields: Fields
|
1150
|
+
language: Language
|
1151
|
+
localization_settings: Localization Settings
|
1152
|
+
only_incomplete: Only incomplete
|
1153
|
+
only_complete: Only complete
|
1154
|
+
select_locale: Select locale
|
1155
|
+
show_only: Show only
|
1156
|
+
supported_locales: Supported Locales
|
1157
|
+
this_file_language: English (US)
|
1158
|
+
translations: Translations
|
1159
|
+
icon: Icon
|
1160
|
+
id: ID
|
1161
|
+
identifier: Identifier
|
1162
|
+
image: Image
|
1163
|
+
images: Images
|
1164
|
+
implement_eligible_for_return: "Must implement #eligible_for_return? for your EligibilityValidator."
|
1165
|
+
implement_requires_manual_intervention: "Must implement #requires_manual_intervention? for your EligibilityValidator."
|
1166
|
+
inactive: Inactive
|
1167
|
+
incl: incl.
|
1168
|
+
included_in_price: Included in Price
|
1169
|
+
included_price_validation: cannot be selected unless you have set a Default Tax Zone
|
1170
|
+
incomplete: Incomplete
|
1171
|
+
info_product_has_multiple_skus: "This product has %{count} variants:"
|
1172
|
+
info_number_of_skus_not_shown:
|
1173
|
+
one: "and one other"
|
1174
|
+
other: "and %{count} others"
|
1175
|
+
instructions_to_reset_password: Please enter your email on the form below
|
1176
|
+
insufficient_stock: Insufficient stock available, only %{on_hand} remaining
|
1177
|
+
insufficient_stock_for_order: Insufficient stock for order
|
1178
|
+
insufficient_stock_lines_present: Some line items in this order have insufficient quantity.
|
1179
|
+
intercept_email_address: Intercept Email Address
|
1180
|
+
intercept_email_instructions: Override email recipient and replace with this address.
|
1181
|
+
internal_name: Internal Name
|
1182
|
+
invalid_exchange_variant: Invalid exchange variant.
|
1183
|
+
invalid_payment_provider: Invalid payment provider.
|
1184
|
+
invalid_promotion_action: Invalid promotion action.
|
1185
|
+
invalid_promotion_rule: Invalid promotion rule.
|
1186
|
+
invalidate: Invalidate
|
1187
|
+
inventory: Inventory
|
1188
|
+
inventory_adjustment: Inventory Adjustment
|
1189
|
+
inventory_canceled: Inventory canceled
|
1190
|
+
inventory_error_flash_for_insufficient_quantity: An item in your cart has become unavailable.
|
1191
|
+
inventory_state: Inventory State
|
1192
|
+
inventory_states:
|
1193
|
+
backordered: backordered
|
1194
|
+
canceled: canceled
|
1195
|
+
on_hand: on hand
|
1196
|
+
returned: returned
|
1197
|
+
shipped: shipped
|
1198
|
+
is_not_available_to_shipment_address: is not available to shipment address
|
1199
|
+
iso_name: Iso Name
|
1200
|
+
item: Item
|
1201
|
+
item_description: Item Description
|
1202
|
+
item_not_in_stock_transfer: Item is not part of the stock transfer
|
1203
|
+
item_total: Item Total
|
1204
|
+
item_total_rule:
|
1205
|
+
operators:
|
1206
|
+
gt: greater than
|
1207
|
+
gte: greater than or equal to
|
1208
|
+
items_cannot_be_shipped: We are unable to calculate shipping rates for the selected items.
|
1209
|
+
items_in_rmas: Items in Return Authorizations
|
1210
|
+
items_to_be_reimbursed: Items to be reimbursed
|
1211
|
+
items_reimbursed: Items reimbursed
|
1212
|
+
jirafe: Jirafe
|
1213
|
+
landing_page_rule:
|
1214
|
+
path: Path
|
1215
|
+
last_name: Last Name
|
1216
|
+
last_name_begins_with: Last Name Begins With
|
1217
|
+
learn_more: Learn More
|
1218
|
+
lifetime_stats: Lifetime Stats
|
1219
|
+
line_item_adjustments: "Line item adjustments"
|
1220
|
+
list: List
|
1221
|
+
listing_countries: Listing Countries
|
1222
|
+
listing_orders: Listing Orders
|
1223
|
+
listing_products: Listing Products
|
1224
|
+
listing_reports: Listing Reports
|
1225
|
+
listing_tax_categories: Listing Tax Categories
|
1226
|
+
listing_users: Listing Users
|
1227
|
+
loading: Loading
|
1228
|
+
locale_changed: Locale Changed
|
1229
|
+
location: Location
|
1230
|
+
lock: Lock
|
1231
|
+
log_entries: "Log Entries"
|
1232
|
+
logs: "Logs"
|
1233
|
+
logged_in_as: Logged in as
|
1234
|
+
logged_in_succesfully: Logged in successfully
|
1235
|
+
logged_out: You have been logged out.
|
1236
|
+
login: Login
|
1237
|
+
login_as_existing: Login as Existing Customer
|
1238
|
+
login_failed: Login authentication failed.
|
1239
|
+
login_name: Login
|
1240
|
+
logout: Logout
|
1241
|
+
look_for_similar_items: Look for similar items
|
1242
|
+
make_refund: Make refund
|
1243
|
+
make_sure_the_above_reimbursement_amount_is_correct: Make sure the above reimbursement amount is correct
|
1244
|
+
manage_promotion_categories: Manage Promotion Categories
|
1245
|
+
manage_stock: Manage Stock
|
1246
|
+
manual_intervention_required: Manual intervention required
|
1247
|
+
manage_variants: Manage Variants
|
1248
|
+
master_price: Master Price
|
1249
|
+
match_choices:
|
1250
|
+
all: All
|
1251
|
+
none: None
|
1252
|
+
max_items: Max Items
|
1253
|
+
member_since: Member Since
|
1254
|
+
memo: Memo
|
1255
|
+
meta_description: Meta Description
|
1256
|
+
meta_keywords: Meta Keywords
|
1257
|
+
meta_title: Meta Title
|
1258
|
+
metadata: Metadata
|
1259
|
+
minimal_amount: Minimal Amount
|
1260
|
+
month: Month
|
1261
|
+
more: More
|
1262
|
+
move_stock_between_locations: Move Stock Between Locations
|
1263
|
+
my_account: My Account
|
1264
|
+
my_orders: My Orders
|
1265
|
+
name: Name
|
1266
|
+
name_on_card: Name on card
|
1267
|
+
name_or_sku: Name or SKU (enter at least first 4 characters of product name)
|
1268
|
+
negative_movement_absent_item: Cannot create negative movement for absent stock item.
|
1269
|
+
new: New
|
1270
|
+
new_adjustment: New Adjustment
|
1271
|
+
new_adjustment_reason: New Adjustment Reason
|
1272
|
+
new_customer: New Customer
|
1273
|
+
new_customer_return: New Customer Return
|
1274
|
+
new_country: New Country
|
1275
|
+
new_image: New Image
|
1276
|
+
new_option_type: New Option Type
|
1277
|
+
new_order: New Order
|
1278
|
+
new_order_completed: New Order Completed
|
1279
|
+
new_payment: New Payment
|
1280
|
+
new_payment_method: New Payment Method
|
1281
|
+
new_product: New Product
|
1282
|
+
new_promotion: New Promotion
|
1283
|
+
new_promotion_category: New Promotion Category
|
1284
|
+
new_property: New Property
|
1285
|
+
new_prototype: New Prototype
|
1286
|
+
new_refund: New Refund
|
1287
|
+
new_refund_reason: New Refund Reason
|
1288
|
+
new_rma_reason: New RMA Reason
|
1289
|
+
new_return_authorization: New Return Authorization
|
1290
|
+
new_shipping_category: New Shipping Category
|
1291
|
+
new_shipping_method: New Shipping Method
|
1292
|
+
new_shipment_at_location: New shipment at location
|
1293
|
+
new_state: New State
|
1294
|
+
new_stock_location: New Stock Location
|
1295
|
+
new_stock_movement: New Stock Movement
|
1296
|
+
new_stock_transfer: New Stock Transfer
|
1297
|
+
new_tax_category: New Tax Category
|
1298
|
+
new_tax_rate: New Tax Rate
|
1299
|
+
new_taxon: New Category
|
1300
|
+
new_taxonomy: New Catalog
|
1301
|
+
new_tracker: New Tracker
|
1302
|
+
new_user: New User
|
1303
|
+
new_variant: New Variant
|
1304
|
+
new_zone: New Zone
|
1305
|
+
next: Next
|
1306
|
+
no_actions_added: No actions added
|
1307
|
+
no_images_found: No images found
|
1308
|
+
no_inventory_selected: No inventory selected
|
1309
|
+
no_orders_found: No orders found
|
1310
|
+
no_option_values_on_product_html: "This product has no associated option values. Add some to it through Option Types in the %{link}."
|
1311
|
+
no_payment_methods_found: No payment methods found
|
1312
|
+
no_payment_found: No payment found
|
1313
|
+
no_pending_payments: No pending payments
|
1314
|
+
no_products_found: No products found
|
1315
|
+
no_promotions_found: No promotions found
|
1316
|
+
no_results: No results
|
1317
|
+
no_rules_added: No rules added
|
1318
|
+
no_resource: 'No %{resource} found.'
|
1319
|
+
no_resource_found_html: 'No %{resource} found, %{add_one_link}!'
|
1320
|
+
no_resource_found_link: Add One
|
1321
|
+
no_resource_found: ! 'No %{resource} found'
|
1322
|
+
no_shipping_methods_found: No shipping methods found
|
1323
|
+
no_shipping_method_selected: No shipping method selected.
|
1324
|
+
no_trackers_found: No Trackers Found
|
1325
|
+
no_stock_locations_found: No stock locations found
|
1326
|
+
no_tracking_present: No tracking details provided.
|
1327
|
+
no_variants_found: No variants found.
|
1328
|
+
no_variants_found_try_again: No variants found. Try changing the search values.
|
1329
|
+
none: None
|
1330
|
+
none_selected: None Selected
|
1331
|
+
normal_amount: Normal Amount
|
1332
|
+
not: not
|
1333
|
+
not_available: N/A
|
1334
|
+
not_enough_stock: There is not enough inventory at the source location to complete this transfer.
|
1335
|
+
not_found: ! '%{resource} is not found'
|
1336
|
+
note: Note
|
1337
|
+
note_already_received_a_refund: "Note: This order has already received a refund. Make sure the above reimbursement amount is correct."
|
1338
|
+
notice_messages:
|
1339
|
+
product_cloned: Product has been cloned
|
1340
|
+
product_deleted: Product has been deleted
|
1341
|
+
product_not_cloned: Product could not be cloned
|
1342
|
+
product_not_deleted: Product could not be deleted
|
1343
|
+
variant_deleted: Variant has been deleted
|
1344
|
+
variant_not_deleted: Variant could not be deleted
|
1345
|
+
num_orders: "# Orders"
|
1346
|
+
number: Number
|
1347
|
+
number_of_codes: ! '%{count} codes'
|
1348
|
+
on_hand: On Hand
|
1349
|
+
open: Open
|
1350
|
+
option_type: Option Type
|
1351
|
+
option_type_placeholder: Choose an option type
|
1352
|
+
option_types: Option Types
|
1353
|
+
option_value: Option Value
|
1354
|
+
option_values: Option Values
|
1355
|
+
optional: Optional
|
1356
|
+
options: Options
|
1357
|
+
or: or
|
1358
|
+
or_over_price: ! '%{price} or over'
|
1359
|
+
order: Order
|
1360
|
+
order_adjustments: Order adjustments
|
1361
|
+
order_already_completed: Order is already completed
|
1362
|
+
order_approved: Order approved
|
1363
|
+
order_canceled: Order canceled
|
1364
|
+
order_completed: Order completed
|
1365
|
+
order_details: Order Details
|
1366
|
+
order_email_resent: Order Email Resent
|
1367
|
+
order_information: Order Information
|
1368
|
+
order_mailer:
|
1369
|
+
cancel_email:
|
1370
|
+
dear_customer: Dear Customer,
|
1371
|
+
instructions: Your order has been CANCELED. Please retain this cancellation information for your records.
|
1372
|
+
order_summary_canceled: Order Summary [CANCELED]
|
1373
|
+
subject: Cancellation of Order
|
1374
|
+
subtotal: ! 'Subtotal:'
|
1375
|
+
total: ! 'Order Total:'
|
1376
|
+
confirm_email:
|
1377
|
+
dear_customer: Dear Customer,
|
1378
|
+
instructions: Please review and retain the following order information for your records.
|
1379
|
+
order_summary: Order Summary
|
1380
|
+
subject: Order Confirmation
|
1381
|
+
subtotal: ! 'Subtotal:'
|
1382
|
+
thanks: Thank you for your business.
|
1383
|
+
total: ! 'Order Total:'
|
1384
|
+
inventory_cancellation:
|
1385
|
+
dear_customer: Dear Customer,
|
1386
|
+
instructions: Some items in your order have been CANCELED. Please retain this cancellation information for your records.
|
1387
|
+
order_summary_canceled: Canceled Items
|
1388
|
+
subject: Cancellation of Items
|
1389
|
+
order_mutex_admin_error: Order is being modified by someone else. Please try again.
|
1390
|
+
order_mutex_error: Something went wrong. Please try again.
|
1391
|
+
order_not_found: We couldn't find your order. Please try that action again.
|
1392
|
+
order_number: Order %{number}
|
1393
|
+
order_please_refresh: Order is not ready to be completed. Please refresh totals.
|
1394
|
+
order_processed_successfully: Your order has been processed successfully
|
1395
|
+
order_ready_for_confirm: Order ready for confirmation
|
1396
|
+
order_refresh_totals: Refresh Totals
|
1397
|
+
order_resumed: Order resumed
|
1398
|
+
order_state:
|
1399
|
+
address: address
|
1400
|
+
awaiting_return: awaiting return
|
1401
|
+
canceled: canceled
|
1402
|
+
cart: cart
|
1403
|
+
complete: complete
|
1404
|
+
confirm: confirm
|
1405
|
+
delivery: delivery
|
1406
|
+
payment: payment
|
1407
|
+
resumed: resumed
|
1408
|
+
returned: returned
|
1409
|
+
order_summary: Order Summary
|
1410
|
+
order_sure_want_to: Are you sure you want to %{event} this order?
|
1411
|
+
order_total: Order Total
|
1412
|
+
order_updated: Order Updated
|
1413
|
+
orders: Orders
|
1414
|
+
other_items_in_other: Other Items in Order
|
1415
|
+
out_of_stock: Out of Stock
|
1416
|
+
overview: Overview
|
1417
|
+
package_from: package from
|
1418
|
+
pagination:
|
1419
|
+
next_page: next page »
|
1420
|
+
previous_page: ! '« previous page'
|
1421
|
+
truncate: ! '…'
|
1422
|
+
password: Password
|
1423
|
+
paste: Paste
|
1424
|
+
path: Path
|
1425
|
+
pay: pay
|
1426
|
+
payment: Payment
|
1427
|
+
payment_amount: Payment Amount
|
1428
|
+
payment_could_not_be_created: Payment could not be created.
|
1429
|
+
payments_failed_count:
|
1430
|
+
one: 1 Payment
|
1431
|
+
other: '%{count} Payments'
|
1432
|
+
payment_identifier: Payment Identifier
|
1433
|
+
payment_information: Payment Information
|
1434
|
+
payment_method: Payment Method
|
1435
|
+
payment_methods: Payment Methods
|
1436
|
+
payment_method_not_supported: That payment method is unsupported. Please choose another one.
|
1437
|
+
payment_processing_failed: Payment could not be processed, please check the details you entered
|
1438
|
+
payment_processor_choose_banner_text: If you need help choosing a payment processor, please visit
|
1439
|
+
payment_processor_choose_link: our payments page
|
1440
|
+
payment_state: Payment State
|
1441
|
+
payment_states:
|
1442
|
+
balance_due: balance due
|
1443
|
+
checkout: checkout
|
1444
|
+
completed: completed
|
1445
|
+
credit_owed: credit owed
|
1446
|
+
failed: failed
|
1447
|
+
paid: paid
|
1448
|
+
pending: pending
|
1449
|
+
processing: processing
|
1450
|
+
void: void
|
1451
|
+
payment_updated: Payment Updated
|
1452
|
+
payments: Payments
|
1453
|
+
percent: Percent
|
1454
|
+
percent_per_item: Percent Per Item
|
1455
|
+
permalink: Permalink
|
1456
|
+
pending: Pending
|
1457
|
+
phone: Phone
|
1458
|
+
place_order: Place Order
|
1459
|
+
please_define_payment_methods: Please define some payment methods first.
|
1460
|
+
please_enter_reasonable_quantity: Please enter a reasonable quantity.
|
1461
|
+
populate_get_error: Something went wrong. Please try adding the item again.
|
1462
|
+
powered_by: Powered by
|
1463
|
+
pre_tax_refund_amount: Pre-Tax Refund Amount
|
1464
|
+
pre_tax_amount: Pre-Tax Amount
|
1465
|
+
pre_tax_total: Pre-Tax Total
|
1466
|
+
preferred_reimbursement_type: Preferred Reimbursement Type
|
1467
|
+
presentation: Presentation
|
1468
|
+
previous: Previous
|
1469
|
+
price: Price
|
1470
|
+
price_range: Price Range
|
1471
|
+
price_sack: Price Sack
|
1472
|
+
preference_source_none: '(custom)'
|
1473
|
+
preference_source_using: 'Using static preferences "%{name}"'
|
1474
|
+
process: Process
|
1475
|
+
product: Product
|
1476
|
+
product_details: Product Details
|
1477
|
+
product_has_no_description: This product has no description
|
1478
|
+
product_not_available_in_this_currency: This product is not available in the selected currency.
|
1479
|
+
product_properties: Product Properties
|
1480
|
+
product_rule:
|
1481
|
+
choose_products: Choose products
|
1482
|
+
label: Order must contain %{select} of these products
|
1483
|
+
match_all: all
|
1484
|
+
match_any: at least one
|
1485
|
+
match_none: none
|
1486
|
+
product_source:
|
1487
|
+
group: From product group
|
1488
|
+
manual: Manually choose
|
1489
|
+
products: Products
|
1490
|
+
promotion: Promotion
|
1491
|
+
promotionable: Promotable
|
1492
|
+
promotion_action: Promotion Action
|
1493
|
+
promotion_action_types:
|
1494
|
+
create_adjustment:
|
1495
|
+
description: Creates a promotion credit adjustment on the order
|
1496
|
+
name: Create whole-order adjustment
|
1497
|
+
create_item_adjustments:
|
1498
|
+
description: Creates a promotion credit adjustment on a line item
|
1499
|
+
name: Create per-line-item adjustment
|
1500
|
+
create_quantity_adjustments:
|
1501
|
+
description: Creates an adjustment on a line item based on quantity
|
1502
|
+
name: Create per-quantity adjustment
|
1503
|
+
free_shipping:
|
1504
|
+
description: Makes all shipments for the order free
|
1505
|
+
name: Free shipping
|
1506
|
+
promotion_actions: Actions
|
1507
|
+
promotion_form:
|
1508
|
+
match_policies:
|
1509
|
+
all: Match all of these rules
|
1510
|
+
any: Match any of these rules
|
1511
|
+
promotion_rule: Promotion Rule
|
1512
|
+
promotion_rule_types:
|
1513
|
+
first_order:
|
1514
|
+
description: Must be the customer's first order
|
1515
|
+
name: First order
|
1516
|
+
item_total:
|
1517
|
+
description: Order total meets these criteria
|
1518
|
+
name: Item total
|
1519
|
+
landing_page:
|
1520
|
+
description: Customer must have visited the specified page
|
1521
|
+
name: Landing Page
|
1522
|
+
one_use_per_user:
|
1523
|
+
description: Only One Use Per User
|
1524
|
+
name: One Use Per User
|
1525
|
+
option_value:
|
1526
|
+
description: Order includes specified product(s) with matching option value(s)
|
1527
|
+
name: Option Value(s)
|
1528
|
+
product:
|
1529
|
+
description: Order includes specified product(s)
|
1530
|
+
name: Product(s)
|
1531
|
+
user:
|
1532
|
+
description: Available only to the specified users
|
1533
|
+
name: User
|
1534
|
+
user_logged_in:
|
1535
|
+
description: Available only to logged in users
|
1536
|
+
name: User Logged In
|
1537
|
+
taxon:
|
1538
|
+
description: Order includes products with specified category(s)
|
1539
|
+
name: Category(s)
|
1540
|
+
nth_order:
|
1541
|
+
description: Apply a promotion to every nth order a user has completed.
|
1542
|
+
name: Nth Order
|
1543
|
+
form_text: "Apply this promotion on the users Nth order: "
|
1544
|
+
first_repeat_purchase_since:
|
1545
|
+
description: Available only to user who have not purchased in a while
|
1546
|
+
name: First Repeat Purchase Since
|
1547
|
+
form_text: "Apply this promotion to users whose last order was more than X days ago: "
|
1548
|
+
promotions: Promotions
|
1549
|
+
promotion_successfully_created: Promotion has been successfully created!
|
1550
|
+
promotion_total_changed_before_complete: "One or more of the promotions on your order have become ineligible and were removed. Please check the new order amounts and try again."
|
1551
|
+
promotion_uses: Promotion uses
|
1552
|
+
propagate_all_variants: Propagate all variants
|
1553
|
+
properties: Properties
|
1554
|
+
property: Property
|
1555
|
+
prototype: Prototype
|
1556
|
+
prototypes: Prototypes
|
1557
|
+
provider: Provider
|
1558
|
+
provider_settings_warning: If you are changing the provider type, you must save first before you can edit the provider settings
|
1559
|
+
qty: Qty
|
1560
|
+
quantity: Quantity
|
1561
|
+
quantity_returned: Quantity Returned
|
1562
|
+
quantity_shipped: Quantity Shipped
|
1563
|
+
rate: Rate
|
1564
|
+
ready_to_ship: Ready to ship
|
1565
|
+
reason: Reason
|
1566
|
+
receive: receive
|
1567
|
+
received: Received
|
1568
|
+
receive_stock: Receive Stock
|
1569
|
+
received_items: Received Items
|
1570
|
+
received_successfully: Received Successfully
|
1571
|
+
receiving: Receiving
|
1572
|
+
receiving_match: Receiving match
|
1573
|
+
reception_status: Reception Status
|
1574
|
+
reference: Reference
|
1575
|
+
refund: Refund
|
1576
|
+
refund_amount_must_be_greater_than_zero: Refund amount must be greater than zero
|
1577
|
+
refund_reasons: Refund Reasons
|
1578
|
+
refunded_amount: Refunded Amount
|
1579
|
+
refunds: Refunds
|
1580
|
+
refund_amount_must_be_greater_than_zero: Refund amount must be greater than zero
|
1581
|
+
register: Register
|
1582
|
+
registration: Registration
|
1583
|
+
reimburse: Reimburse
|
1584
|
+
reimbursed: Reimbursed
|
1585
|
+
reimbursement: Reimbursement
|
1586
|
+
reimbursement_perform_failed: "Reimbursement could not be performed. Error: %{error}"
|
1587
|
+
reimbursement_status: Reimbursement status
|
1588
|
+
reimbursement_type: Reimbursement type
|
1589
|
+
reimbursement_type_override: Reimbursement Type Override
|
1590
|
+
reimbursement_types: Reimbursement Types
|
1591
|
+
reimbursements: Reimbursements
|
1592
|
+
reject: Reject
|
1593
|
+
rejected: Rejected
|
1594
|
+
remember_me: Remember me
|
1595
|
+
remove: Remove
|
1596
|
+
rename: Rename
|
1597
|
+
reports: Reports
|
1598
|
+
resend: Resend
|
1599
|
+
reset_password: Reset my password
|
1600
|
+
response_code: Response Code
|
1601
|
+
restock_inventory: Restock Inventory
|
1602
|
+
resume: resume
|
1603
|
+
resumed: Resumed
|
1604
|
+
return: return
|
1605
|
+
return_authorization: Return Authorization
|
1606
|
+
return_reasons: Return Reasons
|
1607
|
+
return_authorization_updated: Return authorization updated
|
1608
|
+
return_authorizations: Return Authorizations
|
1609
|
+
return_item_inventory_unit_ineligible: Return item's inventory unit must be shipped
|
1610
|
+
return_item_inventory_unit_reimbursed: Return item's inventory unit is already reimbursed
|
1611
|
+
return_item_order_not_completed: Return item's order must be completed
|
1612
|
+
return_item_rma_ineligible: Return item requires an RMA
|
1613
|
+
return_item_time_period_ineligible: Return item is outside the eligible time period
|
1614
|
+
return_items: Return Items
|
1615
|
+
return_items_cannot_be_associated_with_multiple_orders: Return items cannot be associated with multiple orders.
|
1616
|
+
return_items_cannot_be_created_for_inventory_units_that_are_already_awaiting_exchange: Return items cannot be created for inventory units that are already awaiting exchange.
|
1617
|
+
reimbursement_mailer:
|
1618
|
+
reimbursement_email:
|
1619
|
+
days_to_send: ! 'You have %{days} days to send back any items awaiting exchange.'
|
1620
|
+
dear_customer: Dear Customer,
|
1621
|
+
exchange_summary: Exchange Summary
|
1622
|
+
for: for
|
1623
|
+
instructions: Your reimbursement has been processed.
|
1624
|
+
refund_summary: Refund Summary
|
1625
|
+
subject: Reimbursement Notification
|
1626
|
+
total_refunded: ! 'Total refunded: %{total}'
|
1627
|
+
return_number: Return Number
|
1628
|
+
return_quantity: Return Quantity
|
1629
|
+
returned: Returned
|
1630
|
+
review: Review
|
1631
|
+
risk: Risk
|
1632
|
+
risk_analysis: Risk Analysis
|
1633
|
+
risky: Risky
|
1634
|
+
rma_credit: RMA Credit
|
1635
|
+
rma_number: RMA Number
|
1636
|
+
rma_value: RMA Value
|
1637
|
+
roles: Roles
|
1638
|
+
rules: Rules
|
1639
|
+
sales_total: Sales Total
|
1640
|
+
sales_total_description: Sales Total For All Orders
|
1641
|
+
sales_totals: Sales Totals
|
1642
|
+
save_and_continue: Save and Continue
|
1643
|
+
save_my_address: Save my address
|
1644
|
+
say_no: 'No'
|
1645
|
+
say_yes: 'Yes'
|
1646
|
+
scope: Scope
|
1647
|
+
search: Search
|
1648
|
+
search_results: Search results for '%{keywords}'
|
1649
|
+
searching: Searching
|
1650
|
+
secure_connection_type: Secure Connection Type
|
1651
|
+
security_settings: Security Settings
|
1652
|
+
select: Select
|
1653
|
+
select_from_prototype: Select From Prototype
|
1654
|
+
select_a_reason: Select a reason
|
1655
|
+
select_a_stock_location: Select a stock location
|
1656
|
+
select_stock: Select stock
|
1657
|
+
selected_quantity_not_available: ! 'selected of %{item} is not available.'
|
1658
|
+
send_copy_of_all_mails_to: Send Copy of All Mails To
|
1659
|
+
send_mailer: Send Mailer
|
1660
|
+
send_mails_as: Send Mails As
|
1661
|
+
server: Server
|
1662
|
+
server_error: The server returned an error
|
1663
|
+
settings: Settings
|
1664
|
+
ship: ship
|
1665
|
+
ship_address: Ship Address
|
1666
|
+
ship_address_required: Valid shipping address required
|
1667
|
+
ship_stock_transfer:
|
1668
|
+
confirm: "Are you sure you want to mark this stock transfer as shipping?\n\nYou will no longer be able to make changes to the stock transfer"
|
1669
|
+
ship_total: Ship Total
|
1670
|
+
shipped_at: Shipped At
|
1671
|
+
shipment: Shipment
|
1672
|
+
shipment_adjustments: "Shipment adjustments"
|
1673
|
+
shipment_details: "From %{stock_location} via %{shipping_method}"
|
1674
|
+
shipment_mailer:
|
1675
|
+
shipped_email:
|
1676
|
+
dear_customer: Dear Customer,
|
1677
|
+
instructions: Your order has been shipped
|
1678
|
+
shipment_summary: Shipment Summary
|
1679
|
+
subject: Shipment Notification
|
1680
|
+
thanks: Thank you for your business.
|
1681
|
+
track_information: ! 'Tracking Information: %{tracking}'
|
1682
|
+
track_link: ! 'Tracking Link: %{url}'
|
1683
|
+
shipment_date: Shipment date
|
1684
|
+
shipment_number: Shipment Number
|
1685
|
+
shipment_numbers: Shipment numbers
|
1686
|
+
shipment_state: Shipment State
|
1687
|
+
shipment_states:
|
1688
|
+
backorder: backorder
|
1689
|
+
canceled: canceled
|
1690
|
+
partial: partial
|
1691
|
+
pending: pending
|
1692
|
+
ready: ready
|
1693
|
+
shipped: shipped
|
1694
|
+
shipment_transfer_success: 'Variants successfully transferred'
|
1695
|
+
shipment_transfer_error: 'There was an error transferring variants'
|
1696
|
+
shipments: Shipments
|
1697
|
+
shipped: Shipped
|
1698
|
+
shipping: Shipping
|
1699
|
+
shipping_address: Shipping Address
|
1700
|
+
shipping_categories: Shipping Categories
|
1701
|
+
shipping_category: Shipping Category
|
1702
|
+
shipping_flat_rate_per_item: Flat rate per package item
|
1703
|
+
shipping_flat_rate_per_order: Flat rate
|
1704
|
+
shipping_flexible_rate: Flexible Rate per package item
|
1705
|
+
shipping_instructions: Shipping Instructions
|
1706
|
+
shipping_method: Shipping Method
|
1707
|
+
shipping_methods: Shipping Methods
|
1708
|
+
shipping_price_sack: Price sack
|
1709
|
+
shipping_rate:
|
1710
|
+
display_price:
|
1711
|
+
display_price_with_explanations: "%{price} (%{explanations})"
|
1712
|
+
tax_label_separator: ", "
|
1713
|
+
shipping_rate_tax:
|
1714
|
+
label:
|
1715
|
+
sales_tax: "+ %{amount} %{tax_rate_name}"
|
1716
|
+
vat: "incl. %{amount} %{tax_rate_name}"
|
1717
|
+
vat_refund: "excl. %{amount} %{tax_rate_name}"
|
1718
|
+
shipping_total: Shipping total
|
1719
|
+
shop_by_taxonomy: Shop by %{taxonomy}
|
1720
|
+
shopping_cart: Shopping Cart
|
1721
|
+
show: Show
|
1722
|
+
show_active: Show Active
|
1723
|
+
show_deleted: Show Deleted
|
1724
|
+
show_only_complete_orders: Only show complete orders
|
1725
|
+
show_only_considered_risky: Only show risky orders
|
1726
|
+
show_only_open_transfers: Only show open transfers
|
1727
|
+
show_rate_in_label: Show rate in label
|
1728
|
+
sku: SKU
|
1729
|
+
skus: SKUs
|
1730
|
+
slug: Slug
|
1731
|
+
source: Source
|
1732
|
+
source_location: Source location
|
1733
|
+
special_instructions: Special Instructions
|
1734
|
+
split: Split
|
1735
|
+
spree_gateway_error_flash_for_checkout: There was a problem with your payment information. Please check your information and try again.
|
1736
|
+
ssl:
|
1737
|
+
change_protocol: "Please switch to using HTTP (rather than HTTPS) and retry this request."
|
1738
|
+
start: Start
|
1739
|
+
state: State
|
1740
|
+
state_based: State Based
|
1741
|
+
states: States
|
1742
|
+
states_required: States Required
|
1743
|
+
status: Status
|
1744
|
+
stock_location: Stock Location
|
1745
|
+
stock_location_info: Stock location info
|
1746
|
+
stock_locations: Stock Locations
|
1747
|
+
stock_locations_need_a_default_country: You must create a default country before creating a stock location.
|
1748
|
+
stock_management: Stock Management
|
1749
|
+
stock_management_requires_a_stock_location: Please create a stock location in order to manage stock.
|
1750
|
+
stock_movements: Stock Movements
|
1751
|
+
stock_movements_for_stock_location: Stock Movements for %{stock_location_name}
|
1752
|
+
stock_not_below_zero: Stock must not be below zero.
|
1753
|
+
stock_successfully_transferred: Stock was successfully transferred between locations.
|
1754
|
+
stock: Stock
|
1755
|
+
stock_transfer: Stock Transfer
|
1756
|
+
stock_transfer_cannot_be_finalized: Stock transfer cannot be finalized
|
1757
|
+
stock_transfer_complete: Stock Transfer Complete
|
1758
|
+
stock_transfer_must_be_receivable: Stock transfer must be closed and shipped
|
1759
|
+
stock_transfers: Stock Transfers
|
1760
|
+
stop: Stop
|
1761
|
+
store: Store
|
1762
|
+
store_credit:
|
1763
|
+
actions:
|
1764
|
+
invalidate: Invalidate
|
1765
|
+
credit_allocation_memo: "This is a credit from store credit ID %{id}"
|
1766
|
+
currency_mismatch: "Store credit currency does not match order currency"
|
1767
|
+
display_action:
|
1768
|
+
adjustment: Adjustment
|
1769
|
+
allocation: Added
|
1770
|
+
capture: Used
|
1771
|
+
credit: Credit
|
1772
|
+
invalidate: Invalidated
|
1773
|
+
void: Credit
|
1774
|
+
admin:
|
1775
|
+
authorize: "Authorized"
|
1776
|
+
eligible: "Eligibility Verified"
|
1777
|
+
void: "Voided"
|
1778
|
+
errors:
|
1779
|
+
unable_to_fund: "Unable to pay for order using store credits"
|
1780
|
+
cannot_invalidate_uncaptured_authorization: "Cannot invalidate a store credit with an uncaptured authorization"
|
1781
|
+
expiring: Expiring
|
1782
|
+
insufficient_authorized_amount: "Unable to capture more than authorized amount"
|
1783
|
+
insufficient_funds: "Store credit amount remaining is not sufficient"
|
1784
|
+
non_expiring: Non-expiring
|
1785
|
+
select_one_store_credit: "Select store credit to go towards remaining balance"
|
1786
|
+
store_credit: Store Credit
|
1787
|
+
successful_action: "Successful store credit %{action}"
|
1788
|
+
unable_to_credit: "Unable to credit code: %{auth_code}"
|
1789
|
+
unable_to_void: "Unable to void code: %{auth_code}"
|
1790
|
+
unable_to_find: "Could not find store credit"
|
1791
|
+
unable_to_find_for_action: "Could not find store credit for auth code: %{auth_code} for action: %{action}"
|
1792
|
+
user_has_no_store_credits: "User does not have any available store credit"
|
1793
|
+
store_credit_category:
|
1794
|
+
default: Default
|
1795
|
+
street_address: Street Address
|
1796
|
+
street_address_2: Street Address (cont'd)
|
1797
|
+
subtotal: Subtotal
|
1798
|
+
subtract: Subtract
|
1799
|
+
success: Success
|
1800
|
+
successfully_created: ! '%{resource} has been successfully created!'
|
1801
|
+
successfully_refunded: ! '%{resource} has been successfully refunded!'
|
1802
|
+
successfully_removed: ! '%{resource} has been successfully removed!'
|
1803
|
+
successfully_signed_up_for_analytics: Successfully signed up for Spree Analytics
|
1804
|
+
successfully_updated: ! '%{resource} has been successfully updated!'
|
1805
|
+
tax: Tax
|
1806
|
+
tax_included: "Tax (incl.)"
|
1807
|
+
tax_categories: Tax Categories
|
1808
|
+
tax_category: Tax Category
|
1809
|
+
tax_code: Tax Code
|
1810
|
+
tax_rate_amount_explanation: Tax rates are a decimal amount to aid in calculations, (i.e. if the tax rate is 5% then enter 0.05)
|
1811
|
+
tax_rates: Tax Rates
|
1812
|
+
taxon: Category
|
1813
|
+
taxon_edit: Edit Category
|
1814
|
+
taxon_placeholder: Add a Category
|
1815
|
+
taxon_rule:
|
1816
|
+
choose_taxons: Choose categories
|
1817
|
+
label: Order must contain %{select} of these categories
|
1818
|
+
match_all: all
|
1819
|
+
match_any: at least one
|
1820
|
+
taxonomies: Catalog
|
1821
|
+
taxonomy: Categories
|
1822
|
+
taxonomy_edit: Edit Catalog
|
1823
|
+
taxonomy_tree_error: The requested change has not been accepted and the tree has been returned to its previous state, please try again.
|
1824
|
+
taxonomy_tree_instruction: ! '* Right click a child in the tree to access the menu for adding, deleting or sorting a child.'
|
1825
|
+
taxons: categories
|
1826
|
+
test: Test
|
1827
|
+
test_mailer:
|
1828
|
+
test_email:
|
1829
|
+
greeting: Congratulations!
|
1830
|
+
message: If you have received this email, then your email settings are correct.
|
1831
|
+
subject: Test Mail
|
1832
|
+
test_mode: Test Mode
|
1833
|
+
thank_you_for_your_order: Thank you for your business. Please print out a copy of this confirmation page for your records.
|
1834
|
+
there_are_no_items_for_this_order: There are no items for this order. Please add an item to the order to continue.
|
1835
|
+
there_were_problems_with_the_following_fields: There were problems with the following fields
|
1836
|
+
this_order_has_already_received_a_refund: This order has already received a refund
|
1837
|
+
thumbnail: Thumbnail
|
1838
|
+
tiers: Tiers
|
1839
|
+
tiered_flat_rate: Tiered Flat Rate
|
1840
|
+
tiered_percent: Tiered Percent
|
1841
|
+
time: Time
|
1842
|
+
to: to
|
1843
|
+
to_add_variants_you_must_first_define: To add variants, you must first define
|
1844
|
+
total: Total
|
1845
|
+
total_per_item: Total per item
|
1846
|
+
total_pre_tax_refund: Total Pre-Tax Refund
|
1847
|
+
total_price: Total price
|
1848
|
+
total_sales: Total Sales
|
1849
|
+
track_inventory: Track Inventory
|
1850
|
+
tracking: Tracking
|
1851
|
+
tracking_info: Tracking Info
|
1852
|
+
tracking_number: Tracking Number
|
1853
|
+
tracking_url: Tracking URL
|
1854
|
+
tracking_url_placeholder: e.g. http://quickship.com/package?num=:tracking
|
1855
|
+
transaction_id: Transaction ID
|
1856
|
+
transfer_items: Transfer Items
|
1857
|
+
transfer_from_location: Transfer From
|
1858
|
+
transfer_stock: Transfer Stock
|
1859
|
+
transfer_to_location: Transfer To
|
1860
|
+
transfer_number: Transfer Number
|
1861
|
+
tree: Tree
|
1862
|
+
try_changing_search_values: Try changing the search values.
|
1863
|
+
type: Type
|
1864
|
+
type_to_search: Type to search
|
1865
|
+
unable_to_find_all_inventory_units: Unable to find all specified inventory units
|
1866
|
+
unable_to_connect_to_gateway: Unable to connect to gateway.
|
1867
|
+
unable_to_create_reimbursements: Unable to create reimbursements because there are items pending manual intervention.
|
1868
|
+
unable_to_create_stock_transfer: Unable to create the stock transfer
|
1869
|
+
unfinalize_all_adjustments: Unfinalize All Adjustments
|
1870
|
+
under_price: Under %{price}
|
1871
|
+
unlock: Unlock
|
1872
|
+
unrecognized_card_type: Unrecognized card type
|
1873
|
+
unshippable_items: Unshippable Items
|
1874
|
+
update: Update
|
1875
|
+
updated_successfully: Updated successfully
|
1876
|
+
updating: Updating
|
1877
|
+
usage_limit: Usage Limit
|
1878
|
+
use_app_default: Use App Default
|
1879
|
+
use_billing_address: Use Billing Address
|
1880
|
+
use_existing_cc: Use an existing card on file
|
1881
|
+
use_new_cc: Use a new card
|
1882
|
+
use_new_cc_or_payment_method: Use a new card / payment method
|
1883
|
+
user: User
|
1884
|
+
user_rule:
|
1885
|
+
choose_users: Choose users
|
1886
|
+
users: Users
|
1887
|
+
validation:
|
1888
|
+
unpaid_amount_not_zero: "Amount was not fully reimbursed. Still due: %{amount}"
|
1889
|
+
cannot_be_less_than_shipped_units: cannot be less than the number of shipped units.
|
1890
|
+
cannot_destroy_line_item_as_inventory_units_have_shipped: Cannot destroy line item as some inventory units have shipped.
|
1891
|
+
exceeds_available_stock: exceeds available stock. Please ensure line items have a valid quantity.
|
1892
|
+
is_too_large: is too large -- stock on hand cannot cover requested quantity!
|
1893
|
+
must_be_int: must be an integer
|
1894
|
+
must_be_non_negative: must be a non-negative value
|
1895
|
+
value: Value
|
1896
|
+
variant: Variant
|
1897
|
+
variant_placeholder: Choose a variant
|
1898
|
+
variant_properties: Variant Properties
|
1899
|
+
variant_search: Variant Search
|
1900
|
+
variant_search_placeholder: "SKU or Option Value"
|
1901
|
+
variant_to_add: Variant to add
|
1902
|
+
variant_to_be_received: Variant to be received
|
1903
|
+
variants: Variants
|
1904
|
+
version: Version
|
1905
|
+
void: Void
|
1906
|
+
weight: Weight
|
1907
|
+
what_is_a_cvv: What is a (CVV) Credit Card Code?
|
1908
|
+
what_is_this: What's This?
|
1909
|
+
width: Width
|
1910
|
+
year: Year
|
1911
|
+
you_have_no_orders_yet: You have no orders yet
|
1912
|
+
you_cannot_undo_action: You will not be able to undo this action
|
1913
|
+
your_cart_is_empty: Your cart is empty
|
1914
|
+
your_order_is_empty_add_product: Your order is empty, please search for and add a product above
|
1915
|
+
zip: Zip
|
1916
|
+
zipcode: Zip Code
|
1917
|
+
zone: Zone
|
1918
|
+
zones: Zones
|