linzhijie
2021-04-12 c632636e2f5b4188b430f5efc9d9f68c8dbe3d6d
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
#\u57FA\u7840\u53C2\u6570
basis.language=Language
basis.fullscreen=Full screen
basis.online=Online
basis.logout=Logout
basis.documentation=Documentation
basis.search=Search
basis.reset=Reset
basis.add=Add
basis.create=Create
basis.edit=Edit
basis.del=Delete
basis.import=Import
basis.export=Export
basis.disable=Disable
basis.top=Put to Top
basis.operate=Operate
basis.reflesh=Refresh
menu.reflesh=Refresh
basis.pleasechoose=Please choose
basis.save=Save
basis.close=Close
basis.createTime=Creating Time
basis.createName=Creator
basis.createBy=CreatorID
basis.languageVersion=Language Version
basis.confirm=Confirm
basis.successfulOperation=Operation Successful
basis.remark=Remark
basis.required=Required
basis.template=Template
basis.expansion=Expansion
basis.fold=Fold
 
#\u83DC\u5355
menu.homepage=Homepage
menu.system.manager=System Management
menu.system.monitoring=System Monitoring
menu.system.util=System Utilities
menu.system.user=User Management
menu.system.role=Role Management
menu.system.menu=Manu Management
menu.system.department=Dept Management
menu.system.post=Post Management
menu.system.disct=Dictionary Management
menu.system.param=Paramater Setup
menu.system.notice=System Notice
menu.system.log=Log Management
menu.system.online=Online User
menu.system.job=Timed Task
menu.system.datamonitor=Data Monitoring
menu.system.serfvermonitor=Service Monitoring
menu.system.formbuild=Form Build
menu.system.codegenerate=Code Generation
menu.system.interface=System Interface
menu.system.operatorlog=Operatoration Log
menu.system.loginlog=Login Log
menu.user.find=Search Users
menu.user.add=Add Users
menu.user.edit=Editor Users
menu.user.del=Delete Users
menu.user.export=Export Users
menu.user.import=Import Users
menu.user.resetpwd=Reset Password
menu.role.find=Search Roles
menu.role.add=Add Role
menu.role.edit=Edit Role
menu.role.del=Delete Role
menu.role.export=Export Role
menu.menu.find=Search Manu
menu.menu.add=Add Manu
menu.menu.edit=Edit Manu
menu.menu.del=Delte Manu
menu.department.find=Search Dept.
menu.department.add=Add Dept.
menu.department.edit=Edit Dept.
menu.department.del=Delte Dept.
menu.post.find=Search Post
menu.post.add=Add Post
menu.post.edit=Modify Post
menu.post.del=Delete Post
menu.post.export=Export Post
menu.dict.find=Search Dictionary
menu.dict.add=Add Dictionary
menu.dict.edit=Edit Dictionary
menu.dict.del=Delete Dictionary
menu.dict.export=Export Dictionary
menu.config.find=Search Parameter
menu.config.add=Add Parameter
menu.config.edit=Modify Parameter
menu.config.del=Delete Parameter
menu.config.export=Export Parameter
menu.notise.find=Search Notice
menu.notise.add=Add Notice
menu.notise.edit=Edit Notice
menu.notise.del=Delete Notice
menu.operlog.add=Search Operation
menu.operlog.del=Delete Operation
menu.monitor.operlog.detail=Log Detail
menu.monitor.operlog.export=Export Log
menu.monitor.logininfor.list=Search Login
menu.monitor.logininfor.remove=Delete Login
menu.monitor.logininfor.export=Export Log
menu.monitor.online.list=Search Online
menu.monitor.online.batchForceLogout=Batch Force Logout
menu.monitor.online.forceLogout=Force Logout
menu.monitor.job.list=Search Job
menu.monitor.job.add=Add Job
menu.monitor.job.edit=Edit Job
menu.monitor.job.remove=Delete Job
menu.monitor.job.changeStatus=Change Status
menu.monitor.job.detail=Job Details
menu.monitor.job.export=Export Job
menu.tool.gen.list=Search GenerateList
menu.tool.gen.edit=Edit GenerateList
menu.tool.gen.remove=Delete GenerateList
menu.tool.gen.preview=Preview Code
menu.tool.gen.code=Generate Code
menu.user.manager=User Management
menu.system.user.manager.view=Manager List
menu.exam.distributor.view=Distributor List
menu.exam.enterprise.view=Client List
menu.exam.enterprise.view1=Search distributors/clients
menu.questionbank.manager=Testbank Management
menu.testbackage.manager=Test Pakcage Management
menu.param.manager=Paramater Management
menu.exam.question.view=View Items
menu.exam.question.list=Search Item List
menu.exam.question.add=Add Item List
menu.exam.question.edit=Modify Item List
menu.exam.question.remove=Delete Item List
menu.exam.product.view=Product Listview
menu.exam.product.list=Search Product List
menu.exam.product.add=Add Product List
menu.exam.product.edit=Edit Product List
menu.exam.product.remove=Product Listremove
menu.exam.extend.view=View Client Test Setup Info
menu.exam.extend.list=Search Extend List
menu.exam.extend.add=Add Extend List
menu.exam.extend.edit=Edit Extend List
menu.exam.extend.remove=Delete Extend List
menu.exam.demographyParam.view=View Demographic Variables
menu.exam.demographyParam.list=Search Demographic Parameter
menu.exam.demographyParam.add=Add Demographic Parameter
menu.exam.demographyParam.edit=Edit Demographic Parameter 
menu.exam.demographyParam.remove=Delete Demographic Parameter
menu.exam.distributor.add=Add Distributor
menu.exam.distributor.edit=Edit
menu.exam.enterprise.add=Add Client 
menu.exam.enterprise.edit=Edit Client
menu.exam.test_package.view=View Test Packages
menu.exam.test_package.list=Search Test Packages
menu.exam.test_package.add=Add Test Packages
menu.exam.test_package.edit=Edit Test Package
menu.exam.test_package.remove=Delete Test Package
menu.exam.subject.view=View Subject List
menu.exam.subject.list=Search Subject List
menu.exam.subject.add=Add Subject List
menu.exam.subject.edit=Edit Subject List
menu.exam.subject.remove=Delete Subject List
menu.exam.level.view=View Test List
menu.exam.level.list=Search Test List
menu.exam.level.add=Add Test List
menu.exam.level.edit=Edit Test List
menu.exam.level.remove=Delete Test List
menu.exam.info.view=View Demographic Info
menu.exam.info.list=Search Demographic Info 
menu.exam.info.add=Add Demographic Info
menu.exam.info.edit=Edit Demographic Info
menu.exam.info.remove=Delete Demographic Info 
menu.exam.sendtask.view=View Test Invite Sendtask
menu.exam.sendtask.list=Search Test Invite Sendtask 
menu.exam.sendtask.add=Add Test Invite Sendtask
menu.exam.sendtask.edit=Edit Test Invitate Sendtask 
menu.exam.sendtask.remove=Delete Test Invite Sendtask 
menu.exam.report.view=View Report Authorization
menu.exam.report.list=Search Report Authorization
menu.exam.report.add=Add Report Authorization
menu.exam.report.edit=Edit Report Authorization
menu.exam.report.remove=Delete Report Authorization
menu.exam.distributor.remove=Delete Distributor
menu.exam.enterprise.remove=Delete Client
menu.exam.user.extend.list=List User Extension
menu.exam.user.extend.add=Add User Extenstion
menu.exam.user.extend.edit=Edit User Extension
menu.exam.testMember.list=Search test-takers
menu.exam.testMember.add=Add Testtaker
menu.exam.testMember.edit=Edit Testtaker
menu.exam.testMember.remove=Delete Testtaker
menu.exam.testMember.export=Export Testtaker
menu.exam.testMember.batchimport=Batch Import Testtaker Listbatchimport
menu.exam.send.view=View Send Status
menu.exam.send.list=View Send Status List
menu.exam.test_package.recover=Recover Test Package List
menu.exam.test_package.testreport=Testtaker Report
 
