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,1328 @@
1
+ lv:
2
+ activerecord:
3
+ attributes:
4
+ spree/address:
5
+ address1: Adrese
6
+ address2: Adrese (papildus)
7
+ city: Pilsēta
8
+ country: Valsts
9
+ firstname: Vārds
10
+ lastname: Uzvārds
11
+ phone: Telefons
12
+ state: Rajons
13
+ zipcode: Pasta indekss
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 vārds
24
+ name: Nosaukums
25
+ numcode: ISO kods
26
+ spree/credit_card:
27
+ base:
28
+ cc_type: Tips
29
+ month: Mēnesis
30
+ name:
31
+ number: Numurs
32
+ verification_value:
33
+ year: Gads
34
+ spree/inventory_unit:
35
+ state: Apgabals
36
+ spree/line_item:
37
+ price: Cena
38
+ quantity: Daudzums
39
+ spree/option_type:
40
+ name: Nosaukums
41
+ presentation: Presentation
42
+ spree/order:
43
+ checkout_complete:
44
+ completed_at:
45
+ considered_risky:
46
+ coupon_code: Kupona Kods
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: Pieejams pēc
79
+ cost_currency:
80
+ cost_price: Pašizmaksa
81
+ description: Apraksts
82
+ master_price: Gala cena/Master Price
83
+ name: Nosaukums
84
+ on_hand: Pieejams
85
+ shipping_category: Piegādes kategorija
86
+ tax_category: Nodokļu kategorija
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: Nosaukums
101
+ presentation: Prezentācija
102
+ spree/prototype:
103
+ name: Nosaukums
104
+ spree/return_authorization:
105
+ amount: Summa
106
+ spree/role:
107
+ name: Nosaukums
108
+ spree/state:
109
+ abbr: Saīsinājums
110
+ name: Nosaukums
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: Apraksts
128
+ name: Nosaukums
129
+ spree/tax_rate:
130
+ amount: Summa
131
+ included_in_price: Included in Price
132
+ show_rate_in_label: Show rate in label
133
+ spree/taxon:
134
+ name: Nosaukums
135
+ permalink: Permalink
136
+ position: Stāvoklis
137
+ spree/taxonomy:
138
+ name: Nosaukums
139
+ spree/user:
140
+ email: E-pasts
141
+ password: Parole
142
+ password_confirmation: Password Confirmation
143
+ spree/variant:
144
+ cost_currency:
145
+ cost_price: Pašizmaksa
146
+ depth: Biezums
147
+ height: Augstums
148
+ price: Cena
149
+ sku: SKU
150
+ weight: Svars
151
+ width: Platums
152
+ spree/zone:
153
+ description: Apraksts
154
+ name: Nosaukums
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: Adrese
204
+ other: Adreses
205
+ spree/country:
206
+ one: Valsts
207
+ other: Valstis
208
+ spree/credit_card:
209
+ one: Credit Card
210
+ other: Credit Cards
211
+ spree/customer_return:
212
+ spree/inventory_unit:
213
+ one: Krājuma vienība
214
+ other: Krājuma vienības
215
+ spree/line_item:
216
+ one: Pozīcijas vienība
217
+ other: Pozīcijas vienības
218
+ spree/option_type:
219
+ spree/option_value:
220
+ spree/order:
221
+ one: Pasūtījums
222
+ other: Pasūtījumi
223
+ spree/payment:
224
+ one: Maksājums
225
+ other: Maksājumi
226
+ spree/payment_method:
227
+ spree/product:
228
+ one: Produkts
229
+ other: Produkti
230
+ spree/promotion:
231
+ spree/promotion_category:
232
+ spree/property:
233
+ one: Property
234
+ other: Properties
235
+ spree/prototype:
236
+ one: Prototips
237
+ other: Prototipi
238
+ spree/refund_reason:
239
+ spree/reimbursement:
240
+ spree/reimbursement_type:
241
+ spree/return_authorization:
242
+ one: Atgriešanas autorizācija
243
+ other: Atgriešanas autorizācijas
244
+ spree/return_authorization_reason:
245
+ spree/role:
246
+ one: Loma
247
+ other: Lomas
248
+ spree/shipment:
249
+ one: Sūtījums
250
+ other: Sūtījumi
251
+ spree/shipping_category:
252
+ one: Piegādes kategorija
253
+ other: Piegādes kategorijas
254
+ spree/shipping_method:
255
+ spree/state:
256
+ one: "Štats"
257
+ other: "Štati"
258
+ spree/state_change:
259
+ spree/stock_location:
260
+ spree/stock_movement:
261
+ spree/stock_transfer:
262
+ spree/tax_category:
263
+ one: Nodokļu kategorija
264
+ other: Nodokļu kategorijas
265
+ spree/tax_rate:
266
+ one: Nodokļu likme
267
+ other: Nodokļu likmes
268
+ spree/taxon:
269
+ spree/taxonomy:
270
+ spree/tracker:
271
+ spree/user:
272
+ one: Lietotājs
273
+ other: Lietotāji
274
+ spree/variant:
275
+ spree/zone:
276
+ one: Zona
277
+ other: Zonas
278
+ devise:
279
+ confirmations:
280
+ confirmed:
281
+ send_instructions:
282
+ failure:
283
+ inactive:
284
+ invalid:
285
+ invalid_token:
286
+ locked:
287
+ timeout:
288
+ unauthenticated:
289
+ unconfirmed:
290
+ mailer:
291
+ confirmation_instructions:
292
+ subject:
293
+ reset_password_instructions:
294
+ subject:
295
+ unlock_instructions:
296
+ subject:
297
+ oauth_callbacks:
298
+ failure:
299
+ success:
300
+ unlocks:
301
+ send_instructions:
302
+ unlocked:
303
+ user_passwords:
304
+ user:
305
+ cannot_be_blank:
306
+ send_instructions:
307
+ updated:
308
+ user_registrations:
309
+ destroyed:
310
+ inactive_signed_up:
311
+ signed_up:
312
+ updated:
313
+ user_sessions:
314
+ signed_in:
315
+ signed_out:
316
+ errors:
317
+ messages:
318
+ already_confirmed:
319
+ not_found:
320
+ not_locked:
321
+ not_saved:
322
+ spree:
323
+ abbreviation: Saīsinājums
324
+ accept:
325
+ acceptance_errors:
326
+ acceptance_status:
327
+ accepted:
328
+ account: Konts
329
+ account_updated: Konts izmainīts!
330
+ action: Darbība
331
+ actions:
332
+ cancel: Atcelt
333
+ continue:
334
+ create: Izveidot
335
+ destroy: Dzēst
336
+ edit:
337
+ list: Saraksts
338
+ listing: Saraksts
339
+ new: Jauns
340
+ refund:
341
+ save:
342
+ update: Atjauninājums
343
+ activate: Activate
344
+ active: Aktīvs
345
+ add: Pievienot
346
+ add_action_of_type: Add action of type
347
+ add_country: Pievienot valsti
348
+ add_coupon_code:
349
+ add_new_header: Add New Header
350
+ add_new_style: Add New Style
351
+ add_one:
352
+ add_option_value: Pievienot opcijas vērtību
353
+ add_product: Pievienot produktu
354
+ add_product_properties: Pievienot produkta īpašības
355
+ add_rule_of_type: Add rule of type
356
+ add_state: Pievienot rajonu
357
+ add_stock:
358
+ add_stock_management:
359
+ add_to_cart: Pievienot grozam
360
+ add_variant:
361
+ additional_item: Papildus vienības maksa
362
+ address1:
363
+ address2:
364
+ adjustable:
365
+ adjustment: Piemērošana
366
+ adjustment_amount:
367
+ adjustment_successfully_closed:
368
+ adjustment_successfully_opened:
369
+ adjustment_total: Adjustment Total
370
+ adjustments: Piemērošanas
371
+ admin:
372
+ tab:
373
+ configuration:
374
+ option_types:
375
+ orders:
376
+ overview:
377
+ products:
378
+ promotions:
379
+ promotion_categories:
380
+ properties:
381
+ prototypes:
382
+ reports:
383
+ taxonomies:
384
+ taxons:
385
+ users:
386
+ user:
387
+ account:
388
+ addresses:
389
+ items:
390
+ items_purchased:
391
+ order_history:
392
+ order_num:
393
+ orders:
394
+ user_information:
395
+ administration: Administrēšana
396
+ advertise:
397
+ agree_to_privacy_policy:
398
+ agree_to_terms_of_service:
399
+ all: Visi
400
+ all_adjustments_closed:
401
+ all_adjustments_opened:
402
+ all_departments: Visas nodaļas
403
+ all_items_have_been_returned:
404
+ allow_ssl_in_development_and_test:
405
+ allow_ssl_in_production:
406
+ allow_ssl_in_staging:
407
+ already_signed_up_for_analytics:
408
+ alt_text: Cits teksts
409
+ alternative_phone: Cits telefons
410
+ amount: Summa
411
+ analytics_desc_header_1:
412
+ analytics_desc_header_2:
413
+ analytics_desc_list_1:
414
+ analytics_desc_list_2:
415
+ analytics_desc_list_3:
416
+ analytics_desc_list_4:
417
+ analytics_trackers:
418
+ and:
419
+ approve:
420
+ approved_at:
421
+ approver:
422
+ are_you_sure: Vai esiet pārliecināts?
423
+ are_you_sure_delete: Vai esiet pārliecināts, ka vēlaties dzēst šo ierakstu?
424
+ associated_adjustment_closed:
425
+ at_symbol: '@'
426
+ authorization_failure: Autorizācija neizdevās
427
+ authorized:
428
+ auto_capture:
429
+ available_on: Pieejams no
430
+ average_order_value:
431
+ avs_response:
432
+ back: Atpakaļ
433
+ back_end:
434
+ back_to_payment:
435
+ back_to_resource_list:
436
+ back_to_rma_reason_list:
437
+ back_to_store: Atgriezties veikalā
438
+ back_to_users_list:
439
+ backorderable:
440
+ backorderable_default:
441
+ backordered:
442
+ backorders_allowed:
443
+ balance_due: Atlikums
444
+ base_amount:
445
+ base_percent:
446
+ bill_address: Rēķina adrese
447
+ billing: Rēķins
448
+ billing_address: Rēķina adrese
449
+ both: Abi
450
+ calculated_reimbursements:
451
+ calculator: Kalkulātors
452
+ calculator_settings_warning: Ja tu maini kalkulatora tipu, vispirms saglabā esošos datus, pirms maini kalkulatora iestatījumus
453
+ cancel: Atcelt
454
+ canceled_at:
455
+ canceler:
456
+ cannot_create_customer_returns:
457
+ cannot_create_payment_without_payment_methods:
458
+ cannot_create_returns: Nevar izveidot atgriešanu, jo šis pasūtījums vēl nav izsūtīts.
459
+ cannot_perform_operation:
460
+ cannot_set_shipping_method_without_address:
461
+ capture: Capture
462
+ capture_events:
463
+ card_code: Kartes kods
464
+ card_number: Kartes numurs
465
+ card_type:
466
+ card_type_is: Kartes tips ir
467
+ cart: Grozs
468
+ cart_subtotal:
469
+ categories: Kategorijas
470
+ category: Kategorija
471
+ charged:
472
+ check_for_spree_alerts:
473
+ checkout: Pasūtīt
474
+ choose_a_customer:
475
+ choose_a_taxon_to_sort_products_for:
476
+ choose_currency:
477
+ choose_dashboard_locale:
478
+ choose_location:
479
+ city: Pilsēta
480
+ clear_cache:
481
+ clear_cache_ok:
482
+ clear_cache_warning:
483
+ click_and_drag_on_the_products_to_sort_them:
484
+ clone: Klonēt
485
+ close:
486
+ close_all_adjustments:
487
+ code: Kods
488
+ company:
489
+ complete: Pabeigts
490
+ configuration: Konfigurācija
491
+ configurations: Konfigurācijas
492
+ confirm: Apstiprini
493
+ confirm_delete: Apstiprināt izdzēšanu
494
+ confirm_password: Paroles apstiprinājums
495
+ continue: Turpināt
496
+ continue_shopping: Turpināt iepirkšanos
497
+ cost_currency:
498
+ cost_price: Pašizmaksa
499
+ could_not_connect_to_jirafe:
500
+ could_not_create_customer_return:
501
+ could_not_create_stock_movement:
502
+ count_on_hand:
503
+ countries:
504
+ country: Valsts
505
+ country_based: Valsts
506
+ country_name:
507
+ country_names:
508
+ CA:
509
+ FRA:
510
+ ITA:
511
+ US:
512
+ coupon: Kupons
513
+ coupon_code: Kupona kods
514
+ coupon_code_already_applied:
515
+ coupon_code_applied:
516
+ coupon_code_better_exists:
517
+ coupon_code_expired:
518
+ coupon_code_max_usage:
519
+ coupon_code_not_eligible:
520
+ coupon_code_not_found: Ievadītais kupona kods neeksistē. Lūdzu, mēģiniet vēlreiz.
521
+ coupon_code_unknown_error:
522
+ create: Izveidot
523
+ create_a_new_account: Izveidot jaunu kontu
524
+ create_new_order:
525
+ create_reimbursement:
526
+ created_at:
527
+ credit: Kredīts
528
+ credit_card: Kredītkarte
529
+ credit_cards:
530
+ credit_owed: Kredīta parāds
531
+ credits:
532
+ currency:
533
+ currency_decimal_mark:
534
+ currency_settings:
535
+ currency_symbol_position: Put currency symbol before or after dollar amount?
536
+ currency_thousands_separator:
537
+ current: Tagadējais
538
+ current_promotion_usage:
539
+ customer: Klients
540
+ customer_details: Klienta detaļas
541
+ customer_details_updated:
542
+ customer_return:
543
+ customer_returns:
544
+ customer_search: Klienta meklēšana
545
+ cut:
546
+ cvv_response:
547
+ dash:
548
+ jirafe:
549
+ app_id:
550
+ app_token:
551
+ currently_unavailable:
552
+ explanation:
553
+ header:
554
+ site_id:
555
+ token:
556
+ jirafe_settings_updated:
557
+ date:
558
+ date_completed:
559
+ date_picker:
560
+ first_day:
561
+ format:
562
+ js_format:
563
+ date_range: Datuma diapazons
564
+ default:
565
+ default_refund_amount:
566
+ default_tax:
567
+ default_tax_zone:
568
+ delete: Izdzēst
569
+ deleted_variants_present:
570
+ delivery:
571
+ depth: Dziļums
572
+ description: Apraksts
573
+ destination:
574
+ destroy: Izdzēst
575
+ details:
576
+ discount_amount:
577
+ dismiss_banner:
578
+ display: Rādīt
579
+ display_currency:
580
+ doesnt_track_inventory:
581
+ edit: Rediģēt
582
+ editing_resource:
583
+ editing_rma_reason:
584
+ editing_user: Rediģēt lietotāju
585
+ eligibility_errors:
586
+ messages:
587
+ has_excluded_product:
588
+ item_total_less_than:
589
+ item_total_less_than_or_equal:
590
+ item_total_more_than:
591
+ item_total_more_than_or_equal:
592
+ limit_once_per_user:
593
+ missing_product:
594
+ missing_taxon:
595
+ no_applicable_products:
596
+ no_matching_taxons:
597
+ no_user_or_email_specified:
598
+ no_user_specified:
599
+ not_first_order:
600
+ email: E-pasts
601
+ empty:
602
+ empty_cart: Iztukšot grozu
603
+ enable_mail_delivery: Atļaut pasta sūtīšanu
604
+ end:
605
+ ending_in:
606
+ environment: Vide
607
+ error: Kļūda
608
+ errors:
609
+ messages:
610
+ could_not_create_taxon:
611
+ no_payment_methods_available:
612
+ no_shipping_methods_available:
613
+ errors_prohibited_this_record_from_being_saved:
614
+ one: Dēļ 1 kļūdas ieraksts netika saglabāts
615
+ other: Dēļ %{count} kļūdām ieraksts netika saglabāts
616
+ event: Notikums
617
+ events:
618
+ spree:
619
+ cart:
620
+ add:
621
+ checkout:
622
+ coupon_code_added:
623
+ content:
624
+ visited:
625
+ order:
626
+ contents_changed:
627
+ page_view:
628
+ user:
629
+ signup:
630
+ exceptions:
631
+ count_on_hand_setter:
632
+ exchange_for:
633
+ excl:
634
+ existing_shipments:
635
+ expedited_exchanges_warning:
636
+ expiration: Izbeigšanās
637
+ extension: Paplašinājums
638
+ failed_payment_attempts:
639
+ filename: Faila nosaukums
640
+ fill_in_customer_info:
641
+ filter_results:
642
+ finalize: Pabeigt
643
+ finalized:
644
+ find_a_taxon:
645
+ first_item: Pirmās vienības maksājums
646
+ first_name: Vārds
647
+ first_name_begins_with: Vārds sākas ar
648
+ flat_percent: Pamatprocents
649
+ flat_rate_per_order: Pamatlikme (par pasūtījumu)
650
+ flexible_rate: Elastīga likme
651
+ forgot_password: Parole aizmirsta
652
+ free_shipping:
653
+ free_shipping_amount:
654
+ front_end: Front End
655
+ gateway: Gateway
656
+ gateway_config_unavailable: Gateway unavailable for environment
657
+ gateway_error: Gateway kļūda
658
+ general: Vispārīgi
659
+ general_settings: Vispārīgi iestatījumi
660
+ google_analytics: Google analītiķis
661
+ google_analytics_id: Analītiķa ID
662
+ guest_checkout: Ciemiņa izrakstīšanās
663
+ guest_user_account: Izrakstīties kā ciemiņam
664
+ has_no_shipped_units: Nav nosūtītu vienību
665
+ height: Augstums
666
+ hide_cents:
667
+ home: Mājas
668
+ i18n:
669
+ available_locales:
670
+ language:
671
+ localization_settings:
672
+ this_file_language: Latvijas (LV)
673
+ icon: Icon
674
+ identifier:
675
+ image: Attēls
676
+ images: Attēli
677
+ implement_eligible_for_return:
678
+ implement_requires_manual_intervention:
679
+ inactive:
680
+ incl:
681
+ included_in_price:
682
+ included_price_validation:
683
+ incomplete:
684
+ info_number_of_skus_not_shown:
685
+ info_product_has_multiple_skus:
686
+ instructions_to_reset_password: 'Aizpildiet formu zemāk un uz e-pastu tiks nosūtīta instrukcija kā atjaunot paroli:'
687
+ insufficient_stock: Insufficient stock available, only %{on_hand} remaining
688
+ insufficient_stock_lines_present:
689
+ intercept_email_address:
690
+ intercept_email_instructions:
691
+ internal_name:
692
+ invalid_credit_card:
693
+ invalid_exchange_variant:
694
+ invalid_payment_provider:
695
+ invalid_promotion_action:
696
+ invalid_promotion_rule:
697
+ inventory: Inventūra
698
+ inventory_adjustment: Inventūras korekcija
699
+ inventory_error_flash_for_insufficient_quantity:
700
+ inventory_state:
701
+ is_not_available_to_shipment_address: nav pieejams sūtīšanas adresei
702
+ iso_name:
703
+ item: Vienība
704
+ item_description: Vienības apraksts
705
+ item_total: Kopējā vienība
706
+ item_total_rule:
707
+ operators:
708
+ gt:
709
+ gte:
710
+ lt:
711
+ lte:
712
+ items_cannot_be_shipped:
713
+ items_in_rmas:
714
+ items_reimbursed:
715
+ items_to_be_reimbursed:
716
+ jirafe:
717
+ landing_page_rule:
718
+ path:
719
+ last_name: Uzvārds
720
+ last_name_begins_with: Uzvārds sākas ar
721
+ learn_more: Learn More
722
+ lifetime_stats:
723
+ line_item_adjustments:
724
+ list: Saraksts
725
+ loading: Lādējās
726
+ locale_changed: Valoda nomainīta
727
+ location:
728
+ lock:
729
+ log_entries:
730
+ logged_in_as: Pieslēgties kā
731
+ logged_in_succesfully: Pieslēgšanās veiksmīga
732
+ logged_out: Jūs esat atslēgts no sistēmas.
733
+ login:
734
+ login_as_existing: Pieslēgties kā esošais klients
735
+ login_failed: Pieslēgšanās sistēmai neizdevās.
736
+ login_name: Pieslēgties
737
+ logout: Atslēgties
738
+ logs:
739
+ look_for_similar_items: Meklēt līdzīgas preces
740
+ make_refund:
741
+ make_sure_the_above_reimbursement_amount_is_correct:
742
+ manage_promotion_categories:
743
+ manage_variants:
744
+ manual_intervention_required:
745
+ master_price:
746
+ match_choices:
747
+ all:
748
+ none:
749
+ max_items:
750
+ member_since:
751
+ memo:
752
+ meta_description: Meta apraksts
753
+ meta_keywords: Meta atslēgas vārdi
754
+ meta_title:
755
+ metadata:
756
+ minimal_amount:
757
+ month: Mēnesis
758
+ more:
759
+ move_stock_between_locations:
760
+ my_account: Mans konts
761
+ my_orders: Mani pasūtījumi
762
+ name: Nosaukums
763
+ name_on_card:
764
+ name_or_sku: Vārds vai SKU
765
+ new: Jauns
766
+ new_adjustment: Jauns pielāgojums
767
+ new_country:
768
+ new_customer: Jauns klients
769
+ new_customer_return:
770
+ new_image: Jauns attēls
771
+ new_option_type: Jauns opciju tips
772
+ new_order: Jauns pasūtījums
773
+ new_order_completed: Jaunais pasūtījums pabeigts
774
+ new_payment: Jauns maksājums
775
+ new_payment_method: Jauna maksājuma metode
776
+ new_product: Jauns produkts
777
+ new_promotion:
778
+ new_promotion_category:
779
+ new_property:
780
+ new_prototype: Jauns prototips
781
+ new_refund:
782
+ new_refund_reason:
783
+ new_return_authorization: New Return Authorization
784
+ new_rma_reason:
785
+ new_shipment_at_location:
786
+ new_shipping_category: Jauna sūtījuma kategorija
787
+ new_shipping_method: Jauna sūtījuma metode
788
+ new_state: Jauns rajons
789
+ new_stock_location:
790
+ new_stock_movement:
791
+ new_stock_transfer:
792
+ new_tax_category: Jauna nodokļu kategorija
793
+ new_tax_rate: Jauna nodokļu likme
794
+ new_taxon: New Taxon
795
+ new_taxonomy: New Taxonomy
796
+ new_tracker: New Tracker
797
+ new_user: Jauns lietotājs
798
+ new_variant: Jauns variants
799
+ new_zone: Jauna zona
800
+ next: Nākamais
801
+ no_actions_added:
802
+ no_payment_found:
803
+ no_pending_payments:
804
+ no_products_found: Neviens produkts netika atrasts
805
+ no_resource_found:
806
+ no_results:
807
+ no_returns_found:
808
+ no_rules_added:
809
+ no_shipping_method_selected:
810
+ no_state_changes:
811
+ no_tracking_present:
812
+ none: Nekas
813
+ none_selected:
814
+ normal_amount:
815
+ not:
816
+ not_available: N/A
817
+ not_enough_stock:
818
+ not_found: "%{resource} is not found"
819
+ note:
820
+ notice_messages:
821
+ product_cloned: Produkts ir klonēts
822
+ product_deleted: Produkts ir izdzēsts
823
+ product_not_cloned: Produktu neizdevās klonēt
824
+ product_not_deleted: Produktu neizdevās izdzēst
825
+ variant_deleted: Variants ir izdzēsts
826
+ variant_not_deleted: Variants nav izdzēsts
827
+ num_orders:
828
+ on_hand: Ir uz vietas
829
+ open:
830
+ open_all_adjustments:
831
+ option_type: Option Type
832
+ option_type_placeholder:
833
+ option_types: Opciju tips
834
+ option_value: Option Value
835
+ option_values: Opciju vērtība
836
+ optional:
837
+ options: Iespējas
838
+ or: vai
839
+ or_over_price: "%{price} or over"
840
+ order: Pasūtījums
841
+ order_adjustments: Order adjustments
842
+ order_already_updated:
843
+ order_approved:
844
+ order_canceled:
845
+ order_details: Pasūtījuma detaļas
846
+ order_email_resent: Pasūtījuma e-pasts vēlreiz pārsūtīts
847
+ order_information:
848
+ order_mailer:
849
+ cancel_email:
850
+ dear_customer:
851
+ instructions:
852
+ order_summary_canceled:
853
+ subject:
854
+ subtotal:
855
+ total:
856
+ confirm_email:
857
+ dear_customer:
858
+ instructions:
859
+ order_summary:
860
+ subject:
861
+ subtotal:
862
+ thanks:
863
+ total:
864
+ order_not_found:
865
+ order_number:
866
+ order_processed_successfully: Jūsu pasūtījums ir apstrādāts veiksmīgi
867
+ order_resumed:
868
+ order_state:
869
+ address:
870
+ awaiting_return:
871
+ canceled:
872
+ cart:
873
+ complete:
874
+ confirm:
875
+ considered_risky:
876
+ delivery:
877
+ payment:
878
+ resumed:
879
+ returned:
880
+ order_summary: Pasūtījuma apkopojums
881
+ order_sure_want_to: Vai esiet pārliecināts, ka vēlaties %{event} šo pasūtījumu?
882
+ order_total: Kopējais pasūtījums
883
+ order_updated: Pasūtījums atjaunots
884
+ orders: Pasūtījumi
885
+ other_items_in_other:
886
+ out_of_stock: Izpārdots
887
+ overview: Pārskats
888
+ package_from:
889
+ pagination:
890
+ next_page:
891
+ previous_page:
892
+ truncate: "…"
893
+ password: Parole
894
+ paste: Paste
895
+ path: Ceļš
896
+ pay: maksā
897
+ payment: Maksājums
898
+ payment_could_not_be_created:
899
+ payment_identifier:
900
+ payment_information: Maksājumu informācija
901
+ payment_method: Maksājuma metode
902
+ payment_method_not_supported:
903
+ payment_methods: Maksājuma metodes
904
+ payment_processing_failed:
905
+ payment_processor_choose_banner_text:
906
+ payment_processor_choose_link:
907
+ payment_state: Maksājuma statuss
908
+ payment_states:
909
+ balance_due:
910
+ checkout:
911
+ completed:
912
+ credit_owed:
913
+ failed:
914
+ paid:
915
+ pending:
916
+ processing:
917
+ void:
918
+ payment_updated: Maksājums atjaunots
919
+ payments: Maksājumi
920
+ pending:
921
+ percent:
922
+ percent_per_item:
923
+ permalink:
924
+ phone: Telefons
925
+ place_order: Veikt pasūtījumu
926
+ please_define_payment_methods:
927
+ populate_get_error:
928
+ powered_by:
929
+ pre_tax_amount:
930
+ pre_tax_refund_amount:
931
+ pre_tax_total:
932
+ preferred_reimbursement_type:
933
+ presentation: Prezentācija
934
+ previous: Iepriekšējais
935
+ previous_state_missing:
936
+ price: Cena
937
+ price_range: Price Range
938
+ price_sack: Price Sack
939
+ process: Apstrādāt
940
+ product: Produkts
941
+ product_details: Produkta detaļas
942
+ product_has_no_description: "Šim produktam nav nosaukuma"
943
+ product_not_available_in_this_currency:
944
+ product_properties: Produkta īpašības
945
+ product_rule:
946
+ choose_products:
947
+ label:
948
+ match_all:
949
+ match_any:
950
+ match_none:
951
+ product_source:
952
+ group:
953
+ manual:
954
+ products: Produkti
955
+ promotion:
956
+ promotion_action:
957
+ promotion_action_types:
958
+ create_adjustment:
959
+ description:
960
+ name:
961
+ create_item_adjustments:
962
+ description:
963
+ name:
964
+ create_line_items:
965
+ description:
966
+ name:
967
+ free_shipping:
968
+ description:
969
+ name:
970
+ promotion_actions:
971
+ promotion_form:
972
+ match_policies:
973
+ all:
974
+ any:
975
+ promotion_rule:
976
+ promotion_rule_types:
977
+ first_order:
978
+ description:
979
+ name:
980
+ item_total:
981
+ description:
982
+ name:
983
+ landing_page:
984
+ description:
985
+ name:
986
+ one_use_per_user:
987
+ description:
988
+ name:
989
+ option_value:
990
+ description:
991
+ name:
992
+ product:
993
+ description:
994
+ name:
995
+ taxon:
996
+ description:
997
+ name:
998
+ user:
999
+ description:
1000
+ name:
1001
+ user_logged_in:
1002
+ description:
1003
+ name:
1004
+ promotion_uses:
1005
+ promotionable:
1006
+ promotions: Akcijas
1007
+ propagate_all_variants:
1008
+ properties: Parametri
1009
+ property: Parametrs
1010
+ prototype: Prototips
1011
+ prototypes: Prototipi
1012
+ provider: Piegādātājs
1013
+ provider_settings_warning: Ja tu maini piegādātāja tipu, tev vajag vispirms saglabāt pirms veikt izmaiņas piegādātāja uzstādījumiem
1014
+ qty: Daudzums
1015
+ quantity:
1016
+ quantity_returned: Quantity Returned
1017
+ quantity_shipped: Daudzums nosūtīts
1018
+ quick_search:
1019
+ rate: Tarifs
1020
+ reason: Iemesls
1021
+ receive: saņemt
1022
+ receive_stock:
1023
+ received: Saņemts
1024
+ reception_status:
1025
+ reference:
1026
+ refund: Atmaksāt
1027
+ refund_amount_must_be_greater_than_zero:
1028
+ refund_reasons:
1029
+ refunded_amount:
1030
+ refunds:
1031
+ register: Reģistrēties kā jauns lietotājs
1032
+ registration: Reģistrācija
1033
+ reimburse:
1034
+ reimbursed:
1035
+ reimbursement:
1036
+ reimbursement_mailer:
1037
+ reimbursement_email:
1038
+ days_to_send:
1039
+ dear_customer:
1040
+ exchange_summary:
1041
+ for:
1042
+ instructions:
1043
+ refund_summary:
1044
+ subject:
1045
+ total_refunded:
1046
+ reimbursement_perform_failed:
1047
+ reimbursement_status:
1048
+ reimbursement_type:
1049
+ reimbursement_type_override:
1050
+ reimbursement_types:
1051
+ reimbursements:
1052
+ reject:
1053
+ rejected:
1054
+ remember_me: Atcerēties mani
1055
+ remove:
1056
+ rename:
1057
+ report:
1058
+ reports: Atskaites
1059
+ resend: Pārsūtīt
1060
+ reset_password: Nomainīt manu paroli
1061
+ response_code: Reakcijas kods
1062
+ resume: atsākt
1063
+ resumed: Atsākts
1064
+ return: atgriezties
1065
+ return_authorization:
1066
+ return_authorization_reasons:
1067
+ return_authorization_updated:
1068
+ return_authorizations:
1069
+ return_item_inventory_unit_ineligible:
1070
+ return_item_inventory_unit_reimbursed:
1071
+ return_item_rma_ineligible:
1072
+ return_item_time_period_ineligible:
1073
+ return_items:
1074
+ return_items_cannot_be_associated_with_multiple_orders:
1075
+ return_number:
1076
+ return_quantity:
1077
+ returned: Atgriezts
1078
+ returns:
1079
+ review:
1080
+ risk:
1081
+ risk_analysis:
1082
+ risky:
1083
+ rma_credit: RMA Credit
1084
+ rma_number: RMA numurs
1085
+ rma_value: RMA vērtība
1086
+ roles:
1087
+ rules:
1088
+ safe:
1089
+ sales_total: Kopējā realizācija
1090
+ sales_total_description: Sales Total For All Orders
1091
+ sales_totals:
1092
+ save_and_continue: Saglabāt un turpināt
1093
+ save_my_address:
1094
+ say_no:
1095
+ say_yes:
1096
+ scope: Scope
1097
+ search: Meklēšana
1098
+ search_results: Meklēšanas rezultāti '%{keywords}'
1099
+ searching: Searching
1100
+ secure_connection_type: Secure Connection Type
1101
+ security_settings: Security Settings
1102
+ select: Izvēlēties
1103
+ select_a_return_authorization_reason:
1104
+ select_a_stock_location:
1105
+ select_from_prototype: Izvēlēties no prototipiem
1106
+ select_stock:
1107
+ send_copy_of_all_mails_to: Sūtīt visu vēstuļu kopijas uz
1108
+ send_mails_as: Sūtīt vēstules kā
1109
+ server: Servers
1110
+ server_error: Serveris izdeva kļūdu
1111
+ settings: Uzstādījumi
1112
+ ship: sūtīt
1113
+ ship_address: Nosūtīšanas adrese
1114
+ ship_total:
1115
+ shipment: Sūtījums
1116
+ shipment_adjustments:
1117
+ shipment_details:
1118
+ shipment_mailer:
1119
+ shipped_email:
1120
+ dear_customer:
1121
+ instructions:
1122
+ shipment_summary:
1123
+ subject:
1124
+ thanks:
1125
+ track_information:
1126
+ track_link:
1127
+ shipment_state: Piegādes statuss
1128
+ shipment_states:
1129
+ backorder:
1130
+ canceled:
1131
+ partial:
1132
+ pending:
1133
+ ready:
1134
+ shipped:
1135
+ shipment_transfer_error:
1136
+ shipment_transfer_success:
1137
+ shipments: Sūtījumi
1138
+ shipped: Nosūtīts
1139
+ shipping: Sūtās
1140
+ shipping_address: Nosūtīšanas adrese
1141
+ shipping_categories: Sūtīšanas kategorijas
1142
+ shipping_category: Sūtīšanas kategorija
1143
+ shipping_flat_rate_per_item:
1144
+ shipping_flat_rate_per_order:
1145
+ shipping_flexible_rate:
1146
+ shipping_instructions: Sūtīšanas instrukcijas
1147
+ shipping_method: Sūtīšanas metode
1148
+ shipping_methods: Sūtīšanas metodes
1149
+ shipping_price_sack:
1150
+ shipping_total:
1151
+ shop_by_taxonomy: Pirkt pēc %{taxonomy}
1152
+ shopping_cart: Iepirkuma grozs
1153
+ show: Parādīt
1154
+ show_active: Parādīt aktīvos
1155
+ show_deleted: Parādīt izdzēstos
1156
+ show_only_complete_orders: Parādīt tikai pabeigtos pasūtījumus
1157
+ show_only_considered_risky:
1158
+ show_rate_in_label:
1159
+ sku:
1160
+ skus:
1161
+ slug:
1162
+ source:
1163
+ special_instructions:
1164
+ split:
1165
+ spree_gateway_error_flash_for_checkout:
1166
+ ssl:
1167
+ change_protocol:
1168
+ start:
1169
+ state: Stāvoklis
1170
+ state_based:
1171
+ state_machine_states:
1172
+ accepted:
1173
+ address:
1174
+ authorized:
1175
+ awaiting:
1176
+ awaiting_return:
1177
+ backordered:
1178
+ canceled:
1179
+ cart:
1180
+ checkout:
1181
+ closed:
1182
+ complete:
1183
+ completed:
1184
+ confirm:
1185
+ delivery:
1186
+ errored:
1187
+ failed:
1188
+ given_to_customer:
1189
+ invalid:
1190
+ manual_intervention_required:
1191
+ on_hand:
1192
+ open:
1193
+ order:
1194
+ payment:
1195
+ pending:
1196
+ processing:
1197
+ ready:
1198
+ reimbursed:
1199
+ resumed:
1200
+ returned:
1201
+ shipped:
1202
+ void:
1203
+ states:
1204
+ states_required:
1205
+ status:
1206
+ stock:
1207
+ stock_location:
1208
+ stock_location_info:
1209
+ stock_locations:
1210
+ stock_locations_need_a_default_country:
1211
+ stock_management:
1212
+ stock_management_requires_a_stock_location:
1213
+ stock_movements:
1214
+ stock_movements_for_stock_location:
1215
+ stock_successfully_transferred:
1216
+ stock_transfer:
1217
+ stock_transfers:
1218
+ stop:
1219
+ store: Saglabāt
1220
+ street_address: Ielas adrese
1221
+ street_address_2: Ielas adrese (turpinājums)
1222
+ subtotal: Starpsumma
1223
+ subtract: Atskaitīt
1224
+ success:
1225
+ successfully_created: "%{resource} tika veiksmīgi izveidots(-a)!"
1226
+ successfully_refunded:
1227
+ successfully_removed: "%{resource} tika veiksmīgi izdzēsts(-a)!"
1228
+ successfully_signed_up_for_analytics:
1229
+ successfully_updated: "%{resource} tika veiksmīgi saglabāts(-a)!"
1230
+ summary:
1231
+ tax: Nodokļi
1232
+ tax_categories: Nodokļu kategorijas
1233
+ tax_category: Nodokļu kategorija
1234
+ tax_code:
1235
+ tax_included:
1236
+ tax_rate_amount_explanation:
1237
+ tax_rates: Nodokļu likmes
1238
+ taxon:
1239
+ taxon_edit:
1240
+ taxon_placeholder:
1241
+ taxon_rule:
1242
+ choose_taxons:
1243
+ label:
1244
+ match_all:
1245
+ match_any:
1246
+ taxonomies: Klasifikatori
1247
+ taxonomy:
1248
+ taxonomy_edit: Labot klasifikatoru
1249
+ taxonomy_tree_error: Prasītās izmaiņas nav pieņemtas un koks ir atgriezts iepriekšējā stāvoklī, lūdzu, mēģiniet vēlreiz.
1250
+ taxonomy_tree_instruction: "* Ar labo peli uzklikšķiniet kokā, lai piekļūtu izvēlei: pievienošanai, izdzēšanai vai sortēšanai."
1251
+ taxons:
1252
+ test:
1253
+ test_mailer:
1254
+ test_email:
1255
+ greeting:
1256
+ message:
1257
+ subject:
1258
+ test_mode:
1259
+ thank_you_for_your_order: Paldies par sadarbību. Lūdzu, izdrukājiet šo apstiprinājumu savai zināšanai.
1260
+ there_are_no_items_for_this_order:
1261
+ there_were_problems_with_the_following_fields: Problēmas ar sekojošiem laukiem
1262
+ this_order_has_already_received_a_refund:
1263
+ thumbnail: Thumbnail
1264
+ tiered_flat_rate:
1265
+ tiered_percent:
1266
+ tiers:
1267
+ time:
1268
+ to_add_variants_you_must_first_define: Lai pievienotu variantu, vispirms definējiet
1269
+ total: Kopā
1270
+ total_per_item:
1271
+ total_pre_tax_refund:
1272
+ total_price:
1273
+ total_sales:
1274
+ track_inventory:
1275
+ tracking: Tracking
1276
+ tracking_number:
1277
+ tracking_url:
1278
+ tracking_url_placeholder:
1279
+ transaction_id:
1280
+ transfer_from_location:
1281
+ transfer_stock:
1282
+ transfer_to_location:
1283
+ tree: Koks
1284
+ type: Tips
1285
+ type_to_search: Type to search
1286
+ unable_to_connect_to_gateway: Nav spējīgs pievienoties gateway.
1287
+ unable_to_create_reimbursements:
1288
+ under_price: Under %{price}
1289
+ unlock:
1290
+ unrecognized_card_type: Neatpazīstams kartes tips
1291
+ unshippable_items:
1292
+ update: Atjaunot
1293
+ updating: Atjaunojas
1294
+ usage_limit: Lietotāja limits
1295
+ use_app_default:
1296
+ use_billing_address: Lietot rēķina adresi
1297
+ use_new_cc: Izmntot jaunu karti
1298
+ use_s3:
1299
+ user: Lietotājs
1300
+ user_rule:
1301
+ choose_users:
1302
+ users: Lietotāji
1303
+ validation:
1304
+ cannot_be_less_than_shipped_units: nevar būt mazāks par izsūtītām vienībām.
1305
+ cannot_destroy_line_item_as_inventory_units_have_shipped:
1306
+ exceeds_available_stock:
1307
+ is_too_large: ir par lielu - pieejamais daudzums nevar nodrošināt prasīto daudzumu!
1308
+ must_be_int: must be an integer
1309
+ must_be_non_negative: ir jābūt pozitīvai vērtībai
1310
+ unpaid_amount_not_zero:
1311
+ value: Vērtība
1312
+ variant: Variant
1313
+ variant_placeholder:
1314
+ variants: Varianti
1315
+ version: Versija
1316
+ void: Void
1317
+ weight:
1318
+ what_is_a_cvv: Kas ir (CVV) kredītkartes kods?
1319
+ what_is_this: Kas tas ir?
1320
+ width: Platums
1321
+ year: Gads
1322
+ you_have_no_orders_yet:
1323
+ your_cart_is_empty: Jūsu iepirkuma grozs ir tukšs
1324
+ your_order_is_empty_add_product:
1325
+ zip: Pasta indekss
1326
+ zipcode:
1327
+ zone: Zona
1328
+ zones: Zonas