-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy patham.csv
We can't make this file beautiful and searchable because it's too large.
8064 lines (8051 loc) · 938 KB
/
am.csv
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
DocType: Accounting Period,Period Name,የጊዜ ስም
DocType: Employee,Salary Mode,ደመወዝ ሁነታ
apps/erpnext/erpnext/public/js/hub/marketplace.js,Register,መዝግብ
apps/erpnext/erpnext/stock/doctype/material_request/material_request_list.js,Partially Received,በከፊል የተቀበሉ
DocType: Patient,Divorced,በፍቺ
DocType: Support Settings,Post Route Key,የልኡክ ጽሁፍ መስመር ቁልፍ
DocType: Buying Settings,Allow Item to be added multiple times in a transaction,ንጥል አንድ ግብይት ውስጥ በርካታ ጊዜያት መታከል ፍቀድ
DocType: Content Question,Content Question,የይዘት ጥያቄ
apps/erpnext/erpnext/support/doctype/warranty_claim/warranty_claim.py,Cancel Material Visit {0} before cancelling this Warranty Claim,የቁስ ይጎብኙ {0} ይህን የዋስትና የይገባኛል ጥያቄ በመሰረዝ በፊት ይቅር
DocType: Customer Feedback Table,Qualitative Feedback,ጥራት ያለው ግብረ መልስ
apps/erpnext/erpnext/config/education.py,Assessment Reports,የግምገማ ሪፖርቶች
DocType: Invoice Discounting,Accounts Receivable Discounted Account,የሂሳብ ደረሰኝ የተቀነሰ ሂሳብ።
apps/erpnext/erpnext/accounts/doctype/invoice_discounting/invoice_discounting_list.js,Canceled,ተሰር .ል።
apps/erpnext/erpnext/setup/setup_wizard/data/industry_type.py,Consumer Products,የሸማቾች ምርቶች
DocType: Supplier Scorecard,Notify Supplier,አቅራቢውን አሳውቅ
apps/erpnext/erpnext/accounts/report/payment_period_based_on_invoice_date/payment_period_based_on_invoice_date.js,Please select Party Type first,ለመጀመሪያ ጊዜ ፓርቲ አይነት ይምረጡ
DocType: Item,Customer Items,የደንበኛ ንጥሎች
apps/erpnext/erpnext/accounts/report/balance_sheet/balance_sheet.py,Liabilities,ግዴታዎች
DocType: Project,Costing and Billing,ዋጋና አከፋፈል
apps/erpnext/erpnext/hr/doctype/employee_advance/employee_advance.py,Advance account currency should be same as company currency {0},የቅድሚያ መለያ ሂሳብ እንደ ኩባንያ ምንዛሬ መሆን አለበት {0}
DocType: QuickBooks Migrator,Token Endpoint,የማስመሰያ የመጨረሻ ነጥብ
apps/erpnext/erpnext/accounts/doctype/account/account.py,Account {0}: Parent account {1} can not be a ledger,መለያ {0}: የወላጅ መለያ {1} ያሰኘንን ሊሆን አይችልም
DocType: Item,Publish Item to hub.erpnext.com,hub.erpnext.com ወደ ንጥል አትም
apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py,Cannot find active Leave Period,ንቁ የቆየውን ጊዜ ማግኘት አይቻልም
apps/erpnext/erpnext/hr/doctype/employee/employee_dashboard.py,Evaluation,ግምገማ
DocType: Item,Default Unit of Measure,ይለኩ ነባሪ ክፍል
DocType: SMS Center,All Sales Partner Contact,ሁሉም የሽያጭ ባልደረባ ያግኙን
DocType: Department,Leave Approvers,Approvers ውጣ
DocType: Employee,Bio / Cover Letter,የህይወት ታሪክ / ደብዳቤ
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","ለይለፍ ቃል, ኤፒአይ ቁልፍ ወይም የዩቲዩብ ሽያጭ እሴት ይጎድላል"
DocType: Employee,Rented,ተከራይቷል
apps/erpnext/erpnext/accounts/doctype/chart_of_accounts_importer/chart_of_accounts_importer.js,All Accounts,ሁሉም መለያዎች
apps/erpnext/erpnext/hr/doctype/employee_transfer/employee_transfer.py,Cannot transfer Employee with status Left,ሰራተኛ በአቋም ሁኔታ ወደ ግራ ማስተላለፍ አይቻልም
DocType: Vehicle Service,Mileage,ርቀት
apps/erpnext/erpnext/assets/doctype/asset/asset.js,Do you really want to scrap this asset?,እርግጠኛ ነዎት ይህን ንብረት ቁራጭ ትፈልጋለህ?
DocType: Drug Prescription,Update Schedule,መርሐግብርን ያዘምኑ
apps/erpnext/erpnext/buying/report/quoted_item_comparison/quoted_item_comparison.js,Select Default Supplier,ይምረጡ ነባሪ አቅራቢ
apps/erpnext/erpnext/hr/doctype/job_offer/job_offer.js,Show Employee,ተቀጣሪን አሳይ
DocType: Payroll Period,Standard Tax Exemption Amount,መደበኛ የግብር ትርፍ ክፍያ መጠን።
DocType: Exchange Rate Revaluation Account,New Exchange Rate,አዲስ ልውጥ ተመን
apps/erpnext/erpnext/shopping_cart/doctype/shopping_cart_settings/shopping_cart_settings.py,Currency is required for Price List {0},የምንዛሬ ዋጋ ዝርዝር ያስፈልጋል {0}
DocType: Sales Taxes and Charges Template,* Will be calculated in the transaction.,* ግብይቱ ላይ ይሰላሉ.
DocType: Delivery Trip,MAT-DT-.YYYY.-,ማት-ዱብ-ያዮያን.-
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-yYYYY.-
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,አንድ / የሥራ ቦታ አዲስ አበባ
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),ITC አለ (በሙሉ ኦፕሬም ክፍል ውስጥም ቢሆን)
DocType: Amazon MWS Settings,Amazon MWS Settings,የ Amazon 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-yYYYY.-
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,የክፍያ ዕቅድ በ 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} በጠቅላላው {2} የጥቅማጥቅ ፐሮዳንድ ክፍል \ እና ቀደም ሲል የተጠየቀው የክፍያ መጠን በ {1} ያልበለጠ ነው.
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,የሚገመቱ የመድረሻ ጊዜዎችን ለማስላት የጉግል ካርታዎች አቅጣጫ ኤ ፒ አይን ይጠቀሙ።
apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py,Loans (Liabilities),ብድር (ተጠያቂነቶች)
DocType: Patient Encounter,Encounter Time,የመሰብሰብ ጊዜ
DocType: Staffing Plan Detail,Total Estimated Cost,አጠቃላይ የተገመተ ወጪ
DocType: Employee Education,Year of Passing,ያለፉት ዓመት
DocType: Routing,Routing Name,የመሄጃ ስም
DocType: Item,Country of Origin,የትውልድ ቦታ
DocType: Soil Texture,Soil Texture Criteria,የአፈር የግንባታ መስፈርት
apps/erpnext/erpnext/templates/generators/item/item_add_to_cart.html,In Stock,ለሽያጭ የቀረበ እቃ
apps/erpnext/erpnext/public/js/utils/customer_quick_entry.js,Primary Contact Details,ዋና እውቂያ ዝርዝሮች
apps/erpnext/erpnext/setup/doctype/email_digest/templates/default.html,Open Issues,ክፍት ጉዳዮች
DocType: Production Plan Item,Production Plan Item,የምርት ዕቅድ ንጥል
DocType: Leave Ledger Entry,Leave Ledger Entry,የደርገር ግባን ይተው ፡፡
apps/erpnext/erpnext/hr/doctype/employee/employee.py,User {0} is already assigned to Employee {1},አባል {0} አስቀድሞ ሰራተኛ ተመድቧል {1}
DocType: Lab Test Groups,Add new line,አዲስ መስመር ያክሉ
apps/erpnext/erpnext/utilities/activation.py,Create Lead,መሪ ፍጠር።
DocType: Production Plan,Projected Qty Formula,የታሰበው ስሌት ቀመር
apps/erpnext/erpnext/setup/setup_wizard/data/industry_type.py,Health Care,የጤና ጥበቃ
apps/erpnext/erpnext/accounts/report/payment_period_based_on_invoice_date/payment_period_based_on_invoice_date.py,Delay in payment (Days),ክፍያ መዘግየት (ቀኖች)
DocType: Payment Terms Template Detail,Payment Terms Template Detail,የክፍያ ውል አብነት ዝርዝር
DocType: Hotel Room Reservation,Guest Name,የእንግዳ ስም
DocType: Delivery Note,Issue Credit Note,የችግር ብድር ማስታወሻ
DocType: Lab Prescription,Lab Prescription,ላብራቶሪ መድኃኒት
,Delay Days,የዘገየ
apps/erpnext/erpnext/hr/report/vehicle_expenses/vehicle_expenses.py,Service Expense,የአገልግሎት የወጪ
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py,Serial Number: {0} is already referenced in Sales Invoice: {1},መለያ ቁጥር: {0} አስቀድሞ የሽያጭ ደረሰኝ ውስጥ የተጠቆመው ነው: {1}
DocType: Bank Statement Transaction Invoice Item,Invoice,የዋጋ ዝርዝር
DocType: Employee Tax Exemption Declaration Category,Maximum Exempted Amount,ከፍተኛ የተመዘገበ መጠን
DocType: Purchase Invoice Item,Item Weight Details,የንጥል ክብደት ዝርዝሮች
DocType: Asset Maintenance Log,Periodicity,PERIODICITY
apps/erpnext/erpnext/accounts/report/trial_balance/trial_balance.py,Fiscal Year {0} is required,በጀት ዓመት {0} ያስፈልጋል
apps/erpnext/erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py,Net Profit/Loss,የተጣራ ትርፍ / ማጣት
DocType: Employee Group Table,ERPNext User ID,የ ERPNext የተጠቃሚ መታወቂያ።
DocType: Crop Cycle,The minimum distance between rows of plants for optimum growth,በአትክልቶች መካከል ባሉ አነስተኛ ደረጃዎች መካከል ዝቅተኛ የዕድገት ልዩነት
apps/erpnext/erpnext/healthcare/doctype/patient_appointment/patient_appointment.js,Please select Patient to get prescribed procedure,የታዘዘ አካሄድ ለማግኘት እባክዎ ታካሚ ይምረጡ።
apps/erpnext/erpnext/setup/setup_wizard/data/industry_type.py,Defense,መከላከያ
DocType: Salary Component,Abbr,Abbr
DocType: Appraisal Goal,Score (0-5),ውጤት (0-5)
DocType: Tally Migration,Tally Creditors Account,Tally አበዳሪዎች መለያ።
apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py,Row {0}: {1} {2} does not match with {3},ረድፍ {0}: {1} {2} ጋር አይዛመድም {3}
apps/erpnext/erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py,Row # {0}:,የረድፍ # {0}:
DocType: Timesheet,Total Costing Amount,ጠቅላላ የኳንቲቲ መጠን
DocType: Sales Invoice,Vehicle No,የተሽከርካሪ ምንም
apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py,Please select Price List,የዋጋ ዝርዝር እባክዎ ይምረጡ
DocType: Accounts Settings,Currency Exchange Settings,የምንዛሬ ልውውጥ ቅንብሮች
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-yYYYY.-
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,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+,ሆይ; +
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,የኢ-ዌይ ቢል ጄኤስሰን እስካሁን ድረስ ለሽያጭ ተመላሽ ሊመነጭ አይችልም።
DocType: Subscription,Subscription Start Date,የደንበኝነት ምዝገባ የመጀመሪያ ቀን
DocType: Healthcare Settings,Default receivable accounts to be used if not set in Patient to book Appointment charges.,የታካሚ ክፍያዎች ለመመዝገብ በታካሚ ውስጥ ካልተቀመጠ ጥቅም ላይ የሚውሉ ነባሪ ሂሳቦች.
DocType: Rename Tool,"Attach .csv file with two columns, one for the old name and one for the new name","ሁለት ዓምዶች, አሮጌውን ስም አንዱ አዲስ ስም አንድ ጋር .csv ፋይል አያይዝ"
apps/erpnext/erpnext/regional/report/eway_bill/eway_bill.py,From Address 2,ከ አድራሻ 2
apps/erpnext/erpnext/hr/doctype/employee_tax_exemption_proof_submission/employee_tax_exemption_proof_submission.js,Get Details From Declaration,ዝርዝሮችን ከእሳት ያግኙ ፡፡
apps/erpnext/erpnext/accounts/utils.py,{0} {1} not in any active Fiscal Year.,{0} {1} እንጂ ማንኛውም ገባሪ በጀት ዓመት ውስጥ.
DocType: Packed Item,Parent Detail docname,የወላጅ ዝርዝር DOCNAME
apps/erpnext/erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py,"Reference: {0}, Item Code: {1} and Customer: {2}","ማጣቀሻ: {0}, የእቃ ኮድ: {1} እና የደንበኞች: {2}"
apps/erpnext/erpnext/accounts/report/consolidated_financial_statement/consolidated_financial_statement.py,{0} {1} is not present in the parent company,{0} {1} በወላጅ ኩባንያ ውስጥ የለም
apps/erpnext/erpnext/accounts/doctype/subscription/subscription.py,Trial Period End Date Cannot be before Trial Period Start Date,የሙከራ ጊዜ ክፍለጊዜ ቀን ከመሞቱ በፊት የሚጀምርበት ቀን
apps/erpnext/erpnext/utilities/user_progress.py,Kg,ኪግ
DocType: Tax Withholding Category,Tax Withholding Category,የግብር ተቀናሽ ምድብ
apps/erpnext/erpnext/assets/doctype/asset_value_adjustment/asset_value_adjustment.py,Cancel the journal entry {0} first,የምዝገባ መግቢያው መጀመሪያ {0} ያስቀሩ
DocType: Purchase Invoice,ACC-PINV-.YYYY.-,ACC-PINV -.YYYY.-
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py,BOM is not specified for subcontracting item {0} at row {1},በንጥል {1} ውስጥ የንጥል ግዢን {0} በተመለከተ ቦም አልተገለጸም
DocType: Vital Signs,Reflexes,ልምምድ
apps/erpnext/erpnext/education/doctype/assessment_result_tool/assessment_result_tool.js,{0} Result submittted,{0} ውጤት ተገዝቷል
DocType: Item Attribute,Increment,ጨምር
apps/erpnext/erpnext/templates/pages/search_help.py,Help Results for,የእገዛ ውጤቶች ለ
apps/erpnext/erpnext/public/js/stock_analytics.js,Select Warehouse...,መጋዘን ይምረጡ ...
apps/erpnext/erpnext/setup/setup_wizard/data/industry_type.py,Advertising,ማስታወቂያ
apps/erpnext/erpnext/hr/doctype/expense_claim_type/expense_claim_type.py,Same Company is entered more than once,በዚሁ ኩባንያ ከአንድ ጊዜ በላይ ገባ ነው
DocType: Patient,Married,ያገባ
apps/erpnext/erpnext/accounts/party.py,Not permitted for {0},አይፈቀድም {0}
apps/erpnext/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.js,Get items from,ከ ንጥሎችን ያግኙ
DocType: Stock Entry,Send to Subcontractor,ወደ ሥራ ተቋራጭ ይላኩ ፡፡
DocType: Purchase Invoice,Apply Tax Withholding Amount,የግብር መያዣ መጠን ማመልከት
apps/erpnext/erpnext/manufacturing/doctype/job_card/job_card.py,Total completed qty can not be greater than for quantity,አጠቃላይ የተጠናቀቀው ኪቲ ከብዛቱ መብለጥ አይችልም።
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py,Stock cannot be updated against Delivery Note {0},የአክሲዮን አሰጣጥ ማስታወሻ ላይ መዘመን አይችልም {0}
apps/erpnext/erpnext/accounts/report/tds_computation_summary/tds_computation_summary.py,Total Amount Credited,ጠቅላላ መጠን ተቀጠረ
apps/erpnext/erpnext/templates/generators/item_group.html,No items listed,የተዘረዘሩት ምንም ንጥሎች የሉም
DocType: Asset Repair,Error Description,የስህተት መግለጫ
DocType: Payment Reconciliation,Reconcile,ያስታርቅ
apps/erpnext/erpnext/setup/setup_wizard/data/industry_type.py,Grocery,ግሮሰሪ
DocType: Quality Inspection Reading,Reading 1,1 ማንበብ
apps/erpnext/erpnext/setup/setup_wizard/data/industry_type.py,Pension Funds,የጡረታ ፈንድ
DocType: Exchange Rate Revaluation Account,Gain/Loss,ትርፍ ማግኘት / ኪሳራ / ኪሳራ
DocType: Crop,Perennial,የብዙ ዓመት
DocType: Program,Is Published,ታትሟል ፡፡
apps/erpnext/erpnext/accounts/report/accounts_receivable/accounts_receivable.js,Show Delivery Notes,የአቅርቦት ማስታወሻዎችን አሳይ።
apps/erpnext/erpnext/controllers/status_updater.py,"To allow over billing, update ""Over Billing Allowance"" in Accounts Settings or the Item.",የክፍያ መጠየቂያ ከልክ በላይ ለመፍቀድ በመለያዎች ቅንብሮች ወይም በንጥል ውስጥ «ከመጠን በላይ የክፍያ አበል» ን ያዘምኑ።
DocType: Patient Appointment,Procedure,ሂደት
DocType: Accounts Settings,Use Custom Cash Flow Format,ብጁ የገንዘብ ፍሰት ቅርጸት ተጠቀም
DocType: SMS Center,All Sales Person,ሁሉም ሽያጭ ሰው
DocType: Monthly Distribution,**Monthly Distribution** helps you distribute the Budget/Target across months if you have seasonality in your business.,** ወርሃዊ ስርጭት ** የእርስዎን ንግድ ውስጥ ወቅታዊ ቢኖራችሁ ወራት በመላ በጀት / ዒላማ ለማሰራጨት ይረዳል.
apps/erpnext/erpnext/accounts/page/pos/pos.js,Not items found,ንጥሎች አልተገኘም
apps/erpnext/erpnext/hr/doctype/salary_slip/salary_slip.py,Salary Structure Missing,ደመወዝ መዋቅር ይጎድላል
DocType: Lead,Person Name,ሰው ስም
,Supplier Ledger Summary,የአቅራቢ Lgerger ማጠቃለያ።
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}። እባክዎን የአሠራር ሁኔታን በ Job Card በኩል ያዘምኑ {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,ኤስ ኤም ኤስ ምዝግብ ማስታወሻ
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,የምርት Enquiry
DocType: Education Settings,Validate Batch for Students in Student Group,የተማሪ ቡድን ውስጥ ተማሪዎች ለ ባች Validate
apps/erpnext/erpnext/hr/doctype/attendance/attendance.py,No leave record found for employee {0} for {1},ሠራተኛ አልተገኘም ምንም ፈቃድ መዝገብ {0} ለ {1}
DocType: Company,Unrealized Exchange Gain/Loss Account,ያልተፈዘገበው ልውውጥ / የጠፋ መለያ
apps/erpnext/erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.js,Please enter company first,መጀመሪያ ኩባንያ ያስገቡ
apps/erpnext/erpnext/accounts/page/bank_reconciliation/bank_reconciliation.js,Please select Company first,መጀመሪያ ኩባንያ እባክዎ ይምረጡ
DocType: Employee Education,Under Graduate,ምረቃ በታች
apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py,Please set default template for Leave Status Notification in HR Settings.,እባክዎ በ HR ቅንብሮች ውስጥ ለመተው ሁኔታን ለመተው እባክዎ ነባሪ አብነት ያስቀምጡ.
apps/erpnext/erpnext/selling/report/sales_partner_target_variance_based_on_item_group/sales_partner_target_variance_based_on_item_group.js,Target On,ዒላማ ላይ
DocType: BOM,Total Cost,ጠቅላላ ወጪ
apps/erpnext/erpnext/hr/doctype/leave_allocation/leave_allocation.js,Allocation Expired!,ምደባው ጊዜው አብቅቷል!
DocType: Soil Analysis,Ca/K,ካ / ካ
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-yYYYY.-
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-YYYYY.-
apps/erpnext/erpnext/hr/doctype/hr_settings/hr_settings.py,Password policy for Salary Slips is not set,የደመወዝ ስኬሎች ይለፍ ቃል ፖሊሲ አልተዘጋጀም።
apps/erpnext/erpnext/accounts/doctype/pos_profile/pos_profile.py,Duplicate customer group found in the cutomer group table,የ cutomer ቡድን ሠንጠረዥ ውስጥ አልተገኘም አባዛ ደንበኛ ቡድን
DocType: Location,Location Name,የአካባቢ ስም
DocType: Quality Procedure Table,Responsible Individual,ኃላፊነት የተሰጠው ግለሰብ።
DocType: Naming Series,Prefix,ባዕድ መነሻ
apps/erpnext/erpnext/hr/notification/training_scheduled/training_scheduled.html,Event Location,የክስተት ቦታ
apps/erpnext/erpnext/selling/report/customer_wise_item_price/customer_wise_item_price.py,Available Stock,የሚገኝ ክምችት
DocType: Asset Settings,Asset Settings,የቋሚ ቅንጅቶች
apps/erpnext/erpnext/setup/setup_wizard/operations/install_fixtures.py,Consumable,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,Contra የሚመዘገብ መረጃ
DocType: Journal Entry Account,Credit in Company Currency,ኩባንያ የምንዛሬ ውስጥ የብድር
DocType: Lab Test UOM,Lab Test UOM,የቤተ ሙከራ ፈተና UOM
DocType: Delivery Note,Installation Status,መጫን ሁኔታ
DocType: BOM,Quality Inspection Template,የጥራት ቁጥጥር አብነት
apps/erpnext/erpnext/education/doctype/student_attendance_tool/student_attendance_tool.js,"Do you want to update attendance?<br>Present: {0}\
<br>Absent: {1}",እናንተ በስብሰባው ማዘመን ይፈልጋሉ? <br> አቅርብ: {0} \ <br> ብርቅ: {1}
apps/erpnext/erpnext/controllers/buying_controller.py,Accepted + Rejected Qty must be equal to Received quantity for Item {0},ብዛት ተቀባይነት አላገኘም ተቀባይነት + ንጥል ለማግኘት የተቀበልከው ብዛት ጋር እኩል መሆን አለባቸው {0}
DocType: Item,Supply Raw Materials for Purchase,አቅርቦት ጥሬ እቃዎች ግዢ
DocType: Agriculture Analysis Criteria,Fertilizer,ማዳበሪያ
apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.py,"Cannot ensure delivery by Serial No as \
Item {0} is added with and without Ensure Delivery by \
Serial No.",በ Serial No ላይ መላክን ማረጋገጥ አይቻልም በ \ item {0} በ እና በ "" ያለመድረሱ ማረጋገጫ በ \ Serial No.
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py,At least one mode of payment is required for POS invoice.,የክፍያ ቢያንስ አንድ ሁነታ POS መጠየቂያ ያስፈልጋል.
DocType: Bank Statement Transaction Invoice Item,Bank Statement Transaction Invoice Item,የባንክ መግለጫ የግብይት ደረሰኝ አይነት
DocType: Salary Detail,Tax on flexible benefit,በተመጣጣኝ ጥቅማ ጥቅም ላይ ግብር ይቀጣል
apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py,Item {0} is not active or end of life has been reached,{0} ንጥል ንቁ አይደለም ወይም የሕይወት መጨረሻ ደርሷል
DocType: Student Admission Program,Minimum Age,ትንሹ የእድሜ
apps/erpnext/erpnext/utilities/user_progress.py,Example: Basic Mathematics,ምሳሌ: መሰረታዊ የሂሳብ ትምህርት
DocType: Customer,Primary Address,ዋና አድራሻ
apps/erpnext/erpnext/manufacturing/report/bom_stock_calculated/bom_stock_calculated.py,Diff Qty,ልዩነት
DocType: Production Plan,Material Request Detail,የቁስ ንብረት ጥያቄ ዝርዝር
DocType: Selling Settings,Default Quotation Validity Days,ነባሪ ትዕዛዝ ዋጋ መስጫ ቀናት
apps/erpnext/erpnext/controllers/accounts_controller.py,"To include tax in row {0} in Item rate, taxes in rows {1} must also be included","ንጥል መጠን ረድፍ {0} ውስጥ ግብርን ማካተት, ረድፎች ውስጥ ቀረጥ {1} ደግሞ መካተት አለበት"
apps/erpnext/erpnext/config/quality_management.py,Quality Procedure.,የጥራት ደረጃ
DocType: SMS Center,SMS Center,ኤስ ኤም ኤስ ማዕከል
DocType: Payroll Entry,Validate Attendance,ተገኝነትን ያረጋግጡ
DocType: Sales Invoice,Change Amount,ለውጥ መጠን
DocType: Party Tax Withholding Config,Certificate Received,ሰርቲፊኬት ተቀብሏል
DocType: GST Settings,Set Invoice Value for B2C. B2CL and B2CS calculated based on this invoice value.,የ B2C ካርኒ እሴት ያዘጋጁ. በዚህ የክፍያ መጠየቂያ ዋጋ ላይ ተመስርቶ B2CL እና B2CS የተሰሉ.
DocType: BOM Update Tool,New BOM,አዲስ BOM
apps/erpnext/erpnext/healthcare/doctype/patient_appointment/patient_appointment.js,Prescribed Procedures,የታዘዙ ሸቀጦች
apps/erpnext/erpnext/accounts/report/sales_payment_summary/sales_payment_summary.js,Show only POS,POS ብቻ አሳይ
DocType: Supplier Group,Supplier Group Name,የአቅራቢው የቡድን ስም
DocType: Driver,Driving License Categories,የመንጃ ፍቃድ ምድቦች
apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.py,Please enter Delivery Date,እባክዎ የመላኪያ ቀን ያስገቡ
DocType: Depreciation Schedule,Make Depreciation Entry,የእርጅና Entry አድርግ
DocType: Closed Document,Closed Document,የተዘጋ ሰነድ
DocType: HR Settings,Leave Settings,ቅንጅቶች ውጣ
DocType: Appraisal Template Goal,KRA,ክራ
DocType: Lead,Request Type,ጥያቄ አይነት
DocType: Purpose of Travel,Purpose of Travel,የጉዞ ዓላማ
DocType: Payroll Period,Payroll Periods,የደመወዝ ክፍያዎች
apps/erpnext/erpnext/setup/setup_wizard/data/industry_type.py,Broadcasting,ብሮድካስቲንግ
apps/erpnext/erpnext/config/retail.py,Setup mode of POS (Online / Offline),የ POS (በኦንላይን / ከመስመር ውጭ) የመጫኛ ሞድ
DocType: Manufacturing Settings,Disables creation of time logs against Work Orders. Operations shall not be tracked against Work Order,ከስራ ስራዎች ጋር የጊዜ ሪፖርቶች መፍጠርን ያሰናክላል. በስራ ቅደም ተከተል ላይ ክዋኔዎች ክትትል አይደረግባቸውም
apps/erpnext/erpnext/setup/setup_wizard/operations/install_fixtures.py,Execution,ማስፈጸም
apps/erpnext/erpnext/config/manufacturing.py,Details of the operations carried out.,ስለ ስራዎች ዝርዝሮች ፈጽሟል.
DocType: Asset Maintenance Log,Maintenance Status,ጥገና ሁኔታ
DocType: Purchase Invoice Item,Item Tax Amount Included in Value,የእሴት ግብር መጠን በእሴት ውስጥ ተካትቷል።
apps/erpnext/erpnext/non_profit/doctype/member/member_dashboard.py,Membership Details,የአባልነት ዝርዝሮች
apps/erpnext/erpnext/accounts/doctype/gl_entry/gl_entry.py,{0} {1}: Supplier is required against Payable account {2},{0} {1}: አቅራቢው ተከፋይ ሂሳብ ላይ ያስፈልጋል {2}
apps/erpnext/erpnext/config/buying.py,Items and Pricing,ንጥሎች እና የዋጋ አሰጣጥ
apps/erpnext/erpnext/projects/doctype/project/project_dashboard.html,Total hours: {0},ጠቅላላ ሰዓት: {0}
apps/erpnext/erpnext/accounts/report/trial_balance/trial_balance.py,From Date should be within the Fiscal Year. Assuming From Date = {0},ቀን ጀምሮ በ የበጀት ዓመት ውስጥ መሆን አለበት. ቀን ጀምሮ ከወሰድን = {0}
DocType: Patient Medical Record,HLC-PMR-.YYYY.-,HLC-PMR-yYYYY.-
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,ሁሉም ሌሎች የአይ.ሲ.ቲ.
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,የ Shift ጥያቄ
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',«ጊዜ Log" በኩል Updated
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,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,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,Amazon ን ከ 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,POS የደንበኛ ቡድን
DocType: Healthcare Practitioner,Practitioner Schedules,የልምድ መርሐ ግብሮች
DocType: Cheque Print Template,Line spacing for amount in words,ቃላት ውስጥ መጠን ለማግኘት የመስመር ክፍተት
DocType: Vehicle,Additional Details,ተጨማሪ ዝርዝሮች
apps/erpnext/erpnext/templates/generators/bom.html,No description given,የተሰጠው መግለጫ የለም
apps/erpnext/erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.js,Fetch Items from Warehouse,ከመጋዘን ቤት ዕቃዎች
apps/erpnext/erpnext/config/buying.py,Request for purchase.,ግዢ ይጠይቁ.
DocType: POS Closing Voucher Details,Collected Amount,የተከማቹ መጠን
DocType: Lab Test,Submitted Date,የተረከበት ቀን
apps/erpnext/erpnext/stock/doctype/material_request/material_request.js,Company field is required,የኩባንያው መስክ ያስፈልጋል።
apps/erpnext/erpnext/projects/doctype/project/project_dashboard.py,This is based on the Time Sheets created against this project,ይሄ በዚህ ፕሮጀክት ላይ የተፈጠረውን ጊዜ ሉሆች ላይ የተመሠረተ ነው
DocType: Call Log,Recording URL,URL መቅዳት።
apps/erpnext/erpnext/crm/doctype/email_campaign/email_campaign.py,Start Date cannot be before the current date,የመጀመሪያ ቀን ከአሁኑ ቀን በፊት መሆን አይችልም።
,Open Work Orders,የሥራ ትዕዛዞችን ይክፈቱ
DocType: Healthcare Practitioner,Out Patient Consulting Charge Item,የታካሚ የሕክምና አማካሪ ክፍያ ይጠይቃል
DocType: Payment Term,Credit Months,የብድር ቀናቶች
apps/erpnext/erpnext/hr/doctype/salary_slip/salary_slip.py,Net Pay cannot be less than 0,የተጣራ ክፍያ ከ 0 መሆን አይችልም
DocType: Contract,Fulfilled,ተጠናቅቋል
DocType: Inpatient Record,Discharge Scheduled,የኃይል መውጫ መርሃግብር ተይዞለታል
apps/erpnext/erpnext/hr/doctype/employee/employee.py,Relieving Date must be greater than Date of Joining,ቀን የሚያስታግሱ በመቀላቀል ቀን የበለጠ መሆን አለበት
DocType: POS Closing Voucher,Cashier,አካውንታንት
apps/erpnext/erpnext/setup/setup_wizard/operations/install_fixtures.py,Leaves per Year,ዓመት በአንድ ማምለኩን
apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py,Row {0}: Please check 'Is Advance' against Account {1} if this is an advance entry.,ረድፍ {0}: ያረጋግጡ መለያ ላይ 'Advance ነው' {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,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)","ራስ-ሰር መርጦ መመርመር ከተመረጠ, ደንበኞቹ ከሚመለከታቸው የ "ታማኝ ፌዴሬሽን" (ተቆጥረው) ጋር በቀጥታ ይገናኛሉ."
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 Variance Report
apps/erpnext/erpnext/config/selling.py,Confirmed orders from Customers.,ደንበኞች ከ ተረጋግጧል ትዕዛዞች.
DocType: Purchase Receipt Item,Rejected Quantity,ውድቅ ብዛት
apps/erpnext/erpnext/education/doctype/fees/fees.py,Payment request {0} created,የክፍያ ጥያቄ {0} ተፈጥሯል
DocType: Inpatient Record,Admitted Datetime,የተቀበሉት የቆይታ ጊዜ
DocType: Work Order,Backflush raw materials from work-in-progress warehouse,ከሥራ-በሂደት ማከማቻ መጋዘን ውስጥ ጥሬ እቃዎችን መመለስ
apps/erpnext/erpnext/stock/report/item_variant_details/item_variant_details.py,Open Orders,ክፍት ትዕዛዞች
apps/erpnext/erpnext/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,አድራሻ ኤችቲኤምኤል
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 1 ኛ ቀን, ወዘተ."
DocType: Student Group Student,Student Group Student,የተማሪ ቡድን ተማሪ
apps/erpnext/erpnext/stock/report/stock_ageing/stock_ageing.py,Latest,የቅርብ ጊዜ
DocType: Asset Maintenance Task,2 Yearly,2 ዓመታዊ
DocType: Education Settings,Education Settings,የትምህርት ቅንጅቶች
DocType: Vehicle Service,Inspection,ተቆጣጣሪነት
apps/erpnext/erpnext/regional/italy/utils.py,E-Invoicing Information Missing,የኢ-ደረሰኝ መረጃ የጠፋ
DocType: Leave Allocation,HR-LAL-.YYYY.-,ሃ-ኤችሌ-አመት-
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,ያልተከፈሉ Cheques እና ማጽዳት ተቀማጭ
DocType: Item,Synced With Hub,ማዕከል ጋር ተመሳስሏል
apps/erpnext/erpnext/regional/doctype/gstr_3b_report/gstr_3b_report.html,Inward supplies from ISD,የውስጥ አቅርቦቶች ከ ISD ፡፡
DocType: Driver,Fleet Manager,መርከቦች ሥራ አስኪያጅ
apps/erpnext/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.js,Row #{0}: {1} can not be negative for item {2},የረድፍ # {0}: {1} ንጥል አሉታዊ ሊሆን አይችልም {2}
apps/erpnext/erpnext/setup/doctype/company/company.js,Wrong Password,የተሳሳተ የይለፍ ቃል
DocType: POS Profile,Offline POS Settings,ከመስመር ውጭ POS ቅንብሮች።
DocType: Stock Entry Detail,Reference Purchase Receipt,የማጣቀሻ የግcha ደረሰኝ።
DocType: Stock Reconciliation,MAT-RECO-.YYYY.-,ማት-ሪኮ-ያዮያን .-
apps/erpnext/erpnext/templates/includes/cart/cart_items.html,Variant Of,ነው ተለዋጭ
apps/erpnext/erpnext/manufacturing/doctype/work_order/work_order.py,Completed Qty can not be greater than 'Qty to Manufacture',ይልቅ 'ብዛት ለማምረት' ተጠናቋል ብዛት የበለጠ መሆን አይችልም
apps/erpnext/erpnext/public/js/purchase_trends_filters.js,Period based On,በ ላይ የተመሠረተ ጊዜ።
DocType: Period Closing Voucher,Closing Account Head,የመለያ ኃላፊ በመዝጋት ላይ
DocType: Employee,External Work History,ውጫዊ የስራ ታሪክ
apps/erpnext/erpnext/projects/doctype/task/task.py,Circular Reference Error,ክብ ማጣቀሻ ስህተት
apps/erpnext/erpnext/education/doctype/student_report_generation_tool/student_report_generation_tool.html,Student Report Card,የተማሪ ሪፖርት ካርድ
apps/erpnext/erpnext/regional/report/eway_bill/eway_bill.py,From Pin Code,ከፒን ኮድ
apps/erpnext/erpnext/accounts/report/accounts_receivable/accounts_receivable.js,Show Sales Person,የሽያጭ ሰው ያሳዩ።
DocType: Appointment Type,Is Inpatient,ታካሚ ማለት ነው
apps/erpnext/erpnext/education/report/student_and_guardian_contact_details/student_and_guardian_contact_details.py,Guardian1 Name,Guardian1 ስም
DocType: Delivery Note,In Words (Export) will be visible once you save the Delivery Note.,የ የመላኪያ ማስታወሻ ማስቀመጥ አንዴ ቃላት (ላክ) ውስጥ የሚታይ ይሆናል.
DocType: Cheque Print Template,Distance from left edge,ግራ ጠርዝ ያለው ርቀት
apps/erpnext/erpnext/utilities/bot.py,{0} units of [{1}](#Form/Item/{1}) found in [{2}](#Form/Warehouse/{2}),{0} [{1}] ክፍሎች (# ፎርም / ንጥል / {1}) [{2}] ውስጥ ይገኛል (# ፎርም / መጋዘን / {2})
DocType: Lead,Industry,ኢንድስትሪ
DocType: BOM Item,Rate & Amount,ደረጃ እና ምን ያህል መጠን
apps/erpnext/erpnext/config/website.py,Settings for website product listing,የድር ጣቢያ ምርት ዝርዝር ቅንብሮች።
apps/erpnext/erpnext/regional/doctype/gstr_3b_report/gstr_3b_report.html,Amount of Integrated Tax,የተቀናጀ ግብር መጠን።
DocType: Stock Settings,Notify by Email on creation of automatic Material Request,ራስ-ሰር የቁስ ጥያቄ መፍጠር ላይ በኢሜይል አሳውቅ
DocType: Accounting Dimension,Dimension Name,የልኬት ስም።
apps/erpnext/erpnext/healthcare/setup.py,Resistant,መቋቋም የሚችል
apps/erpnext/erpnext/hotels/doctype/hotel_room_reservation/hotel_room_reservation.py,Please set Hotel Room Rate on {},እባክዎን የሆቴል የክፍል ደረጃ በ {} ላይ ያዘጋጁ
DocType: Journal Entry,Multi Currency,ባለብዙ ምንዛሬ
DocType: Bank Statement Transaction Invoice Item,Invoice Type,የደረሰኝ አይነት
apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.py,Valid from date must be less than valid upto date,ከቀን ጀምሮ ተቀባይነት ያለው ከሚሰራበት ቀን ያነሰ መሆን አለበት።
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.,አንተም አፈረሰ በኋላ የክፍያ Entry ተቀይሯል. እንደገና ጎትተው እባክህ.
DocType: Program Enrollment Tool,New Student Batch,አዲስ የተማሪ ቁጥር
apps/erpnext/erpnext/accounts/doctype/item_tax_template/item_tax_template.py,{0} entered twice in Item Tax,{0} ንጥል ግብር ውስጥ ሁለት ጊዜ ገብቶ
apps/erpnext/erpnext/setup/doctype/email_digest/email_digest.py,Summary for this week and pending activities,በዚህ ሳምንት እና በመጠባበቅ ላይ ያሉ እንቅስቃሴዎች ማጠቃለያ
DocType: Student Applicant,Admitted,አምኗል
DocType: Workstation,Rent Cost,የቤት ኪራይ ወጪ
apps/erpnext/erpnext/erpnext_integrations/doctype/plaid_settings/plaid_connector.py,Plaid transactions sync error,የተዘዋወሩ ግብይቶች የማመሳሰል ስህተት።
DocType: Leave Ledger Entry,Is Expired,ጊዜው አብቅቷል
apps/erpnext/erpnext/accounts/report/asset_depreciation_ledger/asset_depreciation_ledger.py,Amount After Depreciation,መጠን መቀነስ በኋላ
apps/erpnext/erpnext/setup/doctype/email_digest/templates/default.html,Upcoming Calendar Events,መጪ የቀን መቁጠሪያ ክስተቶች
apps/erpnext/erpnext/public/js/templates/item_quick_entry.html,Variant Attributes,የተለዩ ባህርያት
apps/erpnext/erpnext/hr/report/monthly_attendance_sheet/monthly_attendance_sheet.py,Please select month and year,ወር እና ዓመት ይምረጡ
DocType: Employee,Company Email,የኩባንያ ኢሜይል
DocType: GL Entry,Debit Amount in Account Currency,መለያ ምንዛሬ ውስጥ ዴት መጠን
DocType: Supplier Scorecard,Scoring Standings,የምዝገባ ደረጃዎች
apps/erpnext/erpnext/crm/report/campaign_efficiency/campaign_efficiency.py,Order Value,የትዕዛዝ ዋጋ
DocType: Certified Consultant,Certified Consultant,የተረጋገጠ አማካሪ
apps/erpnext/erpnext/config/accounting.py,Bank/Cash transactions against party or for internal transfer,ፓርቲ ላይ ወይም የውስጥ ለማስተላለፍ ባንክ / ጥሬ ገንዘብ ግብይቶች
DocType: Shipping Rule,Valid for Countries,አገሮች የሚሰራ
apps/erpnext/erpnext/hr/doctype/training_event/training_event.py,End time cannot be before start time,የመጨረሻ ጊዜ ከመጀመሪያ ጊዜ በፊት መሆን አይችልም።
apps/erpnext/erpnext/templates/generators/item/item_configure.js,1 exact match.,1 ትክክለኛ ተዛማጅ።
apps/erpnext/erpnext/stock/doctype/item/item.js,This Item is a Template and cannot be used in transactions. Item attributes will be copied over into the variants unless 'No Copy' is set,ይህ ንጥል አብነት ነው ግብይቶች ላይ ሊውል አይችልም. 'ምንም ቅዳ »ከተዋቀረ በስተቀር ንጥል ባህሪዎች ልዩነቶች ወደ ላይ ይገለበጣሉ
DocType: Grant Application,Grant Application,ትግበራ ፍቀድ
apps/erpnext/erpnext/selling/report/inactive_customers/inactive_customers.py,Total Order Considered,እንደሆነ የመሠከሩለት ጠቅላላ ትዕዛዝ
DocType: Certification Application,Not Certified,ዕውቅና አልተሰጠውም
DocType: Asset Value Adjustment,New Asset Value,አዲስ የንብረት እሴት
DocType: Sales Invoice,Rate at which Customer Currency is converted to customer's base currency,የደንበኛ ምንዛሬ ደንበኛ መሰረታዊ ምንዛሬ በመለወጥ ነው በ ተመን
DocType: Course Scheduling Tool,Course Scheduling Tool,የኮርስ ዕቅድ መሣሪያ
apps/erpnext/erpnext/controllers/accounts_controller.py,Row #{0}: Purchase Invoice cannot be made against an existing asset {1},የረድፍ # {0}: የግዢ ደረሰኝ አንድ ነባር ንብረት ላይ ማድረግ አይቻልም {1}
DocType: Crop Cycle,LInked Analysis,LInked Analysis
DocType: POS Closing Voucher,POS Closing Voucher,POS የመዘጋጃ ቫውቸር
apps/erpnext/erpnext/support/doctype/issue_priority/issue_priority.py,Issue Priority Already Exists,የችግሩ ቅድሚያ ቀድሞውኑ አለ።
DocType: Invoice Discounting,Loan Start Date,የብድር የመጀመሪያ ቀን።
DocType: Contract,Lapsed,ተወስዷል
DocType: Item Tax Template Detail,Tax Rate,የግብር ተመን
apps/erpnext/erpnext/education/doctype/course_activity/course_activity.py,Course Enrollment {0} does not exists,የኮርስ ምዝገባ {0} የለም።
apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py,Application period cannot be across two allocation records,የመመዝገቢያ ጊዜ በሁለት የምደባ መዛግብት ውስጥ ሊገኝ አይችልም
apps/erpnext/erpnext/hr/doctype/leave_allocation/leave_allocation.py,{0} already allocated for Employee {1} for period {2} to {3},{0} አስቀድሞ የሰራተኛ የተመደበው {1} ወደ ጊዜ {2} ለ {3}
DocType: Buying Settings,Backflush Raw Materials of Subcontract Based On,የቢሮ ውጣ ውረጅ ቁሳቁስ
apps/erpnext/erpnext/stock/doctype/purchase_receipt/purchase_receipt.py,Purchase Invoice {0} is already submitted,የደረሰኝ {0} አስቀድሞ ገብቷል ነው ይግዙ
apps/erpnext/erpnext/controllers/sales_and_purchase_return.py,Row # {0}: Batch No must be same as {1} {2},የረድፍ # {0}: የጅምላ ምንም እንደ አንድ አይነት መሆን አለበት {1} {2}
DocType: Material Request Plan Item,Material Request Plan Item,የቁሳዊ እሴት ጥያቄ እቅድ
DocType: Leave Type,Allow Encashment,ማስመጣትን ፍቀድ
apps/erpnext/erpnext/accounts/doctype/cost_center/cost_center.js,Convert to non-Group,ያልሆኑ ቡድን መቀየር
DocType: Exotel Settings,Account SID,መለያ SID።
DocType: Bank Statement Transaction Invoice Item,Invoice Date,የደረሰኝ ቀን
DocType: GL Entry,Debit Amount,ዴት መጠን
apps/erpnext/erpnext/accounts/party.py,There can only be 1 Account per Company in {0} {1},ብቻ በ ኩባንያ በአንድ 1 መለያ ሊኖር ይችላል {0} {1}
DocType: Support Search Source,Response Result Key Path,የምላሽ ውጤት ጎን ቁልፍ
DocType: Journal Entry,Inter Company Journal Entry,ኢንተርናሽናል ኩባንያ የጆርናል ምዝገባ
apps/erpnext/erpnext/accounts/party.py,Due Date cannot be before Posting / Supplier Invoice Date,ተጫራቾች የሚጫረቱበት ቀን ከመለጠፍ / ከአቅርቦት መጠየቂያ ደረሰኝ ቀን በፊት መሆን አይችልም ፡፡
apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py,For quantity {0} should not be grater than work order quantity {1},ለጨውቁ {0} ከስራ የስራ ሂደት ብዛት አንጻር {1} መሆን የለበትም
DocType: Employee Training,Employee Training,የሰራተኛ ስልጠና።
DocType: Quotation Item,Additional Notes,ተጨማሪ ማስታወሻዎች
DocType: Purchase Order,% Received,% ደርሷል
apps/erpnext/erpnext/education/doctype/student_group_creation_tool/student_group_creation_tool.js,Create Student Groups,የተማሪ ቡድኖች ይፍጠሩ
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-yYYYY.-
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,የምንዛሬ 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,Consumable ወጪ
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,አካባቢ 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 Company Transactions ጋር መጣጣም ይኖርባቸዋል.
apps/erpnext/erpnext/accounts/doctype/cost_center/cost_center.js,Please enter company name first,የመጀመሪያ የኩባንያ ስም ያስገቡ
DocType: Travel Itinerary,Non-Vegetarian,ቬጅ ያልሆነ
DocType: Purchase Invoice,Supplier Name,አቅራቢው ስም
apps/erpnext/erpnext/setup/page/welcome_to_erpnext/welcome_to_erpnext.html,Read the ERPNext Manual,የ ERPNext መመሪያ ያንብቡ
DocType: HR Settings,Show Leaves Of All Department Members In Calendar,በቀን መቁጠሪያ ውስጥ የሁሉም የመጓጓዣ አባላት ቅጠሎች ያሳዩ
DocType: Purchase Invoice,01-Sales Return,01-የሽያጭ ምላሽ
apps/erpnext/erpnext/manufacturing/report/bom_stock_report/bom_stock_report.py,Qty per BOM Line,ጫን በ BOM መስመር።
apps/erpnext/erpnext/accounts/doctype/purchase_invoice/purchase_invoice_list.js,Temporarily on Hold,ለጊዜው ይጠብቁ
DocType: Account,Is Group,; ይህ ቡድን
apps/erpnext/erpnext/stock/doctype/delivery_note/delivery_note.py,Credit Note {0} has been created automatically,የብድር ማስታወሻ {0} በራስ ሰር ተፈጥሯል
apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js,Request for Raw Materials,ጥሬ ዕቃዎች ጥያቄ
DocType: Stock Settings,Automatically Set Serial Nos based on FIFO,በራስ-ሰር FIFO ላይ የተመሠረተ ቁጥሮች መለያ አዘጋጅ
DocType: Accounts Settings,Check Supplier Invoice Number Uniqueness,ማጣሪያ አቅራቢው የደረሰኝ ቁጥር ልዩ
apps/erpnext/erpnext/public/js/utils/customer_quick_entry.js,Primary Address Details,ዋና አድራሻዎች ዝርዝሮች
apps/erpnext/erpnext/erpnext_integrations/doctype/plaid_settings/plaid_connector.py,Public token is missing for this bank,ለዚህ ባንክ ይፋዊ ምልክት የለም
DocType: Vehicle Service,Oil Change,የነዳጅ ለውጥ
DocType: Leave Encashment,Leave Balance,ከብልቲን ውጣ
DocType: Asset Maintenance Log,Asset Maintenance Log,የንብረት ጥገና ማስታወሻ
apps/erpnext/erpnext/stock/doctype/packing_slip/packing_slip.js,'To Case No.' cannot be less than 'From Case No.','ወደ የጉዳይ ቁጥር' 'የጉዳይ ቁጥር ከ' ያነሰ መሆን አይችልም
DocType: Certification Application,Non Profit,ትርፍ
DocType: Production Plan,Not Started,የተጀመረ አይደለም
DocType: Lead,Channel Partner,የሰርጥ ባልደረባ
DocType: Account,Old Parent,የድሮ ወላጅ
apps/erpnext/erpnext/education/doctype/program_enrollment_tool/program_enrollment_tool.py,Mandatory field - Academic Year,አስገዳጅ መስክ - የትምህርት ዓመት
apps/erpnext/erpnext/accounts/doctype/payment_entry/payment_entry.py,{0} {1} is not associated with {2} {3},{0} {1} ከ {2} {3} ጋር አልተያያዘም
DocType: Opportunity,Converted By,የተቀየረው በ
apps/erpnext/erpnext/public/js/hub/components/ReviewArea.vue,You need to login as a Marketplace User before you can add any reviews.,ማንኛውንም ግምገማዎች ማከል ከመቻልዎ በፊት እንደ የገቢያ ቦታ ተጠቃሚ መግባት ያስፈልግዎታል።
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,Frozen እስከሁለት መለያዎች
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} ላይ {1} እንዲውል አመልቷል:
DocType: Inpatient Record,AB Positive,AB አዎንታዊ ነው
DocType: Job Opening,Description of a Job Opening,የክፍት ሥራው ዝርዝር
apps/erpnext/erpnext/setup/doctype/email_digest/email_digest.py,Pending activities for today,በዛሬው ጊዜ በመጠባበቅ ላይ እንቅስቃሴዎች
DocType: Salary Structure,Salary Component for timesheet based payroll.,timesheet የተመሠረተ ለደምዎዝ ደመወዝ ክፍለ አካል.
DocType: Driver,Applicable for external driver,ለውጫዊ አሽከርካሪ የሚመለከተው
DocType: Sales Order Item,Used for Production Plan,የምርት ዕቅድ ላይ ውሏል
DocType: BOM,Total Cost (Company Currency),ጠቅላላ ወጪ (የኩባንያ ምንዛሬ)
DocType: Loan,Total Payment,ጠቅላላ ክፍያ
apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py,Cannot cancel transaction for Completed Work Order.,ለ Completed Work Order ግብይት መሰረዝ አይችሉም.
DocType: Manufacturing Settings,Time Between Operations (in mins),(ደቂቃዎች ውስጥ) ክወናዎች መካከል ሰዓት
apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.py,PO already created for all sales order items,ፖስታው ቀድሞውኑ ለሁሉም የሽያጭ ነገዶች እቃዎች ተፈጥሯል
DocType: Healthcare Service Unit,Occupied,ተይዟል
DocType: Clinical Procedure,Consumables,ዕቃዎች
apps/erpnext/erpnext/accounts/report/balance_sheet/balance_sheet.js,Include Default Book Entries,ነባሪ የመጽሐፍ ግቤቶችን አካትት።
apps/erpnext/erpnext/stock/doctype/material_request/material_request.py,{0} {1} is cancelled so the action cannot be completed,"{0} {1} እርምጃ ሊጠናቀቅ አልቻለም, ስለዚህ ተሰርዟል"
apps/erpnext/erpnext/manufacturing/doctype/production_plan/production_plan.js,"Planned Qty: Quantity, for which, Work Order has been raised, but is pending to be manufactured.",የታቀዱ ጫፎች ብዛት ፣ ለየትኛው ፣ የሥራ ትእዛዝ ተነስቷል ፣ ግን ለማምረት በመጠባበቅ ላይ ነው።
DocType: Customer,Buyer of Goods and Services.,ዕቃዎችና አገልግሎቶች የገዢ.
apps/erpnext/erpnext/hr/doctype/employee_checkin/employee_checkin.py,'employee_field_value' and 'timestamp' are required.,'ተቀጣሪ
DocType: Journal Entry,Accounts Payable,ተከፋይ መለያዎች
apps/erpnext/erpnext/accounts/doctype/payment_request/payment_request.py,The amount of {0} set in this payment request is different from the calculated amount of all payment plans: {1}. Make sure this is correct before submitting the document.,በዚህ የክፍያ ጥያቄ የተቀመጠው የ {0} መጠን ከማናቸውም የክፍያ እቅዶች ሂሳብ የተለየ ነው {1}. ሰነዱን ከማስገባትዎ በፊት ይሄ ትክክል መሆኑን ያረጋግጡ.
DocType: Patient,Allergies,አለርጂዎች
apps/erpnext/erpnext/manufacturing/doctype/bom_update_tool/bom_update_tool.py,The selected BOMs are not for the same item,የተመረጡት BOMs ተመሳሳይ ንጥል አይደሉም
apps/erpnext/erpnext/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,POS የመገለጫ ተጠቃሚ
apps/erpnext/erpnext/assets/doctype/asset/asset.py,Row {0}: Depreciation Start Date is required,ረድፍ {0}: የአበሻ ማስወገጃ ቀን ያስፈልጋል
DocType: Purchase Invoice Item,Service Start Date,የአገልግሎት የመጀመሪያ ቀን
DocType: Subscription Invoice,Subscription Invoice,የምዝገባ ደረሰኝ
apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py,Direct Income,ቀጥታ ገቢ
DocType: Patient Appointment,Date TIme,ቀን እቅድ
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py,"Can not filter based on Account, if grouped by Account","መለያ ተመድበው ከሆነ, መለያ ላይ የተመሠረተ ማጣሪያ አይቻልም"
apps/erpnext/erpnext/setup/setup_wizard/operations/install_fixtures.py,Administrative Officer,አስተዳደር ክፍል ኃላፊ
apps/erpnext/erpnext/education/doctype/student_group/student_group.py,Please select Course,ኮርስ ይምረጡ
DocType: Codification Table,Codification Table,የማጣቀሻ ሰንጠረዥ
DocType: Timesheet Detail,Hrs,ሰዓቶች
apps/erpnext/erpnext/manufacturing/page/bom_comparison_tool/bom_comparison_tool.js,Changes in {0},በ {0} ውስጥ ለውጦች
DocType: Employee Skill,Employee Skill,የሰራተኛ ችሎታ።
apps/erpnext/erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.js,Difference Account,ልዩነት መለያ
DocType: Pricing Rule,Discount on Other Item,በሌላ ንጥል ላይ ቅናሽ።
DocType: Purchase Invoice,Supplier GSTIN,አቅራቢ GSTIN
apps/erpnext/erpnext/regional/doctype/gstr_3b_report/gstr_3b_report.js,View Form,ቅጽ ይመልከቱ ፡፡
DocType: Work Order,Additional Operating Cost,ተጨማሪ ስርዓተ ወጪ
DocType: Lab Test Template,Lab Routine,ላብራቶሪ መደበኛ
apps/erpnext/erpnext/setup/setup_wizard/data/industry_type.py,Cosmetics,መዋቢያዎች
apps/erpnext/erpnext/assets/doctype/asset_maintenance_log/asset_maintenance_log.py,Please select Completion Date for Completed Asset Maintenance Log,እባክዎን ለተጠናቀቀው የንብረት ጥገና ምዝግብ ማስታወሻ ቀነ-ገደብ ይምረጡ
apps/erpnext/erpnext/stock/doctype/material_request/material_request.py,{0} is not the default supplier for any items.,{0} ለማንኛውም ዕቃዎች ነባሪው አቅራቢ አይደለም።
apps/erpnext/erpnext/stock/doctype/item/item.py,"To merge, following properties must be same for both items","ማዋሃድ, የሚከተሉትን ንብረቶች ሁለቱም ንጥሎች ጋር ተመሳሳይ መሆን አለበት"
DocType: Supplier,Block Supplier,አቅራቢን አግድ
DocType: Shipping Rule,Net Weight,የተጣራ ክብደት
DocType: Job Opening,Planned number of Positions,የወቅቱ እጩዎች ቁጥር
DocType: Employee,Emergency Phone,የአደጋ ጊዜ ስልክ
apps/erpnext/erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py,{0} {1} does not exist.,{0} {1} የለም.
apps/erpnext/erpnext/stock/doctype/item/item_dashboard.py,Buy,ግዛ
,Serial No Warranty Expiry,ተከታታይ ምንም የዋስትና የሚቃጠልበት
DocType: Sales Invoice,Offline POS Name,ከመስመር ውጭ POS ስም
DocType: Task,Dependencies,ጥገኛ።
apps/erpnext/erpnext/utilities/user_progress.py,Student Application,የተማሪ ማመልከቻ
DocType: Bank Statement Transaction Payment Item,Payment Reference,የክፍያ ማጣቀሻ
DocType: Supplier,Hold Type,አይነት ይያዙ
apps/erpnext/erpnext/education/doctype/grading_scale/grading_scale.py,Please define grade for Threshold 0%,ገደብ 0% የሚሆን ክፍል ለመወሰን እባክዎ
DocType: Bank Statement Transaction Payment Item,Bank Statement Transaction Payment Item,የባንክ ማብራሪያ ክፍያ ግብይት ንጥል
DocType: Sales Order,To Deliver,ለማዳን
DocType: Purchase Invoice Item,Item,ንጥል
apps/erpnext/erpnext/healthcare/setup.py,High Sensitivity,ከፍተኛ ስበት
apps/erpnext/erpnext/config/non_profit.py,Volunteer Type information.,የፈቃደኛ አይነት መረጃ.
DocType: Cash Flow Mapping Template,Cash Flow Mapping Template,የገንዘብ ማጓጓዣ ሞዱል
DocType: Travel Request,Costing Details,የማጓጓዣ ዝርዝሮች
apps/erpnext/erpnext/selling/report/sales_partner_transaction_summary/sales_partner_transaction_summary.js,Show Return Entries,ምላሾችን አሳይ
apps/erpnext/erpnext/accounts/page/pos/pos.js,Serial no item cannot be a fraction,ተከታታይ ምንም ንጥል ክፍልፋይ ሊሆን አይችልም
DocType: Journal Entry,Difference (Dr - Cr),ልዩነት (ዶክተር - 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,ማኔጂንግ 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},Serial No {2} ከሱቅ መጋዘን ውስጥ ስላልሆነ {0} {1} መተው አይቻልም {3}
DocType: Detected Disease,Disease,በሽታ
DocType: Company,Default Deferred Expense Account,ነባሪ የተዘገዘ የወጪ ክፍያ መለያን
apps/erpnext/erpnext/config/projects.py,Define Project type.,የፕሮጀክት አይነት ይግለጹ.
DocType: Supplier Scorecard,Weighting Function,የክብደት ተግባር
DocType: Employee Tax Exemption Proof Submission,Total Actual Amount,ጠቅላላ ትክክለኛ መጠን።
DocType: Healthcare Practitioner,OP Consulting Charge,የ OP የምክር አገልግሎት ክፍያ
apps/erpnext/erpnext/utilities/user_progress.py,Setup your ,ያዘጋጁት
DocType: Student Report Generation Tool,Show Marks,ማርቆችን አሳይ
DocType: Support Settings,Get Latest Query,የቅርብ ጊዜ መጠይቆችን ያግኙ
DocType: Quotation,Rate at which Price list currency is converted to company's base currency,ፍጥነት ዋጋ ዝርዝር ምንዛሬ ላይ ኩባንያ መሰረት ከሆነው ምንዛሬ በመለወጥ ላይ ነው
apps/erpnext/erpnext/setup/doctype/company/company.py,Account {0} does not belong to company: {1},{0} መለያ ኩባንያ የእርሱ ወገን አይደለም: {1}
apps/erpnext/erpnext/setup/doctype/company/company.py,Abbreviation already used for another company,በምህፃረ ቃል አስቀድሞ ለሌላ ኩባንያ ጥቅም ላይ
DocType: Selling Settings,Default Customer Group,ነባሪ የደንበኛ ቡድን
apps/erpnext/erpnext/accounts/report/accounts_receivable/accounts_receivable.js,Payment Tems,የክፍያ ጊዜዎች
DocType: Employee,IFSC Code,የ IFSC ኮድ
DocType: Global Defaults,"If disable, 'Rounded Total' field will not be visible in any transaction","አቦዝን ከሆነ, «ክብ ጠቅላላ 'መስክ በማንኛውም ግብይት ውስጥ የሚታይ አይሆንም"
DocType: BOM,Operating Cost,የክወና ወጪ
DocType: Crop,Produced Items,የተመረቱ ዕቃዎች
DocType: Bank Statement Transaction Entry,Match Transaction to Invoices,የግንኙነት ጥያቄ ወደ ክፍያ መጠየቂያዎች
apps/erpnext/erpnext/erpnext_integrations/exotel_integration.py,Error in Exotel incoming call,በ Exotel ገቢ ጥሪ ውስጥ ስህተት።
DocType: Sales Order Item,Gross Profit,አጠቃላይ ትርፍ
apps/erpnext/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.js,Unblock Invoice,ደረሰኝን አታግድ
apps/erpnext/erpnext/stock/doctype/item_attribute/item_attribute.py,Increment cannot be 0,ጭማሬ 0 መሆን አይችልም
DocType: Company,Delete Company Transactions,ኩባንያ ግብይቶች ሰርዝ
DocType: Production Plan Item,Quantity and Description,ብዛት እና መግለጫ።
apps/erpnext/erpnext/accounts/doctype/payment_entry/payment_entry.py,Reference No and Reference Date is mandatory for Bank transaction,ማጣቀሻ የለም እና የማጣቀሻ ቀን ባንክ ግብይት ግዴታ ነው
DocType: Purchase Receipt,Add / Edit Taxes and Charges,/ አርትዕ ግብሮች እና ክፍያዎች ያክሉ
DocType: Payment Entry Reference,Supplier Invoice No,አቅራቢ ደረሰኝ የለም
DocType: Territory,For reference,ለማጣቀሻ
DocType: Healthcare Settings,Appointment Confirmation,የቀጠሮ ማረጋገጫ
DocType: Inpatient Record,HLC-INP-.YYYY.-,HLC-INP-yYYYY.-
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),የመመዝገቢያ ጊዜ (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,ጠቅላላ ድግምግሞሽ / ሂሳብ መጠን ልክ እንደ ተገናኝ የጆርናል ምዝገባ ጋር ተመሳሳይ መሆን አለበት