This repository has been archived by the owner on Feb 19, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
modLocalization.vb
2142 lines (2108 loc) · 132 KB
/
modLocalization.vb
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
Option Strict Off
Option Explicit On
Module modLocalization
'*****************************************************************************
'modLocalization.bas
'
'In our example, we have segmented code that supports localization into
'two files. The file modLocalization.bas is where definition of all
'the local language strings takes place. It also holds several utilities
'for use in localization. It is our intent to keep modLocalization.bas
'application independent, and allow it to serve as a general purpose
'resource, for localization of any TxSL based operator interface.
'
'The file AppSpecific.bas file holds information specific to a particular
'application. From a localization standpoint, it holds the code that
'relates the localization strings (defined in modLocalization.bas) to the
'specific controls in the application. It also holds an example of how
'to programmatically change the fonts used on the controls.
'The file modAppSpedific.bas would also be a convenient place to put
'other "utility" functions.
'*****************************************************************************
'Definitions need for use in error trapping
Private LocalSource As String
Private Const ModuleName As String = "modLocalization"
'This is the size of the messages array
Const MAX_LANG As Short = 5
Const MAX_MESSAGES As Short = 400
Public gsLangArray(MAX_MESSAGES, MAX_LANG) As String
'These are the constants that select the language of the label.
'They are the columns of the message matrix.
Public Enum TxSLOPUIInterfaceLanguage
'Customize: Add additional languages here.
'Will also have to modify the MAX_LANG constant above.
English = 1
German = 2
Spanish = 3
NewLanguage = 4
End Enum
Public guLanguage As TxSLOPUIInterfaceLanguage
Public guDefaultLanguage As TxSLOPUIInterfaceLanguage
'The following code defines the "rows" of the LangArray. They are defined
'as an enumerated type to allow a drop down box when they are used via
'syntax of txslLangIndex.
'The gnPrefix is used to identify them as a global integer, and to keep them
'unique from other vb strings. For example, variant is a a VB keyword,
'gnVariant keeps it unique.
Public Enum txslLangIndex
gnAbort = 1
gnAbort1 = 2
gnAborted = 3
gnAbortedOpMsg = 4
gnAbortFailed = 5
gnAbout = 6
gnAbout1 = 7
gnAfterTestplanUnload = 8
gnAll = 9
gnApply = 10
gnAttemptingAbort = 11
gnAttemptingContinue = 12
gnAttemptingExit = 13
gnAttemptingLoad = 14
gnAttemptingRun = 15
gnAttemptingSelectVariant = 16
gnAttemptingStop = 17
gnAuthor = 18
gnAutomationControl = 19
gnAutoPrintReport = 20
gnAverageFailTime = 21
gnAveragePassTime = 22
gnAverageTestTime = 23
gnBarCode = 24
gnBreakpoint = 25
gnBreakpointAtAllPositions = 26
gnBreakpointAtPosition1Param = 27
gnBreakpointHalt = 28
gnBreakPointOpMsg = 29
gnBuffered = 30
gnByCount = 31
gnByTimedhhmmss = 32
gnCancel = 33
gnClear = 34
gnClearAllHistory = 35
gnClearAllSerialNumbers = 36
gnClearReport = 37
gnClearReport1 = 38
gnClearTrace = 39
gnClose = 40
gnComment = 41
gnConfiguration1 = 42
gnContinue = 43
gnContinue1 = 44
gnContinueFailed = 45
gnCopyright = 46
gnCreationDate = 47
gnCurrentPosition = 48
gnCurrentTestName = 49
gnCurrentTestplan = 50
gnCurrentTestplanVariant = 51
gnCurrentVariant = 52
gnCurrentVariant1Param = 53
gnCurrentVersion = 54
gnData = 55
gnDataLogging = 56
gnDebug = 57
gnDefaultVariant = 58
gnDescription = 59
gnDescriptionStatusbar1 = 60
gnDevelopmentStatus = 61
gnDigitalIO = 62
gnDigitalIOPresent = 63
gnDisableAll = 64
gnDisabled = 65
gnDone = 66
gnDUT = 67
gnElapsedTime = 68
gnElapsedTimeTip = 69
gnEmpty = 70
gnEmptyOpMsg = 71
gnEnable = 72
gnEnableAll = 73
gnEnabled = 74
gnEnableStandardReports = 75
gnEnglish = 76
gnEnglishVersion = 77
gnEnterBarCode = 78
gnEnterMessage = 79
gnEnterNewItemValue = 80
gnError = 81
gnErrorExitOpMsg = 82
gnErrorNumber = 83
gnErrorOpMsg = 84
gnEventControl = 85
gnEvents = 86
gnException = 87
gnExceptionHalt = 88
gnExceptionOpMsg = 89
gnExceptions = 90
gnExecution = 91
gnExecutionHistory1 = 92
gnExecutionOptions = 93
gnExit = 94
gnExit1 = 95
gnExitFailed = 96
gnFail = 97
gnFailCount = 98
gnFailed = 99
gnFailed1Param = 100
gnFailedColon = 101
gnFailedOpMsg = 102
gnFailedTests = 103
gnFailedTestsinHistory = 104
gnFailedUUTCount = 105
gnFailedUUTsinhistory = 106
gnFailureCount = 107
gnFailureHandling = 108
gnFailures = 109
gnFALSE = 110
gnFile1 = 111
gnFixture = 112
gnFixtureID = 113
gnFrench = 114
gnGerman = 115
gnHaltOnFailureCount = 116
gnHelp1 = 117
gnAgilentTechnologies = 118
gnHighFail = 119
gnHighLimit = 120
gnHistoryLength = 121
gnHistoryLengthError = 122
gnAgilentTechnologiesTestExecSL = 123
gnAgilentTechnologiesTestExecSLOperatorInterface = 124
gnAgilentTechnologiesTS5500System = 125
gnIdentify = 126
gnIdentifyOperator = 127
gnIdle = 128
gnIgnoreAllFailures = 129
gnImproperBarCodeLength = 130
gnImproperState = 131
gnIndividualTestDetail = 132
gnInsertReportComment = 133
gnItemName = 134
gnJudgment = 135
gnLanguageSelection = 136
gnLastFailTime = 137
gnLastMeasuredValue = 138
gnLastPassTime = 139
gnLastTestExecuted = 140
gnLastTestTime = 141
gnLoadFailed = 142
gnLoadFailedOpMsg = 143
gnLoadingTestplan = 144
gnLoadingTestplanAt = 145
gnLoadofUnknowntestplan = 146
gnLoadTestplan = 147
gnLoadTestplan1 = 148
gnLogDirectory = 149
gnLogIn = 150
gnLogin1 = 151
gnLogLevel = 152
gnLogReport = 153
gnLoopCount = 154
gnLooping = 155
gnLowFail = 156
gnLowHighRangeError = 157
gnLowLimit = 158
gnMain = 159
gnMeasuredValue = 160
gnMessageReceivedMsg = 161
gnMessageSendMsg = 162
gnModuleType = 163
gnMostRecentExecutionEvent = 164
gnName = 165
gnNext = 166
gnNo = 167
gnNoLogin1 = 168
gnNominal = 169
gnNone = 170
gnNormalizedProgressReport = 171
gnNotepad1 = 172
gnNoTestplanLoaded = 173
gnNotRun = 174
gnOK = 175
gnOK1 = 176
gnOKCancel = 177
gnOperator = 178
gnOperator1 = 179
gnOperator10 = 180
gnOperator2 = 181
gnOperator3 = 182
gnOperator4 = 183
gnOperator5 = 184
gnOperator6 = 185
gnOperator7 = 186
gnOperator8 = 187
gnOperator9 = 188
gnOperatorMessages = 189
gnOperatorName = 190
gnOrder = 191
gnPass = 192
gnPassCount = 193
gnPassed = 194
gnPassed1Param = 195
gnPassedColon = 196
gnPassedOpMsg = 197
gnPassedTests = 198
gnPassedTestsinHistory = 199
gnPassedUUTCount = 200
gnPassedUUTsinhistory = 201
gnPassFailStatus = 202
gnPassword = 203
gnPath = 204
gnPause = 205
gnPause1 = 206
gnPaused = 207
gnPausedAtAllPositions = 208
gnPausedAtPosition1Param = 209
gnPausedOpMsg = 210
gnPauseError = 211
gnPauseErrorOpMsg = 212
gnPauseOnFailureCount = 213
gnPercentofUUTsPassed = 214
gnPhone = 215
gnPleaseLoadTestplan = 216
gnPleaseScanTheNextBarCode = 217
gnPosition = 218
gnPreferences = 219
gnPreferences1 = 220
gnPressRunorStep = 221
gnPrint = 222
gnPrintReport = 223
gnPrintReport1 = 224
gnPrintTrace = 225
gnProgrammaticLogin = 226
gnProgressReport = 227
gnProgressReports = 228
gnQuotes = 229
gnRandomSampled = 230
gnRead = 231
gnReady = 232
gnReadyToTest = 233
gnReceivedMessage = 234
gnReceiveTxSLMessage = 235
gnReport = 236
gnReportComment = 237
gnReportExceptions = 238
gnReportExceptions1 = 239
gnReportFailedTests1 = 240
gnReportMessage = 241
gnReportOptions = 242
gnReportPassedTests = 243
gnReports = 244
gnReportsandEvents = 245
gnResponseMessage = 246
gnResult = 247
gnRun = 248
gnRun1 = 249
gnRunAutomaticallyAfterBarCode = 250
gnRunCount = 251
gnRunFailed = 252
gnRunning = 253
gnRunningOpMsg = 254
gnSampleRatePerCent = 255
gnScan = 256
gnScanBarCode = 257
gnSelectanewVariant = 258
gnSelectthelanguagetobedisplayed = 259
gnSelectVariant = 260
gnSelectVariant1 = 261
gnSelectVariantFailed = 262
gnSendMessagetoTXsL = 263
gnSerialBarCode = 264
gnSerialBarCodePresent = 265
gnSerialNumber = 266
gnSerialNumberofUUT = 267
gnShortDescription = 268
gnShowReport = 269
gnShowReport1 = 270
gnSince = 271
gnSince1param = 272
gnSinceColon = 273
gnSinceTip = 274
gnSkip = 275
gnSpanish = 276
gnSpecialLogin1 = 277
gnSpecificationNumber = 278
gnStandardLogIn1 = 279
gnStart = 280
gnStartFixture1 = 281
gnStartFixture2 = 282
gnStartFixture3 = 283
gnStartFixture4 = 284
gnStartTime = 285
gnStatisticsStatusbar1 = 286
gnStep = 287
gnStep1 = 288
gnStepAtAllPositions = 289
gnStepAtPosition1Param = 290
gnStepPause = 291
gnStepPauseOpMsg = 292
gnStop = 293
gnStop1 = 294
gnStopFailed = 295
gnStopped = 296
gnStoppedOpMsg = 297
gnStopTime = 298
gnStopTip = 299
gnString = 300
gnSuccess = 301
gnSymbolTables1 = 302
gnSystem = 303
gnSystemData = 304
gnSystemStatus = 305
gnTag = 306
gnTest = 307
gnTest1Param = 308
gnTestColon = 309
gnTested1param = 310
gnTestedColon = 311
gnTestedUUTCount = 312
gnTestEventsEnabled = 313
gnTestExecSL = 314
gnTestInfoCode = 315
gnTestInfoSring = 316
gnTesting = 317
gnTestingOpMsg = 318
gnTestIsEventGenerator = 319
gnTestN = 320
gnTestOverview = 321
gnTestplan1Param = 322
gnTestplanBarCode = 323
gnTestplanColon = 324
gnTestplanConfiguration = 325
gnTestplanDescription = 326
gnTestplanExecution = 327
gnTestplanExecutionHistory = 328
gnTestplanHalting = 329
gnTestplanLooping = 330
gnTestplanName = 331
gnTestplanNameTip = 332
gnTestplanProgress = 333
gnTestplanRevisionInformation = 334
gnTestplanRevisions1 = 335
gnTestplanStatus = 336
gnTestReportEvents = 337
gnTestStationID = 338
gnTestStatus = 339
gnTestStatus1 = 340
gnTestSummary = 341
gnTestTime = 342
gnTestTOnPositionP = 343
gnThroughputMultiplier = 344
gnTimeColon = 345
gnTimeout = 346
gnToolbar1 = 347
gnTools1 = 348
gnTotalExecutionCount = 349
gnTotalTested = 350
gnTotalTested1Param = 351
gnTotalTestedColon = 352
gnTotalTestedTip = 353
gnTotalTestsinHistory = 354
gnTTRUE = 355
gnTxSLConfiguration = 356
gnTxSLError = 357
gnTxslOperatorInterfaceConfiguration = 358
gnUnknownVariantOpmsg = 359
gnUnMatchedBarCode = 360
gnUnRecoverableException = 361
gnUnrecoverableExceptionOpMsg = 362
gnUnsuccessfulVariantSelect = 363
gnUpdatebyTimer = 364
gnUpdateDate = 365
gnUpdateDetail = 366
gnUpdateIntervalError = 367
gnUpdateIntervalmilliseconds = 368
gnUpdateParameters = 369
gnUserField2 = 370
gnUserField3 = 371
gnUserField4 = 372
gnUserMessage = 373
gnUserMessages = 374
gnUUT = 375
gnUUT1Param = 376
gnUUTColon = 377
gnUUTFailedTip = 378
gnUUTNameTip = 379
gnUUTPassedTip = 380
gnUUTRegistryError = 381
gnVariant = 382
gnVariant1Param = 383
gnVariantColon = 384
gnVariants = 385
gnVersion = 386
gnView1 = 387
gnWillExecute = 388
gnWrite = 389
gnYes = 390
gnYesOrNo = 391
gnYield = 392
gnYield1param = 393
gnYieldColon = 394
gnYieldTip = 395
End Enum
'These are the constants that define the rows the message matrix.
Sub InitializeLangArray()
'This is a hard coded initialization of the LangArray array.
'Note that this is a straight forward but brute force method.
'More sophisticated methods might use resource files
'However, the resource file approach requires access to other tools,
'Most likely among them is a resource editor from C++.
'Save the guLanguage into a temporary, and then reset it at the end of this sub
Dim tempLanguage As TxSLOPUIInterfaceLanguage
tempLanguage = guLanguage
''****************************************************
''The following section can be used to add additional language support
''to this application. Remove the comments on the lines that you wish to modify,
''and change the English phrases (inside the quotes) to the language of your choice.
''It is not necessary to change all the phrases, just do the ones
''that are important to you.
''
''Initialization for optional languages
'guLanguage = NewLanguage
''Note that you could use the syntax shown below to get typing aids
''gsLangArray(txslLangIndex.gnAbort, guLanguage) = "Abort"
''or can use the shorter, but non typing aid syntax of
'gsLangArray(gnAbort, guLanguage) = "Abort"
'gsLangArray(gnAbort1, guLanguage) = "&Abort"
'gsLangArray(gnAborted, guLanguage) = "Aborted"
'gsLangArray(gnAbortedOpMsg, guLanguage) = "Aborted--System Cleanup has NOT been performed"
'gsLangArray(gnAbortFailed, guLanguage) = "Abort Failed"
'gsLangArray(gnAbout, guLanguage) = "About"
'gsLangArray(gnAbout1, guLanguage) = "&About"
'gsLangArray(gnAfterTestplanUnload, guLanguage) = "AfterTestplanUnload"
'gsLangArray(gnAll, guLanguage) = "All"
'gsLangArray(gnApply, guLanguage) = "Apply"
'gsLangArray(gnAttemptingAbort, guLanguage) = "Attempting Abort"
'gsLangArray(gnAttemptingContinue, guLanguage) = "Attempting Continue"
'gsLangArray(gnAttemptingExit, guLanguage) = "Attempting Exit"
'gsLangArray(gnAttemptingLoad, guLanguage) = "Attempting Load"
'gsLangArray(gnAttemptingRun, guLanguage) = "Attempting Run"
'gsLangArray(gnAttemptingSelectVariant, guLanguage) = "Attempting Select Variant"
'gsLangArray(gnAttemptingStop, guLanguage) = "Attempting Stop"
'gsLangArray(gnAuthor, guLanguage) = "Author"
'gsLangArray(gnAutomationControl, guLanguage) = "Automation Control"
'gsLangArray(gnAutoPrintReport, guLanguage) = "Auto Print Report"
'gsLangArray(gnAverageFailTime, guLanguage) = "Average Fail Time"
'gsLangArray(gnAveragePassTime, guLanguage) = "Average Pass Time"
'gsLangArray(gnAverageTestTime, guLanguage) = "Average Test Time"
'gsLangArray(gnBarCode, guLanguage) = "Bar Code"
'gsLangArray(gnBreakpoint, guLanguage) = "Breakpoint"
'gsLangArray(gnBreakpointAtAllPositions, guLanguage) = "Breakpoint at all"
'gsLangArray(gnBreakpointAtPosition1Param, guLanguage) = "Breakpoint at %1"
'gsLangArray(gnBreakpointHalt, guLanguage) = "Breakpoint Halt"
'gsLangArray(gnBreakPointOpMsg, guLanguage) = "A breakpoint was encountered by the program"
'gsLangArray(gnBuffered, guLanguage) = "Buffered"
'gsLangArray(gnByCount, guLanguage) = "By Count"
'gsLangArray(gnByTimedhhmmss, guLanguage) = "By Time (d:hh:mm:ss)"
'gsLangArray(gnCancel, guLanguage) = "Cancel"
'gsLangArray(gnClear, guLanguage) = "Clear"
'gsLangArray(gnClearAllHistory, guLanguage) = "Clear All History"
'gsLangArray(gnClearAllSerialNumbers, guLanguage) = "Clear All Serial Numbers"
'gsLangArray(gnClearReport, guLanguage) = "Clear Report"
'gsLangArray(gnClearReport1, guLanguage) = "&Clear Report"
'gsLangArray(gnClearTrace, guLanguage) = "Clear Trace"
'gsLangArray(gnClose, guLanguage) = "Close"
'gsLangArray(gnComment, guLanguage) = "Comment"
'gsLangArray(gnConfiguration1, guLanguage) = "&Configuration"
'gsLangArray(gnContinue, guLanguage) = "Continue"
'gsLangArray(gnContinue1, guLanguage) = "&Continue"
'gsLangArray(gnContinueFailed, guLanguage) = "Continue Failed"
'gsLangArray(gnCopyright, guLanguage) = "Copyright"
'gsLangArray(gnCreationDate, guLanguage) = "Creation Date"
'gsLangArray(gnCurrentPosition, guLanguage) = "Current Position"
'gsLangArray(gnCurrentTestName, guLanguage) = "Current Test Name"
'gsLangArray(gnCurrentTestplan, guLanguage) = "Current Testplan"
'gsLangArray(gnCurrentTestplanVariant, guLanguage) = "The current testplan variant."
'gsLangArray(gnCurrentVariant, guLanguage) = "Current Variant"
'gsLangArray(gnCurrentVariant1Param, guLanguage) = "Current Variant: %1"
'gsLangArray(gnCurrentVersion, guLanguage) = "Current Version"
'gsLangArray(gnData, guLanguage) = "Data"
'gsLangArray(gnDataLogging, guLanguage) = "DataLogging"
'gsLangArray(gnDebug, guLanguage) = "Debug"
'gsLangArray(gnDefaultVariant, guLanguage) = "Default Variant"
'gsLangArray(gnDescription, guLanguage) = "Description"
'gsLangArray(gnDescriptionStatusbar1, guLanguage) = "&Description Statusbar"
'gsLangArray(gnDevelopmentStatus, guLanguage) = "Development Status"
'gsLangArray(gnDigitalIO, guLanguage) = "Digital IO"
'gsLangArray(gnDigitalIOPresent, guLanguage) = "Digital IO Present"
'gsLangArray(gnDisableAll, guLanguage) = "Disable All"
'gsLangArray(gnDisabled, guLanguage) = "Disabled"
'gsLangArray(gnDone, guLanguage) = "Done"
'gsLangArray(gnDUT, guLanguage) = "DUT"
'gsLangArray(gnElapsedTime, guLanguage) = "Elapsed Time"
'gsLangArray(gnElapsedTimeTip, guLanguage) = "Total time elapsed since start of testing"
'gsLangArray(gnEmpty, guLanguage) = "Empty"
'gsLangArray(gnEmptyOpMsg, guLanguage) = "No testplan is loaded. The system is empty."
'gsLangArray(gnEnable, guLanguage) = "Enable"
'gsLangArray(gnEnableAll, guLanguage) = "Enable All"
'gsLangArray(gnEnabled, guLanguage) = "Enabled"
'gsLangArray(gnEnableStandardReports, guLanguage) = "Enable Standard Reports"
'gsLangArray(gnEnglish, guLanguage) = "English"
'gsLangArray(gnEnglishVersion, guLanguage) = "English Version"
'gsLangArray(gnEnterBarCode, guLanguage) = "Enter Bar Code"
'gsLangArray(gnEnterMessage, guLanguage) = "Enter Message"
'gsLangArray(gnEnterNewItemValue, guLanguage) = "Enter New Item Value"
'gsLangArray(gnError, guLanguage) = "Error"
'gsLangArray(gnErrorExitOpMsg, guLanguage) = "The testplan exited with an unknown error condition"
'gsLangArray(gnErrorNumber, guLanguage) = "Error Number"
'gsLangArray(gnErrorOpMsg, guLanguage) = "Error Message"
'gsLangArray(gnEventControl, guLanguage) = "Event Control"
'gsLangArray(gnEvents, guLanguage) = "Events"
'gsLangArray(gnException, guLanguage) = "Exception"
'gsLangArray(gnExceptionHalt, guLanguage) = "Exception Halt"
'gsLangArray(gnExceptionOpMsg, guLanguage) = "An exception was encountered, and the exception sequence run"
'gsLangArray(gnExceptions, guLanguage) = "Exceptions"
'gsLangArray(gnExecution, guLanguage) = "Execution"
'gsLangArray(gnExecutionHistory1, guLanguage) = "E&xecution History"
'gsLangArray(gnExecutionOptions, guLanguage) = "Execution Options"
'gsLangArray(gnExit, guLanguage) = "Exit"
'gsLangArray(gnExit1, guLanguage) = "E&xit"
'gsLangArray(gnExitFailed, guLanguage) = "Exit Failed"
'gsLangArray(gnFail, guLanguage) = "Fail"
'gsLangArray(gnFailCount, guLanguage) = "Fail Count"
'gsLangArray(gnFailed, guLanguage) = "Failed"
'gsLangArray(gnFailed1Param, guLanguage) = "Failed: %1"
'gsLangArray(gnFailedColon, guLanguage) = "Failed:"
'gsLangArray(gnFailedOpMsg, guLanguage) = "The UUT failed more than the number of failures specified in fail limit"
'gsLangArray(gnFailedTests, guLanguage) = "Failed Tests"
'gsLangArray(gnFailedTestsinHistory, guLanguage) = "Failed Tests in History"
'gsLangArray(gnFailedUUTCount, guLanguage) = "FailedUUTCount"
'gsLangArray(gnFailedUUTsinhistory, guLanguage) = "Failed UUTs in history"
'gsLangArray(gnFailureCount, guLanguage) = "Failure Count"
'gsLangArray(gnFailureHandling, guLanguage) = "Failure Handling"
'gsLangArray(gnFailures, guLanguage) = "Failures"
'gsLangArray(gnFALSE, guLanguage) = "False"
'gsLangArray(gnFile1, guLanguage) = "&File"
'gsLangArray(gnFixture, guLanguage) = "Fixture"
'gsLangArray(gnFixtureID, guLanguage) = "Fixture ID"
'gsLangArray(gnFrench, guLanguage) = "French"
'gsLangArray(gnGerman, guLanguage) = "German"
'gsLangArray(gnHaltOnFailureCount, guLanguage) = "Halt On Failure Count"
'gsLangArray(gnHelp1, guLanguage) = "&Help"
'gsLangArray(gnAgilentTechnologies, guLanguage) = "Agilent Technologies"
'gsLangArray(gnHighFail, guLanguage) = "High Fail"
'gsLangArray(gnHighLimit, guLanguage) = "High Limit"
'gsLangArray(gnHistoryLength, guLanguage) = "History Length"
'gsLangArray(gnHistoryLengthError, guLanguage) = "The history length must be less than %1."
'gsLangArray(gnAgilentTechnologiesTestExecSL, guLanguage) = "Agilent Technologies TestExec SL"
'gsLangArray(gnAgilentTechnologiesTestExecSLOperatorInterface, guLanguage) = "Agilent Technologies TestExec SL Operator Interface"
'gsLangArray(gnAgilentTechnologiesTS5500System, guLanguage) = "Agilent Technologies TS5500 System"
'gsLangArray(gnIdentify, guLanguage) = "Identify"
'gsLangArray(gnIdentifyOperator, guLanguage) = "Identify Operator"
'gsLangArray(gnIdle, guLanguage) = "Idle"
'gsLangArray(gnIgnoreAllFailures, guLanguage) = "Ignore All Failures"
'gsLangArray(gnImproperBarCodeLength, guLanguage) = "The bar code %1 was not equal in length to %2. Please try scanning again."
'gsLangArray(gnImproperState, guLanguage) = "Improper state detected for this command. The state is %1"
'gsLangArray(gnIndividualTestDetail, guLanguage) = "Individual Test Detail"
'gsLangArray(gnInsertReportComment, guLanguage) = "Insert &Report Comment"
'gsLangArray(gnItemName, guLanguage) = "Item Name"
'gsLangArray(gnJudgment, guLanguage) = "Judgment"
'gsLangArray(gnLanguageSelection, guLanguage) = "Language Selection"
'gsLangArray(gnLastFailTime, guLanguage) = "Last Fail Time"
'gsLangArray(gnLastMeasuredValue, guLanguage) = "Last Measured Value"
'gsLangArray(gnLastPassTime, guLanguage) = "Last Pass Time"
'gsLangArray(gnLastTestExecuted, guLanguage) = "Last Test Executed"
'gsLangArray(gnLastTestTime, guLanguage) = "Last Test Time"
'gsLangArray(gnLoadFailed, guLanguage) = "Load FAILED"
'gsLangArray(gnLoadFailedOpMsg, guLanguage) = "The load of a testplan at %1 failed."
'gsLangArray(gnLoadingTestplan, guLanguage) = "Loading Testplan"
'gsLangArray(gnLoadingTestplanAt, guLanguage) = "Loading Testplan at %1"
'gsLangArray(gnLoadofUnknowntestplan, guLanguage) = "The testplan at %1 was loaded. This testplan path is not in the Testplan Registry as configured in the txtexcsl.ini file"
'gsLangArray(gnLoadTestplan, guLanguage) = "Load Testplan"
'gsLangArray(gnLoadTestplan1, guLanguage) = "&Load Testplan..."
'gsLangArray(gnLogDirectory, guLanguage) = "Log Directory"
'gsLangArray(gnLogIn, guLanguage) = "LogIn"
'gsLangArray(gnLogin1, guLanguage) = "Lo&gin"
'gsLangArray(gnLogLevel, guLanguage) = "Log Level"
'gsLangArray(gnLogReport, guLanguage) = "Log Report"
'gsLangArray(gnLoopCount, guLanguage) = "Loop Count"
'gsLangArray(gnLooping, guLanguage) = "Looping"
'gsLangArray(gnLowFail, guLanguage) = "Low Fail"
'gsLangArray(gnLowHighRangeError, guLanguage) = "The value must be between %1 and %2."
'gsLangArray(gnLowLimit, guLanguage) = "Low Limit"
'gsLangArray(gnMain, guLanguage) = "Main"
'gsLangArray(gnMeasuredValue, guLanguage) = "Measured Value"
'gsLangArray(gnMessageReceivedMsg, guLanguage) = "The following message has been received from TxSL"
'gsLangArray(gnMessageSendMsg, guLanguage) = "The following message will be sent to TxSL"
'gsLangArray(gnModuleType, guLanguage) = "Module Type"
'gsLangArray(gnMostRecentExecutionEvent, guLanguage) = "Most Recent Execution Event"
'gsLangArray(gnName, guLanguage) = "Name"
'gsLangArray(gnNext, guLanguage) = "Next"
'gsLangArray(gnNo, guLanguage) = "No"
'gsLangArray(gnNoLogin1, guLanguage) = "&No Login"
'gsLangArray(gnNominal, guLanguage) = "Nominal"
'gsLangArray(gnNone, guLanguage) = "None"
'gsLangArray(gnNormalizedProgressReport, guLanguage) = "Normalized Progress Report"
'gsLangArray(gnNotepad1, guLanguage) = "&Notepad"
'gsLangArray(gnNoTestplanLoaded, guLanguage) = "No Testplan Loaded"
'gsLangArray(gnNotRun, guLanguage) = "Not run"
'gsLangArray(gnOK, guLanguage) = "OK"
'gsLangArray(gnOK1, guLanguage) = "&OK"
'gsLangArray(gnOKCancel, guLanguage) = "OK Cancel"
'gsLangArray(gnOperator, guLanguage) = "Operator"
'gsLangArray(gnOperator1, guLanguage) = "Operator &1"
'gsLangArray(gnOperator10, guLanguage) = "Operator 1&0"
'gsLangArray(gnOperator2, guLanguage) = "Operator &2"
'gsLangArray(gnOperator3, guLanguage) = "Operator &3"
'gsLangArray(gnOperator4, guLanguage) = "Operator &4"
'gsLangArray(gnOperator5, guLanguage) = "Operator &5"
'gsLangArray(gnOperator6, guLanguage) = "Operator &6"
'gsLangArray(gnOperator7, guLanguage) = "Operator &7"
'gsLangArray(gnOperator8, guLanguage) = "Operator &8"
'gsLangArray(gnOperator9, guLanguage) = "Operator &9"
'gsLangArray(gnOperatorMessages, guLanguage) = "Operator Messages"
'gsLangArray(gnOperatorName, guLanguage) = "Operator Name"
'gsLangArray(gnOrder, guLanguage) = "Order"
'gsLangArray(gnPass, guLanguage) = "Pass"
'gsLangArray(gnPassCount, guLanguage) = "Pass Count"
'gsLangArray(gnPassed, guLanguage) = "Passed"
'gsLangArray(gnPassed1Param, guLanguage) = "Passed: %1"
'gsLangArray(gnPassedColon, guLanguage) = "Passed:"
'gsLangArray(gnPassedOpMsg, guLanguage) = "The UUT passed !"
'gsLangArray(gnPassedTests, guLanguage) = "Passed Tests"
'gsLangArray(gnPassedTestsinHistory, guLanguage) = "Passed Tests in History"
'gsLangArray(gnPassedUUTCount, guLanguage) = "Passed UUT Count"
'gsLangArray(gnPassedUUTsinhistory, guLanguage) = "Passed UUTs in history"
'gsLangArray(gnPassFailStatus, guLanguage) = "Pass Fail Status"
'gsLangArray(gnPassword, guLanguage) = "Password"
'gsLangArray(gnPath, guLanguage) = "Path"
'gsLangArray(gnPause, guLanguage) = "Pause"
'gsLangArray(gnPause1, guLanguage) = "&Pause"
'gsLangArray(gnPaused, guLanguage) = "Paused"
'gsLangArray(gnPausedAtAllPositions, guLanguage) = "Paused at all"
'gsLangArray(gnPausedAtPosition1Param, guLanguage) = "Pause at %1"
'gsLangArray(gnPausedOpMsg, guLanguage) = "A pause was received by the testplan"
'gsLangArray(gnPauseError, guLanguage) = "Pause Error"
'gsLangArray(gnPauseErrorOpMsg, guLanguage) = "The testplan is paused, for reasons unknown"
'gsLangArray(gnPauseOnFailureCount, guLanguage) = "Pause On Failure Count"
'gsLangArray(gnPercentofUUTsPassed, guLanguage) = "The percent of UUTs tested that have passed."
'gsLangArray(gnPhone, guLanguage) = "Phone"
'gsLangArray(gnPleaseLoadTestplan, guLanguage) = "Please Load Testplan"
'gsLangArray(gnPleaseScanTheNextBarCode, guLanguage) = "Please scan the next barcode."
'gsLangArray(gnPosition, guLanguage) = "Position"
'gsLangArray(gnPreferences, guLanguage) = "Preferences"
'gsLangArray(gnPreferences1, guLanguage) = "&Preferences"
'gsLangArray(gnPressRunorStep, guLanguage) = "Press Run or Step"
'gsLangArray(gnPrint, guLanguage) = "Print"
'gsLangArray(gnPrintReport, guLanguage) = "Print Report"
'gsLangArray(gnPrintReport1, guLanguage) = "&Print Report"
'gsLangArray(gnPrintTrace, guLanguage) = "Print Trace"
'gsLangArray(gnProgrammaticLogin, guLanguage) = "Programmatic Login"
'gsLangArray(gnProgressReport, guLanguage) = "Progress Report"
'gsLangArray(gnProgressReports, guLanguage) = "Progress Reports"
'gsLangArray(gnQuotes, guLanguage) = ""
'gsLangArray(gnRandomSampled, guLanguage) = "Random Sampled"
'gsLangArray(gnRead, guLanguage) = "Read"
'gsLangArray(gnReady, guLanguage) = "Ready"
'gsLangArray(gnReadyToTest, guLanguage) = "Ready to Test"
'gsLangArray(gnReceivedMessage, guLanguage) = "Received Message"
'gsLangArray(gnReceiveTxSLMessage, guLanguage) = "The following message was received from TxSL:"
'gsLangArray(gnReport, guLanguage) = "Report"
'gsLangArray(gnReportComment, guLanguage) = "Report Comment"
'gsLangArray(gnReportExceptions, guLanguage) = "Report Exceptions"
'gsLangArray(gnReportExceptions1, guLanguage) = "Report &Exceptions"
'gsLangArray(gnReportFailedTests1, guLanguage) = "Report &Failed Tests"
'gsLangArray(gnReportMessage, guLanguage) = "Report Message"
'gsLangArray(gnReportOptions, guLanguage) = "Report Options"
'gsLangArray(gnReportPassedTests, guLanguage) = "Report &Passed Tests"
'gsLangArray(gnReports, guLanguage) = "Reports"
'gsLangArray(gnReportsandEvents, guLanguage) = "Reports and Events"
'gsLangArray(gnResponseMessage, guLanguage) = "Response Message"
'gsLangArray(gnResult, guLanguage) = "Result"
'gsLangArray(gnRun, guLanguage) = "Run"
'gsLangArray(gnRun1, guLanguage) = "&Run"
'gsLangArray(gnRunAutomaticallyAfterBarCode, guLanguage) = "Run Automatically After Bar Code"
'gsLangArray(gnRunCount, guLanguage) = "Run Count"
'gsLangArray(gnRunFailed, guLanguage) = "Run Failed"
'gsLangArray(gnRunning, guLanguage) = "Running"
'gsLangArray(gnRunningOpMsg, guLanguage) = "The System is running"
'gsLangArray(gnSampleRatePerCent, guLanguage) = "Sample Rate (%)"
'gsLangArray(gnScan, guLanguage) = "Scan"
'gsLangArray(gnScanBarCode, guLanguage) = "Scan Bar Code"
'gsLangArray(gnSelectanewVariant, guLanguage) = "Select a new Variant"
'gsLangArray(gnSelectthelanguagetobedisplayed, guLanguage) = "Select the language to be displayed"
'gsLangArray(gnSelectVariant, guLanguage) = "Select Variant"
'gsLangArray(gnSelectVariant1, guLanguage) = "Select &Variant..."
'gsLangArray(gnSelectVariantFailed, guLanguage) = "Select Variant Failed"
'gsLangArray(gnSendMessagetoTXsL, guLanguage) = "The following message will be sent to TxSL:"
'gsLangArray(gnSerialBarCode, guLanguage) = "Serial Bar Code"
'gsLangArray(gnSerialBarCodePresent, guLanguage) = "Serial Bar Code Present"
'gsLangArray(gnSerialNumber, guLanguage) = "Serial Number"
'gsLangArray(gnSerialNumberofUUT, guLanguage) = "Serial number of UUT"
'gsLangArray(gnShortDescription, guLanguage) = "Short Description"
'gsLangArray(gnShowReport, guLanguage) = "Show Report"
'gsLangArray(gnShowReport1, guLanguage) = "Sho&w Report"
'gsLangArray(gnSince, guLanguage) = "Since"
'gsLangArray(gnSince1param, guLanguage) = "Since: %1"
'gsLangArray(gnSinceColon, guLanguage) = "Since:"
'gsLangArray(gnSinceTip, guLanguage) = "The date and time of the last reset of this data"
'gsLangArray(gnSkip, guLanguage) = "Skip"
'gsLangArray(gnSpanish, guLanguage) = "Spanish"
'gsLangArray(gnSpecialLogin1, guLanguage) = "Spe&cial Login"
'gsLangArray(gnSpecificationNumber, guLanguage) = "Specification Number"
'gsLangArray(gnStandardLogIn1, guLanguage) = "Standard Log &In"
'gsLangArray(gnStart, guLanguage) = "Start"
'gsLangArray(gnStartFixture1, guLanguage) = "Starts a Test Executive for Fixture 1"
'gsLangArray(gnStartFixture2, guLanguage) = "Starts a Test Executive for Fixture 2"
'gsLangArray(gnStartFixture3, guLanguage) = "Starts a Test Executive for Fixture 3"
'gsLangArray(gnStartFixture4, guLanguage) = "Starts a Test Executive for Fixture 4"
'gsLangArray(gnStartTime, guLanguage) = "Start Time"
'gsLangArray(gnStatisticsStatusbar1, guLanguage) = "&Statistics Statusbar"
'gsLangArray(gnStep, guLanguage) = "Step"
'gsLangArray(gnStep1, guLanguage) = "St&ep"
'gsLangArray(gnStepAtAllPositions, guLanguage) = "Step at all"
'gsLangArray(gnStepAtPosition1Param, guLanguage) = "Step at %1"
'gsLangArray(gnStepPause, guLanguage) = "Step Pause"
'gsLangArray(gnStepPauseOpMsg, guLanguage) = "The system is paused because of stepping"
'gsLangArray(gnStop, guLanguage) = "Stop"
'gsLangArray(gnStop1, guLanguage) = "&Stop"
'gsLangArray(gnStopFailed, guLanguage) = "Stop Failed"
'gsLangArray(gnStopped, guLanguage) = "Stopped"
'gsLangArray(gnStoppedOpMsg, guLanguage) = "The testplan was stopped"
'gsLangArray(gnStopTime, guLanguage) = "Stop Time"
'gsLangArray(gnStopTip, guLanguage) = "Stops the Operator Interface Program"
'gsLangArray(gnString, guLanguage) = "String"
'gsLangArray(gnSuccess, guLanguage) = "Success"
'gsLangArray(gnSymbolTables1, guLanguage) = "S&ymbol Tables"
'gsLangArray(gnSystem, guLanguage) = "System"
'gsLangArray(gnSystemData, guLanguage) = "System Data"
'gsLangArray(gnSystemStatus, guLanguage) = "System Status"
'gsLangArray(gnTag, guLanguage) = "Tag"
'gsLangArray(gnTest, guLanguage) = "Test"
'gsLangArray(gnTest1Param, guLanguage) = "Test: %1"
'gsLangArray(gnTestColon, guLanguage) = "Test:"
'gsLangArray(gnTested1param, guLanguage) = "Tested: %1"
'gsLangArray(gnTestedColon, guLanguage) = "Tested:"
'gsLangArray(gnTestedUUTCount, guLanguage) = "Tested UUT Count"
'gsLangArray(gnTestEventsEnabled, guLanguage) = "Test Events Enabled"
'gsLangArray(gnTestExecSL, guLanguage) = "TestExec SL"
'gsLangArray(gnTestInfoCode, guLanguage) = "Test Info Code"
'gsLangArray(gnTestInfoSring, guLanguage) = "TestInfoSring"
'gsLangArray(gnTesting, guLanguage) = "Testing"
'gsLangArray(gnTestingOpMsg, guLanguage) = "The system is testing"
'gsLangArray(gnTestIsEventGenerator, guLanguage) = "TestIs...Event Generator"
'gsLangArray(gnTestN, guLanguage) = "Test: %1"
'gsLangArray(gnTestOverview, guLanguage) = "Test Overview"
'gsLangArray(gnTestplan1Param, guLanguage) = "Testplan: %1"
'gsLangArray(gnTestplanBarCode, guLanguage) = "Testplan Barcode"
'gsLangArray(gnTestplanColon, guLanguage) = "Testplan:"
'gsLangArray(gnTestplanConfiguration, guLanguage) = "Testplan Configuration"
'gsLangArray(gnTestplanDescription, guLanguage) = "Testplan Description"
'gsLangArray(gnTestplanExecution, guLanguage) = "Testplan Execution"
'gsLangArray(gnTestplanExecutionHistory, guLanguage) = "Testplan Execution History"
'gsLangArray(gnTestplanHalting, guLanguage) = "Testplan Halting"
'gsLangArray(gnTestplanLooping, guLanguage) = "Testplan Looping"
'gsLangArray(gnTestplanName, guLanguage) = "Testplan Name"
'gsLangArray(gnTestplanNameTip, guLanguage) = "The name of the loaded testplan"
'gsLangArray(gnTestplanProgress, guLanguage) = "Testplan Progress"
'gsLangArray(gnTestplanRevisionInformation, guLanguage) = "Testplan Revision Information"
'gsLangArray(gnTestplanRevisions1, guLanguage) = "Testplan &Revisions"
'gsLangArray(gnTestplanStatus, guLanguage) = "Testplan Status"
'gsLangArray(gnTestReportEvents, guLanguage) = "Test Report Events"
'gsLangArray(gnTestStationID, guLanguage) = "TestStationID"
'gsLangArray(gnTestStatus, guLanguage) = "Test Status"
'gsLangArray(gnTestStatus1, guLanguage) = "&Test Status"
'gsLangArray(gnTestSummary, guLanguage) = "Test Summary"
'gsLangArray(gnTestTime, guLanguage) = "Test Time"
'gsLangArray(gnTestTOnPositionP, guLanguage) = "Test: %1 at %2"
'gsLangArray(gnThroughputMultiplier, guLanguage) = "Throughput Multiplier"
'gsLangArray(gnTimeColon, guLanguage) = "Time:"
'gsLangArray(gnTimeout, guLanguage) = "Time Out"
'gsLangArray(gnToolbar1, guLanguage) = "Tool&bar"
'gsLangArray(gnTools1, guLanguage) = "&Tools"
'gsLangArray(gnTotalExecutionCount, guLanguage) = "Total Execution Count"
'gsLangArray(gnTotalTested, guLanguage) = "Total Tested"
'gsLangArray(gnTotalTested1Param, guLanguage) = "Total Tested: %1"
'gsLangArray(gnTotalTestedColon, guLanguage) = "Total Tested:"
'gsLangArray(gnTotalTestedTip, guLanguage) = "The total number of UUTs tested."
'gsLangArray(gnTotalTestsinHistory, guLanguage) = "Total Tests in History"
'gsLangArray(gnTTRUE, guLanguage) = "True"
'gsLangArray(gnTxSLConfiguration, guLanguage) = "TxSL Configuration"
'gsLangArray(gnTxSLError, guLanguage) = "TxSL Error"
'gsLangArray(gnTxslOperatorInterfaceConfiguration, guLanguage) = "TxSL Operator Interface Configuration"
'gsLangArray(gnUnknownVariantOpmsg, guLanguage) = "Unknown Variant"
'gsLangArray(gnUnMatchedBarCode, guLanguage) = "A barcode was read, but there was no entry found in the UUT Registry that matched it."
'gsLangArray(gnUnRecoverableException, guLanguage) = "UnRecoverableException"
'gsLangArray(gnUnrecoverableExceptionOpMsg, guLanguage) = "An exception was encountered, and no recovery was possible"
'gsLangArray(gnUnsuccessfulVariantSelect, guLanguage) = "The variant %1 was NOT successfully selected"
'gsLangArray(gnUpdatebyTimer, guLanguage) = "Update by Timer"
'gsLangArray(gnUpdateDate, guLanguage) = "Update Date"
'gsLangArray(gnUpdateDetail, guLanguage) = "Update Detail"
'gsLangArray(gnUpdateIntervalError, guLanguage) = "The update interval must be between %1 and %2."
'gsLangArray(gnUpdateIntervalmilliseconds, guLanguage) = "Update Intervale (milliseconds)"
'gsLangArray(gnUpdateParameters, guLanguage) = "UpDate Parameters"
'gsLangArray(gnUserField2, guLanguage) = "User Field 2"
'gsLangArray(gnUserField3, guLanguage) = "User Field 3"
'gsLangArray(gnUserField4, guLanguage) = "User Field 4"
'gsLangArray(gnUserMessage, guLanguage) = "User Message"
'gsLangArray(gnUserMessages, guLanguage) = "User Messages"
'gsLangArray(gnUUT, guLanguage) = "UUT"
'gsLangArray(gnUUT1Param, guLanguage) = "UUT: %1"
'gsLangArray(gnUUTColon, guLanguage) = "UUT:"
'gsLangArray(gnUUTFailedTip, guLanguage) = "The number of UUTs that have failed."
'gsLangArray(gnUUTNameTip, guLanguage) = "The name of the UUT"
'gsLangArray(gnUUTPassedTip, guLanguage) = "The number of UUTs that have passed."
'gsLangArray(gnUUTRegistryError, guLanguage) = "Could not find the bar code %1 in the RegisteredUUTs collection. Try reading the bar code again. If this is a repetitive problem, check to make sure that the barcode value is entered in the UUT Reg section of the tstexcls.ini file"
'gsLangArray(gnVariant, guLanguage) = "Variant"
'gsLangArray(gnVariant1Param, guLanguage) = "Variant: %1"
'gsLangArray(gnVariantColon, guLanguage) = "Variant:"
'gsLangArray(gnVariants, guLanguage) = "Variants"
'gsLangArray(gnVersion, guLanguage) = "Version"
'gsLangArray(gnView1, guLanguage) = "&View"
'gsLangArray(gnWillExecute, guLanguage) = "Will Execute"
'gsLangArray(gnWrite, guLanguage) = "Write"
'gsLangArray(gnYes, guLanguage) = "Yes"
'gsLangArray(gnYesOrNo, guLanguage) = "Yes or No"
'gsLangArray(gnYield, guLanguage) = "Yield"
'gsLangArray(gnYield1param, guLanguage) = "Yield: %1"
'gsLangArray(gnYieldColon, guLanguage) = "Yield:"
'gsLangArray(gnYieldTip, guLanguage) = "The simple yield in this session"
'English Initialization
guLanguage = TxSLOPUIInterfaceLanguage.English 'Specify the language here. Do NOT delete this line
'Note that you could use the syntax shown below to get typing aids
'gsLangArray(txslLangIndex.gnAbort, guLanguage) = "Abort"
'or can use the shorter, but non typing aid syntax of
'gsLangArray(gnAbort, guLanguage) = "Abort"
gsLangArray(txslLangIndex.gnAbort, guLanguage) = "Abort"
gsLangArray(txslLangIndex.gnAbort, guLanguage) = "Abort"
gsLangArray(txslLangIndex.gnAbort1, guLanguage) = "&Abort"
gsLangArray(txslLangIndex.gnAborted, guLanguage) = "Aborted"
gsLangArray(txslLangIndex.gnAbortedOpMsg, guLanguage) = "Aborted--System Cleanup has NOT been performed"
gsLangArray(txslLangIndex.gnAbortFailed, guLanguage) = "Abort Failed"
gsLangArray(txslLangIndex.gnAbout, guLanguage) = "About"
gsLangArray(txslLangIndex.gnAbout1, guLanguage) = "&About"
gsLangArray(txslLangIndex.gnAfterTestplanUnload, guLanguage) = "AfterTestplanUnload"
gsLangArray(txslLangIndex.gnAll, guLanguage) = "All"
gsLangArray(txslLangIndex.gnApply, guLanguage) = "Apply"
gsLangArray(txslLangIndex.gnAttemptingAbort, guLanguage) = "Attempting Abort"
gsLangArray(txslLangIndex.gnAttemptingContinue, guLanguage) = "Attempting Continue"
gsLangArray(txslLangIndex.gnAttemptingExit, guLanguage) = "Attempting Exit"
gsLangArray(txslLangIndex.gnAttemptingLoad, guLanguage) = "Attempting Load"
gsLangArray(txslLangIndex.gnAttemptingRun, guLanguage) = "Attempting Run"
gsLangArray(txslLangIndex.gnAttemptingSelectVariant, guLanguage) = "Attempting Select Variant"
gsLangArray(txslLangIndex.gnAttemptingStop, guLanguage) = "Attempting Stop"
gsLangArray(txslLangIndex.gnAuthor, guLanguage) = "Author"
gsLangArray(txslLangIndex.gnAutomationControl, guLanguage) = "Automation Control"
gsLangArray(txslLangIndex.gnAutoPrintReport, guLanguage) = "Auto Print Report"
gsLangArray(txslLangIndex.gnAverageFailTime, guLanguage) = "Average Fail Time"
gsLangArray(txslLangIndex.gnAveragePassTime, guLanguage) = "Average Pass Time"
gsLangArray(txslLangIndex.gnAverageTestTime, guLanguage) = "Average Test Time"
gsLangArray(txslLangIndex.gnBarCode, guLanguage) = "Bar Code"
gsLangArray(txslLangIndex.gnBreakpoint, guLanguage) = "Breakpoint"
gsLangArray(txslLangIndex.gnBreakpointAtAllPositions, guLanguage) = "Breakpoint at all"
gsLangArray(txslLangIndex.gnBreakpointAtPosition1Param, guLanguage) = "Breakpoint at %1"
gsLangArray(txslLangIndex.gnBreakpointHalt, guLanguage) = "Breakpoint Halt"
gsLangArray(txslLangIndex.gnBreakPointOpMsg, guLanguage) = "A breakpoint was encountered by the program"
gsLangArray(txslLangIndex.gnBuffered, guLanguage) = "Buffered"
gsLangArray(txslLangIndex.gnByCount, guLanguage) = "By Count"
gsLangArray(txslLangIndex.gnByTimedhhmmss, guLanguage) = "By Time (d:hh:mm:ss)"
gsLangArray(txslLangIndex.gnCancel, guLanguage) = "Cancel"
gsLangArray(txslLangIndex.gnClear, guLanguage) = "Clear"
gsLangArray(txslLangIndex.gnClearAllHistory, guLanguage) = "Clear All History"
gsLangArray(txslLangIndex.gnClearAllSerialNumbers, guLanguage) = "Clear All Serial Numbers"
gsLangArray(txslLangIndex.gnClearReport, guLanguage) = "Clear Report"
gsLangArray(txslLangIndex.gnClearReport1, guLanguage) = "&Clear Report"
gsLangArray(txslLangIndex.gnClearTrace, guLanguage) = "Clear Trace"
gsLangArray(txslLangIndex.gnClose, guLanguage) = "Close"
gsLangArray(txslLangIndex.gnComment, guLanguage) = "Comment"
gsLangArray(txslLangIndex.gnConfiguration1, guLanguage) = "&Configuration"
gsLangArray(txslLangIndex.gnContinue, guLanguage) = "Continue"
gsLangArray(txslLangIndex.gnContinue1, guLanguage) = "&Continue"
gsLangArray(txslLangIndex.gnContinueFailed, guLanguage) = "Continue Failed"
gsLangArray(txslLangIndex.gnCopyright, guLanguage) = "Copyright"
gsLangArray(txslLangIndex.gnCreationDate, guLanguage) = "Creation Date"
gsLangArray(txslLangIndex.gnCurrentPosition, guLanguage) = "Current Position"
gsLangArray(txslLangIndex.gnCurrentTestName, guLanguage) = "Current Test Name"
gsLangArray(txslLangIndex.gnCurrentTestplan, guLanguage) = "Current Testplan"
gsLangArray(txslLangIndex.gnCurrentTestplanVariant, guLanguage) = "The current testplan variant."
gsLangArray(txslLangIndex.gnCurrentVariant, guLanguage) = "Current Variant"
gsLangArray(txslLangIndex.gnCurrentVariant1Param, guLanguage) = "Current Variant: %1"
gsLangArray(txslLangIndex.gnCurrentVersion, guLanguage) = "Current Version"
gsLangArray(txslLangIndex.gnData, guLanguage) = "Data"
gsLangArray(txslLangIndex.gnDataLogging, guLanguage) = "DataLogging"
gsLangArray(txslLangIndex.gnDebug, guLanguage) = "Debug"
gsLangArray(txslLangIndex.gnDefaultVariant, guLanguage) = "Default Variant"
gsLangArray(txslLangIndex.gnDescription, guLanguage) = "Description"
gsLangArray(txslLangIndex.gnDescriptionStatusbar1, guLanguage) = "&Description Statusbar"
gsLangArray(txslLangIndex.gnDevelopmentStatus, guLanguage) = "Development Status"
gsLangArray(txslLangIndex.gnDigitalIO, guLanguage) = "Digital IO"
gsLangArray(txslLangIndex.gnDigitalIOPresent, guLanguage) = "Digital IO Present"
gsLangArray(txslLangIndex.gnDisableAll, guLanguage) = "Disable All"
gsLangArray(txslLangIndex.gnDisabled, guLanguage) = "Disabled"
gsLangArray(txslLangIndex.gnDone, guLanguage) = "Done"
gsLangArray(txslLangIndex.gnDUT, guLanguage) = "DUT"
gsLangArray(txslLangIndex.gnElapsedTime, guLanguage) = "Elapsed Time"
gsLangArray(txslLangIndex.gnElapsedTimeTip, guLanguage) = "Total time elapsed since start of testing"
gsLangArray(txslLangIndex.gnEmpty, guLanguage) = "Empty"
gsLangArray(txslLangIndex.gnEmptyOpMsg, guLanguage) = "No testplan is loaded. The system is empty."
gsLangArray(txslLangIndex.gnEnable, guLanguage) = "Enable"
gsLangArray(txslLangIndex.gnEnableAll, guLanguage) = "Enable All"
gsLangArray(txslLangIndex.gnEnabled, guLanguage) = "Enabled"
gsLangArray(txslLangIndex.gnEnableStandardReports, guLanguage) = "Enable Standard Reports"
gsLangArray(txslLangIndex.gnEnglish, guLanguage) = "English"
gsLangArray(txslLangIndex.gnEnglishVersion, guLanguage) = "English Version"
gsLangArray(txslLangIndex.gnEnterBarCode, guLanguage) = "Enter Bar Code"
gsLangArray(txslLangIndex.gnEnterMessage, guLanguage) = "Enter Message"
gsLangArray(txslLangIndex.gnEnterNewItemValue, guLanguage) = "Enter New Item Value"
gsLangArray(txslLangIndex.gnError, guLanguage) = "Error"
gsLangArray(txslLangIndex.gnErrorExitOpMsg, guLanguage) = "The testplan exited with an unknown error condition"
gsLangArray(txslLangIndex.gnErrorNumber, guLanguage) = "Error Number"
gsLangArray(txslLangIndex.gnErrorOpMsg, guLanguage) = "Error Message"
gsLangArray(txslLangIndex.gnEventControl, guLanguage) = "Event Control"
gsLangArray(txslLangIndex.gnEvents, guLanguage) = "Events"
gsLangArray(txslLangIndex.gnException, guLanguage) = "Exception"
gsLangArray(txslLangIndex.gnExceptionHalt, guLanguage) = "Exception Halt"
gsLangArray(txslLangIndex.gnExceptionOpMsg, guLanguage) = "An exception was encountered, and the exception sequence run"
gsLangArray(txslLangIndex.gnExceptions, guLanguage) = "Exceptions"
gsLangArray(txslLangIndex.gnExecution, guLanguage) = "Execution"
gsLangArray(txslLangIndex.gnExecutionHistory1, guLanguage) = "E&xecution History"
gsLangArray(txslLangIndex.gnExecutionOptions, guLanguage) = "Execution Options"
gsLangArray(txslLangIndex.gnExit, guLanguage) = "Exit"
gsLangArray(txslLangIndex.gnExit1, guLanguage) = "E&xit"
gsLangArray(txslLangIndex.gnExitFailed, guLanguage) = "Exit Failed"
gsLangArray(txslLangIndex.gnFail, guLanguage) = "Fail"
gsLangArray(txslLangIndex.gnFailCount, guLanguage) = "Fail Count"
gsLangArray(txslLangIndex.gnFailed, guLanguage) = "Failed"
gsLangArray(txslLangIndex.gnFailed1Param, guLanguage) = "Failed: %1"
gsLangArray(txslLangIndex.gnFailedColon, guLanguage) = "Failed:"
gsLangArray(txslLangIndex.gnFailedOpMsg, guLanguage) = "The UUT failed more than the number of failures specified in fail limit"
gsLangArray(txslLangIndex.gnFailedTests, guLanguage) = "Failed Tests"
gsLangArray(txslLangIndex.gnFailedTestsinHistory, guLanguage) = "Failed Tests in History"
gsLangArray(txslLangIndex.gnFailedUUTCount, guLanguage) = "FailedUUTCount"
gsLangArray(txslLangIndex.gnFailedUUTsinhistory, guLanguage) = "Failed UUTs in history"
gsLangArray(txslLangIndex.gnFailureCount, guLanguage) = "Failure Count"
gsLangArray(txslLangIndex.gnFailureHandling, guLanguage) = "Failure Handling"
gsLangArray(txslLangIndex.gnFailures, guLanguage) = "Failures"
gsLangArray(txslLangIndex.gnFALSE, guLanguage) = "False"
gsLangArray(txslLangIndex.gnFile1, guLanguage) = "&File"
gsLangArray(txslLangIndex.gnFixture, guLanguage) = "Fixture"
gsLangArray(txslLangIndex.gnFixtureID, guLanguage) = "Fixture ID"
gsLangArray(txslLangIndex.gnFrench, guLanguage) = "French"
gsLangArray(txslLangIndex.gnGerman, guLanguage) = "German"
gsLangArray(txslLangIndex.gnHaltOnFailureCount, guLanguage) = "Halt On Failure Count"
gsLangArray(txslLangIndex.gnHelp1, guLanguage) = "&Help"
gsLangArray(txslLangIndex.gnAgilentTechnologies, guLanguage) = "Agilent Technologies"
gsLangArray(txslLangIndex.gnHighFail, guLanguage) = "High Fail"
gsLangArray(txslLangIndex.gnHighLimit, guLanguage) = "High Limit"