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