#JSP
jsp.exam.demographyParam.businessuser=Client
jsp.exam.demographyParam.demographicname=Demographic Variable
jsp.exam.demographyParam.variablestate=Variable Status
jsp.exam.demographyParam.controltype=Control Type
jsp.exam.demographyParam.languagetype=Language Type
jsp.exam.report.languagetype=Report Languge Type
jsp.exam.demographyParam.definitionofdemographicvariables=Define Demographic Variable
jsp.exam.demographyParam.variableencoding=Encode Variable
jsp.exam.demographyParam.dictionarytype=Dictionary Type
jsp.exam.demographyParam.isrequired=Required or Not
jsp.exam.demographyParam.sort=Sort
jsp.exam.distributor.loginname=Username
jsp.exam.distributor.userName=User Name
jsp.exam.distributor.phonenumber=Cell Phone#
jsp.exam.distributor.hrEmail.warn=Multiple email addresses allowed; separate by English comma
jsp.exam.distributor.distributorlist=Distributor List
jsp.exam.distributor.businessmanager=Business Manager
jsp.exam.distributor.legalperson=Legal Person
jsp.exam.distributor.termcooperation=Term cooperaration
jsp.exam.distributor.accountinformation=Account Info
jsp.exam.distributor.loginpassword=Login Password
jsp.exam.distributor.distributorinformation=Distributor Info
jsp.exam.distributor.scopeofcontract=Scope of cont Ract
jsp.exam.distributor.contracttext=Contract
jsp.exam.distributor.contactaddress=Address
jsp.exam.distributor.companysize=Company Size 
jsp.exam.distributor.businesslicense=Business License
jsp.exam.enterprise.companyname=Company Name
jsp.exam.enterprise.distributor=Under Which Distributor
jsp.exam.enterprise.usetimes=Usable Tests Left
jsp.exam.enterprise.effectivetime=Effective Time
jsp.exam.enterprise.corporate=Company Legal Person
jsp.exam.enterprise.listofreviewers=List Testtaker
jsp.exam.enterprise.rechargebusinesstesters=Adjusting # of testtakers allowed
jsp.exam.enterprise.enterpriseinfo=Client Info
jsp.exam.enterprise.whetherreportreceived=HR to receive report or not
jsp.exam.enterprise.availabletesters=# of testtakers allowed remaining
jsp.exam.enterprise.HRmailbox=HR Email Address
jsp.exam.enterprise.corporatelogo=Client Logo
jsp.exam.enterprise.contentofemail=Email template for sending report to HR
jsp.exam.enterprise.HRAcceptsReportType=Type of Report HR to Receive 
jsp.exam.entOperLog.operationtype=Operation Type
jsp.exam.entOperLog.creator=Creator
jsp.exam.entOperLog.usageRecord=Usage record
jsp.exam.entOperLog.logEncoding=Log code
jsp.exam.entOperLog.rechargeTimes=Recharge Time
jsp.exam.entOperLog.occurrences=Occurrences Time
jsp.exam.entOperLog.corporateInformation=Client Info
jsp.exam.entOperLog.testerReceivesReport=Testtaker receive report
jsp.exam.entOperLog.availableTesters=Usable Tests Left
jsp.exam.entOperLog.didTheTestTakersReceiveTheReport=Testtaker to Receive Report or Not
jsp.exam.info.affiliates=Affiliation
jsp.exam.info.userCode=User code
jsp.exam.info.parameterEncoding=Parameter code
jsp.exam.info.parameterName=Parameter Name
jsp.exam.info.parameterValue=Parameter Value
jsp.exam.level.questionnaireName=Test Name
jsp.exam.level.questionnaireCoding=Test code
jsp.exam.level.titleTemplate=Item Template
jsp.exam.product.productPackageName=Product Package Name
jsp.exam.product.questionnaireType=Test Type
jsp.exam.product.productPackageInstructions=Product Package Instruction
jsp.exam.product.addSegment=Add Segment
jsp.exam.product.pleaseSetATitle=Please Set Item
jsp.exam.product.suggestedDuration=Suggested Time Duration
jsp.exam.product.titleTemplate=Title Template
jsp.exam.product.paragraph1=Instruction for 1st Segment
jsp.exam.product.paragraph1Heading=Title of 1st Segment
jsp.exam.product.paragraph_1=Item Description of 1st Segment
jsp.exam.product.topicSetting=Set Item
jsp.exam.product.deleteSegment=Delete Segment
jsp.exam.product.pleaseEnterALanguage=Please enter instruction
jsp.exam.product.pleaseEnterQuestions=Please enter item stem
jsp.exam.product.pleaseSelectATopic=Please select item
jsp.exam.product.the=No.
jsp.exam.product.paragraphInstruction=Instruction
jsp.exam.product.sectionHeader=Section Heading
jsp.exam.product.paragraphTitleDescription=Section Item Description
jsp.exam.product.permanentNumber=Permanent ID#
jsp.exam.product.addTopic=Select Item
jsp.exam.product.importQuestionsInBatches=Batch Import Items
jsp.exam.product.titleDimensionSetting=Set Test Dimension
jsp.exam.product.titleCode=Item Endocing
jsp.exam.product.questionnaireTypeCode=Test Type Code
jsp.exam.product.questionStem=Iem Stem
jsp.exam.product.questionnaireTypeName=Test Type Name
jsp.exam.product.totalScore=Total Score
jsp.exam.product.instruction=Instruction
jsp.exam.product.showSearch=Show Search
jsp.exam.product.title=Title
jsp.exam.product.pleaseSelectTheQuestionnaireType=Please select Test Type
jsp.exam.product.pleaseSelectADimension=Please select Dimension
jsp.exam.product.productPackageNumber=Product Package Code
jsp.exam.product.productShelves=Product Shelf/OffShelf
jsp.exam.product.doYouRemoveThisProduct=Will you Offshelf this Product?
jsp.exam.question.questionNumberPermanent=Item Permanent ID
jsp.exam.question.dimension=Dimension
jsp.exam.question.pleaseSelectADimension=Please select Dimension
jsp.exam.question.totalScore=Total Score
jsp.exam.question.questionStem=Item Stem
jsp.exam.question.pleaseComplete=Please complete
jsp.exam.question.addOption=Add Option
jsp.exam.question.preview=Preview
jsp.exam.question.correctAnswer=Correct Answer
jsp.exam.question.pleaseFillInTheOptions=Please fill the option
jsp.exam.question.singleChoice=Single Choicce
jsp.exam.question.multipleChoice=Multiple Choices 
jsp.exam.question.judgment=Judgment 
jsp.exam.question.fillInTheBlank=Fill in Blank
jsp.exam.question.dimensionEncoding=Dimension code
jsp.exam.report.userCode=User code
jsp.exam.report.downloadPermissions=Download Permission
jsp.exam.report.answerStatus=Test Completion Status
jsp.exam.report.exportEvaluationUserAnswerRecords=Export Testtaker Responses
jsp.exam.report.exportBaseReport=Regenerate Basic Report and Export Report
jsp.exam.report.exportVerboseReport=Regenerate Complete Report and Export Report
jsp.exam.report.requestToDownloadTheSecondTestReport=Request Downloading 2nd Report
jsp.exam.report.001=Please select users who completed the test
jsp.exam.report.002=Confirm export all
jsp.exam.report.003=Data is being exported, please wait\u2026
jsp.exam.report.004=Some complete reports are not allowed to be downloaded. Please select again.
jsp.exam.report.005=Under construction
jsp.exam.report.006=Test package
jsp.exam.report.007=Test Product
jsp.exam.report.008=User Name
jsp.exam.report.009=Client Name
jsp.exam.report.010=Distributor User
jsp.exam.report.011=Batch Approving Passed
jsp.exam.report.012=Authorizing report
jsp.exam.report.013=Report code
jsp.exam.report.014=Test Package code
jsp.exam.report.015=Product code
jsp.exam.report.016=Approval Status
jsp.exam.report.017=Are you sure to disallow downloading complete report?
jsp.exam.report.018=Are you sure to allow downloading complete report?
jsp.exam.report.019=Please select at least one record
jsp.exam.sendtask.001=Test Invite Sending Task
jsp.exam.sendtask.002=User ID
jsp.exam.sendtask.003=Receiver
jsp.exam.sendtask.004=Invite Type
jsp.exam.sendtask.005=Send Platform
jsp.exam.sendtask.006=Number of Text Messages
jsp.exam.subject.001=Dimension Name
jsp.exam.subject.002=Please select test type
jsp.exam.test_package.001=Language
jsp.exam.test_package.002=Product Package
jsp.exam.test_package.003=HR Email for Receving Report
jsp.exam.test_package.004=Expiration Date
jsp.exam.test_package.005=Test Invite Email Template
jsp.exam.test_package.006=recycle 
jsp.exam.test_package.007=Report
jsp.exam.test_package.008=Client code
jsp.exam.test_package.009=Assigned # of Tests 
jsp.exam.test_package.010=# of Tests Completed
jsp.exam.test_package.0101=# of Tests Incomplete
jsp.exam.test_package.011=# of Tests Not Started
jsp.exam.test_package.012=HR Email Address
jsp.exam.test_package.013=Please select a test package for recylcing
jsp.exam.test_package.014=Can only expire one test package
jsp.exam.test_package.015=Can only export report from one product package
jsp.exam.test_package.016=View Report
jsp.exam.test_package.017=Sender
jsp.exam.test_package.018=Email Subject
jsp.exam.test_package.019=Email Content
jsp.exam.test_package.020=Email System
jsp.exam.test_package.021=Please make sure to include in the text message
jsp.exam.test_package.022=Text message content
jsp.exam.test_package.023=Number of total characters
jsp.exam.test_package.024=(Fixed characters: testlink,30; signature,5); count of text messages
jsp.exam.test_package.025=Note: maximal number of character in one text message is 70, including Chinese, English, symbols, etc.
jsp.exam.test_package.026=Please add at the end of the text message,"Type N to unsubscribe"
jsp.exam.test_package.027=Text System "Type N to unsubscribe"
jsp.exam.test_package.028=Batch Importing
jsp.exam.test_package.029=Send Emails
jsp.exam.test_package.030=Send Text Messages
jsp.exam.test_package.031=View Send Status
jsp.exam.test_package.032=Testtaker List
jsp.exam.test_package.033=Testtaker code
jsp.exam.test_package.034=Time completing the test
jsp.exam.test_package.035=Text Message Status
jsp.exam.test_package.036=Test Message Time
jsp.exam.test_package.037=Email Status
jsp.exam.test_package.038=Email Time
jsp.exam.test_package.039=Please select testtakers whom to send test invite.
jsp.system.config.001=Parameter Name
jsp.system.config.002=Parameter Key Name
jsp.system.config.003=Parameter Key Value
jsp.system.config.004=System Imbed
jsp.system.config.005=Parameter Key Name Already Existing
jsp.system.dept.001=Superior Dept
jsp.system.dept.002=Dept
jsp.system.dept.003=Show Ordering
jsp.system.dept.004=Contact Person
jsp.system.dept.005=Telephone
jsp.system.dept.006=Dept Already Existing
jsp.system.dept.007=Cannot select parent dept
jsp.system.dict.data.001=Dictionary Label
jsp.system.dict.data.002=Dictionary Key Value
jsp.system.dict.data.003=Dictionary Type
jsp.system.dict.data.004=Style Attributes
jsp.system.dict.data.005=Dictionary Sort
jsp.system.dict.data.006=Echo Style
jsp.system.dict.data.007=Default
jsp.system.dict.data.008=Main
jsp.system.dict.data.009=Success
jsp.system.dict.data.010=Info
jsp.system.dict.data.011=Warning
jsp.system.dict.data.012=Danger
jsp.system.dict.data.013=Showing Style Attributes of Dictionary Column
jsp.system.dict.data.014=System Default
jsp.system.dict.data.015=Dictionary Name
jsp.system.dict.data.016=Data Status
jsp.system.dict.data.017=Dictionary code
jsp.system.dict.data.018=This type of dictionary already exists.
jsp.system.menu.001=Higher Level Manu
jsp.system.menu.002=Manu Type
jsp.system.menu.003=Manu Name
jsp.system.menu.004=Contents
jsp.system.menu.005=Manu
jsp.system.menu.006=Key
jsp.system.menu.007=Rquest Address
jsp.system.menu.008=Open Method
jsp.system.menu.009=Bookmark
jsp.system.menu.010=New Window
jsp.system.menu.011=Authority Label
jsp.system.menu.012=Icon
jsp.system.menu.013=Select Icon
jsp.system.menu.014=Manu Status
jsp.system.post.001=Position Title
jsp.system.post.002=Position code
jsp.system.post.003=Displaying Order
jsp.system.post.004=Position Status
jsp.system.post.005=Position Code Already Exist
jsp.system.post.006=Position Name Already Exist
jsp.system.role.001=Role Name
jsp.system.role.002=Permission Character
jsp.system.role.003=Menu Permission
jsp.system.role.004=Role Name Already Exist
jsp.system.role.005=Role Permission Already Exist
jsp.system.role.007=Batch Canceling Permission
jsp.system.role.008=Data Range
jsp.system.role.009=All Data Permission
jsp.system.role.010=Custom Data Permission
jsp.system.role.011=Dept Data Authority
jsp.system.role.012=Dept and Below Dataq Authority
jsp.system.role.013=Personal Data Access Only
jsp.system.role.014=Assign Data Permission
jsp.system.role.015=Assign User
jsp.system.role.016=Are you sure you want to stop the role?
jsp.system.role.017=Are you sure you want to stop the role?
jsp.system.user.001=Demographic Info
jsp.system.user.002=User Name
jsp.system.user.003=Dept Affiliation
jsp.system.user.004=Cell Phone#
jsp.system.user.005=Login Account
jsp.system.user.006=Login Password
jsp.system.user.007=User Sex
jsp.system.user.008=Position
jsp.system.user.009=Role
jsp.system.user.010=Other Info
jsp.system.user.011=Email Already Exist
jsp.system.user.012=Cell Phone# Already Exist
jsp.system.user.013=User Already Exist
jsp.system.user.014=Are you sure you want to stop this user?
jsp.system.user.015=Are you sure you want to stop this user?
jsp.main.001=TAI Introduction
jsp.main.002=Please scan the QR code to vist
jsp.main.003=Testing Service System mainly contains 4 modules: User, client, distributor, and system admin
jsp.main.004=The Current Version
jsp.main.005=v1.0.6: Release on 2020-01-17, function enhancement and fixing bugs
jsp.main.006=v1.0.5: Release on 2020-01-12, JAQ functionality
jsp.main.007=v1.0.4: Release on 2020-01-10, JAQ functionality
jsp.main.008=v1.0.3: Release on 2019-12-29, Some funcationalities
jsp.main.009=2019-12-12 \uFF1AFirst Package Release, informal testing version
jsp.main.010=Module Description
jsp.main.011=User : Completed applications in User End in the testing system, H5 method, and support openning in Browsers (IPAD, Cell Phone, or PC); completed survey questionnaire.
jsp.main.012=Client : Client information configuration, including client user login, parameter setting, test package configuration and management, data analysis, security strategy, search.
jsp.main.013=Distributor: Testing Service System (Distributor)
jsp.main.014=System Admin: Testing Service System (System Admin)
jsp.main.015=Update Log
jsp.main.016=Version Update Content
jsp.main.017=Function Bug Fixing
jsp.main.018=For details, see: Testing system-report-2020-01-15-wzp.xlsx
jsp.main.019=Version Update Content
jsp.main.020=Client End: Users may take the test through text messages or emails 
jsp.main.021=Report Generation (Need to continue to modify according to three types of test)
jsp.main.022=Submit the test; Support continuing to answer next time.
jsp.main.023=Export reports and generate a zip file
jsp.main.024=Batch importing documents (Need to continue to modify modules acoridng to three test types)
jsp.main.025=Logic of not allowing to retake a test after completion
jsp.main.026=Item dimension: Modify according to three test types
jsp.main.027=Test type: Modify according to three test types
jsp.main.028=Item type: Modify according to three test types
jsp.main.029=Product package type: Modify according to three test types
jsp.main.030=Image upload optimization
jsp.main.031=Multiple Languages
jsp.main.032=Front-end framework transformation; support three test types of items"
jsp.main.033=Adjustment and optimization of user, distributor, and client basic info
jsp.main.034=Test pacakge 2nd time download Logic (not optimized)
jsp.main.035=Delete sensitive info, independent program
jsp.main.036=Recycling testtakers (expire password)
jsp.main.037=Separate program for the number of times of recycling after expiration
jsp.main.038=The logic of computing component consumption by client
jsp.main.039=Fixing a few bugs
jsp.main.040=Internationalizatin of Manu
jsp.main.041=Fix the synchronization of answer completion status and during the test
jsp.main.042=Client End: Suppor taking tests through text message or email invitation
jsp.main.043=Client End: Product pakcage demographic info collection, product package testing responding, submit the test
jsp.main.044=Improving the management of distributor, client, support contracts and other information
jsp.main.045=Test bank management: Product package list adds topic relations,support setting up items in segments, add test type
jsp.main.046=Test bank management: Add previewing test item function, support item image uploading
jsp.main.047=Test package list adds functions in region, language type,testtaker numbers, number of testtakers who completed the test, and number of testtakers who did not start the test
jsp.main.048=Test package supports sending emails, text message, or view report
jsp.main.049=Demographic variables support multiple-language setup
jsp.main.050=Client Management: Users are operators of the system. This function is sued to complete system user configuration. Can create system users, assign first-tier distributor role. First-tier distributors may create second-tier distributors, and second-tier distributors may create clients. (User management includes admin list, distributor list, and client list)
jsp.main.051=Role Management: Role menu permission assignment,set role to divide the data scope and permissions according to the organization"
jsp.main.052=Dictionary Management: Maintain some relatively fixed data frequently used in the system,mainly serving parameter translation in the system
jsp.main.053=Operation Log: System normal operation log record and query; System usual information logging and query
jsp.main.054=Login Log: System login log records searching, including unusual login
jsp.main.055=Online user: currently active user status monitoring
jsp.main.056=Timed Task: Online (add, modify, delete) task scheduling including execution result log
jsp.main.057=Test Bank Management: Product package management, item dimension, item list
jsp.main.058=Test Package Management: Test package list, batch importing testtakers' names
jsp.main.059=Parameter setup: Client info maintanence and demographic variable difinitin
jsp.main.060=TAI Online Testing System: Baselne version released
jsp.main.061=Client Module
jsp.main.062=Distributor Module
jsp.main.063=System Admin Module
 
