-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathfa.csv
We can't make this file beautiful and searchable because it's too large.
7968 lines (7955 loc) · 893 KB
/
fa.csv
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
DocType: Accounting Period,Period Name,نام دوره
DocType: Employee,Salary Mode,حالت حقوق و دستمزد
apps/erpnext/erpnext/public/js/hub/marketplace.js,Register,ثبت نام
apps/erpnext/erpnext/stock/doctype/material_request/material_request_list.js,Partially Received,تا حدی دریافت شد
DocType: Patient,Divorced,طلاق
DocType: Support Settings,Post Route Key,کلید مسیر پیام
DocType: Buying Settings,Allow Item to be added multiple times in a transaction,اجازه می دهد مورد به چند بار در یک معامله اضافه شود
DocType: Content Question,Content Question,سؤال محتوا
apps/erpnext/erpnext/support/doctype/warranty_claim/warranty_claim.py,Cancel Material Visit {0} before cancelling this Warranty Claim,لغو مواد مشاهده {0} قبل از لغو این ادعا گارانتی
DocType: Customer Feedback Table,Qualitative Feedback,بازخورد کیفی
apps/erpnext/erpnext/config/education.py,Assessment Reports,گزارش های ارزیابی
DocType: Invoice Discounting,Accounts Receivable Discounted Account,حساب با تخفیف قابل دریافت
apps/erpnext/erpnext/accounts/doctype/invoice_discounting/invoice_discounting_list.js,Canceled,لغو شد
apps/erpnext/erpnext/setup/setup_wizard/data/industry_type.py,Consumer Products,محصولات مصرفی
DocType: Supplier Scorecard,Notify Supplier,اطلاع رسانی کننده
apps/erpnext/erpnext/accounts/report/payment_period_based_on_invoice_date/payment_period_based_on_invoice_date.js,Please select Party Type first,لطفا ابتدا حزب نوع را انتخاب کنید
DocType: Item,Customer Items,آیتم های مشتری
apps/erpnext/erpnext/accounts/report/balance_sheet/balance_sheet.py,Liabilities,بدهی
DocType: Project,Costing and Billing,هزینه یابی و حسابداری
apps/erpnext/erpnext/hr/doctype/employee_advance/employee_advance.py,Advance account currency should be same as company currency {0},پول حساب پیشنهادی باید به صورت پولی شرکت باشد {0}
DocType: QuickBooks Migrator,Token Endpoint,نقطه پایانی توکن
apps/erpnext/erpnext/accounts/doctype/account/account.py,Account {0}: Parent account {1} can not be a ledger,حساب {0}: حساب مرجع {1} می تواند یک دفتر نمی
DocType: Item,Publish Item to hub.erpnext.com,مورد انتشار hub.erpnext.com
apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py,Cannot find active Leave Period,می توانید دوره فعال خروج را پیدا نکنید
apps/erpnext/erpnext/hr/doctype/employee/employee_dashboard.py,Evaluation,ارزیابی
DocType: Item,Default Unit of Measure,واحد اندازه گیری پیش فرض
DocType: SMS Center,All Sales Partner Contact,اطلاعات تماس تمام شرکای فروش
DocType: Department,Leave Approvers,ترک Approvers
DocType: Employee,Bio / Cover Letter,Bio / Cover Letter
apps/erpnext/erpnext/public/js/hub/pages/Publish.vue,Search Items ...,جستجوی موارد ...
DocType: Patient Encounter,Investigations,تحقیقات
DocType: Restaurant Order Entry,Click Enter To Add,برای افزودن کلیک کنید
apps/erpnext/erpnext/erpnext_integrations/doctype/shopify_settings/shopify_settings.py,"Missing value for Password, API Key or Shopify URL",مقدار نامعتبر برای رمز عبور، کلید API یا Shopify URL
DocType: Employee,Rented,اجاره
apps/erpnext/erpnext/accounts/doctype/chart_of_accounts_importer/chart_of_accounts_importer.js,All Accounts,همه حسابها
apps/erpnext/erpnext/hr/doctype/employee_transfer/employee_transfer.py,Cannot transfer Employee with status Left,انتقال کارمند با وضعیت چپ امکان پذیر نیست
DocType: Vehicle Service,Mileage,مسافت پیموده شده
apps/erpnext/erpnext/assets/doctype/asset/asset.js,Do you really want to scrap this asset?,آیا شما واقعا می خواهید به قراضه این دارایی؟
DocType: Drug Prescription,Update Schedule,به روز رسانی برنامه
apps/erpnext/erpnext/buying/report/quoted_item_comparison/quoted_item_comparison.js,Select Default Supplier,کننده پیش فرض انتخاب کنید
apps/erpnext/erpnext/hr/doctype/job_offer/job_offer.js,Show Employee,نمایش کارمند
DocType: Payroll Period,Standard Tax Exemption Amount,مبلغ معافیت مالیاتی استاندارد
DocType: Exchange Rate Revaluation Account,New Exchange Rate,نرخ ارز جدید
apps/erpnext/erpnext/shopping_cart/doctype/shopping_cart_settings/shopping_cart_settings.py,Currency is required for Price List {0},برای اطلاع از قیمت ارز مورد نیاز است {0}
DocType: Sales Taxes and Charges Template,* Will be calculated in the transaction.,* * * * آیا می شود در معامله محاسبه می شود.
DocType: Delivery Trip,MAT-DT-.YYYY.-,MAT-DT- .YYYY.-
DocType: Purchase Order,Customer Contact,مشتریان تماس با
DocType: Shift Type,Enable Auto Attendance,حضور و غیاب خودکار را فعال کنید
apps/erpnext/erpnext/stock/doctype/quick_stock_balance/quick_stock_balance.js,Please enter Warehouse and Date,لطفا انبار و تاریخ را وارد کنید
DocType: Lost Reason Detail,Opportunity Lost Reason,فرصت از دست رفته دلیل
DocType: Patient Appointment,Check availability,بررسی در دسترس بودن
DocType: Retention Bonus,Bonus Payment Date,تاریخ پرداخت پاداش
DocType: Employee,Job Applicant,درخواستگر کار
DocType: Job Card,Total Time in Mins,زمان کل در مینس
apps/erpnext/erpnext/buying/doctype/supplier/supplier_dashboard.py,This is based on transactions against this Supplier. See timeline below for details,این است که در معاملات در برابر این کننده است. مشاهده جدول زمانی زیر برای جزئیات
DocType: Manufacturing Settings,Overproduction Percentage For Work Order,درصد تولید بیش از حد برای سفارش کار
DocType: Landed Cost Voucher,MAT-LCV-.YYYY.-,MAT-LCV- .YYYY.-
apps/erpnext/erpnext/setup/setup_wizard/operations/install_fixtures.py,Legal,حقوقی
DocType: Sales Invoice,Transport Receipt Date,تاریخ تحویل حمل و نقل
DocType: Shopify Settings,Sales Order Series,سفارش سری فروش
DocType: Vital Signs,Tongue,زبان
apps/erpnext/erpnext/accounts/doctype/payment_entry/payment_entry.js,Actual type tax cannot be included in Item rate in row {0},مالیات واقعی نوع می تواند در میزان مورد در ردیف شامل نمی شود {0}
DocType: Allowed To Transact With,Allowed To Transact With,مجاز به انجام معاملات
DocType: Bank Guarantee,Customer,مشتری
DocType: Purchase Receipt Item,Required By,مورد نیاز
DocType: Delivery Note,Return Against Delivery Note,بازگشت علیه تحویل توجه داشته باشید
DocType: Asset Category,Finance Book Detail,جزئیات مالی امور مالی
apps/erpnext/erpnext/assets/doctype/asset/asset.py,All the depreciations has been booked,همه استهلاک ها رزرو شده اند
DocType: Purchase Order,% Billed,٪ صورتحساب شد
apps/erpnext/erpnext/hr/report/bank_remittance/bank_remittance.py,Payroll Number,شماره حقوق و دستمزد
apps/erpnext/erpnext/controllers/sales_and_purchase_return.py,Exchange Rate must be same as {0} {1} ({2}),نرخ ارز باید به همان صورت {0} {1} ({2})
DocType: Employee Tax Exemption Declaration,HRA Exemption,اخراج HRA
DocType: Sales Invoice,Customer Name,نام مشتری
DocType: Vehicle,Natural Gas,گاز طبیعی
DocType: Project,Message will sent to users to get their status on the project,برای دریافت وضعیت خود در این پروژه پیام به کاربران ارسال می شود
apps/erpnext/erpnext/setup/setup_wizard/operations/install_fixtures.py,Bank account cannot be named as {0},حساب بانکی می تواند به عنوان نمی شود به نام {0}
DocType: Employee Tax Exemption Declaration,HRA as per Salary Structure,HRA به عنوان ساختار حقوق و دستمزد
DocType: Account,Heads (or groups) against which Accounting Entries are made and balances are maintained.,سر (یا گروه) که در برابر مطالب حسابداری ساخته شده است و توازن حفظ می شوند.
apps/erpnext/erpnext/accounts/doctype/gl_entry/gl_entry.py,Outstanding for {0} cannot be less than zero ({1}),برجسته برای {0} نمی تواند کمتر از صفر ({1})
apps/erpnext/erpnext/public/js/controllers/transaction.js,Service Stop Date cannot be before Service Start Date,تاریخ توقف خدمات نمی تواند قبل از تاریخ شروع سرویس باشد
DocType: Manufacturing Settings,Default 10 mins,پیش فرض 10 دقیقه
DocType: Leave Type,Leave Type Name,ترک نام نوع
apps/erpnext/erpnext/templates/pages/projects.js,Show open,نشان می دهد باز
apps/erpnext/erpnext/setup/doctype/naming_series/naming_series.py,Series Updated Successfully,سری به روز رسانی با موفقیت
apps/erpnext/erpnext/templates/includes/cart/cart_dropdown.html,Checkout,وارسی
apps/erpnext/erpnext/controllers/accounts_controller.py,{0} in row {1},{0} در ردیف {1}
DocType: Asset Finance Book,Depreciation Start Date,تاریخ شروع تخلیه
DocType: Pricing Rule,Apply On,درخواست در
DocType: Item Price,Multiple Item prices.,قیمت مورد چندگانه.
,Purchase Order Items To Be Received,سفارش خرید اقلام به دریافت
DocType: SMS Center,All Supplier Contact,همه با منبع تماس با
DocType: Support Settings,Support Settings,تنظیمات پشتیبانی
apps/erpnext/erpnext/erpnext_integrations/doctype/exotel_settings/exotel_settings.py,Invalid credentials,گواهی نامه نامعتبر
apps/erpnext/erpnext/regional/doctype/gstr_3b_report/gstr_3b_report.html,ITC Available (whether in full op part),ITC موجود (چه در بخش کامل عمل)
DocType: Amazon MWS Settings,Amazon MWS Settings,آمازون MWS تنظیمات
apps/erpnext/erpnext/erpnext_integrations/doctype/tally_migration/tally_migration.py,Processing Vouchers,پردازش کوپن
apps/erpnext/erpnext/utilities/transaction_base.py,Row #{0}: Rate must be same as {1}: {2} ({3} / {4}) ,ردیف # {0}: نرخ باید به همان صورت {1}: {2} ({3} / {4})
,Batch Item Expiry Status,دسته ای مورد وضعیت انقضاء
apps/erpnext/erpnext/setup/setup_wizard/operations/install_fixtures.py,Bank Draft,حواله بانکی
DocType: Journal Entry,ACC-JV-.YYYY.-,ACC-JV- .YYYY.-
apps/erpnext/erpnext/hr/report/monthly_attendance_sheet/monthly_attendance_sheet.py,Total Late Entries,کل ورودی های دیررس
DocType: Mode of Payment Account,Mode of Payment Account,نحوه حساب پرداخت
apps/erpnext/erpnext/config/healthcare.py,Consultation,مشاوره
DocType: Accounts Settings,Show Payment Schedule in Print,نمایش برنامه پرداخت در چاپ
apps/erpnext/erpnext/stock/doctype/item/item.py,Item Variants updated,متغیرهای مورد به روز شد
apps/erpnext/erpnext/accounts/report/sales_payment_summary/sales_payment_summary.py,Sales and Returns,فروش و بازده
apps/erpnext/erpnext/stock/doctype/item/item.js,Show Variants,نمایش انواع
DocType: Academic Term,Academic Term,ترم تحصیلی
DocType: Employee Tax Exemption Sub Category,Employee Tax Exemption Sub Category,معافیت مالیاتی کارکنان زیر رده
apps/erpnext/erpnext/regional/italy/utils.py,Please set an Address on the Company '%s',لطفاً آدرس "٪ s" شرکت را تنظیم کنید
apps/erpnext/erpnext/projects/doctype/project/project_dashboard.py,Material,ماده
apps/erpnext/erpnext/hr/doctype/employee_benefit_claim/employee_benefit_claim.py,"Maximum benefit of employee {0} exceeds {1} by the sum {2} of benefit application pro-rata component\
amount and previous claimed amount",حداکثر سود کارمند {0} بیش از {1} با مبلغ {2} سودمندی پروانه rata component / amount و مقدار ادعایی قبلی
DocType: Opening Invoice Creation Tool Item,Quantity,مقدار
,Customers Without Any Sales Transactions,مشتریان بدون هیچگونه معامله فروش
apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py,Accounts table cannot be blank.,جدول حسابها نمی تواند خالی باشد.
DocType: Delivery Trip,Use Google Maps Direction API to calculate estimated arrival times,برای محاسبه زمان رسیدن تخمینی از API جهت نقشه Google استفاده کنید
apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py,Loans (Liabilities),وام (بدهی)
DocType: Patient Encounter,Encounter Time,زمان برخورد
DocType: Staffing Plan Detail,Total Estimated Cost,کل هزینه تخمینی
DocType: Employee Education,Year of Passing,سال عبور
DocType: Routing,Routing Name,نام مسیر
DocType: Item,Country of Origin,کشور مبدا
DocType: Soil Texture,Soil Texture Criteria,معیارهای بافت خاک
apps/erpnext/erpnext/templates/generators/item/item_add_to_cart.html,In Stock,در انبار
apps/erpnext/erpnext/public/js/utils/customer_quick_entry.js,Primary Contact Details,اطلاعات تماس اولیه
apps/erpnext/erpnext/setup/doctype/email_digest/templates/default.html,Open Issues,مسائل باز
DocType: Production Plan Item,Production Plan Item,تولید مورد طرح
DocType: Leave Ledger Entry,Leave Ledger Entry,ورود ورود به سیستم را ترک کنید
apps/erpnext/erpnext/hr/doctype/employee/employee.py,User {0} is already assigned to Employee {1},کاربر {0} در حال حاضر به کارکنان اختصاص داده {1}
DocType: Lab Test Groups,Add new line,اضافه کردن خط جدید
apps/erpnext/erpnext/utilities/activation.py,Create Lead,سرب ایجاد کنید
DocType: Production Plan,Projected Qty Formula,فرمول Qty پیش بینی شده
apps/erpnext/erpnext/setup/setup_wizard/data/industry_type.py,Health Care,بهداشت و درمان
apps/erpnext/erpnext/accounts/report/payment_period_based_on_invoice_date/payment_period_based_on_invoice_date.py,Delay in payment (Days),تاخیر در پرداخت (روز)
DocType: Payment Terms Template Detail,Payment Terms Template Detail,شرایط پرداخت جزئیات قالب
DocType: Hotel Room Reservation,Guest Name,نام مهمان
DocType: Delivery Note,Issue Credit Note,نکته اعتباری
DocType: Lab Prescription,Lab Prescription,نسخه آزمایشگاهی
,Delay Days,روزهای تأخیر
apps/erpnext/erpnext/hr/report/vehicle_expenses/vehicle_expenses.py,Service Expense,هزینه خدمات
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py,Serial Number: {0} is already referenced in Sales Invoice: {1},شماره سریال: {0} در حال حاضر در فاکتور فروش اشاره: {1}
DocType: Bank Statement Transaction Invoice Item,Invoice,فاکتور
DocType: Employee Tax Exemption Declaration Category,Maximum Exempted Amount,حداکثر مقدار مجاز
DocType: Purchase Invoice Item,Item Weight Details,مورد وزن جزئیات
DocType: Asset Maintenance Log,Periodicity,تناوب
apps/erpnext/erpnext/accounts/report/trial_balance/trial_balance.py,Fiscal Year {0} is required,سال مالی {0} مورد نیاز است
apps/erpnext/erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py,Net Profit/Loss,سود / ضرر خالص
DocType: Employee Group Table,ERPNext User ID,شناسه کاربر ERPNext
DocType: Crop Cycle,The minimum distance between rows of plants for optimum growth,حداقل فاصله بین ردیف گیاهان برای رشد مطلوب
apps/erpnext/erpnext/healthcare/doctype/patient_appointment/patient_appointment.js,Please select Patient to get prescribed procedure,لطفاً بیمار را دریافت کنید تا روش تجویز شده را دریافت کنید
apps/erpnext/erpnext/setup/setup_wizard/data/industry_type.py,Defense,دفاع
DocType: Salary Component,Abbr,مخفف
DocType: Appraisal Goal,Score (0-5),امتیاز (0-5)
DocType: Tally Migration,Tally Creditors Account,حساب های طلبکاران Tally
apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py,Row {0}: {1} {2} does not match with {3},ردیف {0}: {1} {2} با مطابقت ندارد {3}
apps/erpnext/erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py,Row # {0}:,ردیف # {0}:
DocType: Timesheet,Total Costing Amount,مبلغ کل هزینه یابی
DocType: Sales Invoice,Vehicle No,خودرو بدون
apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py,Please select Price List,لطفا لیست قیمت را انتخاب کنید
DocType: Accounts Settings,Currency Exchange Settings,تنظیمات ارز Exchange
DocType: Work Order Operation,Work In Progress,کار در حال انجام
DocType: Leave Control Panel,Branch (optional),شعبه (اختیاری)
apps/erpnext/erpnext/education/report/absent_student_report/absent_student_report.py,Please select date,لطفا تاریخ را انتخاب کنید
DocType: Item Price,Minimum Qty ,حداقل تعداد
DocType: Finance Book,Finance Book,کتاب مالی
DocType: Patient Encounter,HLC-ENC-.YYYY.-,HLC-ENC- .YYYY.-
DocType: Daily Work Summary Group,Holiday List,فهرست تعطیلات
apps/erpnext/erpnext/config/quality_management.py,Review and Action,بررسی و اقدام
apps/erpnext/erpnext/hr/doctype/employee_checkin/employee_checkin.py,This employee already has a log with the same timestamp.{0},این کارمند قبلاً با همان دفترچه زمانی وارد سیستم شده است. {0}
apps/erpnext/erpnext/setup/setup_wizard/operations/install_fixtures.py,Accountant,حسابدار
apps/erpnext/erpnext/stock/report/item_price_stock/item_price_stock.py,Selling Price List,لیست قیمت فروش
DocType: Patient,Tobacco Current Use,مصرف فعلی توتون و تنباکو
apps/erpnext/erpnext/selling/report/customer_wise_item_price/customer_wise_item_price.py,Selling Rate,قیمت فروش
DocType: Cost Center,Stock User,سهام کاربر
DocType: Soil Analysis,(Ca+Mg)/K,(Ca + Mg) / K
DocType: Delivery Stop,Contact Information,اطلاعات تماس
apps/erpnext/erpnext/public/js/hub/pages/Search.vue,Search for anything ...,جستجوی هر چیزی ...
DocType: Company,Phone No,تلفن
DocType: Delivery Trip,Initial Email Notification Sent,هشدار ایمیل اولیه ارسال شد
DocType: Bank Statement Settings,Statement Header Mapping,اعلامیه سرصفحه بندی
,Sales Partners Commission,کمیسیون همکاران فروش
DocType: Soil Texture,Sandy Clay Loam,خاک رس شن و ماسه
DocType: Purchase Invoice,Rounding Adjustment,تنظیم گرد کردن
apps/erpnext/erpnext/setup/doctype/company/company.py,Abbreviation cannot have more than 5 characters,مخفف نمی تواند بیش از 5 کاراکتر باشد
DocType: Amazon MWS Settings,AU,AU
DocType: Payment Order,Payment Request,درخواست پرداخت
apps/erpnext/erpnext/config/retail.py,To view logs of Loyalty Points assigned to a Customer.,برای مشاهده سیاهههای مربوط به امتیازات وفاداری به مشتری.
DocType: Asset,Value After Depreciation,ارزش پس از استهلاک
apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py,"Did not found transfered item {0} in Work Order {1}, the item not added in Stock Entry",کالای منتقل شده {0} را به ترتیب کار {1} پیدا نکردید ، کالای مورد نظر در ورودی سهام اضافه نشده است
DocType: Student,O+,O +
apps/erpnext/erpnext/stock/doctype/material_request/material_request_dashboard.py,Related,مربوط
apps/erpnext/erpnext/hr/doctype/attendance/attendance.py,Attendance date can not be less than employee's joining date,تاریخ حضور و غیاب نمی تواند کمتر از تاریخ پیوستن کارکنان
DocType: Grading Scale,Grading Scale Name,درجه بندی نام مقیاس
DocType: Employee Training,Training Date,تاریخ آموزش
apps/erpnext/erpnext/public/js/hub/marketplace.js,Add Users to Marketplace,افزودن کاربران به بازار
apps/erpnext/erpnext/accounts/doctype/account/account.js,This is a root account and cannot be edited.,این یک حساب ریشه است و نمی تواند ویرایش شود.
DocType: POS Profile,Company Address,آدرس شرکت
DocType: BOM,Operations,عملیات
apps/erpnext/erpnext/setup/doctype/authorization_rule/authorization_rule.py,Cannot set authorization on basis of Discount for {0},آیا می توانم مجوز بر اساس تخفیف برای تنظیم نشده {0}
apps/erpnext/erpnext/regional/india/utils.py,e-Way Bill JSON cannot be generated for Sales Return as of now,بیل جی اسون از طریق e-way اکنون نمی تواند برای بازگشت فروش تولید شود
DocType: Subscription,Subscription Start Date,تاریخ شروع اشتراک
DocType: Healthcare Settings,Default receivable accounts to be used if not set in Patient to book Appointment charges.,حساب های دریافتی پیش فرض که باید در بیمار برای اتهام عضویت در انجمن تنظیم شوند استفاده می شود.
DocType: Rename Tool,"Attach .csv file with two columns, one for the old name and one for the new name",ضمیمه. CSV فایل با دو ستون، یکی برای نام قدیمی و یکی برای نام جدید
apps/erpnext/erpnext/regional/report/eway_bill/eway_bill.py,From Address 2,از آدرس 2
apps/erpnext/erpnext/hr/doctype/employee_tax_exemption_proof_submission/employee_tax_exemption_proof_submission.js,Get Details From Declaration,جزئیات را از اعلامیه دریافت کنید
apps/erpnext/erpnext/accounts/utils.py,{0} {1} not in any active Fiscal Year.,{0} {1} در هر سال مالی فعال.
DocType: Packed Item,Parent Detail docname,جزئیات docname پدر و مادر
apps/erpnext/erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py,"Reference: {0}, Item Code: {1} and Customer: {2}",مرجع: {0}، کد مورد: {1} و ضوابط: {2}
apps/erpnext/erpnext/accounts/report/consolidated_financial_statement/consolidated_financial_statement.py,{0} {1} is not present in the parent company,{0} {1} در شرکت مادر وجود ندارد
apps/erpnext/erpnext/accounts/doctype/subscription/subscription.py,Trial Period End Date Cannot be before Trial Period Start Date,تاریخ پایان دوره آزمایشی نمی تواند قبل از دوره آزمایشی تاریخ شروع شود
apps/erpnext/erpnext/utilities/user_progress.py,Kg,کیلوگرم
DocType: Tax Withholding Category,Tax Withholding Category,بخش مالیات اجباری
apps/erpnext/erpnext/assets/doctype/asset_value_adjustment/asset_value_adjustment.py,Cancel the journal entry {0} first,ابتدا ورود مجله {0} را لغو کنید
DocType: Purchase Invoice,ACC-PINV-.YYYY.-,ACC-PINV- .YYYY.-
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py,BOM is not specified for subcontracting item {0} at row {1},BOM برای قرارداد قراردادن {0} در ردیف {1} مشخص نشده است
DocType: Vital Signs,Reflexes,رفلکس
apps/erpnext/erpnext/education/doctype/assessment_result_tool/assessment_result_tool.js,{0} Result submittted,{0} نتایج ارسال شده
DocType: Item Attribute,Increment,افزایش
apps/erpnext/erpnext/templates/pages/search_help.py,Help Results for,نتایج جستجو برای
apps/erpnext/erpnext/public/js/stock_analytics.js,Select Warehouse...,انتخاب کنید ... انبار
apps/erpnext/erpnext/setup/setup_wizard/data/industry_type.py,Advertising,تبلیغات
apps/erpnext/erpnext/hr/doctype/expense_claim_type/expense_claim_type.py,Same Company is entered more than once,همان شرکت است وارد بیش از یک بار
DocType: Patient,Married,متاهل
apps/erpnext/erpnext/accounts/party.py,Not permitted for {0},برای مجاز نیست {0}
apps/erpnext/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.js,Get items from,گرفتن اقلام از
DocType: Stock Entry,Send to Subcontractor,ارسال به پیمانکار
DocType: Purchase Invoice,Apply Tax Withholding Amount,مقدار مالیات اخراج را اعمال کنید
apps/erpnext/erpnext/manufacturing/doctype/job_card/job_card.py,Total completed qty can not be greater than for quantity,تعداد کل تکمیل شده نمی تواند بیشتر از مقدار باشد
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py,Stock cannot be updated against Delivery Note {0},سهام می تواند در برابر تحویل توجه نمی شود به روز شده {0}
apps/erpnext/erpnext/accounts/report/tds_computation_summary/tds_computation_summary.py,Total Amount Credited,مبلغ کل اعتبار
apps/erpnext/erpnext/templates/generators/item_group.html,No items listed,بدون موارد ذکر شده
DocType: Asset Repair,Error Description,شرح خطا
DocType: Payment Reconciliation,Reconcile,وفق دادن
apps/erpnext/erpnext/setup/setup_wizard/data/industry_type.py,Grocery,خواربار
DocType: Quality Inspection Reading,Reading 1,خواندن 1
apps/erpnext/erpnext/setup/setup_wizard/data/industry_type.py,Pension Funds,صندوق های بازنشستگی
DocType: Exchange Rate Revaluation Account,Gain/Loss,به دست آوردن / از دست دادن
DocType: Crop,Perennial,چند ساله
DocType: Program,Is Published,منتشر شده است
apps/erpnext/erpnext/accounts/report/accounts_receivable/accounts_receivable.js,Show Delivery Notes,نمایش یادداشت های تحویل
apps/erpnext/erpnext/controllers/status_updater.py,"To allow over billing, update ""Over Billing Allowance"" in Accounts Settings or the Item.",برای اجازه بیش از صدور صورت حساب ، "بیش از کمک هزینه صورتحساب" را در تنظیمات حساب یا مورد به روز کنید.
DocType: Patient Appointment,Procedure,روش
DocType: Accounts Settings,Use Custom Cash Flow Format,از فرم سفارشی جریان جریان استفاده کنید
DocType: SMS Center,All Sales Person,تمام ماموران فروش
DocType: Monthly Distribution,**Monthly Distribution** helps you distribute the Budget/Target across months if you have seasonality in your business.,** ماهانه ** شما کمک می کند توزیع بودجه / هدف در سراسر ماه اگر شما فصلی در کسب و کار خود را.
apps/erpnext/erpnext/accounts/page/pos/pos.js,Not items found,نمی وسایل یافت شده
apps/erpnext/erpnext/hr/doctype/salary_slip/salary_slip.py,Salary Structure Missing,گمشده ساختار حقوق و دستمزد
DocType: Lead,Person Name,نام شخص
,Supplier Ledger Summary,تهیه کننده خلاصه کتاب
DocType: Sales Invoice Item,Sales Invoice Item,مورد فاکتور فروش
DocType: Quality Procedure Table,Quality Procedure Table,جدول رویه کیفیت
DocType: Account,Credit,اعتبار
DocType: POS Profile,Write Off Cost Center,ارسال فعال مرکز هزینه
apps/erpnext/erpnext/public/js/setup_wizard.js,"e.g. ""Primary School"" or ""University""",به عنوان مثال "مدرسه ابتدایی" یا "دانشگاه"
apps/erpnext/erpnext/config/stock.py,Stock Reports,گزارش سهام
DocType: Warehouse,Warehouse Detail,جزئیات انبار
apps/erpnext/erpnext/hr/doctype/vehicle/vehicle.py,Last carbon check date cannot be a future date,تاریخ آخرین بررسی کربن نمی تواند یک تاریخ آینده باشد
apps/erpnext/erpnext/education/doctype/academic_term/academic_term.py,The Term End Date cannot be later than the Year End Date of the Academic Year to which the term is linked (Academic Year {}). Please correct the dates and try again.,تاریخ پایان ترم نمی تواند بعد از تاریخ سال پایان سال تحصیلی که مدت مرتبط است باشد (سال تحصیلی {}). لطفا تاریخ های صحیح و دوباره امتحان کنید.
apps/erpnext/erpnext/stock/doctype/item/item.py,"""Is Fixed Asset"" cannot be unchecked, as Asset record exists against the item","آیا دارایی ثابت" نمی تواند بدون کنترل، به عنوان رکورد دارایی در برابر مورد موجود است
DocType: Delivery Trip,Departure Time,زمان خروج
DocType: Vehicle Service,Brake Oil,روغن ترمز
DocType: Tax Rule,Tax Type,نوع مالیات
,Completed Work Orders,سفارشات کاری کامل شده است
DocType: Support Settings,Forum Posts,پست های انجمن
apps/erpnext/erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py,"The task has been enqueued as a background job. In case there is any issue on processing in background, the system will add a comment about the error on this Stock Reconciliation and revert to the Draft stage",این کار به عنوان یک کار پس زمینه درج شده است. در صورت بروز مشکل در پردازش در پس زمینه ، سیستم در مورد خطا در این آشتی سهام نظر می دهد و به مرحله پیش نویس بازگشت.
apps/erpnext/erpnext/accounts/doctype/pricing_rule/utils.py,"Sorry,coupon code validity has not started",متأسفیم ، اعتبار کد کوپن شروع نشده است
apps/erpnext/erpnext/regional/india/utils.py,Taxable Amount,مبلغ مشمول مالیات
apps/erpnext/erpnext/accounts/doctype/gl_entry/gl_entry.py,You are not authorized to add or update entries before {0},شما مجاز به اضافه و یا به روز رسانی مطالب قبل از {0} نیستید
DocType: Leave Policy,Leave Policy Details,ترک جزئیات سیاست
DocType: BOM,Item Image (if not slideshow),مورد تصویر (در صورت اسلاید نمی شود)
DocType: Work Order Operation,(Hour Rate / 60) * Actual Operation Time,(یک ساعت یک نرخ / 60) * * * * واقعی زمان عمل
apps/erpnext/erpnext/accounts/doctype/payment_entry/payment_entry.js,Row #{0}: Reference Document Type must be one of Expense Claim or Journal Entry,ردیف # {0}: نوع سند مرجع باید یکی از ادعای هزینه یا ورود مجله باشد
apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js,Select BOM,انتخاب BOM
DocType: SMS Log,SMS Log,SMS ورود
DocType: Call Log,Ringing,زنگ زدن
apps/erpnext/erpnext/projects/report/project_wise_stock_tracking/project_wise_stock_tracking.py,Cost of Delivered Items,هزینه اقلام تحویل شده
apps/erpnext/erpnext/hr/doctype/holiday_list/holiday_list.py,The holiday on {0} is not between From Date and To Date,تعطیلات در {0} است بین از تاریخ و تا به امروز نیست
DocType: Inpatient Record,Admission Scheduled,پذیرش برنامه ریزی شده
DocType: Student Log,Student Log,ورود دانشجو
apps/erpnext/erpnext/config/buying.py,Templates of supplier standings.,قالب بندی مقاطع عرضه کننده.
DocType: Lead,Interested,علاقمند
apps/erpnext/erpnext/hr/report/employee_leave_balance/employee_leave_balance.py,Opening,افتتاح
apps/erpnext/erpnext/education/doctype/student_report_generation_tool/student_report_generation_tool.html,Program: ,برنامه:
DocType: Item,Copy From Item Group,کپی برداری از مورد گروه
DocType: Journal Entry,Opening Entry,ورود افتتاح
apps/erpnext/erpnext/accounts/doctype/cheque_print_template/cheque_print_template.js,Account Pay Only,حساب پرداخت تنها
DocType: Loan,Repay Over Number of Periods,بازپرداخت تعداد بیش از دوره های
apps/erpnext/erpnext/manufacturing/report/bom_stock_report/bom_stock_report.py,Quantity to Produce can not be less than Zero,مقدار تولید نمی تواند کمتر از صفر باشد
DocType: Stock Entry,Additional Costs,هزینه های اضافی
apps/erpnext/erpnext/accounts/doctype/account/account.py,Account with existing transaction can not be converted to group.,حساب با معامله موجود می تواند به گروه تبدیل نمی کند.
DocType: Lead,Product Enquiry,پرس و جو محصولات
DocType: Education Settings,Validate Batch for Students in Student Group,اعتبارسنجی دسته ای برای دانش آموزان در گروه های دانشجویی
apps/erpnext/erpnext/hr/doctype/attendance/attendance.py,No leave record found for employee {0} for {1},هیچ سابقه مرخصی پیدا شده برای کارکنان {0} برای {1}
DocType: Company,Unrealized Exchange Gain/Loss Account,حساب ناخالص مبادله سود / زیان
apps/erpnext/erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.js,Please enter company first,لطفا ابتدا وارد شرکت
apps/erpnext/erpnext/accounts/page/bank_reconciliation/bank_reconciliation.js,Please select Company first,لطفا ابتدا شرکت را انتخاب کنید
DocType: Employee Education,Under Graduate,مقطع
apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py,Please set default template for Leave Status Notification in HR Settings.,لطفا قالب پیش فرض برای اعلام وضعیت وضعیت ترک در تنظیمات HR تعیین کنید.
apps/erpnext/erpnext/selling/report/sales_partner_target_variance_based_on_item_group/sales_partner_target_variance_based_on_item_group.js,Target On,هدف در
DocType: BOM,Total Cost,هزینه کل
apps/erpnext/erpnext/hr/doctype/leave_allocation/leave_allocation.js,Allocation Expired!,تخصیص منقضی شده است!
DocType: Soil Analysis,Ca/K,Ca / K
DocType: Leave Type,Maximum Carry Forwarded Leaves,حداکثر برگهای حمل شده
DocType: Salary Slip,Employee Loan,کارمند وام
DocType: Additional Salary,HR-ADS-.YY.-.MM.-,HR-ADS- .YY-. MM.-
DocType: Fee Schedule,Send Payment Request Email,ارسال درخواست پرداخت درخواست
apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py,Item {0} does not exist in the system or has expired,مورد {0} در سیستم وجود ندارد و یا تمام شده است
DocType: Supplier,Leave blank if the Supplier is blocked indefinitely,خالی اگر فروشنده به طور نامحدود مسدود شده خالی
apps/erpnext/erpnext/setup/setup_wizard/data/industry_type.py,Real Estate,عقار
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.html,Statement of Account,بیانیه ای از حساب
apps/erpnext/erpnext/setup/setup_wizard/data/industry_type.py,Pharmaceuticals,داروسازی
DocType: Purchase Invoice Item,Is Fixed Asset,است دارائی های ثابت
apps/erpnext/erpnext/accounts/report/accounts_receivable/accounts_receivable.js,Show Future Payments,نمایش پرداختهای آینده
DocType: Patient,HLC-PAT-.YYYY.-,HLC-PAT- .YYYY.-
apps/erpnext/erpnext/accounts/page/bank_reconciliation/bank_reconciliation.js,This bank account is already synchronized,این حساب بانکی در حال حاضر هماهنگ شده است
DocType: Homepage,Homepage Section,بخش صفحه
apps/erpnext/erpnext/manufacturing/doctype/work_order/work_order.py,Work Order has been {0},سفارش کار {0}
DocType: Budget,Applicable on Purchase Order,قابل اجرا در سفارش خرید
DocType: Item,STO-ITEM-.YYYY.-,STO-ITEM- .YYYY.-
apps/erpnext/erpnext/hr/doctype/hr_settings/hr_settings.py,Password policy for Salary Slips is not set,خط مشی رمز عبور برای حقوق و دستمزدها تنظیم نشده است
apps/erpnext/erpnext/accounts/doctype/pos_profile/pos_profile.py,Duplicate customer group found in the cutomer group table,گروه مشتری تکراری در جدول گروه cutomer
DocType: Location,Location Name,نام مکان
DocType: Quality Procedure Table,Responsible Individual,فرد مسئول
DocType: Naming Series,Prefix,پیشوند
apps/erpnext/erpnext/hr/notification/training_scheduled/training_scheduled.html,Event Location,محل رویداد
apps/erpnext/erpnext/selling/report/customer_wise_item_price/customer_wise_item_price.py,Available Stock,ذخیره موجود
DocType: Asset Settings,Asset Settings,تنظیمات دارایی
apps/erpnext/erpnext/setup/setup_wizard/operations/install_fixtures.py,Consumable,مصرفی
DocType: Student,B-,B-
DocType: Assessment Result,Grade,مقطع تحصیلی
apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js,Item Code > Item Group > Brand,کد کالا> گروه مورد> نام تجاری
DocType: Restaurant Table,No of Seats,بدون صندلی
DocType: Sales Invoice,Overdue and Discounted,عقب افتاده و تخفیف
apps/erpnext/erpnext/public/js/call_popup/call_popup.js,Call Disconnected,تماس قطع شد
DocType: Sales Invoice Item,Delivered By Supplier,تحویل داده شده توسط کننده
DocType: Asset Maintenance Task,Asset Maintenance Task,وظیفه تعمیر و نگهداری دارایی
DocType: SMS Center,All Contact,همه تماس
apps/erpnext/erpnext/setup/setup_wizard/operations/install_fixtures.py,Annual Salary,حقوق سالانه
DocType: Daily Work Summary,Daily Work Summary,خلاصه کار روزانه
DocType: Period Closing Voucher,Closing Fiscal Year,بستن سال مالی
apps/erpnext/erpnext/accounts/party.py,{0} {1} is frozen,{0} {1} فریز شده است
apps/erpnext/erpnext/setup/doctype/company/company.py,Please select Existing Company for creating Chart of Accounts,لطفا موجود شرکت برای ایجاد نمودار از حساب را انتخاب کنید
apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py,Stock Expenses,هزینه سهام
apps/erpnext/erpnext/stock/doctype/batch/batch.js,Select Target Warehouse,انتخاب هدف انبار
apps/erpnext/erpnext/hr/doctype/employee/employee.js,Please enter Preferred Contact Email,لطفا وارد ترجیحی ایمیل تماس
DocType: Purchase Invoice Item,Accepted Qty,Qty پذیرفته شده است
DocType: Journal Entry,Contra Entry,کنترا ورود
DocType: Journal Entry Account,Credit in Company Currency,اعتبار در شرکت ارز
DocType: Lab Test UOM,Lab Test UOM,آزمایش آزمایشگاه UOM
DocType: Delivery Note,Installation Status,وضعیت نصب و راه اندازی
DocType: BOM,Quality Inspection Template,الگو بازرسی کیفیت
apps/erpnext/erpnext/education/doctype/student_attendance_tool/student_attendance_tool.js,"Do you want to update attendance?<br>Present: {0}\
<br>Absent: {1}",آیا شما می خواهید برای به روز رسانی حضور؟ <br> در حال حاضر: {0} \ <br> وجود ندارد: {1}
apps/erpnext/erpnext/controllers/buying_controller.py,Accepted + Rejected Qty must be equal to Received quantity for Item {0},پذیرفته شده + رد تعداد باید به دریافت مقدار برابر برای مورد است {0}
DocType: Item,Supply Raw Materials for Purchase,عرضه مواد اولیه برای خرید
DocType: Agriculture Analysis Criteria,Fertilizer,کود
apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.py,"Cannot ensure delivery by Serial No as \
Item {0} is added with and without Ensure Delivery by \
Serial No.",می توانید تحویل توسط Serial No را تضمین نکنید \ Item {0} با و بدون تأیید تحویل توسط \ سریال اضافه می شود
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py,At least one mode of payment is required for POS invoice.,باید حداقل یک حالت پرداخت برای فاکتور POS مورد نیاز است.
DocType: Bank Statement Transaction Invoice Item,Bank Statement Transaction Invoice Item,بیانیه بانکی صورت حساب صورتحساب تراکنش
DocType: Salary Detail,Tax on flexible benefit,مالیات بر سود انعطاف پذیر
apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py,Item {0} is not active or end of life has been reached,مورد {0} غیر فعال است و یا پایان زندگی رسیده است
DocType: Student Admission Program,Minimum Age,کمترین سن
apps/erpnext/erpnext/utilities/user_progress.py,Example: Basic Mathematics,به عنوان مثال: ریاضیات پایه
DocType: Customer,Primary Address,آدرس اولیه
apps/erpnext/erpnext/manufacturing/report/bom_stock_calculated/bom_stock_calculated.py,Diff Qty,تعداد مختلف
DocType: Production Plan,Material Request Detail,جزئیات درخواست مواد
DocType: Selling Settings,Default Quotation Validity Days,روز معتبر نقل قول
apps/erpnext/erpnext/controllers/accounts_controller.py,"To include tax in row {0} in Item rate, taxes in rows {1} must also be included",شامل مالیات در ردیف {0} در مورد نرخ، مالیات در ردیف {1} باید گنجانده شود
apps/erpnext/erpnext/config/quality_management.py,Quality Procedure.,رویه کیفیت.
DocType: SMS Center,SMS Center,مرکز SMS
DocType: Payroll Entry,Validate Attendance,تأیید حضور
DocType: Sales Invoice,Change Amount,تغییر مقدار
DocType: Party Tax Withholding Config,Certificate Received,گواهی دریافت شده
DocType: GST Settings,Set Invoice Value for B2C. B2CL and B2CS calculated based on this invoice value.,تنظیم مقدار فاکتور برای B2C. B2CL و B2CS براساس این ارزش فاکتور محاسبه شده است.
DocType: BOM Update Tool,New BOM,BOM جدید
apps/erpnext/erpnext/healthcare/doctype/patient_appointment/patient_appointment.js,Prescribed Procedures,روشهای پیشنهادی
apps/erpnext/erpnext/accounts/report/sales_payment_summary/sales_payment_summary.js,Show only POS,فقط POS نمایش داده شود
DocType: Supplier Group,Supplier Group Name,نام گروه تامین کننده
DocType: Driver,Driving License Categories,دسته بندی مجوز رانندگی
apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.py,Please enter Delivery Date,لطفا تاریخ تحویل را وارد کنید
DocType: Depreciation Schedule,Make Depreciation Entry,ورود استهلاک
DocType: Closed Document,Closed Document,سند بسته
DocType: HR Settings,Leave Settings,تنظیمات را ترک کنید
DocType: Appraisal Template Goal,KRA,ناحیه جنوبی
DocType: Lead,Request Type,درخواست نوع
DocType: Purpose of Travel,Purpose of Travel,هدف سفر
DocType: Payroll Period,Payroll Periods,دوره های حقوق و دستمزد
apps/erpnext/erpnext/setup/setup_wizard/data/industry_type.py,Broadcasting,رادیو و تلویزیون
apps/erpnext/erpnext/config/retail.py,Setup mode of POS (Online / Offline),حالت راه اندازی POS (آنلاین / آفلاین)
DocType: Manufacturing Settings,Disables creation of time logs against Work Orders. Operations shall not be tracked against Work Order,ایجاد گزارشهای زمان در برابر سفارشات کاری غیر فعال می شود. عملیات نباید در برابر سفارش کار انجام شود
apps/erpnext/erpnext/setup/setup_wizard/operations/install_fixtures.py,Execution,اعدام
apps/erpnext/erpnext/config/manufacturing.py,Details of the operations carried out.,جزئیات عملیات انجام شده است.
DocType: Asset Maintenance Log,Maintenance Status,وضعیت نگهداری
DocType: Purchase Invoice Item,Item Tax Amount Included in Value,مقدار مالیات مورد موجود در ارزش
apps/erpnext/erpnext/non_profit/doctype/member/member_dashboard.py,Membership Details,جزئیات عضویت
apps/erpnext/erpnext/accounts/doctype/gl_entry/gl_entry.py,{0} {1}: Supplier is required against Payable account {2},{0} {1}: عرضه کننده به حساب پرداختنی مورد نیاز است {2}
apps/erpnext/erpnext/config/buying.py,Items and Pricing,اقلام و قیمت گذاری
apps/erpnext/erpnext/projects/doctype/project/project_dashboard.html,Total hours: {0},کل ساعت: {0}
apps/erpnext/erpnext/accounts/report/trial_balance/trial_balance.py,From Date should be within the Fiscal Year. Assuming From Date = {0},از تاریخ باید در سال مالی باشد. با فرض از تاریخ = {0}
DocType: Patient Medical Record,HLC-PMR-.YYYY.-,HLC-PMR- .YYYY.-
DocType: Drug Prescription,Interval,فاصله
DocType: Pricing Rule,Promotional Scheme Id,شناسه طرح تبلیغاتی
apps/erpnext/erpnext/setup/setup_wizard/operations/install_fixtures.py,Preference,ترجیح
apps/erpnext/erpnext/regional/doctype/gstr_3b_report/gstr_3b_report.html,Inward Supplies(liable to reverse charge,لوازم داخلی (ممکن است شارژ معکوس داشته باشد)
DocType: Supplier,Individual,فردی
DocType: Academic Term,Academics User,کاربر آکادمیک
DocType: Cheque Print Template,Amount In Figure,مقدار در شکل
DocType: Loan Application,Loan Info,وام اطلاعات
apps/erpnext/erpnext/regional/doctype/gstr_3b_report/gstr_3b_report.html,All Other ITC,همه ITC دیگر
apps/erpnext/erpnext/config/crm.py,Plan for maintenance visits.,برنامه ریزی برای بازدیدکننده داشته است نگهداری.
DocType: Supplier Scorecard Period,Supplier Scorecard Period,دوره کارت امتیازی تامین کننده
DocType: Support Settings,Search APIs,API های جستجو
DocType: Share Transfer,Share Transfer,انتقال به اشتراک بگذارید
,Expiring Memberships,عضويت در پايان نامه
apps/erpnext/erpnext/templates/pages/home.html,Read blog,وبلاگ را بخوانید
DocType: POS Profile,Customer Groups,گروه های مشتری
apps/erpnext/erpnext/public/js/financial_statements.js,Financial Statements,صورت های مالی
DocType: Guardian,Students,دانش آموزان
apps/erpnext/erpnext/config/buying.py,Rules for applying pricing and discount.,مشاهده قوانین برای استفاده از قیمت گذاری و تخفیف.
DocType: Daily Work Summary,Daily Work Summary Group,خلاصه گروه روزانه
DocType: Practitioner Schedule,Time Slots,اسلات زمان
apps/erpnext/erpnext/stock/doctype/price_list/price_list.py,Price List must be applicable for Buying or Selling,لیست قیمت ها باید قابل استفاده برای خرید و یا فروش است
DocType: Shift Assignment,Shift Request,درخواست تغییر
apps/erpnext/erpnext/selling/doctype/installation_note/installation_note.py,Installation date cannot be before delivery date for Item {0},تاریخ نصب و راه اندازی نمی تواند قبل از تاریخ تحویل برای مورد است {0}
DocType: Purchase Invoice Item,Discount on Price List Rate (%),تخفیف در لیست قیمت نرخ (٪)
apps/erpnext/erpnext/public/js/utils/item_quick_entry.js,Item Template,الگو مورد
DocType: Job Offer,Select Terms and Conditions,انتخاب شرایط و ضوابط
apps/erpnext/erpnext/stock/report/stock_balance/stock_balance.py,Out Value,ارزش از
DocType: Bank Statement Settings Item,Bank Statement Settings Item,اظهارنامه تنظیمات بانک
DocType: Woocommerce Settings,Woocommerce Settings,تنظیمات Woocommerce
DocType: Leave Ledger Entry,Transaction Name,نام معاملات
DocType: Production Plan,Sales Orders,سفارشات فروش
apps/erpnext/erpnext/selling/doctype/customer/customer.py,Multiple Loyalty Program found for the Customer. Please select manually.,برنامه وفاداری چندگانه برای مشتری. لطفا به صورت دستی انتخاب کنید
DocType: Purchase Taxes and Charges,Valuation,ارزیابی
apps/erpnext/erpnext/selling/page/point_of_sale/point_of_sale.js,Set as Default,تنظیم به عنوان پیشفرض
apps/erpnext/erpnext/stock/doctype/batch/batch.py,Expiry date is mandatory for selected item.,تاریخ انقضا برای مورد انتخابی الزامی است.
,Purchase Order Trends,خرید سفارش روند
apps/erpnext/erpnext/utilities/user_progress.py,Go to Customers,به مشتریان بروید
DocType: Hotel Room Reservation,Late Checkin,بررسی دیرهنگام
apps/erpnext/erpnext/accounts/page/bank_reconciliation/bank_reconciliation.js,Finding linked payments,یافتن پرداختهای مرتبط
apps/erpnext/erpnext/templates/emails/request_for_quotation.html,The request for quotation can be accessed by clicking on the following link,درخواست برای نقل قول می توان با کلیک بر روی لینک زیر قابل دسترسی
DocType: Quiz Result,Selected Option,گزینه انتخاب شده
DocType: SG Creation Tool Course,SG Creation Tool Course,SG ایجاد ابزار دوره
DocType: Bank Statement Transaction Invoice Item,Payment Description,شرح مورد پرداختی
apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py,Insufficient Stock,سهام کافی
DocType: Manufacturing Settings,Disable Capacity Planning and Time Tracking,برنامه ریزی ظرفیت غیر فعال کردن و ردیابی زمان
DocType: Email Digest,New Sales Orders,جدید سفارشات فروش
DocType: Bank Account,Bank Account,حساب بانکی
DocType: Travel Itinerary,Check-out Date,چک کردن تاریخ
DocType: Leave Type,Allow Negative Balance,اجازه می دهد تراز منفی
apps/erpnext/erpnext/projects/doctype/project_type/project_type.py,You cannot delete Project Type 'External',شما نمیتوانید نوع پروژه «خارجی» را حذف کنید
apps/erpnext/erpnext/public/js/utils.js,Select Alternate Item,گزینه جایگزین را انتخاب کنید
DocType: Employee,Create User,ایجاد کاربر
DocType: Selling Settings,Default Territory,منطقه پیش فرض
apps/erpnext/erpnext/setup/setup_wizard/data/industry_type.py,Television,تلویزیون
DocType: Work Order Operation,Updated via 'Time Log',به روز شده از طریق 'زمان ورود "
apps/erpnext/erpnext/accounts/doctype/bank_guarantee/bank_guarantee.py,Select the customer or supplier.,مشتری یا تامین کننده را انتخاب کنید.
apps/erpnext/erpnext/support/doctype/service_level/service_level.py,Select only one Priority as Default.,فقط یک اولویت را به عنوان پیش فرض انتخاب کنید.
apps/erpnext/erpnext/controllers/taxes_and_totals.py,Advance amount cannot be greater than {0} {1},مقدار پیش نمی تواند بیشتر از {0} {1}
apps/erpnext/erpnext/healthcare/doctype/practitioner_schedule/practitioner_schedule.js,"Time slot skiped, the slot {0} to {1} overlap exisiting slot {2} to {3}",شکاف زمان گذرا، شکاف {0} تا {1} با هم شکسته شدن موجودی {2} تا {3}
DocType: Naming Series,Series List for this Transaction,فهرست سری ها برای این تراکنش
DocType: Company,Enable Perpetual Inventory,فعال کردن موجودی دائمی
DocType: Bank Guarantee,Charges Incurred,اتهامات ناشی شده است
apps/erpnext/erpnext/public/js/education/lms/quiz.js,Something went wrong while evaluating the quiz.,هنگام ارزیابی مسابقه خطایی رخ داد.
DocType: Company,Default Payroll Payable Account,به طور پیش فرض حقوق و دستمزد پرداختنی حساب
apps/erpnext/erpnext/public/js/hub/pages/Item.vue,Edit Details,جزئیات ویرایش
apps/erpnext/erpnext/education/doctype/student_group/student_group.js,Update Email Group,به روز رسانی ایمیل گروه
DocType: POS Profile,Only show Customer of these Customer Groups,فقط مشتری این گروه های مشتری را نشان دهید
DocType: Sales Invoice,Is Opening Entry,باز ورودی
apps/erpnext/erpnext/public/js/conf.js,Documentation,مستندات
DocType: Lab Test Template,"If unchecked, the item wont be appear in Sales Invoice, but can be used in group test creation. ",اگر علامت گذاری نشده باشد، این مورد در Sales Invoice ظاهر نمی شود، اما می تواند در ایجاد گروه آزمون استفاده شود.
DocType: Customer Group,Mention if non-standard receivable account applicable,اگر حساب دریافتنی ذکر غیر استاندارد قابل اجرا
DocType: Course Schedule,Instructor Name,نام مربی
DocType: Company,Arrear Component,کمپانی Arrear
apps/erpnext/erpnext/stock/doctype/pick_list/pick_list.py,Stock Entry has been already created against this Pick List,در حال حاضر ورود سهام در برابر این لیست انتخاب ایجاد شده است
DocType: Supplier Scorecard,Criteria Setup,معیارهای تنظیم
apps/erpnext/erpnext/manufacturing/doctype/work_order/work_order.py,For Warehouse is required before Submit,ذخیره سازی قبل از ارسال مورد نیاز است
apps/erpnext/erpnext/accounts/print_format/payment_receipt_voucher/payment_receipt_voucher.html,Received On,دریافت در
DocType: Codification Table,Medical Code,کد پزشکی
apps/erpnext/erpnext/config/integrations.py,Connect Amazon with ERPNext,آمازون را با ERPNext وصل کنید
apps/erpnext/erpnext/templates/generators/item/item_configure.html,Contact Us,تماس با ما
DocType: Delivery Note Item,Against Sales Invoice Item,در برابر آیتم فاکتور فروش
DocType: Agriculture Analysis Criteria,Linked Doctype,مرتبط با Doctype
apps/erpnext/erpnext/accounts/report/cash_flow/cash_flow.py,Net Cash from Financing,نقدی خالص از تامین مالی
apps/erpnext/erpnext/accounts/page/pos/pos.js,"LocalStorage is full , did not save",LocalStorage را کامل است، نجات نداد
DocType: Lead,Address & Contact,آدرس و تلفن تماس
DocType: Leave Allocation,Add unused leaves from previous allocations,اضافه کردن برگ های استفاده نشده از تخصیص قبلی
DocType: Sales Partner,Partner website,وب سایت شریک
DocType: Restaurant Order Entry,Add Item,این مورد را اضافه کنید
DocType: Party Tax Withholding Config,Party Tax Withholding Config,پیکربندی استرداد مالیات حزبی
DocType: Lab Test,Custom Result,نتیجه سفارشی
apps/erpnext/erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.js,Bank accounts added,حسابهای بانکی اضافه شد
DocType: Call Log,Contact Name,تماس با نام
DocType: Plaid Settings,Synchronize all accounts every hour,همگام سازی همه حساب ها در هر ساعت
DocType: Course Assessment Criteria,Course Assessment Criteria,معیارهای ارزیابی دوره
DocType: Pricing Rule Detail,Rule Applied,قانون اعمال می شود
DocType: Service Level Priority,Resolution Time Period,دوره زمان قطعنامه
apps/erpnext/erpnext/accounts/report/accounts_receivable/accounts_receivable.html,Tax Id: ,شناسه مالیات:
apps/erpnext/erpnext/education/doctype/student_report_generation_tool/student_report_generation_tool.html,Student ID: ,شناسه دانشجویی:
DocType: POS Customer Group,POS Customer Group,POS و ضوابط گروه
DocType: Healthcare Practitioner,Practitioner Schedules,برنامه تمرینکننده
DocType: Cheque Print Template,Line spacing for amount in words,فاصله بین خطوط برای مبلغ به حروف
DocType: Vehicle,Additional Details,توضیحات بیشتر
apps/erpnext/erpnext/templates/generators/bom.html,No description given,بدون شرح داده می شود
apps/erpnext/erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.js,Fetch Items from Warehouse,گرفتن موارد از انبار
apps/erpnext/erpnext/config/buying.py,Request for purchase.,درخواست برای خرید.
DocType: POS Closing Voucher Details,Collected Amount,مقدار جمع آوری شده
DocType: Lab Test,Submitted Date,تاریخ ارسال شده
apps/erpnext/erpnext/stock/doctype/material_request/material_request.js,Company field is required,زمینه شرکت مورد نیاز است
apps/erpnext/erpnext/projects/doctype/project/project_dashboard.py,This is based on the Time Sheets created against this project,این است که در ورق زمان ایجاد در برابر این پروژه بر اساس
DocType: Call Log,Recording URL,URL ضبط
apps/erpnext/erpnext/crm/doctype/email_campaign/email_campaign.py,Start Date cannot be before the current date,تاریخ شروع نمی تواند قبل از تاریخ فعلی باشد
,Open Work Orders,دستور کار باز است
DocType: Healthcare Practitioner,Out Patient Consulting Charge Item,خارج از بیمه مشاوره شارژ مورد
DocType: Payment Term,Credit Months,ماه های اعتباری
apps/erpnext/erpnext/hr/doctype/salary_slip/salary_slip.py,Net Pay cannot be less than 0,پرداخت خالص نمی تواند کمتر از 0
DocType: Contract,Fulfilled,تکمیل شده
DocType: Inpatient Record,Discharge Scheduled,تخلیه برنامه ریزی شده
apps/erpnext/erpnext/hr/doctype/employee/employee.py,Relieving Date must be greater than Date of Joining,تسکین تاریخ باید بیشتر از تاریخ پیوستن شود
DocType: POS Closing Voucher,Cashier,صندوقدار
apps/erpnext/erpnext/setup/setup_wizard/operations/install_fixtures.py,Leaves per Year,برگ در سال
apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py,Row {0}: Please check 'Is Advance' against Account {1} if this is an advance entry.,ردیف {0}: لطفا بررسی کنید آیا پیشرفته در برابر حساب {1} در صورتی که این یک ورودی پیش است.
apps/erpnext/erpnext/stock/utils.py,Warehouse {0} does not belong to company {1},انبار {0} به شرکت تعلق ندارد {1}
DocType: Email Digest,Profit & Loss,سود و زیان
apps/erpnext/erpnext/utilities/user_progress.py,Litre,لیتری
DocType: Task,Total Costing Amount (via Time Sheet),مجموع هزینه یابی مقدار (از طریق زمان ورق)
apps/erpnext/erpnext/education/doctype/fee_schedule/fee_schedule.py,Please setup Students under Student Groups,لطفا دانشجویان را در گروه های دانشجویی قرار دهید
apps/erpnext/erpnext/manufacturing/doctype/job_card/job_card.js,Complete Job,شغل کامل
DocType: Item Website Specification,Item Website Specification,مشخصات مورد وب سایت
apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py,Leave Blocked,ترک مسدود
apps/erpnext/erpnext/stock/doctype/item/item.py,Item {0} has reached its end of life on {1},مورد {0} به پایان زندگی بر روی رسید {1}
apps/erpnext/erpnext/hr/doctype/expense_claim/expense_claim.js,Bank Entries,مطالب بانک
DocType: Customer,Is Internal Customer,مشتری داخلی است
DocType: Crop,Annual,سالیانه
apps/erpnext/erpnext/accounts/doctype/loyalty_program/loyalty_program.js,"If Auto Opt In is checked, then the customers will be automatically linked with the concerned Loyalty Program (on save)",اگر Auto Opt In چک شود، سپس مشتریان به طور خودکار با برنامه وفاداری مرتبط (در ذخیره)
DocType: Stock Reconciliation Item,Stock Reconciliation Item,مورد سهام آشتی
DocType: Stock Entry,Sales Invoice No,فاکتور فروش بدون
DocType: Website Filter Field,Website Filter Field,فیلترینگ وب سایت
apps/erpnext/erpnext/regional/report/eway_bill/eway_bill.py,Supply Type,نوع عرضه
DocType: Material Request Item,Min Order Qty,حداقل تعداد سفارش
DocType: Student Group Creation Tool Course,Student Group Creation Tool Course,دوره دانشجویی گروه ابزار ایجاد
DocType: Lead,Do Not Contact,آیا تماس با نه
apps/erpnext/erpnext/utilities/user_progress.py,People who teach at your organisation,افرادی که در سازمان شما آموزش
apps/erpnext/erpnext/setup/setup_wizard/operations/install_fixtures.py,Software Developer,نرم افزار توسعه
apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.js,Create Sample Retention Stock Entry,نمونه ورودی سهام را ایجاد کنید
DocType: Item,Minimum Order Qty,حداقل تعداد سفارش تعداد
DocType: Supplier,Supplier Type,نوع منبع
DocType: Course Scheduling Tool,Course Start Date,البته تاریخ شروع
,Student Batch-Wise Attendance,دسته ای حکیم دانشجویی حضور و غیاب
DocType: POS Profile,Allow user to edit Rate,اجازه به کاربر برای ویرایش نرخ
DocType: Item,Publish in Hub,انتشار در توپی
DocType: Student Admission,Student Admission,پذیرش دانشجو
apps/erpnext/erpnext/stock/doctype/item/item.py,Item {0} is cancelled,مورد {0} لغو شود
apps/erpnext/erpnext/assets/doctype/asset/asset.py,Depreciation Row {0}: Depreciation Start Date is entered as past date,مقدار خسارت ردیف {0}: تاریخ شروع خسارت وارد شده به عنوان تاریخ گذشته وارد شده است
DocType: Contract Template,Fulfilment Terms and Conditions,شرایط و ضوابط اجرایی
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.js,Material Request,درخواست مواد
DocType: Bank Reconciliation,Update Clearance Date,به روز رسانی ترخیص کالا از تاریخ
apps/erpnext/erpnext/stock/report/product_bundle_balance/product_bundle_balance.py,Bundle Qty,بسته نرم افزاری
,GSTR-2,GSTR-2
apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py,Item {0} not found in 'Raw Materials Supplied' table in Purchase Order {1},مورد {0} در 'مواد اولیه عرضه شده جدول در سفارش خرید یافت نشد {1}
DocType: Salary Slip,Total Principal Amount,مجموع کل اصل
DocType: Student Guardian,Relation,ارتباط
DocType: Quiz Result,Correct,درست
DocType: Student Guardian,Mother,مادر
DocType: Restaurant Reservation,Reservation End Time,زمان پایان رزرو
DocType: Crop,Biennial,دوسالانه
,BOM Variance Report,گزارش تنوع BOM
apps/erpnext/erpnext/config/selling.py,Confirmed orders from Customers.,تایید سفارشات از مشتریان.
DocType: Purchase Receipt Item,Rejected Quantity,تعداد رد
apps/erpnext/erpnext/education/doctype/fees/fees.py,Payment request {0} created,درخواست پرداخت {0} ایجاد شد
DocType: Inpatient Record,Admitted Datetime,تاریخ تایید پذیرفته شد
DocType: Work Order,Backflush raw materials from work-in-progress warehouse,مواد خام اولیه از انبار کار در حال پیشرفت
apps/erpnext/erpnext/stock/report/item_variant_details/item_variant_details.py,Open Orders,سفارشات را باز کنید
apps/erpnext/erpnext/hr/doctype/employee_benefit_claim/employee_benefit_claim.py,Unable to find Salary Component {0},یافتن جزء حقوق و دستمزد {0} یافت نشد
apps/erpnext/erpnext/healthcare/setup.py,Low Sensitivity,حساسیت کم
apps/erpnext/erpnext/erpnext_integrations/doctype/shopify_log/shopify_log.js,Order rescheduled for sync,سفارش همگام سازی مجدد
apps/erpnext/erpnext/templates/emails/training_event.html,Please confirm once you have completed your training,لطفا پس از اتمام آموزش خود را تأیید کنید
DocType: Lead,Suggestions,پیشنهادات
DocType: Territory,Set Item Group-wise budgets on this Territory. You can also include seasonality by setting the Distribution.,مجموعه ای مورد بودجه گروه عاقلانه در این سرزمین. شما همچنین می توانید با تنظیم توزیع شامل فصلی.
DocType: Plaid Settings,Plaid Public Key,کلید عمومی Plaid
DocType: Payment Term,Payment Term Name,نام و نام خانوادگی پرداخت
DocType: Healthcare Settings,Create documents for sample collection,اسناد را برای جمع آوری نمونه ایجاد کنید
apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py,Payment against {0} {1} cannot be greater than Outstanding Amount {2},پرداخت در مقابل {0} {1} نمی تواند بیشتر از برجسته مقدار {2}
apps/erpnext/erpnext/patches/v11_0/add_healthcare_service_unit_tree_root.py,All Healthcare Service Units,همه ی سرویس های بهداشتی
apps/erpnext/erpnext/setup/default_energy_point_rules.py,On Converting Opportunity,در تبدیل فرصت
DocType: Bank Account,Address HTML,آدرس HTML
DocType: Lead,Mobile No.,شماره موبایل
apps/erpnext/erpnext/selling/doctype/pos_closing_voucher/closing_voucher_details.html,Mode of Payments,حالت پرداخت
DocType: Maintenance Schedule,Generate Schedule,تولید برنامه
DocType: Purchase Invoice Item,Expense Head,سر هزینه
apps/erpnext/erpnext/accounts/doctype/payment_entry/payment_entry.js,Please select Charge Type first,لطفا ابتدا شارژ نوع را انتخاب کنید
DocType: Crop,"You can define all the tasks which need to carried out for this crop here. The day field is used to mention the day on which the task needs to be carried out, 1 being the 1st day, etc.. ",شما می توانید تمام وظایفی را که لازم است برای این محصول در اینجا انجام دهید تعریف کنید. فیلد روز برای اشاره به روزی که کار باید انجام شود، 1 روز اول و غیره است.
DocType: Student Group Student,Student Group Student,دانشجویی گروه دانشجویی
apps/erpnext/erpnext/stock/report/stock_ageing/stock_ageing.py,Latest,آخرین
DocType: Asset Maintenance Task,2 Yearly,2 ساله
DocType: Education Settings,Education Settings,تنظیمات تحصیلی
DocType: Vehicle Service,Inspection,بازرسی
apps/erpnext/erpnext/regional/italy/utils.py,E-Invoicing Information Missing,اطلاعات الکترونیکی صورتحساب وجود ندارد
DocType: Leave Allocation,HR-LAL-.YYYY.-,HR-LAL- .YYYY.-
DocType: Exchange Rate Revaluation Account,Balance In Base Currency,تعادل در ارز پایه
DocType: Supplier Scorecard Scoring Standing,Max Grade,حداکثر درجه
DocType: Email Digest,New Quotations,نقل قول جدید
apps/erpnext/erpnext/hr/doctype/attendance_request/attendance_request.py,Attendance not submitted for {0} as {1} on leave.,حضور به دلیل {0} به عنوان {1} در بازنشستگی ارائه نشده است.
DocType: Journal Entry,Payment Order,دستور پرداخت
DocType: Employee Tax Exemption Declaration,Income From Other Sources,درآمد از منابع دیگر
DocType: Warehouse,"If blank, parent Warehouse Account or company default will be considered",در صورت خالی بودن ، حساب Warehouse والدین یا پیش فرض شرکت در نظر گرفته می شود
DocType: HR Settings,Emails salary slip to employee based on preferred email selected in Employee,لغزش ایمیل حقوق و دستمزد به کارکنان را بر اساس ایمیل مورد نظر در انتخاب کارمند
DocType: Tax Rule,Shipping County,حمل و نقل شهرستان
DocType: Currency Exchange,For Selling,برای فروش
apps/erpnext/erpnext/config/desktop.py,Learn,فرا گرفتن
,Trial Balance (Simple),موجودی آزمایشی (ساده)
DocType: Purchase Invoice Item,Enable Deferred Expense,فعال کردن هزینه معوق
apps/erpnext/erpnext/templates/includes/order/order_taxes.html,Applied Coupon Code,کد کوپن کاربردی
DocType: Asset,Next Depreciation Date,بعدی تاریخ استهلاک
apps/erpnext/erpnext/projects/doctype/activity_type/activity_type.js,Activity Cost per Employee,هزینه فعالیت به ازای هر کارمند
DocType: Accounts Settings,Settings for Accounts,تنظیمات برای حساب
apps/erpnext/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py,Supplier Invoice No exists in Purchase Invoice {0},کننده فاکتور بدون در خرید فاکتور وجود دارد {0}
apps/erpnext/erpnext/config/crm.py,Manage Sales Person Tree.,فروش شخص درخت را مدیریت کند.
DocType: Job Applicant,Cover Letter,جلد نامه
apps/erpnext/erpnext/accounts/report/bank_reconciliation_statement/bank_reconciliation_statement.py,Outstanding Cheques and Deposits to clear,چک برجسته و سپرده برای روشن
DocType: Item,Synced With Hub,همگام سازی شده با توپی
apps/erpnext/erpnext/regional/doctype/gstr_3b_report/gstr_3b_report.html,Inward supplies from ISD,منابع داخلی از ISD
DocType: Driver,Fleet Manager,ناوگان مدیر
apps/erpnext/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.js,Row #{0}: {1} can not be negative for item {2},ردیف # {0}: {1} نمی تواند برای قلم منفی {2}
apps/erpnext/erpnext/setup/doctype/company/company.js,Wrong Password,رمز اشتباه
DocType: POS Profile,Offline POS Settings,تنظیمات POS آفلاین
DocType: Stock Entry Detail,Reference Purchase Receipt,رسید خرید مرجع
DocType: Stock Reconciliation,MAT-RECO-.YYYY.-,MAT-RECO- .YYYY.-
apps/erpnext/erpnext/templates/includes/cart/cart_items.html,Variant Of,نوع از
apps/erpnext/erpnext/manufacturing/doctype/work_order/work_order.py,Completed Qty can not be greater than 'Qty to Manufacture',تکمیل تعداد نمی تواند بیشتر از 'تعداد برای تولید'
apps/erpnext/erpnext/public/js/purchase_trends_filters.js,Period based On,دوره بر اساس
DocType: Period Closing Voucher,Closing Account Head,بستن سر حساب
DocType: Employee,External Work History,سابقه کار خارجی
apps/erpnext/erpnext/projects/doctype/task/task.py,Circular Reference Error,خطا مرجع مدور
apps/erpnext/erpnext/education/doctype/student_report_generation_tool/student_report_generation_tool.html,Student Report Card,گزارش کارت دانشجویی
apps/erpnext/erpnext/regional/report/eway_bill/eway_bill.py,From Pin Code,از کد پین
apps/erpnext/erpnext/accounts/report/accounts_receivable/accounts_receivable.js,Show Sales Person,نمایش شخص فروش
DocType: Appointment Type,Is Inpatient,بستری است
apps/erpnext/erpnext/education/report/student_and_guardian_contact_details/student_and_guardian_contact_details.py,Guardian1 Name,نام Guardian1
DocType: Delivery Note,In Words (Export) will be visible once you save the Delivery Note.,به عبارت (صادرات) قابل مشاهده خواهد بود یک بار شما را تحویل توجه را نجات دهد.
DocType: Cheque Print Template,Distance from left edge,فاصله از لبه سمت چپ
apps/erpnext/erpnext/utilities/bot.py,{0} units of [{1}](#Form/Item/{1}) found in [{2}](#Form/Warehouse/{2}),{0} واحد از [{1}] (فرم # / کالا / {1}) در [{2}] (فرم # / انبار / {2})
DocType: Lead,Industry,صنعت
DocType: BOM Item,Rate & Amount,نرخ و مبلغ
apps/erpnext/erpnext/config/website.py,Settings for website product listing,تنظیمات لیست محصولات وب سایت
apps/erpnext/erpnext/regional/doctype/gstr_3b_report/gstr_3b_report.html,Amount of Integrated Tax,مقدار مالیات یکپارچه
DocType: Stock Settings,Notify by Email on creation of automatic Material Request,با رایانامه آگاه کن در ایجاد درخواست مواد اتوماتیک
DocType: Accounting Dimension,Dimension Name,نام ابعاد
apps/erpnext/erpnext/healthcare/setup.py,Resistant,مقاوم
apps/erpnext/erpnext/hotels/doctype/hotel_room_reservation/hotel_room_reservation.py,Please set Hotel Room Rate on {},لطفا قیمت اتاق هتل را برای {} تنظیم کنید
DocType: Journal Entry,Multi Currency,چند ارز
DocType: Bank Statement Transaction Invoice Item,Invoice Type,فاکتور نوع
apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.py,Valid from date must be less than valid upto date,اعتبار آن از تاریخ باید کمتر از تاریخ معتبر باشد
DocType: Purchase Invoice,Set Accepted Warehouse,انبار پذیرفته شده را تنظیم کنید
DocType: Employee Benefit Claim,Expense Proof,اثبات هزینه
apps/erpnext/erpnext/erpnext_integrations/doctype/quickbooks_migrator/quickbooks_migrator.py,Saving {0},صرفه جویی در {0}
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js,Delivery Note,رسید
DocType: Patient Encounter,Encounter Impression,معمای مواجهه
apps/erpnext/erpnext/config/help.py,Setting up Taxes,راه اندازی مالیات
apps/erpnext/erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py,Cost of Sold Asset,هزینه دارایی فروخته شده
DocType: Volunteer,Morning,صبح
apps/erpnext/erpnext/accounts/utils.py,Payment Entry has been modified after you pulled it. Please pull it again.,ورود پرداخت اصلاح شده است پس از آن کشیده شده است. لطفا آن را دوباره بکشید.
DocType: Program Enrollment Tool,New Student Batch,دانشجوی جدید
apps/erpnext/erpnext/accounts/doctype/item_tax_template/item_tax_template.py,{0} entered twice in Item Tax,{0} دو بار در مالیات وارد شده است
apps/erpnext/erpnext/setup/doctype/email_digest/email_digest.py,Summary for this week and pending activities,خلاصه برای این هفته و فعالیت های انتظار
DocType: Student Applicant,Admitted,پذیرفته
DocType: Workstation,Rent Cost,اجاره هزینه
apps/erpnext/erpnext/erpnext_integrations/doctype/plaid_settings/plaid_connector.py,Plaid transactions sync error,خطای همگام سازی معاملات کار شده
DocType: Leave Ledger Entry,Is Expired,باطل شده
apps/erpnext/erpnext/accounts/report/asset_depreciation_ledger/asset_depreciation_ledger.py,Amount After Depreciation,مقدار پس از استهلاک
apps/erpnext/erpnext/setup/doctype/email_digest/templates/default.html,Upcoming Calendar Events,تقویم رویدادهای آینده
apps/erpnext/erpnext/public/js/templates/item_quick_entry.html,Variant Attributes,صفات نوع
apps/erpnext/erpnext/hr/report/monthly_attendance_sheet/monthly_attendance_sheet.py,Please select month and year,لطفا ماه و سال را انتخاب کنید
DocType: Employee,Company Email,شرکت پست الکترونیک
DocType: GL Entry,Debit Amount in Account Currency,مقدار بدهی در حساب ارز
DocType: Supplier Scorecard,Scoring Standings,جدول رده بندی
apps/erpnext/erpnext/crm/report/campaign_efficiency/campaign_efficiency.py,Order Value,سفارش ارزش
DocType: Certified Consultant,Certified Consultant,مشاور متخصص
apps/erpnext/erpnext/config/accounting.py,Bank/Cash transactions against party or for internal transfer,معاملات بانک / پول نقد در برابر حزب و یا برای انتقال داخلی
DocType: Shipping Rule,Valid for Countries,معتبر برای کشورهای
apps/erpnext/erpnext/hr/doctype/training_event/training_event.py,End time cannot be before start time,زمان پایان نمی تواند قبل از زمان شروع باشد
apps/erpnext/erpnext/templates/generators/item/item_configure.js,1 exact match.,1 مسابقه دقیق
apps/erpnext/erpnext/stock/doctype/item/item.js,This Item is a Template and cannot be used in transactions. Item attributes will be copied over into the variants unless 'No Copy' is set,این مورد از یک الگو است و می تواند در معاملات مورد استفاده قرار گیرد. ویژگی های مورد خواهد بود بیش از به انواع کپی مگر اینکه 'هیچ نسخه' تنظیم شده است
DocType: Grant Application,Grant Application,درخواست گرانت
apps/erpnext/erpnext/selling/report/inactive_customers/inactive_customers.py,Total Order Considered,ترتیب مجموع در نظر گرفته شده
DocType: Certification Application,Not Certified,گواهی نشده است
DocType: Asset Value Adjustment,New Asset Value,ارزش دارایی جدید
DocType: Sales Invoice,Rate at which Customer Currency is converted to customer's base currency,سرعت که در آن مشتریان ارز به ارز پایه مشتری تبدیل
DocType: Course Scheduling Tool,Course Scheduling Tool,البته برنامه ریزی ابزار
apps/erpnext/erpnext/controllers/accounts_controller.py,Row #{0}: Purchase Invoice cannot be made against an existing asset {1},ردیف # {0}: خرید فاکتور می تواند در برابر یک دارایی موجود ساخته نمی شود {1}
DocType: Crop Cycle,LInked Analysis,تحلیل لاینک
DocType: POS Closing Voucher,POS Closing Voucher,کوپن بسته شدن POS
apps/erpnext/erpnext/support/doctype/issue_priority/issue_priority.py,Issue Priority Already Exists,شماره اولویت را قبلاً وجود داشته باشد
DocType: Invoice Discounting,Loan Start Date,تاریخ شروع وام
DocType: Contract,Lapsed,گم شده
DocType: Item Tax Template Detail,Tax Rate,نرخ مالیات
apps/erpnext/erpnext/education/doctype/course_activity/course_activity.py,Course Enrollment {0} does not exists,ثبت نام دوره {0} وجود ندارد
apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py,Application period cannot be across two allocation records,دوره درخواست نمی تواند در دو رکورد تخصیص باشد
apps/erpnext/erpnext/hr/doctype/leave_allocation/leave_allocation.py,{0} already allocated for Employee {1} for period {2} to {3},{0} در حال حاضر برای کارکنان اختصاص داده {1} برای مدت {2} به {3}
DocType: Buying Settings,Backflush Raw Materials of Subcontract Based On,مواد اولیه فرآورده های فرعی مبتنی بر قرارداد
apps/erpnext/erpnext/stock/doctype/purchase_receipt/purchase_receipt.py,Purchase Invoice {0} is already submitted,فاکتور خرید {0} در حال حاضر ارائه
apps/erpnext/erpnext/controllers/sales_and_purchase_return.py,Row # {0}: Batch No must be same as {1} {2},ردیف # {0}: دسته ای بدون باید همان باشد {1} {2}
DocType: Material Request Plan Item,Material Request Plan Item,مورد درخواست طرح مواد
DocType: Leave Type,Allow Encashment,مجاز به انسداد
apps/erpnext/erpnext/accounts/doctype/cost_center/cost_center.js,Convert to non-Group,تبدیل به غیر گروه
DocType: Exotel Settings,Account SID,حساب SID
DocType: Bank Statement Transaction Invoice Item,Invoice Date,تاریخ فاکتور
DocType: GL Entry,Debit Amount,مقدار بدهی
apps/erpnext/erpnext/accounts/party.py,There can only be 1 Account per Company in {0} {1},فقط می تواند وجود 1 حساب در هر شرکت می شود {0} {1}
DocType: Support Search Source,Response Result Key Path,پاسخ کلیدی نتیجه کلید
DocType: Journal Entry,Inter Company Journal Entry,ورودی مجله اینتر
apps/erpnext/erpnext/accounts/party.py,Due Date cannot be before Posting / Supplier Invoice Date,موعد مقرر نمی تواند قبل از تاریخ ارسال / فاکتور ارائه دهنده باشد
apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py,For quantity {0} should not be grater than work order quantity {1},برای مقدار {0} نباید بیشتر از مقدار سفارش کار باشد {1}
DocType: Employee Training,Employee Training,آموزش کارمندان
DocType: Quotation Item,Additional Notes,یادداشت های اضافی
DocType: Purchase Order,% Received,٪ دریافتی
apps/erpnext/erpnext/education/doctype/student_group_creation_tool/student_group_creation_tool.js,Create Student Groups,ایجاد گروه دانشجویی
DocType: Volunteer,Weekends,آخر هفته ها
apps/erpnext/erpnext/accounts/report/accounts_receivable/accounts_receivable.html,Credit Note Amount,اعتباری میزان
DocType: Setup Progress Action,Action Document,سند عملی
DocType: Chapter Member,Website URL,آدرس وب سایت
,Finished Goods,محصولات تمام شده
DocType: Delivery Note,Instructions,دستورالعمل
DocType: Quality Inspection,Inspected By,بازرسی توسط
DocType: Asset,ACC-ASS-.YYYY.-,ACC-ASS- .YYYY.-
DocType: Asset Maintenance Log,Maintenance Type,نوع نگهداری
apps/erpnext/erpnext/education/doctype/student_group/student_group.py,{0} - {1} is not enrolled in the Course {2},{0} - {1} در دوره ثبت نام نشده {2}
apps/erpnext/erpnext/education/doctype/student_report_generation_tool/student_report_generation_tool.html,Student Name: ,نام دانش آموز:
DocType: POS Closing Voucher,Difference,تفاوت
DocType: Delivery Settings,Delay between Delivery Stops,تاخیر بین ایستگاه تحویل
apps/erpnext/erpnext/selling/doctype/installation_note/installation_note.py,Serial No {0} does not belong to Delivery Note {1},سریال بدون {0} به تحویل توجه تعلق ندارد {1}
apps/erpnext/erpnext/erpnext_integrations/doctype/gocardless_settings/gocardless_settings.py,"There seems to be an issue with the server's GoCardless configuration. Don't worry, in case of failure, the amount will get refunded to your account.",به نظر می رسد یک مشکل با تنظیمات GoCardless سرور وجود دارد. نگران نباشید، درصورت خرابی، مقدار به حساب شما بازپرداخت می شود.
apps/erpnext/erpnext/templates/pages/demo.html,ERPNext Demo,ERPNext نسخه ی نمایشی
apps/erpnext/erpnext/public/js/utils/item_selector.js,Add Items,اضافه کردن محصولات
DocType: Item Quality Inspection Parameter,Item Quality Inspection Parameter,پارامتر بازرسی کیفیت مورد
DocType: Leave Application,Leave Approver Name,ترک نام تصویب
DocType: Depreciation Schedule,Schedule Date,برنامه زمانبندی عضویت
DocType: Amazon MWS Settings,FR,FR
DocType: Packed Item,Packed Item,مورد بسته بندی شده
DocType: Job Offer Term,Job Offer Term,پیشنهاد شغلی
apps/erpnext/erpnext/config/buying.py,Default settings for buying transactions.,تنظیمات پیش فرض برای خرید معاملات.
apps/erpnext/erpnext/projects/doctype/activity_cost/activity_cost.py,Activity Cost exists for Employee {0} against Activity Type - {1},هزینه فعالیت برای کارکنان {0} در برابر نوع فعالیت وجود دارد - {1}
apps/erpnext/erpnext/education/doctype/program_enrollment_tool/program_enrollment_tool.py,Mandatory field - Get Students From,فیلد اجباری - دریافت دانش آموزان از
DocType: Program Enrollment,Enrolled courses,دوره های ثبت نام
DocType: Currency Exchange,Currency Exchange,صرافی
apps/erpnext/erpnext/support/doctype/issue/issue.js,Resetting Service Level Agreement.,تنظیم مجدد توافق نامه سطح خدمات.
apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js,Item Name,نام آیتم
DocType: Authorization Rule,Approving User (above authorized value),تصویب کاربر (بالاتر از ارزش مجاز)
apps/erpnext/erpnext/selling/report/customer_credit_balance/customer_credit_balance.py,Credit Balance,میزان اعتبار
DocType: Employee,Widowed,بیوه
DocType: Request for Quotation,Request for Quotation,درخواست برای نقل قول
DocType: Healthcare Settings,Require Lab Test Approval,تصویب آزمایشی آزمایش مورد نیاز است
DocType: Attendance,Working Hours,ساعات کاری
apps/erpnext/erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool_dashboard.html,Total Outstanding,مجموع برجسته
DocType: Naming Series,Change the starting / current sequence number of an existing series.,تغییر شروع / شماره توالی فعلی از یک سری موجود است.
DocType: Accounts Settings,Percentage you are allowed to bill more against the amount ordered. For example: If the order value is $100 for an item and tolerance is set as 10% then you are allowed to bill for $110.,درصدی از شما مجاز به پرداخت مبلغ بیشتری درمقابل مبلغ سفارش شده هستید. به عنوان مثال: اگر مقدار سفارش برای یک مورد 100 دلار باشد و تحمل 10٪ تعیین شده باشد ، به شما اجازه می دهد برای 110 دلار صورتحساب بدهید.
DocType: Dosage Strength,Strength,استحکام
apps/erpnext/erpnext/public/js/controllers/transaction.js,Cannot find Item with this barcode,با این بارکد نمی توان مورد را یافت
apps/erpnext/erpnext/accounts/page/pos/pos.js,Create a new Customer,ایجاد یک مشتری جدید
apps/erpnext/erpnext/non_profit/report/expiring_memberships/expiring_memberships.py,Expiring On,در حال پایان است
apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js,"If multiple Pricing Rules continue to prevail, users are asked to set Priority manually to resolve conflict.",اگر چند در قوانین قیمت گذاری ادامه غالب است، از کاربران خواسته به تنظیم اولویت دستی برای حل و فصل درگیری.
apps/erpnext/erpnext/stock/doctype/purchase_receipt/purchase_receipt.js,Purchase Return,بازگشت خرید
apps/erpnext/erpnext/utilities/activation.py,Create Purchase Orders,ایجاد سفارشات خرید
,Purchase Register,خرید ثبت نام
apps/erpnext/erpnext/healthcare/doctype/patient/patient.py,Patient not found,بیمار یافت نشد
DocType: Landed Cost Item,Applicable Charges,اتهامات قابل اجرا
DocType: Workstation,Consumable Cost,هزینه مصرفی
DocType: Purchase Receipt,Vehicle Date,خودرو تاریخ
DocType: Campaign Email Schedule,Campaign Email Schedule,برنامه پست الکترونیکی کمپین
DocType: Student Log,Medical,پزشکی
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js,Please select Drug,لطفا مواد مخدر را انتخاب کنید
apps/erpnext/erpnext/crm/doctype/lead/lead.py,Lead Owner cannot be same as the Lead,مالک سرب نمی تواند همان سرب
DocType: Announcement,Receiver,گیرنده
DocType: Location,Area UOM,منطقه UOM
apps/erpnext/erpnext/manufacturing/doctype/workstation/workstation.py,Workstation is closed on the following dates as per Holiday List: {0},ایستگاه های کاری در تاریخ زیر را به عنوان در هر فهرست تعطیلات بسته است: {0}
apps/erpnext/erpnext/selling/page/sales_funnel/sales_funnel.py,Opportunities,فرصت ها
DocType: Lab Test Template,Single,تک
DocType: Compensatory Leave Request,Work From Date,کار از تاریخ
DocType: Salary Slip,Total Loan Repayment,مجموع بازپرداخت وام
DocType: Project User,View attachments,مشاهده پیوست ها
DocType: Account,Cost of Goods Sold,هزینه کالاهای فروخته شده
DocType: Article,Publish Date,تاریخ انتشار
apps/erpnext/erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py,Please enter Cost Center,لطفا وارد مرکز هزینه
DocType: Drug Prescription,Dosage,مصرف
DocType: Journal Entry Account,Sales Order,سفارش فروش
apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py,Avg. Selling Rate,میانگین نرخ فروش
DocType: Assessment Plan,Examiner Name,نام امتحان
DocType: Lab Test Template,No Result,هیچ نتیجه
DocType: Woocommerce Settings,"The fallback series is ""SO-WOO-"".",سریال برگشتی "SO-WOO-" است.
DocType: Purchase Invoice Item,Quantity and Rate,مقدار و نرخ
DocType: Delivery Note,% Installed,٪ نصب شد
apps/erpnext/erpnext/utilities/user_progress.py,Classrooms/ Laboratories etc where lectures can be scheduled.,کلاس های درس / آزمایشگاه و غیره که در آن سخنرانی می توان برنامه ریزی.
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py,Company currencies of both the companies should match for Inter Company Transactions.,ارزهای شرکت هر دو شرکت ها باید برای معاملات اینترانت مطابقت داشته باشد.
apps/erpnext/erpnext/accounts/doctype/cost_center/cost_center.js,Please enter company name first,لطفا ابتدا نام شرکت وارد
DocType: Travel Itinerary,Non-Vegetarian,غیر گیاهی
DocType: Purchase Invoice,Supplier Name,نام منبع
apps/erpnext/erpnext/setup/page/welcome_to_erpnext/welcome_to_erpnext.html,Read the ERPNext Manual,خواندن کتابچه راهنمای کاربر ERPNext
DocType: HR Settings,Show Leaves Of All Department Members In Calendar,نمایش برگ همه اعضای گروه در تقویم
DocType: Purchase Invoice,01-Sales Return,01 فروش بازگشت
apps/erpnext/erpnext/manufacturing/report/bom_stock_report/bom_stock_report.py,Qty per BOM Line,تعداد در هر خط BOM
apps/erpnext/erpnext/accounts/doctype/purchase_invoice/purchase_invoice_list.js,Temporarily on Hold,به طور موقت در انتظار
DocType: Account,Is Group,گروه
apps/erpnext/erpnext/stock/doctype/delivery_note/delivery_note.py,Credit Note {0} has been created automatically,توجه داشته باشید اعتبار {0} به صورت خودکار ایجاد شده است
apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js,Request for Raw Materials,درخواست مواد اولیه
DocType: Stock Settings,Automatically Set Serial Nos based on FIFO,تنظیم به صورت خودکار سریال بر اساس شماره FIFO
DocType: Accounts Settings,Check Supplier Invoice Number Uniqueness,بررسی تولید کننده فاکتور شماره منحصر به فرد
apps/erpnext/erpnext/public/js/utils/customer_quick_entry.js,Primary Address Details,جزئیات آدرس اصلی
apps/erpnext/erpnext/erpnext_integrations/doctype/plaid_settings/plaid_connector.py,Public token is missing for this bank,نشان عمومی برای این بانک وجود ندارد
DocType: Vehicle Service,Oil Change,تعویض روغن
DocType: Leave Encashment,Leave Balance,برهم زدن تعادل
DocType: Asset Maintenance Log,Asset Maintenance Log,نگهداری دارایی ورود
apps/erpnext/erpnext/stock/doctype/packing_slip/packing_slip.js,'To Case No.' cannot be less than 'From Case No.',مقدار'تا مورد شماره' نمی تواند کمتر از 'ازمورد شماره' باشد
DocType: Certification Application,Non Profit,غیر انتفاعی
DocType: Production Plan,Not Started,شروع نشده
DocType: Lead,Channel Partner,کانال شریک
DocType: Account,Old Parent,قدیمی مرجع
apps/erpnext/erpnext/education/doctype/program_enrollment_tool/program_enrollment_tool.py,Mandatory field - Academic Year,فیلد اجباری - سال تحصیلی
apps/erpnext/erpnext/accounts/doctype/payment_entry/payment_entry.py,{0} {1} is not associated with {2} {3},{0} {1} با {2} {3} ارتباط ندارد
DocType: Opportunity,Converted By,تبدیل شده توسط
apps/erpnext/erpnext/public/js/hub/components/ReviewArea.vue,You need to login as a Marketplace User before you can add any reviews.,قبل از هرگونه بررسی ، باید به عنوان کاربر Marketplace وارد شوید.
apps/erpnext/erpnext/manufacturing/doctype/job_card/job_card.py,Row {0} : Operation is required against the raw material item {1},ردیف {0}: عملیات مورد نیاز علیه مواد خام مورد نیاز است {1}
apps/erpnext/erpnext/hr/doctype/expense_claim/expense_claim.py,Please set default payable account for the company {0},لطفا پیش فرض حساب های قابل پرداخت تعیین شده برای شرکت {0}
apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py,Transaction not allowed against stopped Work Order {0},معامله در برابر کار متوقف نمی شود {0}
DocType: Setup Progress Action,Min Doc Count,شمارش معکوس
apps/erpnext/erpnext/config/manufacturing.py,Global settings for all manufacturing processes.,تنظیمات جهانی برای تمام فرآیندهای تولید.
DocType: Accounts Settings,Accounts Frozen Upto,حساب منجمد تا حد
apps/erpnext/erpnext/erpnext_integrations/doctype/tally_migration/tally_migration.js,Process Day Book Data,پردازش داده های کتاب روز
DocType: SMS Log,Sent On,فرستاده شده در
apps/erpnext/erpnext/stock/doctype/item/item.py,Attribute {0} selected multiple times in Attributes Table,ویژگی {0} چند بار در صفات جدول انتخاب
DocType: HR Settings,Employee record is created using selected field. ,رکورد کارمند با استفاده از درست انتخاب شده ایجاد می شود.
DocType: Sales Order,Not Applicable,قابل اجرا نیست
DocType: Amazon MWS Settings,UK,انگلستان
apps/erpnext/erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py,Opening Invoice Item,افتتاح صورتحساب
DocType: Request for Quotation Item,Required Date,تاریخ مورد نیاز
DocType: Accounts Settings,Billing Address,نشانی صورتحساب
DocType: Bank Statement Settings,Statement Headers,سرصفحه اعلامیه
DocType: Travel Request,Costing,هزینه یابی
DocType: Tax Rule,Billing County,شهرستان صدور صورت حساب
DocType: Purchase Taxes and Charges,"If checked, the tax amount will be considered as already included in the Print Rate / Print Amount",در صورت انتخاب، میزان مالیات در نظر گرفته خواهد به عنوان در حال حاضر در چاپ نرخ / چاپ مقدار شامل
DocType: Request for Quotation,Message for Supplier,پیام برای عرضه
DocType: BOM,Work Order,سفارش کار
DocType: Sales Invoice,Total Qty,مجموع تعداد
apps/erpnext/erpnext/education/report/student_and_guardian_contact_details/student_and_guardian_contact_details.py,Guardian2 Email ID,Guardian2 ID ایمیل
DocType: Item,Show in Website (Variant),نمایش در وب سایت (نوع)
DocType: Employee,Health Concerns,نگرانی های بهداشتی
DocType: Payroll Entry,Select Payroll Period,انتخاب کنید حقوق و دستمزد دوره
DocType: Purchase Invoice,Unpaid,پرداخت نشده
apps/erpnext/erpnext/stock/page/stock_balance/stock_balance.js,Reserved for sale,محفوظ برای فروش
DocType: Packing Slip,From Package No.,از شماره بسته بندی
apps/erpnext/erpnext/accounts/doctype/bank_reconciliation/bank_reconciliation.py,Row #{0}: Payment document is required to complete the transaction,ردیف # {0}: برای تکمیل معامله ، سند پرداخت لازم است
DocType: Item Attribute,To Range,به محدوده
apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py,Securities and Deposits,اوراق بهادار و سپرده ها
apps/erpnext/erpnext/stock/doctype/stock_settings/stock_settings.py,"Can't change valuation method, as there are transactions against some items which does not have it's own valuation method",می توانید از روش ارزشگذاری را تغییر دهید، به عنوان معاملات در برابر برخی از موارد که آن را ندارد وجود دارد روش ارزشگذاری خود است
DocType: Student Report Generation Tool,Attended by Parents,حضور والدین
apps/erpnext/erpnext/hr/doctype/shift_assignment/shift_assignment.py,Employee {0} has already applied for {1} on {2} : ,کارمند {0} قبلا برای {1} در {2} درخواست کرده است:
DocType: Inpatient Record,AB Positive,مثبت AB
DocType: Job Opening,Description of a Job Opening,شرح یک شغل
apps/erpnext/erpnext/setup/doctype/email_digest/email_digest.py,Pending activities for today,فعالیت های در انتظار برای امروز
DocType: Salary Structure,Salary Component for timesheet based payroll.,کامپوننت حقوق و دستمزد حقوق و دستمزد بر اساس برنامه زمانی برای.
DocType: Driver,Applicable for external driver,قابل اجرا برای راننده خارجی
DocType: Sales Order Item,Used for Production Plan,مورد استفاده برای طرح تولید
DocType: BOM,Total Cost (Company Currency),هزینه کل (ارز شرکت)
DocType: Loan,Total Payment,مبلغ کل قابل پرداخت
apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py,Cannot cancel transaction for Completed Work Order.,معامله برای سفارش کار کامل لغو نمی شود.
DocType: Manufacturing Settings,Time Between Operations (in mins),زمان بین عملیات (در دقیقه)
apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.py,PO already created for all sales order items,PO برای تمام اقلام سفارش فروش ایجاد شده است
DocType: Healthcare Service Unit,Occupied,مشغول
DocType: Clinical Procedure,Consumables,مواد مصرفی
apps/erpnext/erpnext/accounts/report/balance_sheet/balance_sheet.js,Include Default Book Entries,شامل ورودی های پیش فرض کتاب
apps/erpnext/erpnext/stock/doctype/material_request/material_request.py,{0} {1} is cancelled so the action cannot be completed,{0} {1} لغو می شود پس از عمل نمی تواند تکمیل شود
apps/erpnext/erpnext/manufacturing/doctype/production_plan/production_plan.js,"Planned Qty: Quantity, for which, Work Order has been raised, but is pending to be manufactured.",برنامه ریزی شده Qty: مقدار ، برای آن ، سفارش کار مطرح شده است ، اما در انتظار تولید است.
DocType: Customer,Buyer of Goods and Services.,خریدار کالا و خدمات.
apps/erpnext/erpnext/hr/doctype/employee_checkin/employee_checkin.py,'employee_field_value' and 'timestamp' are required.,'staff_field_value' و 'timestamp' الزامی هستند.
DocType: Journal Entry,Accounts Payable,حساب های پرداختنی
apps/erpnext/erpnext/accounts/doctype/payment_request/payment_request.py,The amount of {0} set in this payment request is different from the calculated amount of all payment plans: {1}. Make sure this is correct before submitting the document.,مقدار {0} در این درخواست پرداخت متفاوت از مقدار محاسبه شده از همه برنامه های پرداخت است {1}. قبل از ارسال سند مطمئن شوید این درست است.
DocType: Patient,Allergies,آلرژی
apps/erpnext/erpnext/manufacturing/doctype/bom_update_tool/bom_update_tool.py,The selected BOMs are not for the same item,BOM ها انتخاب شده برای آیتم یکسان نیست
apps/erpnext/erpnext/healthcare/doctype/clinical_procedure_template/clinical_procedure_template.js,Change Item Code,تغییر کد مورد نظر
DocType: Supplier Scorecard Standing,Notify Other,اطلاع دیگر
DocType: Vital Signs,Blood Pressure (systolic),فشار خون (سیستولیک)
DocType: Item Price,Valid Upto,معتبر تا حد
DocType: Leave Type,Expire Carry Forwarded Leaves (Days),برگهای حمل شده Expire (روزها)
DocType: Training Event,Workshop,کارگاه
DocType: Supplier Scorecard Scoring Standing,Warn Purchase Orders,هشدار سفارشات خرید
apps/erpnext/erpnext/utilities/user_progress.py,List a few of your customers. They could be organizations or individuals.,لیست تعداد کمی از مشتریان خود را. آنها می تواند سازمان ها یا افراد.
DocType: Employee Tax Exemption Proof Submission,Rented From Date,اجاره از تاریخ
apps/erpnext/erpnext/manufacturing/report/bom_stock_report/bom_stock_report.py,Enough Parts to Build,قطعات اندازه کافی برای ساخت
apps/erpnext/erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.js,Please save first,لطفا اول ذخیره کنید
DocType: POS Profile User,POS Profile User,کاربر پروفایل POS
apps/erpnext/erpnext/assets/doctype/asset/asset.py,Row {0}: Depreciation Start Date is required,ردیف {0}: تاریخ شروع تخلیه مورد نیاز است
DocType: Purchase Invoice Item,Service Start Date,تاریخ شروع سرویس
DocType: Subscription Invoice,Subscription Invoice,اشتراک فاکتور
apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py,Direct Income,درآمد مستقیم
DocType: Patient Appointment,Date TIme,زمان قرار
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py,"Can not filter based on Account, if grouped by Account",می توانید بر روی حساب نمی فیلتر بر اساس، در صورتی که توسط حساب گروه بندی
apps/erpnext/erpnext/setup/setup_wizard/operations/install_fixtures.py,Administrative Officer,افسر اداری
apps/erpnext/erpnext/education/doctype/student_group/student_group.py,Please select Course,لطفا دوره را انتخاب کنید
DocType: Codification Table,Codification Table,جدول کدگذاری
DocType: Timesheet Detail,Hrs,ساعت
DocType: Employee Skill,Employee Skill,مهارت کارمندان
apps/erpnext/erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.js,Difference Account,حساب تفاوت
DocType: Pricing Rule,Discount on Other Item,تخفیف در مورد دیگر
DocType: Purchase Invoice,Supplier GSTIN,کننده GSTIN
apps/erpnext/erpnext/regional/doctype/gstr_3b_report/gstr_3b_report.js,View Form,فرم مشاهده
DocType: Work Order,Additional Operating Cost,هزینه های عملیاتی اضافی
DocType: Lab Test Template,Lab Routine,روال آزمایشگاهی
apps/erpnext/erpnext/setup/setup_wizard/data/industry_type.py,Cosmetics,آرایشی و بهداشتی
apps/erpnext/erpnext/assets/doctype/asset_maintenance_log/asset_maintenance_log.py,Please select Completion Date for Completed Asset Maintenance Log,لطفا تاریخ تکمیل را برای ورود به سیستم نگهداری دارایی تکمیل کنید
apps/erpnext/erpnext/stock/doctype/material_request/material_request.py,{0} is not the default supplier for any items.,{0} تأمین کننده پیش فرض برای هر مورد نیست.
apps/erpnext/erpnext/stock/doctype/item/item.py,"To merge, following properties must be same for both items",به ادغام، خواص زیر باید همین کار را برای هر دو مورد می شود
DocType: Supplier,Block Supplier,تامین کننده بلوک
DocType: Shipping Rule,Net Weight,وزن خالص
DocType: Job Opening,Planned number of Positions,تعداد پالیسی های برنامه ریزی شده
DocType: Employee,Emergency Phone,تلفن اضطراری
apps/erpnext/erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py,{0} {1} does not exist.,{0} {1} وجود ندارد
apps/erpnext/erpnext/stock/doctype/item/item_dashboard.py,Buy,خرید
,Serial No Warranty Expiry,سریال بدون گارانتی انقضاء
DocType: Sales Invoice,Offline POS Name,آفلاین نام POS
DocType: Task,Dependencies,وابستگی ها
apps/erpnext/erpnext/utilities/user_progress.py,Student Application,برنامه دانشجویی
DocType: Bank Statement Transaction Payment Item,Payment Reference,مرجع پرداخت
DocType: Supplier,Hold Type,نوع نگه دارید
apps/erpnext/erpnext/education/doctype/grading_scale/grading_scale.py,Please define grade for Threshold 0%,لطفا درجه برای آستانه 0٪ تعریف
DocType: Bank Statement Transaction Payment Item,Bank Statement Transaction Payment Item,بیانیه بیانیه معامله پرداخت مورد
DocType: Sales Order,To Deliver,رساندن
DocType: Purchase Invoice Item,Item,بخش
apps/erpnext/erpnext/healthcare/setup.py,High Sensitivity,حساسیت بالا
apps/erpnext/erpnext/config/non_profit.py,Volunteer Type information.,اطلاعات نوع داوطلب
DocType: Cash Flow Mapping Template,Cash Flow Mapping Template,الگو گردش مالی نقدی
DocType: Travel Request,Costing Details,جزئیات هزینه
apps/erpnext/erpnext/selling/report/sales_partner_transaction_summary/sales_partner_transaction_summary.js,Show Return Entries,نمایش مقالات بازگشت
apps/erpnext/erpnext/accounts/page/pos/pos.js,Serial no item cannot be a fraction,سریال هیچ مورد نمی تواند کسری
DocType: Journal Entry,Difference (Dr - Cr),تفاوت (دکتر - کروم)
DocType: Bank Guarantee,Providing,فراهم آوردن
DocType: Account,Profit and Loss,حساب سود و زیان
DocType: Tally Migration,Tally Migration,مهاجرت Tally
apps/erpnext/erpnext/healthcare/doctype/lab_test/lab_test.js,"Not permitted, configure Lab Test Template as required",مجاز نیست، قالب آزمایش آزمایشی را طبق الزامات پیکربندی کنید
DocType: Patient,Risk Factors,عوامل خطر
DocType: Patient,Occupational Hazards and Environmental Factors,خطرات کاری و عوامل محیطی
apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py,Stock Entries already created for Work Order ,مقالات موجود برای سفارش کار ایجاد شده است
apps/erpnext/erpnext/templates/pages/cart.html,See past orders,سفارشات گذشته را مشاهده کنید
apps/erpnext/erpnext/public/js/hub/pages/Selling.vue,{0} conversations,{0} مکالمه
DocType: Vital Signs,Respiratory rate,نرخ تنفس
apps/erpnext/erpnext/config/help.py,Managing Subcontracting,مدیریت مقاطعه کاری فرعی
DocType: Vital Signs,Body Temperature,دمای بدن
DocType: Project,Project will be accessible on the website to these users,پروژه در وب سایت به این کاربران در دسترس خواهد بود
apps/erpnext/erpnext/stock/doctype/serial_no/serial_no.py,Cannot cancel {0} {1} because Serial No {2} does not belong to the warehouse {3},{0} {1} را نمیتوان لغو کرد زیرا شماره سریال {2} متعلق به انبار نیست {3}
DocType: Detected Disease,Disease,مرض
DocType: Company,Default Deferred Expense Account,پیش فرض حساب هزینه معوق
apps/erpnext/erpnext/config/projects.py,Define Project type.,تعریف نوع پروژه
DocType: Supplier Scorecard,Weighting Function,تابع وزن
DocType: Employee Tax Exemption Proof Submission,Total Actual Amount,مقدار کل واقعی
DocType: Healthcare Practitioner,OP Consulting Charge,مسئولیت محدود OP
apps/erpnext/erpnext/utilities/user_progress.py,Setup your ,راه اندازی خود را
DocType: Student Report Generation Tool,Show Marks,نمایش مارک ها
DocType: Support Settings,Get Latest Query,دریافت آخرین درخواست
DocType: Quotation,Rate at which Price list currency is converted to company's base currency,سرعت که در آن لیست قیمت ارز به ارز پایه شرکت تبدیل
apps/erpnext/erpnext/setup/doctype/company/company.py,Account {0} does not belong to company: {1},حساب {0} به شرکت تعلق ندارد: {1}
apps/erpnext/erpnext/setup/doctype/company/company.py,Abbreviation already used for another company,مخفف در حال حاضر برای یک شرکت دیگر مورد استفاده قرار گرفته است
DocType: Selling Settings,Default Customer Group,گروه مشتری پیش فرض
apps/erpnext/erpnext/accounts/report/accounts_receivable/accounts_receivable.js,Payment Tems,مبلغ پرداخت
DocType: Employee,IFSC Code,کد IFSC
DocType: Global Defaults,"If disable, 'Rounded Total' field will not be visible in any transaction",اگر غیر فعال کردن، درست "گرد مجموع خواهد در هر معامله قابل نمایش باشد
DocType: BOM,Operating Cost,هزینه های عملیاتی
DocType: Crop,Produced Items,آیتم های تولید شده
DocType: Bank Statement Transaction Entry,Match Transaction to Invoices,معامله معاملات را به صورت حساب
apps/erpnext/erpnext/erpnext_integrations/exotel_integration.py,Error in Exotel incoming call,خطا در تماس دریافتی Exotel
DocType: Sales Order Item,Gross Profit,سود ناخالص
apps/erpnext/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.js,Unblock Invoice,انحلال صورتحساب
apps/erpnext/erpnext/stock/doctype/item_attribute/item_attribute.py,Increment cannot be 0,افزایش نمی تواند 0
DocType: Company,Delete Company Transactions,حذف معاملات شرکت
DocType: Production Plan Item,Quantity and Description,مقدار و توضیحات
apps/erpnext/erpnext/accounts/doctype/payment_entry/payment_entry.py,Reference No and Reference Date is mandatory for Bank transaction,مرجع و تاریخ در مرجع برای معامله بانک الزامی است
DocType: Purchase Receipt,Add / Edit Taxes and Charges,افزودن / ویرایش مالیات ها و هزینه ها
DocType: Payment Entry Reference,Supplier Invoice No,تامین کننده فاکتور بدون
DocType: Territory,For reference,برای مرجع
DocType: Healthcare Settings,Appointment Confirmation,تایید انتصاب
DocType: Inpatient Record,HLC-INP-.YYYY.-,HLC-INP- .YYYY.-
apps/erpnext/erpnext/stock/doctype/serial_no/serial_no.py,"Cannot delete Serial No {0}, as it is used in stock transactions",نمی توانید حذف سریال نه {0}، آن را به عنوان در معاملات سهام مورد استفاده
apps/erpnext/erpnext/accounts/report/trial_balance/trial_balance.py,Closing (Cr),بسته شدن (کروم)
DocType: Purchase Invoice,Registered Composition,ترکیب ثبت شده
apps/erpnext/erpnext/hr/notification/training_feedback/training_feedback.html,Hello,سلام
apps/erpnext/erpnext/stock/dashboard/item_dashboard.js,Move Item,انتقال مورد
DocType: Employee Incentive,Incentive Amount,مبلغ تسریع کننده
,Employee Leave Balance Summary,خلاصه مانده تراز کارمندان
DocType: Serial No,Warranty Period (Days),دوره گارانتی (روز)
apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py,Total Credit/ Debit Amount should be same as linked Journal Entry,مبلغ کل اعتبار / بدهی باید همانند ورود مجله مجله باشد
DocType: Installation Note Item,Installation Note Item,نصب و راه اندازی توجه داشته باشید مورد
DocType: Production Plan Item,Pending Qty,انتظار تعداد
DocType: Budget,Ignore,نادیده گرفتن
apps/erpnext/erpnext/accounts/party.py,{0} {1} is not active,{0} {1} غیر فعال است
DocType: Woocommerce Settings,Freight and Forwarding Account,حمل و نقل و حمل و نقل حساب
apps/erpnext/erpnext/config/accounting.py,Setup cheque dimensions for printing,ابعاد چک راه اندازی برای چاپ
apps/erpnext/erpnext/hr/doctype/payroll_entry/payroll_entry.js,Create Salary Slips,ایجاد لغزش حقوق
DocType: Vital Signs,Bloated,پف کرده
DocType: Salary Slip,Salary Slip Timesheet,برنامه زمانی حقوق و دستمزد لغزش
apps/erpnext/erpnext/controllers/buying_controller.py,Supplier Warehouse mandatory for sub-contracted Purchase Receipt,انبار تامین کننده برای رسید خرید زیر قرارداد اجباری