solidus_i18n 1.0.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (92) hide show
  1. checksums.yaml +7 -0
  2. data/.gitignore +20 -0
  3. data/.hound.yml +25 -0
  4. data/.rubocop.yml +7 -0
  5. data/.travis.yml +12 -0
  6. data/CONTRIBUTING.md +70 -0
  7. data/Gemfile +13 -0
  8. data/Guardfile +11 -0
  9. data/LICENSE.md +26 -0
  10. data/README.md +74 -0
  11. data/Rakefile +85 -0
  12. data/app/assets/javascripts/spree/backend/solidus_i18n.js +2 -0
  13. data/app/assets/javascripts/spree/backend/translations.js.coffee +5 -0
  14. data/app/assets/javascripts/spree/frontend/cart_decorator.js.coffee +5 -0
  15. data/app/assets/javascripts/spree/frontend/locale.js.coffee +3 -0
  16. data/app/assets/javascripts/spree/frontend/solidus_i18n.js +2 -0
  17. data/app/assets/stylesheets/spree/backend/solidus_i18n.css +8 -0
  18. data/app/assets/stylesheets/spree/frontend/solidus_i18n.css +8 -0
  19. data/app/controllers/spree/admin/general_settings_controller_decorator.rb +12 -0
  20. data/app/controllers/spree/api/base_controller_decorator.rb +3 -0
  21. data/app/controllers/spree/base_controller_decorator.rb +3 -0
  22. data/app/controllers/spree/locale_controller_decorator.rb +6 -0
  23. data/app/helpers/solidus_i18n/locale_helper.rb +31 -0
  24. data/app/overrides/spree/admin/general_settings/edit/localization_settings.html.erb.deface +20 -0
  25. data/app/overrides/spree/shared/_main_nav_bar/cart_link.html.erb.deface +9 -0
  26. data/app/overrides/spree/shared/_main_nav_bar/locale_selector.html.erb.deface +16 -0
  27. data/bin/rails +7 -0
  28. data/config/initializers/country_names.rb +51 -0
  29. data/config/initializers/routing_filter.rb +2 -0
  30. data/config/locales/bg.yml +1330 -0
  31. data/config/locales/ca.yml +1334 -0
  32. data/config/locales/cs.yml +1363 -0
  33. data/config/locales/da.yml +1336 -0
  34. data/config/locales/de-CH.yml +1288 -0
  35. data/config/locales/de.yml +1477 -0
  36. data/config/locales/en-AU.yml +1334 -0
  37. data/config/locales/en-GB.yml +1338 -0
  38. data/config/locales/en-IN.yml +1336 -0
  39. data/config/locales/en-NZ.yml +1334 -0
  40. data/config/locales/es-CL.yml +1398 -0
  41. data/config/locales/es-EC.yml +1338 -0
  42. data/config/locales/es-MX.yml +1337 -0
  43. data/config/locales/es.yml +1338 -0
  44. data/config/locales/et.yml +1316 -0
  45. data/config/locales/fa.yml +1163 -0
  46. data/config/locales/fi.yml +1352 -0
  47. data/config/locales/fr.yml +1588 -0
  48. data/config/locales/id.yml +1335 -0
  49. data/config/locales/it.yml +1395 -0
  50. data/config/locales/ja.yml +1336 -0
  51. data/config/locales/ko.yml +1294 -0
  52. data/config/locales/lv.yml +1328 -0
  53. data/config/locales/nb.yml +1339 -0
  54. data/config/locales/nl.yml +1338 -0
  55. data/config/locales/pl.yml +1345 -0
  56. data/config/locales/pt-BR.yml +1364 -0
  57. data/config/locales/pt.yml +1290 -0
  58. data/config/locales/ro.yml +1335 -0
  59. data/config/locales/ru.yml +1400 -0
  60. data/config/locales/sk.yml +1345 -0
  61. data/config/locales/sl-SI.yml +1288 -0
  62. data/config/locales/sv.yml +1372 -0
  63. data/config/locales/th.yml +1330 -0
  64. data/config/locales/tr.yml +1291 -0
  65. data/config/locales/uk.yml +1447 -0
  66. data/config/locales/vi.yml +1290 -0
  67. data/config/locales/zh-CN.yml +1345 -0
  68. data/config/locales/zh-TW.yml +1293 -0
  69. data/config/routes.rb +6 -0
  70. data/db/migrate/20150609154031_remove_translations_from_spree_tables.rb +65 -0
  71. data/lib/generators/solidus_i18n/install/install_generator.rb +27 -0
  72. data/lib/solidus_i18n/configuration.rb +9 -0
  73. data/lib/solidus_i18n/controller_locale_helper.rb +29 -0
  74. data/lib/solidus_i18n/engine.rb +45 -0
  75. data/lib/solidus_i18n/locale.rb +13 -0
  76. data/lib/solidus_i18n/utils.rb +56 -0
  77. data/lib/solidus_i18n/version.rb +18 -0
  78. data/lib/solidus_i18n.rb +8 -0
  79. data/lib/tasks/solidus_i18n/upgrade.rake +43 -0
  80. data/solidus_i18n.gemspec +46 -0
  81. data/spec/controllers/locales_controller_spec.rb +24 -0
  82. data/spec/features/admin/translations_spec.rb +33 -0
  83. data/spec/features/russian_errors_translation_spec.rb +17 -0
  84. data/spec/features/translation_spec.rb +31 -0
  85. data/spec/features/translations_spec.rb +28 -0
  86. data/spec/spec_helper.rb +31 -0
  87. data/spec/support/capybara.rb +11 -0
  88. data/spec/support/database_cleaner.rb +23 -0
  89. data/spec/support/factory_girl.rb +5 -0
  90. data/spec/support/i18n.rb +5 -0
  91. data/spec/support/spree.rb +12 -0
  92. metadata +411 -0