#\u5B57\u5178
dict.ic1=Male
dict.ic2=Female
dict.ic3=Unknown
dict.ic4=Show
dict.ic5=Hide
dict.ic6=Normal
dict.ic7=Stop
dict.ic8=Normal
dict.ic9=Pause
dict.ic10=Default
dict.ic11=System
dict.ic12=Yes
dict.ic13=No
dict.ic14=Notice
dict.ic15=Annoucement
dict.ic16=Normal
dict.ic17=Close
dict.ic18=Add
dict.ic19=Edit
dict.ic20=Delete
dict.ic21=Authorize
dict.ic22=Export
dict.ic23=Import
dict.ic24=Force Logout
dict.ic25=Generate Code
dict.ic26=Clear Data
dict.ic27=Success
dict.ic28=Failure
dict.ic100=
dict.ic101=Normal
dict.ic102=Delete
dict.ic103=Phase 1
dict.ic104=Phase 2
dict.ic105=Phase 3
dict.ic106=System User
dict.ic107=Distributor Uer
dict.ic108=Client User
dict.ic109=Single-choice item
dict.ic110=Multipe-choice item
dict.ic111=Judgment
dict.ic112=Age
dict.ic113=Chinese
dict.ic114=English
dict.ic115=Type One
dict.ic116=Type Two
dict.ic117=Normal
dict.ic118=Stop
dict.ic119=Cognitive Test Package
dict.ic120=Job Analysis Test Package
dict.ic121=China
dict.ic122=Thailand
dict.ic123=U.S.
dict.ic124=Chinese
dict.ic125=English
dict.ic126=\u0E44\u0E17\u0E22
dict.ic127=In Use
dict.ic128=Pause
dict.ic129=End
dict.ic130=Expire
dict.ic131=Text Box
dict.ic132=Dropdown Box
dict.ic133=Single Box
dict.ic134=Hidden Box
dict.ic135=Text Message
dict.ic136=Email
dict.ic137=Unprocessed
dict.ic138=Sent
dict.ic1388=no send
dict.ic139=Sending
dict.ic140=Sending failure
dict.ic141=Returned mail
dict.ic142=Date Control
dict.ic144=Unprocessed
dict.ic145=Sent
dict.ic146=Sending
dict.ic147=Sending failure
dict.ic148=Returned message
dict.ic149=Unprocessed
dict.ic150=Sent
dict.ic151=Sending
dict.ic152=Sending failure
dict.ic153=Returned 
dict.ic154=Unprocessed
dict.ic155=Completed
dict.ic156=Taking the test
dict.ic157=Void
dict.ic158=\u3010TAI Testing\u3011
dict.ic159=\u3010TAI Testing\u3011
dict.ic160=Client Email Account
dict.ic161=Recycle
dict.ic162=Expired colletion
dict.ic163=Can receive report
dict.ic164=Do not send report
dict.ic165=Personality Test Package
dict.ic166=Job Analysis Questionnaire Template
dict.ic167=Personality Questionnaire Template
dict.ic168=Cogntive Questionnaire Template
dict.ic169=Not permitted
dict.ic170=Permitted
dict.ic171=Pending approval
dict.ic172=Add how many 
dict.ic173=Client Recycle
dict.ic174=Recycling Due
demography.level.ic1=Employee
demography.level.ic2=First-line Supervisor
demography.level.ic3=Mid-level Manager
demography.level.ic4=High-level Manager
 
