-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathps.csv
We can't make this file beautiful and searchable because it's too large.
8030 lines (8017 loc) · 900 KB
/
ps.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,لګښت او اولګښت
DocType: QuickBooks Migrator,Token Endpoint,د توین پای ټکی
apps/erpnext/erpnext/accounts/doctype/account/account.py,Account {0}: Parent account {1} can not be a ledger,ګڼون {0}: Parent حساب {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,د اندازه کولو واحد (Default)
DocType: SMS Center,All Sales Partner Contact,ټول خرڅلاو همکار سره اړيکي
DocType: Department,Leave Approvers,تصویبونکي ووځي
DocType: Employee,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 کلیدي یا د پیرودونکي 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,انتخاب Default عرضه
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,د غوښتل شوي By
DocType: Delivery Note,Return Against Delivery Note,پر وړاندې د سپارنې يادونه Return
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,لړۍ Updated په بریالیتوب
apps/erpnext/erpnext/templates/includes/cart/cart_dropdown.html,Checkout,بشپړ ی وګوره
apps/erpnext/erpnext/controllers/accounts_controller.py,{0} in row {1},{1} په قطار کې {1}
DocType: Asset Finance Book,Depreciation Start Date,د استهالک نیټه د پیل نیټه
DocType: Pricing Rule,Apply On,Apply د
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,د مادي
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 وکاروئ
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,وړاندوینه شوی دقیق فورمول
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,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,Abbr
DocType: Appraisal Goal,Score (0-5),نمره (0-5)
DocType: Tally Migration,Tally Creditors Account,د ټیلیټ کریډیټ حساب
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,Total لګښت مقدار
DocType: Sales Invoice,Vehicle No,موټر نه
apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py,Please select Price List,مهرباني غوره بیې لېست
DocType: Accounts Settings,Currency Exchange Settings,د بدلولو تبادله
DocType: Work Order Operation,Work In Progress,کار په جریان کښی
DocType: Leave Control Panel,Branch (optional),څانګه (اختیاري)
apps/erpnext/erpnext/accounts/doctype/pricing_rule/utils.py,Row {0}: user has not applied rule <b>{1}</b> on the item <b>{2}</b>,قطار {0}: کارونکي په توکي <b>{2}</b> باندې قاعده <b>{1}</b> نه ده پلي کړې
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,ارزښت د استهالک وروسته
DocType: Student,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,د ای - ویز بل JSON د اوس لپاره د پلور بیرته راتګ لپاره نشي تولید کیدی
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,د دویم پته څخه
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,Parent تفصیلي 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,{1}} {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,کڅوړه
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,(قيامت Rate / 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,Row # {0}: د حوالې سند ډول باید د لګښتونو یا ژورنال ننوتلو څخه یو وي
apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js,Select 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.,مهرباني وکړئ د بشري سایټونو کې د وینډوز د خبرتیا نوښت لپاره د ډیزاینټ ټاپ ډک کړئ
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,د لیږل شوي پاvesو اعظمي اعظمي حد
DocType: Salary Slip,Employee Loan,د کارګر د پور
DocType: Additional Salary,HR-ADS-.YY.-.MM.-,HR-ADS -YY .- ایم. ایم.
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,د پاpageې برخه
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,تحویلوونکی By عرضه
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/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,منل شوی مقدار
DocType: Journal Entry,Contra Entry,Contra انفاذ
DocType: Journal Entry Account,Credit in Company Currency,په شرکت د پیسو د اعتبار
DocType: Lab Test UOM,Lab Test 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},منل + رد Qty باید د قالب برابر رارسيدلي مقدار وي {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.",نشي کولی د سیریل نمبر لخوا د \ توکي {0} په حیث د انتقال تضمین او د سیریل نمبر
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py,At least one mode of payment is required for POS invoice.,د پیسو تر لږه یوه اکر لپاره POS صورتحساب ته اړتيا لري.
apps/erpnext/erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py,Batch no is required for batched item {0},بیچ نمبر د بنډ شوي توکو لپاره اړین ندي {0}
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,نوي هیښ
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,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,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},Total ساعتونو: {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,د واو کامیریک امستنې
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,default خاوره
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,Default د معاشاتو د راتلوونکې حساب
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. ",که ناباوره شوی وي، توکي به د پلورنې انوونټ کې حاضر نه وي، مګر د ډله ایزې ازموینې په جوړولو کې کارول کیدی شي.
DocType: Customer Group,Mention if non-standard receivable account applicable,یادونه که غیر معیاري ترلاسه حساب د تطبيق وړ
DocType: Course Schedule,Instructor Name,د لارښوونکي نوم
DocType: Company,Arrear Component,د ارار برخې
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,تړل شوي دکتیک ډول
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,Add د قالب
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: ,د زده کونکي 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),Total لګښت مقدار (د وخت پاڼه له لارې)
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)",که چیرته د اتوم انټینټ چک شي نو بیا به پیرودونکي به په اتومات ډول د اړوند وفادار پروګرام سره خوندي شي) خوندي ساتل (
DocType: Stock Reconciliation Item,Stock Reconciliation Item,دحمل پخلاينې د قالب
DocType: Stock Entry,Sales Invoice No,خرڅلاو صورتحساب نه
DocType: Website Filter Field,Website Filter Field,د ویب پا Filې فلټر ډګر
apps/erpnext/erpnext/regional/report/eway_bill/eway_bill.py,Supply Type,د سپړنې ډول
DocType: Material Request Item,Min Order Qty,Min نظم 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,لږ تر لږه نظم 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,د بام متفاوت راپور
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/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,د کیلي عامه کیلي
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,دوه کلن
DocType: Education Settings,Education Settings,د زده کړې ترتیبات
DocType: Vehicle Service,Inspection,تفتیش
apps/erpnext/erpnext/regional/italy/utils.py,E-Invoicing Information Missing,د E - رسیدلي معلومات ورکیدل
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,نوي Quotations
apps/erpnext/erpnext/hr/doctype/attendance_request/attendance_request.py,Attendance not submitted for {0} as {1} on leave.,حاضری د {1} په توګه د تګ په حیث د {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",که خالي ، اصلي پلورنځي ګ Accountون یا د شرکت ډیفالټ به په پام کې ونیول شي
DocType: HR Settings,Emails salary slip to employee based on preferred email selected in Employee,د کارکوونکو د برېښناليک معاش ټوټه پر بنسټ د خوښې ایمیل کې د کارګر ټاکل
DocType: Tax Rule,Shipping County,انتقال 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.,Manage خرڅلاو شخص د ونو.
DocType: Job Applicant,Cover Letter,د خط کور
apps/erpnext/erpnext/accounts/report/bank_reconciliation_statement/bank_reconciliation_statement.py,Outstanding Cheques and Deposits to clear,بيالنس Cheques او سپما او پاکول
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,د variant
apps/erpnext/erpnext/manufacturing/doctype/work_order/work_order.py,Completed Qty can not be greater than 'Qty to Manufacture',بشپړ Qty نه شي کولای په پرتله 'Qty تولید' وي
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,د ویب پا productې محصول لیست کولو لپاره تنظیمات
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,نظم ارزښت
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,Total نظم نیول کیږی
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,د مالياتو د 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,ګ Sون 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,تفتیش 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.",داسې ښکاري چې د سرور د ګورتورډ کنټرول سره یو مسله وي. اندیښنه مه کوئ، د ناکامۍ په صورت کې، ستاسو د حساب رقم به بیرته ترلاسه شي.
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,پريږدئ Approver نوم
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,اجباري ډګر - لاسه زده کونکو له
apps/erpnext/erpnext/education/doctype/program_enrollment_tool/program_enrollment_tool.py,Mandatory field - Get Students From,اجباري ډګر - لاسه زده کونکو له
DocType: Program Enrollment,Enrolled courses,ثبت شوي کورسونه
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 as په توګه ټاکل شوی وي نو بیا تاسو ته د. 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,رانيول 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},Workstation په لاندې نېټو بند دی هر رخصتي بشپړفهرست په توګه: {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,Avg. د پلورلو نرخ
DocType: Assessment Plan,Examiner Name,Examiner نوم
DocType: Lab Test Template,No Result,نه د پايلو
DocType: Woocommerce Settings,"The fallback series is ""SO-WOO-"".",د فیل بیک بیک لړۍ "SO-WOO-" ده.
DocType: Purchase Invoice Item,Quantity and Rate,کمیت او 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,د ټولو څانګو د غړو پاڼي په 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/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.','د Case شمیره' کولای 'له Case شمیره' لږ نه وي
DocType: Certification Application,Non Profit,غیر ګټه
DocType: Production Plan,Not Started,پیل نه دی
DocType: Lead,Channel Partner,چینل همکار
DocType: Account,Old Parent,زاړه Parent
apps/erpnext/erpnext/education/doctype/program_enrollment_tool/program_enrollment_tool.py,Mandatory field - Academic Year,اجباري ډګر - تعليمي کال د
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.,تاسو اړتیا لرئ مخکې لدې چې کوم بیاکتنې اضافه کړئ تاسو د بازار ځای کارونکي په توګه ننوتل ته اړتیا لرئ.
apps/erpnext/erpnext/manufacturing/doctype/job_card/job_card.py,Row {0} : Operation is required against the raw material item {1},Row {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.,د ټولو د توليد د پروسې Global امستنې.
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/public/js/call_popup/call_popup.js,Incoming call from {0},د {0} څخه راتګ
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,د بیلونو په County
DocType: Purchase Taxes and Charges,"If checked, the tax amount will be considered as already included in the Print Rate / Print Amount",که وکتل، د مالیې د مقدار په پام کې به شي ځکه چې لا له وړاندې په د چاپ Rate / چاپ مقدار شامل
DocType: Request for Quotation,Message for Supplier,د عرضه پيغام
DocType: BOM,Work Order,د کار امر
DocType: Sales Invoice,Total Qty,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,ته 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,د والدینو لخوا تمرکز
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.,د timesheet پر بنسټ د معاشونو د معاش برخه.
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,پو د مخه د ټولو پلورونو د امر توکو لپاره جوړ شوی
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.",پلان شوی مقدار: مقدار ، د کوم لپاره ، د کاري امر راپورته شوی ، مګر پاتې دی چې تولید شي.
DocType: Customer,Buyer of Goods and Services.,د توکو او خدماتو د اخستونکو لپاره.
apps/erpnext/erpnext/hr/doctype/employee_checkin/employee_checkin.py,'employee_field_value' and 'timestamp' are required.,'مامور_ فیلډ_ویلیو' او 'ټایمسټیمپ' اړین دی.
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,د ټاکل شوي BOMs د همدغه توکي نه دي
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),د لېږدول شوي پا (و ختمیدل (ورځې)
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,د پی ایس پی پی ایل کارن
apps/erpnext/erpnext/assets/doctype/asset/asset.py,Row {0}: Depreciation Start Date is required,Row {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",نه په حساب پر بنسټ کولای شي Filter، که د حساب ګروپ
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,لطفا کورس انتخاب
apps/erpnext/erpnext/education/doctype/student_group/student_group.py,Please select Course,لطفا کورس انتخاب
DocType: Codification Table,Codification Table,د کوډیزشن جدول
DocType: Timesheet Detail,Hrs,بجو
apps/erpnext/erpnext/manufacturing/page/bom_comparison_tool/bom_comparison_tool.js,Changes in {0},په {0} کې بدلونونه
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/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٪ ټولګي تعریف
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),توپير (ډاکټر - CR)
DocType: Bank Guarantee,Providing,چمتو کول
DocType: Account,Profit and Loss,ګټه او زیان
DocType: Tally Migration,Tally Migration,د ټیلی مهاجرت
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,تیرې سپارښتنې وګورئ
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,Abbreviation لا د بل شرکت لپاره کارول
DocType: Selling Settings,Default Customer Group,Default پيرودونکو ګروپ
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",که ناتوان، 'غونډ مونډ Total' ډګر به په هيڅ معامله د لیدو وړ وي
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,په ایکسټیل راتلو کال کې غلطي
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,Add / سمول مالیات او په تور
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,د پور ټول مجموعی / د Debit اندازه باید د ژورنالیستانو انټرنټ سره ورته وي
DocType: Installation Note Item,Installation Note Item,نصب او يادونه د قالب
DocType: Production Plan Item,Pending Qty,تصویبه 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,د چاپ Setup چک ابعادو
apps/erpnext/erpnext/hr/doctype/payroll_entry/payroll_entry.js,Create Salary Slips,د معاش معاشونه جوړ کړئ
DocType: Vital Signs,Bloated,لوټ شوی
DocType: Salary Slip,Salary Slip Timesheet,معاش ټوټه Timesheet