-
Notifications
You must be signed in to change notification settings - Fork 0
/
locales.json
1208 lines (1208 loc) · 59.9 KB
/
locales.json
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
{
"enUS": {
"en-US": "English",
"zh-CN": "中文",
"zh-TW": "中国台湾",
"hello": "Hello {name}",
"code": "en-US",
"yes": "Yes",
"no": "No",
"menu.board": "Dashboard Page",
"menu.home": "Monitoring page",
"menu.work": "workbench",
"menu.list": "List",
"menu.result": "Result",
"menu.exception": "Exception",
"menu.form": "Form",
"menu.profile": "Profile",
"menu.profile.detail": "Basic details page",
"menu.visualization": "Data Visualization",
"menu.menuPage": "Menu Page",
"menu.menuPage.second": "Second Page",
"menu.menuPage.third": "Menu Demo Page",
"menu.user": "User Center",
"menu.systemManager": "System Manager",
"menu.userManager": "User Manager",
"menu.userManager.info": "All User Info",
"menu.userManager.setting": "All User Setting",
"menu.userManager.useradd": "Add User",
"menu.permission": "Permission Manager",
"menu.permission.info": "All Permission Info",
"menu.permission.setting": "Permission Setting",
"menu.permission.permissionAdd": "Add Permission",
"menu.role": "Role Manager",
"menu.role.info": "All Role Info",
"menu.menu": "Menu Manager",
"menu.menu.info": "All Menu Info",
"navbar.docs": "Docs",
"navbar.action.locale": "Switch to English",
"messageBox.switchRoles": "Switch Roles",
"messageBox.userCenter": "User Center",
"messageBox.userSettings": "User Settings",
"messageBox.logout": "Logout",
"messageBox.updatePwd": "Update Password",
"message.delete.success": "Delete Success",
"menu.cloud": "Cloud service capability",
"menu.btn.confirm": "Submit",
"menu.i18n": "I18n Manage",
"theme.title.main": "Personalized configuration",
"theme.title.first": "theme",
"theme.title.default": "Default Theme",
"theme.title.honey": "Honey Theme",
"theme.title.violet": "Violet Theme",
"theme.title.deepness": "Deep Night Sky Theme",
"theme.title.deep": "Dark Theme",
"theme.title.light": "Light Theme",
"theme.title.customization": "Custom Themes",
"theme-title-recommend": "Recommended Topics",
"theme-text-default": "Science and technology, exploration, research, precision, tolerance",
"theme-text-honey": "Bright, sensual, warm, positive, energetic",
"theme-text-violet": "Elegant, romantic, gentle, mysterious, noble",
"theme-text-deepness": "Smooth, Neutral, Space, Strength, Hard",
"theme-text-dark": "Deep, decisive, brave, tenacious, yearning",
"settings.title": "Settings",
"settings.themeColor": "Theme Color",
"settings.content": "Content Setting",
"settings.search": "Search",
"settings.language": "Language",
"settings.navbar": "simple mode",
"settings.menuWidth": "Menu Width (px)",
"settings.navbar.alerts": "alerts",
"settings.navbar.help": "Help Center",
"settings.menu": "classic mode",
"settings.tabBar": "Tab Bar",
"settings.footer": "fashion mode",
"settings.colorWeek": "Theme Configuration",
"settings.alertContent": "After the configuration is only temporarily effective, if you want to really affect the project, click the \"Copy Settings\" button below and replace the configuration in settings.json.",
"settings.copySettings": "Copy Settings",
"settings.copySettings.message": "Copy succeeded, please paste to file src/settings.json.",
"settings.close": "Close",
"settings.color.tooltip": "10 gradient colors generated according to the theme color",
"setting.user.set": "User Settings",
"setting.loginout": "Logout succeeded",
"setting.copy": "Copying succeeded",
"setting.input.search": "Enter a keyword",
"setting.foot.title": "Produced by OpenTiny",
"setting.mode.navbar": "Collapse Header, Footer",
"setting.mode.menu": "Collapse menu",
"setting.mode.footer": "Collapse Footer",
"login.form.mode": "Account and password login",
"login.form.mail": "Email login",
"login.form.title": "Login to Tiny Pro",
"login.form.userName.errMsg": "Username cannot be empty",
"login.form.password.errMsg": "Password cannot be empty",
"login.form.mailName.errMsg": "The mailbox name cannot be empty",
"login.form.mailpassword.errMsg": "The email password cannot be empty",
"login.form.mailpassword2.errMsg": "Confirm password cannot be empty",
"login.form.login.errMsg": "Login error, refresh and try again",
"login.form.login.success": "welcome to use",
"login.form.userName.placeholder": "Username: admin",
"login.form.password.placeholder": "Password: admin",
"login.form.mailName.placeholder": "EmailName:123{'@'}example.com",
"login.form.mailpassword.placeholder": "Password:admin",
"login.form.registerMail.placeholder": "Register Email:",
"login.form.registerPassword.placeholder": "Registration password:",
"login.form.registerConfirmPassword.placeholder": "Confirm Password:",
"login.form.rememberPassword": "Remember password",
"login.form.forgetPassword": "Forgot password",
"login.form.registration": "Sign up",
"login.form.login": "login",
"login.form.register": "register",
"login.form.registerPass": "The verification is successful and the registration is successful",
"login.form.registerError": "Verification failed!",
"login.form.change": "Sign in with",
"login.form.mailInput": "Email:",
"login.form.passwordInput": "Password:",
"login.form.passwordConfirm": "Confirm Password:",
"login.form.checkUsername": "Letters, numbers, underscores, dashes, dots{'@'}Letters, numbers, dashes",
"login.form.checkPassword": "At least eight characters, including at least one uppercase letter, one lowercase letter, and one digit",
"login.form.confirmPassword": "Inconsistent passwords",
"login.banner.slogan1": "Out-of-the-box high-quality template",
"login.banner.subSlogan1": "Rich page templates, covering most typical business scenarios",
"login.banner.slogan2": "Built-in solutions to common problems",
"login.banner.subSlogan2": "Internationalization, routing configuration, state management everything",
"login.banner.slogan3": "Access visualization enhancement tool AUX",
"login.banner.subSlogan3": "Realize flexible block development",
"login.icon.language": "language",
"login.tip.info": "User name: admin; password: admin",
"login.tip.mail": "User name: admin{'@'}example.com; password: admin",
"login.tip.right": "Enter the correct user name and password",
"login.main.text": "TinyPro Mid-Back-End Front-End Solution",
"menu.list.searchTable": "Search Table",
"searchTable.form.number": "Set Number",
"searchTable.form.number.placeholder": "Please enter Set Number",
"searchTable.form.name": "Set Name",
"searchTable.form.name.placeholder": "Please enter Set Name",
"searchTable.form.contentType": "Content Type",
"searchTable.form.contentType.img": "image-text",
"searchTable.form.contentType.horizontalVideo": "Horizontal short video",
"searchTable.form.contentType.verticalVideo": "Vertical short video",
"searchTable.form.filterType": "Filter Type",
"searchTable.form.filterType.artificial": "artificial",
"searchTable.form.filterType.rules": "Rules",
"searchTable.form.createdTime": "Create Date",
"searchTable.form.status": "Status",
"searchTable.form.status.online": "Online",
"searchTable.form.status.offline": "Offline",
"searchTable.form.status.doing": "Ongoing",
"searchTable.form.search": "Search",
"searchTable.form.reset": "Reset",
"searchTable.form.selectDefault": "All",
"searchTable.operation.create": "Create",
"searchTable.operation.import": "Export",
"searchTable.operation.download": "Download",
"searchTable.form.collapse": "Collapse",
"searchTable.form.extend": "Extend",
"searchTable.form.input": "Please enter",
"searchTable.form.create": "Creating a Topic",
"searchTable.columns.number": "ID",
"searchTable.columns.name": "Set Name",
"searchTable.columns.department": "Department",
"searchTable.columns.filterType": "Department Level",
"searchTable.columns.count": "Count",
"searchTable.columns.workname": "Workbench",
"searchTable.columns.enablement": "Enablement",
"searchTable.columns.type": "Person Type",
"searchTable.columns.study": "Institute",
"searchTable.columns.role": "Role",
"searchTable.columns.updatesperson": "Updates Person",
"searchTable.columns.createdTime": "CreatedTime",
"searchTable.columns.status": "Status",
"searchTable.columns.operations": "Operations",
"searchTable.columns.operations.view": "View",
"searchTable.columns.operations.delete": "Delete",
"searchTable.collapse.restores": "restores",
"searchTable.collapse.full": "Full",
"menu.form.step": "Step Form",
"stepForm.button.submit": "Create",
"stepForm.button.cancel": "Cancel",
"stepForm.button.restore": "Restores",
"stepForm.probation.day": "Day",
"stepForm.coaching.process": "Coaching Process",
"stepForm.start.date": "Labor Contract Start Date",
"stepForm.end.date": "Labor Contract End Date",
"stepForm.probation.period": "Probation Period",
"stepForm.probation.start": "Trial Start and End Date",
"stepForm.recruitment.type": "Recruitment Type",
"stepForm.recruitment.position": "Position",
"stepForm.recruitment.department": "Department",
"stepForm.start.coaching": "Start coaching",
"stepForm.immediate.supervisor": "Enter the mentor immediate supervisor",
"stepForm.overall.goals": "Set overall goals",
"stepForm.overall.summary": "Submit the overall summary",
"stepForm.overall.end": "End",
"stepForm.collapse.base": "Coaching Basic Information",
"stepForm.collapse.supervisor": "Entry Supervisor",
"stepForm.collapse.goals": "Set overall goals",
"stepForm.collapse.summary": "Submit the overall summary",
"stepForm.coach.position": "Cultivating Positions",
"stepForm.coach.culture": "Training Department",
"stepForm.coach.mentor": "Mentor",
"stepForm.coach.startTime": "Actual Coaching Start Date",
"stepForm.coach.endTime": "Actual Coaching End Date",
"stepForm.dire.supervisor": "Mentor Supervisor",
"stepForm.dire.remarks": "Mentor Information Remarks",
"stepForm.dire.startTime": "Start Coaching Date",
"stepForm.dire.endTime": "Coaching End Date",
"stepForm.target.list": "Target List",
"stepForm.target.sure": "Set goals",
"stepForm.sum.self": "Self-summarization",
"stepForm.error.target": "At least one item exists on the right",
"stepForm.head.admin": "User name",
"menu.form.base": "Base Form",
"baseForm.form.label.no": "no",
"baseForm.form.label.yes": "yes",
"baseForm.form.label.placeholder": "Please select",
"baseForm.form.label.frequencyone": "By Month",
"baseForm.form.label.frequencytwo": "By Week",
"baseForm.form.label.frequencythree": "By biweekly",
"baseForm.form.label.frequencyfour": "By Quarter",
"baseForm.form.label.personone": "Local employees",
"baseForm.form.label.persontwo": "Non-Employee",
"baseForm.form.label.personthree": "Chinese employees",
"baseForm.form.label.projectone": "Training for new employees of the manufacturing department",
"baseForm.form.label.projecttwo": "On-boarding coaching for new employees",
"baseForm.form.label.projectthree": "UI Automation Test Coaching Project",
"baseForm.form.label.people": "Applicable Populations",
"baseForm.form.label.rank": "Job Level",
"baseForm.form.label.type": "Project Type",
"baseForm.form.label.business": "Service attribute",
"baseForm.form.label.Objectives": "Overall objective",
"baseForm.form.label.culture": "Training Department",
"baseForm.form.label.develop": "develop",
"baseForm.form.label.developone": "Trainees",
"baseForm.form.label.developtwo": "Mentor",
"baseForm.form.label.effective": "Effective Condition",
"baseForm.form.label.effectiveone": "Effective without approval",
"baseForm.form.label.effectivetwo": "Mentor Approval",
"baseForm.form.label.effectivethree": "Immediate supervisor approval",
"baseForm.form.label.effectivefour": "Mentors and immediate supervisors approve the application",
"baseForm.form.label.plan": "Phase Plan",
"baseForm.form.label.confirm": "Whether to develop",
"baseForm.form.label.frequency": "Formulation frequency",
"baseForm.form.label.role": "Goal Setting Role",
"baseForm.form.label.roleone": "Trainees",
"baseForm.form.label.roletwo": "Mentor",
"baseForm.form.label.condition": "Target Effective Condition",
"baseForm.form.label.conditionone": "Effective without approval",
"baseForm.form.label.conditiontwo": "Mentor Approval",
"baseForm.form.label.conditionthree": "Immediate supervisor approval",
"baseForm.form.label.conditionfour": "Mentors and immediate supervisors approve the application",
"baseForm.form.label.staged": "Phase Evaluation",
"baseForm.form.label.stagedone": "Only mentor evaluation is required",
"baseForm.form.label.stagedtwo": "Only immediate supervisor evaluation is required",
"baseForm.form.label.stagedthree": "Need to be evaluated by the mentor and immediate supervisor",
"baseForm.form.label.wholeconfirm": "Whether to develop",
"baseForm.form.label.evaluation": "Overall evaluation",
"baseForm.form.label.evaluationyes": "Mentors and immediate supervisors are required for evaluation",
"baseForm.form.label.evaluationno": "No mentor is required, and the immediate supervisor evaluates it",
"baseForm.form.label.mentortitle": "Mentor Selection",
"baseForm.form.label.mentortip": "Only mentors with valid qualifications can be selected from the mentor resource pool. If you do not select a mentor from the mentor resource pool, the basic qualifications of the mentor will not be verified",
"baseForm.form.label.mentor": "Select Mentor Only from Mentor Resource Pool",
"baseForm.form.label.remindertitle": "Reminder of coaching communication records",
"baseForm.form.label.reminder": "Require Reminder",
"baseForm.form.submit": "Submit",
"baseForm.form.submit.success": "Form submitted successfully",
"baseForm.form.cancel": "Cancel",
"baseForm.form.submit.error": "Please complete the required items first",
"baseForm.form.record": "Version Record",
"baseForm.form.project": "Project Type",
"baseForm.form.get.error": "Failed to obtain data",
"menu.result.success": "Success",
"success.result.title": "The submission result page displays the processing results of a series of operation tasks.",
"menu.result.messageSuccess": "The coaching process is submitted successfully",
"menu.btn.submit": "Start",
"menu.btn.cancel": "Cancel",
"menu.line.process": "Current progress",
"menu.result.messageEnd": "The coaching process has been submitted",
"menu.result.error": "Error",
"error.result.title": "The submission result page displays the processing results of a series of operation tasks",
"menu.result.messageError": "Failed to submit the coaching process",
"error.result.home": "Back",
"menu.exception.403": "403",
"exception.result.403.description": "Access to this resource on the server is denied.",
"exception.result.403.back": "Back",
"exception.result.permissions.403": "Contact the administrator to apply for the permission.。",
"menu.exception.404": "404",
"exception.result.404.description": "Whoops, this page is gone.",
"exception.result.404.retry": "Retry",
"exception.result.404.back": "Back",
"exception.result.permissions.404": "Check the network connection and try to refresh the page.",
"menu.exception.500": "500",
"exception.result.500.description": "Internal server error",
"exception.result.500.back": "Back",
"exception.result.permissions.500": "Check the network connection and try to refresh the page.",
"menu.user.info": "User Center",
"userInfo.tab.one": "My plan",
"userInfo.tab.two": "My mission",
"userInfo.filter.sort": "Sort by Time",
"userInfo.filter.startTime": "Start Date",
"userInfo.filter.endTime": "End Date",
"userInfo.end.positiveOrder": "By end time in positive order",
"userInfo.end.reverseOrder": "In reverse order by end time",
"userInfo.start.positiveOrder": "Start time in positive order",
"userInfo.start.reverseOrder": "Start time in reverse order",
"userInfo.btn.search": "Search",
"userInfo.btn.reset": "Reset",
"userInfo.status.status": "Status",
"userInfo.status.optionA": "Completed",
"userInfo.status.optionB": "Overdue",
"userInfo.status.optionC": "About to expire",
"userInfo.status.optionD": "Unfinished",
"userInfo.type.type": "Type",
"userInfo.type.optionA": "Organizational arrangements",
"userInfo.type.optionB": "Phase Plan",
"userInfo.type.optionC": "autonomous learning",
"userInfo.table.columnA": "Program Name",
"userInfo.table.columnB": "Completion Time",
"userInfo.table.columnC": "Status",
"userInfo.table.columnD": "Type",
"userInfo.week.1": "2 weeks onboarding",
"userInfo.month.1": "1 month onboarding",
"userInfo.month.2": "2 month onboarding",
"userInfo.month.3": "3 month onboarding",
"userInfo.month.4": "4 month onboarding",
"userInfo.month.5": "5 month onboarding",
"userInfo.month.6": "6 month onboarding",
"userInfo.month.7": "7 month onboarding",
"userInfo.month.8": "8 month onboarding",
"userInfo.month.9": "9 month onboarding",
"userInfo.month.10": "10 month onboarding",
"userInfo.month.11": "11 month onboarding",
"userInfo.month.12": "12 month onboarding",
"userInfo.month.13": "13 month onboarding",
"userInfo.month.14": "14 month onboarding",
"userInfo.month.15": "15 month onboarding",
"userInfo.month.16": "16 month onboarding",
"userInfo.month.17": "17 month onboarding",
"userInfo.time.message": "The end time is earlier than the start time",
"userInfo.filter.all": "Please complete all current filters",
"menu.user.setting": "User Setting",
"userSetting.cancel": "Cancel",
"userSetting.reset": "Reset",
"userSetting.department": "Department:",
"userSetting.position": "Position:",
"userSetting.type": "Recruitment Type:",
"userSetting.date": "Trial Start and End Date:",
"userSetting.during": "Probation Period:",
"userSetting.startTime": "Labor Contract Start Date:",
"userSetting.endTime": "Labor Contract End Date:",
"userSetting.first": "Start Time",
"userSetting.last": "End Time",
"menu.plan.department": "Training Department",
"menu.plan.resource": "Human Resource Mgmt Dept",
"menu.plan.job": "Job Level",
"menu.plan.person": "Person Type",
"menu.plan.attribute": "Service attribute",
"menu.plan.develop": "Whether to develop",
"menu.plan.yes": "yes",
"menu.plan.no": "no",
"menu.plan.role": "Develop Roles",
"menu.plan.mentor": "Mentor",
"menu.plan.condition": "Effective Condition",
"menu.plan.approval": "Immediate supervisor approval",
"menu.plan.frequency": "Formulation frequency",
"menu.plan.month": "By Month",
"menu.plan.goal": "Goal Setting Role",
"menu.plan.trainees": "Trainees",
"menu.plan.teacher": "Mentor Approval",
"menu.plan.phase": "Phase Evaluation",
"menu.plan.evaluation": "Need to be evaluated by mentors and immediate supervisors",
"menu.plan.whole": "Overall evaluation",
"menu.plan.pool": "Select Mentor Only from Mentor Resource Pool",
"menu.plan.time": "Update Time",
"menu.plan.version": "Version number",
"menu.plan.operation": "Operation",
"menu.plan.updated": "Updated by",
"work.mock.employees": "Transferred employees",
"work.mock.onboard": "New employee onboarding",
"work.mock.Test": "Test coaching",
"work.mock.week1": "Zero promotion practice (1 weeks)",
"work.mock.week2": "Zero promotion practice (2 weeks)",
"work.mock.week3": "Zero promotion practice (3 weeks)",
"work.mock.network": "Network Reality",
"work.mock.centralized": "Centralized training for new employees",
"work.mock.hardware": "Hardware Installation Practice",
"work.index.learn": "Learning Planning",
"work.index.coach": "Learning coaching",
"work.index.formalization": "Learning Formalization",
"work.index.practiced": "Learning practiced",
"work.index.train": "Centralized training",
"work.index.Inquiry": "Life little helper",
"work.index.Home": "New Employee Home",
"work.index.Guide": "Operation Guide",
"work.index.plans": "Number of plans",
"work.index.Unfinished": "Unfinished",
"work.index.beOverdue": "To Be Overdue",
"work.index.Overdue": "Overdue",
"work.index.trainees": "Number of trainees to start coaching",
"work.index.coachNum": "Number of trainees in coaching",
"work.index.allocated": "Number of trainees to be allocated",
"work.index.start": "Number of trainees to start practice",
"work.index.practice": "Number of trainees in practice",
"work.index.unpark": "Waiting for Start-up to Form",
"work.index.entered": "Evaluation result to be entered",
"work.index.approved": "Evaluation result to be approved",
"work.index.put": "Number of trainees in practice",
"work.index.assign": "Number of trainees to be allocated",
"work.index.prepare": "Prepare for class opening",
"work.index.open": "Open a middle class",
"work.index.classes": "Number of classes to be accepted",
"work.index.policy": "policy",
"work.index.Period": "Probation Period and Development Policy Process for New Employees",
"work.index.Hotline": "Hotline",
"work.index.service": "All kinds of practical hotline service",
"work.index.Attendance": "Attendance",
"work.index.FAQs": "Attendance System and FAQs",
"work.index.Payroll": "Payroll",
"work.index.Tax": "Payroll Tax Q&A",
"work.index.Brave": "Brave New World Landing Program",
"work.index.Growth": "100-day Growth Guide for New Employees",
"work.index.Termbase": "Termbase",
"work.index.lingo": "The latest and hottest terms to help you understand the lingo",
"work.index.Library": "Document Library and Community",
"work.index.domain": "Knowledge document library of the business domain",
"work.index.platform": "Online learning platform",
"work.index.learning": "Online learning",
"work.index.Operation": "New Employee Home Operation Guide",
"work.index.Numbers": "Number",
"work.index.Person": "Person",
"work.index.net": "Net",
"work.index.netonline": "Online consultation",
"home.main.one": "first screen",
"home.main.up": "Page Onload",
"home.main.down": "Sampling PV",
"home.main.day": "yesterday",
"home.curve.trend": "Performance Trends",
"home.curve.play": "Visible on the first screen",
"home.curve.page": "Page Onload",
"home.falls.line": "Load Waterfall Flow",
"home.falls.tcp": "TCP Link",
"home.falls.ssl": "SSL Link",
"home.round.title": "Network speed distribution",
"home.round.unknow": "Unknown",
"home.roundtable.index": "index",
"home.roundtable.space": "Network speed",
"home.roundtable.pv": "Sampling PV (percentage)",
"home.roundtable.play": "Visible on the first screen",
"home.roundtable.page": "Page Onload",
"home.region.title": "Geographical distribution",
"menu.cloud.hello": "Hello World",
"menu.cloud.contracts": "Contract Management",
"menu.cloud.create": "Create Contract",
"menu.cloud.edit": "Edit Contract",
"menu.cloud.del": "Delete Contract",
"menu.cloud.name": "Project Name",
"menu.cloud.id": "Contract No",
"menu.cloud.customer": "Customer Name",
"menu.cloud.description": "Description",
"menu.cloud.updatedAt": "Creation Time",
"menu.cloud.editOpa": "Edits",
"menu.cloud.editDel": "Delete",
"menu.cloud.registerErro": "The project name does not meet the verification rules",
"menu.cloud.sure": "OK",
"menu.cloud.cancel": "Cancel",
"menu.cloud.tip": "The value can contain 3 to 255 characters, including Chinese characters, digits, hyphens (-), underscores (_), dots (.), slashes (/), parentheses (:) and colons (:) in Chinese and English formats, and periods (). The value can start with only English, Chinese characters, and digits.",
"menu.cloud.askDel": "Are you sure you want to delete the following",
"menu.cloud.askContracts": "Contract",
"menu.cloud.askInput": "Input",
"menu.cloud.askSure": "confirm",
"menu.cloud.verification": "Verification failed",
"menu.cloud.editpass": "If the verification is successful, the modification is successful",
"menu.cloud.delpass": "Deleted successfully",
"menu.contracts.name": "The contract name is:",
"http.error.TokenExpire": "Login expired, please log in again",
"http.error.UserNotFound": "user does not exist",
"http.error.UserAlreadyExist": "User already exists",
"http.error.InvalidParameter": "Invalid request parameter",
"http.error.InternalError": "Internal error",
"http.error.ErrorPassword": "Account or password error",
"menu.allUser.info": "All User Info",
"userInfo.table.id": "ID",
"userInfo.table.name": "Name",
"userInfo.table.email": "Email",
"userInfo.table.department": "Department",
"userInfo.table.employeeType": "EmployeeType",
"userInfo.table.job": "Job",
"userInfo.table.probation": "Probation",
"userInfo.table.probationStart": "ProbationStart",
"userInfo.table.probationEnd": "ProbationEnd",
"userInfo.table.probationDuration": "ProbationDuration",
"userInfo.table.protocol": "Protocol",
"userInfo.table.protocolStart": "ProtocolStart",
"userInfo.table.protocolEnd": "ProtocolEnd",
"userInfo.table.address": "Address",
"userInfo.table.status": "Status",
"userInfo.table.createTime": "CreateTime",
"userInfo.table.updateTime": "UpdateTime",
"userInfo.table.operations": "Operation",
"userInfo.table.operations.update": "Update",
"userInfo.table.operations.delete": "Delete",
"userInfo.table.operations.pwdUpdate": "Password",
"userInfo.day": "Day",
"userInfo.modal.title.pwdUpdate": "Update Password",
"userInfo.modal.input.oldPassword": "Old Password",
"userInfo.modal.input.newPassword": "New Password",
"userInfo.modal.input.confirmNewPassword": "Confirm New Password",
"userInfo.modal.message.error": "Confirm New Password Error",
"userInfo.modal.message.notNull": "Password Is Not Null",
"menu.allUser.setting": "User Setting",
"userSetting.name": "UserName",
"userSetting.address": "Address",
"userSetting.status": "Status",
"userInfo.modal.title.add": "Add User",
"userInfo.modal.title.update": "Update User",
"menu.allUser.useradd": "User Add",
"userAdd.cancel": "Cancel",
"userAdd.save": "Save",
"userAdd.email": "Email",
"userAdd.password": "Password",
"userAdd.department": "Department:",
"userAdd.position": "Position:",
"userAdd.type": "Recruitment Type:",
"userAdd.date": "Trial Start and End Date:",
"userAdd.during": "Probation Period:",
"userAdd.startTime": "Labor Contract Start Date:",
"userAdd.endTime": "Labor Contract End Date:",
"userAdd.first": "Start Time",
"userAdd.last": "End Time",
"userAdd.name": "UserName",
"userAdd.address": "Address",
"userAdd.status": "Status",
"menu.allPermission.info": "Permission",
"permissionInfo.table.id": "ID",
"permissionInfo.table.name": "Name",
"permissionInfo.table.desc": "Description",
"permissionInfo.table.operations": "Operation",
"permissionInfo.table.operations.update": "Update",
"permissionInfo.table.operations.delete": "Delete",
"permissionInfo.modal.title.update": "Update Permission",
"permissionInfo.modal.title.add": "Add Permission",
"permissionInfo.modal.input.permission": "Description",
"permissionInfo.modal.input.name": "Name",
"permissionInfo.modal.input.id": "ID",
"permissionInfo.modal.message.error": "Error",
"permissionInfo.modal.message.notNull": "Not Null",
"menu.allRole.info": "All Role Info",
"roleInfo.table.id": "ID",
"roleInfo.table.name": "Name",
"roleInfo.table.desc": "Description",
"roleInfo.table.menu": "Menu",
"roleInfo.table.operations": "Operation",
"roleInfo.table.operations.update": "Update",
"roleInfo.table.operations.delete": "Delete",
"roleInfo.modal.title.update": "Update Role",
"roleInfo.modal.title.add": "Add Role",
"roleInfo.modal.input.id": "ID",
"roleInfo.modal.input.name": "Name",
"roleInfo.modal.input.desc": "Permission",
"roleInfo.modal.input.menu": "Menu",
"roleInfo.modal.message.error": "Error",
"roleInfo.modal.message.notNull": "Not Null",
"roleInfo.permissionTable.id": "ID",
"roleInfo.permissionTable.name": "Name",
"roleInfo.permissionTable.desc": "Description",
"roleInfo.menuUpdate.confirm": "Confirm",
"roleInfo.menuUpdate.cancel": "Cancel",
"roleInfo.table.bind": "Bind Directory",
"menu.allMenu.info": "All Menu Info",
"menuInfo.table.id": "ID",
"menuInfo.table.name": "Name",
"menuInfo.table.order": "Order",
"menuInfo.table.parentId": "ParentID",
"menuInfo.table.menuType": "MenuType",
"menuInfo.table.icon": "Icon",
"menuInfo.table.component": "Component",
"menuInfo.table.path": "Path",
"menuInfo.table.locale": "Locale",
"menuInfo.table.operations": "Operation",
"menuInfo.table.operations.info": "Detail",
"menuInfo.table.operations.update": "Update",
"menuInfo.table.operations.delete": "Delete",
"menuInfo.modal.title.info": "Menu Detail",
"menuInfo.modal.title.update": "Update Menu",
"menuInfo.modal.title.add": "Add Menu",
"menuInfo.modal.message.error": "ParentId is not as same as id",
"menuInfo.modal.message.notNull": "Not Null",
"menuInfo.modal.tips.upd-id": "Before modifying the menu ID, please ensure that the front-end engineer is aware of this matter!",
"menu.add.demo": "Menu Demo Page",
"exception.result.demo.description": "This is a new menu demo page!",
"locale.add.btn": "Add Record",
"locale.add.title": "Add Record",
"locale.add.key": "Key",
"locale.add.content": "Content",
"locale.add.lang": "Language",
"lang.add.title": "Name",
"lang.add.btn": "Confirm",
"lang.manage.btn": "Mange Language",
"locale.add.lang.btn": "Add Language",
"lang.manage.title": "Mange Language",
"lang.manage.remove": "Remove",
"locale.remove": "Remove",
"component.error": "Component Error",
"component.error.contact": "Please contact the administrator or log in again"
},
"zhCN": {
"en-US": "English",
"zh-CN": "中文",
"zh-TW": "中国台湾",
"hello": "你好 {name}",
"code": "zh-CN",
"yes": "是",
"no": "否",
"menu.board": "看板",
"menu.home": "监控页",
"menu.work": "工作台",
"menu.list": "列表页",
"menu.result": "结果页",
"menu.exception": "异常页",
"menu.form": "表单页",
"menu.profile": "详情页",
"menu.profile.detail": "基础详情页",
"menu.visualization": "数据可视化",
"menu.menuPage": "菜单页",
"menu.menuPage.second": "二级菜单",
"menu.menuPage.third": "菜单demo页",
"menu.user": "个人中心",
"menu.systemManager": "系统管理",
"menu.userManager": "用户管理",
"menu.userManager.info": "查看用户",
"menu.userManager.setting": "修改信息",
"menu.userManager.useradd": "添加用户",
"menu.permission": "权限管理",
"menu.permission.info": "查看权限",
"menu.permission.setting": "修改权限",
"menu.permission.permissionAdd": "添加权限",
"menu.role": "角色管理",
"menu.role.info": "查看角色",
"menu.menu": "菜单管理",
"menu.menu.info": "查看菜单",
"navbar.docs": "文档中心",
"navbar.action.locale": "切换为中文",
"messageBox.switchRoles": "切换角色",
"messageBox.userCenter": "用户中心",
"messageBox.userSettings": "用户设置",
"messageBox.logout": "退出登录",
"messageBox.updatePwd": "修改密码",
"message.delete.success": "删除成功",
"menu.cloud": "云服务能力展示",
"menu.btn.confirm": "确认",
"menu.i18n": "国际化管理",
"theme.title.main": "个性化配置",
"theme.title.first": "主题",
"theme.title.default": "默认主题",
"theme.title.honey": "蜜糖主题",
"theme.title.violet": "紫罗兰主题",
"theme.title.deepness": "深邃夜空主题",
"theme.title.deep": "深色主题",
"theme.title.light": "浅色主题",
"theme.title.customization": "自定义主题",
"theme-title-recommend": "推荐主题",
"theme-text-default": "科技、探索、钻研、精尖、包容",
"theme-text-honey": "明快、感性、温暖、积极、活力",
"theme-text-violet": "优雅、浪漫、温柔、神秘、高贵",
"theme-text-deepness": "平稳、中性、空间、力量、坚硬",
"theme-text-dark": "深沉、果断、勇敢、坚韧、向往",
"settings.title": "页面配置",
"settings.themeColor": "主题色",
"settings.content": "内容区域",
"settings.search": "搜索",
"settings.language": "语言",
"settings.navbar": "简约模式",
"settings.menuWidth": "菜单宽度 (px)",
"settings.navbar.alerts": "消息通知",
"settings.navbar.help": "帮助中心",
"settings.menu": "经典模式",
"settings.tabBar": "多页签",
"settings.footer": "时尚模式",
"settings.colorWeek": "主题配置",
"settings.alertContent": "配置之后仅是临时生效,要想真正作用于项目,点击下方的 \"复制配置\" 按钮,将配置替换到 settings.json 中即可。",
"settings.copySettings": "复制配置",
"settings.copySettings.message": "复制成功,请粘贴到 src/settings.json 文件中",
"settings.close": "关闭",
"settings.color.tooltip": "根据主题颜色生成的 10 个梯度色(将配置复制到项目中,主题色才能对亮色 / 暗黑模式同时生效)",
"setting.user.set": "用户设置",
"setting.loginout": "登出成功",
"setting.copy": "复制成功",
"setting.input.search": "请输入关键词",
"setting.foot.title": "OpenTiny 出品",
"setting.mode.navbar": "收起页头,页尾",
"setting.mode.menu": "收起菜单",
"setting.mode.footer": "收起页脚",
"login.form.mode": "账号密码登录",
"login.form.mail": "邮箱登录",
"login.form.title": "登录 Tiny Pro",
"login.form.userName.errMsg": "用户名不能为空",
"login.form.password.errMsg": "密码不能为空",
"login.form.mailName.errMsg": "邮箱名不能为空",
"login.form.mailpassword.errMsg": "邮箱密码不能为空",
"login.form.mailpassword2.errMsg": "确认密码不能为空",
"login.form.login.errMsg": "登录出错,轻刷新重试",
"login.form.login.success": "欢迎使用",
"login.form.userName.placeholder": "用户名:admin",
"login.form.password.placeholder": "密码:admin",
"login.form.mailName.placeholder": "邮箱名:123{'@'}example.com",
"login.form.mailpassword.placeholder": "密码:admin",
"login.form.registerMail.placeholder": "注册邮箱:",
"login.form.registerPassword.placeholder": "注册密码:",
"login.form.registerConfirmPassword.placeholder": "确认密码:",
"login.form.rememberPassword": "记住密码",
"login.form.forgetPassword": "忘记密码",
"login.form.registration": "注册账户",
"login.form.login": "登录",
"login.form.register": "注册",
"login.form.registerPass": "校验通过,注册成功",
"login.form.registerError": "校验不通过!",
"login.form.change": "使用已有账户登录",
"login.form.mailInput": "邮箱:",
"login.form.passwordInput": "密码:",
"login.form.passwordConfirm": "确认密码:",
"login.form.checkUsername": "字母、数字、下划线、短线、点号{'@'}字母、数字、短线",
"login.form.checkPassword": "最少八个字符,至少包含一个大写字母,一个小写字母和一个数字",
"login.form.confirmPassword": "密码输入不一致",
"login.banner.slogan1": "开箱即用的高质量模板",
"login.banner.subSlogan1": "丰富的的页面模板,覆盖大多数典型业务场景",
"login.banner.slogan2": "内置了常见问题的解决方案",
"login.banner.subSlogan2": "国际化,路由配置,状态管理应有尽有",
"login.banner.slogan3": "接入可视化增强工具AUX",
"login.banner.subSlogan3": "实现灵活的区块式开发",
"login.icon.language": "语言",
"login.tip.info": "用户名:admin,密码 admin",
"login.tip.mail": "用户名:admin{'@'}no-reply.com,密码 admin",
"login.tip.right": "请输入正确的用户名密码",
"login.main.text": "TinyPro 中后台前端解决方案",
"menu.list.searchTable": "查询表格",
"searchTable.form.number": "集合编号",
"searchTable.form.number.placeholder": "请输入集合编号",
"searchTable.form.name": "集合名称",
"searchTable.form.name.placeholder": "请输入集合名称",
"searchTable.form.contentType": "内容体裁",
"searchTable.form.contentType.img": "图文",
"searchTable.form.contentType.horizontalVideo": "横版短视频",
"searchTable.form.contentType.verticalVideo": "竖版小视频",
"searchTable.form.filterType": "筛选方式",
"searchTable.form.filterType.artificial": "人工筛选",
"searchTable.form.filterType.rules": "规则筛选",
"searchTable.form.createdTime": "创建时间",
"searchTable.form.status": "状态",
"searchTable.form.status.online": "已上线",
"searchTable.form.status.offline": "已下线",
"searchTable.form.status.doing": "进行中",
"searchTable.form.search": "查询",
"searchTable.form.reset": "重置",
"searchTable.form.selectDefault": "全部",
"searchTable.operation.create": "新建",
"searchTable.operation.import": "批量导出",
"searchTable.operation.download": "下载",
"searchTable.form.collapse": "收起",
"searchTable.form.extend": "展开",
"searchTable.form.input": "请输入",
"searchTable.form.create": "创建主题",
"searchTable.columns.number": "工号",
"searchTable.columns.name": "姓名",
"searchTable.columns.department": "部门",
"searchTable.columns.filterType": "部门层级",
"searchTable.columns.count": "内容量",
"searchTable.columns.workname": "工作台名称",
"searchTable.columns.enablement": "赋能项目",
"searchTable.columns.type": "人员类型",
"searchTable.columns.study": "研究所",
"searchTable.columns.role": "角色",
"searchTable.columns.updatesperson": "最后更新人",
"searchTable.columns.createdTime": "创建时间",
"searchTable.columns.status": "状态",
"searchTable.columns.operations": "操作",
"searchTable.columns.operations.view": "查看",
"searchTable.columns.operations.delete": "删除",
"searchTable.collapse.restores": "还原",
"searchTable.collapse.full": "全屏",
"menu.form.step": "分步表单",
"stepForm.button.submit": "创建",
"stepForm.button.cancel": "取消",
"stepForm.button.restore": "重置",
"stepForm.probation.day": "天",
"stepForm.coaching.process": "辅导流程",
"stepForm.start.date": "劳动合同开始日期",
"stepForm.end.date": "劳动合同结束日期",
"stepForm.probation.period": "试用期时长",
"stepForm.probation.start": "试用起止日期",
"stepForm.recruitment.type": "招聘类型",
"stepForm.recruitment.position": "职位",
"stepForm.recruitment.department": "所属部门",
"stepForm.start.coaching": "启动辅导",
"stepForm.immediate.supervisor": "录入主管",
"stepForm.overall.goals": "制定整体目标",
"stepForm.overall.summary": "提交整体总结",
"stepForm.overall.end": "结束",
"stepForm.collapse.base": "辅导基本信息",
"stepForm.collapse.supervisor": "录入主管",
"stepForm.collapse.goals": "制定整体目标",
"stepForm.collapse.summary": "提交整体总结",
"stepForm.coach.position": "培养职位",
"stepForm.coach.culture": "培养部门",
"stepForm.coach.mentor": "导师",
"stepForm.coach.startTime": "实际辅导开始日期",
"stepForm.coach.endTime": "实际辅导结束日期",
"stepForm.dire.supervisor": "导师主管",
"stepForm.dire.remarks": "导师信息备注",
"stepForm.dire.startTime": "开始辅导日期",
"stepForm.dire.endTime": "结束辅导日期",
"stepForm.target.list": "目标列表",
"stepForm.target.sure": "确立目标",
"stepForm.sum.self": "自我总结",
"stepForm.error.target": "右侧至少存在一项",
"stepForm.head.admin": "用户名",
"menu.form.base": "基础表单",
"baseForm.form.label.no": "否",
"baseForm.form.label.yes": "是",
"baseForm.form.label.placeholder": "请选择",
"baseForm.form.label.frequencyone": "按月",
"baseForm.form.label.frequencytwo": "按周",
"baseForm.form.label.frequencythree": "按双周",
"baseForm.form.label.frequencyfour": "按季度",
"baseForm.form.label.personone": "本地员工",
"baseForm.form.label.persontwo": "非雇员",
"baseForm.form.label.personthree": "中方员工",
"baseForm.form.label.projectone": "制造部新员工培训",
"baseForm.form.label.projecttwo": "公司新员工上岗辅导",
"baseForm.form.label.projectthree": "UI自动化测试辅导项目",
"baseForm.form.label.people": "适用人群",
"baseForm.form.label.rank": "职级",
"baseForm.form.label.type": "项目类型",
"baseForm.form.label.business": "业务属性",
"baseForm.form.label.Objectives": "整体目标",
"baseForm.form.label.culture": "培养部门",
"baseForm.form.label.develop": "制定",
"baseForm.form.label.developone": "学员",
"baseForm.form.label.developtwo": "导师",
"baseForm.form.label.effective": "生效条件",
"baseForm.form.label.effectiveone": "无需审批直接生效",
"baseForm.form.label.effectivetwo": "导师审批",
"baseForm.form.label.effectivethree": "直接主管审批",
"baseForm.form.label.effectivefour": "导师,直接主管审批",
"baseForm.form.label.plan": "阶段计划",
"baseForm.form.label.confirm": "是否需制定",
"baseForm.form.label.frequency": "制定频次",
"baseForm.form.label.role": "目标制定角色",
"baseForm.form.label.roleone": "学员",
"baseForm.form.label.roletwo": "导师",
"baseForm.form.label.condition": "目标生效条件",
"baseForm.form.label.conditionone": "无需审批直接生效",
"baseForm.form.label.conditiontwo": "导师审批",
"baseForm.form.label.conditionthree": "直接主管审批",
"baseForm.form.label.conditionfour": "导师,直接主管审批",
"baseForm.form.label.staged": "阶段评价",
"baseForm.form.label.stagedone": "仅需导师评价",
"baseForm.form.label.stagedtwo": "仅需直接主管评价",
"baseForm.form.label.stagedthree": "需导师,直接主管评价",
"baseForm.form.label.wholeconfirm": "是否需制定",
"baseForm.form.label.evaluation": "整体评价",
"baseForm.form.label.evaluationyes": "需要导师,直接主管评价",
"baseForm.form.label.evaluationno": "不需要导师,直接主管评价",
"baseForm.form.label.mentortitle": "导师选择",
"baseForm.form.label.mentortip": "从导师资源池只能选择导师资格有效的导师,如不从导师资源池选择则不对导师做导师基础资质校验。",
"baseForm.form.label.mentor": "是否仅从导师资源池选择导师",
"baseForm.form.label.remindertitle": "辅导沟通记录提醒",
"baseForm.form.label.reminder": "是否需要提醒",
"baseForm.form.submit": "提交",
"baseForm.form.submit.success": "表单提交成功",
"baseForm.form.cancel": "取消",
"baseForm.form.submit.error": "请先完成必填项",
"baseForm.form.record": "版本记录",
"baseForm.form.project": "项目类型",
"baseForm.form.get.error": "获取数据失败",
"menu.result.success": "成功页",
"success.result.title": "提交结果页用于反馈一系列操作任务的处理结果。",
"menu.result.messageSuccess": "辅导流程提交成功!",
"menu.result.messageEnd": "辅导流程已提交结束!",
"menu.btn.submit": "启动新的辅导",
"menu.btn.cancel": "取消",
"menu.line.process": "当前进度",
"menu.result.error": "失败页",
"error.result.title": "提交结果页用于反馈一系列操作任务的处理结果。",
"menu.result.messageError": "辅导流程提交失败",
"error.result.home": "回到首页",
"menu.exception.403": "403",
"exception.result.403.description": "对不起,您没有访问该资源的权限",
"exception.result.403.back": "返回",
"exception.result.permissions.403": "请联系管理员,申请权限。",
"menu.exception.404": "404",
"exception.result.404.description": "抱歉,页面不见了~",
"exception.result.404.retry": "重试",
"exception.result.404.back": "返回",
"exception.result.permissions.404": "请查看网络连接情况,尝试刷新页面",
"menu.exception.500": "500",
"exception.result.500.description": "抱歉,服务器出了点问题~",
"exception.result.500.back": "返回",
"exception.result.permissions.500": "请查看网络连接情况,尝试刷新页面",
"menu.user.info": "用户中心",
"userInfo.tab.one": "我的计划",
"userInfo.tab.two": "我的任务",
"userInfo.filter.sort": "按时间排序",
"userInfo.filter.startTime": "开始日期",
"userInfo.filter.endTime": "结束日期",
"userInfo.end.positiveOrder": "按截止时间正序",
"userInfo.end.reverseOrder": "按截止时间逆序",
"userInfo.start.positiveOrder": "按开始时间正序",
"userInfo.start.reverseOrder": "按开始时间逆序",
"userInfo.btn.search": "查询",
"userInfo.btn.reset": "重置",
"userInfo.status.status": "状态",
"userInfo.status.optionA": "已完成",
"userInfo.status.optionB": "已逾期",
"userInfo.status.optionC": "即将逾期",
"userInfo.status.optionD": "未完成",
"userInfo.type.type": "类型",
"userInfo.type.optionA": "组织安排",
"userInfo.type.optionB": "阶段计划",
"userInfo.type.optionC": "自主学习",
"userInfo.table.columnA": "计划名称",
"userInfo.table.columnB": "完成时间",
"userInfo.table.columnC": "状态",
"userInfo.table.columnD": "类型",
"userInfo.week.1": "入职2周",
"userInfo.month.1": "入职1个月",
"userInfo.month.2": "入职2个月",
"userInfo.month.3": "入职3个月",
"userInfo.month.4": "入职4个月",
"userInfo.month.5": "入职5个月",
"userInfo.month.6": "入职6个月",
"userInfo.month.7": "入职7个月",
"userInfo.month.8": "入职8个月",
"userInfo.month.9": "入职9个月",
"userInfo.month.10": "入职10个月",
"userInfo.month.11": "入职11个月",
"userInfo.month.12": "入职12个月",
"userInfo.month.13": "入职13个月",
"userInfo.month.14": "入职14个月",
"userInfo.month.15": "入职15个月",
"userInfo.month.16": "入职16个月",
"userInfo.month.17": "入职17个月",
"userInfo.time.message": "结束时间小于开始时间",
"userInfo.filter.all": "请完善当前所有筛选条件",
"menu.user.setting": "用户设置",
"userSetting.save": "保存",
"userSetting.cancel": "取消",
"userSetting.department": "所属部门:",
"userSetting.position": "职位:",
"userSetting.type": "招聘类型:",
"userSetting.date": "试用起止日期:",
"userSetting.during": "试用期时长:",
"userSetting.startTime": "劳动合同开始日期:",
"userSetting.endTime": "劳动合同结束日期:",
"userSetting.first": "开始时间",
"userSetting.last": "结束时间",
"menu.plan.department": "培养部门",
"menu.plan.resource": "人力资源管理部",
"menu.plan.job": "职级",
"menu.plan.person": "人员类型",
"menu.plan.attribute": "业务属性",
"menu.plan.develop": "是否需制定",
"menu.plan.yes": "是",
"menu.plan.no": "否",
"menu.plan.role": "制定角色",
"menu.plan.mentor": "导师",
"menu.plan.condition": "生效条件",
"menu.plan.approval": "直接主管审批",
"menu.plan.frequency": "制定频次",
"menu.plan.month": "按月",
"menu.plan.goal": "目标制定角色",
"menu.plan.trainees": "学员",
"menu.plan.teacher": "导师审批",
"menu.plan.phase": "阶段评价",
"menu.plan.evaluation": "需导师、直接主管评价",
"menu.plan.whole": "整体评价",
"menu.plan.pool": "是否仅从导师资源池选择导师",
"menu.plan.time": "更新时间",
"menu.plan.version": "版本号",
"menu.plan.operation": "操作",
"menu.plan.updated": "更新人",
"work.mock.employees": "转岗员工",
"work.mock.onboard": "新员工上岗",
"work.mock.Test": "测试辅导",
"work.mock.week1": "零促实践(1周)",
"work.mock.week2": "零促实践(2周)",
"work.mock.week3": "零促实践(3周)",
"work.mock.network": "网络实践",
"work.mock.centralized": "新员工集中培训",
"work.mock.hardware": "硬装实践",
"work.index.learn": "学习规划",
"work.index.coach": "学习辅导",
"work.index.formalization": "学习转正",
"work.index.practiced": "学习实践",
"work.index.train": "学习集训",
"work.index.Inquiry": "生活小助手",
"work.index.Home": "新员工之家",
"work.index.Guide": "操作指导",
"work.index.plans": "待制定/确认计划数",
"work.index.Unfinished": "未完成",
"work.index.beOverdue": "即将逾期数",
"work.index.Overdue": "已逾期",