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,1345 @@
1
+ sk:
2
+ activerecord:
3
+ attributes:
4
+ spree/address:
5
+ address1: Adresa
6
+ address2: Adresa (pokr.)
7
+ city: Mesto
8
+ country: "Štát"
9
+ firstname: "Krstné meno"
10
+ lastname: Priezvisko
11
+ phone: Telefón
12
+ state: Kraj
13
+ zipcode: "PSČ"
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: Názov ISO
24
+ name: Názov
25
+ numcode: ISO kód štátu
26
+ spree/credit_card:
27
+ base:
28
+ cc_type: Typ
29
+ month: Mesiac
30
+ name: "Meno"
31
+ number: "Číslo"
32
+ verification_value: "Overovací kód"
33
+ year: Rok
34
+ spree/inventory_unit:
35
+ state:
36
+ spree/line_item:
37
+ price: Cena
38
+ quantity: "Množstvo"
39
+ spree/option_type:
40
+ name: Názov
41
+ presentation:
42
+ spree/order:
43
+ checkout_complete: "Dokončiť objednávku"
44
+ completed_at: "Dokončené"
45
+ considered_risky:
46
+ coupon_code: "Kód kupónu"
47
+ created_at: "Dátum objednania"
48
+ email: Email zákazníka
49
+ ip_address: IP adresa
50
+ item_total:
51
+ number: "Počet"
52
+ payment_state: "Stav platby"
53
+ shipment_state: "Stav doručenia"
54
+ special_instructions: "Zvláštne pokyny"
55
+ state:
56
+ total: "Celkom"
57
+ spree/order/bill_address:
58
+ address1: "Účtovná adresa - Ulica a č.d."
59
+ city: "Účtovná adresa - Mesto/Obec"
60
+ firstname: "Účtovná adresa - Krstné meno"
61
+ lastname: "Účtovná adresa - Priezvisko"
62
+ phone: "Účtovná adresa - Telefón"
63
+ state: "Účtovná adresa - Kraj"
64
+ zipcode: "Účtovná adresa - PSČ"
65
+ spree/order/ship_address:
66
+ address1: "Doručovacia adresa - Ulica a č.d."
67
+ city: "Doručovacia adresa - Mesto/Obec"
68
+ firstname: "Doručovacia adresa - Krstné meno"
69
+ lastname: "Doručovacia adresa - Priezvisko"
70
+ phone: "Doručovacia adresa - Telefón"
71
+ state: "Doručovacia adresa - Kraj"
72
+ zipcode: "Doručovacia adresa - PSČ"
73
+ spree/payment:
74
+ amount: "Suma"
75
+ spree/payment_method:
76
+ name: "Názov"
77
+ spree/product:
78
+ available_on:
79
+ cost_currency:
80
+ cost_price:
81
+ description: "Popis"
82
+ master_price:
83
+ name: "Názov"
84
+ on_hand:
85
+ shipping_category:
86
+ tax_category:
87
+ spree/promotion:
88
+ advertise:
89
+ code: "Kód"
90
+ description: "Popis"
91
+ event_name:
92
+ expires_at:
93
+ name: "Názov"
94
+ path: "Cesta"
95
+ starts_at:
96
+ usage_limit:
97
+ spree/promotion_category:
98
+ name: "Názov"
99
+ spree/property:
100
+ name: "Názov"
101
+ presentation:
102
+ spree/prototype:
103
+ name: "Názov"
104
+ spree/return_authorization:
105
+ amount:
106
+ spree/role:
107
+ name: "Názov"
108
+ spree/state:
109
+ abbr: "Skratka"
110
+ name: "Názov"
111
+ spree/state_change:
112
+ state_changes:
113
+ state_from:
114
+ state_to:
115
+ timestamp:
116
+ type: "Typ"
117
+ updated: "Aktualizované"
118
+ user: "Používateľ"
119
+ spree/store:
120
+ mail_from_address:
121
+ meta_description:
122
+ meta_keywords:
123
+ name: "Názov"
124
+ seo_title:
125
+ url:
126
+ spree/tax_category:
127
+ description: Popis
128
+ name: "Názov"
129
+ spree/tax_rate:
130
+ amount: "Suma"
131
+ included_in_price: "Zahrnutá v cene"
132
+ show_rate_in_label:
133
+ spree/taxon:
134
+ name: "Názov"
135
+ permalink: Permalink
136
+ position: "Umiestnenie"
137
+ spree/taxonomy:
138
+ name: "Názov"
139
+ spree/user:
140
+ email: "E-mail"
141
+ password: Heslo
142
+ password_confirmation: Potvrdenie hesla
143
+ spree/variant:
144
+ cost_currency:
145
+ cost_price:
146
+ depth: "Hĺbka"
147
+ height: "Výška"
148
+ price: Cena
149
+ sku: SKU
150
+ weight: "Hmotnosť"
151
+ width: "Šírka"
152
+ spree/zone:
153
+ description: Popis
154
+ name: "Názov"
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: Adresa
204
+ few: Adresy
205
+ other: Adries
206
+ spree/country:
207
+ one: "Štát"
208
+ few: "Štáty"
209
+ other: "Štátov"
210
+ spree/credit_card:
211
+ one: "Kreditná karta"
212
+ few: "Kreditné karty"
213
+ other: "Kreditných kariet"
214
+ spree/customer_return:
215
+ spree/inventory_unit:
216
+ one: "Skladová jednotka"
217
+ few: "Skladové jednotky"
218
+ other: "Skladových jednotiek"
219
+ spree/line_item:
220
+ one: "Riadková položka"
221
+ few: "Riadkové položky"
222
+ other: "Riadkových položiek"
223
+ spree/option_type:
224
+ spree/option_value:
225
+ spree/order:
226
+ one: "Objednávka"
227
+ few: "Objednávky"
228
+ other: "Objednávok"
229
+ spree/payment:
230
+ one: Platba
231
+ few: Platby
232
+ other: Platieb
233
+ spree/payment_method:
234
+ spree/product:
235
+ one: Produkt
236
+ few: Produkty
237
+ other: Produktov
238
+ spree/promotion:
239
+ spree/promotion_category:
240
+ spree/property:
241
+ spree/prototype:
242
+ one: Prototyp
243
+ few: Prototypy
244
+ other: Prototypov
245
+ spree/refund_reason:
246
+ spree/reimbursement:
247
+ spree/reimbursement_type:
248
+ spree/return_authorization:
249
+ spree/return_authorization_reason:
250
+ spree/role:
251
+ one: Rola
252
+ few: Roly
253
+ oher: "Rôl"
254
+ spree/shipment:
255
+ one: "Doručenie"
256
+ few: "Doručenia"
257
+ other: "Doručení"
258
+ spree/shipping_category:
259
+ one: "Kategória doručenia"
260
+ few: "Kategórie doručenia"
261
+ other: "Kategórií doručenia"
262
+ spree/shipping_method:
263
+ one: "Spôsob doručenia"
264
+ few: "Spôsoby doručenia"
265
+ other: "Spôsobov doručenia"
266
+ spree/state:
267
+ one: Kraj
268
+ few: Kraje
269
+ other: Krajov
270
+ spree/state_change:
271
+ spree/stock_location:
272
+ spree/stock_movement:
273
+ spree/stock_transfer:
274
+ spree/tax_category:
275
+ spree/tax_rate:
276
+ one: "Sadzba dane"
277
+ few: "Sadzby dane"
278
+ other: "Sadzieb dane"
279
+ spree/taxon:
280
+ spree/taxonomy:
281
+ one: "Taxonómia"
282
+ few: "Taxonómie"
283
+ other: "Taxonómií"
284
+ spree/tracker:
285
+ spree/user:
286
+ one: "Používateľ"
287
+ few: "Používatelia"
288
+ other: "Používateľov"
289
+ spree/variant:
290
+ spree/zone:
291
+ one: "Zóna"
292
+ few: "Zóny"
293
+ other: "Zón"
294
+ devise:
295
+ confirmations:
296
+ confirmed:
297
+ send_instructions:
298
+ failure:
299
+ inactive:
300
+ invalid:
301
+ invalid_token:
302
+ locked:
303
+ timeout:
304
+ unauthenticated:
305
+ unconfirmed:
306
+ mailer:
307
+ confirmation_instructions:
308
+ subject:
309
+ reset_password_instructions:
310
+ subject:
311
+ unlock_instructions:
312
+ subject:
313
+ oauth_callbacks:
314
+ failure:
315
+ success:
316
+ unlocks:
317
+ send_instructions:
318
+ unlocked:
319
+ user_passwords:
320
+ user:
321
+ cannot_be_blank:
322
+ send_instructions:
323
+ updated:
324
+ user_registrations:
325
+ destroyed:
326
+ inactive_signed_up:
327
+ signed_up:
328
+ updated:
329
+ user_sessions:
330
+ signed_in:
331
+ signed_out:
332
+ errors:
333
+ messages:
334
+ already_confirmed:
335
+ not_found:
336
+ not_locked:
337
+ not_saved:
338
+ spree:
339
+ abbreviation: Skratka
340
+ accept:
341
+ acceptance_errors:
342
+ acceptance_status:
343
+ accepted:
344
+ account: "Účet"
345
+ account_updated: "Účet aktualizovaný"
346
+ action: Akcia
347
+ actions:
348
+ cancel: "Zrušiť"
349
+ continue: "Pokračovať"
350
+ create: "Vytvoriť"
351
+ destroy: "Zmazať"
352
+ edit: "Upraviť"
353
+ list: Zoznam
354
+ listing: Zoznam
355
+ new: Nový
356
+ refund:
357
+ save: "Uložiť"
358
+ update: "Aktualizovať"
359
+ activate: "Aktivovať"
360
+ active: "Aktívny"
361
+ add: "Pridať"
362
+ add_action_of_type: "Pridať akciu typu"
363
+ add_country: "Pridať štát"
364
+ add_coupon_code:
365
+ add_new_header: "Pridať novú hlavičku"
366
+ add_new_style: "Pridať nový štýl"
367
+ add_one: "Pridať jeden"
368
+ add_option_value: "Pridať novú voľbu"
369
+ add_product: "Pridať produkt"
370
+ add_product_properties: "Pridať vlastnosť produktu"
371
+ add_rule_of_type: "Pridať pravidlo typu"
372
+ add_state: "Pridať okres"
373
+ add_stock: "Pridať sklad"
374
+ add_stock_management: "Pridať správu skladu"
375
+ add_to_cart: "Pridať do košíka"
376
+ add_variant: "Pridať variant"
377
+ additional_item: "Ďaľšie náklady na tovar"
378
+ address1: Adresa
379
+ address2: Adresa (pokr.)
380
+ adjustable:
381
+ adjustment: "Úprava"
382
+ adjustment_amount:
383
+ adjustment_successfully_closed:
384
+ adjustment_successfully_opened:
385
+ adjustment_total:
386
+ adjustments:
387
+ admin:
388
+ tab:
389
+ configuration: "Konfigurácia"
390
+ option_types: "Typy volieb"
391
+ orders: "Objednávky"
392
+ overview: "Prahľad"
393
+ products: "Produkty"
394
+ promotions:
395
+ promotion_categories:
396
+ properties: "Vlastnosti"
397
+ prototypes: "Prototypy"
398
+ reports: "Výkazy"
399
+ taxonomies: "Taxonómie"
400
+ taxons:
401
+ users: "Používatelia"
402
+ user:
403
+ account: "Účet"
404
+ addresses: "Adresy"
405
+ items: "Položky"
406
+ items_purchased: "Zakúpené položky"
407
+ order_history: "História objednávok"
408
+ order_num: "Číslo objednávky"
409
+ orders: "Objednávky"
410
+ user_information:
411
+ administration: Administrácia
412
+ advertise:
413
+ agree_to_privacy_policy:
414
+ agree_to_terms_of_service:
415
+ all: Všetky
416
+ all_adjustments_closed:
417
+ all_adjustments_opened:
418
+ all_departments: "Všetky oddelenia"
419
+ all_items_have_been_returned:
420
+ allow_ssl_in_development_and_test:
421
+ allow_ssl_in_production:
422
+ allow_ssl_in_staging:
423
+ already_signed_up_for_analytics:
424
+ alt_text: "Alternatívny text"
425
+ alternative_phone: Iný telefónny kontakt
426
+ amount: Suma
427
+ analytics_desc_header_1:
428
+ analytics_desc_header_2:
429
+ analytics_desc_list_1:
430
+ analytics_desc_list_2:
431
+ analytics_desc_list_3:
432
+ analytics_desc_list_4:
433
+ analytics_trackers:
434
+ and: a
435
+ approve: "Schváliť"
436
+ approved_at: "Schválené"
437
+ approver: "Schválil"
438
+ are_you_sure: "Ste si istí?"
439
+ are_you_sure_delete: "Ste si istí, že chcete zmazať tento záznam?"
440
+ associated_adjustment_closed:
441
+ at_symbol: '@'
442
+ authorization_failure: "Chyba pri autorizácii"
443
+ authorized:
444
+ auto_capture:
445
+ available_on: Prístupný dňa
446
+ average_order_value: "Priemerná hodnota objednávky"
447
+ avs_response:
448
+ back: "Späť"
449
+ back_end:
450
+ back_to_payment: "Späť na platbu"
451
+ back_to_resource_list:
452
+ back_to_rma_reason_list:
453
+ back_to_store: "Späť do obchodu"
454
+ back_to_users_list: "Späť na zoznam používateľov"
455
+ backorderable:
456
+ backorderable_default:
457
+ backordered:
458
+ backorders_allowed:
459
+ balance_due:
460
+ base_amount:
461
+ base_percent:
462
+ bill_address: "Účtovanie na adresu"
463
+ billing:
464
+ billing_address: "Účtovná adresa"
465
+ both:
466
+ calculated_reimbursements:
467
+ calculator: Kalkulačka
468
+ calculator_settings_warning: Ak si prajete zmenu typu kalkulačky, je potrebné nastavenia najprv uložiť pred daľšími zmenami v nastaveniach kalkulačky.
469
+ cancel: zrušiť
470
+ canceled_at: "Zrušené"
471
+ canceler: "Zrušil"
472
+ cannot_create_customer_returns:
473
+ cannot_create_payment_without_payment_methods:
474
+ cannot_create_returns:
475
+ cannot_perform_operation: "Operácia sa nedá vykonať"
476
+ cannot_set_shipping_method_without_address:
477
+ capture: "zachytiť"
478
+ capture_events:
479
+ card_code: Kód karty
480
+ card_number: "Číslo karty"
481
+ card_type: "Typ karty"
482
+ card_type_is: Typ karty je
483
+ cart: Košík
484
+ cart_subtotal: "Medzisúčet"
485
+ categories: Kategórie
486
+ category: Kategória
487
+ charged:
488
+ check_for_spree_alerts:
489
+ checkout: Platba
490
+ choose_a_customer: "Zvoliť zákazníka"
491
+ choose_a_taxon_to_sort_products_for:
492
+ choose_currency: "Zvoliť menu"
493
+ choose_dashboard_locale: "Zvoliť národné prostredie pre nástenku"
494
+ choose_location: "Zvoliť miesto"
495
+ city: "Mesto/Obec"
496
+ clear_cache:
497
+ clear_cache_ok:
498
+ clear_cache_warning:
499
+ click_and_drag_on_the_products_to_sort_them:
500
+ clone:
501
+ close:
502
+ close_all_adjustments:
503
+ code: Kód
504
+ company: "Spoločnosť"
505
+ complete: celkom
506
+ configuration: Nastavenie
507
+ configurations: Nastavenia
508
+ confirm: "Potvrdiť"
509
+ confirm_delete: "Potvriť zmazanie"
510
+ confirm_password: Potvrdenie hesla
511
+ continue: "Pokračovať"
512
+ continue_shopping: "Pokračovať v nákupe"
513
+ cost_currency: "Mena nákladov"
514
+ cost_price: "Suma nákladov"
515
+ could_not_connect_to_jirafe:
516
+ could_not_create_customer_return:
517
+ could_not_create_stock_movement: "Vyskytol sa problém pri ukladaní tohoto skladového pohybu. Skúste prosím znova"
518
+ count_on_hand:
519
+ countries: "Štáty"
520
+ country: "Štát"
521
+ country_based: Krajina
522
+ country_name: "Názov"
523
+ country_names:
524
+ CA:
525
+ FRA:
526
+ ITA:
527
+ US:
528
+ coupon: "Kupón"
529
+ coupon_code:
530
+ coupon_code_already_applied:
531
+ coupon_code_applied:
532
+ coupon_code_better_exists:
533
+ coupon_code_expired:
534
+ coupon_code_max_usage:
535
+ coupon_code_not_eligible:
536
+ coupon_code_not_found:
537
+ coupon_code_unknown_error:
538
+ create: "Vytvoriť"
539
+ create_a_new_account: "Vytvoriť nový účet"
540
+ create_new_order: "Vytvoriť novú objednávku"
541
+ create_reimbursement:
542
+ created_at: "Vytvorené"
543
+ credit: "Kredit"
544
+ credit_card: "Kreditná karta"
545
+ credit_cards: "Kreditné karty"
546
+ credit_owed:
547
+ credits:
548
+ currency: "Mena"
549
+ currency_decimal_mark: "Znak desatinnej čiarky"
550
+ currency_settings: "Nastavenia meny"
551
+ currency_symbol_position: "Umiestniť znaku meny pred, alebo za sumu?"
552
+ currency_thousands_separator: "Oddeľovač tisícov"
553
+ current: "Aktuálny"
554
+ current_promotion_usage:
555
+ customer: "Zákazník"
556
+ customer_details: "Podrobnosti o zákazíkovi"
557
+ customer_details_updated: "Podrobnosti o zákazníkovi boli aktualizované."
558
+ customer_return:
559
+ customer_returns:
560
+ customer_search: "Vyhľadávanie zákazníkov"
561
+ cut: "Vyrezať"
562
+ cvv_response:
563
+ dash:
564
+ jirafe:
565
+ app_id:
566
+ app_token:
567
+ currently_unavailable:
568
+ explanation:
569
+ header:
570
+ site_id:
571
+ token:
572
+ jirafe_settings_updated:
573
+ date: "Dátum"
574
+ date_completed:
575
+ date_picker:
576
+ first_day: 1
577
+ format: "%d.%m.%Y"
578
+ js_format: dd.mm.rr
579
+ date_range: "Obdobie"
580
+ default:
581
+ default_refund_amount:
582
+ default_tax:
583
+ default_tax_zone:
584
+ delete: "Zmazať"
585
+ deleted_variants_present:
586
+ delivery: Doručenie
587
+ depth: "Hĺbka"
588
+ description: Popis
589
+ destination: "Miesto doručenia"
590
+ destroy: "Zrušiť"
591
+ details: "podrobnosti"
592
+ discount_amount:
593
+ dismiss_banner:
594
+ display: "Zobraziť"
595
+ display_currency:
596
+ doesnt_track_inventory:
597
+ edit: "Upraviť"
598
+ editing_resource:
599
+ editing_rma_reason:
600
+ editing_user: "Úprava používateľa"
601
+ eligibility_errors:
602
+ messages:
603
+ has_excluded_product:
604
+ item_total_less_than:
605
+ item_total_less_than_or_equal:
606
+ item_total_more_than:
607
+ item_total_more_than_or_equal:
608
+ limit_once_per_user:
609
+ missing_product:
610
+ missing_taxon:
611
+ no_applicable_products:
612
+ no_matching_taxons:
613
+ no_user_or_email_specified:
614
+ no_user_specified:
615
+ not_first_order:
616
+ email: Email
617
+ empty: Prázdny
618
+ empty_cart: "Prázdny košík"
619
+ enable_mail_delivery: Povolenie doručenie emailom
620
+ end:
621
+ ending_in:
622
+ environment:
623
+ error: chyba
624
+ errors:
625
+ messages:
626
+ could_not_create_taxon:
627
+ no_payment_methods_available: "Pre toto prostredie nie sú nastavené žiadne spôsoby platby"
628
+ no_shipping_methods_available: "Pre zvolenú lokalitu nie sú dostupné žiadne spôsoby doručenia, zmeňte prosím vašu adresu"
629
+ errors_prohibited_this_record_from_being_saved:
630
+ one: "1 chyba znemožnila uložiť tento záznam"
631
+ few: "%{count} chyby znemožnily uložiť tento záznam"
632
+ other: "%{count} chýb znemožnilo uložiť tento záznam"
633
+ event: "Udalosť"
634
+ events:
635
+ spree:
636
+ cart:
637
+ add: "Pridať do košíka"
638
+ checkout:
639
+ coupon_code_added:
640
+ content:
641
+ visited:
642
+ order:
643
+ contents_changed:
644
+ page_view:
645
+ user:
646
+ signup: "Registrácia používateľa"
647
+ exceptions:
648
+ count_on_hand_setter:
649
+ exchange_for:
650
+ excl:
651
+ existing_shipments:
652
+ expedited_exchanges_warning:
653
+ expiration: Expirácia
654
+ extension: Rozšírenie
655
+ failed_payment_attempts:
656
+ filename: Názov súboru
657
+ fill_in_customer_info:
658
+ filter_results:
659
+ finalize:
660
+ finalized:
661
+ find_a_taxon:
662
+ first_item: Cena prvej položky
663
+ first_name: "Krstné meno"
664
+ first_name_begins_with: "Krstné meno začína na"
665
+ flat_percent: "Pevné percento"
666
+ flat_rate_per_order: "Pevná sadzba (za objednávku)"
667
+ flexible_rate: "Pružná sadzba"
668
+ forgot_password: "Zabudnuté heslo"
669
+ free_shipping: "Doručenie zdarma"
670
+ free_shipping_amount:
671
+ front_end:
672
+ gateway: "Platobná brána"
673
+ gateway_config_unavailable:
674
+ gateway_error: Chyba brány
675
+ general: Všeobecné
676
+ general_settings: Všeobecné nastavenia
677
+ google_analytics:
678
+ google_analytics_id:
679
+ guest_checkout:
680
+ guest_user_account: K pokladnici ako hosť
681
+ has_no_shipped_units:
682
+ height: Výška
683
+ hide_cents: "Skryť centy"
684
+ home: Domov
685
+ i18n:
686
+ available_locales: "Dostupné národné prostredia"
687
+ language: "Jazyk"
688
+ localization_settings: "Nastavenia národného prostredia"
689
+ this_file_language: Slovenčina
690
+ icon: "Ikona"
691
+ identifier:
692
+ image: Obrázok
693
+ images: Obrázky
694
+ implement_eligible_for_return:
695
+ implement_requires_manual_intervention:
696
+ inactive: "Neaktívny"
697
+ incl:
698
+ included_in_price: "Zahrnuté v cene"
699
+ included_price_validation:
700
+ incomplete:
701
+ info_number_of_skus_not_shown:
702
+ info_product_has_multiple_skus:
703
+ instructions_to_reset_password:
704
+ insufficient_stock:
705
+ insufficient_stock_lines_present:
706
+ intercept_email_address:
707
+ intercept_email_instructions:
708
+ internal_name:
709
+ invalid_credit_card:
710
+ invalid_exchange_variant:
711
+ invalid_payment_provider:
712
+ invalid_promotion_action:
713
+ invalid_promotion_rule:
714
+ inventory: Sklad
715
+ inventory_adjustment: "Úprava skladu"
716
+ inventory_error_flash_for_insufficient_quantity:
717
+ inventory_state:
718
+ is_not_available_to_shipment_address:
719
+ iso_name:
720
+ item: Položka
721
+ item_description: Popis položky
722
+ item_total: Položky celkom
723
+ item_total_rule:
724
+ operators:
725
+ gt: "väčšie ako"
726
+ gte: "väčšie ako alebo rovné"
727
+ lt: "menšie ako"
728
+ lte: "menšie ako alebo rovné"
729
+ items_cannot_be_shipped:
730
+ items_in_rmas:
731
+ items_reimbursed:
732
+ items_to_be_reimbursed:
733
+ jirafe:
734
+ landing_page_rule:
735
+ path: Cesta
736
+ last_name: Priezvisko
737
+ last_name_begins_with: "Priezvisko začína na"
738
+ learn_more: "Viac informácií"
739
+ lifetime_stats:
740
+ line_item_adjustments:
741
+ list: Zoznam
742
+ loading: "Načítavanie"
743
+ locale_changed: "Národné prostredie zmenené"
744
+ location: "Umiestnenie"
745
+ lock: "Zamknúť"
746
+ log_entries:
747
+ logged_in_as: "Prihlásený ako"
748
+ logged_in_succesfully: "Úspešné prihlásenie"
749
+ logged_out: Odhlásili ste sa.
750
+ login: "Prihlásenie"
751
+ login_as_existing: Prihláste sa ako náš zákazník
752
+ login_failed: Nesprávne prihlasovacie údaje.
753
+ login_name: Prihlásenie
754
+ logout: Odhlásenie
755
+ logs:
756
+ look_for_similar_items: Hľadaj podobný tovar
757
+ make_refund:
758
+ make_sure_the_above_reimbursement_amount_is_correct:
759
+ manage_promotion_categories:
760
+ manage_variants:
761
+ manual_intervention_required:
762
+ master_price: Hlavná cena
763
+ match_choices:
764
+ all:
765
+ none:
766
+ max_items: Maximálny počet položiek
767
+ member_since:
768
+ memo:
769
+ meta_description: Meta-popis
770
+ meta_keywords: Meta-kľúčové slová
771
+ meta_title:
772
+ metadata: Metaúdaje
773
+ minimal_amount: "Minimálne množstvo"
774
+ month: Mesiac
775
+ more: Viac
776
+ move_stock_between_locations:
777
+ my_account: Môj účet
778
+ my_orders: Moje objednávky
779
+ name: Meno
780
+ name_on_card: "Meno na karte"
781
+ name_or_sku: "Názov alebo SKU"
782
+ new: Nové
783
+ new_adjustment:
784
+ new_country:
785
+ new_customer: Nový zákazník
786
+ new_customer_return:
787
+ new_image: Nový obrázok
788
+ new_option_type: Nový typ volieb
789
+ new_order: Nová objednávka
790
+ new_order_completed:
791
+ new_payment: "Nová platba"
792
+ new_payment_method: "Nový spôsob platby"
793
+ new_product: Nový produkt
794
+ new_promotion: New Promotion
795
+ new_promotion_category:
796
+ new_property: Nová vlastnosť
797
+ new_prototype: Nový prototyp
798
+ new_refund:
799
+ new_refund_reason:
800
+ new_return_authorization:
801
+ new_rma_reason:
802
+ new_shipment_at_location:
803
+ new_shipping_category: Nová kategória doručenia
804
+ new_shipping_method: "Nový spôsob doručenia"
805
+ new_state: "Nový okres"
806
+ new_stock_location:
807
+ new_stock_movement:
808
+ new_stock_transfer:
809
+ new_tax_category: Nová kategória dane
810
+ new_tax_rate: Nová sadzba dane
811
+ new_taxon: Nový taxón
812
+ new_taxonomy: Nová taxonómia
813
+ new_tracker:
814
+ new_user: Nový používateľ
815
+ new_variant: Nový variant
816
+ new_zone: Nová zóna
817
+ next: "Ďaľšie"
818
+ no_actions_added:
819
+ no_payment_found:
820
+ no_pending_payments:
821
+ no_products_found: Nenašli sme žiadny produkt
822
+ no_resource_found:
823
+ no_results: "Žiadne výsledky"
824
+ no_returns_found:
825
+ no_rules_added:
826
+ no_shipping_method_selected:
827
+ no_state_changes:
828
+ no_tracking_present:
829
+ none: "Žiadny"
830
+ none_selected:
831
+ normal_amount:
832
+ not: nie
833
+ not_available: N/A
834
+ not_enough_stock:
835
+ not_found:
836
+ note:
837
+ notice_messages:
838
+ product_cloned:
839
+ product_deleted:
840
+ product_not_cloned:
841
+ product_not_deleted:
842
+ variant_deleted:
843
+ variant_not_deleted:
844
+ num_orders:
845
+ on_hand: Na sklade
846
+ open:
847
+ open_all_adjustments:
848
+ option_type:
849
+ option_type_placeholder:
850
+ option_types: "Typy volieb"
851
+ option_value: Option Value
852
+ option_values: Hodnoty opcií
853
+ optional: "Voliteľný"
854
+ options: "Voľby"
855
+ or: alebo
856
+ or_over_price: "%{price} alebo viac"
857
+ order: Objednávka
858
+ order_adjustments: Order adjustments
859
+ order_already_updated:
860
+ order_approved:
861
+ order_canceled:
862
+ order_details: Detaily objednávky
863
+ order_email_resent: Email objednávky bol opäť poslaný
864
+ order_information:
865
+ order_mailer:
866
+ cancel_email:
867
+ dear_customer:
868
+ instructions:
869
+ order_summary_canceled:
870
+ subject:
871
+ subtotal:
872
+ total:
873
+ confirm_email:
874
+ dear_customer:
875
+ instructions:
876
+ order_summary:
877
+ subject:
878
+ subtotal:
879
+ thanks:
880
+ total:
881
+ order_not_found:
882
+ order_number:
883
+ order_processed_successfully: Vaša objednávka bola spracovaná úspešne
884
+ order_resumed:
885
+ order_state:
886
+ address: adresa
887
+ awaiting_return: "čaká na vrátenie"
888
+ canceled: zrušené
889
+ cart: košík
890
+ complete: zhrnutie
891
+ confirm: potvrdenie
892
+ considered_risky:
893
+ delivery: doručenie
894
+ payment: platba
895
+ resumed: obnovené
896
+ returned: vrátené
897
+ order_summary: Sumár objednávky
898
+ order_sure_want_to:
899
+ order_total: Objednávka celkom
900
+ order_updated: Objednávka zmenená
901
+ orders: Objednávky
902
+ other_items_in_other:
903
+ out_of_stock: Nie je na sklade
904
+ overview: Prehľad
905
+ package_from:
906
+ pagination:
907
+ next_page:
908
+ previous_page:
909
+ truncate:
910
+ password: Heslo
911
+ paste: Paste
912
+ path: Cesta
913
+ pay: platba
914
+ payment: Platba
915
+ payment_could_not_be_created:
916
+ payment_identifier:
917
+ payment_information: Informácia o platení
918
+ payment_method:
919
+ payment_method_not_supported:
920
+ payment_methods:
921
+ payment_processing_failed:
922
+ payment_processor_choose_banner_text:
923
+ payment_processor_choose_link:
924
+ payment_state:
925
+ payment_states:
926
+ balance_due:
927
+ checkout:
928
+ completed:
929
+ credit_owed:
930
+ failed:
931
+ paid:
932
+ pending:
933
+ processing:
934
+ void:
935
+ payment_updated:
936
+ payments: Platba
937
+ pending:
938
+ percent:
939
+ percent_per_item:
940
+ permalink:
941
+ phone: Telefón
942
+ place_order: Objednávka
943
+ please_define_payment_methods:
944
+ populate_get_error:
945
+ powered_by: používame
946
+ pre_tax_amount:
947
+ pre_tax_refund_amount:
948
+ pre_tax_total:
949
+ preferred_reimbursement_type:
950
+ presentation: Prezentácia
951
+ previous: Predchádzajúci
952
+ previous_state_missing:
953
+ price: Cena
954
+ price_range: Cenové rozpätie
955
+ price_sack:
956
+ process: Spracuj
957
+ product:
958
+ product_details: Detaily o produkte
959
+ product_has_no_description: Produkt nemá popis
960
+ product_not_available_in_this_currency:
961
+ product_properties: Vlastnosti produktu
962
+ product_rule:
963
+ choose_products:
964
+ label:
965
+ match_all:
966
+ match_any:
967
+ match_none:
968
+ product_source:
969
+ group:
970
+ manual:
971
+ products:
972
+ promotion:
973
+ promotion_action:
974
+ promotion_action_types:
975
+ create_adjustment:
976
+ description:
977
+ name:
978
+ create_item_adjustments:
979
+ description:
980
+ name:
981
+ create_line_items:
982
+ description:
983
+ name:
984
+ free_shipping:
985
+ description:
986
+ name:
987
+ promotion_actions:
988
+ promotion_form:
989
+ match_policies:
990
+ all:
991
+ any:
992
+ promotion_rule:
993
+ promotion_rule_types:
994
+ first_order:
995
+ description:
996
+ name:
997
+ item_total:
998
+ description:
999
+ name:
1000
+ landing_page:
1001
+ description:
1002
+ name:
1003
+ one_use_per_user:
1004
+ description:
1005
+ name:
1006
+ option_value:
1007
+ description:
1008
+ name:
1009
+ product:
1010
+ description:
1011
+ name:
1012
+ taxon:
1013
+ description:
1014
+ name:
1015
+ user:
1016
+ description:
1017
+ name:
1018
+ user_logged_in:
1019
+ description:
1020
+ name:
1021
+ promotion_uses:
1022
+ promotionable:
1023
+ promotions:
1024
+ propagate_all_variants:
1025
+ properties: Vlastnosti
1026
+ property: Vlastnosť
1027
+ prototype: Prototyp
1028
+ prototypes: Prototypy
1029
+ provider:
1030
+ provider_settings_warning:
1031
+ qty: Množstvo
1032
+ quantity:
1033
+ quantity_returned:
1034
+ quantity_shipped:
1035
+ quick_search:
1036
+ rate: Sadzba
1037
+ reason:
1038
+ receive:
1039
+ receive_stock:
1040
+ received:
1041
+ reception_status:
1042
+ reference:
1043
+ refund:
1044
+ refund_amount_must_be_greater_than_zero:
1045
+ refund_reasons:
1046
+ refunded_amount:
1047
+ refunds:
1048
+ register: Registruj sa ako nový používateľ
1049
+ registration: Registrácia
1050
+ reimburse:
1051
+ reimbursed:
1052
+ reimbursement:
1053
+ reimbursement_mailer:
1054
+ reimbursement_email:
1055
+ days_to_send:
1056
+ dear_customer:
1057
+ exchange_summary:
1058
+ for:
1059
+ instructions:
1060
+ refund_summary:
1061
+ subject:
1062
+ total_refunded:
1063
+ reimbursement_perform_failed:
1064
+ reimbursement_status:
1065
+ reimbursement_type:
1066
+ reimbursement_type_override:
1067
+ reimbursement_types:
1068
+ reimbursements:
1069
+ reject:
1070
+ rejected:
1071
+ remember_me: Zapamätaj si ma
1072
+ remove: Odstráň
1073
+ rename: Rename
1074
+ report:
1075
+ reports: Reporty
1076
+ resend: Pošli opäť
1077
+ reset_password: Vygeneruj heslo
1078
+ response_code: Kód odpovede
1079
+ resume: pokračovať
1080
+ resumed: Obnovený
1081
+ return: vrátiť sa
1082
+ return_authorization:
1083
+ return_authorization_reasons:
1084
+ return_authorization_updated:
1085
+ return_authorizations:
1086
+ return_item_inventory_unit_ineligible:
1087
+ return_item_inventory_unit_reimbursed:
1088
+ return_item_rma_ineligible:
1089
+ return_item_time_period_ineligible:
1090
+ return_items:
1091
+ return_items_cannot_be_associated_with_multiple_orders:
1092
+ return_number:
1093
+ return_quantity:
1094
+ returned: Vrátené
1095
+ returns:
1096
+ review: Review
1097
+ risk:
1098
+ risk_analysis:
1099
+ risky:
1100
+ rma_credit: RMA Credit
1101
+ rma_number: RMA Number
1102
+ rma_value: RMA Value
1103
+ roles: Roly
1104
+ rules:
1105
+ safe:
1106
+ sales_total: Tržby spolu
1107
+ sales_total_description: Sales Total For All Orders
1108
+ sales_totals:
1109
+ save_and_continue: Ulož a pokračuj
1110
+ save_my_address:
1111
+ say_no:
1112
+ say_yes:
1113
+ scope: Scope
1114
+ search: Hľadaj
1115
+ search_results:
1116
+ searching: Searching
1117
+ secure_connection_type: Bezpečná konekcia
1118
+ security_settings: Security Settings
1119
+ select: Vyber
1120
+ select_a_return_authorization_reason:
1121
+ select_a_stock_location:
1122
+ select_from_prototype: Vyber z prototypov
1123
+ select_stock:
1124
+ send_copy_of_all_mails_to: Pošli kópiu všetkých emailov na
1125
+ send_mails_as: Pošli email ako
1126
+ server: Server
1127
+ server_error: Server vrátil chybu
1128
+ settings: Nastavenia
1129
+ ship: zašli
1130
+ ship_address: Adresa zásielky
1131
+ ship_total:
1132
+ shipment: Zásielka
1133
+ shipment_adjustments:
1134
+ shipment_details:
1135
+ shipment_mailer:
1136
+ shipped_email:
1137
+ dear_customer:
1138
+ instructions:
1139
+ shipment_summary:
1140
+ subject:
1141
+ thanks:
1142
+ track_information:
1143
+ track_link:
1144
+ shipment_state:
1145
+ shipment_states:
1146
+ backorder:
1147
+ canceled:
1148
+ partial:
1149
+ pending:
1150
+ ready:
1151
+ shipped:
1152
+ shipment_transfer_error:
1153
+ shipment_transfer_success:
1154
+ shipments:
1155
+ shipped: Zaslané
1156
+ shipping: Doručenie
1157
+ shipping_address: Adresa doručenia
1158
+ shipping_categories: Kategórie doručenia
1159
+ shipping_category: Kategórie doručenia
1160
+ shipping_flat_rate_per_item:
1161
+ shipping_flat_rate_per_order:
1162
+ shipping_flexible_rate:
1163
+ shipping_instructions: Inštrukcie doručenia
1164
+ shipping_method: Metóda doručenia
1165
+ shipping_methods: Metódy doručenia
1166
+ shipping_price_sack:
1167
+ shipping_total:
1168
+ shop_by_taxonomy: "%{taxonomy}"
1169
+ shopping_cart: Nákupný košík
1170
+ show:
1171
+ show_active:
1172
+ show_deleted: Zobraz vymazané
1173
+ show_only_complete_orders: Zobraz iba úplné objednávky
1174
+ show_only_considered_risky:
1175
+ show_rate_in_label:
1176
+ sku:
1177
+ skus:
1178
+ slug:
1179
+ source:
1180
+ special_instructions:
1181
+ split:
1182
+ spree_gateway_error_flash_for_checkout:
1183
+ ssl:
1184
+ change_protocol:
1185
+ start: "Štart"
1186
+ state: "Štát"
1187
+ state_based: "Štát"
1188
+ state_machine_states:
1189
+ accepted:
1190
+ address:
1191
+ authorized:
1192
+ awaiting:
1193
+ awaiting_return:
1194
+ backordered:
1195
+ canceled:
1196
+ cart:
1197
+ checkout:
1198
+ closed:
1199
+ complete:
1200
+ completed:
1201
+ confirm:
1202
+ delivery:
1203
+ errored:
1204
+ failed:
1205
+ given_to_customer:
1206
+ invalid:
1207
+ manual_intervention_required:
1208
+ on_hand:
1209
+ open:
1210
+ order:
1211
+ payment:
1212
+ pending:
1213
+ processing:
1214
+ ready:
1215
+ reimbursed:
1216
+ resumed:
1217
+ returned:
1218
+ shipped:
1219
+ void:
1220
+ states: "Štáty/Provincie"
1221
+ states_required:
1222
+ status: Stavy
1223
+ stock:
1224
+ stock_location:
1225
+ stock_location_info:
1226
+ stock_locations:
1227
+ stock_locations_need_a_default_country:
1228
+ stock_management:
1229
+ stock_management_requires_a_stock_location:
1230
+ stock_movements:
1231
+ stock_movements_for_stock_location:
1232
+ stock_successfully_transferred:
1233
+ stock_transfer:
1234
+ stock_transfers:
1235
+ stop:
1236
+ store: Obchod
1237
+ street_address: Ulica
1238
+ street_address_2: Ulica (pokr.)
1239
+ subtotal: Medzisúčet
1240
+ subtract: Odrátaj
1241
+ success:
1242
+ successfully_created:
1243
+ successfully_refunded:
1244
+ successfully_removed:
1245
+ successfully_signed_up_for_analytics:
1246
+ successfully_updated:
1247
+ summary:
1248
+ tax: Daň
1249
+ tax_categories: Kategórie daní
1250
+ tax_category: Kategória daní
1251
+ tax_code:
1252
+ tax_included:
1253
+ tax_rate_amount_explanation:
1254
+ tax_rates: Sadzby daní
1255
+ taxon: Taxón
1256
+ taxon_edit:
1257
+ taxon_placeholder:
1258
+ taxon_rule:
1259
+ choose_taxons:
1260
+ label:
1261
+ match_all:
1262
+ match_any:
1263
+ taxonomies: Taxonómie
1264
+ taxonomy: Taxonomy
1265
+ taxonomy_edit: Zmeň taxonómiu
1266
+ taxonomy_tree_error: Požadovaná zmena nebola akceptovaná a strom bol zmenený do predchádzajúceho stavu, prosím skúste znova.
1267
+ taxonomy_tree_instruction: "* Pravým klikom na potomok v strome pristúpite k menu na pridávanie, mazanie a triedenie potomkov."
1268
+ taxons: Taxóny
1269
+ test:
1270
+ test_mailer:
1271
+ test_email:
1272
+ greeting:
1273
+ message:
1274
+ subject:
1275
+ test_mode:
1276
+ thank_you_for_your_order: "Ďakujeme za Vašu objednávku. Prosím vytlačte kópiu toto potvrdenie pre Vaše položky objednávky."
1277
+ there_are_no_items_for_this_order:
1278
+ there_were_problems_with_the_following_fields:
1279
+ this_order_has_already_received_a_refund:
1280
+ thumbnail: Miniatúra
1281
+ tiered_flat_rate:
1282
+ tiered_percent:
1283
+ tiers:
1284
+ time:
1285
+ to_add_variants_you_must_first_define: K pridaniu variánt, najprv musíte určiť
1286
+ total: Celkom
1287
+ total_per_item:
1288
+ total_pre_tax_refund:
1289
+ total_price:
1290
+ total_sales:
1291
+ track_inventory:
1292
+ tracking: Sledovanie
1293
+ tracking_number:
1294
+ tracking_url:
1295
+ tracking_url_placeholder:
1296
+ transaction_id:
1297
+ transfer_from_location:
1298
+ transfer_stock:
1299
+ transfer_to_location:
1300
+ tree: Strom
1301
+ type: Typ
1302
+ type_to_search:
1303
+ unable_to_connect_to_gateway:
1304
+ unable_to_create_reimbursements:
1305
+ under_price: Menej ako %{price}
1306
+ unlock:
1307
+ unrecognized_card_type: Neznámy typ kreditnej karty
1308
+ unshippable_items:
1309
+ update: Zmeň
1310
+ updating: Obnovuje sa
1311
+ usage_limit: Limit použitia
1312
+ use_app_default:
1313
+ use_billing_address: Použi ako adresu platby
1314
+ use_new_cc:
1315
+ use_s3:
1316
+ user: Používateľ
1317
+ user_rule:
1318
+ choose_users:
1319
+ users: Používatelia
1320
+ validation:
1321
+ cannot_be_less_than_shipped_units:
1322
+ cannot_destroy_line_item_as_inventory_units_have_shipped:
1323
+ exceeds_available_stock:
1324
+ is_too_large:
1325
+ must_be_int:
1326
+ must_be_non_negative:
1327
+ unpaid_amount_not_zero:
1328
+ value: Hodnota
1329
+ variant: Variant
1330
+ variant_placeholder:
1331
+ variants: Varianty
1332
+ version: Verzia
1333
+ void: Void
1334
+ weight: Váha
1335
+ what_is_a_cvv: Aký je (CVV) kód kreditnej karty?
1336
+ what_is_this: "Čo to je?"
1337
+ width: "Šírka"
1338
+ year: Rok
1339
+ you_have_no_orders_yet:
1340
+ your_cart_is_empty: Váš košík je prázdny
1341
+ your_order_is_empty_add_product:
1342
+ zip: PSČ
1343
+ zipcode:
1344
+ zone: Zóna
1345
+ zones: Zóny