-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathzh_tw.csv
We can't make this file beautiful and searchable because it's too large.
7504 lines (7481 loc) · 705 KB
/
zh_tw.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,薪酬模式
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/setup/setup_wizard/data/industry_type.py,Consumer Products,消費類產品
DocType: Supplier Scorecard,Notify Supplier,通知供應商
apps/erpnext/erpnext/accounts/report/payment_period_based_on_invoice_date/payment_period_based_on_invoice_date.js,Please select Party Type first,請選擇黨第一型
DocType: Item,Customer Items,客戶項目
apps/erpnext/erpnext/accounts/report/balance_sheet/balance_sheet.py,Liabilities,負債
DocType: Project,Costing and Billing,成本核算和計費
apps/erpnext/erpnext/hr/doctype/employee_advance/employee_advance.py,Advance account currency should be same as company currency {0},預付帳戶貨幣應與公司貨幣{0}相同
DocType: QuickBooks Migrator,Token Endpoint,令牌端點
apps/erpnext/erpnext/accounts/doctype/account/account.py,Account {0}: Parent account {1} can not be a ledger,帳戶{0}:父帳戶{1}不能是總帳
DocType: Item,Publish Item to hub.erpnext.com,發布項目hub.erpnext.com
apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py,Cannot find active Leave Period,找不到有效的休假期
apps/erpnext/erpnext/hr/doctype/employee/employee_dashboard.py,Evaluation,評估
DocType: Item,Default Unit of Measure,預設的計量單位
DocType: SMS Center,All Sales Partner Contact,所有的銷售合作夥伴聯絡
DocType: Department,Leave Approvers,休假審批人
DocType: Employee,Bio / Cover Letter,生物/求職信
apps/erpnext/erpnext/public/js/hub/pages/Publish.vue,Search Items ...,搜索項目......
DocType: Patient Encounter,Investigations,調查
DocType: Restaurant Order Entry,Click Enter To Add,點擊輸入要添加
apps/erpnext/erpnext/erpnext_integrations/doctype/shopify_settings/shopify_settings.py,"Missing value for Password, API Key or Shopify URL",缺少密碼,API密鑰或Shopify網址的值
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,無法轉移狀態為左的員工
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: 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: Sales Invoice,Transport Receipt Date,運輸收貨日期
DocType: Shopify Settings,Sales Order Series,銷售訂單系列
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: 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/templates/includes/cart/cart_dropdown.html,Checkout,查看
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,亞馬遜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,銀行匯票
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/hr/doctype/employee_benefit_claim/employee_benefit_claim.py,"Maximum benefit of employee {0} exceeds {1} by the sum {2} of benefit application pro-rata component\
amount and previous claimed amount",員工{0}的最高福利超過{1},福利應用程序按比例分量\金額和上次索賠金額的總和{2}
DocType: Opening Invoice Creation Tool Item,Quantity,數量
,Customers Without Any Sales Transactions,沒有任何銷售交易的客戶
apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py,Accounts table cannot be blank.,賬表不能為空。
DocType: Delivery Trip,Use Google Maps Direction API to calculate estimated arrival times,使用Google Maps Direction 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,生產計劃項目
apps/erpnext/erpnext/hr/doctype/employee/employee.py,User {0} is already assigned to Employee {1},用戶{0}已經被分配給員工{1}
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: 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: Tally Migration,Tally Creditors Account,理貨債權人賬戶
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/education/report/absent_student_report/absent_student_report.py,Please select date,請選擇日期
DocType: Item Price,Minimum Qty ,最低數量
DocType: Finance Book,Finance Book,金融書
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,(鈣+鎂)/ 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: Purchase Invoice,Rounding Adjustment,舍入調整
apps/erpnext/erpnext/setup/doctype/company/company.py,Abbreviation cannot have more than 5 characters,縮寫不能有超過5個字符
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},該項目未在庫存條目中添加
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.,這是一個 root 帳戶,不能被編輯。
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,公斤
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}
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py,BOM is not specified for subcontracting item {0} at row {1},沒有為行{1}的轉包商品{0}指定BOM
apps/erpnext/erpnext/education/doctype/assessment_result_tool/assessment_result_tool.js,{0} Result submittted,{0}結果提交
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,同一家公司進入不止一次
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: 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: 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}:對於工作訂單{3}中的{2}數量的成品,未完成操作{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,短信日誌
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,開盤
DocType: Item,Copy From Item Group,從項目群組複製
DocType: Journal Entry,Opening Entry,開放報名
apps/erpnext/erpnext/accounts/doctype/cheque_print_template/cheque_print_template.js,Account Pay Only,賬戶只需支付
DocType: Loan,Repay Over Number of Periods,償還期的超過數
apps/erpnext/erpnext/manufacturing/report/bom_stock_report/bom_stock_report.py,Quantity to Produce can not be less than Zero,生產數量不能少於零
DocType: Stock Entry,Additional Costs,額外費用
apps/erpnext/erpnext/accounts/doctype/account/account.py,Account with existing transaction can not be converted to group.,帳戶與現有的交易不能被轉換到群組。
DocType: Lead,Product Enquiry,產品查詢
DocType: Education Settings,Validate Batch for Students in Student Group,驗證學生組學生的批次
apps/erpnext/erpnext/hr/doctype/attendance/attendance.py,No leave record found for employee {0} for {1},未找到員工的假期記錄{0} {1}
DocType: Company,Unrealized Exchange Gain/Loss Account,未實現的匯兌收益/損失賬戶
apps/erpnext/erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.js,Please enter company first,請先輸入公司
apps/erpnext/erpnext/accounts/page/bank_reconciliation/bank_reconciliation.js,Please select Company first,請首先選擇公司
DocType: Employee Education,Under Graduate,根據研究生
apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py,Please set default template for Leave Status Notification in HR Settings.,請在人力資源設置中設置離職狀態通知的默認模板。
apps/erpnext/erpnext/selling/report/sales_partner_target_variance_based_on_item_group/sales_partner_target_variance_based_on_item_group.js,Target On,目標在
DocType: BOM,Total Cost,總成本
apps/erpnext/erpnext/hr/doctype/leave_allocation/leave_allocation.js,Allocation Expired!,分配已過期!
DocType: Soil Analysis,Ca/K,鈣/ K
DocType: Leave Type,Maximum Carry Forwarded Leaves,最大攜帶轉發葉
DocType: Salary Slip,Employee Loan,員工貸款
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,顯示未來付款
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,適用於採購訂單
apps/erpnext/erpnext/hr/doctype/hr_settings/hr_settings.py,Password policy for Salary Slips is not set,未設置Salary Slips的密碼策略
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,負責任的個人
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,資產設置
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,座位數
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,所有聯絡
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,供應原料採購
apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.py,"Cannot ensure delivery by Serial No as \
Item {0} is added with and without Ensure Delivery by \
Serial No.",無法通過序列號確保交貨,因為\項目{0}是否添加了確保交貨\序列號
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py,At least one mode of payment is required for POS invoice.,付款中的至少一個模式需要POS發票。
apps/erpnext/erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py,Batch no is required for batched item {0},批處理項{0}需要批次否
DocType: Bank Statement Transaction Invoice Item,Bank Statement Transaction Invoice Item,銀行對賬單交易發票項目
DocType: Salary Detail,Tax on flexible benefit,對靈活福利徵稅
apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py,Item {0} is not active or end of life has been reached,項目{0}不活躍或生命的盡頭已經達到
DocType: Student Admission Program,Minimum Age,最低年齡
apps/erpnext/erpnext/utilities/user_progress.py,Example: Basic Mathematics,例如:基礎數學
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: Payroll Entry,Validate Attendance,驗證出席
DocType: Sales Invoice,Change Amount,漲跌額
DocType: Party Tax Withholding Config,Certificate Received,已收到證書
DocType: GST Settings,Set Invoice Value for B2C. B2CL and B2CS calculated based on this invoice value.,設置B2C的發票值。 B2CL和B2CS根據此發票值計算。
DocType: BOM Update Tool,New BOM,新的物料清單
apps/erpnext/erpnext/healthcare/doctype/patient_appointment/patient_appointment.js,Prescribed Procedures,規定程序
apps/erpnext/erpnext/accounts/report/sales_payment_summary/sales_payment_summary.js,Show only POS,只顯示POS
DocType: Supplier Group,Supplier Group Name,供應商集團名稱
DocType: Driver,Driving License Categories,駕駛執照類別
apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.py,Please enter Delivery Date,請輸入交貨日期
DocType: Depreciation Schedule,Make Depreciation Entry,計提折舊進入
DocType: Closed Document,Closed Document,封閉文件
DocType: HR Settings,Leave Settings,保留設置
DocType: 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: 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/config/crm.py,Plan for maintenance visits.,規劃維護訪問。
DocType: Supplier Scorecard Period,Supplier Scorecard Period,供應商記分卡期
DocType: Share Transfer,Share Transfer,股份轉讓
,Expiring Memberships,即將到期的會員
apps/erpnext/erpnext/templates/pages/home.html,Read blog,閱讀博客
DocType: POS Profile,Customer Groups,客戶群
apps/erpnext/erpnext/public/js/financial_statements.js,Financial Statements,財務報表
DocType: Guardian,Students,學生們
apps/erpnext/erpnext/config/buying.py,Rules for applying pricing and discount.,規則適用的定價和折扣。
DocType: Daily Work Summary,Daily Work Summary Group,日常工作總結小組
DocType: Practitioner Schedule,Time Slots,時隙
apps/erpnext/erpnext/stock/doctype/price_list/price_list.py,Price List must be applicable for Buying or Selling,價格表必須適用於購買或出售
DocType: Shift Assignment,Shift Request,移位請求
apps/erpnext/erpnext/selling/doctype/installation_note/installation_note.py,Installation date cannot be before delivery date for Item {0},品項{0}的安裝日期不能早於交貨日期
DocType: Purchase Invoice Item,Discount on Price List Rate (%),折扣價目表率(%)
apps/erpnext/erpnext/public/js/utils/item_quick_entry.js,Item Template,項目模板
DocType: Job Offer,Select Terms and Conditions,選擇條款和條件
apps/erpnext/erpnext/stock/report/stock_balance/stock_balance.py,Out Value,輸出值
DocType: Bank Statement Settings Item,Bank Statement Settings Item,銀行對賬單設置項目
DocType: Woocommerce Settings,Woocommerce Settings,Woocommerce設置
DocType: Leave Ledger Entry,Transaction Name,交易名稱
DocType: Production Plan,Sales Orders,銷售訂單
apps/erpnext/erpnext/selling/doctype/customer/customer.py,Multiple Loyalty Program found for the Customer. Please select manually.,為客戶找到多個忠誠度計劃。請手動選擇。
DocType: Purchase Taxes and Charges,Valuation,計價
apps/erpnext/erpnext/selling/page/point_of_sale/point_of_sale.js,Set as Default,設為預設
apps/erpnext/erpnext/stock/doctype/batch/batch.py,Expiry date is mandatory for selected item.,所選項目必須有效期限。
,Purchase Order Trends,採購訂單趨勢
apps/erpnext/erpnext/utilities/user_progress.py,Go to Customers,轉到客戶
DocType: Hotel Room Reservation,Late Checkin,延遲入住
apps/erpnext/erpnext/accounts/page/bank_reconciliation/bank_reconciliation.js,Finding linked payments,查找關聯付款
apps/erpnext/erpnext/templates/emails/request_for_quotation.html,The request for quotation can be accessed by clicking on the following link,報價請求可以通過點擊以下鏈接進行訪問
DocType: Quiz Result,Selected Option,選擇的選項
DocType: SG Creation Tool Course,SG Creation Tool Course,SG創建工具課程
DocType: Bank Statement Transaction Invoice Item,Payment Description,付款說明
apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py,Insufficient Stock,庫存不足
DocType: Manufacturing Settings,Disable Capacity Planning and Time Tracking,禁用產能規劃和時間跟踪
DocType: Email Digest,New Sales Orders,新的銷售訂單
DocType: Bank Account,Bank Account,銀行帳戶
DocType: Travel Itinerary,Check-out Date,離開日期
DocType: Leave Type,Allow Negative Balance,允許負平衡
apps/erpnext/erpnext/projects/doctype/project_type/project_type.py,You cannot delete Project Type 'External',您不能刪除項目類型“外部”
apps/erpnext/erpnext/public/js/utils.js,Select Alternate Item,選擇備用項目
DocType: Employee,Create User,創建用戶
DocType: Selling Settings,Default Territory,預設地域
apps/erpnext/erpnext/setup/setup_wizard/data/industry_type.py,Television,電視
DocType: Work Order Operation,Updated via 'Time Log',經由“時間日誌”更新
apps/erpnext/erpnext/accounts/doctype/bank_guarantee/bank_guarantee.py,Select the customer or supplier.,選擇客戶或供應商。
apps/erpnext/erpnext/support/doctype/service_level/service_level.py,Select only one Priority as Default.,僅選擇一個優先級作為默認值。
apps/erpnext/erpnext/controllers/taxes_and_totals.py,Advance amount cannot be greater than {0} {1},提前量不能大於{0} {1}
apps/erpnext/erpnext/healthcare/doctype/practitioner_schedule/practitioner_schedule.js,"Time slot skiped, the slot {0} to {1} overlap exisiting slot {2} to {3}",時隙滑動,時隙{0}到{1}與現有時隙{2}重疊到{3}
DocType: Naming Series,Series List for this Transaction,本交易系列表
DocType: Company,Enable Perpetual Inventory,啟用永久庫存
DocType: Bank Guarantee,Charges Incurred,收費發生
apps/erpnext/erpnext/public/js/education/lms/quiz.js,Something went wrong while evaluating the quiz.,評估測驗時出了點問題。
DocType: Company,Default Payroll Payable Account,默認情況下,應付職工薪酬帳戶
apps/erpnext/erpnext/public/js/hub/pages/Item.vue,Edit Details,編輯細節
apps/erpnext/erpnext/education/doctype/student_group/student_group.js,Update Email Group,更新電子郵件組
DocType: POS Profile,Only show Customer of these Customer Groups,僅顯示這些客戶組的客戶
DocType: Sales Invoice,Is Opening Entry,是開放登錄
apps/erpnext/erpnext/public/js/conf.js,Documentation,文檔
DocType: Lab Test Template,"If unchecked, the item wont be appear in Sales Invoice, but can be used in group test creation. ",如果取消選中,該項目不會出現在銷售發票中,但可用於創建組測試。
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,對於倉庫之前,需要提交
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",localStorage的滿了,沒救
DocType: Lead,Address & Contact,地址及聯絡方式
DocType: Leave Allocation,Add unused leaves from previous allocations,從以前的分配添加未使用的休假
DocType: Sales Partner,Partner website,合作夥伴網站
DocType: Restaurant Order Entry,Add Item,新增項目
DocType: Party Tax Withholding Config,Party Tax Withholding Config,黨的預扣稅配置
DocType: Lab Test,Custom Result,自定義結果
apps/erpnext/erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.js,Bank accounts added,銀行賬戶補充說
DocType: Call Log,Contact Name,聯絡人姓名
DocType: Plaid Settings,Synchronize all accounts every hour,每小時同步所有帳戶
DocType: Course Assessment Criteria,Course Assessment Criteria,課程評價標準
DocType: Pricing Rule Detail,Rule Applied,適用規則
DocType: Service Level Priority,Resolution Time Period,解決時間段
apps/erpnext/erpnext/accounts/report/accounts_receivable/accounts_receivable.html,Tax Id: ,稅號:
apps/erpnext/erpnext/education/doctype/student_report_generation_tool/student_report_generation_tool.html,Student ID: ,學生卡:
DocType: POS Customer Group,POS Customer Group,POS客戶群
DocType: Healthcare Practitioner,Practitioner Schedules,從業者時間表
DocType: Vehicle,Additional Details,額外細節
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,收集金額
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,錄製網址
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,利潤損失
DocType: Task,Total Costing Amount (via Time Sheet),總成本計算量(通過時間表)
apps/erpnext/erpnext/education/doctype/fee_schedule/fee_schedule.py,Please setup Students under Student Groups,請設置學生組的學生
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,是內部客戶
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,捆綁數量
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: Lead,Mobile No.,手機號碼
DocType: Maintenance Schedule,Generate Schedule,生成時間表
DocType: Purchase Invoice Item,Expense Head,總支出
apps/erpnext/erpnext/accounts/doctype/payment_entry/payment_entry.js,Please select Charge Type first,請先選擇付款類別
DocType: Crop,"You can define all the tasks which need to carried out for this crop here. The day field is used to mention the day on which the task needs to be carried out, 1 being the 1st day, etc.. ",你可以在這裡定義所有需要進行的作業。日場是用來提及任務需要執行的日子,1日是第一天等。
DocType: Student Group Student,Student Group Student,學生組學生
DocType: Education Settings,Education Settings,教育設置
DocType: Vehicle Service,Inspection,檢查
apps/erpnext/erpnext/regional/italy/utils.py,E-Invoicing Information Missing,電子發票信息丟失
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,航運縣
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,參考購買收據
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,來自Pin Code
apps/erpnext/erpnext/accounts/report/accounts_receivable/accounts_receivable.js,Show Sales Person,顯示銷售人員
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.,送貨單一被儲存,(Export)就會顯示出來。
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/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/accounts/doctype/sales_invoice/sales_invoice.js,Delivery Note,送貨單
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,出售資產的成本
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,錄取
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,在賬戶幣種借記金額
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/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,申請期限不能跨越兩個分配記錄
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,基於CRM的分包合同反向原材料
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,Inter公司日記帳分錄
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,網站網址
DocType: Delivery Note,Instructions,說明
DocType: Quality Inspection,Inspected By,視察
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/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: 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,購買註冊
DocType: Landed Cost Item,Applicable Charges,相關費用
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,Campaign電子郵件計劃
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: 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: 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公司交易。
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/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,帳戶被凍結到
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: 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,選擇工資期
apps/erpnext/erpnext/stock/page/stock_balance/stock_balance.js,Reserved for sale,保留出售
DocType: Packing Slip,From Package No.,從包裹編號
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,已為所有銷售訂單項創建採購訂單
DocType: Healthcare Service Unit,Occupied,佔據
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.,買家商品和服務。
DocType: Journal Entry,Accounts Payable,應付帳款
apps/erpnext/erpnext/accounts/doctype/payment_request/payment_request.py,The amount of {0} set in this payment request is different from the calculated amount of all payment plans: {1}. Make sure this is correct before submitting the document.,此付款申請中設置的{0}金額與所有付款計劃的計算金額不同:{1}。在提交文檔之前確保這是正確的。
DocType: Patient,Allergies,過敏
apps/erpnext/erpnext/manufacturing/doctype/bom_update_tool/bom_update_tool.py,The selected BOMs are not for the same item,所選的材料清單並不同樣項目
apps/erpnext/erpnext/stock/doctype/item_variant_settings/item_variant_settings.py,Cannot set the field <b>{0}</b> for copying in variants,無法將字段<b>{0}設置</b>為在變體中進行複制
apps/erpnext/erpnext/healthcare/doctype/clinical_procedure_template/clinical_procedure_template.js,Change Item Code,更改物料代碼
DocType: Vital Signs,Blood Pressure (systolic),血壓(收縮期)
DocType: Item Price,Valid Upto,到...為止有效
DocType: Leave Type,Expire Carry Forwarded Leaves (Days),過期攜帶轉發葉子(天)
DocType: Training Event,Workshop,作坊
DocType: Supplier Scorecard Scoring Standing,Warn Purchase Orders,警告採購訂單
apps/erpnext/erpnext/utilities/user_progress.py,List a few of your customers. They could be organizations or individuals.,列出一些你的客戶。他們可以是組織或個人。
DocType: Employee Tax Exemption Proof Submission,Rented From Date,從日期租用
apps/erpnext/erpnext/manufacturing/report/bom_stock_report/bom_stock_report.py,Enough Parts to Build,足夠的配件組裝
apps/erpnext/erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.js,Please save first,請先保存
DocType: POS Profile User,POS Profile User,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",7 。總計:累積總數達到了這一點。
apps/erpnext/erpnext/setup/setup_wizard/operations/install_fixtures.py,Administrative Officer,政務主任
apps/erpnext/erpnext/education/doctype/student_group/student_group.py,Please select Course,請選擇課程
DocType: Codification Table,Codification Table,編纂表
DocType: Timesheet Detail,Hrs,小時
DocType: Employee Skill,Employee Skill,員工技能
apps/erpnext/erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.js,Difference Account,差異帳戶
DocType: Purchase Invoice,Supplier GSTIN,供應商GSTIN
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%
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),差異(Dr - Cr)
DocType: Account,Profit and Loss,損益
DocType: Tally Migration,Tally Migration,理貨遷移
apps/erpnext/erpnext/healthcare/doctype/lab_test/lab_test.js,"Not permitted, configure Lab Test Template as required",不允許,根據需要配置實驗室測試模板
DocType: Patient,Risk Factors,風險因素
DocType: Patient,Occupational Hazards and Environmental Factors,職業危害與環境因素
apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py,Stock Entries already created for Work Order ,已為工單創建的庫存條目
apps/erpnext/erpnext/templates/pages/cart.html,See past orders,查看過去的訂單
apps/erpnext/erpnext/public/js/hub/pages/Selling.vue,{0} conversations,{0}次對話
DocType: Vital Signs,Respiratory rate,呼吸頻率
apps/erpnext/erpnext/config/help.py,Managing Subcontracting,管理轉包
DocType: Vital Signs,Body Temperature,體溫
DocType: Project,Project will be accessible on the website to these users,項目將在網站向這些用戶上訪問
apps/erpnext/erpnext/stock/doctype/serial_no/serial_no.py,Cannot cancel {0} {1} because Serial No {2} does not belong to the warehouse {3},無法取消{0} {1},因為序列號{2}不屬於倉庫{3}
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來電錯誤
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,預約確認
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/stock/dashboard/item_dashboard.js,Move Item,移動項目
DocType: Employee Incentive,Incentive Amount,激勵金額
,Employee Leave Balance Summary,員工休假餘額摘要
DocType: Serial No,Warranty Period (Days),保修期限(天數)
apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py,Total Credit/ Debit Amount should be same as linked Journal Entry,總信用/借方金額應與鏈接的日記帳分錄相同
DocType: Installation Note Item,Installation Note Item,安裝注意項
DocType: Production Plan Item,Pending Qty,待定數量
apps/erpnext/erpnext/accounts/party.py,{0} {1} is not active,{0} {1}是不活動
DocType: Woocommerce Settings,Freight and Forwarding Account,貨運和轉運帳戶
apps/erpnext/erpnext/config/accounting.py,Setup cheque dimensions for printing,設置檢查尺寸打印
apps/erpnext/erpnext/hr/doctype/payroll_entry/payroll_entry.js,Create Salary Slips,創建工資單
DocType: Vital Signs,Bloated,脹
DocType: Salary Slip,Salary Slip Timesheet,工資單時間表
apps/erpnext/erpnext/controllers/buying_controller.py,Supplier Warehouse mandatory for sub-contracted Purchase Receipt,對於轉包的採購入庫單,供應商倉庫是強制性輸入的。
apps/erpnext/erpnext/public/js/hub/components/ReviewArea.vue,Your rating: ,你的評分:
DocType: Sales Invoice,Total Commission,佣金總計
DocType: Tax Withholding Account,Tax Withholding Account,扣繳稅款賬戶
DocType: Pricing Rule,Sales Partner,銷售合作夥伴
apps/erpnext/erpnext/config/buying.py,All Supplier scorecards.,所有供應商記分卡。
DocType: Coupon Code,To be used to get discount,用於獲得折扣
DocType: Buying Settings,Purchase Receipt Required,需要採購入庫單
DocType: Sales Invoice,Rail,軌
apps/erpnext/erpnext/buying/report/procurement_tracker/procurement_tracker.py,Actual Cost,實際成本
DocType: Item,Website Image,網站圖片
apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py,Target warehouse in row {0} must be same as Work Order,行{0}中的目標倉庫必須與工單相同
apps/erpnext/erpnext/stock/doctype/item/item.py,Valuation Rate is mandatory if Opening Stock entered,估價費用是強制性的,如果打開股票進入
apps/erpnext/erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py,No records found in the Invoice table,沒有在發票表中找到記錄
apps/erpnext/erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.js,Please select Company and Party Type first,請選擇公司和黨的第一型
apps/erpnext/erpnext/accounts/doctype/pos_profile/pos_profile.py,"Already set default in pos profile {0} for user {1}, kindly disabled default",已經在用戶{1}的pos配置文件{0}中設置了默認值,請禁用默認值
apps/erpnext/erpnext/config/accounting.py,Financial / accounting year.,財務/會計年度。
apps/erpnext/erpnext/accounts/report/balance_sheet/balance_sheet.js,Accumulated Values,累積值
apps/erpnext/erpnext/stock/doctype/serial_no/serial_no.py,"Sorry, Serial Nos cannot be merged",對不起,序列號無法合併
DocType: Shopify Settings,Customer Group will set to selected group while syncing customers from Shopify,客戶組將在同步Shopify客戶的同時設置為選定的組
apps/erpnext/erpnext/accounts/doctype/pos_profile/pos_profile.py,Territory is Required in POS Profile,POS Profile中需要領域
DocType: Hub User,Hub User,中心用戶
apps/erpnext/erpnext/hr/doctype/payroll_entry/payroll_entry.py,Salary Slip submitted for period from {0} to {1},從{0}到{1}
apps/erpnext/erpnext/education/doctype/quiz/quiz.py,Passing Score value should be between 0 and 100,傳球得分值應在0到100之間
DocType: Loyalty Point Entry Redemption,Redeemed Points,兌換積分
,Lead Id,潛在客戶標識
DocType: C-Form Invoice Detail,Grand Total,累計
DocType: Assessment Plan,Course,課程
apps/erpnext/erpnext/accounts/report/tds_computation_summary/tds_computation_summary.py,Section Code,部分代碼
apps/erpnext/erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py,Valuation Rate required for Item {0} at row {1},第{1}行的第{0}項所需的估價率
DocType: Timesheet,Payslip,工資單
apps/erpnext/erpnext/accounts/doctype/promotional_scheme/promotional_scheme.py,Pricing Rule {0} is updated,定價規則{0}已更新
apps/erpnext/erpnext/hr/doctype/attendance_request/attendance_request.py,Half day date should be in between from date and to date,半天的日期應該在從日期到日期之間
DocType: POS Closing Voucher,Expense Amount,費用金額
apps/erpnext/erpnext/public/js/pos/pos.html,Item Cart,項目車
DocType: Quality Action,Resolution,決議
DocType: Employee,Personal Bio,個人生物
apps/erpnext/erpnext/non_profit/report/expiring_memberships/expiring_memberships.py,Membership ID,會員ID
apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.js,Receive at Warehouse Entry,在倉庫入口處接收
apps/erpnext/erpnext/templates/pages/material_request_info.html,Delivered: {0},交貨:{0}
DocType: QuickBooks Migrator,Connected to QuickBooks,連接到QuickBooks
apps/erpnext/erpnext/accounts/doctype/chart_of_accounts_importer/chart_of_accounts_importer.py,Please identify/create Account (Ledger) for type - {0},請為類型{0}標識/創建帳戶(分類帳)
DocType: Bank Statement Transaction Entry,Payable Account,應付帳款
apps/erpnext/erpnext/public/js/hub/pages/PublishedItems.vue,You haven\,你沒有
DocType: Payment Entry,Type of Payment,付款類型
apps/erpnext/erpnext/hr/doctype/compensatory_leave_request/compensatory_leave_request.py,Half Day Date is mandatory,半天日期是強制性的
DocType: Sales Order,Billing and Delivery Status,結算和交貨狀態
DocType: Job Applicant,Resume Attachment,簡歷附
apps/erpnext/erpnext/selling/report/customer_acquisition_and_loyalty/customer_acquisition_and_loyalty.py,Repeat Customers,回頭客
apps/erpnext/erpnext/stock/doctype/item/item.js,Create Variant,創建變體
DocType: Sales Invoice,Shipping Bill Date,運費單日期
DocType: Production Plan,Production Plan,生產計劃
DocType: Opening Invoice Creation Tool,Opening Invoice Creation Tool,打開發票創建工具
DocType: Salary Component,Round to the Nearest Integer,舍入到最近的整數
DocType: Shopping Cart Settings,Allow items not in stock to be added to cart,允許將無庫存的商品添加到購物車
apps/erpnext/erpnext/stock/doctype/delivery_note/delivery_note.js,Sales Return,銷貨退回
DocType: Stock Settings,Set Qty in Transactions based on Serial No Input,根據序列號輸入設置交易數量
,Total Stock Summary,總庫存總結
apps/erpnext/erpnext/hr/doctype/staffing_plan/staffing_plan.py,"You can only plan for upto {0} vacancies and budget {1} \
for {2} as per staffing plan {3} for parent company {4}.",根據母公司{4}的人員配置計劃{3},您只能針對{2}計劃最多{0}個職位空缺和預算{1} \。
DocType: Announcement,Posted By,發布者
apps/erpnext/erpnext/controllers/stock_controller.py,Quality Inspection required for Item {0} to submit,要提交項目{0}所需的質量檢驗
DocType: Item,Delivered by Supplier (Drop Ship),由供應商交貨(直接發運)
DocType: Healthcare Settings,Confirmation Message,確認訊息
apps/erpnext/erpnext/config/crm.py,Database of potential customers.,數據庫的潛在客戶。
DocType: Authorization Rule,Customer or Item,客戶或項目
apps/erpnext/erpnext/config/crm.py,Customer database.,客戶數據庫。
DocType: Quotation,Quotation To,報價到
apps/erpnext/erpnext/accounts/report/trial_balance/trial_balance.py,Opening (Cr),開啟(Cr )
apps/erpnext/erpnext/stock/doctype/item/item.py,Default Unit of Measure for Item {0} cannot be changed directly because you have already made some transaction(s) with another UOM. You will need to create a new Item to use a different Default UOM.,測度項目的默認單位{0}不能直接改變,因為你已經做了一些交易(S)與其他計量單位。您將需要創建一個新的項目,以使用不同的默認計量單位。
apps/erpnext/erpnext/hr/doctype/expense_claim/expense_claim.js,Please set the Company,請設定公司
DocType: Share Balance,Share Balance,份額平衡
DocType: Amazon MWS Settings,AWS Access Key ID,AWS訪問密鑰ID
apps/erpnext/erpnext/projects/doctype/task/task_list.js,Set as Completed,設為已完成
DocType: Purchase Order Item,Billed Amt,已結算額
DocType: Training Result Employee,Training Result Employee,訓練結果員工
DocType: Warehouse,A logical Warehouse against which stock entries are made.,對這些庫存分錄帳進行的邏輯倉庫。