summaryrefslogtreecommitdiff
path: root/basic/source/app/svtmsg.src
blob: 891d261f703025c1c55f37755887a30bd56eaf8f (plain)
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
/*************************************************************************
 *
 *  $RCSfile: svtmsg.src,v $
 *
 *  $Revision: 1.8 $
 *
 *  last change: $Author: kz $ $Date: 2000-12-07 15:36:02 $
 *
 *  The Contents of this file are made available subject to the terms of
 *  either of the following licenses
 *
 *         - GNU Lesser General Public License Version 2.1
 *         - Sun Industry Standards Source License Version 1.1
 *
 *  Sun Microsystems Inc., October, 2000
 *
 *  GNU Lesser General Public License Version 2.1
 *  =============================================
 *  Copyright 2000 by Sun Microsystems, Inc.
 *  901 San Antonio Road, Palo Alto, CA 94303, USA
 *
 *  This library is free software; you can redistribute it and/or
 *  modify it under the terms of the GNU Lesser General Public
 *  License version 2.1, as published by the Free Software Foundation.
 *
 *  This library is distributed in the hope that it will be useful,
 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 *  Lesser General Public License for more details.
 *
 *  You should have received a copy of the GNU Lesser General Public
 *  License along with this library; if not, write to the Free Software
 *  Foundation, Inc., 59 Temple Place, Suite 330, Boston,
 *  MA  02111-1307  USA
 *
 *
 *  Sun Industry Standards Source License Version 1.1
 *  =================================================
 *  The contents of this file are subject to the Sun Industry Standards
 *  Source License Version 1.1 (the "License"); You may not use this file
 *  except in compliance with the License. You may obtain a copy of the
 *  License at http://www.openoffice.org/license.html.
 *
 *  Software provided under this License is provided on an "AS IS" basis,
 *  WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING,
 *  WITHOUT LIMITATION, WARRANTIES THAT THE SOFTWARE IS FREE OF DEFECTS,
 *  MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE, OR NON-INFRINGING.
 *  See the License for the specific provisions governing your rights and
 *  obligations concerning the Software.
 *
 *  The Initial Developer of the Original Code is: Sun Microsystems, Inc.
 *
 *  Copyright: 2000 by Sun Microsystems, Inc.
 *
 *  All Rights Reserved.
 *
 *  Contributor(s): _______________________________________
 *
 *
 ************************************************************************/
#include <svtools/svtmsg.hrc>


// Hier sind die Messages aus dem Verzeichnis /basic/source/app enhalten