#\u7528\u6237
user.login.username=Username
user.login.password=Password
user.login.code=Verifying Code
user.login.remember=Remember
user.login.submit=Submit
 
#\u9519\u8BEF\u6D88\u606F
not.null=*Must complete
user.jcaptcha.error=Verifying Code Error
user.not.exists=User not existing/Password error
user.password.not.match=User not existing/Password error
user.password.retry.limit.count=Password incorrect(0)time
user.password.retry.limit.exceed=Password incorrect(0)time,user is locked for 10 minutes
user.password.delete=Sorry, your account has been deleted.
user.blocked=User has been banned, please contact system administrator
role.blocked=Role has been banned, please contact system administrator
user.logout.success=Logout successful
length.not.valid=Length must be between {min} and {max}
user.username.not.valid=*Must have 2-20 Chinese characters,letters,numbers,or underscore; Cannot strat with number
user.password.not.valid=*5-50 characters
user.email.not.valid=Email Format Error
user.mobile.phone.number.not.valid=Cell Phone# Format Error
user.login.success=Login successful
user.notfound=Please log in agaain
user.forcelogout=You are forced out by system adiminister, please log in again.
user.unknown.error=Unknown error, please log in again.
upload.exceed.maxSize=The file you upload exceeds the maximum! <br/>The maximal document size allowed is: {0}MB!
upload.filename.exceed.length=Maximimal length of uploaded file name is {0}characters.
no.permission=You do not have access to the data. Please contact system administer.[{0}]
no.create.permission=You do not have permission to create data. Please contact system administer.[{0}]
no.update.permission=You do not have permission to edit data. Please contact system administer.[{0}]
no.delete.permission=You don not have permission to delete data. Please contact system administer.[{0}]
no.export.permission=You don not have permission to export data. Please contact system administer.[{0}]
no.view.permission=You don not have permission to view data. Please contact system administer.[{0}]
 
