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