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,1316 @@
1
+ et:
2
+ activerecord:
3
+ attributes:
4
+ spree/address:
5
+ address1: Aadress
6
+ address2: Aadress (jätkub)
7
+ city: Linn
8
+ country: Riik
9
+ firstname: Eesnimi
10
+ lastname: Perekonnanimi
11
+ phone: Telefon
12
+ state: Maakond
13
+ zipcode: Postiindeks
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:
29
+ month:
30
+ name:
31
+ number:
32
+ verification_value:
33
+ year:
34
+ spree/inventory_unit:
35
+ state:
36
+ spree/line_item:
37
+ price:
38
+ quantity:
39
+ spree/option_type:
40
+ name:
41
+ presentation:
42
+ spree/order:
43
+ checkout_complete:
44
+ completed_at: Esitatud
45
+ considered_risky:
46
+ coupon_code:
47
+ created_at: Tellimuse kuupäev
48
+ email: Kliendi e-post
49
+ ip_address: IP Aadress
50
+ item_total:
51
+ number:
52
+ payment_state:
53
+ shipment_state:
54
+ special_instructions:
55
+ state:
56
+ total: Kokku
57
+ spree/order/bill_address:
58
+ address1:
59
+ city:
60
+ firstname:
61
+ lastname:
62
+ phone:
63
+ state:
64
+ zipcode:
65
+ spree/order/ship_address:
66
+ address1:
67
+ city:
68
+ firstname:
69
+ lastname:
70
+ phone:
71
+ state:
72
+ zipcode:
73
+ spree/payment:
74
+ amount: Summa
75
+ spree/payment_method:
76
+ name: Nimetus
77
+ spree/product:
78
+ available_on: Saadaval alates
79
+ cost_currency:
80
+ cost_price: Cost Price
81
+ description: Kirjeldus
82
+ master_price: Hind
83
+ name: Nimetus
84
+ on_hand: Laoseis
85
+ shipping_category: Tarnekategooria
86
+ tax_category: Maksukategooria
87
+ spree/promotion:
88
+ advertise:
89
+ code:
90
+ description:
91
+ event_name:
92
+ expires_at:
93
+ name:
94
+ path:
95
+ starts_at:
96
+ usage_limit:
97
+ spree/promotion_category:
98
+ name:
99
+ spree/property:
100
+ name: Nimetus
101
+ presentation: Presentation
102
+ spree/prototype:
103
+ name: Nimetus
104
+ spree/return_authorization:
105
+ amount: Kogus
106
+ spree/role:
107
+ name: Nimetus
108
+ spree/state:
109
+ abbr:
110
+ 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: Kirjeldus
128
+ name: Nimetus
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: Nimetus
135
+ permalink: Püsiviide
136
+ position: Positsioon
137
+ spree/taxonomy:
138
+ name: Nimetus
139
+ spree/user:
140
+ email: Email
141
+ password: Salasõna
142
+ password_confirmation: Salasõna kordus
143
+ spree/variant:
144
+ cost_currency:
145
+ cost_price:
146
+ depth:
147
+ height:
148
+ price:
149
+ sku:
150
+ weight:
151
+ width:
152
+ spree/zone:
153
+ description: Kirjeldus
154
+ name: Nimetus
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: Kaart on aegunud
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: Aadress
204
+ other: Adaressid
205
+ spree/country:
206
+ one: Riik
207
+ other: Riigid
208
+ spree/credit_card:
209
+ spree/customer_return:
210
+ spree/inventory_unit:
211
+ spree/line_item:
212
+ spree/option_type:
213
+ spree/option_value:
214
+ spree/order:
215
+ one: Tellimus
216
+ other: Tellimused
217
+ spree/payment:
218
+ one: Makse
219
+ other: Maksed
220
+ spree/payment_method:
221
+ spree/product:
222
+ one: Toode
223
+ other: Tooted
224
+ spree/promotion:
225
+ spree/promotion_category:
226
+ spree/property:
227
+ spree/prototype:
228
+ spree/refund_reason:
229
+ spree/reimbursement:
230
+ spree/reimbursement_type:
231
+ spree/return_authorization:
232
+ spree/return_authorization_reason:
233
+ spree/role:
234
+ spree/shipment:
235
+ one: Tarne
236
+ other: Tarned
237
+ spree/shipping_category:
238
+ one: Tarnekategooria
239
+ other: Tarnekategooriad
240
+ spree/shipping_method:
241
+ spree/state:
242
+ one: Maakond
243
+ other: Maakonnad
244
+ spree/state_change:
245
+ spree/stock_location:
246
+ spree/stock_movement:
247
+ spree/stock_transfer:
248
+ spree/tax_category:
249
+ one: Maksukategooria
250
+ other: Maksukategooriad
251
+ spree/tax_rate:
252
+ spree/taxon:
253
+ one: Takson
254
+ other: Taksonid
255
+ spree/taxonomy:
256
+ one: Taksonoomia
257
+ other: Taksonoomiad
258
+ spree/tracker:
259
+ spree/user:
260
+ one: Kasutaja
261
+ other: Kasutajad
262
+ spree/variant:
263
+ spree/zone:
264
+ one: Zone
265
+ other: Zones
266
+ devise:
267
+ confirmations:
268
+ confirmed: Sinu konto on edukalt kinnitatud. Sa oled nüüd sisse logitud.
269
+ send_instructions: Mõne minuti jooksul saad sa e-kirja juhistega oma konto kinnitamiseks.
270
+ failure:
271
+ inactive: Sinu konto polnud veel aktiveeritud.
272
+ invalid: Vigane e-post või salasõna.
273
+ invalid_token: Vigane autentimise võti.
274
+ locked: Sinu konto on lukustatud.
275
+ timeout: Sinu sessioon on aegunud, jätkamiseks logi palun sisse.
276
+ unauthenticated: Sa pead sisse logima või registreeruma enne jätkamist.
277
+ unconfirmed: Sa pead oma konto kinnitama, enne jätkamist.
278
+ mailer:
279
+ confirmation_instructions:
280
+ subject: Kinnitamise juhised
281
+ reset_password_instructions:
282
+ subject: Parooli taastamise juhised
283
+ unlock_instructions:
284
+ subject: Lukust vabastamise juhised
285
+ oauth_callbacks:
286
+ failure: Ei õnnestunud autoriseerida %{kind}-kontot, põhjus %{reason}.
287
+ success: Edukalt autoriseeritud %{kind}-konto.
288
+ unlocks:
289
+ send_instructions: Sa saad mõne minuti jooksul e-kirja juhistega, kuidas oma konto lukust vabastada.
290
+ unlocked: Sinu konto on edukalt lukust vabastatud. Sa oled nüüd sisse logitud.
291
+ user_passwords:
292
+ user:
293
+ cannot_be_blank: Sinu parool ei tohi olla tühi.
294
+ send_instructions: Mõne minuti jooksul saad sa kirja juhistega, kuidas oma parooli taastada.
295
+ updated: Sinu salasõna vahetati edukalt. Oled sisse logitud.
296
+ user_registrations:
297
+ destroyed: Nägemist! Sinu konto on edukalt tühistatud. Loodame sind peagi uuesti näha.
298
+ inactive_signed_up: 'Sa registreerusid edukalt. Siiski ei saa me sind sisse logida, põhjus: %{reason}.'
299
+ signed_up: Tere tulemast! Sa registreerusid edukalt.
300
+ updated: Sa uuendasid edukalt oma kontot.
301
+ user_sessions:
302
+ signed_in: Edukalt sisse logitud.
303
+ signed_out: Edukalt välja logitud.
304
+ errors:
305
+ messages:
306
+ already_confirmed: on juba kinnitatud
307
+ not_found: ei leitud
308
+ not_locked: ei olnud lukus
309
+ not_saved:
310
+ one: '1 viga takistas salvestamast objekti %{resource}:'
311
+ other: "%{count} viga takistasid salvestamast objekti %{resource}:"
312
+ spree:
313
+ abbreviation: Lühend
314
+ accept:
315
+ acceptance_errors:
316
+ acceptance_status:
317
+ accepted:
318
+ account: Konto
319
+ account_updated: Konto uuendatud
320
+ action: Toiming
321
+ actions:
322
+ cancel: Tühista
323
+ continue: Jätka
324
+ create: Loo uus
325
+ destroy: Kustuta
326
+ edit: Muuda
327
+ list: Loetelu
328
+ listing: Loetelu
329
+ new: Uus
330
+ refund:
331
+ save: Salvesta
332
+ update: Uuendus
333
+ activate: Activate
334
+ active: Aktiivne
335
+ add: Lisa
336
+ add_action_of_type: Lisa toimingu tüüp
337
+ add_country: Lisa riik
338
+ add_coupon_code:
339
+ add_new_header:
340
+ add_new_style:
341
+ add_one: Lisa üks
342
+ add_option_value: Lisa variatsionitüübi variante
343
+ add_product: Lisa toode
344
+ add_product_properties: Lisa toote omadusi
345
+ add_rule_of_type:
346
+ add_state: Lisa maakond
347
+ add_stock:
348
+ add_stock_management:
349
+ add_to_cart: Lisa ostukorvi
350
+ add_variant: Lisa variant
351
+ additional_item: Iga järgneva toote summa
352
+ address1: Aadress
353
+ address2: Aadress (jätkub)
354
+ adjustable:
355
+ adjustment: Täiendus
356
+ adjustment_amount: Kogus
357
+ adjustment_successfully_closed:
358
+ adjustment_successfully_opened:
359
+ adjustment_total: Adjustment Total
360
+ adjustments: Täiendused
361
+ admin:
362
+ tab:
363
+ configuration: Seadistus
364
+ option_types:
365
+ orders:
366
+ overview:
367
+ products: Tooted
368
+ promotions:
369
+ promotion_categories:
370
+ properties:
371
+ prototypes:
372
+ reports: Raportid
373
+ taxonomies:
374
+ taxons:
375
+ users: Kasutajad
376
+ user:
377
+ account:
378
+ addresses:
379
+ items:
380
+ items_purchased:
381
+ order_history:
382
+ order_num:
383
+ orders:
384
+ user_information:
385
+ administration: Administreerimisliides
386
+ advertise:
387
+ agree_to_privacy_policy:
388
+ agree_to_terms_of_service: Nõustu Kasutustingimustega
389
+ all: Kõik
390
+ all_adjustments_closed:
391
+ all_adjustments_opened:
392
+ all_departments: Kõik osakonnad
393
+ all_items_have_been_returned:
394
+ allow_ssl_in_development_and_test:
395
+ allow_ssl_in_production:
396
+ allow_ssl_in_staging:
397
+ already_signed_up_for_analytics:
398
+ alt_text: Alternatiivne tekst
399
+ alternative_phone: Teine telefoninumber
400
+ amount: Summa
401
+ analytics_desc_header_1: Spree Analüütika
402
+ analytics_desc_header_2:
403
+ analytics_desc_list_1:
404
+ analytics_desc_list_2:
405
+ analytics_desc_list_3:
406
+ analytics_desc_list_4: See on täiesti tasuta!
407
+ analytics_trackers: Google Analytics
408
+ and:
409
+ approve:
410
+ approved_at:
411
+ approver:
412
+ are_you_sure: Kas oled kindel?
413
+ are_you_sure_delete: Kas oled kindel, et soovid seda kirjet kustutada?
414
+ associated_adjustment_closed:
415
+ at_symbol: '@'
416
+ authorization_failure: Tõrge autoriseerimisel
417
+ authorized:
418
+ auto_capture:
419
+ available_on: Saadaval alates
420
+ average_order_value:
421
+ avs_response:
422
+ back: Tagasi
423
+ back_end:
424
+ back_to_payment:
425
+ back_to_resource_list:
426
+ back_to_rma_reason_list:
427
+ back_to_store: Mine tagasi poodi
428
+ back_to_users_list:
429
+ backorderable:
430
+ backorderable_default:
431
+ backordered:
432
+ backorders_allowed:
433
+ balance_due: Tasuda jäänud
434
+ base_amount:
435
+ base_percent:
436
+ bill_address: Arve saaja aadress
437
+ billing: Arve esitamine
438
+ billing_address: Arve saaja aadress
439
+ both: Mõlemad
440
+ calculated_reimbursements:
441
+ calculator: Kalkulaator
442
+ calculator_settings_warning: Kalkulaatoritüübi ja -seadete muutmiseks pead kõigepealt salvestama.
443
+ cancel: Tühista
444
+ canceled_at:
445
+ canceler:
446
+ cannot_create_customer_returns:
447
+ cannot_create_payment_without_payment_methods:
448
+ cannot_create_returns: Tellimust ei saa tagastada, kuna seda pole veel väljastatud.
449
+ cannot_perform_operation:
450
+ cannot_set_shipping_method_without_address:
451
+ capture: Lõpeta makse
452
+ capture_events:
453
+ card_code: Kaardikood
454
+ card_number: Kaardi number
455
+ card_type:
456
+ card_type_is: Kaarditüüp on
457
+ cart: Ostukorv
458
+ cart_subtotal:
459
+ categories: Katergooriad
460
+ category: Kategooria
461
+ charged:
462
+ check_for_spree_alerts:
463
+ checkout: Vormista tellimus
464
+ choose_a_customer: Vali klient
465
+ choose_a_taxon_to_sort_products_for:
466
+ choose_currency:
467
+ choose_dashboard_locale:
468
+ choose_location:
469
+ city: Linn
470
+ clear_cache:
471
+ clear_cache_ok:
472
+ clear_cache_warning:
473
+ click_and_drag_on_the_products_to_sort_them:
474
+ clone: Võta aluseks
475
+ close: Sulge
476
+ close_all_adjustments:
477
+ code: Kood
478
+ company: Ettevõte
479
+ complete: Esitatud
480
+ configuration: Konfiguratsioon
481
+ configurations: Konfiguratsioon
482
+ confirm: Kinnita
483
+ confirm_delete: Kinnita kustutamine
484
+ confirm_password: Kinnita salasõna
485
+ continue: Jätka
486
+ continue_shopping: Jätka ostlemist
487
+ cost_currency:
488
+ cost_price: Omahind
489
+ could_not_connect_to_jirafe:
490
+ could_not_create_customer_return:
491
+ could_not_create_stock_movement:
492
+ count_on_hand:
493
+ countries: Riigid
494
+ country: Riik
495
+ country_based: Riigipõhine
496
+ country_name: Nimi
497
+ country_names:
498
+ CA:
499
+ FRA:
500
+ ITA:
501
+ US:
502
+ coupon:
503
+ coupon_code:
504
+ coupon_code_already_applied:
505
+ coupon_code_applied:
506
+ coupon_code_better_exists:
507
+ coupon_code_expired:
508
+ coupon_code_max_usage:
509
+ coupon_code_not_eligible:
510
+ coupon_code_not_found:
511
+ coupon_code_unknown_error:
512
+ create: Loo kasutajakonto
513
+ create_a_new_account: Loo uus konto
514
+ create_new_order:
515
+ create_reimbursement:
516
+ created_at: Loodud
517
+ credit: Krediit
518
+ credit_card: Krediitkaart
519
+ credit_cards:
520
+ credit_owed: Krediit võlgu
521
+ credits:
522
+ currency:
523
+ currency_decimal_mark:
524
+ currency_settings:
525
+ currency_symbol_position:
526
+ currency_thousands_separator:
527
+ current: Praegune
528
+ current_promotion_usage:
529
+ customer: Klient
530
+ customer_details: Kliendi andmed
531
+ customer_details_updated: The customer's details have been updated.
532
+ customer_return:
533
+ customer_returns:
534
+ customer_search: Kliendi otsing
535
+ cut:
536
+ cvv_response:
537
+ dash:
538
+ jirafe:
539
+ app_id:
540
+ app_token:
541
+ currently_unavailable:
542
+ explanation:
543
+ header:
544
+ site_id:
545
+ token:
546
+ jirafe_settings_updated:
547
+ date: Kuupäev
548
+ date_completed:
549
+ date_picker:
550
+ first_day:
551
+ format:
552
+ js_format:
553
+ date_range: Vali vahemik
554
+ default:
555
+ default_refund_amount:
556
+ default_tax:
557
+ default_tax_zone:
558
+ delete: Kustuta
559
+ deleted_variants_present:
560
+ delivery: Delivery
561
+ depth: Sügavus
562
+ description: Kirjeldus
563
+ destination:
564
+ destroy: Kustuta
565
+ details:
566
+ discount_amount:
567
+ dismiss_banner:
568
+ display: Kuvatav väärtus
569
+ display_currency:
570
+ doesnt_track_inventory:
571
+ edit: Muuda
572
+ editing_resource:
573
+ editing_rma_reason:
574
+ editing_user: Muuda kasutajakonto andmeid
575
+ eligibility_errors:
576
+ messages:
577
+ has_excluded_product:
578
+ item_total_less_than:
579
+ item_total_less_than_or_equal:
580
+ item_total_more_than:
581
+ item_total_more_than_or_equal:
582
+ limit_once_per_user:
583
+ missing_product:
584
+ missing_taxon:
585
+ no_applicable_products:
586
+ no_matching_taxons:
587
+ no_user_or_email_specified:
588
+ no_user_specified:
589
+ not_first_order:
590
+ email:
591
+ empty: Tühi
592
+ empty_cart: Tühjenda ostukorv
593
+ enable_mail_delivery: Luba e-mailide saatmine
594
+ end: Lõpp
595
+ ending_in: Ending in
596
+ environment: Keskkond
597
+ error: Viga
598
+ errors:
599
+ messages:
600
+ could_not_create_taxon:
601
+ no_payment_methods_available:
602
+ no_shipping_methods_available:
603
+ errors_prohibited_this_record_from_being_saved:
604
+ event: Sündmus
605
+ events:
606
+ spree:
607
+ cart:
608
+ add: Lisa ostukorvi
609
+ checkout:
610
+ coupon_code_added:
611
+ content:
612
+ visited:
613
+ order:
614
+ contents_changed:
615
+ page_view:
616
+ user:
617
+ signup:
618
+ exceptions:
619
+ count_on_hand_setter:
620
+ exchange_for:
621
+ excl:
622
+ existing_shipments:
623
+ expedited_exchanges_warning:
624
+ expiration: Aegub
625
+ extension: Laiendus
626
+ failed_payment_attempts:
627
+ filename: Faili nimi
628
+ fill_in_customer_info:
629
+ filter_results: Filtreeri tulemusi
630
+ finalize: Lõpeta
631
+ finalized:
632
+ find_a_taxon:
633
+ first_item: Esimese toote summa
634
+ first_name: Eesnimi
635
+ first_name_begins_with: Eesnimi algab
636
+ flat_percent: Fikseeritud protsent
637
+ flat_rate_per_order: Fikseeritud summa tellimuse kohta
638
+ flexible_rate: Paindlik summa
639
+ forgot_password: Unustasid salasõna?
640
+ free_shipping:
641
+ free_shipping_amount:
642
+ front_end:
643
+ gateway: Lüüs
644
+ gateway_config_unavailable:
645
+ gateway_error: Lüüsi viga
646
+ general: "Üldine"
647
+ general_settings: "Üldised sätted"
648
+ google_analytics: Google Analytics
649
+ google_analytics_id: Google Analytics ID
650
+ guest_checkout: Sooritas ostu külalisena
651
+ guest_user_account: Vormista ost külalisena
652
+ has_no_shipped_units: Postitatud esemed puuduvad
653
+ height: Kõrgus
654
+ hide_cents:
655
+ home: Avaleht
656
+ i18n:
657
+ available_locales:
658
+ language: Keel
659
+ localization_settings:
660
+ this_file_language: Eesti keel
661
+ icon: Icon
662
+ identifier:
663
+ image: Pilt
664
+ images: Pildid
665
+ implement_eligible_for_return:
666
+ implement_requires_manual_intervention:
667
+ inactive:
668
+ incl:
669
+ included_in_price:
670
+ included_price_validation:
671
+ incomplete:
672
+ info_number_of_skus_not_shown:
673
+ info_product_has_multiple_skus:
674
+ instructions_to_reset_password: Täida allolev vorm. Juhised salasõna uuesti seadistamiseks saadetakse Teile e-maili teel.
675
+ insufficient_stock: Insufficient stock available, only %{on_hand} remaining
676
+ insufficient_stock_lines_present:
677
+ intercept_email_address:
678
+ intercept_email_instructions:
679
+ internal_name:
680
+ invalid_credit_card:
681
+ invalid_exchange_variant:
682
+ invalid_payment_provider:
683
+ invalid_promotion_action:
684
+ invalid_promotion_rule:
685
+ inventory: Varustus
686
+ inventory_adjustment: Laoseisu korrigeerimine
687
+ inventory_error_flash_for_insufficient_quantity:
688
+ inventory_state:
689
+ is_not_available_to_shipment_address: Pole tarneaadressile saadaval
690
+ iso_name:
691
+ item: Toode
692
+ item_description: Toote kirjeldus
693
+ item_total: Tooted kokku
694
+ item_total_rule:
695
+ operators:
696
+ gt:
697
+ gte:
698
+ lt:
699
+ lte:
700
+ items_cannot_be_shipped:
701
+ items_in_rmas:
702
+ items_reimbursed:
703
+ items_to_be_reimbursed:
704
+ jirafe: Jirafe
705
+ landing_page_rule:
706
+ path:
707
+ last_name: Perekonnanimi
708
+ last_name_begins_with: Perekonnanimi algab
709
+ learn_more: Learn More
710
+ lifetime_stats:
711
+ line_item_adjustments:
712
+ list: Loetelu
713
+ loading: Laen...
714
+ locale_changed: Keel vahetatud
715
+ location: Asukoht
716
+ lock:
717
+ log_entries:
718
+ logged_in_as: 'Sisse logitud:'
719
+ logged_in_succesfully: Sisselogimine õnnestus!
720
+ logged_out: Oled välja logitud!
721
+ login: Login
722
+ login_as_existing: Logi sisse
723
+ login_failed: Sisselogimine ebaõnnestus. Palun kontrolli sisestatud andmeid.
724
+ login_name: Kasutajanimi
725
+ logout: Logi välja
726
+ logs:
727
+ look_for_similar_items: Teised sarnased tooted
728
+ make_refund: Teosta tagasimakse
729
+ make_sure_the_above_reimbursement_amount_is_correct:
730
+ manage_promotion_categories:
731
+ manage_variants:
732
+ manual_intervention_required:
733
+ master_price: Hind
734
+ match_choices:
735
+ all:
736
+ none:
737
+ max_items: Maksimaalne toodete arv
738
+ member_since:
739
+ memo:
740
+ meta_description: Kirjeldus
741
+ meta_keywords: Märksõnad
742
+ meta_title:
743
+ metadata: Metaandmed
744
+ minimal_amount: Minimal Amount
745
+ month: Kuu
746
+ more:
747
+ move_stock_between_locations:
748
+ my_account: Minu konto
749
+ my_orders: Minu tellimused
750
+ name: Nimi
751
+ name_on_card:
752
+ name_or_sku: Nimetus või SKU
753
+ new: Uus
754
+ new_adjustment: Uus täiendus
755
+ new_country:
756
+ new_customer: Registreeru
757
+ new_customer_return:
758
+ new_image: Uus pilt
759
+ new_option_type: Uus valik
760
+ new_order: Uus tellimus
761
+ new_order_completed: Uus tellimus täidetud
762
+ new_payment: Uus makse
763
+ new_payment_method: Uus maksemeetod
764
+ new_product: Uus toode
765
+ new_promotion: New Promotion
766
+ new_promotion_category:
767
+ new_property: Uus omadus
768
+ new_prototype: Uus prototüüp
769
+ new_refund:
770
+ new_refund_reason:
771
+ new_return_authorization: Uue toote tagastamine
772
+ new_rma_reason:
773
+ new_shipment_at_location:
774
+ new_shipping_category: Uus tarnekategooria
775
+ new_shipping_method: Uus tarnemeetod
776
+ new_state: Uus maakond
777
+ new_stock_location:
778
+ new_stock_movement:
779
+ new_stock_transfer:
780
+ new_tax_category: Uus maksukategooria
781
+ new_tax_rate: Uus maksumäär
782
+ new_taxon: Uus liik
783
+ new_taxonomy: Uus liigitus
784
+ new_tracker: Uus jälgija
785
+ new_user: Uus kasutaja
786
+ new_variant: Uus variant
787
+ new_zone: Uus tsoon
788
+ next: Järgmine
789
+ no_actions_added:
790
+ no_payment_found:
791
+ no_pending_payments:
792
+ no_products_found: tooteid ei leitud
793
+ no_resource_found:
794
+ no_results:
795
+ no_returns_found:
796
+ no_rules_added:
797
+ no_shipping_method_selected:
798
+ no_state_changes:
799
+ no_tracking_present:
800
+ none: Puuduvad
801
+ none_selected:
802
+ normal_amount:
803
+ not: mitte
804
+ not_available: N/A
805
+ not_enough_stock:
806
+ not_found: "%{resource} is not found"
807
+ note:
808
+ notice_messages:
809
+ product_cloned: Toode on kloonitud
810
+ product_deleted: Toode on kustutatud
811
+ product_not_cloned: Toote kloonimine ei õnnestunud
812
+ product_not_deleted: Toote kustutamine ebaõnnestus
813
+ variant_deleted: Variant kustutatud
814
+ variant_not_deleted: Variandi kustutamine ebaõnnestus
815
+ num_orders:
816
+ on_hand: Laoseis
817
+ open: Ava
818
+ open_all_adjustments:
819
+ option_type:
820
+ option_type_placeholder:
821
+ option_types: Variatsioonid
822
+ option_value:
823
+ option_values: valiku väärtused
824
+ optional: Valikuline
825
+ options: Variatsioonid
826
+ or: või
827
+ or_over_price:
828
+ order: Tellimus
829
+ order_adjustments:
830
+ order_already_updated:
831
+ order_approved:
832
+ order_canceled:
833
+ order_details: Tellimuse info
834
+ order_email_resent: E-mail tellimuse kohta uuesti saadetud
835
+ order_information:
836
+ order_mailer:
837
+ cancel_email:
838
+ dear_customer:
839
+ instructions:
840
+ order_summary_canceled:
841
+ subject:
842
+ subtotal:
843
+ total:
844
+ confirm_email:
845
+ dear_customer:
846
+ instructions:
847
+ order_summary:
848
+ subject:
849
+ subtotal:
850
+ thanks:
851
+ total:
852
+ order_not_found:
853
+ order_number:
854
+ order_processed_successfully: Tellimus edastatud
855
+ order_resumed:
856
+ order_state:
857
+ address: Aadress
858
+ awaiting_return: ootab tagastamist
859
+ canceled: Tühistatud
860
+ cart: Ostukorv
861
+ complete: Esitatud
862
+ confirm: kinnitamine
863
+ considered_risky:
864
+ delivery: Saatmine
865
+ payment: Tasumine
866
+ resumed: resumed
867
+ returned: Tagastamine
868
+ order_summary: Tellimuse kokkuvõte
869
+ order_sure_want_to: Kas olete kindel, et soovite %{event} seda tellimust?
870
+ order_total: Tellimus kokku
871
+ order_updated: Tellimus uuendatud
872
+ orders: Tellimused
873
+ other_items_in_other:
874
+ out_of_stock: Laost lõppenud
875
+ overview: "Ülevaade"
876
+ package_from:
877
+ pagination:
878
+ next_page:
879
+ previous_page:
880
+ truncate: "…"
881
+ password: Salasõna
882
+ paste: Paste
883
+ path: Teekond
884
+ pay: Maksa
885
+ payment: Makse
886
+ payment_could_not_be_created:
887
+ payment_identifier:
888
+ payment_information: Makse informatsioon
889
+ payment_method: Makseviis
890
+ payment_method_not_supported:
891
+ payment_methods: Makseviisid
892
+ payment_processing_failed:
893
+ payment_processor_choose_banner_text:
894
+ payment_processor_choose_link:
895
+ payment_state: Makse staatus
896
+ payment_states:
897
+ balance_due: Ootab tasumist
898
+ checkout: checkout
899
+ completed: Lõpetatud
900
+ credit_owed: credit owed
901
+ failed: Ebaõnnestunud
902
+ paid: Tasutud
903
+ pending: Ootel
904
+ processing: processing
905
+ void: Kehtetu
906
+ payment_updated: Makse uuendatud
907
+ payments: Maksed
908
+ pending:
909
+ percent: Protsent
910
+ percent_per_item: Percent Per Item
911
+ permalink: Püsiviide
912
+ phone: Telefon
913
+ place_order: Esita tellimus
914
+ please_define_payment_methods:
915
+ populate_get_error:
916
+ powered_by: Toetab
917
+ pre_tax_amount:
918
+ pre_tax_refund_amount:
919
+ pre_tax_total:
920
+ preferred_reimbursement_type:
921
+ presentation: Kuvatav väärtus
922
+ previous: Eelmine
923
+ previous_state_missing:
924
+ price: Hind
925
+ price_range:
926
+ price_sack:
927
+ process: Töötle
928
+ product: Toode
929
+ product_details: Tooteinfo
930
+ product_has_no_description: Tootel puudub kirjeldus
931
+ product_not_available_in_this_currency:
932
+ product_properties: Toote omadused
933
+ product_rule:
934
+ choose_products:
935
+ label:
936
+ match_all:
937
+ match_any:
938
+ match_none:
939
+ product_source:
940
+ group:
941
+ manual:
942
+ products:
943
+ promotion:
944
+ promotion_action:
945
+ promotion_action_types:
946
+ create_adjustment:
947
+ description:
948
+ name:
949
+ create_item_adjustments:
950
+ description:
951
+ name:
952
+ create_line_items:
953
+ description:
954
+ name:
955
+ free_shipping:
956
+ description:
957
+ name:
958
+ promotion_actions:
959
+ promotion_form:
960
+ match_policies:
961
+ all:
962
+ any:
963
+ promotion_rule:
964
+ promotion_rule_types:
965
+ first_order:
966
+ description:
967
+ name:
968
+ item_total:
969
+ description:
970
+ name:
971
+ landing_page:
972
+ description:
973
+ name:
974
+ one_use_per_user:
975
+ description:
976
+ name:
977
+ option_value:
978
+ description:
979
+ name:
980
+ product:
981
+ description:
982
+ name:
983
+ taxon:
984
+ description:
985
+ name:
986
+ user:
987
+ description:
988
+ name:
989
+ user_logged_in:
990
+ description:
991
+ name:
992
+ promotion_uses:
993
+ promotionable:
994
+ promotions: Kampaaniad
995
+ propagate_all_variants:
996
+ properties: Omadused
997
+ property: Omadus
998
+ prototype: Prototüüp
999
+ prototypes: Prototüübid
1000
+ provider: Varustaja
1001
+ provider_settings_warning: Varustaja sätete muutmiseks peab eelnevalt varustaja salvestama
1002
+ qty: Kogus
1003
+ quantity: Kogus
1004
+ quantity_returned: Quantity Returned
1005
+ quantity_shipped: Tarnitud kogus
1006
+ quick_search:
1007
+ rate: Hind
1008
+ reason: Põhjus
1009
+ receive: Võta vastu
1010
+ receive_stock:
1011
+ received: Vastu võetud
1012
+ reception_status:
1013
+ reference:
1014
+ refund: Tagasimakse
1015
+ refund_amount_must_be_greater_than_zero:
1016
+ refund_reasons:
1017
+ refunded_amount:
1018
+ refunds:
1019
+ register: Registreeri kasutajakonto
1020
+ registration: Registreeru või vormista ost külalisena
1021
+ reimburse:
1022
+ reimbursed:
1023
+ reimbursement:
1024
+ reimbursement_mailer:
1025
+ reimbursement_email:
1026
+ days_to_send:
1027
+ dear_customer:
1028
+ exchange_summary:
1029
+ for:
1030
+ instructions:
1031
+ refund_summary:
1032
+ subject:
1033
+ total_refunded:
1034
+ reimbursement_perform_failed:
1035
+ reimbursement_status:
1036
+ reimbursement_type:
1037
+ reimbursement_type_override:
1038
+ reimbursement_types:
1039
+ reimbursements:
1040
+ reject:
1041
+ rejected:
1042
+ remember_me: Mäleta mind
1043
+ remove: Eemalda
1044
+ rename: Rename
1045
+ report:
1046
+ reports: Aruanded
1047
+ resend: Saada uuesti
1048
+ reset_password: Lähtesta salasõna
1049
+ response_code: Vastuse kood
1050
+ resume: Jätka
1051
+ resumed: Jätkatud
1052
+ return: Tagastama
1053
+ return_authorization: Tagasta toode
1054
+ return_authorization_reasons:
1055
+ return_authorization_updated: Toote tagastamine uuendatud
1056
+ return_authorizations: Tagasta tooted
1057
+ return_item_inventory_unit_ineligible:
1058
+ return_item_inventory_unit_reimbursed:
1059
+ return_item_rma_ineligible:
1060
+ return_item_time_period_ineligible:
1061
+ return_items:
1062
+ return_items_cannot_be_associated_with_multiple_orders:
1063
+ return_number:
1064
+ return_quantity: Tagastatav kogus
1065
+ returned: Tagastatud
1066
+ returns:
1067
+ review:
1068
+ risk:
1069
+ risk_analysis:
1070
+ risky:
1071
+ rma_credit:
1072
+ rma_number: Tagastatud toote number
1073
+ rma_value: Tagastatud toote väärtus
1074
+ roles: Rollid
1075
+ rules:
1076
+ safe:
1077
+ sales_total: Kogumüük
1078
+ sales_total_description: Tellimuste tulu kokku
1079
+ sales_totals:
1080
+ save_and_continue: Salvesta ja jätka
1081
+ save_my_address:
1082
+ say_no:
1083
+ say_yes:
1084
+ scope: Käsitlusala
1085
+ search: Otsing
1086
+ search_results: Otsingu '%{keywords}' tulemused
1087
+ searching: Searching
1088
+ secure_connection_type: Turvalise ühenduse tüüp
1089
+ security_settings:
1090
+ select: Vali
1091
+ select_a_return_authorization_reason:
1092
+ select_a_stock_location:
1093
+ select_from_prototype: Vali prototüüpide hulgast
1094
+ select_stock:
1095
+ send_copy_of_all_mails_to: Saada koopia kõikidest e-mailidest
1096
+ send_mails_as: Saada e-mailid kui
1097
+ server:
1098
+ server_error: Serveris esines viga
1099
+ settings: Sätted
1100
+ ship: Saada
1101
+ ship_address: Kättetoimetamise aadress
1102
+ ship_total:
1103
+ shipment: Tarne
1104
+ shipment_adjustments:
1105
+ shipment_details:
1106
+ shipment_mailer:
1107
+ shipped_email:
1108
+ dear_customer:
1109
+ instructions:
1110
+ shipment_summary:
1111
+ subject:
1112
+ thanks:
1113
+ track_information:
1114
+ track_link:
1115
+ shipment_state: Tarne staatus
1116
+ shipment_states:
1117
+ backorder: backorder
1118
+ canceled:
1119
+ partial: partial
1120
+ pending: Ootel
1121
+ ready: Tarneks valmis
1122
+ shipped: Tarnitud
1123
+ shipment_transfer_error:
1124
+ shipment_transfer_success:
1125
+ shipments: Tarned
1126
+ shipped: Saadetud
1127
+ shipping: Transport
1128
+ shipping_address: Kättetoimetamise aadress
1129
+ shipping_categories: Saatmiskategooriad
1130
+ shipping_category: Saatmiskategooria
1131
+ shipping_flat_rate_per_item:
1132
+ shipping_flat_rate_per_order:
1133
+ shipping_flexible_rate:
1134
+ shipping_instructions: Kättetoimetamise lisainfo
1135
+ shipping_method: Tarneviis
1136
+ shipping_methods: Tarneviisid
1137
+ shipping_price_sack:
1138
+ shipping_total:
1139
+ shop_by_taxonomy: "%{taxonomy}:"
1140
+ shopping_cart: Ostukorv
1141
+ show: Näita
1142
+ show_active: Näita aktiivseid
1143
+ show_deleted: Näita kustutatuid
1144
+ show_only_complete_orders: Näita ainult täidetud tellimusi
1145
+ show_only_considered_risky:
1146
+ show_rate_in_label:
1147
+ sku: SKU
1148
+ skus:
1149
+ slug:
1150
+ source:
1151
+ special_instructions: Tarne lisajuhised
1152
+ split:
1153
+ spree_gateway_error_flash_for_checkout:
1154
+ ssl:
1155
+ change_protocol:
1156
+ start: Alates
1157
+ state: Maakond
1158
+ state_based: Maakonnapõhine
1159
+ state_machine_states:
1160
+ accepted:
1161
+ address:
1162
+ authorized:
1163
+ awaiting:
1164
+ awaiting_return:
1165
+ backordered:
1166
+ canceled:
1167
+ cart:
1168
+ checkout:
1169
+ closed:
1170
+ complete:
1171
+ completed:
1172
+ confirm:
1173
+ delivery:
1174
+ errored:
1175
+ failed:
1176
+ given_to_customer:
1177
+ invalid:
1178
+ manual_intervention_required:
1179
+ on_hand:
1180
+ open:
1181
+ order:
1182
+ payment:
1183
+ pending:
1184
+ processing:
1185
+ ready:
1186
+ reimbursed:
1187
+ resumed:
1188
+ returned:
1189
+ shipped:
1190
+ void:
1191
+ states: Maakonnad
1192
+ states_required:
1193
+ status: Staatus
1194
+ stock:
1195
+ stock_location:
1196
+ stock_location_info:
1197
+ stock_locations:
1198
+ stock_locations_need_a_default_country:
1199
+ stock_management:
1200
+ stock_management_requires_a_stock_location:
1201
+ stock_movements:
1202
+ stock_movements_for_stock_location:
1203
+ stock_successfully_transferred:
1204
+ stock_transfer:
1205
+ stock_transfers:
1206
+ stop: Kuni
1207
+ store: Pood
1208
+ street_address: Tänav
1209
+ street_address_2: Tänav (jätkub)
1210
+ subtotal: Vahesumma
1211
+ subtract: Lahuta
1212
+ success:
1213
+ successfully_created:
1214
+ successfully_refunded:
1215
+ successfully_removed:
1216
+ successfully_signed_up_for_analytics:
1217
+ successfully_updated:
1218
+ summary:
1219
+ tax: Maksud
1220
+ tax_categories: Maksukategooriad
1221
+ tax_category: Maksukategooria
1222
+ tax_code:
1223
+ tax_included:
1224
+ tax_rate_amount_explanation:
1225
+ tax_rates: Maksumäärad
1226
+ taxon: Taksonoomia
1227
+ taxon_edit: Redigeeri taksonoomiaid
1228
+ taxon_placeholder:
1229
+ taxon_rule:
1230
+ choose_taxons:
1231
+ label:
1232
+ match_all:
1233
+ match_any:
1234
+ taxonomies: Taksonoomia
1235
+ taxonomy: Taxonomy
1236
+ taxonomy_edit: Redigeeri taksonoomiaid
1237
+ taxonomy_tree_error: Soovitud muutuse tegemine ebaõnnestus ja puu muudeti tagasi endisele kujule. Palun proovige uuesti.
1238
+ taxonomy_tree_instruction: "* Elementide lisamiseks, muutmisek ja kustutamiseks kliki hiire parema nupuga mõnel puu elemendil"
1239
+ taxons: Taksonid
1240
+ test: Test
1241
+ test_mailer:
1242
+ test_email:
1243
+ greeting:
1244
+ message:
1245
+ subject: Testmail
1246
+ test_mode: Testrežiim
1247
+ thank_you_for_your_order: Täname teid tellimuse eest
1248
+ there_are_no_items_for_this_order:
1249
+ there_were_problems_with_the_following_fields: There were problems with the following fields
1250
+ this_order_has_already_received_a_refund:
1251
+ thumbnail: Pisipilt
1252
+ tiered_flat_rate:
1253
+ tiered_percent:
1254
+ tiers:
1255
+ time: Aeg
1256
+ to_add_variants_you_must_first_define: variantide lisamiseks pead esmalt defineerima TODO
1257
+ total: Kokku
1258
+ total_per_item:
1259
+ total_pre_tax_refund:
1260
+ total_price:
1261
+ total_sales:
1262
+ track_inventory:
1263
+ tracking: Jälgimisnumber
1264
+ tracking_number:
1265
+ tracking_url:
1266
+ tracking_url_placeholder:
1267
+ transaction_id:
1268
+ transfer_from_location:
1269
+ transfer_stock:
1270
+ transfer_to_location:
1271
+ tree: Puu
1272
+ type: Tüüp
1273
+ type_to_search:
1274
+ unable_to_connect_to_gateway: Juurdepääs ebaõnnestus.
1275
+ unable_to_create_reimbursements:
1276
+ under_price:
1277
+ unlock:
1278
+ unrecognized_card_type: Tundmatu kaarditüüp
1279
+ unshippable_items:
1280
+ update: Uuenda
1281
+ updating: Uuendan
1282
+ usage_limit: Kasutuslimiit
1283
+ use_app_default:
1284
+ use_billing_address: Kasuta arve saaja aadressi
1285
+ use_new_cc: Kasuta uut kaarti
1286
+ use_s3:
1287
+ user: Kasutaja
1288
+ user_rule:
1289
+ choose_users:
1290
+ users: Kasutajad
1291
+ validation:
1292
+ cannot_be_less_than_shipped_units:
1293
+ cannot_destroy_line_item_as_inventory_units_have_shipped:
1294
+ exceeds_available_stock:
1295
+ is_too_large: on liiga suur – laos puudub soovitud kogus!
1296
+ must_be_int: peab olema täisarv
1297
+ must_be_non_negative: peab olema positiivne arv
1298
+ unpaid_amount_not_zero:
1299
+ value: Väärtus
1300
+ variant:
1301
+ variant_placeholder:
1302
+ variants: Variandid
1303
+ version: Versioon
1304
+ void: Muuda kehtetuks
1305
+ weight: Kaal
1306
+ what_is_a_cvv: Mis on krediitkaardi turvakood (CVV)?
1307
+ what_is_this: Mis see on?
1308
+ width: Laius
1309
+ year: Aasta
1310
+ you_have_no_orders_yet: You have no orders yet.
1311
+ your_cart_is_empty: Ostukorv on tühi
1312
+ your_order_is_empty_add_product:
1313
+ zip: Postiindeks
1314
+ zipcode: Postiindeks
1315
+ zone: Tsoon
1316
+ zones: Tsoonid