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,1163 @@
1
+ fa:
2
+ Bazaar: بازار
3
+ activerecord:
4
+ attributes:
5
+ spree/address:
6
+ address1: "آدرس"
7
+ address2: "ادامه آدرس"
8
+ city: "شهر"
9
+ country: "کشور"
10
+ firstname: "نام"
11
+ lastname: "نام‌خانوادگی"
12
+ phone: "تلفن"
13
+ state: "استان"
14
+ zipcode: "کد پستی"
15
+ spree/calculator/tiered_flat_rate:
16
+ preferred_base_amount:
17
+ preferred_tiers:
18
+ spree/calculator/tiered_percent:
19
+ preferred_base_percent:
20
+ preferred_tiers:
21
+ spree/country:
22
+ iso: ISO
23
+ iso3: ISO3
24
+ iso_name: ISO Name
25
+ name: "نام"
26
+ numcode: ISO Code
27
+ spree/credit_card:
28
+ base:
29
+ cc_type: "نوع"
30
+ month: "ماه"
31
+ name:
32
+ number: "عدد"
33
+ verification_value:
34
+ year: "سال"
35
+ spree/inventory_unit:
36
+ state: "استان"
37
+ spree/line_item:
38
+ price: "قیمت"
39
+ quantity: "مقدار"
40
+ spree/option_type:
41
+ name: "نام"
42
+ presentation: "نمایش"
43
+ spree/order:
44
+ checkout_complete:
45
+ completed_at: پایان یافته در
46
+ coupon_code: کد کوپن
47
+ created_at: ساخته شده در
48
+ email: ایمیل
49
+ ip_address: آدرس IP
50
+ item_total: مجموع ایتم ها
51
+ number: شماره
52
+ payment_state: وضعیت پرداخت
53
+ shipment_state: وضعیت مرسوله
54
+ special_instructions: دستورالعمل ویژه
55
+ state: وضعیت
56
+ total: مجموع
57
+ considered_risky: ریسکی
58
+
59
+ spree/order/bill_address:
60
+ address1:
61
+ city:
62
+ firstname:
63
+ lastname:
64
+ phone:
65
+ state:
66
+ zipcode:
67
+ spree/order/ship_address:
68
+ address1:
69
+ city:
70
+ firstname:
71
+ lastname:
72
+ phone:
73
+ state:
74
+ zipcode:
75
+ spree/payment:
76
+ amount:
77
+ spree/payment_method:
78
+ name:
79
+ spree/product:
80
+ available_on: Available On
81
+ cost_currency:
82
+ cost_price: Cost Price
83
+ description: Description
84
+ master_price: Master Price
85
+ name: نام
86
+ on_hand: On Hand
87
+ shipping_category: Shipping Category
88
+ tax_category: Tax Category
89
+ spree/promotion:
90
+ advertise:
91
+ code: کد
92
+ description:
93
+ event_name:
94
+ expires_at:
95
+ name: "نام"
96
+ path: "مسیر"
97
+ starts_at:
98
+ usage_limit:
99
+ spree/promotion_category:
100
+ name: نام
101
+ spree/property:
102
+ name: "نام"
103
+ presentation: "نمایش"
104
+ spree/prototype:
105
+ name: "نام"
106
+ spree/return_authorization:
107
+ amount: مقدار
108
+ spree/role:
109
+ name: "نام"
110
+ spree/state:
111
+ abbr:
112
+ name: "نام"
113
+ spree/state_change:
114
+ state_changes:
115
+ state_from:
116
+ state_to:
117
+ timestamp:
118
+ type: نوع
119
+ updated:
120
+ user:
121
+ spree/store:
122
+ mail_from_address:
123
+ meta_description:
124
+ meta_keywords:
125
+ name:
126
+ seo_title:
127
+ url:
128
+ spree/tax_category:
129
+ description: "توضیحات"
130
+ name: "نام"
131
+ spree/tax_rate:
132
+ amount:
133
+ included_in_price:
134
+ show_rate_in_label:
135
+ spree/taxon:
136
+ name:
137
+ permalink:
138
+ position:
139
+ spree/taxonomy:
140
+ name: "نام"
141
+ spree/user:
142
+ email: "ایمیل"
143
+ password: "رمز‌عبور"
144
+ password_confirmation: "تایید رمز‌عبور"
145
+ spree/variant:
146
+ cost_currency:
147
+ cost_price: Cost Price
148
+ depth: Depth
149
+ height: Height
150
+ price: قیمت
151
+ sku: کد کالا
152
+ weight: وزن
153
+ width: عرض
154
+ spree/zone:
155
+ description: "توضیحات"
156
+ name: "نام"
157
+ errors:
158
+ models:
159
+ spree/calculator/tiered_flat_rate:
160
+ attributes:
161
+ base:
162
+ keys_should_be_positive_number:
163
+ preferred_tiers:
164
+ should_be_hash:
165
+ spree/calculator/tiered_percent:
166
+ attributes:
167
+ base:
168
+ keys_should_be_positive_number:
169
+ values_should_be_percent:
170
+ preferred_tiers:
171
+ should_be_hash:
172
+ spree/classification:
173
+ attributes:
174
+ taxon_id:
175
+ already_linked:
176
+ spree/credit_card:
177
+ attributes:
178
+ base:
179
+ card_expired: اعتبار کارت تمام شده است
180
+ expiry_invalid:
181
+ spree/line_item:
182
+ attributes:
183
+ currency:
184
+ must_match_order_currency:
185
+ spree/refund:
186
+ attributes:
187
+ amount:
188
+ greater_than_allowed:
189
+ spree/reimbursement:
190
+ attributes:
191
+ base:
192
+ return_items_order_id_does_not_match:
193
+ spree/return_item:
194
+ attributes:
195
+ inventory_unit:
196
+ other_completed_return_item_exists:
197
+ reimbursement:
198
+ cannot_be_associated_unless_accepted:
199
+ spree/store:
200
+ attributes:
201
+ base:
202
+ cannot_destroy_default_store:
203
+ models:
204
+ spree/address:
205
+ one: "آدرس"
206
+ other: "آدرس‌ها"
207
+ spree/country:
208
+ one: "کشور"
209
+ other: "کشورها"
210
+ spree/credit_card:
211
+ one: "کارت اعتباری"
212
+ other: "کارت‌های اعتباری"
213
+ spree/customer_return:
214
+ spree/inventory_unit:
215
+ spree/line_item:
216
+ spree/option_type: نوع گزینه
217
+ spree/option_value:
218
+ spree/order:
219
+ one: سفارش
220
+ other: سفارشات
221
+ spree/payment:
222
+ one: Payment
223
+ other: Payments
224
+ spree/payment_method:
225
+ spree/product:
226
+ one: "محصول"
227
+ other: "محصول‌ها"
228
+ spree/promotion: فروش ویژه
229
+ spree/promotion_category: دسته بندی فروش ویژه
230
+ spree/property:
231
+ one: "خصوصیت"
232
+ other: "خصوصیات"
233
+ spree/prototype:
234
+ one: نمونه آزمایشی
235
+ other: نمنونه های آزمایشی
236
+ spree/refund_reason: دلیل استرداد
237
+ spree/reimbursement: بازپرداخت
238
+ spree/reimbursement_type: نوع بازپرداخت
239
+ reimbursement_perform_failed:
240
+ reimbursement_status: وضعیت بازپرداخت
241
+ reimbursement_type: نوع بازپرداخت
242
+ reimbursement_type_override:
243
+ reimbursement_types: انواع بازپرداخت
244
+ reimbursements: بازپرداخت‌ها
245
+ spree/return_authorization: مجوز بازگشت
246
+ spree/return_authorization_reason: دلیل مجوز بازگشت
247
+ spree/role: نقش
248
+ spree/shipment: نحوه ارسال
249
+ spree/shipping_category:
250
+ one: دسته‌بندی حمل و نقل
251
+ other: دسته‌بندی حمل نقل
252
+ spree/shipping_method:
253
+ spree/state:
254
+ one: State
255
+ other: States
256
+ spree/stock_location:
257
+ spree/stock_transfer:
258
+ spree/tax_category:
259
+ spree/tax_rate:
260
+ spree/taxon:
261
+ spree/taxonomy:
262
+ one: Taxonomy
263
+ other: Taxonomies
264
+ spree/tracker:
265
+ spree/user:
266
+ one: "کاربر"
267
+ other: "کاربرها"
268
+ spree/variant:
269
+ one: Variant
270
+ other: Variants
271
+ spree/zone:
272
+ one: Zone
273
+ other: Zones
274
+ devise:
275
+ confirmations:
276
+ confirmed:
277
+ send_instructions:
278
+ failure:
279
+ inactive:
280
+ invalid:
281
+ invalid_token:
282
+ locked:
283
+ timeout:
284
+ unauthenticated:
285
+ unconfirmed:
286
+ mailer:
287
+ confirmation_instructions:
288
+ subject:
289
+ reset_password_instructions:
290
+ subject:
291
+ unlock_instructions:
292
+ subject:
293
+ oauth_callbacks:
294
+ failure:
295
+ success:
296
+ unlocks:
297
+ send_instructions:
298
+ unlocked:
299
+ user_passwords:
300
+ user:
301
+ cannot_be_blank:
302
+ send_instructions:
303
+ updated:
304
+ user_registrations:
305
+ destroyed:
306
+ inactive_signed_up:
307
+ signed_up:
308
+ updated:
309
+ user_sessions:
310
+ signed_in:
311
+ signed_out:
312
+ errors:
313
+ messages:
314
+ already_confirmed:
315
+ not_found:
316
+ not_locked:
317
+ not_saved:
318
+ spree:
319
+ quick_search: جستوجو سریع . . .
320
+ filter: فیلتر
321
+ abbreviation: "مخفف"
322
+ accept:
323
+ acceptance_errors:
324
+ acceptance_status:
325
+ accepted:
326
+ account: "حساب"
327
+ account_updated: "حساب شما بروزرسانی شد!"
328
+ action: "حرکت"
329
+ actions:
330
+ cancel: لغو
331
+ continue:
332
+ create: ایجاد
333
+ destroy: پاک کردن
334
+ edit: ویرایش
335
+ list: لیست
336
+ listing: لیست کردن
337
+ new: جدید
338
+ save:
339
+ update: بروز رسانی
340
+ activate: Activate
341
+ active: فعال
342
+ add: افزودن
343
+ add_action_of_type: Add action of type
344
+ add_country: افزودن کشور
345
+ add_new_header: Add New Header
346
+ add_new_style: Add New Style
347
+ add_one:
348
+ add_option_value: افزودن مقدار
349
+ add_product: افزودن محصول
350
+ add_product_properties: افزودن ویژگی های محصول
351
+ add_rule_of_type: افزودن قانون نوع
352
+ add_state: افزودن ایالت یا استان
353
+ add_stock:
354
+ add_stock_management:
355
+ add_to_cart: افزودن به سبد خرید
356
+ add_variant:
357
+ additional_item: قیمت آیتم اضافه شده
358
+ address1:
359
+ address2:
360
+ adjustment: تعدیل
361
+ adjustment_amount:
362
+ adjustment_successfully_closed:
363
+ adjustment_successfully_opened:
364
+ adjustment_total: تعدیل کل
365
+ adjustments: تعدیلات
366
+ admin:
367
+ tab:
368
+ configuration: تنظیمات
369
+ orders: سفارشات
370
+ overview: نمای کلی
371
+ products: محصولات
372
+ promotions: فروش ویژه
373
+ properties: ویژگی ها
374
+ promotion_categories:
375
+ prototypes: نمونه های اولیه
376
+ reports: گزارشات
377
+ users: کاربران
378
+ option_types: انواع اختیارات
379
+ taxonomies: رده بندی
380
+ taxons: گونه
381
+ administration: مدیریت
382
+ agree_to_privacy_policy:
383
+ agree_to_terms_of_service:
384
+ all: همه
385
+ all_adjustments_closed:
386
+ all_adjustments_opened:
387
+ all_departments: همه ی دپارتمان ها
388
+ allow_ssl_in_development_and_test: Allow SSL to be used when in development and test modes
389
+ allow_ssl_in_production: Allow SSL to be used in production mode
390
+ allow_ssl_in_staging: Allow SSL to be used in staging mode
391
+ already_signed_up_for_analytics:
392
+ alt_text: متن جایگزین
393
+ alternative_phone: تلفن جایگزین
394
+ amount: مقدار
395
+ analytics_desc_header_1:
396
+ analytics_desc_header_2:
397
+ analytics_desc_list_1:
398
+ analytics_desc_list_2:
399
+ analytics_desc_list_3:
400
+ analytics_desc_list_4:
401
+ analytics_trackers: ردگیرهای تحلیلی
402
+ and: and
403
+ are_you_sure: آیا مطمئن هستید؟
404
+ are_you_sure_delete: آیا مطمئن هستید که می خواهید این سطر را پاک کنید؟
405
+ associated_adjustment_closed:
406
+ attachment_default_style: Attachments Style
407
+ attachment_default_url: Attachments URL
408
+ attachment_path: Attachments Path
409
+ attachment_styles: Paperclip Styles
410
+ attachment_url:
411
+ at_symbol: '@'
412
+ authorization_failure: خرابی در صدور مجوز
413
+ available_on: موجود است در
414
+ back: برگشت
415
+ back_end: Back End
416
+ back_to_adjustments_list: Back To Adjustments List
417
+ back_to_images_list: Back To Images List
418
+ back_to_option_types_list:
419
+ back_to_orders_list:
420
+ back_to_payment_methods_list: Back To Payment Methods List
421
+ back_to_payments_list: Back To Payments List
422
+ back_to_products_list: Back To Products List
423
+ back_to_promotions_list: بازگشت به لیست محصولات
424
+ back_to_properties_list: Back To Products List
425
+ back_to_prototypes_list: Back To Prototypes List
426
+ back_to_reports_list: Back To Reports List
427
+ back_to_shipping_categories: Back To Shipping Categories
428
+ back_to_shipping_methods_list: Back To Shipping Methods List
429
+ back_to_states_list: Back To States List
430
+ back_to_stock_locations_list:
431
+ back_to_stock_movements_list:
432
+ back_to_stock_transfers_list:
433
+ back_to_store: بازگشت به فروشگاه
434
+ back_to_tax_categories_list: Back To Tax Categories List
435
+ back_to_taxonomies_list: Back To Taxonomies List
436
+ back_to_trackers_list: Back To Trackers List
437
+ back_to_users_list:
438
+ back_to_zones_list: Back To Zones List
439
+ backorderable:
440
+ backorders_allowed:
441
+ balance_due: پرداخت نشده
442
+ bill_address: آدرس
443
+ billing: پرداخت
444
+ billing_address: آدرس پرداخت
445
+ both: هر دو
446
+ calculator: ماشین حساب
447
+ calculator_settings_warning: اگر می خواهید نوع ماشین حساب را تغییر دهید، باید پیش از انجام تغییرات، حالت فعلی را ذخیره کنید
448
+ cancel: لغو
449
+ cannot_create_payment_without_payment_methods: You cannot create a payment for an order without any payment methods defined.
450
+ cannot_create_returns: Cannot create returns as this order no shipped units.
451
+ cannot_perform_operation: عملیات درخواستی قابل انجام نیست
452
+ cannot_set_shipping_method_without_address:
453
+ capture: Capture
454
+ card_code: کد کارت
455
+ card_number: شماره کارت
456
+ card_type_is: نوع کارت
457
+ cart: سبد خرید
458
+ categories: دسته بندی ها
459
+ category: دسته بندی
460
+ check_for_spree_alerts:
461
+ checkout: تصفیه حساب
462
+ choose_a_customer:
463
+ choose_currency: انتخاب واحد پول
464
+ choose_dashboard_locale:
465
+ city: شهر
466
+ clone: Clone
467
+ close:
468
+ close_all_adjustments:
469
+ code: کد
470
+ company: کمپانی
471
+ complete: تکمیل
472
+ configuration: پیکربندی
473
+ configurations: پیکربندی ها
474
+ configure_s3: Configure S3
475
+ confirm: تایید
476
+ confirm_delete: تایید حذف
477
+ confirm_password: تکرار رمز عبور
478
+ continue: ادامه
479
+ continue_shopping: ادامه خرید
480
+ cost_currency: واحد پول
481
+ cost_price: قیمت
482
+ could_not_connect_to_jirafe:
483
+ could_not_create_stock_movement:
484
+ count_on_hand:
485
+ countries: کشورها
486
+ country: کشور
487
+ country_based: بر حسب کشور
488
+ country_name:
489
+ coupon: کوپن
490
+ coupon_code: کد کوپن
491
+ coupon_code_already_applied:
492
+ coupon_code_applied: The coupon code was successfully applied to your order.
493
+ coupon_code_better_exists:
494
+ coupon_code_expired:
495
+ coupon_code_max_usage:
496
+ coupon_code_not_eligible:
497
+ coupon_code_not_found:
498
+ create: ایجاد
499
+ create_a_new_account: ایجاد یک حساب جدید
500
+ created_at:
501
+ credit: اعتبار
502
+ credit_card: کارت اعتباری
503
+ credit_cards: Credit Cards
504
+ credit_owed: اعتبار مقروض
505
+ currency: واحد پول
506
+ currency_decimal_mark:
507
+ currency_settings: Currency Settings
508
+ currency_symbol_position: Put currency symbol before or after dollar amount?
509
+ currency_thousands_separator:
510
+ current: جاری
511
+ current_promotion_usage:
512
+ customer: مشتری
513
+ customer_details: جزئیات مشتری
514
+ customer_details_updated: The customer's details have been updated.
515
+ customer_search: جستجوی مشتری
516
+ cut: Cut
517
+ dash:
518
+ jirafe:
519
+ app_id:
520
+ app_token:
521
+ currently_unavailable:
522
+ explanation:
523
+ header:
524
+ site_id:
525
+ token:
526
+ jirafe_settings_updated:
527
+ date:
528
+ date_completed: Date Completed
529
+ date_picker:
530
+ first_day:
531
+ format:
532
+ js_format:
533
+ date_range: محدوده ی زمانی
534
+ default: پیش فرض
535
+ default_meta_description: Default Meta Description
536
+ default_meta_keywords: Default Meta Keywords
537
+ default_seo_title: Default Seo Title
538
+ default_tax: Default Tax
539
+ default_tax_zone: Default Tax Zone
540
+ delete: حذف
541
+ delivery: تحویل
542
+ depth: عمق
543
+ description: توضیح
544
+ destination:
545
+ destroy: پاک کردن
546
+ discount_amount: مقدار تخفیف
547
+ dismiss_banner: No. Thanks! I'm not interested, do not display this message again
548
+ display: نمایش
549
+ display_currency: Display currency
550
+ edit: ویرایش
551
+ editing_resource: ویرایش منابع
552
+ editing_rma_reason: ویرایش دلایل RMA
553
+ editing_option_type: ویرایش نوع انتخاب
554
+ editing_payment_method: ویرایش متد پرداخت
555
+ editing_product: ویرایش محصول
556
+ editing_promotion: Editing Promotion
557
+ editing_property: ویرایش اموال
558
+ editing_prototype: ویرایش نمونه اولیه
559
+ editing_shipping_category: ویرایش دسته بندی ارسال
560
+ editing_shipping_method: ویرایش روش ارسال
561
+ editing_state: ویرایش ایالت یا استان
562
+ editing_stock_location:
563
+ editing_stock_movement:
564
+ editing_tax_category: ویرایش دسته بندی مالیات
565
+ editing_tax_rate: ویرایش نرخ مالیات
566
+ editing_tracker: ویرایش ردگیر
567
+ editing_user: ویرایش کاربر
568
+ editing_zone: ویرایش ناحیه
569
+ email: ایمیل
570
+ empty: خالی
571
+ empty_cart: سبد خرید خالی شود
572
+ enable_mail_delivery: فعال سازی تحویل نامه
573
+ end:
574
+ ending_in: Ending in
575
+ environment: محیط
576
+ error: ایراد
577
+ errors:
578
+ messages:
579
+ could_not_create_taxon: "امکان ایجاد نوع دسته‌بندی وجود ندارد"
580
+ no_payment_methods_available:
581
+ no_shipping_methods_available: "ارسال برای ناحیه انتخاب شده مقدور نمی‌باشد، لطفا منطقه‌ی دیگری را انتخاب کنید"
582
+ errors_prohibited_this_record_from_being_saved:
583
+ one: "یک ایراد مانع از انجام ذخیره‌سازی است"
584
+ other: "%{count} ایراد مانع از انجام ذخیره‌سازی است"
585
+ event: "رویداد"
586
+ events:
587
+ spree:
588
+ cart:
589
+ add: "اضافه به سبد خرید"
590
+ checkout:
591
+ coupon_code_added: "کد کوپن اضافه شد"
592
+ content:
593
+ visited:
594
+ order:
595
+ contents_changed: "محتویات سفارش تغییر یافت"
596
+ page_view:
597
+ user:
598
+ signup: "ثبت‌نام کاربر"
599
+ exceptions:
600
+ count_on_hand_setter:
601
+ expiration: انقضاء
602
+ extension: الحاقی
603
+ filename: نام فایل
604
+ fill_in_customer_info:
605
+ filter_results: فیلتر کردن نتایج
606
+ finalize: نهایی کردن
607
+ first_item: هزینه اولین آیتم
608
+ first_name: نام
609
+ first_name_begins_with: حرف آغازین نام
610
+ flat_percent: Flat Percent
611
+ flat_rate_per_item: Flat Rate (per item)
612
+ flat_rate_per_order: Flat Rate (per order)
613
+ flexible_rate: Flexible Rate
614
+ forgot_password: آیا رمز عبور را فراموش کرده اید؟
615
+ free_shipping: ارسال رایگان
616
+ front_end: Front End
617
+ gateway: درگاه
618
+ gateway_config_unavailable: درگاه برای این محیط در دسترس نیست
619
+ gateway_error: ایراد درگاه
620
+ general: عمومی
621
+ general_settings: تنظیمات عمومی
622
+ google_analytics: Google Analytics
623
+ google_analytics_id: Analytics ID
624
+ guest_checkout: تصفیه حساب میهمان
625
+ guest_user_account: تصفیه حساب به عنوان کاربر میهمان
626
+ has_no_shipped_units: has no shipped units
627
+ height: ارتفاع
628
+ hide_cents:
629
+ home: صفحه اصلی
630
+ i18n:
631
+ available_locales:
632
+ language:
633
+ localization_settings:
634
+ this_file_language: فارسی(fa)
635
+ icon: آیکون
636
+ image: تصویر
637
+ image_settings: Image Settings
638
+ image_settings_updated: Image Settings successfully updated.
639
+ image_settings_warning: You will need to regenerate thumbnails if you update the paperclip styles. Use rake paperclip:refresh:thumbnails to do this.
640
+ images: تصاویر
641
+ included_in_price: Included in Price
642
+ included_price_validation: cannot be selected unless you have set a Default Tax Zone
643
+ instructions_to_reset_password: فرم زیر را کامل کنید، طریقه ایجاد رمز عبور جدید برای شما ایمیل خواهد شد
644
+ insufficient_stock: Insufficient stock available, only %{on_hand} remaining
645
+ intercept_email_address: Intercept Email Address
646
+ intercept_email_instructions: Override email recipient and replace with this address.
647
+ internal_name:
648
+ invalid_payment_provider:
649
+ invalid_promotion_action:
650
+ invalid_promotion_rule:
651
+ inventory: انبار
652
+ inventory_adjustment: تعدیلات انبار
653
+ inventory_error_flash_for_insufficient_quantity:
654
+ is_not_available_to_shipment_address: is not available to shipment address
655
+ iso_name:
656
+ item: آیتم
657
+ item_description: توضیحات آیتم
658
+ item_total: کل آیتم ها
659
+ item_total_rule:
660
+ operators:
661
+ gt: بیشتر از
662
+ gte: بیشتر از یا مساوی با
663
+ items_cannot_be_shipped:
664
+ jirafe:
665
+ landing_page_rule:
666
+ path: Path
667
+ last_name: نام خانوادگی
668
+ last_name_begins_with: حرف آغازین نام خانوادگی
669
+ learn_more: Learn More
670
+ list: لیست
671
+ listing_countries:
672
+ listing_orders: لیست کردن سفارش ها
673
+ listing_products: Listing Products
674
+ listing_reports: لیست کردن گزارش ها
675
+ listing_tax_categories: لیست کردن دسته بندی های مالیات
676
+ listing_users: لیست کردن کاربران
677
+ loading: در حال بارگذاری
678
+ locale_changed: (زبان سایت به فارسی تغییر کرد)
679
+ location:
680
+ lock:
681
+ logged_in_as: شما وارد شدید به عنوان
682
+ logged_in_succesfully: ورود موفقیت آمیز بود
683
+ logged_out: شما خارج شدید
684
+ login: ورود
685
+ login_as_existing: Log In as Existing Customer
686
+ login_failed: ورود شما موفقیت آمیز نبود
687
+ login_name: ورود
688
+ logout: خروج
689
+ look_for_similar_items: جستجوی اقلام مشابه
690
+ maestro_or_solo_cards: Maestro/Solo cards
691
+ mail_method_settings:
692
+ mail_methods: متدهای نامه
693
+ make_refund: Make refund
694
+ master_price: قیمت اصلی
695
+ match_choices:
696
+ all: همه
697
+ none: هیچی
698
+ max_items: حداکثر اقلام
699
+ meta_description: Meta Description
700
+ meta_keywords: Meta Keywords
701
+ metadata: Metadata
702
+ minimal_amount: حداقل مقدار
703
+ month: ماه
704
+ more: بیشتر
705
+ move_stock_between_locations:
706
+ my_account: حساب من
707
+ my_orders: سفارش های من
708
+ name: نام
709
+ name_or_sku: نام یا کد کالا
710
+ new: جدید
711
+ new_adjustment: تعدیل جدید
712
+ new_customer: مشتری جدید
713
+ new_image: تصویر جدید
714
+ new_option_type: نوع جدید
715
+ new_order: سفارش جدید
716
+ new_order_completed: سفارش جدید کامل شد
717
+ new_payment: پرداخت جدید
718
+ new_payment_method: متد پرداخت جدید
719
+ new_product: محصول جدید
720
+ new_promotion: فروش ویژه جدید
721
+ new_promotion_category: دسته بندی جدید برای فروش ویژه
722
+ new_property: ویژگی جدید
723
+ new_prototype: نمونه اولیه جدید
724
+ new_return_authorization: جدید
725
+ new_rma_reason: ایجاد دلیل برای مجوز بازگشت کالا
726
+ new_shipping_category: دسته بندی ارسال جدید
727
+ new_shipping_method: متد ارسال جدید
728
+ new_state: ایالت جدید
729
+ new_stock_location:
730
+ new_stock_movement:
731
+ new_stock_transfer:
732
+ new_tax_category: دسته بندی مالیات جدید
733
+ new_tax_rate: نرخ مالیات جدید
734
+ new_taxon: دسته جدید
735
+ new_taxonomy: دسته‌بندی جدید
736
+ new_tracker: ردگیر جدید
737
+ new_user: کاربر جدید
738
+ new_variant: New Variant
739
+ new_zone: ناحیه جدید
740
+ next: بعدی
741
+ no_actions_added:
742
+ no_orders_found:
743
+ no_payment_methods_found:
744
+ no_pending_payments:
745
+ no_products_found: هیچ محصولی یافت نشد
746
+ no_promotions_found:
747
+ no_resource_found:
748
+ no_results: بدون نتیجه
749
+ no_rules_added: هیچ قانونی اضافه نشده
750
+ no_shipping_methods_found:
751
+ no_stock_locations_found:
752
+ no_trackers_found:
753
+ no_tracking_present:
754
+ none: هیچکدام
755
+ normal_amount: مقدار نرمال
756
+ not: not
757
+ not_available: N/A
758
+ not_enough_stock:
759
+ not_found: ! '%{resource} is not found'
760
+ notice_messages:
761
+ product_cloned: Product has been cloned
762
+ product_deleted: محصول حذف شد
763
+ product_not_cloned: Product could not be cloned
764
+ product_not_deleted: نمی توان این محصول را حذف کرد
765
+ variant_deleted: Variant has been deleted
766
+ variant_not_deleted: Variant could not be deleted
767
+ on_hand: On Hand
768
+ open:
769
+ open_all_adjustments:
770
+ option_type: نوع اختیار
771
+ option_type_placeholder:
772
+ option_types: انواع اختیارات
773
+ option_value: مقدار
774
+ option_values: مقادیر
775
+ optional: اختیاری
776
+ options: اختیارات
777
+ or: یا
778
+ or_over_price: ! '%{price} or over'
779
+ order: سفارش
780
+ order_adjustments: Order adjustments
781
+ order_details: جزئیات سفارش
782
+ order_email_resent: Order Email Resent
783
+ order_information:
784
+ order_mailer:
785
+ cancel_email:
786
+ dear_customer: مشتری محترم,
787
+ instructions: Your order has been CANCELED. Please retain this cancellation information for your records.
788
+ order_summary_canceled: Order Summary [CANCELED]
789
+ subject: لغو سفارش
790
+ subtotal:
791
+ total:
792
+ confirm_email:
793
+ dear_customer: مشتری محترم,
794
+ instructions: Please review and retain the following order information for your records.
795
+ order_summary: Order Summary
796
+ subject: تایید سفارش
797
+ subtotal:
798
+ thanks: از خرید شما متشکریم.
799
+ total:
800
+ order_not_found:
801
+ order_number: سفارش
802
+ order_processed_successfully: سفارش شما به طور موفقیت‌آمیز ثبت شد.
803
+ order_state:
804
+ address: آدرس
805
+ awaiting_return: awaiting return
806
+ canceled: لغو شد
807
+ cart: سبد خرید
808
+ complete: تکمیل
809
+ confirm: تایید
810
+ delivery: تحویل
811
+ payment: پرداخت
812
+ resumed: ادامه
813
+ returned: برگشت خورد
814
+ order_summary: خلاصه سفارش
815
+ order_sure_want_to:
816
+ order_total: کل سفارش
817
+ order_updated: سفارش بروز رسانی شد
818
+ orders: سفارشات
819
+ out_of_stock: موجودی نداریم
820
+ overview: مرور کلی
821
+ package_from:
822
+ pagination:
823
+ next_page: next page »
824
+ previous_page: ! '« previous page'
825
+ truncate: ! '…'
826
+ password: رمز عبور
827
+ paste: Paste
828
+ path: Path
829
+ pay: pay
830
+ payment: پرداخت
831
+ payment_information: اطلاعات پرداخت
832
+ payment_method: روش پرداخت
833
+ payment_method_not_supported:
834
+ payment_methods: روش های پرداخت
835
+ payment_processing_failed: پردازش پرداخت با مشکل مواجه شد. لطفا اطلاعات ورودی خود را کنترل کنید
836
+ payment_processor_choose_banner_text: If you need help choosing a payment processor, please visit
837
+ payment_processor_choose_link: our payments page
838
+ payment_state: وضعیت پرداخت
839
+ payment_states:
840
+ balance_due: پرداخت نشده
841
+ checkout: تصفیه حساب
842
+ completed: تکمیل شده
843
+ credit_owed: credit owed
844
+ failed: failed
845
+ paid: پرداخت شده
846
+ pending: معلق
847
+ processing: در حال پردازش
848
+ void: void
849
+ payment_updated: پرداخت بروز رسانی شد
850
+ payments: پرداخت ها
851
+ percent:
852
+ percent_per_item: Percent Per Item
853
+ permalink: Permalink
854
+ phone: تلفن
855
+ place_order: انجام سفارش
856
+ please_define_payment_methods: Please define some payment methods first.
857
+ populate_get_error: Something went wrong. Please try adding the item again.
858
+ powered_by: قدرت گرفته شده توسط
859
+ presentation: ارائه دهده
860
+ previous: قبلی
861
+ price: قیمت
862
+ price_range: محدوده قیمت
863
+ price_sack: Price Sack
864
+ process: پردازش
865
+ product: محصول
866
+ product_details: اطلاعات محصول
867
+ product_has_no_description: این محصول فاقد توضیحات است
868
+ product_not_available_in_this_currency:
869
+ product_properties: ویژگی های محصول
870
+ product_rule:
871
+ choose_products: "محصول‌ها را انتخاب کنید"
872
+ label:
873
+ match_all: "همه"
874
+ match_any: "حداقل یکی"
875
+ match_none:
876
+ product_source:
877
+ group: از گروه محصول
878
+ manual: انتخاب دستی
879
+ products: محصولات
880
+ promotion: "فروش ویژه"
881
+ promotion_action: فروش ویژه فعال
882
+ promotion_action_types:
883
+ create_adjustment:
884
+ description:
885
+ name:
886
+ create_item_adjustments:
887
+ description:
888
+ name:
889
+ create_line_items:
890
+ description:
891
+ name:
892
+ free_shipping:
893
+ description:
894
+ name:
895
+ promotion_actions:
896
+ promotion_form:
897
+ match_policies:
898
+ all:
899
+ any:
900
+ promotion_rule:
901
+ promotion_rule_types:
902
+ first_order:
903
+ description:
904
+ name:
905
+ item_total:
906
+ description:
907
+ name:
908
+ landing_page:
909
+ description:
910
+ name:
911
+ one_use_per_user:
912
+ description:
913
+ name:
914
+ option_value:
915
+ description:
916
+ name:
917
+ product:
918
+ description:
919
+ name:
920
+ taxon:
921
+ description:
922
+ name:
923
+ user:
924
+ description:
925
+ name:
926
+ user_logged_in:
927
+ description: Available only to logged in users
928
+ name: User Logged In
929
+ promotions: فروش ویژه
930
+ properties: ویژگی ها
931
+ property: ویژگی
932
+ prototype: نونه آزمایشی
933
+ prototypes: نمونه های آزمایشی
934
+ provider: فراهم آورنده
935
+ provider_settings_warning: If you are changing the provider type, you must save first before you can edit the provider settings
936
+ qty: تعداد
937
+ quantity:
938
+ quantity_returned: Quantity Returned
939
+ quantity_shipped: Quantity Shipped
940
+ rate: Rate
941
+ reason: Reason
942
+ receive: receive
943
+ receive_stock:
944
+ received: دریافت شد
945
+ reference: ارجاع
946
+ refund_amount_must_be_greater_than_zero: مقدار بازپرداخت باید از صفر بیشتر باشد
947
+ refund_reasons: دلیل استرداد
948
+ refunded_amount: مقدار استرداد
949
+ refund: استرداد
950
+ register: به عنوان کاربر جدید ثبت نام کنید
951
+ registration: ثبت نام
952
+ remember_me: من را به یاد بسپار
953
+ remove: حدف
954
+ rename: تغییر نام
955
+ reports: گزارشات
956
+ resend: اخیرا
957
+ reset_password: ریست رمز عبور
958
+ response_code: Response Code
959
+ resume: ادامه
960
+ resumed: Resumed
961
+ return: برگشت
962
+ return_authorization: مجوز بازگشت
963
+ return_authorization_reasons: دلایل صدور مجوز بازگشت
964
+ return_authorization_updated: Return authorization updated
965
+ return_authorizations: Return Authorizations
966
+ return_quantity: Return Quantity
967
+ returned: برگشت داده شد
968
+ review: بازنگری
969
+ rma_credit: RMA Credit
970
+ rma_number: RMA Number
971
+ rma_value: RMA Value
972
+ roles: "نقش ها"
973
+ rules: قوانین
974
+ safe: مطمئن
975
+ s3_access_key: Access Key
976
+ s3_bucket: Bucket
977
+ s3_headers: S3 Headers
978
+ s3_protocol: S3 Protocol
979
+ s3_secret: Secret Key
980
+ sales_total: کل فروش
981
+ sales_total_description: کل فروش برای همه سفارش ها
982
+ sales_totals: کلیه فروش ها
983
+ save_and_continue: ذخیره و ادامه
984
+ say_no: 'No'
985
+ say_yes: 'Yes'
986
+ scope: Scope
987
+ search: جستجو
988
+ search_results: Search results for '%{keywords}'
989
+ searching: در حال جستجو
990
+ secure_connection_type: نوع اتصال امن
991
+ security_settings: تنظیمات امنیتی
992
+ select: انتخاب
993
+ select_from_prototype: از نمونه اولیه انتخاب کن
994
+ select_stock:
995
+ send_copy_of_all_mails_to: Send Copy of All Mails To
996
+ send_mails_as: Send Mails As
997
+ server: سرور
998
+ server_error: سرور با ایراد مواجه شد
999
+ settings: تنظیمات
1000
+ ship: ارسال
1001
+ ship_address: Ship Address
1002
+ ship_total:
1003
+ shipment:
1004
+ shipment_inc_vat: Shipment including VAT
1005
+ shipment_mailer:
1006
+ shipped_email:
1007
+ dear_customer: Dear Customer,
1008
+ instructions: Your order has been shipped
1009
+ shipment_summary: Shipment Summary
1010
+ subject: Shipment Notification
1011
+ thanks: Thank you for your business.
1012
+ track_information: ! 'Tracking Information: %{tracking}'
1013
+ track_link:
1014
+ shipment_state: Shipment State
1015
+ shipment_states:
1016
+ backorder: backorder
1017
+ partial: partial
1018
+ pending: معلق
1019
+ ready: آماده
1020
+ shipped: ارسال شد
1021
+ shipments: Shipments
1022
+ shipped: ارسال شد
1023
+ shipping: ارسال
1024
+ shipping_address: آدرس ارسال
1025
+ shipping_categories: دسته بندی های ارسال
1026
+ shipping_category: دسته بندی ارسال
1027
+ shipping_flat_rate_per_item:
1028
+ shipping_flat_rate_per_order:
1029
+ shipping_flexible_rate:
1030
+ shipping_instructions: دستورالعمل های ارسال
1031
+ shipping_method: روش ارسال
1032
+ shipping_methods: روش های ارسال
1033
+ shipping_price_sack:
1034
+ shop_by_taxonomy: خرید بر حسب %{taxonomy}
1035
+ shopping_cart: سبد خرید
1036
+ show: نمایش
1037
+ show_active: Show Active
1038
+ show_deleted: Show Deleted
1039
+ show_only_complete_orders: نمایش سفارشات تکمیل شده
1040
+ show_rate_in_label:
1041
+ sku: کد کالا
1042
+ smtp: SMTP
1043
+ smtp_authentication_type: SMTP Authentication Type
1044
+ smtp_domain: SMTP Domain
1045
+ smtp_mail_host: SMTP Mail Host
1046
+ smtp_password: SMTP Password
1047
+ smtp_port: SMTP Port
1048
+ smtp_send_all_emails_as_from_following_address: تمام نامه ها را از آدرس ذیل ارسال کن
1049
+ smtp_send_copy_to_this_addresses: Sends a copy of all outgoing mails to this address. For multiple addresses, separate with commas.
1050
+ smtp_username: SMTP Username
1051
+ source:
1052
+ special_instructions: ساختارهای خاص
1053
+ split:
1054
+ spree/order:
1055
+ coupon_code:
1056
+ spree_gateway_error_flash_for_checkout: There was a problem with your payment information. Please check your information and try again.
1057
+ start: شروع
1058
+ start_date: Valid from
1059
+ state: ایالت یا استان
1060
+ state_based: State Based
1061
+ states: ایالات یا استان ها
1062
+ states_required:
1063
+ status: وضعیت
1064
+ stock_location: مکان انبار
1065
+ stock_location_info: توضیحات انبار
1066
+ stock_locations: مکان انبارها
1067
+ stock_management: مدیریت انبار
1068
+ stock_management_requires_a_stock_location:
1069
+ stock_movements:
1070
+ stock_movements_for_stock_location:
1071
+ stock_successfully_transferred:
1072
+ stock_transfer: ترخیص از انبار
1073
+ stock_transfers: ترخیص ها از انبار
1074
+ stop: توقف
1075
+ store: فروشگاه
1076
+ street_address: آدرس
1077
+ street_address_2: ادامه آدرس
1078
+ subtotal: جمع
1079
+ subtract: Subtract
1080
+ successfully_created: ! '%{resource} با موفقیت اضافه شد!'
1081
+ successfully_removed: ! '%{resource} با موفقیت حذف شد!'
1082
+ successfully_signed_up_for_analytics:
1083
+ successfully_updated: ! '%{resource} با موفقیت به روز رسانی شد!'
1084
+ tax: مالیات
1085
+ tax_categories: دسته بندی های مالیات
1086
+ tax_category: دسته بندی مالیات
1087
+ tax_rate_amount_explanation:
1088
+ tax_rates: نرخ مالیات
1089
+ tax_settings: تنظیمات مالیات
1090
+ tax_total: کل مالیات
1091
+ taxon: دسته
1092
+ taxon_edit: ویرایش دسته
1093
+ taxon_placeholder:
1094
+ taxonomies: رده‌بندی‌ها
1095
+ taxonomy: رده‌بندی
1096
+ taxonomy_edit: ویرایش طبقه بندی
1097
+ taxonomy_tree_error: The requested change has not been accepted and the tree has been returned to its previous state, please try again.
1098
+ taxonomy_tree_instruction: ! '* Right click a child in the tree to access the menu for adding, deleting or sorting a child.'
1099
+ taxons: گونه ها
1100
+ test: تست
1101
+ test_mailer:
1102
+ test_email:
1103
+ greeting: Congratulations!
1104
+ message: If you have received this email, then your email settings are correct.
1105
+ subject: Testmail
1106
+ test_mode: مد تست
1107
+ thank_you_for_your_order: با تشکر، لطفا یک کپی از این صفحه برای نگهداری در نزد خود، پرینت کنید
1108
+ there_are_no_items_for_this_order:
1109
+ there_were_problems_with_the_following_fields: به مشکلاتی در فیلدهای ذیل برخوردیم
1110
+ thumbnail: Thumbnail
1111
+ time:
1112
+ to_add_variants_you_must_first_define: To add variants, you must first define
1113
+ total: کل
1114
+ tracking: ردگیری
1115
+ tracking_number:
1116
+ tracking_url:
1117
+ tracking_url_placeholder:
1118
+ transfer_from_location:
1119
+ transfer_stock:
1120
+ transfer_to_location:
1121
+ tree: Tree
1122
+ type: نوع
1123
+ type_to_search: Type to search
1124
+ unable_to_connect_to_gateway: اتصال به درگاه مقدور نیست
1125
+ under_price: Under %{price}
1126
+ unlock:
1127
+ unrecognized_card_type: نوع کارت ناشناخته
1128
+ unshippable_items:
1129
+ update: بروز رسانی
1130
+ updating: در حال بروز رسانی
1131
+ usage_limit: محدودیت استفاده
1132
+ use_billing_address: همانند آدرس پرداخت
1133
+ use_new_cc: از یک کارت جدید استفاده کن
1134
+ use_s3: Use Amazon S3 For Images
1135
+ user: کاربر
1136
+ user_rule:
1137
+ choose_users: "انتخاب کاربرها"
1138
+ users: "کاربرها"
1139
+ validation:
1140
+ cannot_be_less_than_shipped_units: cannot be less than the number of shipped units.
1141
+ cannot_destory_line_item_as_inventory_units_have_shipped: Cannot destory line item as some inventory units have shipped.
1142
+ exceeds_available_stock:
1143
+ is_too_large: is too large -- stock on hand cannot cover requested quantity!
1144
+ must_be_int: باید به صورت عدد صحیح وارد شوند
1145
+ must_be_non_negative: must be a non-negative value
1146
+ value: مقدار
1147
+ variant: Variant
1148
+ variant_placeholder:
1149
+ variants: Variants
1150
+ version: نسخه
1151
+ void: Void
1152
+ weight: وزن
1153
+ what_is_a_cvv: What is a (CVV) Credit Card Code?
1154
+ what_is_this: این چیست؟
1155
+ width: پهنا
1156
+ year: سال
1157
+ you_have_no_orders_yet: شما هنوز سفارشی ثبت نکرده اید
1158
+ your_cart_is_empty: سبد خرید شما خالی است
1159
+ your_order_is_empty_add_product:
1160
+ zip: کد پستی
1161
+ zipcode:
1162
+ zone: ناحیه
1163
+ zones: ناحیه ها