jsp.system.user.profile.001=Modify Avatar
jsp.system.user.profile.002=Username
jsp.system.user.profile.003=Cell Phone#
jsp.system.user.profile.004=Dept
jsp.system.user.profile.005=Email Address
jsp.system.user.profile.006=Creat Time
jsp.system.user.profile.007=Sex
jsp.system.user.profile.008=Old Password
jsp.system.user.profile.009=New Password
jsp.system.user.profile.010=Confirm New Password
jsp.system.user.profile.011=Client Name
jsp.system.user.profile.012=Upload Image
jsp.system.user.profile.013=Please enter your password again.
jsp.system.user.profile.014=Please enter old password.
jsp.system.user.profile.015=Old password incorrect.
jsp.system.user.profile.016=Please enter the new password
jsp.system.user.profile.017=Password must have at least 6 characters.
jsp.system.user.profile.018=Password must not have longer than 20 characters.
jsp.system.user.profile.019=Passwords do not match.
jsp.system.user.profile.020=Basic Info
jsp.system.user.profile.021=Modify Password
jsp.system.user.profile.022=Personal Info
jsp.system.user.profile.023=Personal Center
jsp.system.user.profile.024=Log out
jsp.system.user.profile.025=User Type
jsp.system.user.profile.026=User Name
jsp.system.user.profile.027=Begin Time
jsp.system.user.profile.028=End time
basis.state=Status
basis.name=Name
basis.url=Link
basis.type=Type
basis.sort=Sort
basis.visible=Visible
basis.updateTime=Update Time
basis.message=Message
basis.number=Number
basis.title=Title
basis.platform=Platform
basis.addressee=Address
basis.content=Content
basis.testPackageName=Test Package Nme
basis.testProducts=Product Name
basis.area=Region
jsp.monitor.operlog.systemModule=System Module
jsp.monitor.operlog.logNumber=Log Number
jsp.monitor.operlog.operator=Operator
jsp.monitor.operlog.hostComputer=Host Computer
jsp.monitor.operlog.operatingPlace=Operating Place
jsp.monitor.operlog.operationStatus=Operation Status
jsp.monitor.operlog.operationFailed=Operation failed.
jsp.monitor.operlog.operatingTime=Operation Time
basis.clear=Clear
jsp.exam.product.bulkImportTips=Reminder: Only "xls" or "xlsx" files can be imported.
jsp.exam.product.question=Title
jsp.exam.product.description=Description
jsp.exam.product.deletQeution=Delete item
jsp.monitor.online.loginAddress=Login Address
jsp.monitor.online.operator=Operator
jsp.monitor.online.retreat=Force Logout
jsp.monitor.online.sessionNumber=Session Number
jsp.monitor.online.registrationLocation=Login Location
jsp.monitor.online.browser=Browser
jsp.monitor.online.operatingSystem=Operating System
jsp.monitor.online.sessionState=Session Status
jsp.monitor.online.logInTime=Login Time
jsp.monitor.online.lastAccessTime=Last Access Time
basis.offline=Offling
jsp.message.error.warn=Operation not normal
jsp.warning.ForNonBusinessUsers=You are not a client - only clients can vivist
jsp.demographic.name=Demographic Variable Name
jsp.multilingual.version=Multi-language Version
jsp.add.language=Add Language
jsp.loading.wait=Loading\u2026, please wait.
jsp.cancel.btn=Cancel
jsp.testPackage=Test Package
jsp.testPackage.department=Dept
jsp.testPackage.name=Name
jsp.testPackage.email=Email Address
jsp.testPackage.firstName=First Name
jsp.testPackage.lastName=Last Name
basis.freelogin=Direct Login
jsp.system.user.profile.029=Return to Main Account
jsp.exam.test_package.startTime=Test Start time
jsp.exam.test_package.endTime=Test Ending time
jsp.exam.test_package.testinfo=View Progress
jsp.exam.test_package.testtoken=token
jsp.exam.test_package.timeSpent=Time Spent
jsp.exam.demographyParam.isSelect=Test Package Chooses by Default?
jsp.exam.quesiton.permanentidDuplicate=Dupicate of Permanent ID#
jsp.exam.product.addpart=Add Segment
jsp.exam.product.partTimeout=Timeout Setup
jsp.exam.product.score=Lowest Score
jsp.exam.product.thePart=Segment
jsp.exam.question.score=Score
jsp.exam.question.item=Option
jsp.exam.product.pleaseSetATitleDimension=Please set test dimension
jsp.exam.product.signal=Signal value determining mid-test messsage content
jsp.exam.product.signalDiscript=Mid-test Message
jsp.exam.product.addsinal=Add Mid-test Message
jsp.level.questionnaireTypeAndQuestionType=Test Type * Item Type
jsp.level.questionnaireType=Test Type
jsp.level.questionType=Item Type
jsp.exam.product.pleaseSelectLangType=Please Select Language Type
jsp.exam.product.isCreate=Create New Product Package?
jsp.exam.product.version=Version
jsp.exam.product.versionId=Version ID
jsp.exam.question.dimensionName=Dimension
jsp.exam.product.isCreateTip=Select to create an identiccal product package and assign a new version
jsp.exam.product.noProduct=Invalid product package; please contact system administer.
jsp.exam.report.TestPackage=Test Package Name
jsp.exam.report.Test=Product Package Name
jsp.exam.report.BeginTime=Test Begin Time
jsp.exam.report.EndTime=Test End time
jsp.exam.report.downloadRight=Download Permission
jsp.exam.report.questionStatus=Test Taking Status
jsp.exam.report.productName=Product Package Name
jsp.exam.report.noTemplate=No report was assigned
jsp.exam.member.invalidProductPackage=Invlid product package; please choose appropriate product package for test package.
jsp.exam.testPackage.autoSendReport=Test taker to receive report
jsp.exam.product.deleteSinal=Delete message
jsp.exam.quesiton.reportTilte=Report
jsp.exam.quesiton.reportContent=Test completed.
jsp.exam.product.enterpriseSelect=Please choose distributor
jsp.exam.textPackageExport=Export Report
jsp.exam.productReportTemplate=Report
jsp.exam.report.exportSendedReport=Download generated reports
jsp.exam.report.sendedReport=Generated report
jsp.exam.report.noHisReport=Historial report not existing
jsp.exam.test_package.hrinvitationEmailContent=Email template of sending report to HR email address
jsp.exam.report.pleaseTemplate=Please assign report type
jsp.exam.product.questionsAndAnswers=Question&Answer Item
jsp.exam.product.questionsAndAnswers.title=Abstract&Reasoning Item
jsp.exam.product.selectIntelliAlert=Can only select one item
jsp.exam.product.deleteTitleQuestionAleter=Delete this item and subitems under it.
jsp.test.number.setting=Setup Usage Numer
jsp.product.package.authorization=Authorizing Product Package
jsp.exam.userpaper.reporttype=Report Type
jsp.exam.template.reporttype=Report Type
jsp.exam.template.templatetype=Report Template Type
jsp.exam.template.templatelan=Report Template Language
jsp.exam.template.templateaddress=Template Address
jsp.exam.template.reportdict=Report Library
jsp.exam.template.ispic=Is picture or not?
jsp.exam.product.precautions=Attention: Do not copy and paste product package instruction from the WORD file, but do that from the TXT file.
jsp.exam.librarycode.englishdictionarycontent=English Dictionary Content 
jsp.exam.librarycode.chinadictionarycontent=Chinese Dictitionary Content
jsp.exam.librarycode.twdictionarycontent=Thai Dictionary Content
basis.downloap=Download
basis.pleaseentermultilingualinformation=Please enter multi-language info
basis.cclntadd=Record exists, cannot add!
basis.totalnumberoftesters=# of tests already assigned
jsp.exam.report.regenerateReport=Regenerate and Export Report
jsp.exam.testPackage.position=Target Position
jsp.exam.testPackage.professionalCategory=Job Family
jsp.exam.testPackage.superiorPosition=Superior Position Title
access.number=Access Number
login.status=Login Status
operation.information=Operation Info
mission.name=Task Name
task.grouping=Task Grouping
task.status=Task Status
reception.reception=Log
task.number=Task Number
call.target.string=Call target string
execute.expression=Execute expression
operating.operating=Operation
execution.status=Execution Status
execution.time=Execution Time
log.information=Log Info
detailed.detailed=Detail
call.example=Parameter Description\uFF1ASupport String,bool,long,float,int.
execution.strategy=Exception Strategy
default.strategy=Default Strategy
execute.immediately=Execute Immediately
execute.once=Execute Once
give.up=Give Up Execute
concurrent.execution=Concurrent Exception
incorrect.expression=Error Expression
log.sequence.number=Log Number
exception.information=Exception Info
next.execution.time=Next Execution Time
prohibit.prohibit=Forbid
report.type.code=Report Type Number
number.number=Number
download.template=Download Template
prompt.information=Reminder: Only "xls" or "xlsx" format is allowed for importing
import.report.type=Import Which Report Type 
report.download=Download report
report.situation=Report Info
mail.to.hr=Send email to HR
view.report=View Report
is.it.a.first.level.distributor=Whether 1st-tier distributor?
evaluator.search=Search Test Takers
report.template.configuration=Report Template Config
 
