-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathko.csv
We can't make this file beautiful and searchable because it's too large.
8203 lines (8180 loc) · 814 KB
/
ko.csv
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
DocType: Accounting Period,Period Name,기간 이름
DocType: Employee,Salary Mode,급여 모드
apps/erpnext/erpnext/public/js/hub/marketplace.js,Register,레지스터
apps/erpnext/erpnext/stock/doctype/material_request/material_request_list.js,Partially Received,부분적으로 수령 한
DocType: Patient,Divorced,이혼
DocType: Support Settings,Post Route Key,경로 키 게시
DocType: Buying Settings,Allow Item to be added multiple times in a transaction,항목은 트랜잭션에 여러 번 추가 할 수
DocType: Content Question,Content Question,내용 질문
apps/erpnext/erpnext/support/doctype/warranty_claim/warranty_claim.py,Cancel Material Visit {0} before cancelling this Warranty Claim,재 방문 {0}이 보증 청구를 취소하기 전에 취소
DocType: Customer Feedback Table,Qualitative Feedback,정 성적 피드백
apps/erpnext/erpnext/config/education.py,Assessment Reports,평가 보고서
DocType: Invoice Discounting,Accounts Receivable Discounted Account,미수금 할인 계정
apps/erpnext/erpnext/accounts/doctype/invoice_discounting/invoice_discounting_list.js,Canceled,취소 된
apps/erpnext/erpnext/setup/setup_wizard/data/industry_type.py,Consumer Products,소비자 제품
DocType: Supplier Scorecard,Notify Supplier,공급자에게 알린다.
apps/erpnext/erpnext/accounts/report/payment_period_based_on_invoice_date/payment_period_based_on_invoice_date.js,Please select Party Type first,첫 번째 파티 유형을 선택하십시오
DocType: Item,Customer Items,고객 항목
apps/erpnext/erpnext/accounts/report/balance_sheet/balance_sheet.py,Liabilities,부채
DocType: Project,Costing and Billing,원가 계산 및 결제
apps/erpnext/erpnext/hr/doctype/employee_advance/employee_advance.py,Advance account currency should be same as company currency {0},선금 계정 통화는 회사 통화 {0}과 같아야합니다.
DocType: QuickBooks Migrator,Token Endpoint,토큰 엔드 포인트
apps/erpnext/erpnext/accounts/doctype/account/account.py,Account {0}: Parent account {1} can not be a ledger,계정 {0} : 부모 계정은 {1} 원장이 될 수 없습니다
DocType: Item,Publish Item to hub.erpnext.com,hub.erpnext.com에 항목을 게시
apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py,Cannot find active Leave Period,활성 휴가 기간을 찾을 수 없습니다.
apps/erpnext/erpnext/hr/doctype/employee/employee_dashboard.py,Evaluation,평가
DocType: Item,Default Unit of Measure,측정의 기본 단위
DocType: SMS Center,All Sales Partner Contact,모든 판매 파트너 문의
DocType: Department,Leave Approvers,승인자를 남겨
DocType: Employee,Bio / Cover Letter,바이오 / 커버 레터
apps/erpnext/erpnext/public/js/hub/pages/Publish.vue,Search Items ...,아이템 검색 ...
DocType: Patient Encounter,Investigations,수사
DocType: Restaurant Order Entry,Click Enter To Add,추가하려면 Enter를 클릭하십시오.
apps/erpnext/erpnext/erpnext_integrations/doctype/shopify_settings/shopify_settings.py,"Missing value for Password, API Key or Shopify URL","비밀번호, API 키 또는 Shopify URL 값 누락"
DocType: Employee,Rented,대여
apps/erpnext/erpnext/accounts/doctype/chart_of_accounts_importer/chart_of_accounts_importer.js,All Accounts,모든 계정
apps/erpnext/erpnext/hr/doctype/employee_transfer/employee_transfer.py,Cannot transfer Employee with status Left,상태가 왼쪽 인 직원을 이전 할 수 없습니다.
DocType: Vehicle Service,Mileage,사용량
apps/erpnext/erpnext/assets/doctype/asset/asset.js,Do you really want to scrap this asset?,당신은 정말이 자산을 스크랩 하시겠습니까?
DocType: Drug Prescription,Update Schedule,일정 업데이트
apps/erpnext/erpnext/buying/report/quoted_item_comparison/quoted_item_comparison.js,Select Default Supplier,선택 기본 공급 업체
apps/erpnext/erpnext/hr/doctype/job_offer/job_offer.js,Show Employee,직원 표시
DocType: Payroll Period,Standard Tax Exemption Amount,표준세 면제 액
DocType: Exchange Rate Revaluation Account,New Exchange Rate,새로운 환율
apps/erpnext/erpnext/shopping_cart/doctype/shopping_cart_settings/shopping_cart_settings.py,Currency is required for Price List {0},환율은 가격 목록에 필요한 {0}
DocType: Sales Taxes and Charges Template,* Will be calculated in the transaction.,* 트랜잭션에서 계산됩니다.
DocType: Delivery Trip,MAT-DT-.YYYY.-,MAT-DT- .YYYY.-
DocType: Purchase Order,Customer Contact,고객 연락처
DocType: Shift Type,Enable Auto Attendance,자동 출석 사용
apps/erpnext/erpnext/stock/doctype/quick_stock_balance/quick_stock_balance.js,Please enter Warehouse and Date,창고 및 날짜를 입력하십시오
DocType: Lost Reason Detail,Opportunity Lost Reason,기회 손실 원인
DocType: Patient Appointment,Check availability,이용 가능 여부 확인
DocType: Retention Bonus,Bonus Payment Date,보너스 지급일
DocType: Employee,Job Applicant,구직자
DocType: Job Card,Total Time in Mins,분당 총 시간
apps/erpnext/erpnext/buying/doctype/supplier/supplier_dashboard.py,This is based on transactions against this Supplier. See timeline below for details,이이 공급 업체에 대한 거래를 기반으로합니다. 자세한 내용은 아래 일정을 참조하십시오
DocType: Manufacturing Settings,Overproduction Percentage For Work Order,작업 주문에 대한 과잉 생산 백분율
DocType: Landed Cost Voucher,MAT-LCV-.YYYY.-,MAT-LCV- .YYYY.-
apps/erpnext/erpnext/setup/setup_wizard/operations/install_fixtures.py,Legal,법률
DocType: Sales Invoice,Transport Receipt Date,운송 영수증 날짜
DocType: Shopify Settings,Sales Order Series,판매 주문 시리즈
DocType: Vital Signs,Tongue,혀
apps/erpnext/erpnext/accounts/doctype/payment_entry/payment_entry.js,Actual type tax cannot be included in Item rate in row {0},실제의 형태 세금은 행의 항목 요금에 포함 할 수없는 {0}
DocType: Allowed To Transact With,Allowed To Transact With,함께 처리 할 수있는 권한
DocType: Bank Guarantee,Customer,고객
DocType: Purchase Receipt Item,Required By,에 의해 필요한
DocType: Delivery Note,Return Against Delivery Note,납품서에 대해 반환
DocType: Asset Category,Finance Book Detail,금융 도서 세부 사항
apps/erpnext/erpnext/assets/doctype/asset/asset.py,All the depreciations has been booked,모든 감가 상각이 예약되었습니다
DocType: Purchase Order,% Billed,% 청구
apps/erpnext/erpnext/hr/report/bank_remittance/bank_remittance.py,Payroll Number,급여 번호
apps/erpnext/erpnext/controllers/sales_and_purchase_return.py,Exchange Rate must be same as {0} {1} ({2}),환율은 동일해야합니다 {0} {1} ({2})
DocType: Employee Tax Exemption Declaration,HRA Exemption,HRA 면제
DocType: Sales Invoice,Customer Name,고객 이름
DocType: Vehicle,Natural Gas,천연 가스
DocType: Project,Message will sent to users to get their status on the project,프로젝트에 대한 상태를 알리는 메시지가 사용자에게 전송됩니다.
apps/erpnext/erpnext/setup/setup_wizard/operations/install_fixtures.py,Bank account cannot be named as {0},은행 계정으로 명명 할 수없는 {0}
DocType: Employee Tax Exemption Declaration,HRA as per Salary Structure,연봉 구조 당 HRA
DocType: Account,Heads (or groups) against which Accounting Entries are made and balances are maintained.,머리 (또는 그룹)에있는 회계 항목은 만들어와 균형이 유지된다.
apps/erpnext/erpnext/accounts/doctype/gl_entry/gl_entry.py,Outstanding for {0} cannot be less than zero ({1}),뛰어난 {0}보다 작을 수 없습니다에 대한 ({1})
apps/erpnext/erpnext/public/js/controllers/transaction.js,Service Stop Date cannot be before Service Start Date,서비스 시작 날짜는 서비스 시작 날짜 이전 일 수 없습니다.
DocType: Manufacturing Settings,Default 10 mins,10 분을 기본
DocType: Leave Type,Leave Type Name,유형 이름을 남겨주세요
apps/erpnext/erpnext/templates/pages/projects.js,Show open,오픈보기
apps/erpnext/erpnext/setup/doctype/naming_series/naming_series.py,Series Updated Successfully,시리즈가 업데이트
apps/erpnext/erpnext/templates/includes/cart/cart_dropdown.html,Checkout,점검
apps/erpnext/erpnext/controllers/accounts_controller.py,{0} in row {1},{1} 행의 {0}
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},하위 회사 {1}에 계정 {0}이 (가) 추가되었습니다.
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-.YYYY.-
apps/erpnext/erpnext/hr/report/monthly_attendance_sheet/monthly_attendance_sheet.py,Total Late Entries,총 늦은 항목
DocType: Mode of Payment Account,Mode of Payment Account,지불 계정의 모드
apps/erpnext/erpnext/config/healthcare.py,Consultation,상의
DocType: Accounts Settings,Show Payment Schedule in Print,인쇄시 지불 일정 표시
apps/erpnext/erpnext/stock/doctype/item/item.py,Item Variants updated,아이템 변형이 업데이트되었습니다.
apps/erpnext/erpnext/accounts/report/sales_payment_summary/sales_payment_summary.py,Sales and Returns,판매 및 반품
apps/erpnext/erpnext/stock/doctype/item/item.js,Show Variants,쇼 변형
DocType: Academic Term,Academic Term,학술 용어
DocType: Employee Tax Exemption Sub Category,Employee Tax Exemption Sub Category,종업원 면제 하위 카테고리
apps/erpnext/erpnext/regional/italy/utils.py,Please set an Address on the Company '%s',회사 '% s'에 주소를 설정하십시오.
apps/erpnext/erpnext/projects/doctype/project/project_dashboard.py,Material,자료
apps/erpnext/erpnext/hr/doctype/employee_benefit_claim/employee_benefit_claim.py,"Maximum benefit of employee {0} exceeds {1} by the sum {2} of benefit application pro-rata component\
amount and previous claimed amount",직원 {0}의 최대 이익이 혜택 신청 비례 성분의 금액 {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,Google Maps Direction API를 사용하여 예상 도착 시간 계산
apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py,Loans (Liabilities),대출 (부채)
DocType: Patient Encounter,Encounter Time,만남의 시간
DocType: Staffing Plan Detail,Total Estimated Cost,총 예상 비용
DocType: Employee Education,Year of Passing,전달의 해
DocType: Routing,Routing Name,라우팅 이름
DocType: Item,Country of Origin,원산지
DocType: Soil Texture,Soil Texture Criteria,토양 질감 기준
apps/erpnext/erpnext/templates/generators/item/item_add_to_cart.html,In Stock,재고 있음
apps/erpnext/erpnext/public/js/utils/customer_quick_entry.js,Primary Contact Details,기본 연락처 세부 정보
apps/erpnext/erpnext/setup/doctype/email_digest/templates/default.html,Open Issues,알려진 문제
DocType: Production Plan Item,Production Plan Item,생산 계획 항목
DocType: Leave Ledger Entry,Leave Ledger Entry,원장 출국
apps/erpnext/erpnext/hr/doctype/employee/employee.py,User {0} is already assigned to Employee {1},사용자 {0}이 (가) 이미 직원에 할당 된 {1}
DocType: Lab Test Groups,Add new line,새 줄 추가
apps/erpnext/erpnext/utilities/activation.py,Create Lead,리드 생성
DocType: Production Plan,Projected Qty Formula,예상 수량 공식
apps/erpnext/erpnext/setup/setup_wizard/data/industry_type.py,Health Care,건강 관리
apps/erpnext/erpnext/accounts/report/payment_period_based_on_invoice_date/payment_period_based_on_invoice_date.py,Delay in payment (Days),지급 지연 (일)
DocType: Payment Terms Template Detail,Payment Terms Template Detail,지불 조건 템플릿 세부 정보
DocType: Hotel Room Reservation,Guest Name,손님 이름
DocType: Delivery Note,Issue Credit Note,신용 기록 발행
DocType: Lab Prescription,Lab Prescription,실험실 처방전
,Delay Days,지연 일
apps/erpnext/erpnext/hr/report/vehicle_expenses/vehicle_expenses.py,Service Expense,서비스 비용
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py,Serial Number: {0} is already referenced in Sales Invoice: {1},일련 번호 : {0}은 (는) 판매 송장에서 이미 참조되었습니다. {1}
DocType: Bank Statement Transaction Invoice Item,Invoice,송장
DocType: Employee Tax Exemption Declaration Category,Maximum Exempted Amount,최대 면제 금액
DocType: Purchase Invoice Item,Item Weight Details,품목 무게 세부 사항
DocType: Asset Maintenance Log,Periodicity,주기성
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 사용자 ID
DocType: Crop Cycle,The minimum distance between rows of plants for optimum growth,최적 성장을위한 식물의 줄 사이의 최소 거리
apps/erpnext/erpnext/healthcare/doctype/patient_appointment/patient_appointment.js,Please select Patient to get prescribed procedure,규정 된 절차를 받으려면 환자를 선택하십시오.
apps/erpnext/erpnext/setup/setup_wizard/data/industry_type.py,Defense,방어
DocType: Salary Component,Abbr,약어
DocType: Appraisal Goal,Score (0-5),점수 (0-5)
DocType: Tally Migration,Tally Creditors Account,탈리 채권자 계좌
apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py,Row {0}: {1} {2} does not match with {3},행 {0} : {1} {2}과 일치하지 않는 {3}
apps/erpnext/erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py,Row # {0}:,행 번호 {0} :
DocType: Timesheet,Total Costing Amount,총 원가 계산 금액
DocType: Sales Invoice,Vehicle No,차량 없음
apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py,Please select Price List,가격리스트를 선택하세요
DocType: Accounts Settings,Currency Exchange Settings,통화 교환 설정
DocType: Work Order Operation,Work In Progress,진행중인 작업
DocType: Leave Control Panel,Branch (optional),지점 (선택 사항)
apps/erpnext/erpnext/accounts/doctype/pricing_rule/utils.py,Row {0}: user has not applied rule <b>{1}</b> on the item <b>{2}</b>,행 {0} : 사용자가 <b>{2}</b> 항목에 규칙 <b>{1}</b> 을 적용하지 않았습니다.
apps/erpnext/erpnext/education/report/absent_student_report/absent_student_report.py,Please select date,날짜를 선택하세요
DocType: Item Price,Minimum Qty ,최소 수량
DocType: Finance Book,Finance Book,금융 도서
DocType: Patient Encounter,HLC-ENC-.YYYY.-,HLC-ENC-.YYYY.-
DocType: Daily Work Summary Group,Holiday List,휴일 목록
apps/erpnext/erpnext/config/quality_management.py,Review and Action,검토 및 조치
apps/erpnext/erpnext/hr/doctype/employee_checkin/employee_checkin.py,This employee already has a log with the same timestamp.{0},이 직원은 이미 동일한 타임 스탬프가있는 로그를 가지고 있습니다. {0}
apps/erpnext/erpnext/setup/setup_wizard/operations/install_fixtures.py,Accountant,회계사
apps/erpnext/erpnext/stock/report/item_price_stock/item_price_stock.py,Selling Price List,판매 가격리스트
DocType: Patient,Tobacco Current Use,담배 현재 사용
apps/erpnext/erpnext/selling/report/customer_wise_item_price/customer_wise_item_price.py,Selling Rate,판매율
DocType: Cost Center,Stock User,재고 사용자
DocType: Soil Analysis,(Ca+Mg)/K,(Ca + Mg) / K
DocType: Delivery Stop,Contact Information,연락처 정보
apps/erpnext/erpnext/public/js/hub/pages/Search.vue,Search for anything ...,무엇이든 검색 ...
DocType: Company,Phone No,전화 번호
DocType: Delivery Trip,Initial Email Notification Sent,보낸 초기 전자 메일 알림
DocType: Bank Statement Settings,Statement Header Mapping,명령문 헤더 매핑
,Sales Partners Commission,영업 파트너위원회
DocType: Soil Texture,Sandy Clay Loam,샌디 클레이 소주
DocType: Purchase Invoice,Rounding Adjustment,반올림 조정
apps/erpnext/erpnext/setup/doctype/company/company.py,Abbreviation cannot have more than 5 characters,약어는 5 개 이상의 문자를 가질 수 없습니다
DocType: Amazon MWS Settings,AU,누구나
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",작업 입력 {1}에서 이전 항목 {0}을 찾지 못했습니다. 재고 항목에 추가되지 않은 항목입니다.
DocType: Student,O+,O의 +
apps/erpnext/erpnext/stock/doctype/material_request/material_request_dashboard.py,Related,관련
apps/erpnext/erpnext/hr/doctype/attendance/attendance.py,Attendance date can not be less than employee's joining date,출석 날짜는 직원의 입사 날짜보다 작을 수 없습니다
DocType: Grading Scale,Grading Scale Name,등급 스케일 이름
DocType: Employee Training,Training Date,교육 날짜
apps/erpnext/erpnext/public/js/hub/marketplace.js,Add Users to Marketplace,마켓 플레이스에 사용자 추가
apps/erpnext/erpnext/accounts/doctype/account/account.js,This is a root account and cannot be edited.,이 루트 계정 및 편집 할 수 없습니다.
DocType: POS Profile,Company Address,회사 주소
DocType: BOM,Operations,운영
apps/erpnext/erpnext/setup/doctype/authorization_rule/authorization_rule.py,Cannot set authorization on basis of Discount for {0},에 대한 할인의 기준으로 권한을 설정할 수 없습니다 {0}
apps/erpnext/erpnext/regional/india/utils.py,e-Way Bill JSON cannot be generated for Sales Return as of now,이 - 웨이 빌 JSON은 지금까지 판매 수익을 위해 생성 될 수 없습니다
DocType: Subscription,Subscription Start Date,구독 시작 날짜
DocType: Healthcare Settings,Default receivable accounts to be used if not set in Patient to book Appointment charges.,예약 채무를 예약하기 위해 환자에게 설정되지 않은 경우 사용할 기본 채권 계정.
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,KG
DocType: Tax Withholding Category,Tax Withholding Category,세금 원천 징수 카테고리
apps/erpnext/erpnext/assets/doctype/asset_value_adjustment/asset_value_adjustment.py,Cancel the journal entry {0} first,분개 항목 {0}을 먼저 취소하십시오.
DocType: Purchase Invoice,ACC-PINV-.YYYY.-,ACC-PINV- .YYYY.-
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py,BOM is not specified for subcontracting item {0} at row {1},BOM은 {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,공급자 원장 요약
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} : {2} 작업 주문 {3}의 완제품 수량에 대해 {1} 작업이 완료되지 않았습니다. 작업 카드 {4}를 통해 작업 상태를 업데이트하십시오.
DocType: Work Order Operation,(Hour Rate / 60) * Actual Operation Time,(시간 / 60) * 실제 작업 시간
apps/erpnext/erpnext/accounts/doctype/payment_entry/payment_entry.js,Row #{0}: Reference Document Type must be one of Expense Claim or Journal Entry,행 번호 {0} : 참조 문서 유형은 경비 청구 또는 분개 중 하나 여야합니다.
apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js,Select BOM,선택 BOM
DocType: SMS Log,SMS Log,SMS 로그
DocType: Call Log,Ringing,울리는
apps/erpnext/erpnext/projects/report/project_wise_stock_tracking/project_wise_stock_tracking.py,Cost of Delivered Items,배달 항목의 비용
apps/erpnext/erpnext/hr/doctype/holiday_list/holiday_list.py,The holiday on {0} is not between From Date and To Date,{0}의 휴가 날짜부터 현재까지 사이 아니다
DocType: Inpatient Record,Admission Scheduled,입학 예정
DocType: Student Log,Student Log,학생 로그인
apps/erpnext/erpnext/config/buying.py,Templates of supplier standings.,공급 업체 순위의 템플릿.
DocType: Lead,Interested,관심
apps/erpnext/erpnext/hr/report/employee_leave_balance/employee_leave_balance.py,Opening,열기
apps/erpnext/erpnext/education/doctype/student_report_generation_tool/student_report_generation_tool.html,Program: ,프로그램:
DocType: Item,Copy From Item Group,상품 그룹에서 복사
DocType: Journal Entry,Opening Entry,항목 열기
apps/erpnext/erpnext/accounts/doctype/cheque_print_template/cheque_print_template.js,Account Pay Only,계정 결제 만
DocType: Loan,Repay Over Number of Periods,기간의 동안 수 상환
apps/erpnext/erpnext/manufacturing/report/bom_stock_report/bom_stock_report.py,Quantity to Produce can not be less than Zero,생산량은 0보다 작을 수 없습니다.
DocType: Stock Entry,Additional Costs,추가 비용
apps/erpnext/erpnext/accounts/doctype/account/account.py,Account with existing transaction can not be converted to group.,기존 거래와 계정 그룹으로 변환 할 수 없습니다.
DocType: Lead,Product Enquiry,제품 문의
DocType: Education Settings,Validate Batch for Students in Student Group,학생 그룹의 학생들을위한 배치 확인
apps/erpnext/erpnext/hr/doctype/attendance/attendance.py,No leave record found for employee {0} for {1},직원에 대한 검색 휴가를 기록하지 {0}의 {1}
DocType: Company,Unrealized Exchange Gain/Loss Account,미처용 Exchange Gain / Loss 계정
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,칼슘 / K
DocType: Leave Type,Maximum Carry Forwarded Leaves,전달 된 최대 잎
DocType: Salary Slip,Employee Loan,직원 대출
DocType: Additional Salary,HR-ADS-.YY.-.MM.-,HR-ADS-.YY .-. MM.-
DocType: Fee Schedule,Send Payment Request Email,지불 요청 이메일 보내기
apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py,Item {0} does not exist in the system or has expired,{0} 항목을 시스템에 존재하지 않거나 만료
DocType: Supplier,Leave blank if the Supplier is blocked indefinitely,공급 업체가 무기한 차단되는 경우 비워 두십시오.
apps/erpnext/erpnext/setup/setup_wizard/data/industry_type.py,Real Estate,부동산
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.html,Statement of Account,거래명세표
apps/erpnext/erpnext/setup/setup_wizard/data/industry_type.py,Pharmaceuticals,제약
DocType: Purchase Invoice Item,Is Fixed Asset,고정 자산입니다
apps/erpnext/erpnext/accounts/report/accounts_receivable/accounts_receivable.js,Show Future Payments,향후 지불 표시
DocType: Patient,HLC-PAT-.YYYY.-,HLC-PAT- .YYYY.-
apps/erpnext/erpnext/accounts/page/bank_reconciliation/bank_reconciliation.js,This bank account is already synchronized,은행 계좌가 이미 동기화되었습니다.
DocType: Homepage,Homepage Section,홈페이지 섹션
apps/erpnext/erpnext/manufacturing/doctype/work_order/work_order.py,Work Order has been {0},작업 지시가 {0}되었습니다.
DocType: Budget,Applicable on Purchase Order,구매 주문서에 적용 가능
DocType: Item,STO-ITEM-.YYYY.-,STO-ITEM- .YYYY.-
apps/erpnext/erpnext/hr/doctype/hr_settings/hr_settings.py,Password policy for Salary Slips is not set,급여 전표 암호 정책이 설정되지 않았습니다.
apps/erpnext/erpnext/accounts/doctype/pos_profile/pos_profile.py,Duplicate customer group found in the cutomer group table,cutomer 그룹 테이블에서 발견 중복 된 고객 그룹
DocType: Location,Location Name,위치 명
DocType: Quality Procedure Table,Responsible Individual,책임있는 개인
DocType: Naming Series,Prefix,접두사
apps/erpnext/erpnext/hr/notification/training_scheduled/training_scheduled.html,Event Location,행사 위치
apps/erpnext/erpnext/selling/report/customer_wise_item_price/customer_wise_item_price.py,Available Stock,사용 가능한 재고
DocType: Asset Settings,Asset Settings,자산 설정
apps/erpnext/erpnext/setup/setup_wizard/operations/install_fixtures.py,Consumable,소모품
DocType: Student,B-,비-
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/stock/doctype/batch/batch.js,Select Target Warehouse,대상 창고 선택
apps/erpnext/erpnext/hr/doctype/employee/employee.js,Please enter Preferred Contact Email,기본 연락 이메일을 입력하세요
DocType: Purchase Invoice Item,Accepted Qty,수락 된 수량
DocType: Journal Entry,Contra Entry,콘트라 항목
DocType: Journal Entry Account,Credit in Company Currency,회사 통화 신용
DocType: Lab Test UOM,Lab Test UOM,실험실 테스트 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.",\ 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 송장이 필요합니다.
apps/erpnext/erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py,Batch no is required for batched item {0},일괄 처리 된 항목 {0}에 배치 번호가 필요합니다.
DocType: Bank Statement Transaction Invoice Item,Bank Statement Transaction Invoice Item,은행 계좌 거래 송장 품목
DocType: Salary Detail,Tax on flexible benefit,탄력적 인 혜택에 대한 세금
apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py,Item {0} is not active or end of life has been reached,{0} 항목을 활성화하지 않거나 수명이 도달했습니다
DocType: Student Admission Program,Minimum Age,최소 연령
apps/erpnext/erpnext/utilities/user_progress.py,Example: Basic Mathematics,예 : 기본 수학
DocType: Customer,Primary Address,기본 주소
apps/erpnext/erpnext/manufacturing/report/bom_stock_calculated/bom_stock_calculated.py,Diff Qty,비교 수량
DocType: Production Plan,Material Request Detail,자재 요청 세부 사항
DocType: Selling Settings,Default Quotation Validity Days,기본 견적 유효 기간
apps/erpnext/erpnext/controllers/accounts_controller.py,"To include tax in row {0} in Item rate, taxes in rows {1} must also be included","행에있는 세금을 포함하려면 {0} 항목의 요금에, 행의 세금은 {1}도 포함되어야한다"
apps/erpnext/erpnext/config/quality_management.py,Quality Procedure.,품질 절차.
DocType: SMS Center,SMS Center,SMS 센터
DocType: Payroll Entry,Validate Attendance,출석 확인
DocType: Sales Invoice,Change Amount,변화량
DocType: Party Tax Withholding Config,Certificate Received,수료증
DocType: GST Settings,Set Invoice Value for B2C. B2CL and B2CS calculated based on this invoice value.,B2C에 대한 송장 값 설정. B2CL 및 B2CS는이 송장 값을 기반으로 계산됩니다.
DocType: BOM Update Tool,New BOM,신규 BOM
apps/erpnext/erpnext/healthcare/doctype/patient_appointment/patient_appointment.js,Prescribed Procedures,처방 된 절차
apps/erpnext/erpnext/accounts/report/sales_payment_summary/sales_payment_summary.js,Show only POS,POS 만 표시
DocType: Supplier Group,Supplier Group Name,공급 업체 그룹 이름
DocType: Driver,Driving License Categories,운전 면허 카테고리
apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.py,Please enter Delivery Date,배달 날짜를 입력하십시오.
DocType: Depreciation Schedule,Make Depreciation Entry,감가 상각 항목 확인
DocType: Closed Document,Closed Document,휴관일 문서
DocType: HR Settings,Leave Settings,설정에서 나가기
DocType: Appraisal Template Goal,KRA,KRA
DocType: Lead,Request Type,요청 유형
DocType: Purpose of Travel,Purpose of Travel,여행 목적
DocType: Payroll Period,Payroll Periods,급여 기간
apps/erpnext/erpnext/setup/setup_wizard/data/industry_type.py,Broadcasting,방송
apps/erpnext/erpnext/config/retail.py,Setup mode of POS (Online / Offline),POS (온라인 / 오프라인) 설정 모드
DocType: Manufacturing Settings,Disables creation of time logs against Work Orders. Operations shall not be tracked against Work Order,작업 주문에 대한 시간 기록 생성을 비활성화합니다. 작업 지시에 따라 작업을 추적해서는 안됩니다.
apps/erpnext/erpnext/setup/setup_wizard/operations/install_fixtures.py,Execution,실행
apps/erpnext/erpnext/config/manufacturing.py,Details of the operations carried out.,작업의 세부 사항은 실시.
DocType: Asset Maintenance Log,Maintenance Status,유지 보수 상태
DocType: Purchase Invoice Item,Item Tax Amount Included in Value,값에 포함 된 품목 세금 금액
apps/erpnext/erpnext/non_profit/doctype/member/member_dashboard.py,Membership Details,회원 세부 정보
apps/erpnext/erpnext/accounts/doctype/gl_entry/gl_entry.py,{0} {1}: Supplier is required against Payable account {2},{0} {1} : 공급 업체는 채무 계정에 필요한 {2}
apps/erpnext/erpnext/config/buying.py,Items and Pricing,품목 및 가격
apps/erpnext/erpnext/projects/doctype/project/project_dashboard.html,Total hours: {0},총 시간 : {0}
apps/erpnext/erpnext/accounts/report/trial_balance/trial_balance.py,From Date should be within the Fiscal Year. Assuming From Date = {0},날짜에서 회계 연도 내에 있어야합니다.날짜 가정 = {0}
DocType: Patient Medical Record,HLC-PMR-.YYYY.-,HLC-PMR- .YYYY.-
DocType: Drug Prescription,Interval,간격
DocType: Pricing Rule,Promotional Scheme Id,프로모션 코드 ID
apps/erpnext/erpnext/setup/setup_wizard/operations/install_fixtures.py,Preference,우선권
apps/erpnext/erpnext/regional/doctype/gstr_3b_report/gstr_3b_report.html,Inward Supplies(liable to reverse charge,내부 공급품 (반납 책임이 있음)
DocType: Supplier,Individual,개교회들과 사역들은 생겼다가 사라진다.
DocType: Academic Term,Academics User,학사 사용자
DocType: Cheque Print Template,Amount In Figure,그림에서 양
DocType: Loan Application,Loan Info,대출 정보
apps/erpnext/erpnext/regional/doctype/gstr_3b_report/gstr_3b_report.html,All Other ITC,기타 모든 ITC
apps/erpnext/erpnext/config/crm.py,Plan for maintenance visits.,유지 보수 방문을 계획합니다.
DocType: Supplier Scorecard Period,Supplier Scorecard Period,공급 업체 성과 기록표 기간
DocType: Support Settings,Search APIs,검색 API
DocType: Share Transfer,Share Transfer,공유 전송
,Expiring Memberships,만료 회원
apps/erpnext/erpnext/templates/pages/home.html,Read blog,블로그 읽기
DocType: POS Profile,Customer Groups,고객 그룹
apps/erpnext/erpnext/public/js/financial_statements.js,Financial Statements,재무 제표
DocType: Guardian,Students,재학생
apps/erpnext/erpnext/config/buying.py,Rules for applying pricing and discount.,가격 및 할인을 적용하기위한 규칙.
DocType: Daily Work Summary,Daily Work Summary Group,일별 작업 요약 그룹
DocType: Practitioner Schedule,Time Slots,시간대
apps/erpnext/erpnext/stock/doctype/price_list/price_list.py,Price List must be applicable for Buying or Selling,가격리스트는 구매 또는 판매에 적용해야합니다
DocType: Shift Assignment,Shift Request,시프트 요청
apps/erpnext/erpnext/selling/doctype/installation_note/installation_note.py,Installation date cannot be before delivery date for Item {0},설치 날짜는 항목에 대한 배달 날짜 이전 할 수 없습니다 {0}
DocType: Purchase Invoice Item,Discount on Price List Rate (%),가격 목록 요금에 할인 (%)
apps/erpnext/erpnext/public/js/utils/item_quick_entry.js,Item Template,항목 템플릿
DocType: Job Offer,Select Terms and Conditions,이용 약관 선택
apps/erpnext/erpnext/stock/report/stock_balance/stock_balance.py,Out Value,제한 값
DocType: Bank Statement Settings Item,Bank Statement Settings Item,은행 계좌 명세서 설정 항목
DocType: Woocommerce Settings,Woocommerce Settings,Woocommerce 설정
DocType: Leave Ledger Entry,Transaction Name,거래 명
DocType: Production Plan,Sales Orders,판매 주문
apps/erpnext/erpnext/selling/doctype/customer/customer.py,Multiple Loyalty Program found for the Customer. Please select manually.,고객을 위해 여러 로열티 프로그램이 있습니다. 수동으로 선택하십시오.
DocType: Purchase Taxes and Charges,Valuation,평가
apps/erpnext/erpnext/selling/page/point_of_sale/point_of_sale.js,Set as Default,기본값으로 설정
apps/erpnext/erpnext/stock/doctype/batch/batch.py,Expiry date is mandatory for selected item.,선택한 항목에 대한 만료일은 필수 항목입니다.
,Purchase Order Trends,주문 동향을 구매
apps/erpnext/erpnext/utilities/user_progress.py,Go to Customers,고객 방문
DocType: Hotel Room Reservation,Late Checkin,늦은 체크인
apps/erpnext/erpnext/accounts/page/bank_reconciliation/bank_reconciliation.js,Finding linked payments,연결된 지불 찾기
apps/erpnext/erpnext/templates/emails/request_for_quotation.html,The request for quotation can be accessed by clicking on the following link,견적 요청은 다음 링크를 클릭하여 액세스 할 수 있습니다
DocType: Quiz Result,Selected Option,선택된 옵션
DocType: SG Creation Tool Course,SG Creation Tool Course,SG 생성 도구 코스
DocType: Bank Statement Transaction Invoice Item,Payment Description,지불 설명
apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py,Insufficient Stock,재고 부족
DocType: Manufacturing Settings,Disable Capacity Planning and Time Tracking,사용 안 함 용량 계획 및 시간 추적
DocType: Email Digest,New Sales Orders,새로운 판매 주문
DocType: Bank Account,Bank Account,은행 계좌
DocType: Travel Itinerary,Check-out Date,체크 아웃 날짜
DocType: Leave Type,Allow Negative Balance,음의 균형이 허용
apps/erpnext/erpnext/projects/doctype/project_type/project_type.py,You cannot delete Project Type 'External',프로젝트 유형 '외부'를 삭제할 수 없습니다.
apps/erpnext/erpnext/public/js/utils.js,Select Alternate Item,대체 항목 선택
DocType: Employee,Create User,사용자 만들기
DocType: Selling Settings,Default Territory,기본 지역
apps/erpnext/erpnext/setup/setup_wizard/data/industry_type.py,Television,텔레비전
DocType: Work Order Operation,Updated via 'Time Log','소요시간 로그'를 통해 업데이트 되었습니다.
apps/erpnext/erpnext/accounts/doctype/bank_guarantee/bank_guarantee.py,Select the customer or supplier.,고객 또는 공급 업체를 선택하십시오.
apps/erpnext/erpnext/support/doctype/service_level/service_level.py,Select only one Priority as Default.,Priority as Default를 하나만 선택하십시오.
apps/erpnext/erpnext/controllers/taxes_and_totals.py,Advance amount cannot be greater than {0} {1},사전 금액보다 클 수 없습니다 {0} {1}
apps/erpnext/erpnext/healthcare/doctype/practitioner_schedule/practitioner_schedule.js,"Time slot skiped, the slot {0} to {1} overlap exisiting slot {2} to {3}",시간 슬롯을 건너 뛰고 슬롯 {0}을 (를) {1} (으)로 이동하여 기존 슬롯 {2}을 (를) {3}
DocType: Naming Series,Series List for this Transaction,이 트랜잭션에 대한 시리즈 일람
DocType: Company,Enable Perpetual Inventory,영구 인벤토리 사용
DocType: Bank Guarantee,Charges Incurred,발생 된 요금
apps/erpnext/erpnext/public/js/education/lms/quiz.js,Something went wrong while evaluating the quiz.,퀴즈를 평가하는 동안 문제가 발생했습니다.
DocType: Company,Default Payroll Payable Account,기본 급여 지급 계정
apps/erpnext/erpnext/public/js/hub/pages/Item.vue,Edit Details,세부 정보 편집
apps/erpnext/erpnext/education/doctype/student_group/student_group.js,Update Email Group,업데이트 이메일 그룹
DocType: POS Profile,Only show Customer of these Customer Groups,이 고객 그룹의 고객에게만 표시하십시오.
DocType: Sales Invoice,Is Opening Entry,개시 항목
apps/erpnext/erpnext/public/js/conf.js,Documentation,Documentation (문서화)
DocType: Lab Test Template,"If unchecked, the item wont be appear in Sales Invoice, but can be used in group test creation. ",이 항목을 선택하지 않으면 판매 송장에 표시되지 않지만 그룹 테스트 작성시 사용할 수 있습니다.
DocType: Customer Group,Mention if non-standard receivable account applicable,표준이 아닌 채권 계정 (해당되는 경우)
DocType: Course Schedule,Instructor Name,강사 이름
DocType: Company,Arrear Component,체납 성분
apps/erpnext/erpnext/stock/doctype/pick_list/pick_list.py,Stock Entry has been already created against this Pick List,이 피킹리스트에 대해 재고 입력이 이미 생성되었습니다.
DocType: Supplier Scorecard,Criteria Setup,기준 설정
apps/erpnext/erpnext/manufacturing/doctype/work_order/work_order.py,For Warehouse is required before Submit,창고가 필요한 내용은 이전에 제출
apps/erpnext/erpnext/accounts/print_format/payment_receipt_voucher/payment_receipt_voucher.html,Received On,에 수신
DocType: Codification Table,Medical Code,의료 코드
apps/erpnext/erpnext/config/integrations.py,Connect Amazon with ERPNext,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,링크 된 Doctype
apps/erpnext/erpnext/accounts/report/cash_flow/cash_flow.py,Net Cash from Financing,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} : 확인하시기 바랍니다이 계정에 대한 '사전인가'{1}이 사전 항목 인 경우.
apps/erpnext/erpnext/stock/utils.py,Warehouse {0} does not belong to company {1},웨어 하우스는 {0}에 속하지 않는 회사 {1}
DocType: Email Digest,Profit & Loss,이익 및 손실
apps/erpnext/erpnext/utilities/user_progress.py,Litre,리터
DocType: Task,Total Costing Amount (via Time Sheet),(시간 시트를 통해) 총 원가 계산 금액
apps/erpnext/erpnext/education/doctype/fee_schedule/fee_schedule.py,Please setup Students under Student Groups,학생 그룹에 학생을 설치하십시오.
apps/erpnext/erpnext/manufacturing/doctype/job_card/job_card.js,Complete Job,작업 완료
DocType: Item Website Specification,Item Website Specification,항목 웹 사이트 사양
apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py,Leave Blocked,남겨 차단
apps/erpnext/erpnext/stock/doctype/item/item.py,Item {0} has reached its end of life on {1},항목 {0}에 수명이 다한 {1}
apps/erpnext/erpnext/hr/doctype/expense_claim/expense_claim.js,Bank Entries,은행 입장
DocType: Customer,Is Internal Customer,내부 고객
DocType: Crop,Annual,연간
apps/erpnext/erpnext/accounts/doctype/loyalty_program/loyalty_program.js,"If Auto Opt In is checked, then the customers will be automatically linked with the concerned Loyalty Program (on save)",자동 선택 기능을 선택하면 고객이 관련 로열티 프로그램과 자동으로 연결됩니다 (저장시).
DocType: Stock Reconciliation Item,Stock Reconciliation Item,재고 조정 항목
DocType: Stock Entry,Sales Invoice No,판매 송장 번호
DocType: Website Filter Field,Website Filter Field,웹 사이트 필터 입력란
apps/erpnext/erpnext/regional/report/eway_bill/eway_bill.py,Supply Type,공급 유형
DocType: Material Request Item,Min Order Qty,최소 주문 수량
DocType: Student Group Creation Tool Course,Student Group Creation Tool Course,학생 그룹 생성 도구 코스
DocType: Lead,Do Not Contact,연락하지 말라
apps/erpnext/erpnext/utilities/user_progress.py,People who teach at your organisation,조직에서 가르치는 사람들
apps/erpnext/erpnext/setup/setup_wizard/operations/install_fixtures.py,Software Developer,소프트웨어 개발자
apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.js,Create Sample Retention Stock Entry,샘플 보유 재고 항목 생성
DocType: Item,Minimum Order Qty,최소 주문 수량
DocType: Supplier,Supplier Type,공급 업체 유형
DocType: Course Scheduling Tool,Course Start Date,코스 시작 날짜
,Student Batch-Wise Attendance,학생 배치 식 참석
DocType: POS Profile,Allow user to edit Rate,사용자가 속도를 편집 할 수 있습니다
DocType: Item,Publish in Hub,허브에 게시
DocType: Student Admission,Student Admission,학생 입학
apps/erpnext/erpnext/stock/doctype/item/item.py,Item {0} is cancelled,{0} 항목 취소
apps/erpnext/erpnext/assets/doctype/asset/asset.py,Depreciation Row {0}: Depreciation Start Date is entered as past date,감가 상각 행 {0} : 감가 상각 시작일이 과거 날짜로 입력됩니다.
DocType: Contract Template,Fulfilment Terms and Conditions,이행 조건
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.js,Material Request,자료 요청
DocType: Bank Reconciliation,Update Clearance Date,업데이트 통관 날짜
apps/erpnext/erpnext/stock/report/product_bundle_balance/product_bundle_balance.py,Bundle Qty,묶음 수량
,GSTR-2,GSTR-2
apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py,Item {0} not found in 'Raw Materials Supplied' table in Purchase Order {1},구매 주문에 '원료 공급'테이블에없는 항목 {0} {1}
DocType: Salary Slip,Total Principal Amount,총 교장 금액
DocType: Student Guardian,Relation,관계
DocType: Quiz Result,Correct,옳은
DocType: Student Guardian,Mother,어머니
DocType: Restaurant Reservation,Reservation End Time,예약 종료 시간
DocType: Crop,Biennial,비엔날레
,BOM Variance Report,BOM 차이 리포트
apps/erpnext/erpnext/config/selling.py,Confirmed orders from Customers.,고객의 확정 주문.
DocType: Purchase Receipt Item,Rejected Quantity,거부 수량
apps/erpnext/erpnext/education/doctype/fees/fees.py,Payment request {0} created,지불 요청 {0}이 생성되었습니다.
DocType: Inpatient Record,Admitted Datetime,입사 한 날짜 시간
DocType: Work Order,Backflush raw materials from work-in-progress warehouse,재 진행중인 창고에서 원료를 백 플러시합니다.
apps/erpnext/erpnext/stock/report/item_variant_details/item_variant_details.py,Open Orders,미 체결 주문
apps/erpnext/erpnext/hr/doctype/employee_benefit_claim/employee_benefit_claim.py,Unable to find Salary Component {0},급여 구성 요소 {0}을 (를) 찾을 수 없습니다.
apps/erpnext/erpnext/healthcare/setup.py,Low Sensitivity,낮은 감도
apps/erpnext/erpnext/erpnext_integrations/doctype/shopify_log/shopify_log.js,Order rescheduled for sync,동기화 일정이 다시 조정되었습니다.
apps/erpnext/erpnext/templates/emails/training_event.html,Please confirm once you have completed your training,교육을 마친 후에 확인하십시오.
DocType: Lead,Suggestions,제안
DocType: Territory,Set Item Group-wise budgets on this Territory. You can also include seasonality by setting the Distribution.,이 지역에 상품 그룹 현명한 예산을 설정합니다.또한 배포를 설정하여 계절성을 포함 할 수 있습니다.
DocType: Plaid Settings,Plaid Public Key,격자 무늬 공개 키
DocType: Payment Term,Payment Term Name,지불 기간 이름
DocType: Healthcare Settings,Create documents for sample collection,샘플 수집을위한 문서 작성
apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py,Payment against {0} {1} cannot be greater than Outstanding Amount {2},에 대한 지불은 {0} {1} 뛰어난 금액보다 클 수 없습니다 {2}
apps/erpnext/erpnext/patches/v11_0/add_healthcare_service_unit_tree_root.py,All Healthcare Service Units,모든 의료 서비스 유닛
apps/erpnext/erpnext/setup/default_energy_point_rules.py,On Converting Opportunity,기회 전환에
DocType: Bank Account,Address HTML,주소 HTML
DocType: Lead,Mobile No.,모바일 번호
apps/erpnext/erpnext/selling/doctype/pos_closing_voucher/closing_voucher_details.html,Mode of Payments,지불 방식
DocType: Maintenance Schedule,Generate Schedule,일정을 생성
DocType: Purchase Invoice Item,Expense Head,비용 헤드
apps/erpnext/erpnext/accounts/doctype/payment_entry/payment_entry.js,Please select Charge Type first,충전 유형을 먼저 선택하세요
DocType: Crop,"You can define all the tasks which need to carried out for this crop here. The day field is used to mention the day on which the task needs to be carried out, 1 being the 1st day, etc.. ",이 작물에 대해 수행해야하는 모든 작업을 정의 할 수 있습니다. 하루 필드는 작업을 수행해야하는 날을 나타내는 데 사용됩니다. 1 일은 1 일입니다.
DocType: Student Group Student,Student Group Student,학생 그룹 학생
apps/erpnext/erpnext/stock/report/stock_ageing/stock_ageing.py,Latest,최근
DocType: Asset Maintenance Task,2 Yearly,2 년마다
DocType: Education Settings,Education Settings,교육 설정
DocType: Vehicle Service,Inspection,검사
apps/erpnext/erpnext/regional/italy/utils.py,E-Invoicing Information Missing,이메일 송장 정보 누락
DocType: Leave Allocation,HR-LAL-.YYYY.-,HR-LAL-.YYYY.-
DocType: Exchange Rate Revaluation Account,Balance In Base Currency,기본 통화로 잔액
DocType: Supplier Scorecard Scoring Standing,Max Grade,최대 학년
DocType: Email Digest,New Quotations,새로운 인용
apps/erpnext/erpnext/hr/doctype/attendance_request/attendance_request.py,Attendance not submitted for {0} as {1} on leave.,퇴장시 {0}에 출석이 {1}이 (가) 제출되지 않았습니다.
DocType: Journal Entry,Payment Order,지불 명령
DocType: Employee Tax Exemption Declaration,Income From Other Sources,다른 근원에서 소득
DocType: Warehouse,"If blank, parent Warehouse Account or company default will be considered",비어 있으면 상위 창고 계정 또는 회사 기본값이 고려됩니다.
DocType: HR Settings,Emails salary slip to employee based on preferred email selected in Employee,직원에서 선택한 선호하는 이메일을 기반으로 직원에게 이메일 급여 명세서
DocType: Tax Rule,Shipping County,배송 카운티
DocType: Currency Exchange,For Selling,판매용
apps/erpnext/erpnext/config/desktop.py,Learn,배우다
,Trial Balance (Simple),시산표 (단순)
DocType: Purchase Invoice Item,Enable Deferred Expense,지연 지출 활성화
apps/erpnext/erpnext/templates/includes/order/order_taxes.html,Applied Coupon Code,적용 쿠폰 코드
DocType: Asset,Next Depreciation Date,다음 감가 상각 날짜
apps/erpnext/erpnext/projects/doctype/activity_type/activity_type.js,Activity Cost per Employee,직원 당 활동 비용
DocType: Accounts Settings,Settings for Accounts,계정에 대한 설정
apps/erpnext/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py,Supplier Invoice No exists in Purchase Invoice {0},공급 업체 송장 번호는 구매 송장에 존재 {0}
apps/erpnext/erpnext/config/crm.py,Manage Sales Person Tree.,판매 인 나무를 관리합니다.
DocType: Job Applicant,Cover Letter,커버 레터
apps/erpnext/erpnext/accounts/report/bank_reconciliation_statement/bank_reconciliation_statement.py,Outstanding Cheques and Deposits to clear,뛰어난 수표 및 취소 예금
DocType: Item,Synced With Hub,허브와 동기화
apps/erpnext/erpnext/regional/doctype/gstr_3b_report/gstr_3b_report.html,Inward supplies from ISD,ISD에서 내향 공급
DocType: Driver,Fleet Manager,함대 관리자
apps/erpnext/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.js,Row #{0}: {1} can not be negative for item {2},행 번호 {0} : {1} 항목에 대한 음수가 될 수 없습니다 {2}
apps/erpnext/erpnext/setup/doctype/company/company.js,Wrong Password,잘못된 비밀번호
DocType: POS Profile,Offline POS Settings,오프라인 POS 설정
DocType: Stock Entry Detail,Reference Purchase Receipt,구매 영수증 참조
DocType: Stock Reconciliation,MAT-RECO-.YYYY.-,매트 - 리코 - .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.,당신이 그것을 끌어 후 결제 항목이 수정되었습니다.다시 당깁니다.
DocType: Program Enrollment Tool,New Student Batch,새로운 학생 배치
apps/erpnext/erpnext/accounts/doctype/item_tax_template/item_tax_template.py,{0} entered twice in Item Tax,{0} 항목의 세금에 두 번 입력
apps/erpnext/erpnext/setup/doctype/email_digest/email_digest.py,Summary for this week and pending activities,이번 주 보류중인 활동에 대한 요약
DocType: Student Applicant,Admitted,인정
DocType: Workstation,Rent Cost,임대 비용
apps/erpnext/erpnext/erpnext_integrations/doctype/plaid_settings/plaid_connector.py,Plaid transactions sync error,격자 무늬 거래 동기화 오류
DocType: Leave Ledger Entry,Is Expired,만료
apps/erpnext/erpnext/accounts/report/asset_depreciation_ledger/asset_depreciation_ledger.py,Amount After Depreciation,금액 감가 상각 후
apps/erpnext/erpnext/setup/doctype/email_digest/templates/default.html,Upcoming Calendar Events,다가오는 일정 이벤트
apps/erpnext/erpnext/public/js/templates/item_quick_entry.html,Variant Attributes,변형 특성
apps/erpnext/erpnext/hr/report/monthly_attendance_sheet/monthly_attendance_sheet.py,Please select month and year,월 및 연도를 선택하세요
DocType: Employee,Company Email,회사 이메일
apps/erpnext/erpnext/accounts/doctype/pricing_rule/utils.py,User has not applied rule on the invoice {0},사용자가 송장 {0}에 대한 규칙을 적용하지 않았습니다.
DocType: GL Entry,Debit Amount in Account Currency,계정 통화에서 직불 금액
DocType: Supplier Scorecard,Scoring Standings,득점 득점
apps/erpnext/erpnext/crm/report/campaign_efficiency/campaign_efficiency.py,Order Value,주문 금액
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 분석
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,신청 기간은 2 개의 배정 기록에 걸쳐있을 수 없습니다.
apps/erpnext/erpnext/hr/doctype/leave_allocation/leave_allocation.py,{0} already allocated for Employee {1} for period {2} to {3},{0} 이미 직원에 할당 {1}에 기간 {2}에 대한 {3}
DocType: Buying Settings,Backflush Raw Materials of Subcontract Based On,하청의 원자재 Backflush
apps/erpnext/erpnext/stock/doctype/purchase_receipt/purchase_receipt.py,Purchase Invoice {0} is already submitted,구매 송장 {0}이 (가) 이미 제출
apps/erpnext/erpnext/controllers/sales_and_purchase_return.py,Row # {0}: Batch No must be same as {1} {2},행 번호 {0} : 일괄 없음은 동일해야합니다 {1} {2}
DocType: Material Request Plan Item,Material Request Plan Item,자재 요청 계획 항목
DocType: Leave Type,Allow Encashment,Encash 허용
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,웹 사이트 URL
,Finished Goods,완성품
DocType: Delivery Note,Instructions,지침
DocType: Quality Inspection,Inspected By,검사
DocType: Asset,ACC-ASS-.YYYY.-,ACC-ASS-.YYYY.-
DocType: Asset Maintenance Log,Maintenance Type,유지 보수 유형
apps/erpnext/erpnext/education/doctype/student_group/student_group.py,{0} - {1} is not enrolled in the Course {2},{0} - {1}이 (가) 과정에 등록되지 않았습니다. {2}
apps/erpnext/erpnext/education/doctype/student_report_generation_tool/student_report_generation_tool.html,Student Name: ,학생 이름:
DocType: POS Closing Voucher,Difference,차
DocType: Delivery Settings,Delay between Delivery Stops,배달 중단 사이의 지연
apps/erpnext/erpnext/selling/doctype/installation_note/installation_note.py,Serial No {0} does not belong to Delivery Note {1},일련 번호 {0} 배달 주에 속하지 않는 {1}
apps/erpnext/erpnext/erpnext_integrations/doctype/gocardless_settings/gocardless_settings.py,"There seems to be an issue with the server's GoCardless configuration. Don't worry, in case of failure, the amount will get refunded to your account.",서버의 GoCardless 구성에 문제가있는 것 같습니다. 실패 할 경우 걱정하지 마십시오. 금액이 귀하의 계정으로 환급됩니다.
apps/erpnext/erpnext/templates/pages/demo.html,ERPNext Demo,ERPNext 데모
apps/erpnext/erpnext/public/js/utils/item_selector.js,Add Items,항목 추가
DocType: Item Quality Inspection Parameter,Item Quality Inspection Parameter,상품 품질 검사 매개 변수
DocType: Leave Application,Leave Approver Name,승인자 이름을 남겨주세요
DocType: Depreciation Schedule,Schedule Date,일정 날짜
DocType: Amazon MWS Settings,FR,FR
DocType: Packed Item,Packed Item,포장 된 상품
DocType: Job Offer Term,Job Offer Term,고용 제안 기간
apps/erpnext/erpnext/config/buying.py,Default settings for buying transactions.,트랜잭션을 구입을위한 기본 설정.
apps/erpnext/erpnext/projects/doctype/activity_cost/activity_cost.py,Activity Cost exists for Employee {0} against Activity Type - {1},활동 비용은 활동 유형에 대해 직원 {0} 존재 - {1}
apps/erpnext/erpnext/education/doctype/program_enrollment_tool/program_enrollment_tool.py,Mandatory field - Get Students From,필수 입력란 - 학생을 준비하십시오.
apps/erpnext/erpnext/education/doctype/program_enrollment_tool/program_enrollment_tool.py,Mandatory field - Get Students From,필수 입력란 - 학생을 준비하십시오.
DocType: Program Enrollment,Enrolled courses,등록 과정
DocType: Program Enrollment,Enrolled courses,등록 과정
DocType: Currency Exchange,Currency Exchange,환전
apps/erpnext/erpnext/support/doctype/issue/issue.js,Resetting Service Level Agreement.,서비스 수준 계약 재설정 중.
apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js,Item Name,품명
DocType: Authorization Rule,Approving User (above authorized value),(승인 된 값 이상) 사용 승인
apps/erpnext/erpnext/selling/report/customer_credit_balance/customer_credit_balance.py,Credit Balance,신용 잔액
DocType: Employee,Widowed,과부
DocType: Request for Quotation,Request for Quotation,견적 요청
DocType: Healthcare Settings,Require Lab Test Approval,실험실 테스트 승인 필요
DocType: Attendance,Working Hours,근무 시간
apps/erpnext/erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool_dashboard.html,Total Outstanding,총 우수
DocType: Naming Series,Change the starting / current sequence number of an existing series.,기존 시리즈의 시작 / 현재의 순서 번호를 변경합니다.
DocType: Accounts Settings,Percentage you are allowed to bill more against the amount ordered. For example: If the order value is $100 for an item and tolerance is set as 10% then you are allowed to bill for $110.,주문한 금액에 대해 더 많은 금액을 청구 할 수있는 비율. 예 : 주문 값이 항목에 대해 $ 100이고 공차가 10 %로 설정된 경우 110 달러를 청구 할 수 있습니다.
DocType: Dosage Strength,Strength,힘
apps/erpnext/erpnext/public/js/controllers/transaction.js,Cannot find Item with this barcode,이 바코드가있는 항목을 찾을 수 없습니다.
apps/erpnext/erpnext/accounts/page/pos/pos.js,Create a new Customer,새로운 고객을 만들기
apps/erpnext/erpnext/non_profit/report/expiring_memberships/expiring_memberships.py,Expiring On,만료
apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js,"If multiple Pricing Rules continue to prevail, users are asked to set Priority manually to resolve conflict.","여러 가격의 규칙이 우선 계속되면, 사용자는 충돌을 해결하기 위해 수동으로 우선 순위를 설정하라는 메시지가 표시됩니다."
apps/erpnext/erpnext/stock/doctype/purchase_receipt/purchase_receipt.js,Purchase Return,구매 돌아 가기
apps/erpnext/erpnext/utilities/activation.py,Create Purchase Orders,구매 오더를 생성
,Purchase Register,회원에게 구매
apps/erpnext/erpnext/healthcare/doctype/patient/patient.py,Patient not found,환자를 찾을 수 없음
DocType: Landed Cost Item,Applicable Charges,적용 요금
DocType: Workstation,Consumable Cost,소모품 비용
apps/erpnext/erpnext/support/doctype/service_level/service_level.py,Response Time for {0} at index {1} can't be greater than Resolution Time.,인덱스 {1}에서 {0}의 응답 시간은 해결 시간보다 클 수 없습니다.
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,IS 그룹
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,필수 입력란 - Academic Year
apps/erpnext/erpnext/education/doctype/program_enrollment_tool/program_enrollment_tool.py,Mandatory field - Academic Year,필수 입력란 - 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,까지에게 동결계정
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 이메일 ID
apps/erpnext/erpnext/education/report/student_and_guardian_contact_details/student_and_guardian_contact_details.py,Guardian2 Email ID,Guardian2 이메일 ID
DocType: Item,Show in Website (Variant),웹 사이트에 표시 (변형)
DocType: Employee,Health Concerns,건강 문제
DocType: Payroll Entry,Select Payroll Period,급여 기간을 선택
DocType: Purchase Invoice,Unpaid,지불하지 않은
apps/erpnext/erpnext/stock/page/stock_balance/stock_balance.js,Reserved for sale,판매 예약
DocType: Packing Slip,From Package No.,패키지 번호에서
apps/erpnext/erpnext/accounts/doctype/bank_reconciliation/bank_reconciliation.py,Row #{0}: Payment document is required to complete the transaction,행 번호 {0} : 거래를 완료하려면 지불 문서가 필요합니다.
DocType: Item Attribute,To Range,범위
apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py,Securities and Deposits,증권 및 예치금
apps/erpnext/erpnext/stock/doctype/stock_settings/stock_settings.py,"Can't change valuation method, as there are transactions against some items which does not have it's own valuation method",자체 평가 방법이없는 일부 품목에 대한 거래가 있기 때문에 평가 방법을 변경할 수 없습니다.
DocType: Student Report Generation Tool,Attended by Parents,학부모가 참석
apps/erpnext/erpnext/hr/doctype/shift_assignment/shift_assignment.py,Employee {0} has already applied for {1} on {2} : ,직원 {0}이 {2}에 {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.,작업 표 기반의 급여에 대한 급여의 구성 요소.
DocType: Driver,Applicable for external driver,외부 드라이버에 적용 가능
DocType: Sales Order Item,Used for Production Plan,생산 계획에 사용
DocType: BOM,Total Cost (Company Currency),총 비용 (회사 통화)
DocType: Loan,Total Payment,총 결제
apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py,Cannot cancel transaction for Completed Work Order.,완료된 작업 주문에 대해서는 거래를 취소 할 수 없습니다.
DocType: Manufacturing Settings,Time Between Operations (in mins),(분에) 작업 사이의 시간
apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.py,PO already created for all sales order items,모든 판매 오더 품목에 대해 PO가 생성되었습니다.
DocType: Healthcare Service Unit,Occupied,가득차 있는
DocType: Clinical Procedure,Consumables,소모품
apps/erpnext/erpnext/accounts/report/balance_sheet/balance_sheet.js,Include Default Book Entries,기본 도서 항목 포함
apps/erpnext/erpnext/stock/doctype/material_request/material_request.py,{0} {1} is cancelled so the action cannot be completed,{0} {1}이 (가) 취소되어 작업을 완료 할 수 없습니다.
apps/erpnext/erpnext/manufacturing/doctype/production_plan/production_plan.js,"Planned Qty: Quantity, for which, Work Order has been raised, but is pending to be manufactured.",계획 수량 : 생산 오더가 생성되었지만 제조 대기중인 수량.
DocType: Customer,Buyer of Goods and Services.,제품 및 서비스의 구매자.
apps/erpnext/erpnext/hr/doctype/employee_checkin/employee_checkin.py,'employee_field_value' and 'timestamp' are required.,'employee_field_value'및 'timestamp'가 필요합니다.
DocType: Journal Entry,Accounts Payable,미지급금
apps/erpnext/erpnext/accounts/doctype/payment_request/payment_request.py,The amount of {0} set in this payment request is different from the calculated amount of all payment plans: {1}. Make sure this is correct before submitting the document.,이 지불 요청에 설정된 {0} 금액은 모든 지불 계획의 계산 된 금액과 다릅니다 : {1}. 문서를 제출하기 전에 이것이 올바른지 확인하십시오.
DocType: Patient,Allergies,알레르기
apps/erpnext/erpnext/manufacturing/doctype/bom_update_tool/bom_update_tool.py,The selected BOMs are not for the same item,선택한 BOM의 동일한 항목에 대한 없습니다
apps/erpnext/erpnext/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,코스를 선택하십시오
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,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 %의 등급을 정의하십시오.
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,Return Entries보기
apps/erpnext/erpnext/accounts/page/pos/pos.js,Serial no item cannot be a fraction,일련 번호 항목 일부가 될 수 없습니다
DocType: Journal Entry,Difference (Dr - Cr),차이 (박사 - 크롬)
DocType: Bank Guarantee,Providing,제공
DocType: Account,Profit and Loss,이익과 손실
DocType: Tally Migration,Tally Migration,탈리 마이그레이션
apps/erpnext/erpnext/healthcare/doctype/lab_test/lab_test.js,"Not permitted, configure Lab Test Template as required","허용되지 않음, 필요시 랩 테스트 템플릿 구성"
DocType: Patient,Risk Factors,위험 요소
DocType: Patient,Occupational Hazards and Environmental Factors,직업 위험 및 환경 요인
apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py,Stock Entries already created for Work Order ,작업 공정을 위해 이미 생성 된 재고 항목
apps/erpnext/erpnext/templates/pages/cart.html,See past orders,지난 주문보기
apps/erpnext/erpnext/public/js/hub/pages/Selling.vue,{0} conversations,{0} 대화
DocType: Vital Signs,Respiratory rate,호흡
apps/erpnext/erpnext/config/help.py,Managing Subcontracting,관리 하도급
DocType: Vital Signs,Body Temperature,체온
DocType: Project,Project will be accessible on the website to these users,프로젝트는 이러한 사용자에게 웹 사이트에 액세스 할 수 있습니다
apps/erpnext/erpnext/stock/doctype/serial_no/serial_no.py,Cannot cancel {0} {1} because Serial No {2} does not belong to the warehouse {3},일련 번호 {2}이 창고 {3}에 속해 있지 않으므로 {0} {1}을 (를) 취소 할 수 없습니다.
DocType: Detected Disease,Disease,질병
DocType: Company,Default Deferred Expense Account,기본 이연 비용 계정
apps/erpnext/erpnext/config/projects.py,Define Project type.,프로젝트 유형을 정의하십시오.
DocType: Supplier Scorecard,Weighting Function,가중치 함수
DocType: Employee Tax Exemption Proof Submission,Total Actual Amount,총 실제 금액
DocType: Healthcare Practitioner,OP Consulting Charge,영업 컨설팅 담당
apps/erpnext/erpnext/utilities/user_progress.py,Setup your ,설정
DocType: Student Report Generation Tool,Show Marks,마크 표시
DocType: Support Settings,Get Latest Query,최신 질의 얻기
DocType: Quotation,Rate at which Price list currency is converted to company's base currency,가격 목록 통화는 회사의 기본 통화로 변환하는 속도에
apps/erpnext/erpnext/setup/doctype/company/company.py,Account {0} does not belong to company: {1},계정 {0} 회사에 속하지 않는 {1}
apps/erpnext/erpnext/setup/doctype/company/company.py,Abbreviation already used for another company,약어는 이미 다른 회사에 사용
DocType: Selling Settings,Default Customer Group,기본 고객 그룹
apps/erpnext/erpnext/accounts/report/accounts_receivable/accounts_receivable.js,Payment Tems,지불 기한
DocType: Employee,IFSC Code,IFSC 코드
DocType: Global Defaults,"If disable, 'Rounded Total' field will not be visible in any transaction","사용하지 않으면, '둥근 총'이 필드는 모든 트랜잭션에서 볼 수 없습니다"
DocType: BOM,Operating Cost,운영 비용
DocType: Crop,Produced Items,생산 품목
DocType: Bank Statement Transaction Entry,Match Transaction to Invoices,송장에 대한 거래 일치
apps/erpnext/erpnext/erpnext_integrations/exotel_integration.py,Error in Exotel incoming call,Exotel 전화 수신 오류
DocType: Sales Order Item,Gross Profit,매출 총 이익
apps/erpnext/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.js,Unblock Invoice,송장 차단 해제
apps/erpnext/erpnext/stock/doctype/item_attribute/item_attribute.py,Increment cannot be 0,증가는 0이 될 수 없습니다
DocType: Company,Delete Company Transactions,회사 거래 삭제
DocType: Production Plan Item,Quantity and Description,수량 및 설명
apps/erpnext/erpnext/accounts/doctype/payment_entry/payment_entry.py,Reference No and Reference Date is mandatory for Bank transaction,참조 번호 및 참조 날짜는 은행 거래를위한 필수입니다
DocType: Purchase Receipt,Add / Edit Taxes and Charges,세금과 요금 추가/편집
DocType: Payment Entry Reference,Supplier Invoice No,공급 업체 송장 번호
DocType: Territory,For reference,참고로
DocType: Healthcare Settings,Appointment Confirmation,약속 확인