@@ -0,0 +1,1336 @@
1
+ en-IN:
2
+ activerecord:
3
+ attributes:
4
+ spree/address:
5
+ address1: Address
6
+ address2: Address (contd.)
7
+ city: City
8
+ country: Country
9
+ firstname: First Name
10
+ lastname: Last Name
11
+ phone: Phone
12
+ state: State
13
+ zipcode: Zip Code
14
+ spree/calculator/tiered_flat_rate:
15
+ preferred_base_amount:
16
+ preferred_tiers:
17
+ spree/calculator/tiered_percent:
18
+ preferred_base_percent:
19
+ preferred_tiers:
20
+ spree/country:
21
+ iso: ISO
22
+ iso3: ISO3
23
+ iso_name: ISO Name
24
+ name: Name
25
+ numcode: ISO Code
26
+ spree/credit_card:
27
+ base:
28
+ cc_type: Type
29
+ month: Month
30
+ name:
31
+ number: Number
32
+ verification_value: Verification Value
33
+ year: Year
34
+ spree/inventory_unit:
35
+ state: State
36
+ spree/line_item:
37
+ price: Price
38
+ quantity: Quantity
39
+ spree/option_type:
40
+ name: Name
41
+ presentation: Presentation
42
+ spree/order:
43
+ checkout_complete: Checkout Complete
44
+ completed_at: Completed At
45
+ considered_risky:
46
+ coupon_code:
47
+ created_at: Order Date
48
+ email: Customer E-Mail
49
+ ip_address: IP Address
50
+ item_total: Item Total
51
+ number: Number
52
+ payment_state: Payment State
53
+ shipment_state: Shipment State
54
+ special_instructions: Special Instructions
55
+ state: State
56
+ total: Total
57
+ spree/order/bill_address:
58
+ address1: Billing address street
59
+ city: Billing address city
60
+ firstname: Billing address first name
61
+ lastname: Billing address last name
62
+ phone: Billing address phone
63
+ state: Billing address state
64
+ zipcode: Billing address zipcode
65
+ spree/order/ship_address:
66
+ address1: Shipping address street
67
+ city: Shipping address city
68
+ firstname: Shipping address first name
69
+ lastname: Shipping address last name
70
+ phone: Shipping address phone
71
+ state: Shipping address state
72
+ zipcode: Shipping address zipcode
73
+ spree/payment:
74
+ amount: Amount
75
+ spree/payment_method:
76
+ name: Name
77
+ spree/product:
78
+ available_on: Available On
79
+ cost_currency: Cost Currency
80
+ cost_price: Cost Price
81
+ description: Description
82
+ master_price: Master Price
83
+ name: Name
84
+ on_hand: On Hand
85
+ shipping_category: Shipping Category
86
+ tax_category: Tax Category
87
+ spree/promotion:
88
+ advertise: Advertise
89
+ code: Code
90
+ description: Description
91
+ event_name: Event Name
92
+ expires_at: Expires At
93
+ name: Name
94
+ path: Path
95
+ starts_at: Starts At
96
+ usage_limit: Usage Limit
97
+ spree/promotion_category:
98
+ name:
99
+ spree/property:
100
+ name: Name
101
+ presentation: Presentation
102
+ spree/prototype:
103
+ name: Name
104
+ spree/return_authorization:
105
+ amount: Amount
106
+ spree/role:
107
+ name: Name
108
+ spree/state:
109
+ abbr: Abbreviation
110
+ name: Name
111
+ spree/state_change:
112
+ state_changes:
113
+ state_from:
114
+ state_to:
115
+ timestamp:
116
+ type:
117
+ updated:
118
+ user:
119
+ spree/store:
120
+ mail_from_address:
121
+ meta_description:
122
+ meta_keywords:
123
+ name:
124
+ seo_title:
125
+ url:
126
+ spree/tax_category:
127
+ description: Description
128
+ name: Name
129
+ spree/tax_rate:
130
+ amount: Rate
131
+ included_in_price: Included in Price
132
+ show_rate_in_label: Show rate in label
133
+ spree/taxon:
134
+ name: Name
135
+ permalink: Permalink
136
+ position: Position
137
+ spree/taxonomy:
138
+ name: Name
139
+ spree/user:
140
+ email: Email
141
+ password: Password
142
+ password_confirmation: Password Confirmation
143
+ spree/variant:
144
+ cost_currency: Cost Currency
145
+ cost_price: Cost Price
146
+ depth: Depth
147
+ height: Height
148
+ price: Price
149
+ sku: SKU
150
+ weight: Weight
151
+ width: Width
152
+ spree/zone:
153
+ description: Description
154
+ name: Name
155
+ errors:
156
+ models:
157
+ spree/calculator/tiered_flat_rate:
158
+ attributes:
159
+ base:
160
+ keys_should_be_positive_number:
161
+ preferred_tiers:
162
+ should_be_hash:
163
+ spree/calculator/tiered_percent:
164
+ attributes:
165
+ base:
166
+ keys_should_be_positive_number:
167
+ values_should_be_percent:
168
+ preferred_tiers:
169
+ should_be_hash:
170
+ spree/classification:
171
+ attributes:
172
+ taxon_id:
173
+ already_linked:
174
+ spree/credit_card:
175
+ attributes:
176
+ base:
177
+ card_expired:
178
+ expiry_invalid:
179
+ spree/line_item:
180
+ attributes:
181
+ currency:
182
+ must_match_order_currency:
183
+ spree/refund:
184
+ attributes:
185
+ amount:
186
+ greater_than_allowed:
187
+ spree/reimbursement:
188
+ attributes:
189
+ base:
190
+ return_items_order_id_does_not_match:
191
+ spree/return_item:
192
+ attributes:
193
+ inventory_unit:
194
+ other_completed_return_item_exists:
195
+ reimbursement:
196
+ cannot_be_associated_unless_accepted:
197
+ spree/store:
198
+ attributes:
199
+ base:
200
+ cannot_destroy_default_store:
201
+ models:
202
+ spree/address:
203
+ one: Address
204
+ other: Addresses
205
+ spree/country:
206
+ one: Country
207
+ other: Countries
208
+ spree/credit_card:
209
+ one: Credit Card
210
+ other: Credit Cards
211
+ spree/customer_return:
212
+ spree/inventory_unit:
213
+ one: Inventory Unit
214
+ other: Inventory Units
215
+ spree/line_item:
216
+ one: Line Item
217
+ other: Line Items
218
+ spree/option_type:
219
+ spree/option_value:
220
+ spree/order:
221
+ one: Order
222
+ other: Orders
223
+ spree/payment:
224
+ one: Payment
225
+ other: Payments
226
+ spree/payment_method:
227
+ spree/product:
228
+ one: Product
229
+ other: Products
230
+ spree/promotion:
231
+ spree/promotion_category:
232
+ spree/property:
233
+ one: Property
234
+ other: Properties
235
+ spree/prototype:
236
+ one: Prototype
237
+ other: Prototypes
238
+ spree/refund_reason:
239
+ spree/reimbursement:
240
+ spree/reimbursement_type:
241
+ spree/return_authorization:
242
+ one: Return Authorization
243
+ other: Return Authorizations
244
+ spree/return_authorization_reason:
245
+ spree/role:
246
+ one: Roles
247
+ other: Roles
248
+ spree/shipment:
249
+ one: Shipment
250
+ other: Shipments
251
+ spree/shipping_category:
252
+ one: Shipping Category
253
+ other: Shipping Categories
254
+ spree/shipping_method:
255
+ spree/state:
256
+ one: State
257
+ other: States
258
+ spree/state_change:
259
+ spree/stock_location:
260
+ spree/stock_movement:
261
+ spree/stock_transfer:
262
+ spree/tax_category:
263
+ one: Tax Category
264
+ other: Tax Categories
265
+ spree/tax_rate:
266
+ one: Tax Rate
267
+ other: Tax Rates
268
+ spree/taxon:
269
+ one: Taxon
270
+ other: Taxons
271
+ spree/taxonomy:
272
+ one: Taxonomy
273
+ other: Taxonomies
274
+ spree/tracker:
275
+ spree/user:
276
+ one: User
277
+ other: Users
278
+ spree/variant:
279
+ one: Variant
280
+ other: Variants
281
+ spree/zone:
282
+ one: Zone
283
+ other: Zones
284
+ devise:
285
+ confirmations:
286
+ confirmed: Your account was successfully confirmed. You are now signed in.
287
+ send_instructions: You will receive an email with instructions about how to confirm your account in a few minutes.
288
+ failure:
289
+ inactive: Your account has not been activated yet.
290
+ invalid: Invalid email or password.
291
+ invalid_token: Invalid authentication token.
292
+ locked: Your account is locked.
293
+ timeout: Your session expired, please sign in again to continue.
294
+ unauthenticated: You need to sign in or sign up before continuing.
295
+ unconfirmed: You have to confirm your account before continuing.
296
+ mailer:
297
+ confirmation_instructions:
298
+ subject: Confirmation instructions
299
+ reset_password_instructions:
300
+ subject: Reset password instructions
301
+ unlock_instructions:
302
+ subject: Unlock Instructions
303
+ oauth_callbacks:
304
+ failure: Could not authorize you from %{kind} because %{reason}.
305
+ success: Successfully authorized from %{kind} account
306
+ unlocks:
307
+ send_instructions: You will receive an email with instructions about how to unlock your account in a few minutes.
308
+ unlocked: Your account was successfully unlocked. You are now signed in.
309
+ user_passwords:
310
+ user:
311
+ cannot_be_blank: Your password cannot be blank.
312
+ send_instructions: You will receive an email with instructions about how to reset your password in a few minutes.
313
+ updated: Your password was changed successfully. You are now signed in.
314
+ user_registrations:
315
+ destroyed: Bye! Your account was successfully cancelled. We hope to see you again soon.
316
+ inactive_signed_up: You have signed up successfully. However, we could not sign you in because your account is %{reason}.
317
+ signed_up: Welcome! You have signed up successfully.
318
+ updated: You updated your account successfully.
319
+ user_sessions:
320
+ signed_in: Signed in successfully.
321
+ signed_out: Signed out successfully.
322
+ errors:
323
+ messages:
324
+ already_confirmed: was already confirmed
325
+ not_found: not found
326
+ not_locked: was not locked
327
+ not_saved:
328
+ one: '1 error prohibited this %{resource} from being saved:'
329
+ other: "%{count} errors prohibited this %{resource} from being saved:"
330
+ spree:
331
+ abbreviation: Abbreviation
332
+ accept:
333
+ acceptance_errors:
334
+ acceptance_status:
335
+ accepted:
336
+ account: Account
337
+ account_updated: Account updated!
338
+ action: Action
339
+ actions:
340
+ cancel: Cancel
341
+ continue: Continue
342
+ create: Create
343
+ destroy: Destroy
344
+ edit: Edit
345
+ list: List
346
+ listing: Listing
347
+ new: New
348
+ refund:
349
+ save: Save
350
+ update: Update
351
+ activate: Activate
352
+ active: Active
353
+ add: Add
354
+ add_action_of_type: Add action of type
355
+ add_country: Add Country
356
+ add_coupon_code:
357
+ add_new_header: Add New Header
358
+ add_new_style: Add New Style
359
+ add_one: Add One
360
+ add_option_value: Add Option Value
361
+ add_product: Add Product
362
+ add_product_properties: Add Product Properties
363
+ add_rule_of_type: Add rule of type
364
+ add_state: Add State
365
+ add_stock: Add Stock
366
+ add_stock_management: Add Stock Management
367
+ add_to_cart: Add To Basket
368
+ add_variant: Add Variant
369
+ additional_item: Additional Item Cost
370
+ address1: Address
371
+ address2: Address (contd.)
372
+ adjustable:
373
+ adjustment: Adjustment
374
+ adjustment_amount: Amount
375
+ adjustment_successfully_closed: Adjustment has been successfully closed!
376
+ adjustment_successfully_opened: Adjustment has been successfully opened!
377
+ adjustment_total: Adjustment Total
378
+ adjustments: Adjustments
379
+ admin:
380
+ tab:
381
+ configuration:
382
+ option_types:
383
+ orders:
384
+ overview:
385
+ products:
386
+ promotions:
387
+ promotion_categories:
388
+ properties:
389
+ prototypes:
390
+ reports:
391
+ taxonomies:
392
+ taxons:
393
+ users:
394
+ user:
395
+ account:
396
+ addresses:
397
+ items:
398
+ items_purchased:
399
+ order_history:
400
+ order_num:
401
+ orders:
402
+ user_information:
403
+ administration: Administration
404
+ advertise:
405
+ agree_to_privacy_policy: Agree to Privacy Policy
406
+ agree_to_terms_of_service: Agree to Terms of Service
407
+ all: All
408
+ all_adjustments_closed: All adjustments successfully closed!
409
+ all_adjustments_opened: All adjustments successfully opened!
410
+ all_departments: All departments
411
+ all_items_have_been_returned:
412
+ allow_ssl_in_development_and_test: Allow SSL to be used when in development and test modes
413
+ allow_ssl_in_production: Allow SSL to be used in production mode
414
+ allow_ssl_in_staging: Allow SSL to be used in staging mode
415
+ already_signed_up_for_analytics: You have already signed up for Spree Analytics
416
+ alt_text: Alternative Text
417
+ alternative_phone: Alternative Phone
418
+ amount: Amount
419
+ analytics_desc_header_1: Spree Analytics
420
+ analytics_desc_header_2: Live analytics integrated into your Spree dashboard
421
+ analytics_desc_list_1: Get live sales information as it happens
422
+ analytics_desc_list_2: Requires only a free Spree account to activate
423
+ analytics_desc_list_3: Absolutely no code to install
424
+ analytics_desc_list_4: It's completely free!
425
+ analytics_trackers: Analytics Trackers
426
+ and: and
427
+ approve:
428
+ approved_at:
429
+ approver:
430
+ are_you_sure: Are you sure
431
+ are_you_sure_delete: Are you sure you want to delete this record?
432
+ associated_adjustment_closed: The associated adjustment is closed, and will not be recalculated. Do you want to open it?
433
+ at_symbol: '@'
434
+ authorization_failure: Authorization Failure
435
+ authorized:
436
+ auto_capture:
437
+ available_on: Available On
438
+ average_order_value:
439
+ avs_response:
440
+ back: Back
441
+ back_end: Back End
442
+ back_to_payment:
443
+ back_to_resource_list:
444
+ back_to_rma_reason_list:
445
+ back_to_store: Go Back To Store
446
+ back_to_users_list: Back To Users List
447
+ backorderable: Backorderable
448
+ backorderable_default:
449
+ backordered:
450
+ backorders_allowed:
451
+ balance_due: Balance Due
452
+ base_amount:
453
+ base_percent:
454
+ bill_address: Bill Address
455
+ billing: Billing
456
+ billing_address: Billing Address
457
+ both: Both
458
+ calculated_reimbursements:
459
+ calculator: Calculator
460
+ calculator_settings_warning: If you are changing the calculator type, you must save first before you can edit the calculator settings
461
+ cancel: cancel
462
+ canceled_at:
463
+ canceler:
464
+ cannot_create_customer_returns:
465
+ cannot_create_payment_without_payment_methods: You cannot create a payment for an order without any payment methods defined.
466
+ cannot_create_returns: Cannot create returns as this order has not shipped yet.
467
+ cannot_perform_operation: Cannot perform requested operation
468
+ cannot_set_shipping_method_without_address: Cannot set shipping method until customer details are provided
469
+ capture: capture
470
+ capture_events:
471
+ card_code: Card Code
472
+ card_number: Card Number
473
+ card_type:
474
+ card_type_is: Card type is
475
+ cart: Basket
476
+ cart_subtotal:
477
+ categories: Categories
478
+ category: Category
479
+ charged:
480
+ check_for_spree_alerts: Check for Spree alerts
481
+ checkout: Checkout
482
+ choose_a_customer: Choose a customer
483
+ choose_a_taxon_to_sort_products_for:
484
+ choose_currency: Choose Currency
485
+ choose_dashboard_locale: Choose Dashboard Locale
486
+ choose_location:
487
+ city: Town / City
488
+ clear_cache:
489
+ clear_cache_ok:
490
+ clear_cache_warning:
491
+ click_and_drag_on_the_products_to_sort_them:
492
+ clone: Clone
493
+ close: Close
494
+ close_all_adjustments: Close All Adjustments
495
+ code: Code
496
+ company: Company
497
+ complete: complete
498
+ configuration: Configuration
499
+ configurations: Configurations
500
+ confirm: Confirm
501
+ confirm_delete: Confirm Deletion
502
+ confirm_password: Password Confirmation
503
+ continue: Continue
504
+ continue_shopping: Continue shopping
505
+ cost_currency: Cost Currency
506
+ cost_price: Cost Price
507
+ could_not_connect_to_jirafe: Could not connect to Jirafe to sync data. This will be automatically retried later.
508
+ could_not_create_customer_return:
509
+ could_not_create_stock_movement: There was a problem saving this stock movement. Please try again.
510
+ count_on_hand: Count On Hand
511
+ countries: Countries
512
+ country: Country
513
+ country_based: Country Based
514
+ country_name: Name
515
+ country_names:
516
+ CA:
517
+ FRA:
518
+ ITA:
519
+ US:
520
+ coupon: Coupon
521
+ coupon_code: Coupon code
522
+ coupon_code_already_applied: The coupon code has already been applied to this order
523
+ coupon_code_applied: The coupon code was successfully applied to your order.
524
+ coupon_code_better_exists: The previously applied coupon code results in a better deal
525
+ coupon_code_expired: The coupon code is expired
526
+ coupon_code_max_usage: Coupon code usage limit exceeded
527
+ coupon_code_not_eligible: This coupon code is not eligible for this order
528
+ coupon_code_not_found: The coupon code you entered doesn't exist. Please try again.
529
+ coupon_code_unknown_error:
530
+ create: Create
531
+ create_a_new_account: Create a new account
532
+ create_new_order:
533
+ create_reimbursement:
534
+ created_at: Created At
535
+ credit: Credit
536
+ credit_card: Credit Card
537
+ credit_cards: Credit Cards
538
+ credit_owed: Credit Owed
539
+ credits:
540
+ currency: Currency
541
+ currency_decimal_mark: Currency decimal mark
542
+ currency_settings: Currency Settings
543
+ currency_symbol_position: Put currency symbol before or after dollar amount?
544
+ currency_thousands_separator: Currency thousands separator
545
+ current: Current
546
+ current_promotion_usage: 'Current Usage: %{count}'
547
+ customer: Customer
548
+ customer_details: Customer Details
549
+ customer_details_updated: The customer's details have been updated.
550
+ customer_return:
551
+ customer_returns:
552
+ customer_search: Customer Search
553
+ cut: Cut
554
+ cvv_response:
555
+ dash:
556
+ jirafe:
557
+ app_id: App ID
558
+ app_token: App Token
559
+ currently_unavailable:
560
+ explanation: The fields below may already be populated if you chose to register with Jirafe from the admin dashboard.
561
+ header: Jirafe Analytics Settings
562
+ site_id: Site ID
563
+ token: Token
564
+ jirafe_settings_updated: Jirafe Settings have been updated.
565
+ date: Date
566
+ date_completed: Date Completed
567
+ date_picker:
568
+ first_day:
569
+ format: "%Y/%m/%d"
570
+ js_format: yy/mm/dd
571
+ date_range: Date Range
572
+ default: Default
573
+ default_refund_amount:
574
+ default_tax: Default Tax
575
+ default_tax_zone: Default Tax Zone
576
+ delete: Delete
577
+ deleted_variants_present:
578
+ delivery: Delivery
579
+ depth: Depth
580
+ description: Description
581
+ destination: Destination
582
+ destroy: Destroy
583
+ details:
584
+ discount_amount: Discount Amount
585
+ dismiss_banner: No. Thanks! I'm not interested, do not display this message again
586
+ display: Display
587
+ display_currency: Display currency
588
+ doesnt_track_inventory:
589
+ edit: Edit
590
+ editing_resource:
591
+ editing_rma_reason:
592
+ editing_user: Editing User
593
+ eligibility_errors:
594
+ messages:
595
+ has_excluded_product:
596
+ item_total_less_than:
597
+ item_total_less_than_or_equal:
598
+ item_total_more_than:
599
+ item_total_more_than_or_equal:
600
+ limit_once_per_user:
601
+ missing_product:
602
+ missing_taxon:
603
+ no_applicable_products:
604
+ no_matching_taxons:
605
+ no_user_or_email_specified:
606
+ no_user_specified:
607
+ not_first_order:
608
+ email: Email
609
+ empty: Empty
610
+ empty_cart: Empty Basket
611
+ enable_mail_delivery: Enable Mail Delivery
612
+ end: End
613
+ ending_in: Ending in
614
+ environment: Environment
615
+ error: error
616
+ errors:
617
+ messages:
618
+ could_not_create_taxon: Could not create taxon
619
+ no_payment_methods_available: No payment methods are configured for this environment
620
+ no_shipping_methods_available: No shipping methods available for selected location, please change your address and try again.
621
+ errors_prohibited_this_record_from_being_saved:
622
+ one: 1 error prohibited this record from being saved
623
+ other: "%{count} errors prohibited this record from being saved"
624
+ event: Event
625
+ events:
626
+ spree:
627
+ cart:
628
+ add: Add to cart
629
+ checkout:
630
+ coupon_code_added: Coupon code added
631
+ content:
632
+ visited: Visit static content page
633
+ order:
634
+ contents_changed: Order contents changed
635
+ page_view: Static page viewed
636
+ user:
637
+ signup: User signup
638
+ exceptions:
639
+ 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.
640
+ exchange_for:
641
+ excl:
642
+ existing_shipments:
643
+ expedited_exchanges_warning:
644
+ expiration: Expiration
645
+ extension: Extension
646
+ failed_payment_attempts:
647
+ filename: Filename
648
+ fill_in_customer_info: Please fill in customer info
649
+ filter_results: Filter Results
650
+ finalize: Finalize
651
+ finalized:
652
+ find_a_taxon:
653
+ first_item: First Item Cost
654
+ first_name: First Name
655
+ first_name_begins_with: First Name Begins With
656
+ flat_percent: Flat Percent
657
+ flat_rate_per_order: Flat Rate (per order)
658
+ flexible_rate: Flexible Rate
659
+ forgot_password: Forgot Password
660
+ free_shipping: Free Shipping
661
+ free_shipping_amount:
662
+ front_end: Front End
663
+ gateway: Gateway
664
+ gateway_config_unavailable: Gateway unavailable for environment
665
+ gateway_error: Gateway Error
666
+ general: General
667
+ general_settings: General Settings
668
+ google_analytics: Google Analytics
669
+ google_analytics_id: Analytics ID
670
+ guest_checkout: Guest Checkout
671
+ guest_user_account: Checkout as a Guest
672
+ has_no_shipped_units: has no shipped units
673
+ height: Height
674
+ hide_cents: Hide cents
675
+ home: Home
676
+ i18n:
677
+ available_locales:
678
+ language:
679
+ localization_settings:
680
+ this_file_language: English (UK)
681
+ icon: Icon
682
+ identifier:
683
+ image: Image
684
+ images: Images
685
+ implement_eligible_for_return:
686
+ implement_requires_manual_intervention:
687
+ inactive:
688
+ incl:
689
+ included_in_price: Included in Price
690
+ included_price_validation: cannot be selected unless you have set a Default Tax Zone
691
+ incomplete:
692
+ info_number_of_skus_not_shown:
693
+ info_product_has_multiple_skus:
694
+ instructions_to_reset_password: 'Fill out the form below and instructions to reset your password will be emailed to you:'
695
+ insufficient_stock: Insufficient stock available, only %{on_hand} remaining
696
+ insufficient_stock_lines_present:
697
+ intercept_email_address: Intercept Email Address
698
+ intercept_email_instructions: Override email recipient and replace with this address.
699
+ internal_name:
700
+ invalid_credit_card:
701
+ invalid_exchange_variant:
702
+ invalid_payment_provider: Invalid payment provider.
703
+ invalid_promotion_action: Invalid promotion action.
704
+ invalid_promotion_rule: Invalid promotion rule.
705
+ inventory: Inventory
706
+ inventory_adjustment: Inventory Adjustment
707
+ inventory_error_flash_for_insufficient_quantity: An item in your cart has become unavailable.
708
+ inventory_state:
709
+ is_not_available_to_shipment_address: is not available to shipment address
710
+ iso_name: ISO Name
711
+ item: Item
712
+ item_description: Item Description
713
+ item_total: Item Total
714
+ item_total_rule:
715
+ operators:
716
+ gt: greater than
717
+ gte: greater than or equal to
718
+ lt:
719
+ lte:
720
+ items_cannot_be_shipped:
721
+ items_in_rmas:
722
+ items_reimbursed:
723
+ items_to_be_reimbursed:
724
+ jirafe: Jirafe
725
+ landing_page_rule:
726
+ path: Path
727
+ last_name: Last Name
728
+ last_name_begins_with: Last Name Begins With
729
+ learn_more: Learn More
730
+ lifetime_stats:
731
+ line_item_adjustments:
732
+ list: List
733
+ loading: Loading
734
+ locale_changed: Locale Changed
735
+ location: Location
736
+ lock: Lock
737
+ log_entries:
738
+ logged_in_as: Logged in as
739
+ logged_in_succesfully: Logged in successfully
740
+ logged_out: You have been logged out.
741
+ login: Login
742
+ login_as_existing: Log In as Existing Customer
743
+ login_failed: Login authentication failed.
744
+ login_name: Login
745
+ logout: Logout
746
+ logs:
747
+ look_for_similar_items: Look for similar items
748
+ make_refund: Make refund
749
+ make_sure_the_above_reimbursement_amount_is_correct:
750
+ manage_promotion_categories:
751
+ manage_variants:
752
+ manual_intervention_required:
753
+ master_price: Master Price
754
+ match_choices:
755
+ all: All
756
+ none: None
757
+ max_items: Max Items
758
+ member_since:
759
+ memo:
760
+ meta_description: Meta Description
761
+ meta_keywords: Meta Keywords
762
+ meta_title:
763
+ metadata: Metadata
764
+ minimal_amount: Minimal Amount
765
+ month: Month
766
+ more: More
767
+ move_stock_between_locations: Move Stock Between Locations
768
+ my_account: My Account
769
+ my_orders: My Orders
770
+ name: Name
771
+ name_on_card:
772
+ name_or_sku: Name or SKU
773
+ new: New
774
+ new_adjustment: New Adjustment
775
+ new_country:
776
+ new_customer: New Customer
777
+ new_customer_return:
778
+ new_image: New Image
779
+ new_option_type: New Option Type
780
+ new_order: New Order
781
+ new_order_completed: New Order Completed
782
+ new_payment: New Payment
783
+ new_payment_method: New Payment Method
784
+ new_product: New Product
785
+ new_promotion: New Promotion
786
+ new_promotion_category:
787
+ new_property: New Property
788
+ new_prototype: New Prototype
789
+ new_refund:
790
+ new_refund_reason:
791
+ new_return_authorization: New Return Authorization
792
+ new_rma_reason:
793
+ new_shipment_at_location:
794
+ new_shipping_category: New Shipping Category
795
+ new_shipping_method: New Shipping Method
796
+ new_state: New State
797
+ new_stock_location: New Stock Location
798
+ new_stock_movement: New Stock Movement
799
+ new_stock_transfer: New Stock Transfer
800
+ new_tax_category: New Tax Category
801
+ new_tax_rate: New Tax Rate
802
+ new_taxon: New Taxon
803
+ new_taxonomy: New Taxonomy
804
+ new_tracker: New Tracker
805
+ new_user: New User
806
+ new_variant: New Variant
807
+ new_zone: New Zone
808
+ next: Next
809
+ no_actions_added: No actions added
810
+ no_payment_found:
811
+ no_pending_payments:
812
+ no_products_found: No products found
813
+ no_resource_found:
814
+ no_results: No results
815
+ no_returns_found:
816
+ no_rules_added: No rules added
817
+ no_shipping_method_selected:
818
+ no_state_changes:
819
+ no_tracking_present: No tracking details provided.
820
+ none: None
821
+ none_selected:
822
+ normal_amount: Normal Amount
823
+ not: not
824
+ not_available: N/A
825
+ not_enough_stock: There is not enough inventory at the source location to complete this transfer.
826
+ not_found: "%{resource} is not found"
827
+ note:
828
+ notice_messages:
829
+ product_cloned: Product has been cloned
830
+ product_deleted: Product has been deleted
831
+ product_not_cloned: Product could not be cloned
832
+ product_not_deleted: Product could not be deleted
833
+ variant_deleted: Variant has been deleted
834
+ variant_not_deleted: Variant could not be deleted
835
+ num_orders:
836
+ on_hand: On Hand
837
+ open: Open
838
+ open_all_adjustments: Open All Adjustments
839
+ option_type: Option Type
840
+ option_type_placeholder:
841
+ option_types: Option Types
842
+ option_value: Option Value
843
+ option_values: Option Values
844
+ optional: Optional
845
+ options: Options
846
+ or: or
847
+ or_over_price: "%{price} or over"
848
+ order: Order
849
+ order_adjustments: Order adjustments
850
+ order_already_updated:
851
+ order_approved:
852
+ order_canceled:
853
+ order_details: Order Details
854
+ order_email_resent: Order Email Resent
855
+ order_information: Order Information
856
+ order_mailer:
857
+ cancel_email:
858
+ dear_customer: Dear Customer,\n
859
+ instructions: Your order has been CANCELED. Please retain this cancellation information for your records.
860
+ order_summary_canceled: Order Summary [CANCELED]
861
+ subject: Cancellation of Order
862
+ subtotal:
863
+ total:
864
+ confirm_email:
865
+ dear_customer: Dear Customer,\n
866
+ instructions: Please review and retain the following order information for your records.
867
+ order_summary: Order Summary
868
+ subject: Order Confirmation
869
+ subtotal:
870
+ thanks: Thank you for your business.
871
+ total:
872
+ order_not_found: We couldn't find your order. Please try that action again.
873
+ order_number:
874
+ order_processed_successfully: Your order has been processed successfully
875
+ order_resumed:
876
+ order_state:
877
+ address: address
878
+ awaiting_return: awaiting return
879
+ canceled: canceled
880
+ cart: cart
881
+ complete: complete
882
+ confirm: confirm
883
+ considered_risky:
884
+ delivery: delivery
885
+ payment: payment
886
+ resumed: resumed
887
+ returned: returned
888
+ order_summary: Order Summary
889
+ order_sure_want_to: Are you sure you want to %{event} this order?
890
+ order_total: Order Total
891
+ order_updated: Order Updated
892
+ orders: Orders
893
+ other_items_in_other:
894
+ out_of_stock: Out of Stock
895
+ overview: Overview
896
+ package_from: package from
897
+ pagination:
898
+ next_page: next page »
899
+ previous_page: "« previous page"
900
+ truncate: "…"
901
+ password: Password
902
+ paste: Paste
903
+ path: Path
904
+ pay: pay
905
+ payment: Payment
906
+ payment_could_not_be_created:
907
+ payment_identifier:
908
+ payment_information: Payment Information
909
+ payment_method: Payment Method
910
+ payment_method_not_supported:
911
+ payment_methods: Payment Methods
912
+ payment_processing_failed: Payment could not be processed, please check the details you entered
913
+ payment_processor_choose_banner_text: If you need help choosing a payment processor, please visit
914
+ payment_processor_choose_link: our payments page
915
+ payment_state: Payment State
916
+ payment_states:
917
+ balance_due: balance due
918
+ checkout: checkout
919
+ completed: completed
920
+ credit_owed: credit owed
921
+ failed: failed
922
+ paid: paid
923
+ pending: pending
924
+ processing: processing
925
+ void: void
926
+ payment_updated: Payment Updated
927
+ payments: Payments
928
+ pending:
929
+ percent: Percent
930
+ percent_per_item: Percent Per Item
931
+ permalink: Permalink
932
+ phone: Phone
933
+ place_order: Place Order
934
+ please_define_payment_methods: Please define some payment methods first.
935
+ populate_get_error: Something went wrong. Please try adding the item again.
936
+ powered_by: Powered by
937
+ pre_tax_amount:
938
+ pre_tax_refund_amount:
939
+ pre_tax_total:
940
+ preferred_reimbursement_type:
941
+ presentation: Presentation
942
+ previous: Previous
943
+ previous_state_missing:
944
+ price: Price
945
+ price_range: Price Range
946
+ price_sack: Price Sack
947
+ process: Process
948
+ product: Product
949
+ product_details: Product Details
950
+ product_has_no_description: This product has no description
951
+ product_not_available_in_this_currency: This product is not available in the selected currency.
952
+ product_properties: Product Properties
953
+ product_rule:
954
+ choose_products: Choose products
955
+ label:
956
+ match_all: all
957
+ match_any: at least one
958
+ match_none:
959
+ product_source:
960
+ group: From product group
961
+ manual: Manually choose
962
+ products: Products
963
+ promotion: Promotion
964
+ promotion_action: Promotion Action
965
+ promotion_action_types:
966
+ create_adjustment:
967
+ description: Creates a promotion credit adjustment on the order
968
+ name: Create adjustment
969
+ create_item_adjustments:
970
+ description:
971
+ name:
972
+ create_line_items:
973
+ description: Populates the cart with the specified quantity of variant
974
+ name: Create line items
975
+ free_shipping:
976
+ description:
977
+ name:
978
+ promotion_actions: Actions
979
+ promotion_form:
980
+ match_policies:
981
+ all: Match any of these rules
982
+ any: Match all of these rules
983
+ promotion_rule: Promotion Rule
984
+ promotion_rule_types:
985
+ first_order:
986
+ description: Must be the customer's first order
987
+ name: First order
988
+ item_total:
989
+ description: Order total meets these criteria
990
+ name: Item total
991
+ landing_page:
992
+ description: Customer must have visited the specified page
993
+ name: Landing Page
994
+ one_use_per_user:
995
+ description:
996
+ name:
997
+ option_value:
998
+ description:
999
+ name:
1000
+ product:
1001
+ description: Order includes specified product(s)
1002
+ name: Product(s)
1003
+ taxon:
1004
+ description:
1005
+ name:
1006
+ user:
1007
+ description: Available only to the specified users
1008
+ name: User
1009
+ user_logged_in:
1010
+ description: Available only to logged in users
1011
+ name: User Logged In
1012
+ promotion_uses:
1013
+ promotionable:
1014
+ promotions: Promotions
1015
+ propagate_all_variants:
1016
+ properties: Properties
1017
+ property: Property
1018
+ prototype: Prototype
1019
+ prototypes: Prototypes
1020
+ provider: Provider
1021
+ provider_settings_warning: If you are changing the provider type, you must save first before you can edit the provider settings
1022
+ qty: Qty
1023
+ quantity: Quantity
1024
+ quantity_returned: Quantity Returned
1025
+ quantity_shipped: Quantity Shipped
1026
+ quick_search:
1027
+ rate: Rate
1028
+ reason: Reason
1029
+ receive: receive
1030
+ receive_stock: Receive Stock
1031
+ received: Received
1032
+ reception_status:
1033
+ reference: Reference
1034
+ refund: Refund
1035
+ refund_amount_must_be_greater_than_zero:
1036
+ refund_reasons:
1037
+ refunded_amount:
1038
+ refunds:
1039
+ register: Register as a New User
1040
+ registration: Registration
1041
+ reimburse:
1042
+ reimbursed:
1043
+ reimbursement:
1044
+ reimbursement_mailer:
1045
+ reimbursement_email:
1046
+ days_to_send:
1047
+ dear_customer:
1048
+ exchange_summary:
1049
+ for:
1050
+ instructions:
1051
+ refund_summary:
1052
+ subject:
1053
+ total_refunded:
1054
+ reimbursement_perform_failed:
1055
+ reimbursement_status:
1056
+ reimbursement_type:
1057
+ reimbursement_type_override:
1058
+ reimbursement_types:
1059
+ reimbursements:
1060
+ reject:
1061
+ rejected:
1062
+ remember_me: Remember me
1063
+ remove: Remove
1064
+ rename: Rename
1065
+ report:
1066
+ reports: Reports
1067
+ resend: Resend
1068
+ reset_password: Reset my password
1069
+ response_code: Response Code
1070
+ resume: resume
1071
+ resumed: Resumed
1072
+ return: return
1073
+ return_authorization: Return Authorization
1074
+ return_authorization_reasons:
1075
+ return_authorization_updated: Return authorization updated
1076
+ return_authorizations: Return Authorizations
1077
+ return_item_inventory_unit_ineligible:
1078
+ return_item_inventory_unit_reimbursed:
1079
+ return_item_rma_ineligible:
1080
+ return_item_time_period_ineligible:
1081
+ return_items:
1082
+ return_items_cannot_be_associated_with_multiple_orders:
1083
+ return_number:
1084
+ return_quantity: Return Quantity
1085
+ returned: Returned
1086
+ returns:
1087
+ review: Review
1088
+ risk:
1089
+ risk_analysis:
1090
+ risky:
1091
+ rma_credit: RMA Credit
1092
+ rma_number: RMA Number
1093
+ rma_value: RMA Value
1094
+ roles: Roles
1095
+ rules: Rules
1096
+ safe:
1097
+ sales_total: Sales Total
1098
+ sales_total_description: Sales Total For All Orders
1099
+ sales_totals: Sales Totals
1100
+ save_and_continue: Save and Continue
1101
+ save_my_address:
1102
+ say_no: false
1103
+ say_yes: true
1104
+ scope: Scope
1105
+ search: Search
1106
+ search_results: Search results for '%{keywords}'
1107
+ searching: Searching
1108
+ secure_connection_type: Secure Connection Type
1109
+ security_settings: Security Settings
1110
+ select: Select
1111
+ select_a_return_authorization_reason:
1112
+ select_a_stock_location:
1113
+ select_from_prototype: Select From Prototype
1114
+ select_stock: Select stock
1115
+ send_copy_of_all_mails_to: Send Copy of All Mails To
1116
+ send_mails_as: Send Mails As
1117
+ server: Server
1118
+ server_error: The server returned an error
1119
+ settings: Settings
1120
+ ship: ship
1121
+ ship_address: Ship Address
1122
+ ship_total: Ship Total
1123
+ shipment: Shipment
1124
+ shipment_adjustments:
1125
+ shipment_details:
1126
+ shipment_mailer:
1127
+ shipped_email:
1128
+ dear_customer: Dear Customer,\n
1129
+ instructions: Your order has been shipped
1130
+ shipment_summary: Shipment Summary
1131
+ subject: Shipment Notification
1132
+ thanks: Thank you for your business.
1133
+ track_information: 'Tracking Information: %{tracking}'
1134
+ track_link: 'Tracking Link: %{url}'
1135
+ shipment_state: Shipment State
1136
+ shipment_states:
1137
+ backorder: backorder
1138
+ canceled:
1139
+ partial: partial
1140
+ pending: pending
1141
+ ready: ready
1142
+ shipped: shipped
1143
+ shipment_transfer_error:
1144
+ shipment_transfer_success:
1145
+ shipments: Shipments
1146
+ shipped: Shipped
1147
+ shipping: Delivery
1148
+ shipping_address: Delivery Address
1149
+ shipping_categories: Shipping Categories
1150
+ shipping_category: Shipping Category
1151
+ shipping_flat_rate_per_item: Flat rate per package item
1152
+ shipping_flat_rate_per_order: Flat Rate
1153
+ shipping_flexible_rate: Flexible Rate per package item
1154
+ shipping_instructions: Delivery Instructions
1155
+ shipping_method: Delivery Method
1156
+ shipping_methods: Delivery Methods
1157
+ shipping_price_sack: Price sack
1158
+ shipping_total:
1159
+ shop_by_taxonomy: Shop by %{taxonomy}
1160
+ shopping_cart: Shopping Basket
1161
+ show: Show
1162
+ show_active: Show Active
1163
+ show_deleted: Show Deleted
1164
+ show_only_complete_orders: Only show complete orders
1165
+ show_only_considered_risky:
1166
+ show_rate_in_label: Show rate in label
1167
+ sku: SKU
1168
+ skus:
1169
+ slug:
1170
+ source: Source
1171
+ special_instructions: Special Instructions
1172
+ split:
1173
+ spree_gateway_error_flash_for_checkout: There was a problem with your payment information. Please check your information and try again.
1174
+ ssl:
1175
+ change_protocol:
1176
+ start: Start
1177
+ state: County
1178
+ state_based: State Based
1179
+ state_machine_states:
1180
+ accepted:
1181
+ address:
1182
+ authorized:
1183
+ awaiting:
1184
+ awaiting_return:
1185
+ backordered:
1186
+ canceled:
1187
+ cart:
1188
+ checkout:
1189
+ closed:
1190
+ complete:
1191
+ completed:
1192
+ confirm:
1193
+ delivery:
1194
+ errored:
1195
+ failed:
1196
+ given_to_customer:
1197
+ invalid:
1198
+ manual_intervention_required:
1199
+ on_hand:
1200
+ open:
1201
+ order:
1202
+ payment:
1203
+ pending:
1204
+ processing:
1205
+ ready:
1206
+ reimbursed:
1207
+ resumed:
1208
+ returned:
1209
+ shipped:
1210
+ void:
1211
+ states: Counties
1212
+ states_required: States Required
1213
+ status: Status
1214
+ stock:
1215
+ stock_location: Stock Location
1216
+ stock_location_info: Stock location info
1217
+ stock_locations: Stock Locations
1218
+ stock_locations_need_a_default_country:
1219
+ stock_management: Stock Management
1220
+ stock_management_requires_a_stock_location:
1221
+ stock_movements: Stock Movements
1222
+ stock_movements_for_stock_location: Stock Movements for %{stock_location_name}
1223
+ stock_successfully_transferred: Stock was successfully transferred between locations.
1224
+ stock_transfer: Stock Transfer
1225
+ stock_transfers: Stock Transfers
1226
+ stop: Stop
1227
+ store: Store
1228
+ street_address: Street Address
1229
+ street_address_2: Street Address (cont'd)
1230
+ subtotal: Subtotal
1231
+ subtract: Subtract
1232
+ success:
1233
+ successfully_created: "%{resource} has been successfully created!"
1234
+ successfully_refunded:
1235
+ successfully_removed: "%{resource} has been successfully removed!"
1236
+ successfully_signed_up_for_analytics: Successfully signed up for Spree Analytics
1237
+ successfully_updated: "%{resource} has been successfully updated!"
1238
+ summary:
1239
+ tax: Tax
1240
+ tax_categories: Tax Categories
1241
+ tax_category: Tax Category
1242
+ tax_code:
1243
+ tax_included:
1244
+ 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)
1245
+ tax_rates: Tax Rates
1246
+ taxon: Taxon
1247
+ taxon_edit: Edit Taxon
1248
+ taxon_placeholder: Add a Taxon
1249
+ taxon_rule:
1250
+ choose_taxons:
1251
+ label:
1252
+ match_all:
1253
+ match_any:
1254
+ taxonomies: Taxonomies
1255
+ taxonomy: Taxonomy
1256
+ taxonomy_edit: Edit taxonomy
1257
+ taxonomy_tree_error: The requested change has not been accepted and the tree has been returned to its previous state, please try again.
1258
+ taxonomy_tree_instruction: "* Right click a child in the tree to access the menu for adding, deleting or sorting a child."
1259
+ taxons: Taxons
1260
+ test: Test
1261
+ test_mailer:
1262
+ test_email:
1263
+ greeting: Congratulations!
1264
+ message: If you have received this email, then your email settings are correct.
1265
+ subject: Testmail
1266
+ test_mode: Test Mode
1267
+ thank_you_for_your_order: Thank you for your business. Please print out a copy of this confirmation page for your records.
1268
+ there_are_no_items_for_this_order:
1269
+ there_were_problems_with_the_following_fields: There were problems with the following fields
1270
+ this_order_has_already_received_a_refund:
1271
+ thumbnail: Thumbnail
1272
+ tiered_flat_rate:
1273
+ tiered_percent:
1274
+ tiers:
1275
+ time: Time
1276
+ to_add_variants_you_must_first_define: To add variants, you must first define
1277
+ total: Total
1278
+ total_per_item:
1279
+ total_pre_tax_refund:
1280
+ total_price:
1281
+ total_sales:
1282
+ track_inventory:
1283
+ tracking: Tracking
1284
+ tracking_number: Tracking Number
1285
+ tracking_url: Tracking URL
1286
+ tracking_url_placeholder: e.g. http://quickship.com/package?num=:tracking
1287
+ transaction_id:
1288
+ transfer_from_location: Transfer From
1289
+ transfer_stock: Transfer Stock
1290
+ transfer_to_location: Transfer To
1291
+ tree: Tree
1292
+ type: Type
1293
+ type_to_search: Type to search
1294
+ unable_to_connect_to_gateway: Unable to connect to gateway.
1295
+ unable_to_create_reimbursements:
1296
+ under_price: Under %{price}
1297
+ unlock: Unlock
1298
+ unrecognized_card_type: Unrecognized card type
1299
+ unshippable_items: Unshippable Items
1300
+ update: Update
1301
+ updating: Updating
1302
+ usage_limit: Usage Limit
1303
+ use_app_default:
1304
+ use_billing_address: Use Billing Address
1305
+ use_new_cc: Use a new card
1306
+ use_s3: Use Amazon S3 For Images
1307
+ user: User
1308
+ user_rule:
1309
+ choose_users: Choose users
1310
+ users: Users
1311
+ validation:
1312
+ cannot_be_less_than_shipped_units: cannot be less than the number of shipped units.
1313
+ cannot_destroy_line_item_as_inventory_units_have_shipped:
1314
+ exceeds_available_stock: exceeds available stock. Please ensure line items have a valid quantity.
1315
+ is_too_large: is too large -- stock on hand cannot cover requested quantity!
1316
+ must_be_int: must be an integer
1317
+ must_be_non_negative: must be a non-negative value
1318
+ unpaid_amount_not_zero:
1319
+ value: Value
1320
+ variant: Variant
1321
+ variant_placeholder:
1322
+ variants: Variants
1323
+ version: Version
1324
+ void: Void
1325
+ weight: Weight
1326
+ what_is_a_cvv: What is a (CVV) Credit Card Code?
1327
+ what_is_this: What's This?
1328
+ width: Width
1329
+ year: Year
1330
+ you_have_no_orders_yet: You have no orders yet.
1331
+ your_cart_is_empty: Your basket is empty
1332
+ your_order_is_empty_add_product: Your order is empty, please search for and add a product above
1333
+ zip: PIN Code
1334
+ zipcode: Zip Code
1335
+ zone: Zone
1336
+ zones: Zones