please.choose.user = Please choose user
system.hint = System Prompt
basic.tip1 = Imported file language or format is incorrect. Please check items and number of languages chosen.
basic.tip2 = Please choose test type
basic.tip3 = Reminder: Only "xls" or "xlsx" format is allowed for importing
basic.tip4 = Data is being exported; please wait...
basic.tip5 = Please choose item dimension
basic.tip6 = Confirm delete
basic.tip7 = Please choose at least one record
basic.tip8 = Make sure to clear all
 
basic.tip9 = Welcome
basic.tip10 = Please log in
basic.tip11 = Click to change verification code
basic.tip12 = System Admin System
basic.tip13 = Verifying.... please wait
basic.tip14 = Log in
 
demography_industry.ic1=Agriculture, forestry, animal husbandry and fishery
demography_industry.ic2=Mining
demography_industry.ic3=Manufacturing
demography_industry.ic4=Electricity, heat, gas and water production and supply
demography_industry.ic5=Construction
demography_industry.ic6=Wholesale and retail
demography_industry.ic7=Transportation, storage and postal service
demography_industry.ic8=Accommodation, food and beverage\u00A0
demography_industry.ic9=Information transmission, software, and information technology
demography_industry.ic10=Finance
demography_industry.ic11=Real estate
demography_industry.ic12=Leasing and business services
demography_industry.ic13=Scientific research and technical service
demography_industry.ic14=Water resource, environment and public facilities management
demography_industry.ic15=Resident services, repairs and other services
demography_industry.ic16=Education
demography_industry.ic17=Health and social work
demography_industry.ic18=Culture, sports and entertainment
demography_industry.ic19=Public administration, social security and social organization
demography_industry.ic20=International organizations
Export.Test.Link=Export Test Link
testPackage.TestPassword=Test password
operation.record=Operation Record
jsp.exam.test_package.11111=Please select testtakers whom to send test invite.
confirm.to.send.selected=Are you sure to email an test invitatation to the [
confirm.to.send.selected.sms=Are you sure to sms an test invitatation to the [
piece.of.data=] chosen candiates?
send.invitation.email=Send invitation Number:
please.select.the.user.to.view=Please choose user
import.failed= fail
imported.successfully= success
import.internationalization.001=fail 
import.internationalization.002= Records
import.internationalization.003= Success 
import.internationalization.004= Records
hr.mailbox.status=HR Email Status
dict.ic14111=Rejected
dict.ic14112=Not enough space
dict.ic14113=Invalid address
dict.ic14114=Openned
confirm.the.need.for.recycling=Sure to recyle 
confirm.the.need.for.recycling.apend=? Unloged-in test takers' access will expire.
in.special.cases=Under special circumstances,set to "custom data permissions"
task.message.202008001=\u786E\u8BA4\u8981\u7ACB\u5373\u6267\u884C\u4E00\u6B21\u4EFB\u52A1\u5417\uFF1F
task.message.202008002=\u786E\u8BA4\u8981\u505C\u7528\u4EFB\u52A1\u5417\uFF1F
task.message.202008003=\u786E\u8BA4\u8981\u542F\u7528\u4EFB\u52A1\u5417\uFF1F
scheduling.log=\u8C03\u5EA6\u65E5\u5FD7
jsp.exam.Contact.Person=Contact Person
jsp.exam.Contact.Email=Contact Email
time.consuming.sorting=time Spent Sort
view.hr.mail.sending.records=HR Email Status
dictionary.management=Dict Manager
sent.successfully=sent success
number.of.retries=retries
reissue.email=reissue
are.you.sure.to.resend.hr.email=reissue\uFF1F
data.permission=Authority
whether.to.update.existing.data=Whether to update existing data
dataFormatError=Data format error
the.name.cannot.contain.special.characters=Special characters not allowed
test.user.name=Test-taker
language.used.in.the.test=Test Language
current.time=DateTime
enterprise.customer.name=Client/Distributor
test.product.name=Test Product
test.user.name.dict1=Search by Test-Taker Name
test.user.name.dict2=Search by Test-Taker Email
test.user.name.dict3=Search by Test-Taker Cell#
test.user.name.dict4=Search by Test-Taker Code
jsp.main.other.001=Recently Completed Tests
jsp.main.other.002=Recently Abandoned Tests or Tests Being Completed
jsp.main.other.003=Recently Created Test Packages
jsp.main.other.004=Most Recent Status Time
jsp.main.other.005=Product Type