solidus_i18n 1.0.0

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