///////////////////////////////
// Fehlermeldungen, die in das Resultfile gelangen.
// *********************
// ***  !!ACHTUNG!!  ***
// *********************
// Die Nummern drfen sich NIE! ndern,
// da sie in den Resultfiles gespeichert sind, und bei erneutem Anzeigen
// statdessen die entsprechenden neuen oder garkeine Strings angzeigt werden.
///////////////////////////////
String S_GPF_ABORT
{
    Text = "Programm abgebrochen mit GPF";
    Text[ english_us ] = "Program aborted with GPF";
    Text[ portuguese ] = "Programa abortado com GPF";
    Text[ russian ] = "Program aborted with GPF";
    Text[ greek ] = "Program aborted with GPF";
    Text[ dutch ] = "Programma gestopt met GPF";
    Text[ french ] = "Programme interrompu avec GPF";
    Text[ spanish ] = "Programa interrumpido con GPF";
    Text[ italian ] = "Program aborted with GPF";
    Text[ danish ] = "Program aborted with GPF";
    Text[ swedish ] = "Program aborted with GPF";
    Text[ polish ] = "Przerwanie programu przez GPF";
    Text[ portuguese_brazilian ] = "Programmstart: ($Arg1); ($Arg2)";
    Text[ japanese ] = "Program aborted with GPF";
    Text[ korean ] = "α׷ GPF Բ ҵǾϴ.";
    Text[ chinese_simplified ] = "Program aborted with GPF";
    Text[ chinese_traditional ] = "Program aborted with GPF";
    Text[ arabic ] = "Program aborted with GPF";
    Text[ turkish ] = "Program aborted with GPF";
};
String S_APP_SHUTDOWN
{
    Text = "Applikation wurde Beendet";
    Text[ english_us ] = "Application has been shut down";
    Text[ portuguese ] = "A aplicao foi fechada.";
    Text[ russian ] = "Application has been shut down";
    Text[ greek ] = "Application has been shut down";
    Text[ dutch ] = "Applicatie werd beindigd";
    Text[ french ] = "L'application a t arrte.";
    Text[ spanish ] = "Se cerr la aplicacin";
    Text[ italian ] = "Application has been shut down";
    Text[ danish ] = "Application has been shut down";
    Text[ swedish ] = "Application has been shut down";
    Text[ polish ] = "Aplikacja zakoczona";
    Text[ portuguese_brazilian ] = "Programmstart: ($Arg1); ($Arg2)";
    Text[ japanese ] = "Application has been shut down";
    Text[ korean ] = "α׷  Ǿϴ.";
    Text[ chinese_simplified ] = "Application has been shut down";
    Text[ chinese_traditional ] = "Application has been shut down";
    Text[ arabic ] = "Application has been shut down";
    Text[ turkish ] = "Application has been shut down";
};
String S_SID_EXECUTE_FAILED_NO_DISPATCHER
{
    Text = "Konnte Slot ID nicht ausfhren: Kein ActiveDispatcher";
    Text[ english_us ] = "Slot ID cannot be run. No ActiveDispatcher";
    Text[ portuguese ] = "Foi impossvel executar Slot ID: ActiveDispatcher inexistente";
    Text[ russian ] = "Slot ID cannot be run. No ActiveDispatcher";
    Text[ greek ] = "Slot ID cannot be run. No ActiveDispatcher";
    Text[ dutch ] = "Kon slot ID niet uitvoeren: geen ActiveDispatcher";
    Text[ french ] = "Impossible d'excuter Slot ID : aucun dispatcheur actif";
    Text[ spanish ] = "No se pudo ejecutar Slot ID. ActiveDispatcher inexistente";
    Text[ italian ] = "Slot ID cannot be run. No ActiveDispatcher";
    Text[ danish ] = "Slot ID cannot be run. No ActiveDispatcher";
    Text[ swedish ] = "Slot ID cannot be run. No ActiveDispatcher";
    Text[ polish ] = "Nie mg wykona Slot ID: Brak ActiveDispatcher";
    Text[ portuguese_brazilian ] = "Programmstart: ($Arg1); ($Arg2)";
    Text[ japanese ] = "Slot ID cannot be run. No ActiveDispatcher";
    Text[ korean ] = " ID ۵  ϴ. ActiveDispatcher ϴ.";
    Text[ chinese_simplified ] = "Slot ID cannot be run. No ActiveDispatcher";
    Text[ chinese_traditional ] = "Slot ID cannot be run. No ActiveDispatcher";
    Text[ arabic ] = "Slot ID cannot be run. No ActiveDispatcher";
    Text[ turkish ] = "Slot ID cannot be run. No ActiveDispatcher";
};
String S_SID_EXECUTE_FAILED
{
    Text = "Konnte Slot ID nicht ausfhren";
    Text[ english_us ] = "Slot ID could not be run";
    Text[ portuguese ] = "Impossvel executar Slot ID.";
    Text[ russian ] = "Slot ID could not be run";
    Text[ greek ] = "Slot ID could not be run";
    Text[ dutch ] = "Kon slot ID niet uitvoeren";
    Text[ french ] = "Impossible d'excuter Slot ID";
    Text[ spanish ] = "No se pudo ejecutar Slot ID";
    Text[ italian ] = "Slot ID could not be run";
    Text[ danish ] = "Slot ID could not be run";
    Text[ swedish ] = "Slot ID could not be run";
    Text[ polish ] = "Nie mg wykona Slot ID";
    Text[ portuguese_brazilian ] = "Programmstart: ($Arg1); ($Arg2)";
    Text[ japanese ] = "Slot ID could not be run";
    Text[ korean ] = " ID ۵  ϴ.";
    Text[ chinese_simplified ] = "Slot ID could not be run";
    Text[ chinese_traditional ] = "Slot ID could not be run";
    Text[ arabic ] = "Slot ID could not be run";
    Text[ turkish ] = "Slot ID could not be run";
};
String S_UNO_PROPERTY_NITIALIZE_FAILED
{
    Text = "UnoSlot: Konnte Properties nicht initialisieren.";
    Text[ english_us ] = "UnoSlot: Properties could not be initialized";
    Text[ portuguese ] = "UnoSlot: impossvel inicializar Properties.";
    Text[ russian ] = "UnoSlot: Properties could not be initialized";
    Text[ greek ] = "UnoSlot: Properties could not be initialized";
    Text[ dutch ] = "UnoSlot: kon Properties niet initialiseren";
    Text[ french ] = "UnoSlot : Impossible d'initialiser les proprits.";
    Text[ spanish ] = "UnoSlot: No se pudo instalar Properties";
    Text[ italian ] = "UnoSlot: Properties could not be initialized.";
    Text[ danish ] = "UnoSlot: Properties could not be initialized";
    Text[ swedish ] = "UnoSlot: Properties could not be initialized";
    Text[ polish ] = "UnoSlot: Nie mg rozpocz Properties.";
    Text[ portuguese_brazilian ] = "Programmstart: ($Arg1); ($Arg2)";
    Text[ japanese ] = "UnoSlot: Properties could not be initialized";
    Text[ korean ] = "UnoSlot: Ӽ ʱȭ  ʽϴ.";
    Text[ chinese_simplified ] = "UnoSlot: Properties could not be initialized";
    Text[ chinese_traditional ] = "UnoSlot: Properties could not be initialized";
    Text[ arabic ] = "UnoSlot: Properties could not be initialized";
    Text[ turkish ] = "UnoSlot: Properties could not be initialized";
};
String S_RESETAPPLICATION_FAILED_COMPLEX
{
    Text = "ResetApplication fehlgeschlagen: Zu komplex";
    Text[ english_us ] = "ResetApplication failed: too complex";
    Text[ portuguese ] = "ResetApplication falhou: demasiado complexa";
    Text[ russian ] = "ResetApplication failed: too complex";
    Text[ greek ] = "ResetApplication failed: too complex";
    Text[ dutch ] = "ResetApplication mislukt: te gecompliceerd";
    Text[ french ] = "chec de ResetApplication : trop complexe";
    Text[ spanish ] = "No se realiz ResetApplication: Demasiado compleja";
    Text[ italian ] = "ResetApplication failed: too complex";
    Text[ danish ] = "ResetApplication failed: too complex";
    Text[ swedish ] = "ResetApplication failed: too complex";
    Text[ polish ] = "ResetApplikation nie powido si: za bardzo zoone";
    Text[ portuguese_brazilian ] = "Programmstart: ($Arg1); ($Arg2)";
    Text[ japanese ] = "ResetApplication failed: too complex";
    Text[ korean ] = "ResetApplication   : ʹ մϴ.";
    Text[ chinese_simplified ] = "ResetApplication failed: too complex";
    Text[ chinese_traditional ] = "ResetApplication failed: too complex";
    Text[ arabic ] = "ResetApplication failed: too complex";
    Text[ turkish ] = "ResetApplication failed: too complex";
};
String S_RESETAPPLICATION_FAILED_UNKNOWN
{
    Text = "ResetApplication fehlgeschlagen: Unbekannter Fenstertyp";
    Text[ english_us ] = "ResetApplication failed: unknown window type";
    Text[ portuguese ] = "ResetApplication falhou: tipo de janela desconhecido";
    Text[ russian ] = "ResetApplication failed: unknown window type";
    Text[ greek ] = "ResetApplication failed: unknown window type";
    Text[ dutch ] = "RestApplication mislukt: onbekend venstertype";
    Text[ french ] = "chec de ResetApplication : type de fentre inconnu";
    Text[ spanish ] = "No se realiz ResetApplication: Tipo desconocido de error";
    Text[ italian ] = "RestApplication failed: unknown window type.";
    Text[ danish ] = "ResetApplication failed: unknown window type";
    Text[ swedish ] = "ResetApplication failed: unknown window type";
    Text[ polish ] = "ResetApplikation nie powiodo si: nieznany typ okna";
    Text[ portuguese_brazilian ] = "Programmstart: ($Arg1); ($Arg2)";
    Text[ japanese ] = "ResetApplication failed: unknown window type";
    Text[ korean ] = "ResetApplication   : ˼ â Ÿ";
    Text[ chinese_simplified ] = "ResetApplication failed: unknown window type";
    Text[ chinese_traditional ] = "ResetApplication failed: unknown window type";
    Text[ arabic ] = "ResetApplication failed: unknown window type";
    Text[ turkish ] = "ResetApplication failed: unknown window type";
};
String S_NO_ACTIVE_WINDOW
{
    Text = "Kein aktives Fenster gefunden (GetNextCloseWindow)";
    Text[ english_us ] = "Active window not found (GetNextCloseWindow)";
    Text[ portuguese ] = "Impossvel encontrar janela activa (GetNextCloseWindow)";
    Text[ russian ] = "Active window not found (GetNextCloseWindow)";
    Text[ greek ] = "Active window not found (GetNextCloseWindow)";
    Text[ dutch ] = "Geen actief venster gevonden (GetNextCloseWindows)";
    Text[ french ] = "Aucune fentre active dtecte (GetNextCloseWindow)";
    Text[ spanish ] = "No se encontr ninguna ventana activa (GetNextCloseWindow)";
    Text[ italian ] = "Active window not found (GetNextCloseWindow)";
    Text[ danish ] = "Active window not found (GetNextCloseWindow)";
    Text[ swedish ] = "Active window not found (GetNextCloseWindow)";
    Text[ polish ] = "Nie znaleziono aktywnego okna (GetNextCloseWindow) ";
    Text[ portuguese_brazilian ] = "Programmstart: ($Arg1); ($Arg2)";
    Text[ japanese ] = "Active window not found (GetNextCloseWindow)";
    Text[ korean ] = "Ȱ â ߰ߵ ʽϴ.(GetNextCloseWindow)";
    Text[ chinese_simplified ] = "Active window not found (GetNextCloseWindow)";
    Text[ chinese_traditional ] = "ResetApplication failed: unknown window type";
    Text[ arabic ] = "Active window not found (GetNextCloseWindow)";
    Text[ turkish ] = "Active window not found (GetNextCloseWindow)";
};
String S_NO_DIALOG_IN_GETACTIVE
{
    Text = "GetActive liefert keinen Dialog zurck! Bitte Entwicklung informieren";
    Text[ english_us ] = "GetActive does not show a dialog! Inform development.";
    Text[ portuguese ] = "GetActive no devolve nenhuma caixa de dilogo! Informe o departamento de programao.";
    Text[ russian ] = "GetActive does not deliver a dialog! Inform development.";
    Text[ greek ] = "GetActive does not deliver a dialog! Inform development.";
    Text[ dutch ] = "GetActive levert geen dialoog terug! Ontwikkeling informeren!";
    Text[ french ] = "GetActive ne fournit aucune bote de dialogue ! Veuillez informer le service de dveloppement.";
    Text[ spanish ] = "GetActive no devuelve ningn dilogo! Informe por favor al servicio de programacin";
    Text[ italian ] = "GetActive does not deliver a dialog! Inform development.";
    Text[ danish ] = "GetActive does not deliver a dialog! Inform development.";
    Text[ swedish ] = "GetActive does not deliver a dialog! Inform development.";
    Text[ polish ] = "GetActive nie wysya z powrotem adnego dialogu! Prosz powiadomi o tym oddzia programowania.";
    Text[ portuguese_brazilian ] = "Programmstart: ($Arg1); ($Arg2)";
    Text[ japanese ] = "GetActive does not deliver a dialog! Inform development.";
    Text[ korean ] = "GetActive does not deliver a dialog! Inform development.";
    Text[ chinese_simplified ] = "GetActive does not deliver a dialog! Inform development.";
    Text[ chinese_traditional ] = "GetActive does not deliver a dialog! Inform development.";
    Text[ arabic ] = "GetActive does not deliver a dialog! Inform development.";
    Text[ turkish ] = "GetActive does not deliver a dialog! Inform development.";
};
String S_NO_POPUP
{
    Text = "Kein PopupMenu geffnet";
    Text[ english_us ] = "PopUp menu not open";
    Text[ portuguese ] = "PopupMenu no est aberto";
    Text[ russian ] = "PopUp menu not open";
    Text[ greek ] = "PopUp menu not open";
    Text[ dutch ] = "Geen PopUpMenu geopend";
    Text[ french ] = "Aucun menu Pop-up ouvert";
    Text[ spanish ] = "No existe ningn PopupMenu abierto";
    Text[ italian ] = "PopUp menu not open";
    Text[ danish ] = "PopUp menu not open";
    Text[ swedish ] = "PopUp menu not open";
    Text[ polish ] = "Nie otworzono adnego menu Popup";
    Text[ portuguese_brazilian ] = "Programmstart: ($Arg1); ($Arg2)";
    Text[ japanese ] = "PopUp menu not open";
    Text[ korean ] = "˾ ޴  ʽϴ.";
    Text[ chinese_simplified ] = "PopUp menu not open";
    Text[ chinese_traditional ] = "PopUp menu not open";
    Text[ arabic ] = "PopUp menu not open";
    Text[ turkish ] = "PopUp menu not open";
};
String S_NO_SUBMENU
{
    Text = "Untermen nicht vorhanden";
    Text[ english_us ] = "Submenu does not exist";
    Text[ portuguese ] = "Submenu inexistente";
    Text[ russian ] = "Submenu does not exist";
    Text[ greek ] = "Submenu does not exist";
    Text[ dutch ] = "Submenu niet voorhanden";
    Text[ french ] = "Sous-menu inexistant";
    Text[ spanish ] = "Submen inexistente";
    Text[ italian ] = "Submenu does not exists";
    Text[ danish ] = "Submenu does not exist";
    Text[ swedish ] = "Submenu does not exist";
    Text[ polish ] = "Menu podrzdne nie istnieje";
    Text[ portuguese_brazilian ] = "Programmstart: ($Arg1); ($Arg2)";
    Text[ japanese ] = "Submenu does not exist";
    Text[ korean ] = " ޴ ϴ.";
    Text[ chinese_simplified ] = "Submenu does not exist";
    Text[ chinese_traditional ] = "Submenu does not exist";
    Text[ arabic ] = "Submenu does not exist";
    Text[ turkish ] = "Submenu does not exist";
};
String S_CONTROLTYPE_NOT_SUPPORTED
{
    Text = "ControlType ($Arg1) wird nicht untersttzt";
    Text[ english_us ] = "ControlType ($Arg1) is not supported";
    Text[ portuguese ] = "ControlType ($Arg1) no tem suporte";
    Text[ russian ] = "ControlType ($Arg1) is not supported";
    Text[ greek ] = "ControlType ($Arg1) is not supported";
    Text[ dutch ] = "ControlType ($Arg1) wordt niet ondersteund";
    Text[ french ] = "ControlType ($Arg1) non support";
    Text[ spanish ] = "No se apoya ControlType ($Arg1)";
    Text[ italian ] = "ControlType ($Arg1) is not supported";
    Text[ danish ] = "ControlType ($Arg1) is not supported";
    Text[ swedish ] = "ControlType ($Arg1) is not supported";
    Text[ polish ] = "ControlType ($Arg1) nie jest obsugiwany";
    Text[ portuguese_brazilian ] = "Programmstart: ($Arg1); ($Arg2)";
    Text[ japanese ] = "ControlType ($Arg1) is not supported";
    Text[ korean ] = "ControlType ($Arg1)   ʽϴ.";
    Text[ chinese_simplified ] = "ControlType ($Arg1) is not supported";
    Text[ chinese_traditional ] = "ControlType ($Arg1) is not supported";
    Text[ arabic ] = "ControlType ($Arg1) is not supported";
    Text[ turkish ] = "ControlType ($Arg1) is not supported";
};
String S_SELECTION_BY_ATTRIBUTE_ONLY_DIRECTORIES
{
    Text = "Selektion nach Attributen nur fr Directories mglich.";
    Text[ english_us ] = "Selection by attributes only possible for directories";
    Text[ portuguese ] = "A seleco por atributos  somente possvel para directrios.";
    Text[ russian ] = "Selection by attributes only possible for directories";
    Text[ greek ] = "Selection by attributes only possible for directories";
    Text[ dutch ] = "Selectie naar attributen alleen voor directory's mogelijk.";
    Text[ french ] = "La slection en fonction des attributs n'est possible que pour les rpertoires.";
    Text[ spanish ] = "La seleccin por atributos es solo posible para directorios.";
    Text[ italian ] = "Selection by attributes only possible for directories";
    Text[ danish ] = "Selection by attributes only possible for directories";
    Text[ swedish ] = "Selection by attributes only possible for directories";
    Text[ polish ] = "Selekcja wedug atrybutw moliwa jest tylko w wypadku katalogw.";
    Text[ portuguese_brazilian ] = "Programmstart: ($Arg1); ($Arg2)";
    Text[ japanese ] = "Selection by attributes only possible for directories";
    Text[ korean ] = "Ӽ  丮 մϴ.";
    Text[ chinese_simplified ] = "Selection by attributes only possible for directories";
    Text[ chinese_traditional ] = "Selection by attributes only possible for directories";
    Text[ arabic ] = "Selection by attributes only possible for directories";
    Text[ turkish ] = "Selection by attributes only possible for directories";
};
String S_NO_MORE_FILES
{
    Text = "Keine weiteren Dateien";
    Text[ english_us ] = "No further files";
    Text[ portuguese ] = "No existem outros ficheiros";
    Text[ russian ] = "No further files";
    Text[ greek ] = "No further files";
    Text[ dutch ] = "Geen verdere bestanden";
    Text[ french ] = "Aucun autre fichier";
    Text[ spanish ] = "Ningn otro archivo";
    Text[ italian ] = "No further files";
    Text[ danish ] = "No further files";
    Text[ swedish ] = "No further files";
    Text[ polish ] = "Brak innych plikw";
    Text[ portuguese_brazilian ] = "Programmstart: ($Arg1); ($Arg2)";
    Text[ japanese ] = "No further files";
    Text[ korean ] = " ̻  ϴ.";
    Text[ chinese_simplified ] = "No further files";
    Text[ chinese_traditional ] = "No further files";
    Text[ arabic ] = "No further files";
    Text[ turkish ] = "No further files";
};
String S_UNKNOWN_METHOD
{
    Text = "Unbekannte Methode '($Arg1)' an ($Arg2)";
    Text[ english_us ] = "Unknown method '($Arg1)' to ($Arg2)";
    Text[ portuguese ] = "Mtodo desconhecido ($Arg1) para ($Arg2)";
    Text[ russian ] = "Unknown method '($Arg1)' to ($Arg2)";
    Text[ greek ] = "Unknown method '($Arg1)' to ($Arg2)";
    Text[ dutch ] = "Onbekende methode '($Arg1)' aan ($Arg2)";
    Text[ french ] = "Mthode inconnue '($Arg1)' vers ($Arg2)";
    Text[ spanish ] = "Mtodo desconocido '($Arg1)' a ($Arg2)";
    Text[ italian ] = "Unknown method '($Arg1)' to ($Arg2)";
    Text[ danish ] = "Unknown method '($Arg1)' to ($Arg2)";
    Text[ swedish ] = "Unknown method '($Arg1)' to ($Arg2)";
    Text[ polish ] = "Nieznana metoda '($Arg1)' do ($Arg2)";
    Text[ portuguese_brazilian ] = "Unbekannte Methode an Objekt : ($Arg1).($Arg2)";
    Text[ japanese ] = "Unknown method '($Arg1)' to ($Arg2)";
    Text[ korean ] = "($Arg2)     ޼ '($Arg1)'";
    Text[ chinese_simplified ] = "($Arg2)ϲķ'($Arg1)'";
    Text[ chinese_traditional ] = "Unknown method '($Arg1)' to ($Arg2)";
    Text[ arabic ] = "Unknown method '($Arg1)' to ($Arg2)";
    Text[ turkish ] = "Unknown method '($Arg1)' to ($Arg2)";
};
String S_INVALID_PARAMETERS
{
    Text = "Ungltige Parameter";
    Text[ english_us ] = "Invalid Parameters";
    Text[ portuguese ] = "Parmetros no vlidos";
    Text[ russian ] = "Invalid Parameters";
    Text[ greek ] = "Invalid Parameters";
    Text[ dutch ] = "Ongeldige parameters";
    Text[ french ] = "Paramtres incorrects";
    Text[ spanish ] = "Parmetros incorrectos";
    Text[ italian ] = "Invalid parameters";
    Text[ danish ] = "Invalid Parameters";
    Text[ swedish ] = "Invalid Parameters";
    Text[ polish ] = "Nieprawidowe parametry";
    Text[ portuguese_brazilian ] = "Invalid Parameters";
    Text[ japanese ] = "Invalid Parameters";
    Text[ korean ] = "ȿ  Ķ";
    Text[ chinese_simplified ] = "Invalid Parameters";
    Text[ chinese_traditional ] = "Invalid Parameters";
    Text[ arabic ] = "Invalid Parameters";
    Text[ turkish ] = "Invalid Parameters";
};
String S_POINTER_OUTSIDE_APPWIN
{
    Text = "Pointer nicht innerhalb des Applikationsfensters bei '($Arg1)'";
    Text[ english_us ] = "Pointer not located in application window at '($Arg1)'";
    Text[ portuguese ] = "O ponteiro no est dentro da janela de aplicao em '($Arg1)'";
    Text[ russian ] = "Pointer not located in application window at '($Arg1)'";
    Text[ greek ] = "Pointer not located in application window at '($Arg1)'";
    Text[ dutch ] = "Pointer niet in applicatievenster bij '($Arg1)'";
    Text[ french ] = "Pointeur en dehors de la fentre de l'application pour '($Arg1)'";
    Text[ spanish ] = "Pointer fuera de la ventana de aplicacin en '($Arg1)'";
    Text[ italian ] = "Pointer not located in application window at '($Arg1)'";
    Text[ danish ] = "Pointer not located in application window at '($Arg1)'";
    Text[ swedish ] = "Pointer not located in application window at '($Arg1)'";
    Text[ polish ] = "Pointer poza obszarem okna aplikacji przy '($Arg1)' ";
    Text[ portuguese_brazilian ] = "Programmstart: ($Arg1); ($Arg2)";
    Text[ japanese ] = "Pointer not located in application window at '($Arg1)'";
    Text[ korean ] = " α׷ â '($Arg1)' Ͱ ϴ.";
    Text[ chinese_simplified ] = "Pointer not located in application window at '($Arg1)'";
    Text[ chinese_traditional ] = "Pointer not located in application window at '($Arg1)'";
    Text[ arabic ] = "Pointer not located in application window at '($Arg1)'";
    Text[ turkish ] = "Pointer not located in application window at '($Arg1)'";
};
String S_UNKNOWN_COMMAND
{
    Text = "Unbekannter Befehl '($Arg1)'";
    Text[ english_us ] = "Unknown command '($Arg1)'";
    Text[ portuguese ] = "Comando desconhecido '($Arg1)'";
    Text[ russian ] = "Unknown command '($Arg1)'";
    Text[ greek ] = "Unknown command '($Arg1)'";
    Text[ dutch ] = "Onbekende opdracht '($Arg1)'";
    Text[ french ] = "Commande inconnue '($Arg1)'";
    Text[ spanish ] = "Error desconocido '($Arg1)'";
    Text[ italian ] = "Unknown command '($Arg1)'";
    Text[ danish ] = "Unknown command '($Arg1)'";
    Text[ swedish ] = "Unknown command '($Arg1)'";
    Text[ polish ] = "Nieznane polecenie ($Arg1)";
    Text[ portuguese_brazilian ] = "Programmstart: ($Arg1); ($Arg2)";
    Text[ japanese ] = "Unknown command '($Arg1)'";
    Text[ korean ] = "˼ ɾ '($Arg1)'";
    Text[ chinese_simplified ] = "Unknown command '($Arg1)'";
    Text[ chinese_traditional ] = "Unknown command '($Arg1)'";
    Text[ arabic ] = "Unknown command '($Arg1)'";
    Text[ turkish ] = "Unknown command '($Arg1)'";
};
String S_WIN_NOT_FOUND
{
    Text = "Konnte ($Arg1) nicht finden.";
    Text[ english_us ] = "($Arg1) could not be found";
    Text[ portuguese ] = "Foi impossvel encontrar ($Arg1).";
    Text[ russian ] = "($Arg1) could not be found";
    Text[ greek ] = "($Arg1) could not be found";
    Text[ dutch ] = "Kon ($Arg1) niet vinden";
    Text[ french ] = "($Arg1) introuvable";
    Text[ spanish ] = "No se pudo encontrar ($Arg1)";
    Text[ italian ] = "($Arg1) could not be found.";
    Text[ danish ] = "($Arg1) could not be found";
    Text[ swedish ] = "($Arg1) could not be found";
    Text[ polish ] = "($Arg1) could not be found";
    Text[ portuguese_brazilian ] = "Programmstart: ($Arg1); ($Arg2)";
    Text[ japanese ] = "($Arg1) could not be found";
    Text[ korean ] = "($Arg1)  ߰ߵ ʽϴ.";
    Text[ chinese_simplified ] = "($Arg1) could not be found.";
    Text[ chinese_traditional ] = "($Arg1) could not be found";
    Text[ arabic ] = "($Arg1) could not be found";
    Text[ turkish ] = "($Arg1) could not be found";
};
String S_WIN_INVISIBLE
{
    Text = "($Arg1) ist unsichtbar.";
    Text[ english_us ] = "($Arg1) is not visible";
    Text[ portuguese ] = "($Arg1)  invisvel.";
    Text[ russian ] = "($Arg1) is not visible";
    Text[ greek ] = "($Arg1) is not visible";
    Text[ dutch ] = "($Arg1) is onzichtbaar";
    Text[ french ] = "($Arg1) invisible";
    Text[ spanish ] = "No se puede ver ($Arg1).";
    Text[ italian ] = "$Arg1) is not visible";
    Text[ danish ] = "($Arg1) is not visible";
    Text[ swedish ] = "($Arg1) is not visible";
    Text[ polish ] = "($Arg1) is not visible ";
    Text[ portuguese_brazilian ] = "Programmstart: ($Arg1); ($Arg2)";
    Text[ japanese ] = "($Arg1) is not visible";
    Text[ korean ] = "($Arg1)  ʽϴ.";
    Text[ chinese_simplified ] = "($Arg1) is not visible.";
    Text[ chinese_traditional ] = "($Arg1) is not visible";
    Text[ arabic ] = "($Arg1) is not visible";
    Text[ turkish ] = "($Arg1) is not visible";
};
String S_WIN_DISABLED
{
    Text = "Konnte auf ($Arg1) nicht zugreifen.";
    Text[ english_us ] = "($Arg1) could not be accessed.";
    Text[ portuguese ] = "Impossvel o acesso a ($Arg1).";
    Text[ russian ] = "($Arg1) could not be accessed";
    Text[ greek ] = "($Arg1) could not be accessed";
    Text[ dutch ] = "Geen toegang tot ($Arg1)";
    Text[ french ] = "Accs  ($Arg1) impossible";
    Text[ spanish ] = "No se pudo acceder a ($Arg1)";
    Text[ italian ] = "Impossibile accedere a ($Arg1)";
    Text[ danish ] = "($Arg1) could not be accessed";
    Text[ swedish ] = "($Arg1) could not be accessed";
    Text[ polish ] = "Brak dostpu do ($Arg1).";
    Text[ portuguese_brazilian ] = "Programmstart: ($Arg1); ($Arg2)";
    Text[ japanese ] = "($Arg1) ɱł܂łB";
    Text[ korean ] = "($Arg1) Ҽ ϴ.";
    Text[ chinese_simplified ] = "($Arg1) could not be accessed.";
    Text[ chinese_traditional ] = "($Arg1) could not be accessed.";
    Text[ arabic ] = "   ($Arg1).";
    Text[ turkish ] = "($Arg1) could not be accessed";
};
String S_NUMBER_TOO_BIG
{
    Text = "Eintragsnummer ($Arg2) zu gro in ($Arg1). Maximum ist ($Arg3)";
    Text[ english_us ] = "Entry number ($Arg2) is too large in ($Arg1). Max. allowed is ($Arg3)";
    Text[ portuguese ] = "O nmero da entrada ($Arg2)  muito elevado em ($Arg1). O mximo  ($Arg3)";
    Text[ russian ] = "Entry number ($Arg2) is too large in ($Arg1). Max. allowed is ($Arg3)";
    Text[ greek ] = "Entry number ($Arg2) is too large in ($Arg1). Max. allowed is ($Arg3)";
    Text[ dutch ] = "Nummer voor ($Arg2) te hoog in ($Arg1). Maximum is ($Arg3)";
    Text[ french ] = "Le numro d'entre ($Arg2) est trop lev pour ($Arg1). Le maximum possible est ($Arg3)";
    Text[ spanish ] = "Nm. de entradas ($Arg2) es demasiado grande en ($Arg1). El mximo es ($Arg3)";
    Text[ italian ] = "Entry number ($Arg2) is too large in ($Arg1). Max. allowed is ($Arg3)";
    Text[ danish ] = "Entry number ($Arg2) is too large in ($Arg1). Max. allowed is ($Arg3)";
    Text[ swedish ] = "Entry number ($Arg2) is too large in ($Arg1). Max. allowed is ($Arg3)";
    Text[ polish ] = "Entry number ($Arg2) is too large in ($Arg1). Max. allowed is ($Arg3)";
    Text[ portuguese_brazilian ] = "Programmstart: ($Arg1); ($Arg2)";
    Text[ japanese ] = "Entry number ($Arg2) is too large in ($Arg1). Max. allowed is ($Arg3)";
    Text[ korean ] = "($Arg1) ׸ ȣ($Arg2) ʹ Ůϴ.  ִ밪  ($Arg3)Դϴ.";
    Text[ chinese_simplified ] = "Entry number ($Arg2) is too large in ($Arg1). Max. allowed is ($Arg3).";
    Text[ chinese_traditional ] = "Entry number ($Arg2) is too large in ($Arg1). Max. allowed is ($Arg3)";
    Text[ arabic ] = "Entry number ($Arg2) is too large in ($Arg1). Max. allowed is ($Arg3)";
    Text[ turkish ] = "Entry number ($Arg2) is too large in ($Arg1). Max. allowed is ($Arg3)";
};
String S_NUMBER_TOO_SMALL
{
    Text = "Eintragsnummer ($Arg2) zu klein in ($Arg1). Minimum ist ($Arg3)";
    Text[ english_us ] = "The entry number ($Arg2) is too small in ($Arg1). Min allowed is ($Arg3)";
    Text[ portuguese ] = "O nmero da entrada ($Arg2)  muito baixo em ($Arg1). O mnimo  ($Arg3)";
    Text[ russian ] = "The entry number ($Arg2) is too small in ($Arg1). Min allowed is ($Arg3)";
    Text[ greek ] = "The entry number ($Arg2) is too small in ($Arg1). Min allowed is ($Arg3)";
    Text[ dutch ] = "Nummer voor ($Arg2) te laag in ($Arg1). Minimum is ($Arg3)";
    Text[ french ] = "Le numro d'entre ($Arg2) est trop bas pour ($Arg1). Le minimum possible est ($Arg3)";
    Text[ spanish ] = "Nm. de entradas ($Arg2) es demasiado pequeo en ($Arg1). El mnimo es ($Arg3)";
    Text[ italian ] = "The entry number ($Arg2) is too small in ($Arg1). Min allowed is ($Arg3)";
    Text[ danish ] = "The entry number ($Arg2) is too small in ($Arg1). Min allowed is ($Arg3)";
    Text[ swedish ] = "The entry number ($Arg2) is too small in ($Arg1). Min allowed is ($Arg3)";
    Text[ polish ] = "The entry number ($Arg2) is too small in ($Arg1). Min allowed is ($Arg3)";
    Text[ portuguese_brazilian ] = "Programmstart: ($Arg1); ($Arg2)";
    Text[ japanese ] = "The entry number ($Arg2) is too small in ($Arg1). Min allowed is ($Arg3)";
    Text[ korean ] = "($Arg1) ׸ ȣ($Arg2) ʹ ۽ϴ.  ּҰ  ($Arg3)Դϴ.";
    Text[ chinese_simplified ] = "The entry number ($Arg2) is too small in ($Arg1). Min. allowed is ($Arg3).";
    Text[ chinese_traditional ] = "The entry number ($Arg2) is too small in ($Arg1). Min allowed is ($Arg3)";
    Text[ arabic ] = "The entry number ($Arg2) is too small in ($Arg1). Min allowed is ($Arg3)";
    Text[ turkish ] = "The entry number ($Arg2) is too small in ($Arg1). Min allowed is ($Arg3)";
};
String S_WINDOW_DISAPPEARED
{
    Text = "Window zwischenzeitlich verschwunden bei ($Arg1)";
    Text[ english_us ] = "Window momentarily not visible at ($Arg1)";
    Text[ portuguese ] = "Desaparecimento momentneo da janela em ($Arg1)";
    Text[ russian ] = "Window momentarily not visible at ($Arg1)";
    Text[ greek ] = "Window momentarily not visible at ($Arg1)";
    Text[ dutch ] = "Windows momenteel niet zichtbaar bij ($Arg1)";
    Text[ french ] = "Disparition momentane de la fentre  ($Arg1)";
    Text[ spanish ] = "Desaparacin momentnea de Windows en ($Arg1)";
    Text[ italian ] = "Window momentarily not visible at ($Arg1)";
    Text[ danish ] = "Window momentarily not visible at ($Arg1)";
    Text[ swedish ] = "Window momentarily not visible at ($Arg1)";
    Text[ polish ] = "Window momentarily not visible at ($Arg1)";
    Text[ portuguese_brazilian ] = "Programmstart: ($Arg1); ($Arg2)";
    Text[ japanese ] = "Window momentarily not visible at ($Arg1)";
    Text[ korean ] = "Window   ($Arg1) ";
    Text[ chinese_simplified ] = "Window momentarily not visible at ($Arg1)";
    Text[ chinese_traditional ] = "Window momentarily not visible at ($Arg1)";
    Text[ arabic ] = "Window momentarily not visible at ($Arg1)";
    Text[ turkish ] = "Window momentarily not visible at ($Arg1)";
};
String S_ERROR_SAVING_IMAGE
{
    Text = "Fehler #($Arg1) beim Speichern des Bildes";
    Text[ english_us ] = "Error #($Arg1) when saving the image";
    Text[ portuguese ] = "Erro #($Arg1) ao guardar a imagem";
    Text[ russian ] = "Error #($Arg1) when saving the image";
    Text[ greek ] = "Error #($Arg1) when saving the image";
    Text[ dutch ] = "Fout #($Arg1) bij opslaan van afbeelding";
    Text[ french ] = "Erreur #($Arg1) lors de l'enregistrement de l'image";
    Text[ spanish ] = "Error #($Arg1) al guardar la imagen";
    Text[ italian ] = "Error #($Arg1) when saving the image";
    Text[ danish ] = "Error #($Arg1) when saving the image";
    Text[ swedish ] = "Error #($Arg1) when saving the image";
    Text[ polish ] = "Error #($Arg1) when saving the image";
    Text[ portuguese_brazilian ] = "Programmstart: ($Arg1); ($Arg2)";
    Text[ japanese ] = "Error #($Arg1) when saving the image";
    Text[ korean ] = "̹    #($Arg1)";
    Text[ chinese_simplified ] = "Error #($Arg1) when saving the image";
    Text[ chinese_traditional ] = "Error #($Arg1) when saving the image";
    Text[ arabic ] = "Error #($Arg1) when saving the image";
    Text[ turkish ] = "Error #($Arg1) when saving the image";
};
String S_INVALID_POSITION
{
    Text = "Ungltige Positionsangabe bei ($Arg1)";
    Text[ english_us ] = "Invalid positon at ($Arg1)";
    Text[ portuguese ] = "Posio indicada incorrectamente em ($Arg1)";
    Text[ russian ] = "Invalid positon at ($Arg1)";
    Text[ greek ] = "Invalid positon at ($Arg1)";
    Text[ dutch ] = "Omgeldige positie aangegeven bij ($Arg1)";
    Text[ french ] = "Erreur d'indication de l'emplacement de ($Arg1)";
    Text[ spanish ] = "Posicin indicada incorrecta en ($Arg1)";
    Text[ italian ] = "Invalid positon at ($Arg1)";
    Text[ danish ] = "Invalid positon at ($Arg1)";
    Text[ swedish ] = "Invalid positon at ($Arg1)";
    Text[ polish ] = "Invalid positon at ($Arg1)";
    Text[ portuguese_brazilian ] = "Programmstart: ($Arg1); ($Arg2)";
    Text[ japanese ] = "Invalid positon at ($Arg1)";
    Text[ korean ] = "($Arg1) ȿ  ġ";
    Text[ chinese_simplified ] = "Invalid positon at ($Arg1)";
    Text[ chinese_traditional ] = "Invalid positon at ($Arg1)";
    Text[ arabic ] = "Invalid positon at ($Arg1)";
    Text[ turkish ] = "Invalid positon at ($Arg1)";
};
String S_SPLITWIN_NOT_FOUND
{
    Text = "Konnte SplitWindow nicht finden bei ($Arg1)";
    Text[ english_us ] = "Split window not found at ($Arg1)";
    Text[ portuguese ] = "Foi impossvel encontrar SplitWindow em ($Arg1)";
    Text[ russian ] = "Split window not found at ($Arg1)";
    Text[ greek ] = "Split window not found at ($Arg1)";
    Text[ dutch ] = "Kon SplitWindow niet vinden bij ($Arg1)";
    Text[ french ] = "SplitWindow introuvable pour ($Arg1)";
    Text[ spanish ] = "No se pudo encontrar SplitWindow en ($Arg1)";
    Text[ italian ] = "Split window not found at ($Arg1)";
    Text[ danish ] = "Split window not found at ($Arg1)";
    Text[ swedish ] = "Split window not found at ($Arg1)";
    Text[ polish ] = "Split window not found at ($Arg1)";
    Text[ portuguese_brazilian ] = "Programmstart: ($Arg1); ($Arg2)";
    Text[ japanese ] = "Split window not found at ($Arg1)";
    Text[ korean ] = "SplitWindow ($Arg1) ã ";
    Text[ chinese_simplified ] = "Split window not found at ($Arg1)";
    Text[ chinese_traditional ] = "Split window not found at ($Arg1)";
    Text[ arabic ] = "Split window not found at ($Arg1)";
    Text[ turkish ] = "Split window not found at ($Arg1)";
};
String S_INTERNAL_ERROR
{
    Text = "Interner Fehler bei ($Arg1)";
    Text[ english_us ] = "Internal error at ($Arg1)";
    Text[ portuguese ] = "Erro interno em ($Arg1)";
    Text[ russian ] = "Internal error at ($Arg1)";
    Text[ greek ] = "Internal error at ($Arg1)";
    Text[ dutch ] = "Interne fout bij ($Arg1)";
    Text[ french ] = "Erreur interne pour ($Arg1)";
    Text[ spanish ] = "Error interno en ($Arg1)";
    Text[ italian ] = "Internal error at ($Arg1)";
    Text[ danish ] = "Internal error at ($Arg1)";
    Text[ swedish ] = "Internal error at ($Arg1)";
    Text[ polish ] = "Internal error at ($Arg1)";
    Text[ portuguese_brazilian ] = "dummytext";
    Text[ japanese ] = "Internal error at ($Arg1)";
    Text[ korean ] = "($Arg1)  ";
    Text[ chinese_simplified ] = "Internal error at ($Arg1)";
    Text[ chinese_traditional ] = "Internal error at ($Arg1)";
    Text[ arabic ] = "Internal error at ($Arg1)";
    Text[ turkish ] = "Internal error at ($Arg1)";
};
String S_NO_STATUSBAR
{
    Text = "Keine StatusBar vorhanden bei ($Arg1)";
    Text[ english_us ] = "No status bar at ($Arg1)";
    Text[ portuguese ] = "Barra de estado em ($Arg1) inexistente";
    Text[ russian ] = "No status bar at ($Arg1)";
    Text[ greek ] = "No status bar at ($Arg1)";
    Text[ dutch ] = "Geen StatusBar voorhanden bij ($Arg1)";
    Text[ french ] = "Absence de barre d'tat pour ($Arg1) ";
    Text[ spanish ] = "No existe StatusBar en ($Arg1)";
    Text[ italian ] = "No status bar at ($Arg1)";
    Text[ danish ] = "No status bar at ($Arg1)";
    Text[ swedish ] = "No status bar at ($Arg1)";
    Text[ polish ] = "No status bar at ($Arg1)";
    Text[ portuguese_brazilian ] = "dummytext";
    Text[ japanese ] = "No status bar at ($Arg1)";
    Text[ korean ] = "($Arg1)  ٰ ϴ.";
    Text[ chinese_simplified ] = "No status bar at ($Arg1)";
    Text[ chinese_traditional ] = "No status bar at ($Arg1)";
    Text[ arabic ] = "No status bar at ($Arg1)";
    Text[ turkish ] = "No status bar at ($Arg1)";
};
String S_ITEMS_INVISIBLE
{
    Text = "Die Items sind ausgeblendet bei ($Arg1)";
    Text[ english_us ] = "The items are hidden at ($Arg1)";
    Text[ portuguese ] = "Os items em ($Arg1) esto ocultos";
    Text[ russian ] = "The items are hidden at ($Arg1)";
    Text[ greek ] = "The items are hidden at ($Arg1)";
    Text[ dutch ] = "De items zijn verborgen bij ($Arg1)";
    Text[ french ] = "Les Items sont masqus pour ($Arg1)";
    Text[ spanish ] = "Los tems en ($Arg1) estn ocultos";
    Text[ italian ] = "The items are hidden at ($Arg1)";
    Text[ danish ] = "The items are hidden at ($Arg1)";
    Text[ swedish ] = "The items are hidden at ($Arg1)";
    Text[ polish ] = "The items are hidden at ($Arg1)";
    Text[ portuguese_brazilian ] = "dummytext";
    Text[ japanese ] = "The items are hidden at ($Arg1)";
    Text[ korean ] = "($Arg1) ׸  ֽϴ.";
    Text[ chinese_simplified ] = "The items are hidden at ($Arg1)";
    Text[ chinese_traditional ] = "The items are hidden at ($Arg1)";
    Text[ arabic ] = "The items are hidden at ($Arg1)";
    Text[ turkish ] = "The items are hidden at ($Arg1)";
};
String S_TABPAGE_NOT_FOUND
{
    Text = "Tabpage nicht gefunden bei ($Arg1)";
    Text[ english_us ] = "Tab page not found at ($Arg1)";
    Text[ portuguese ] = "Foi impossvel encontrar o separador em ($Arg1)";
    Text[ russian ] = "Tab page not found at ($Arg1)";
    Text[ greek ] = "Tab page not found at ($Arg1)";
    Text[ dutch ] = "Tabpage niet gevonden bij ($Arg1";
    Text[ french ] = "Tabpage introuvable pour ($Arg1)";
    Text[ spanish ] = "No se encontr tabpage en ($Arg1)";
    Text[ italian ] = "Tab page not found at ($Arg1)";
    Text[ danish ] = "Tab page not found at ($Arg1)";
    Text[ swedish ] = "Tab page not found at ($Arg1)";
    Text[ polish ] = "Tab page not found at ($Arg1)";
    Text[ portuguese_brazilian ] = "dummytext";
    Text[ japanese ] = "Tab page not found at ($Arg1)";
    Text[ korean ] = "($Arg1)   ߰ߵ ʽϴ.";
    Text[ chinese_simplified ] = "Tab page not found at ($Arg1)";
    Text[ chinese_traditional ] = "Tab page not found at ($Arg1)";
    Text[ arabic ] = "Tab page not found at ($Arg1)";
    Text[ turkish ] = "Tab page not found at ($Arg1)";
};
String S_TRISTATE_NOT_ALLOWED
{
    Text = "Tristate darf nicht gesetzt werden bei ($Arg1)";
    Text[ english_us ] = "Three state cannot be set at ($Arg1)";
    Text[ portuguese ] = "Impossvel indicar um valor \"tristate\" em ($Arg1)";
    Text[ russian ] = "Three state cannot be set at ($Arg1)";
    Text[ greek ] = "Three state cannot be set at ($Arg1)";
    Text[ dutch ] = "Tristate mag niet worden gezet bij ($Arg1)";
    Text[ french ] = "Impossible de placer une valeur Tristate pour ($Arg1)";
    Text[ spanish ] = "No se pude aplicar tristate en ($Arg1)";
    Text[ italian ] = "Three state cannot be set at ($Arg1)";
    Text[ danish ] = "Three state cannot be set at ($Arg1)";
    Text[ swedish ] = "Three state cannot be set at ($Arg1)";
    Text[ polish ] = "Three state cannot be set at ($Arg1)";
    Text[ portuguese_brazilian ] = "dummytext";
    Text[ japanese ] = "Three state cannot be set at ($Arg1)";
    Text[ korean ] = " ° ($Arg1)    ϴ.";
    Text[ chinese_simplified ] = "Three state cannot be set at ($Arg1)";
    Text[ chinese_traditional ] = "Three state cannot be set at ($Arg1)";
    Text[ arabic ] = "Three state cannot be set at ($Arg1)";
    Text[ turkish ] = "Three state cannot be set at ($Arg1)";
    Text[ language_user1 ] = " ";
};
String S_ERROR_IN_SET_TEXT
{
    Text = "SetText hat nicht funktioniert";
    Text[ english_us ] = "Set text did not function";
    Text[ portuguese ] = "SetText no funcionou";
    Text[ russian ] = "Set text did not function";
    Text[ greek ] = "Set text did not function";
    Text[ dutch ] = "SetText heeft niet gefunctioneerd";
    Text[ french ] = "SetText n'a pas fonctionn";
    Text[ spanish ] = "No ha funcionado SetText";
    Text[ italian ] = "Set text did not function";
    Text[ danish ] = "Set text did not function";
    Text[ swedish ] = "Set text did not function";
    Text[ polish ] = "Set text did not function";
    Text[ portuguese_brazilian ] = "dummytext";
    Text[ japanese ] = "Set text did not function";
    Text[ korean ] = "ؽƮ  ۵ ʽϴ.";
    Text[ chinese_simplified ] = "Set text did not function";
    Text[ chinese_traditional ] = "Set text did not function";
    Text[ arabic ] = "Set text did not function";
    Text[ turkish ] = "Set text did not function";
};
String S_ATTEMPT_TO_WRITE_READONLY
{
    Text = "Schreibversuch auf ReadOnly ($Arg1)";
    Text[ english_us ] = "Attempt to write on read-only ($Arg1)";
    Text[ portuguese ] = "Tentativa de escrita em ($Arg1) como s leitura";
    Text[ russian ] = "Attempt to write on read-only ($Arg1)";
    Text[ greek ] = "Attempt to write on read-only ($Arg1)";
    Text[ dutch ] = "Schrijfpoging op ReadOnly ($Arg1)";
    Text[ french ] = "Tentative d'citure sur ($Arg1) (en lecture seule)";
    Text[ spanish ] = "Intento de escritura en ReadOnly ($Arg1)";
    Text[ italian ] = "Attempt to write on read-only ($Arg1)";
    Text[ danish ] = "Attempt to write on read-only ($Arg1)";
    Text[ swedish ] = "Attempt to write on read-only ($Arg1)";
    Text[ polish ] = "Attempt to write on read-only ($Arg1)";
    Text[ portuguese_brazilian ] = "dummytext";
    Text[ japanese ] = "Attempt to write on read-only ($Arg1)";
    Text[ korean ] = "б ($Arg1) ⸦ õ";
    Text[ chinese_simplified ] = "Attempt to write on read-only ($Arg1)";
    Text[ chinese_traditional ] = "Attempt to write on read-only ($Arg1)";
    Text[ arabic ] = "Attempt to write on read-only ($Arg1)";
    Text[ turkish ] = "Attempt to write on read-only ($Arg1)";
};
String S_NO_SELECT_FALSE
{
    Text = "Select FALSE nicht erlaubt. Bitte MultiSelect verwenden bei ($Arg1)";
    Text[ english_us ] = "Select FALSE not allowed. Use MultiSelect at ($Arg1)";
    Text[ portuguese ] = "Interdito seleccionar FALSE. Utilizar MultiSelect em ($Arg1)";
    Text[ russian ] = "Select FALSE not allowed. Use MultiSelect at ($Arg1)";
    Text[ greek ] = "Select FALSE not allowed. Use MultiSelect at ($Arg1)";
    Text[ dutch ] = "Select FALSE niet toegestaan. Gebruik MultiSelect bij ($Arg1)";
    Text[ french ] = "Interdit de slectionner FALSE. Veuillez utiliser MultiSelect pour ($Arg1)";
    Text[ spanish ] = "No se permite Select FALSE. Use MultiSelect en ($Arg1)";
    Text[ italian ] = "Select FALSE not allowed. Use MultiSelect at ($Arg1)";
    Text[ danish ] = "Select FALSE not allowed. Use MultiSelect at ($Arg1)";
    Text[ swedish ] = "Select FALSE not allowed. Use MultiSelect at ($Arg1)";
    Text[ polish ] = "Select FALSE not allowed. Use MultiSelect at ($Arg1)";
    Text[ portuguese_brazilian ] = "dummytext";
    Text[ japanese ] = "Select FALSE not allowed. Use MultiSelect at ($Arg1)";
    Text[ korean ] = "FALSE   ʽϴ.  ($Arg1)   .";
    Text[ chinese_simplified ] = "Select FALSE not allowed. Use MultiSelect at ($Arg1)";
    Text[ chinese_traditional ] = "Select FALSE not allowed. Use MultiSelect at ($Arg1)";
    Text[ arabic ] = "Select FALSE not allowed. Use MultiSelect at ($Arg1)";
    Text[ turkish ] = "Select FALSE not allowed. Use MultiSelect at ($Arg1)";
};
String S_ENTRY_NOT_FOUND
{
    Text = "Eintrag \"($Arg2)\" bei ($Arg1) nicht gefunden";
    Text[ english_us ] = "\"($Arg2)\" entry at ($Arg1) not found";
    Text[ portuguese ] = "Foi impossvel encontrar a entrada \"($Arg2) em ($Arg1)";
    Text[ russian ] = "\"($Arg2)\" entry at ($Arg1) not found";
    Text[ greek ] = "\"($Arg2)\" entry at ($Arg1) not found";
    Text[ dutch ] = "Optie ($Arg2) niet gevonden bij ($Arg1)";
    Text[ french ] = "Entre \"($Arg2)\" introuvable pour ($Arg1)";
    Text[ spanish ] = "No se encontr entrada \"($Arg2)\" en ($Arg1)";
    Text[ italian ] = "\"($Arg2)\" entry at ($Arg1) not found";
    Text[ danish ] = "\"($Arg2)\" entry at ($Arg1) not found";
    Text[ swedish ] = "\"($Arg2)\" entry at ($Arg1) not found";
    Text[ polish ] = "\"($Arg2)\" entry at ($Arg1) not found";
    Text[ portuguese_brazilian ] = "dummytext";
    Text[ japanese ] = "\"($Arg2)\" entry at ($Arg1) not found";
    Text[ korean ] = "\"($Arg2)\"  ׸ ($Arg1) ߰ߵ ʽϴ.";
    Text[ chinese_simplified ] = "\"($Arg2)\" entry at ($Arg1) not found";
    Text[ chinese_traditional ] = "\"($Arg2)\" entry at ($Arg1) not found";
    Text[ arabic ] = "\"($Arg2)\" entry at ($Arg1) not found";
    Text[ turkish ] = "\"($Arg2)\" entry at ($Arg1) not found";
};
String S_METHOD_FAILED
{
    Text = "($Arg1) von Eintrag \"($Arg2)\" ist fehlgeschlagen";
    Text[ english_us ] = "($Arg1) of entry \"($Arg2)\" failed";
    Text[ portuguese ] = "($Arg1) da entrada \"($Arg2)\" falhou";
    Text[ russian ] = "($Arg1) of entry \"($Arg2)\" failed";
    Text[ greek ] = "($Arg1) of entry \"($Arg2)\" failed";
    Text[ dutch ] = "($Arg1) van optie ($Arg2) mislukt";
    Text[ french ] = "($Arg1) a chou pour l'entre \"($Arg2)\" ";
    Text[ spanish ] = "No result ($Arg1) de la entrada \"($Arg2)\"";
    Text[ italian ] = "($Arg1) of entry \"($Arg2)\" failed";
    Text[ danish ] = "($Arg1) of entry \"($Arg2)\" failed";
    Text[ swedish ] = "($Arg1) of entry \"($Arg2)\" failed";
    Text[ polish ] = "($Arg1) of entry \"($Arg2)\" failed";
    Text[ portuguese_brazilian ] = "dummytext";
    Text[ japanese ] = "($Arg1) of entry \"($Arg2)\" failed";
    Text[ korean ] = "׸\"($Arg2)\" ($Arg1) ߸ƽϴ.";
    Text[ chinese_simplified ] = "($Arg1) of entry \"($Arg2)\" failed";
    Text[ chinese_traditional ] = "($Arg1) of entry \"($Arg2)\" failed";
    Text[ arabic ] = "($Arg1) of entry \"($Arg2)\" failed";
    Text[ turkish ] = "($Arg1) of entry \"($Arg2)\" failed";
};
String S_HELPID_ON_TOOLBOX_NOT_FOUND
{
    Text = "HelpID auf ToolBox nicht gefunden bei ($Arg1)";
    Text[ english_us ] = "HelpID in ToolBox not found at ($Arg1)";
    Text[ portuguese ] = "Impossvel encontrar o HelpID da ToolBox em ($Arg1)";
    Text[ russian ] = "HelpID in ToolBox not found at ($Arg1)";
    Text[ greek ] = "HelpID in ToolBox not found at ($Arg1)";
    Text[ dutch ] = "HelpID op ToolBox niet gevonden bij ($Arg1)";
    Text[ french ] = "HelpID de la ToolBox introuvable pour ($Arg1)";
    Text[ spanish ] = "No se encontr en ($Arg1) HelpID en ToolBox";
    Text[ italian ] = "HelpID in ToolBox not found at ($Arg1)";
    Text[ danish ] = "HelpID in ToolBox not found at ($Arg1)";
    Text[ swedish ] = "HelpID in ToolBox not found at ($Arg1)";
    Text[ polish ] = "HelpID in ToolBox not found at ($Arg1)";
    Text[ portuguese_brazilian ] = "dummytext";
    Text[ japanese ] = "HelpID in ToolBox not found at ($Arg1)";
    Text[ korean ] = "  ID   ($Arg1) ߰ߵ ʽϴ.";
    Text[ chinese_simplified ] = "HelpID in ToolBox not found at ($Arg1)";
    Text[ chinese_traditional ] = "HelpID in ToolBox not found at ($Arg1)";
    Text[ arabic ] = "HelpID in ToolBox not found at ($Arg1)";
    Text[ turkish ] = "HelpID in ToolBox not found at ($Arg1)";
};
String S_BUTTON_DISABLED_ON_TOOLBOX
{
    Text = "Der Button ist disabled in ToolBox bei ($Arg1)";
    Text[ english_us ] = "The button is disabled in ToolBox at ($Arg1)";
    Text[ portuguese ] = "O boto da ToolBox em ($Arg1) est desactivado";
    Text[ russian ] = "The button is disabled in ToolBox at ($Arg1)";
    Text[ greek ] = "The button is disabled in ToolBox at ($Arg1)";
    Text[ dutch ] = "Button buiten werking in ToolBox bij ($Arg1)";
    Text[ french ] = "Le bouton est dsactiv dans la ToolBox pour ($Arg1)";
    Text[ spanish ] = "El botn est desactivado en ToolBox en ($Arg1)";
    Text[ italian ] = "The button is disabled in ToolBox at ($Arg1)";
    Text[ danish ] = "The button is disabled in ToolBox at ($Arg1)";
    Text[ swedish ] = "The button is disabled in ToolBox at ($Arg1)";
    Text[ polish ] = "The button is disabled in ToolBox at ($Arg1)";
    Text[ portuguese_brazilian ] = "dummytext";
    Text[ japanese ] = "The button is disabled in ToolBox at ($Arg1)";
    Text[ korean ] = "($Arg1)  ư  ȵ˴ϴ.";
    Text[ chinese_simplified ] = "The button is disabled in ToolBox at ($Arg1)";
    Text[ chinese_traditional ] = "The button is disabled in ToolBox at ($Arg1)";
    Text[ arabic ] = "The button is disabled in ToolBox at ($Arg1)";
    Text[ turkish ] = "The button is disabled in ToolBox at ($Arg1)";
};
String S_BUTTON_HIDDEN_ON_TOOLBOX
{
    Text = "Der Button ist hidden in ToolBox bei ($Arg1)";
    Text[ english_us ] = "The button is hidden in ToolBox at ($Arg1)";
    Text[ portuguese ] = "O boto da ToolBox em ($Arg1) est oculto";
    Text[ russian ] = "The button is hidden in ToolBox at ($Arg1)";
    Text[ greek ] = "The button is hidden in ToolBox at ($Arg1)";
    Text[ dutch ] = "Button verborgen in Toolbox bij  ($Arg1)";
    Text[ french ] = "Le bouton est cach dans la ToolBox pour ($Arg1)";
    Text[ spanish ] = "El botn es hidden en ToolBox en ($Arg1)";
    Text[ italian ] = "The button is hidden in ToolBox at ($Arg1)";
    Text[ danish ] = "The button is hidden in ToolBox at ($Arg1)";
    Text[ swedish ] = "The button is hidden in ToolBox at ($Arg1)";
    Text[ polish ] = "The button is hidden in ToolBox at ($Arg1)";
    Text[ portuguese_brazilian ] = "dummytext";
    Text[ japanese ] = "The button is hidden in ToolBox at ($Arg1)";
    Text[ korean ] = "($Arg1)  ư  ֽϴ.";
    Text[ chinese_simplified ] = "The button is hidden in ToolBox at ($Arg1)";
    Text[ chinese_traditional ] = "The button is hidden in ToolBox at ($Arg1)";
    Text[ arabic ] = "The button is hidden in ToolBox at ($Arg1)";
    Text[ turkish ] = "The button is hidden in ToolBox at ($Arg1)";
};
String S_CANNOT_MAKE_BUTTON_VISIBLE_IN_TOOLBOX
{
    Text = "Button konnte nicht sichtbar gemacht werden in ToolBox bei ($Arg1)";
    Text[ english_us ] = "Button cannot be made visible in ToolBox at ($Arg1)";
    Text[ portuguese ] = "Foi impossvel tornar o boto da ToolBox em ($Arg1) visvel";
    Text[ russian ] = "Button cannot be made visible in ToolBox at ($Arg1)";
    Text[ greek ] = "Button cannot be made visible in ToolBox at ($Arg1)";
    Text[ dutch ] = "Button kon niet zichtbaar worden gemaakt in Toolbox bij  ($Arg1)";
    Text[ french ] = "mpossible d'afficher le bouton dans la ToolBox pour ($Arg1)";
    Text[ spanish ] = "No se pudo mostrar el boton en ToolBox para ($Arg1)";
    Text[ italian ] = "Button cannot be made visible in ToolBox at ($Arg1)";
    Text[ danish ] = "Button cannot be made visible in ToolBox at ($Arg1)";
    Text[ swedish ] = "Button cannot be made visible in ToolBox at ($Arg1)";
    Text[ polish ] = "Button cannot be made visible in ToolBox at ($Arg1)";
    Text[ portuguese_brazilian ] = "dummytext";
    Text[ japanese ] = "Button cannot be made visible in ToolBox at ($Arg1)";
    Text[ korean ] = "($Arg1)  ư ̰ Ҽ ϴ.";
    Text[ chinese_simplified ] = "Button cannot be made visible in ToolBox at ($Arg1)";
    Text[ chinese_traditional ] = "Button cannot be made visible in ToolBox at ($Arg1)";
    Text[ arabic ] = "Button cannot be made visible in ToolBox at ($Arg1)";
    Text[ turkish ] = "Button cannot be made visible in ToolBox at ($Arg1)";
};
String S_TEAROFF_FAILED
{
    Text = "TearOff Fehlgeschlagen in ToolBox bei ($Arg1)";
    Text[ english_us ] = "TearOff failed in ToolBox at ($Arg1)";
    Text[ portuguese ] = "TearOff falhou na ToolBox em ($Arg1)";
    Text[ russian ] = "TearOff failed in ToolBox at ($Arg1)";
    Text[ greek ] = "TearOff failed in ToolBox at ($Arg1)";
    Text[ dutch ] = "TearOff mislukt in ToolBox bij  ($Arg1)";
    Text[ french ] = "TearOff a chou dans la ToolBox pour ($Arg1)";
    Text[ spanish ] = "Ha fallado TearOff en ToolBox para ($Arg1)";
    Text[ italian ] = "TearOff failed in ToolBox at ($Arg1)";
    Text[ danish ] = "TearOff failed in ToolBox at ($Arg1)";
    Text[ swedish ] = "TearOff failed in ToolBox at ($Arg1)";
    Text[ polish ] = "TearOff failed in ToolBox at ($Arg1)";
    Text[ portuguese_brazilian ] = "dummytext";
    Text[ japanese ] = "TearOff failed in ToolBox at ($Arg1)";
    Text[ korean ] = "($Arg1) ڿ 밡 Ͽϴ.";
    Text[ chinese_simplified ] = "TearOff failed in ToolBox at ($Arg1)";
    Text[ chinese_traditional ] = "TearOff failed in ToolBox at ($Arg1)";
    Text[ arabic ] = "TearOff failed in ToolBox at ($Arg1)";
    Text[ turkish ] = "TearOff failed in ToolBox at ($Arg1)";
};
String S_NO_SELECTED_ENTRY
{
    Text = "Es ist kein Eintrag Selektiert in TreeListBox bei ($Arg1)";
    Text[ english_us ] = "An entry has not been selected in TreeListBox at ($Arg1)";
    Text[ portuguese ] = "Nenhuma entrada seleccionada na TreeListBox para ($Arg1)";
    Text[ russian ] = "An entry has not been selected in TreeListBox at ($Arg1)";
    Text[ greek ] = "An entry has not been selected in TreeListBox at ($Arg1)";
    Text[ dutch ] = "Geen item geselecteerd in TreeListBox bij  ($Arg1)";
    Text[ french ] = "Aucune entre slectionne dans la TreeListBox pour ($Arg1)";
    Text[ spanish ] = "No hay ninguna entrada seleccionada en TreeListBox para ($Arg1)";
    Text[ italian ] = "An entry has not been selected in TreeListBox at ($Arg1)";
    Text[ danish ] = "An entry has not been selected in TreeListBox at ($Arg1)";
    Text[ swedish ] = "An entry has not been selected in TreeListBox at ($Arg1)";
    Text[ polish ] = "An entry has not been selected in TreeListBox at ($Arg1)";
    Text[ portuguese_brazilian ] = "dummytext";
    Text[ japanese ] = "An entry has not been selected in TreeListBox at ($Arg1)";
    Text[ korean ] = "($Arg1) Ʈ Ʈ ڽ õ ׸ ϴ.";
    Text[ chinese_simplified ] = "An entry has not been selected in TreeListBox at ($Arg1)";
    Text[ chinese_traditional ] = "An entry has not been selected in TreeListBox at ($Arg1)";
    Text[ arabic ] = "An entry has not been selected in TreeListBox at ($Arg1)";
    Text[ turkish ] = "An entry has not been selected in TreeListBox at ($Arg1)";
};
String S_SELECT_DESELECT_VIA_STRING_NOT_IMPLEMENTED
{
    Text = "Select/Deselect mit String nicht implementiert bei ($Arg1)";
    Text[ english_us ] = "Select/Deselect with string not implemented at ($Arg1)";
    Text[ portuguese ] = "Seleccionar/Desseleccionar com String no implementado em ($Arg1)";
    Text[ russian ] = "Select/Deselect with string not implemented at ($Arg1)";
    Text[ greek ] = "Select/Deselect with string not implemented at ($Arg1)";
    Text[ dutch ] = "Select/Deselect met String niet gemplementeerd bij  ($Arg1)";
    Text[ french ] = "Slection/dselection d'un string pas implmente pour ($Arg1)";
    Text[ spanish ] = "Seleccionar/Deshacer seleccin con String no implementado para ($Arg1)";
    Text[ italian ] = "Select/Deselect with string not implemented at ($Arg1)";
    Text[ danish ] = "Select/Deselect with string not implemented at ($Arg1)";
    Text[ swedish ] = "Select/Deselect with string not implemented at ($Arg1)";
    Text[ polish ] = "Select/Deselect with string not implemented at ($Arg1)";
    Text[ portuguese_brazilian ] = "dummytext";
    Text[ japanese ] = "Select/Deselect with string not implemented at ($Arg1)";
    Text[ korean ] = "($Arg1) ڿ Բ /  ʾҽϴ.";
    Text[ chinese_simplified ] = "Select/Deselect with string not implemented at ($Arg1)";
    Text[ chinese_traditional ] = "Select/Deselect with string not implemented at ($Arg1)";
    Text[ arabic ] = "Select/Deselect with string not implemented at ($Arg1)";
    Text[ turkish ] = "Select/Deselect with string not implemented at ($Arg1)";
};
String S_ALLOWED_ONLY_IN_FLOATING_MODE
{
    Text = "Methode nur im Froating-Mode erlaubt bei ($Arg1)";
    Text[ english_us ] = "Method only allowed in floating mode at ($Arg1)";
    Text[ portuguese ] = "Mtodo autorizado apenas em modo Froating em ($Arg1)";
    Text[ russian ] = "Method only allowed in floating mode at ($Arg1)";
    Text[ greek ] = "Method only allowed in floating mode at ($Arg1)";
    Text[ dutch ] = "Methode alleen toegestaan in Froating Mode bij  ($Arg1)";
    Text[ french ] = "Mthode autorise uniquement en mode Froating pour ($Arg1)";
    Text[ spanish ] = "Mtodo permitido solo en modo Froating para ($Arg1)";
    Text[ italian ] = "Method only allowed in floating mode at ($Arg1)";
    Text[ danish ] = "Method only allowed in floating mode at ($Arg1)";
    Text[ swedish ] = "Method only allowed in floating mode at ($Arg1)";
    Text[ polish ] = "Method only allowed in floating mode at ($Arg1)";
    Text[ portuguese_brazilian ] = "dummytext";
    Text[ japanese ] = "Method only allowed in floating mode at ($Arg1)";
    Text[ korean ] = "޼ҵ ε- ($Arg1) ˴ϴ.";
    Text[ chinese_simplified ] = "Method only allowed in floating mode at ($Arg1)";
    Text[ chinese_traditional ] = "Method only allowed in floating mode at ($Arg1)";
    Text[ arabic ] = "Method only allowed in floating mode at ($Arg1)";
    Text[ turkish ] = "Method only allowed in floating mode at ($Arg1)";
};
String S_ALLOWED_ONLY_IN_DOCKING_MODE
{
    Text = "Methode nur im Docking-Mode erlaubt bei ($Arg1)";
    Text[ english_us ] = "Method only allowed in docking mode at ($Arg1)";
    Text[ portuguese ] = "Mtodo somente autorizado em modo Docking em ($Arg1)";
    Text[ russian ] = "Method only allowed in docking mode at ($Arg1)";
    Text[ greek ] = "Method only allowed in docking mode at ($Arg1)";
    Text[ dutch ] = "Methode alleen toegestaan in Docking-Mode bij  ($Arg1)";
    Text[ french ] = "Mthode autorise uniquement en mode Docking pour ($Arg1)";
    Text[ spanish ] = "Mtodo permitido solo en modo Docking para ($Arg1)";
    Text[ italian ] = "Method only allowed in docking mode at ($Arg1)";
    Text[ danish ] = "Method only allowed in docking mode at ($Arg1)";
    Text[ swedish ] = "Method only allowed in docking mode at ($Arg1)";
    Text[ polish ] = "Method only allowed in docking mode at ($Arg1)";
    Text[ portuguese_brazilian ] = "dummytext";
    Text[ japanese ] = "Method only allowed in docking mode at ($Arg1)";
    Text[ korean ] = "($Arg1)   ޼ҵ常 ˴ϴ.";
    Text[ chinese_simplified ] = "Method only allowed in docking mode at ($Arg1)";
    Text[ chinese_traditional ] = "Method only allowed in docking mode at ($Arg1)";
    Text[ arabic ] = "Method only allowed in docking mode at ($Arg1)";
    Text[ turkish ] = "Method only allowed in docking mode at ($Arg1)";
};
String S_SIZE_NOT_CHANGEABLE
{
    Text = "Gre ist nicht vernderbar bei ($Arg1)";
    Text[ english_us ] = "Size cannot be altered at ($Arg1)";
    Text[ portuguese ] = "Impossvel alterar o tamanho em ($Arg1)";
    Text[ russian ] = "Size cannot be altered at ($Arg1)";
    Text[ greek ] = "Size cannot be altered at ($Arg1)";
    Text[ dutch ] = "Grootte kan niet worden veranderd bij  ($Arg1)";
    Text[ french ] = "Taille non modifiable pour ($Arg1)";
    Text[ spanish ] = "Tamao no modificable para ($Arg1)";
    Text[ italian ] = "Size cannot be altered at ($Arg1)";
    Text[ danish ] = "Size cannot be altered at ($Arg1)";
    Text[ swedish ] = "Size cannot be altered at ($Arg1)";
    Text[ polish ] = "Size cannot be altered at ($Arg1)";
    Text[ portuguese_brazilian ] = "dummytext";
    Text[ japanese ] = "Size cannot be altered at ($Arg1)";
    Text[ korean ] = "($Arg1) ũⰡ ٲ ʽϴ.";
    Text[ chinese_simplified ] = "Size cannot be altered at ($Arg1)";
    Text[ chinese_traditional ] = "Size cannot be altered at ($Arg1)";
    Text[ arabic ] = "Size cannot be altered at ($Arg1)";
    Text[ turkish ] = "Size cannot be altered at ($Arg1)";
};
String S_NO_OK_BUTTON
{
    Text = "Kein OK Button Vorhanden bei ($Arg1)";
    Text[ english_us ] = "There is no OK button at ($Arg1)";
    Text[ portuguese ] = "Boto OK inexistente em ($Arg1)";
    Text[ russian ] = "There is no OK button at ($Arg1)";
    Text[ greek ] = "There is no OK button at ($Arg1)";
    Text[ dutch ] = "Geen OK-button voorhanden bij  ($Arg1)";
    Text[ french ] = "Absence de bouton OK pour ($Arg1)";
    Text[ spanish ] = "No existe botn Aceptar para ($Arg1)";
    Text[ italian ] = "There is no OK button at ($Arg1)";
    Text[ danish ] = "There is no OK button at ($Arg1)";
    Text[ swedish ] = "There is no OK button at ($Arg1)";
    Text[ polish ] = "There is no OK button at ($Arg1)";
    Text[ portuguese_brazilian ] = "dummytext";
    Text[ japanese ] = "There is no OK button at ($Arg1)";
    Text[ korean ] = "($Arg1) Ȯ ư ϴ.";
    Text[ chinese_simplified ] = "There is no OK button at ($Arg1)";
    Text[ chinese_traditional ] = "There is no OK button at ($Arg1)";
    Text[ arabic ] = "There is no OK button at ($Arg1)";
    Text[ turkish ] = "There is no OK button at ($Arg1)";
};
String S_NO_CANCEL_BUTTON
{
    Text = "Kein Abbrechen Button Vorhanden bei ($Arg1)";
    Text[ english_us ] = "There is no Cancel button at ($Arg1)";
    Text[ portuguese ] = "Boto Cancelar inexistente em ($Arg1)";
    Text[ russian ] = "There is no Cancel button at ($Arg1)";
    Text[ greek ] = "There is no Cancel button at ($Arg1)";
    Text[ dutch ] = "Geen Annuleren-button beschikbaar bij ($Arg1)";
    Text[ french ] = "Absence de bouton Annuler pour ($Arg1)";
    Text[ spanish ] = "No existe botn Cancelar para ($Arg1)";
    Text[ italian ] = "There is no Cancel button at ($Arg1)";
    Text[ danish ] = "There is no Cancel button at ($Arg1)";
    Text[ swedish ] = "There is no Cancel button at ($Arg1)";
    Text[ polish ] = "There is no Cancel button at ($Arg1)";
    Text[ portuguese_brazilian ] = "dummytext";
    Text[ japanese ] = "There is no Cancel button at ($Arg1)";
    Text[ korean ] = "($Arg1)  ư ϴ.";
    Text[ chinese_simplified ] = "There is no Cancel button at ($Arg1)";
    Text[ chinese_traditional ] = "There is no Cancel button at ($Arg1)";
    Text[ arabic ] = "There is no Cancel button at ($Arg1)";
    Text[ turkish ] = "There is no Cancel button at ($Arg1)";
};
String S_NO_YES_BUTTON
{
    Text = "Kein Ja Button Vorhanden bei ($Arg1)";
    Text[ english_us ] = "There is no Yes button at ($Arg1)";
    Text[ portuguese ] = "Boto Sim inexistente em ($Arg1)";
    Text[ russian ] = "There is no Yes button at ($Arg1)";
    Text[ greek ] = "There is no Yes button at ($Arg1)";
    Text[ dutch ] = "Geen Ja-button beschikbaar bij  ($Arg1)";
    Text[ french ] = "Absence de bouton Oui pour ($Arg1)";
    Text[ spanish ] = "No existe botn S para ($Arg1)";
    Text[ italian ] = "There is no Yes button at ($Arg1)";
    Text[ danish ] = "There is no Yes button at ($Arg1)";
    Text[ swedish ] = "There is no Yes button at ($Arg1)";
    Text[ polish ] = "There is no Yes button at ($Arg1)";
    Text[ portuguese_brazilian ] = "dummytext";
    Text[ japanese ] = "There is no Yes button at ($Arg1)";
    Text[ korean ] = "($Arg1) \"\" ư ϴ.";
    Text[ chinese_simplified ] = "There is no Yes button at ($Arg1)";
    Text[ chinese_traditional ] = "There is no Yes button at ($Arg1)";
    Text[ arabic ] = "There is no Yes button at ($Arg1)";
    Text[ turkish ] = "There is no Yes button at ($Arg1)";
};
String S_NO_NO_BUTTON
{
    Text = "Kein Nein Button Vorhanden bei ($Arg1)";
    Text[ english_us ] = "There is no No button at ($Arg1)";
    Text[ portuguese ] = "Boto No inexistente em ($Arg1)";
    Text[ russian ] = "There is no No button at ($Arg1)";
    Text[ greek ] = "There is no No button at ($Arg1)";
    Text[ dutch ] = "Geen Nee-button beschikbaar bij ($Arg1)";
    Text[ french ] = "Absence de bouton Non pour ($Arg1)";
    Text[ spanish ] = "No existe boton No para ($Arg1)";
    Text[ italian ] = "There is no No button at ($Arg1)";
    Text[ danish ] = "There is no No button at ($Arg1)";
    Text[ swedish ] = "There is no No button at ($Arg1)";
    Text[ polish ] = "There is no No button at ($Arg1)";
    Text[ portuguese_brazilian ] = "dummytext";
    Text[ japanese ] = "There is no No button at ($Arg1)";
    Text[ korean ] = "($Arg1) \"ƴϿ\" ư ϴ.";
    Text[ chinese_simplified ] = "There is no No button at ($Arg1)";
    Text[ chinese_traditional ] = "There is no No button at ($Arg1)";
    Text[ arabic ] = "There is no No button at ($Arg1)";
    Text[ turkish ] = "There is no No button at ($Arg1)";
};
String S_NO_RETRY_BUTTON
{
    Text = "Kein Wiederholen Button Vorhanden bei ($Arg1)";
    Text[ english_us ] = "There is no Repeat button at ($Arg1)";
    Text[ portuguese ] = "Boto Repetir inexistente em ($Arg1)";
    Text[ russian ] = "There is no Repeat button at ($Arg1)";
    Text[ greek ] = "There is no Repeat button at ($Arg1)";
    Text[ dutch ] = "Geen Herhalen-button beschikbaar bij ($Arg1)";
    Text[ french ] = "Absence de bouton Ressayer pour ($Arg1)";
    Text[ spanish ] = "No existe botn Repetir para ($Arg1)";
    Text[ italian ] = "There is no Repeat button at ($Arg1)";
    Text[ danish ] = "There is no Repeat button at ($Arg1)";
    Text[ swedish ] = "There is no Repeat button at ($Arg1)";
    Text[ polish ] = "There is no Repeat button at ($Arg1)";
    Text[ portuguese_brazilian ] = "dummytext";
    Text[ japanese ] = "There is no Repeat button at ($Arg1)";
    Text[ korean ] = "($Arg1) ݺ ư ϴ.";
    Text[ chinese_simplified ] = "There is no Repeat button at ($Arg1)";
    Text[ chinese_traditional ] = "There is no Repeat button at ($Arg1)";
    Text[ arabic ] = "There is no Repeat button at ($Arg1)";
    Text[ turkish ] = "There is no Repeat button at ($Arg1)";
};
String S_NO_HELP_BUTTON
{
    Text = "Kein Hilfe Button Vorhanden bei ($Arg1)";
    Text[ english_us ] = "There is no Help button at ($Arg1)";
    Text[ portuguese ] = "Boto Ajuda inexistente em ($Arg1)";
    Text[ russian ] = "There is no Help button at ($Arg1)";
    Text[ greek ] = "There is no Help button at ($Arg1)";
    Text[ dutch ] = "Geen Help-button beschikbaar bij ($Arg1)";
    Text[ french ] = "Absence de bouton Aide pour ($Arg1)";
    Text[ spanish ] = "No existe botn Ayuda para ($Arg1)";
    Text[ italian ] = "There is no Help button at ($Arg1)";
    Text[ danish ] = "There is no Help button at ($Arg1)";
    Text[ swedish ] = "There is no Help button at ($Arg1)";
    Text[ polish ] = "There is no Help button at ($Arg1)";
    Text[ portuguese_brazilian ] = "dummytext";
    Text[ japanese ] = "There is no Help button at ($Arg1)";
    Text[ korean ] = "($Arg1)  ư ϴ.";
    Text[ chinese_simplified ] = "There is no Help button at ($Arg1)";
    Text[ chinese_traditional ] = "There is no Help button at ($Arg1)";
    Text[ arabic ] = "There is no Help button at ($Arg1)";
    Text[ turkish ] = "There is no Help button at ($Arg1)";
};
String S_NO_DEFAULT_BUTTON
{
    Text = "Kein Default Button Definiert bei ($Arg1)";
    Text[ english_us ] = "There is no Default button defined at ($Arg1)";
    Text[ portuguese ] = "Boto Padro inexistente em ($Arg1)";
    Text[ russian ] = "There is no Default button defined at ($Arg1)";
    Text[ greek ] = "There is no Default button defined at ($Arg1)";
    Text[ dutch ] = "Geen Default-button beschikbaar bij ($Arg1)";
    Text[ french ] = "Absence de bouton Par dfaut pour ($Arg1)";
    Text[ spanish ] = "No hay definido un botn Default para ($Arg1)";
    Text[ italian ] = "There is no Default button defined at ($Arg1)";
    Text[ danish ] = "There is no Default button defined at ($Arg1)";
    Text[ swedish ] = "There is no Default button defined at ($Arg1)";
    Text[ polish ] = "There is no Default button defined at ($Arg1)";
    Text[ portuguese_brazilian ] = "dummytext";
    Text[ japanese ] = "There is no Default button defined at ($Arg1)";
    Text[ korean ] = "($Arg1) ǵ ⺻ ư ϴ.";
    Text[ chinese_simplified ] = "There is no Default button defined at ($Arg1)";
    Text[ chinese_traditional ] = "There is no Default button defined at ($Arg1)";
    Text[ arabic ] = "There is no Default button defined at ($Arg1)";
    Text[ turkish ] = "There is no Default button defined at ($Arg1)";
};
String S_BUTTON_ID_NOT_THERE
{
    Text = "Kein Button mit der ID ($Arg1) Vorhanden bei ($Arg2)";
    Text[ english_us ] = "There is no button with a ($Arg1) ID at ($Arg2)";
    Text[ portuguese ] = "Boto com ID ($Arg1) inexistente em ($Arg2)";
    Text[ russian ] = "There is no button with a ($Arg1) ID at ($Arg2)";
    Text[ greek ] = "There is no button with a ($Arg1) ID at ($Arg2)";
    Text[ dutch ] = "Geen button met ID ($Arg1) beschikbaar bij ($Arg2)";
    Text[ french ] = "Absence bouton portant l'ID ($Arg1) pour ($Arg2) ";
    Text[ spanish ] = "No existe un botn con la ID ($Arg1) para ($Arg2)";
    Text[ italian ] = "There is no button with a ($Arg1) ID at ($Arg2)";
    Text[ danish ] = "There is no button with a ($Arg1) ID at ($Arg2)";
    Text[ swedish ] = "There is no button with a ($Arg1) ID at ($Arg2)";
    Text[ polish ] = "There is no button with a ($Arg1) ID at ($Arg2)";
    Text[ portuguese_brazilian ] = "dummytext";
    Text[ japanese ] = "There is no button with a ($Arg1) ID at ($Arg2)";
    Text[ korean ] = "($Arg2) ID ($Arg1)  ư ";
    Text[ chinese_simplified ] = "There is no button with a ($Arg1) ID at ($Arg2)";
    Text[ chinese_traditional ] = "There is no button with a ($Arg1) ID at ($Arg2)";
    Text[ arabic ] = "There is no button with a ($Arg1) ID at ($Arg2)";
    Text[ turkish ] = "There is no button with a ($Arg1) ID at ($Arg2)";
};
String S_BUTTONID_REQUIRED
{
    Text = "Es muss eine ButtonId angegeben werden bei ($Arg1)";
    Text[ english_us ] = "A button ID needs to be entered at ($Arg1)";
    Text[ portuguese ] = "Necessrio indicar ButtonId em ($Arg1)";
    Text[ russian ] = "A button ID needs to be entered at ($Arg1)";
    Text[ greek ] = "A button ID needs to be entered at ($Arg1)";
    Text[ dutch ] = "Er moet een buttonID worden vermeld bij ($Arg1)";
    Text[ french ] = "Il manque un ButtonID pour ($Arg1) ";
    Text[ spanish ] = "Debe indicarse un ButtonId para ($Arg1)";
    Text[ italian ] = "A button ID needs to be specified at ($Arg1)";
    Text[ danish ] = "A button ID needs to be entered at ($Arg1)";
    Text[ swedish ] = "A button ID needs to be entered at ($Arg1)";
    Text[ polish ] = "A button ID needs to be entered at ($Arg1)";
    Text[ portuguese_brazilian ] = "dummytext";
    Text[ japanese ] = "A button ID needs to be entered at ($Arg1)";
    Text[ korean ] = "($Arg1) Էµ ư ID";
    Text[ chinese_simplified ] = "A button ID needs to be entered at ($Arg1)";
    Text[ chinese_traditional ] = "A button ID needs to be entered at ($Arg1)";
    Text[ arabic ] = "A button ID needs to be entered at ($Arg1)";
    Text[ turkish ] = "A button ID needs to be entered at ($Arg1)";
};
String S_UNKNOWN_TYPE
{
    Text = "Unbekannter Objekttyp ($Arg1) aus UId";
    Text[ english_us ] = "Unknown object type ($Arg1) from UId";
    Text[ portuguese ] = "Tipo de objecto ($Arg1) desconhecido deste UId";
    Text[ russian ] = "Unknown object type ($Arg1) from UId";
    Text[ greek ] = "Unknown object type ($Arg1) from UId";
    Text[ dutch ] = "Onbekend objecttype ($Arg1) uit UId";
    Text[ french ] = "Type d'objet ($Arg1) inconnu pour cet UId";
    Text[ spanish ] = "Tipo de objeto ($Arg1) desconocido por su UId";
    Text[ italian ] = "Unknown object type ($Arg1) from UId";
    Text[ danish ] = "Unknown object type ($Arg1) from UId";
    Text[ swedish ] = "Unknown object type ($Arg1) from UId";
    Text[ polish ] = "Unknown object type ($Arg1) from UId";
    Text[ portuguese_brazilian ] = "dummytext";
    Text[ japanese ] = "Unknown object type ($Arg1) from UId";
    Text[ korean ] = "UIdκ  ˼°ü Ÿ ($Arg1) ";
    Text[ chinese_simplified ] = "Unknown object type ($Arg1) from UId";
    Text[ chinese_traditional ] = "Unknown object type ($Arg1) from UId";
    Text[ arabic ] = "Unknown object type ($Arg1) from UId";
    Text[ turkish ] = "Unknown object type ($Arg1) from UId";
};