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,1288 @@
1
+ sl-SI:
2
+ activerecord:
3
+ attributes:
4
+ spree/address:
5
+ address1:
6
+ address2:
7
+ city:
8
+ country:
9
+ firstname:
10
+ lastname:
11
+ phone:
12
+ state:
13
+ zipcode:
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:
22
+ iso3:
23
+ iso_name:
24
+ name:
25
+ numcode:
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:
45
+ considered_risky:
46
+ coupon_code:
47
+ created_at:
48
+ email:
49
+ ip_address:
50
+ item_total:
51
+ number:
52
+ payment_state:
53
+ shipment_state:
54
+ special_instructions:
55
+ state:
56
+ total:
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:
75
+ spree/payment_method:
76
+ name:
77
+ spree/product:
78
+ available_on:
79
+ cost_currency:
80
+ cost_price:
81
+ description:
82
+ master_price:
83
+ name:
84
+ on_hand:
85
+ shipping_category:
86
+ tax_category:
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:
101
+ presentation:
102
+ spree/prototype:
103
+ name:
104
+ spree/return_authorization:
105
+ amount:
106
+ spree/role:
107
+ name:
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:
128
+ name:
129
+ spree/tax_rate:
130
+ amount:
131
+ included_in_price:
132
+ show_rate_in_label:
133
+ spree/taxon:
134
+ name:
135
+ permalink:
136
+ position:
137
+ spree/taxonomy:
138
+ name:
139
+ spree/user:
140
+ email:
141
+ password:
142
+ password_confirmation:
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:
154
+ 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
+ spree/country:
204
+ spree/credit_card:
205
+ spree/customer_return:
206
+ spree/inventory_unit:
207
+ spree/line_item:
208
+ spree/option_type:
209
+ spree/option_value:
210
+ spree/order:
211
+ spree/payment:
212
+ spree/payment_method:
213
+ spree/product:
214
+ spree/promotion:
215
+ spree/promotion_category:
216
+ spree/property:
217
+ spree/prototype:
218
+ spree/refund_reason:
219
+ spree/reimbursement:
220
+ spree/reimbursement_type:
221
+ spree/return_authorization:
222
+ spree/return_authorization_reason:
223
+ spree/role:
224
+ spree/shipment:
225
+ spree/shipping_category:
226
+ spree/shipping_method:
227
+ spree/state:
228
+ spree/state_change:
229
+ spree/stock_location:
230
+ spree/stock_movement:
231
+ spree/stock_transfer:
232
+ spree/tax_category:
233
+ spree/tax_rate:
234
+ spree/taxon:
235
+ spree/taxonomy:
236
+ spree/tracker:
237
+ spree/user:
238
+ spree/variant:
239
+ spree/zone:
240
+ devise:
241
+ confirmations:
242
+ confirmed:
243
+ send_instructions:
244
+ failure:
245
+ inactive:
246
+ invalid:
247
+ invalid_token:
248
+ locked:
249
+ timeout:
250
+ unauthenticated:
251
+ unconfirmed:
252
+ mailer:
253
+ confirmation_instructions:
254
+ subject:
255
+ reset_password_instructions:
256
+ subject:
257
+ unlock_instructions:
258
+ subject:
259
+ oauth_callbacks:
260
+ failure:
261
+ success:
262
+ unlocks:
263
+ send_instructions:
264
+ unlocked:
265
+ user_passwords:
266
+ user:
267
+ cannot_be_blank:
268
+ send_instructions:
269
+ updated:
270
+ user_registrations:
271
+ destroyed:
272
+ inactive_signed_up:
273
+ signed_up:
274
+ updated:
275
+ user_sessions:
276
+ signed_in:
277
+ signed_out:
278
+ errors:
279
+ messages:
280
+ already_confirmed:
281
+ not_found:
282
+ not_locked:
283
+ not_saved:
284
+ spree:
285
+ abbreviation: Okrajšava
286
+ accept:
287
+ acceptance_errors:
288
+ acceptance_status:
289
+ accepted:
290
+ account: Uporabniški račun
291
+ account_updated: Uporabniški račun osvežen!
292
+ action: Možnosti
293
+ actions:
294
+ cancel: Prekini
295
+ continue:
296
+ create: Ustvari
297
+ destroy: Izbriši
298
+ edit:
299
+ list: Prikaz
300
+ listing: Prikazujem
301
+ new: Dodaj
302
+ refund:
303
+ save:
304
+ update: Posodobi
305
+ activate: Activate
306
+ active: Objavljeno
307
+ add: Dodaj
308
+ add_action_of_type: Add action of type
309
+ add_country: Dodaj Državo
310
+ add_coupon_code:
311
+ add_new_header: Add New Header
312
+ add_new_style: Add New Style
313
+ add_one:
314
+ add_option_value: Dodaj izbiro
315
+ add_product: Dodaj izdelek
316
+ add_product_properties: Dodaj lastnosti izdelka
317
+ add_rule_of_type: Dodaj tip pravila
318
+ add_state: Dodaj pokraijno
319
+ add_stock:
320
+ add_stock_management:
321
+ add_to_cart: Dodaj v košarico
322
+ add_variant:
323
+ additional_item: Additional Item Cost
324
+ address1:
325
+ address2:
326
+ adjustable:
327
+ adjustment: Prilagoditev
328
+ adjustment_amount:
329
+ adjustment_successfully_closed:
330
+ adjustment_successfully_opened:
331
+ adjustment_total: Prilagoditev Skupaj
332
+ adjustments: Prilagoditve
333
+ admin:
334
+ tab:
335
+ configuration:
336
+ option_types:
337
+ orders:
338
+ overview:
339
+ products:
340
+ promotions:
341
+ promotion_categories:
342
+ properties:
343
+ prototypes:
344
+ reports:
345
+ taxonomies:
346
+ taxons:
347
+ users:
348
+ user:
349
+ account:
350
+ addresses:
351
+ items:
352
+ items_purchased:
353
+ order_history:
354
+ order_num:
355
+ orders:
356
+ user_information:
357
+ administration: Administracija
358
+ advertise:
359
+ agree_to_privacy_policy:
360
+ agree_to_terms_of_service:
361
+ all: Vse
362
+ all_adjustments_closed:
363
+ all_adjustments_opened:
364
+ all_departments: Vsi oddelki
365
+ all_items_have_been_returned:
366
+ allow_ssl_in_development_and_test:
367
+ allow_ssl_in_production:
368
+ allow_ssl_in_staging:
369
+ already_signed_up_for_analytics:
370
+ alt_text: Alternativni tekst
371
+ alternative_phone: Drugi telefon
372
+ amount: Znesek
373
+ analytics_desc_header_1:
374
+ analytics_desc_header_2:
375
+ analytics_desc_list_1:
376
+ analytics_desc_list_2:
377
+ analytics_desc_list_3:
378
+ analytics_desc_list_4:
379
+ analytics_trackers: Statistike
380
+ and:
381
+ approve:
382
+ approved_at:
383
+ approver:
384
+ are_you_sure: Ste prepričani?
385
+ are_you_sure_delete: Ste prepričani, da želite izbrisati ta vnos?
386
+ associated_adjustment_closed:
387
+ at_symbol: '@'
388
+ authorization_failure: Napaka pri avtorizaciji
389
+ authorized:
390
+ auto_capture:
391
+ available_on: Na voljo
392
+ average_order_value:
393
+ avs_response:
394
+ back: Nazaj
395
+ back_end: Nazaj na Konec
396
+ back_to_payment:
397
+ back_to_resource_list:
398
+ back_to_rma_reason_list:
399
+ back_to_store: Nazaj v trgovino
400
+ back_to_users_list:
401
+ backorderable:
402
+ backorderable_default:
403
+ backordered:
404
+ backorders_allowed:
405
+ balance_due: Balance Due
406
+ base_amount:
407
+ base_percent:
408
+ bill_address: Naslov za Račun
409
+ billing: Račun
410
+ billing_address: Naslov za Račun
411
+ both: Oboje
412
+ calculated_reimbursements:
413
+ calculator: Kalkulator
414
+ calculator_settings_warning: "Če spreminjate tip kalkulatorja, morate pred urejanjem nastavitev najprej shraniti."
415
+ cancel: prekini
416
+ canceled_at:
417
+ canceler:
418
+ cannot_create_customer_returns:
419
+ cannot_create_payment_without_payment_methods: You cannot create a payment for an order without any payment methods defined.
420
+ cannot_create_returns: Ne morem generirati vračil, ker naročilo še ni bilo poslano.
421
+ cannot_perform_operation: Ni mogoče izvesti zahtevane operacije
422
+ cannot_set_shipping_method_without_address:
423
+ capture: zajemi
424
+ capture_events:
425
+ card_code: Koda Kartice
426
+ card_number: "Številka Kartice"
427
+ card_type:
428
+ card_type_is: Tip kartice je
429
+ cart: Košarica
430
+ cart_subtotal:
431
+ categories: Kategorije
432
+ category: Kategorija
433
+ charged:
434
+ check_for_spree_alerts:
435
+ checkout: Naročilo
436
+ choose_a_customer:
437
+ choose_a_taxon_to_sort_products_for:
438
+ choose_currency:
439
+ choose_dashboard_locale:
440
+ choose_location:
441
+ city: Mesto
442
+ clear_cache:
443
+ clear_cache_ok:
444
+ clear_cache_warning:
445
+ click_and_drag_on_the_products_to_sort_them:
446
+ clone: Kloniraj
447
+ close:
448
+ close_all_adjustments:
449
+ code: Koda
450
+ company:
451
+ complete: complete
452
+ configuration: Nastavitev
453
+ configurations: Nastavitve
454
+ confirm: Potrdi
455
+ confirm_delete: Potrdi izbris?
456
+ confirm_password: Potrditev gesla
457
+ continue: Nadaljuj
458
+ continue_shopping: Nadaljuj z nakupovanjem
459
+ cost_currency:
460
+ cost_price: Nabavna Cena
461
+ could_not_connect_to_jirafe:
462
+ could_not_create_customer_return:
463
+ could_not_create_stock_movement:
464
+ count_on_hand:
465
+ countries:
466
+ country: Država
467
+ country_based: Glede na Države
468
+ country_name:
469
+ country_names:
470
+ CA:
471
+ FRA:
472
+ ITA:
473
+ US:
474
+ coupon: Kupon
475
+ coupon_code: Koda kupona
476
+ coupon_code_already_applied:
477
+ coupon_code_applied:
478
+ coupon_code_better_exists:
479
+ coupon_code_expired:
480
+ coupon_code_max_usage:
481
+ coupon_code_not_eligible:
482
+ coupon_code_not_found:
483
+ coupon_code_unknown_error:
484
+ create: Ustvari
485
+ create_a_new_account: Ustvari nov račun
486
+ create_new_order:
487
+ create_reimbursement:
488
+ created_at:
489
+ credit: Kredit
490
+ credit_card: Kreditna kartica
491
+ credit_cards:
492
+ credit_owed:
493
+ credits:
494
+ currency:
495
+ currency_decimal_mark:
496
+ currency_settings:
497
+ currency_symbol_position:
498
+ currency_thousands_separator:
499
+ current: Trenutno
500
+ current_promotion_usage:
501
+ customer: Stranka
502
+ customer_details: Podrobnosti stranke
503
+ customer_details_updated:
504
+ customer_return:
505
+ customer_returns:
506
+ customer_search: Iskanje strank
507
+ cut:
508
+ cvv_response:
509
+ dash:
510
+ jirafe:
511
+ app_id:
512
+ app_token:
513
+ currently_unavailable:
514
+ explanation:
515
+ header:
516
+ site_id:
517
+ token:
518
+ jirafe_settings_updated:
519
+ date:
520
+ date_completed:
521
+ date_picker:
522
+ first_day:
523
+ format:
524
+ js_format:
525
+ date_range: Obdobje
526
+ default: Privzeto
527
+ default_refund_amount:
528
+ default_tax:
529
+ default_tax_zone:
530
+ delete: Izbriši
531
+ deleted_variants_present:
532
+ delivery: Delivery
533
+ depth: Globina
534
+ description: Opis
535
+ destination:
536
+ destroy: Izbriši
537
+ details:
538
+ discount_amount: Znesek popusta
539
+ dismiss_banner:
540
+ display: Prikaži
541
+ display_currency: Display currency
542
+ doesnt_track_inventory:
543
+ edit: Uredi
544
+ editing_resource:
545
+ editing_rma_reason:
546
+ editing_user: Urejanje uporabnika
547
+ eligibility_errors:
548
+ messages:
549
+ has_excluded_product:
550
+ item_total_less_than:
551
+ item_total_less_than_or_equal:
552
+ item_total_more_than:
553
+ item_total_more_than_or_equal:
554
+ limit_once_per_user:
555
+ missing_product:
556
+ missing_taxon:
557
+ no_applicable_products:
558
+ no_matching_taxons:
559
+ no_user_or_email_specified:
560
+ no_user_specified:
561
+ not_first_order:
562
+ email:
563
+ empty: Izprazni
564
+ empty_cart: Izprazni košarico
565
+ enable_mail_delivery: Vklopi pošiljanje emailov
566
+ end:
567
+ ending_in:
568
+ environment: Okolje
569
+ error: napaka
570
+ errors:
571
+ messages:
572
+ could_not_create_taxon:
573
+ no_payment_methods_available:
574
+ no_shipping_methods_available:
575
+ errors_prohibited_this_record_from_being_saved:
576
+ event: Dogodek
577
+ events:
578
+ spree:
579
+ cart:
580
+ add:
581
+ checkout:
582
+ coupon_code_added:
583
+ content:
584
+ visited:
585
+ order:
586
+ contents_changed:
587
+ page_view:
588
+ user:
589
+ signup:
590
+ exceptions:
591
+ count_on_hand_setter:
592
+ exchange_for:
593
+ excl:
594
+ existing_shipments:
595
+ expedited_exchanges_warning:
596
+ expiration: Velja do
597
+ extension: Razširitev
598
+ failed_payment_attempts:
599
+ filename: Datoteka
600
+ fill_in_customer_info:
601
+ filter_results:
602
+ finalize: Zaključi
603
+ finalized:
604
+ find_a_taxon:
605
+ first_item: Strošek prvega izdelka
606
+ first_name: Ime
607
+ first_name_begins_with: Ime se začne z
608
+ flat_percent: Fiksni odstotek
609
+ flat_rate_per_order: Fiksna cena (na naročilo)
610
+ flexible_rate: Fleksibilna cena
611
+ forgot_password: Ne spomnim se gesla
612
+ free_shipping: Brezplačna dostava
613
+ free_shipping_amount:
614
+ front_end: Front End
615
+ gateway: Ponudnik
616
+ gateway_config_unavailable: Gateway unavailable for environment
617
+ gateway_error: Napaka ponudnika
618
+ general: Splošno
619
+ general_settings: Splošne nastavitve
620
+ google_analytics: Google Analytics
621
+ google_analytics_id: Analytics ID
622
+ guest_checkout: Naročilo za goste
623
+ guest_user_account: Naroči kot gost
624
+ has_no_shipped_units: nima prodajnih enot
625
+ height: Višina
626
+ hide_cents:
627
+ home: Domov
628
+ i18n:
629
+ available_locales:
630
+ language:
631
+ localization_settings:
632
+ this_file_language: Slovenščina (SL)
633
+ icon: Ikona
634
+ identifier:
635
+ image: Slika
636
+ images: Slike
637
+ implement_eligible_for_return:
638
+ implement_requires_manual_intervention:
639
+ inactive:
640
+ incl:
641
+ included_in_price:
642
+ included_price_validation:
643
+ incomplete:
644
+ info_number_of_skus_not_shown:
645
+ info_product_has_multiple_skus:
646
+ instructions_to_reset_password: 'Izpolnite spodnji obrazec in navodila za ponastavitev gesla vam bomo poslali na email:'
647
+ insufficient_stock:
648
+ insufficient_stock_lines_present:
649
+ intercept_email_address: Prestrezi Email naslov
650
+ intercept_email_instructions: Zamenjaj prejemnika email sporočila s tem naslovom
651
+ internal_name:
652
+ invalid_credit_card:
653
+ invalid_exchange_variant:
654
+ invalid_payment_provider:
655
+ invalid_promotion_action:
656
+ invalid_promotion_rule:
657
+ inventory: Inventar
658
+ inventory_adjustment: Prilagoditev inventarja
659
+ inventory_error_flash_for_insufficient_quantity:
660
+ inventory_state:
661
+ is_not_available_to_shipment_address: ni na voljo za ta naslov pošiljanja
662
+ iso_name:
663
+ item: Izdelek
664
+ item_description: Opis izdelka
665
+ item_total: Izdelki skupaj
666
+ item_total_rule:
667
+ operators:
668
+ gt: večje
669
+ gte: večje ali enako
670
+ lt:
671
+ lte:
672
+ items_cannot_be_shipped:
673
+ items_in_rmas:
674
+ items_reimbursed:
675
+ items_to_be_reimbursed:
676
+ jirafe:
677
+ landing_page_rule:
678
+ path:
679
+ last_name: Priimek
680
+ last_name_begins_with: Priimek se začne z
681
+ learn_more: Learn More
682
+ lifetime_stats:
683
+ line_item_adjustments:
684
+ list: Seznam
685
+ loading: Nalagam
686
+ locale_changed: Locale Changed
687
+ location:
688
+ lock:
689
+ log_entries:
690
+ logged_in_as: Prijavljeni ste kot
691
+ logged_in_succesfully: Prijava uspešna
692
+ logged_out: Uspešno ste se odjavili.
693
+ login: Prijava
694
+ login_as_existing: Prijavite se kot obstoječa stranka
695
+ login_failed: Prijava ni uspela.
696
+ login_name: Uporabniško ime
697
+ logout: Odjava
698
+ logs:
699
+ look_for_similar_items: Poišči podobne izdelke
700
+ make_refund:
701
+ make_sure_the_above_reimbursement_amount_is_correct:
702
+ manage_promotion_categories:
703
+ manage_variants:
704
+ manual_intervention_required:
705
+ master_price: Osnovna cena
706
+ match_choices:
707
+ all: All
708
+ none: None
709
+ max_items: Max Izdelkov
710
+ member_since:
711
+ memo:
712
+ meta_description: Meta opis
713
+ meta_keywords: Meta ključne besede
714
+ meta_title:
715
+ metadata: Metadata
716
+ minimal_amount: Minimalni znesek
717
+ month: Mesec
718
+ more: More
719
+ move_stock_between_locations:
720
+ my_account: Moj račun
721
+ my_orders: Moja naročila
722
+ name: Ime
723
+ name_on_card:
724
+ name_or_sku: Ime ali šifra
725
+ new: Novo
726
+ new_adjustment: Nova prilagoditev
727
+ new_country:
728
+ new_customer: Nova stranka
729
+ new_customer_return:
730
+ new_image: Dodaj sliko
731
+ new_option_type: Nova možnost izbire
732
+ new_order: Novo naročilo
733
+ new_order_completed: Novo naročilo je zaključeno
734
+ new_payment: Novo plačilo
735
+ new_payment_method: Nov način plačila
736
+ new_product: Dodaj Izdelek
737
+ new_promotion: Dodaj promocijo
738
+ new_promotion_category:
739
+ new_property: Dodaj lastnost
740
+ new_prototype: Dodaj prototip
741
+ new_refund:
742
+ new_refund_reason:
743
+ new_return_authorization: Nova avtorizacija vračila
744
+ new_rma_reason:
745
+ new_shipment_at_location:
746
+ new_shipping_category: Dodaj kategorijo poštnine
747
+ new_shipping_method: Dodaj tip dostave
748
+ new_state: Nova Zvezna Država
749
+ new_stock_location:
750
+ new_stock_movement:
751
+ new_stock_transfer:
752
+ new_tax_category: Dodaj davčno stopnjo
753
+ new_tax_rate: Dodaj davčno stopnjo
754
+ new_taxon: Dodaj takson
755
+ new_taxonomy: Dodaj taksonomijo
756
+ new_tracker: Nov Tracker
757
+ new_user: Dodaj uporabnika
758
+ new_variant: Dodaj varianto
759
+ new_zone: Dodaj območje
760
+ next: Naprej
761
+ no_actions_added:
762
+ no_payment_found:
763
+ no_pending_payments:
764
+ no_products_found: Ni izdelkov
765
+ no_resource_found:
766
+ no_results: Ni zadetkov
767
+ no_returns_found:
768
+ no_rules_added: Ni dodanih pravil
769
+ no_shipping_method_selected:
770
+ no_state_changes:
771
+ no_tracking_present:
772
+ none: Noben
773
+ none_selected:
774
+ normal_amount: Normalna količina
775
+ not: ne
776
+ not_available: N/A
777
+ not_enough_stock:
778
+ not_found: "%{resource} is not found"
779
+ note:
780
+ notice_messages:
781
+ product_cloned: Izdelek je bil podvojen
782
+ product_deleted: Izdelek je bil izbrisan
783
+ product_not_cloned: Izdelka ni mogoče klonirati
784
+ product_not_deleted: Izdelka ni mogoče izbrisati
785
+ variant_deleted: Varianta je bila izbrisana
786
+ variant_not_deleted: Variante ni mogoče izbrisati
787
+ num_orders:
788
+ on_hand: Na zalogi
789
+ open:
790
+ open_all_adjustments:
791
+ option_type: Option Type
792
+ option_type_placeholder:
793
+ option_types: Možnosti izbire
794
+ option_value: Option Value
795
+ option_values: Izbire
796
+ optional:
797
+ options: Možnosti
798
+ or: ali
799
+ or_over_price: "%{price} or over"
800
+ order: Naročilo
801
+ order_adjustments:
802
+ order_already_updated:
803
+ order_approved:
804
+ order_canceled:
805
+ order_details: Podrobnosti naročila
806
+ order_email_resent: Email z naročilom je bil ponovno poslan.
807
+ order_information:
808
+ order_mailer:
809
+ cancel_email:
810
+ dear_customer:
811
+ instructions:
812
+ order_summary_canceled:
813
+ subject:
814
+ subtotal:
815
+ total:
816
+ confirm_email:
817
+ dear_customer:
818
+ instructions:
819
+ order_summary:
820
+ subject:
821
+ subtotal:
822
+ thanks:
823
+ total:
824
+ order_not_found:
825
+ order_number:
826
+ order_processed_successfully: Vaše naročilo je bilo uspešno obdelano
827
+ order_resumed:
828
+ order_state:
829
+ address: naslov
830
+ awaiting_return: "čakajo na vrnitev"
831
+ canceled: preklicana
832
+ cart: košarica
833
+ complete: končaj
834
+ confirm: potrdi
835
+ considered_risky:
836
+ delivery: dostava
837
+ payment: plačilo
838
+ resumed: resumed
839
+ returned: vračilo
840
+ order_summary: Povzetek naročila
841
+ order_sure_want_to: Ali ste prepričani da želite %{event} to naročio?
842
+ order_total: Naročilo skupaj
843
+ order_updated: Naročilo osveženo
844
+ orders: Naročila
845
+ other_items_in_other:
846
+ out_of_stock: Ni na zalogi
847
+ overview: Pregled
848
+ package_from:
849
+ pagination:
850
+ next_page:
851
+ previous_page:
852
+ truncate: "…"
853
+ password: Geslo
854
+ paste: Paste
855
+ path: Pot
856
+ pay: plačaj
857
+ payment: Plačilo
858
+ payment_could_not_be_created:
859
+ payment_identifier:
860
+ payment_information: Podatki o plačilu
861
+ payment_method: Način plačila
862
+ payment_method_not_supported:
863
+ payment_methods: Načini plačila
864
+ payment_processing_failed: Plačila ni možno izvesti, prosimo preverite vnešene podatke
865
+ payment_processor_choose_banner_text:
866
+ payment_processor_choose_link:
867
+ payment_state: Stanje plačila
868
+ payment_states:
869
+ balance_due:
870
+ checkout:
871
+ completed:
872
+ credit_owed:
873
+ failed:
874
+ paid: plačano
875
+ pending:
876
+ processing:
877
+ void:
878
+ payment_updated: Plačilo osveženo
879
+ payments: Plačila
880
+ pending:
881
+ percent:
882
+ percent_per_item:
883
+ permalink: Povezava
884
+ phone: Telefon
885
+ place_order: Oddaj naročilo
886
+ please_define_payment_methods:
887
+ populate_get_error:
888
+ powered_by: Poganja
889
+ pre_tax_amount:
890
+ pre_tax_refund_amount:
891
+ pre_tax_total:
892
+ preferred_reimbursement_type:
893
+ presentation: Prikazano ime
894
+ previous: Nazaj
895
+ previous_state_missing:
896
+ price: Cena
897
+ price_range:
898
+ price_sack:
899
+ process: Procesiraj
900
+ product: Izdelek
901
+ product_details: Podrobnosti izdelka
902
+ product_has_no_description: Izdelek nima opisa
903
+ product_not_available_in_this_currency:
904
+ product_properties: Lastnosti izdelka
905
+ product_rule:
906
+ choose_products: Izberite izdelke
907
+ label:
908
+ match_all: vse
909
+ match_any: vsaj en
910
+ match_none:
911
+ product_source:
912
+ group: Iz skupine izdelkov
913
+ manual: Ročno izberi
914
+ products: Izdelki
915
+ promotion:
916
+ promotion_action:
917
+ promotion_action_types:
918
+ create_adjustment:
919
+ description:
920
+ name:
921
+ create_item_adjustments:
922
+ description:
923
+ name:
924
+ create_line_items:
925
+ description:
926
+ name:
927
+ free_shipping:
928
+ description:
929
+ name:
930
+ promotion_actions:
931
+ promotion_form:
932
+ match_policies:
933
+ all: Ujemaj se s katerim koli izmed teh pravil
934
+ any: Ujemaj se z vsemi temi pravili
935
+ promotion_rule: Promotion Rule
936
+ promotion_rule_types:
937
+ first_order:
938
+ description: Mora biti strankino prvo naročilo
939
+ name: Prvo naročilo
940
+ item_total:
941
+ description: Naročilo skupaj izpolnjuje te kriterije
942
+ name: Izdelki skupaj
943
+ landing_page:
944
+ description: Customer must have visited the specified page
945
+ name: Landing Page
946
+ one_use_per_user:
947
+ description:
948
+ name:
949
+ option_value:
950
+ description:
951
+ name:
952
+ product:
953
+ description: Naročilo vsebuje določene izdelke
954
+ name: Izdelek(i)
955
+ taxon:
956
+ description:
957
+ name:
958
+ user:
959
+ description: Na vojo samo za določene uporabnike
960
+ name: Uporabnik
961
+ user_logged_in:
962
+ description:
963
+ name:
964
+ promotion_uses:
965
+ promotionable:
966
+ promotions: Promocije
967
+ propagate_all_variants:
968
+ properties: Lastnosti
969
+ property: Lastnost
970
+ prototype: Prototip
971
+ prototypes: Prototipi
972
+ provider: Ponudnik
973
+ provider_settings_warning: "Če spreminjate tip ponudnika, morate najprej shraniti predno lahko urejate nastavitve ponudnika"
974
+ qty: Količina
975
+ quantity:
976
+ quantity_returned: Quantity Returned
977
+ quantity_shipped: Poslana količina
978
+ quick_search:
979
+ rate: Stopnja
980
+ reason: Razlog
981
+ receive: prejmi
982
+ receive_stock:
983
+ received: Prejeto
984
+ reception_status:
985
+ reference:
986
+ refund: Povračilo
987
+ refund_amount_must_be_greater_than_zero:
988
+ refund_reasons:
989
+ refunded_amount:
990
+ refunds:
991
+ register: Registriraj se kot nov uporabnik
992
+ registration: Registracija
993
+ reimburse:
994
+ reimbursed:
995
+ reimbursement:
996
+ reimbursement_mailer:
997
+ reimbursement_email:
998
+ days_to_send:
999
+ dear_customer:
1000
+ exchange_summary:
1001
+ for:
1002
+ instructions:
1003
+ refund_summary:
1004
+ subject:
1005
+ total_refunded:
1006
+ reimbursement_perform_failed:
1007
+ reimbursement_status:
1008
+ reimbursement_type:
1009
+ reimbursement_type_override:
1010
+ reimbursement_types:
1011
+ reimbursements:
1012
+ reject:
1013
+ rejected:
1014
+ remember_me: Zapomni si me
1015
+ remove: Odstrani
1016
+ rename:
1017
+ report:
1018
+ reports: Poročila
1019
+ resend: Pošlji ponovno
1020
+ reset_password: Ponastavi moje geslo
1021
+ response_code: Odzivna koda
1022
+ resume: nadaljevati
1023
+ resumed: Nadaljevana
1024
+ return: vračilo
1025
+ return_authorization: Avtorizacija vračila
1026
+ return_authorization_reasons:
1027
+ return_authorization_updated: Avtorizacija vračila spremenjena
1028
+ return_authorizations: Avtorizacije vračil
1029
+ return_item_inventory_unit_ineligible:
1030
+ return_item_inventory_unit_reimbursed:
1031
+ return_item_rma_ineligible:
1032
+ return_item_time_period_ineligible:
1033
+ return_items:
1034
+ return_items_cannot_be_associated_with_multiple_orders:
1035
+ return_number:
1036
+ return_quantity: Količina za vračilo
1037
+ returned: Vrnjeno
1038
+ returns:
1039
+ review:
1040
+ risk:
1041
+ risk_analysis:
1042
+ risky:
1043
+ rma_credit: RMA kredit
1044
+ rma_number: RMA šifra
1045
+ rma_value: RMA vrednost
1046
+ roles: Vloge
1047
+ rules:
1048
+ safe:
1049
+ sales_total: Skupaj
1050
+ sales_total_description: Sales Total For All Orders
1051
+ sales_totals:
1052
+ save_and_continue: Shrani in nadaljuj
1053
+ save_my_address:
1054
+ say_no:
1055
+ say_yes:
1056
+ scope: Pravilo
1057
+ search: Najdi
1058
+ search_results: Iskalni razultati za '%{keywords}'
1059
+ searching: Iskanje
1060
+ secure_connection_type: Tip varne povezave
1061
+ security_settings: Security Settings
1062
+ select: Izberi
1063
+ select_a_return_authorization_reason:
1064
+ select_a_stock_location:
1065
+ select_from_prototype: Izberi iz prototipa
1066
+ select_stock:
1067
+ send_copy_of_all_mails_to: Pošlji kopijo vseh emailov na
1068
+ send_mails_as: Pošiljatelj izhodnih emailov
1069
+ server: Strežnik
1070
+ server_error: Strežnik je vrnil napako
1071
+ settings: Nastavitve
1072
+ ship: pošlji
1073
+ ship_address: Naslov za dostavo
1074
+ ship_total:
1075
+ shipment: Pošiljka
1076
+ shipment_adjustments:
1077
+ shipment_details:
1078
+ shipment_mailer:
1079
+ shipped_email:
1080
+ dear_customer: Dear Customer,\n
1081
+ instructions: Your order has been shipped
1082
+ shipment_summary: Shipment Summary
1083
+ subject: Shipment Notification
1084
+ thanks: Thank you for your business.
1085
+ track_information: 'Tracking Information: %{tracking}'
1086
+ track_link:
1087
+ shipment_state: Stanje pošiljke
1088
+ shipment_states:
1089
+ backorder: backorder
1090
+ canceled:
1091
+ partial: delno
1092
+ pending: v teku
1093
+ ready: pripravljeno
1094
+ shipped: poslano
1095
+ shipment_transfer_error:
1096
+ shipment_transfer_success:
1097
+ shipments: Pošiljke
1098
+ shipped: Poslano
1099
+ shipping: Poštnina
1100
+ shipping_address: Naslov za dostavo
1101
+ shipping_categories: Kategorije poštnine
1102
+ shipping_category: Kategorija poštnine
1103
+ shipping_flat_rate_per_item:
1104
+ shipping_flat_rate_per_order:
1105
+ shipping_flexible_rate:
1106
+ shipping_instructions: Navodila za dostavo
1107
+ shipping_method: Način dostave
1108
+ shipping_methods: Načini dostave
1109
+ shipping_price_sack:
1110
+ shipping_total:
1111
+ shop_by_taxonomy: Preglej %{taxonomy}
1112
+ shopping_cart: Nakupovalna košarica
1113
+ show: Prikaži
1114
+ show_active: Prikaži objavljene
1115
+ show_deleted: Prikaži izbrisane
1116
+ show_only_complete_orders: Prikaži le dokončana naročila
1117
+ show_only_considered_risky:
1118
+ show_rate_in_label:
1119
+ sku: "šifra"
1120
+ skus:
1121
+ slug:
1122
+ source:
1123
+ special_instructions: Special Instructions
1124
+ split:
1125
+ spree_gateway_error_flash_for_checkout: There was a problem with your payment information. Please check your information and try again.
1126
+ ssl:
1127
+ change_protocol:
1128
+ start: Od
1129
+ state: Pokrajina
1130
+ state_based: Na osnovi pokrajin
1131
+ state_machine_states:
1132
+ accepted:
1133
+ address:
1134
+ authorized:
1135
+ awaiting:
1136
+ awaiting_return:
1137
+ backordered:
1138
+ canceled:
1139
+ cart:
1140
+ checkout:
1141
+ closed:
1142
+ complete:
1143
+ completed:
1144
+ confirm:
1145
+ delivery:
1146
+ errored:
1147
+ failed:
1148
+ given_to_customer:
1149
+ invalid:
1150
+ manual_intervention_required:
1151
+ on_hand:
1152
+ open:
1153
+ order:
1154
+ payment:
1155
+ pending:
1156
+ processing:
1157
+ ready:
1158
+ reimbursed:
1159
+ resumed:
1160
+ returned:
1161
+ shipped:
1162
+ void:
1163
+ states: Pokrajine
1164
+ states_required:
1165
+ status: Status
1166
+ stock:
1167
+ stock_location:
1168
+ stock_location_info:
1169
+ stock_locations:
1170
+ stock_locations_need_a_default_country:
1171
+ stock_management:
1172
+ stock_management_requires_a_stock_location:
1173
+ stock_movements:
1174
+ stock_movements_for_stock_location:
1175
+ stock_successfully_transferred:
1176
+ stock_transfer:
1177
+ stock_transfers:
1178
+ stop: Do
1179
+ store: Trgovina
1180
+ street_address: Ulica in hišna številka
1181
+ street_address_2: Ulica dodatno
1182
+ subtotal: Skupaj
1183
+ subtract: Odštej
1184
+ success:
1185
+ successfully_created: "%{resource} has been successfully created!"
1186
+ successfully_refunded:
1187
+ successfully_removed: "%{resource} has been successfully removed!"
1188
+ successfully_signed_up_for_analytics:
1189
+ successfully_updated: "%{resource} has been successfully updated!"
1190
+ summary:
1191
+ tax: DDV
1192
+ tax_categories: Davčne kategorije
1193
+ tax_category: Davčna kategorija
1194
+ tax_code:
1195
+ tax_included:
1196
+ tax_rate_amount_explanation:
1197
+ tax_rates: Davčne stopnje
1198
+ taxon: Takson
1199
+ taxon_edit: Uredi takson
1200
+ taxon_placeholder:
1201
+ taxon_rule:
1202
+ choose_taxons:
1203
+ label:
1204
+ match_all:
1205
+ match_any:
1206
+ taxonomies: Taksonomije
1207
+ taxonomy: Taxonomy
1208
+ taxonomy_edit: Uredi taksonomijo
1209
+ taxonomy_tree_error: Zahtevana sprememba ni bila sprejeta zato je bila drevesna struktura povrnjena v prejšnje stanje, prosimo poskusite znova.
1210
+ taxonomy_tree_instruction: "* Ob desnem kliku na vejo v drevesni strukturi se odpre meni za dodajanje, sortiranje in brisanje elementov"
1211
+ taxons: Taksoni
1212
+ test: Test
1213
+ test_mailer:
1214
+ test_email:
1215
+ greeting: Congratulations!
1216
+ message: If you have received this email, then your email settings are correct.
1217
+ subject: Testmail
1218
+ test_mode: Testni način
1219
+ thank_you_for_your_order: Hvala za zaupanje. Prosimo natisnite si kopijo te potrditvene strani za lastno referenco.
1220
+ there_are_no_items_for_this_order:
1221
+ there_were_problems_with_the_following_fields: There were problems with the following fields
1222
+ this_order_has_already_received_a_refund:
1223
+ thumbnail: Mala slika
1224
+ tiered_flat_rate:
1225
+ tiered_percent:
1226
+ tiers:
1227
+ time:
1228
+ to_add_variants_you_must_first_define: Za dodajanje variant, morate najprej definirati
1229
+ total: Skupaj
1230
+ total_per_item:
1231
+ total_pre_tax_refund:
1232
+ total_price:
1233
+ total_sales:
1234
+ track_inventory:
1235
+ tracking: Sledenje
1236
+ tracking_number:
1237
+ tracking_url:
1238
+ tracking_url_placeholder:
1239
+ transaction_id:
1240
+ transfer_from_location:
1241
+ transfer_stock:
1242
+ transfer_to_location:
1243
+ tree: Drevo
1244
+ type: Tip
1245
+ type_to_search: Vrsta iskanja
1246
+ unable_to_connect_to_gateway: Povezava do ponudnika plačilnih storitev ni uspela
1247
+ unable_to_create_reimbursements:
1248
+ under_price: Under %{price}
1249
+ unlock:
1250
+ unrecognized_card_type: Neznan tip kartice
1251
+ unshippable_items:
1252
+ update: Spremeni
1253
+ updating: Osvežujem
1254
+ usage_limit: Omejitev uporabe
1255
+ use_app_default:
1256
+ use_billing_address: Uporabi naslov za račun
1257
+ use_new_cc: Uporabi drugo kreditno karico
1258
+ use_s3: Use Amazon S3 For Images
1259
+ user: Uporabnik
1260
+ user_rule:
1261
+ choose_users: Izberite uporabnike
1262
+ users: Uporabniki
1263
+ validation:
1264
+ cannot_be_less_than_shipped_units: ne more biti manjše od števila prodanih enot.
1265
+ cannot_destroy_line_item_as_inventory_units_have_shipped:
1266
+ exceeds_available_stock:
1267
+ is_too_large: je prevelika -- na zalogi ni dovolj naročenih izdelkov!
1268
+ must_be_int: mora biti celo število
1269
+ must_be_non_negative: mora biti pozitivna vrednost
1270
+ unpaid_amount_not_zero:
1271
+ value: Vrednost
1272
+ variant: Variant
1273
+ variant_placeholder:
1274
+ variants: Variante
1275
+ version: Verzija
1276
+ void: Neveljaven
1277
+ weight: Teža
1278
+ what_is_a_cvv: Kaj je CVV varnostna številka kreditne kartice?
1279
+ what_is_this: Kaj je to?
1280
+ width: "Širina"
1281
+ year: Leto
1282
+ you_have_no_orders_yet: You have no orders yet.
1283
+ your_cart_is_empty: Vaša nakupovalna košarica je prazna
1284
+ your_order_is_empty_add_product:
1285
+ zip: Poštna številka
1286
+ zipcode:
1287
+ zone: Območje
1288
+ zones: Območja