summaryrefslogtreecommitdiff
path: root/uui/source/ids.src
blob: f42a4ab1c7bf0018a5d947a1b7fb7e2b406c754a (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
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
/*************************************************************************
 *
 *  $RCSfile: ids.src,v $
 *
 *  $Revision: 1.44 $
 *
 *  last change: $Author: kz $ $Date: 2001-12-14 18:59:08 $
 *
 *  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): _______________________________________
 *
 *
 ************************************************************************/

#define __RSC

#ifndef UUI_IDS_HRC
#include "ids.hrc"
#endif

String RID_KEEP_PASSWORD
{
    Text = "Passwort bis Applikationsende ~merken";
    Text[english] = "~Remember password until application ends";
    Text[ arabic ] = "      ";
    Text[ chinese_simplified ] = "结束程序之前一直记住密码(~R)";
    Text[ chinese_simplified ] = "结束程序之前一直记住密码(~R)";
    Text[ chinese_traditional ] = "結束程序之前一直記住密碼(~R)";
    Text[ danish ] = "Husk adgangskoden til applikationen afsluttes";
    Text[ dutch ] = "Wachtwoord o~nthouden tot aan beindigen van het programma";
    Text[ dutch ] = "Wachtwoord o~nthouden tot aan beindigen van het programma";
    Text[ english_us ] = "~Remember password till end of session";
    Text[ french ] = "Se rappeler du ~mot de passe jusqu' la fin de la session";
    Text[ greek ] = "~      ";
    Text[ italian ] = "An~nota password fino alla fine dell'applicazione";
    Text[ japanese ] = "パスワードはアプリケーション終了時まで記憶しておく(~R)";
    Text[ korean ] = "응용 프로그램을 종료할 때까지 패스워드 기억(~R)";
    Text[ polish ] = "Zapamitaj haso do koca aplikacji";
    Text[ portuguese ] = "~Lembrar senha at terminar a aplicao";
    Text[ portuguese_brazilian ] = "Passwort ~merken";
    Text[ russian ] = "    ";
    Text[ spanish ] = "~Recordar contrasea hasta finalizar la aplicacin";
    Text[ swedish ] = "Ko~m ihg lsenordet tills tillmpningen avslutas";
    Text[ turkish ] = "~Remember password till end of session";
    Text[ catalan ] = "~Recordar contrasea hasta finalizar la aplicacin";
    Text[ finnish ] = "~Muista salasana istunnon loppuun asti";
};

String RID_SAVE_PASSWORD
{
    Text = "Passwort dauerhaft ~speichern";
    Text[english] = "~Save password permanently";
    Text[ arabic ] = "   ";
    Text[ chinese_simplified ] = "保存密码(~R)";
    Text[ chinese_simplified ] = "保存密码(~R)";
    Text[ chinese_traditional ] = "儲存密碼(~R)";
    Text[ danish ] = "Gem adgangskoden permanent";
    Text[ dutch ] = "Wachtwoord ~opslaan";
    Text[ dutch ] = "Wachtwoord ~opslaan";
    Text[ english_us ] = "~Remember password";
    Text[ french ] = "~Enregistrer le mot de passe";
    Text[ greek ] = "~  ";
    Text[ italian ] = "Salva pa~ssword ";
    Text[ japanese ] = "パスワードの長期保存(~R)";
    Text[ korean ] = "패스워드 영구 저장(~R)";
    Text[ polish ] = "Zapisz haso na stae";
    Text[ portuguese ] = "~Guardar senha";
    Text[ portuguese_brazilian ] = "Passwort ~speichern";
    Text[ russian ] = " ";
    Text[ spanish ] = "~Guardar contrasea";
    Text[ swedish ] = "~Spara lsenord permanent";
    Text[ turkish ] = "~Save password";
    Text[ catalan ] = "~Guardar contrasea";
    Text[ finnish ] = "~Muista salasana";
};

Resource RID_UUI_ERRHDL
{
    String (ERRCODE_UUI_IO_ABORT & ERRCODE_RES_MASK)
    {
        Text = "Die auf $(ARG1) ausgefhrte Aktion wurde abgebrochen";
        Text[english] = "The operation executed on $(ARG1) was aborted";
        Text[ english_us ] = "The operation executed on $(ARG1) was aborted";
        Text[ portuguese ] = "A aco executada em $(ARG1) foi cancelada.";
        Text[ russian ] = "  $(ARG1)  ";
        Text[ greek ] = "The operation executed on $(ARG1) was aborted";
        Text[ dutch ] = "De op $(ARG1) uitgevoerde activiteit werd gestopt";
        Text[ french ] = "Interruption de l'opration excute sur $(ARG1).";
        Text[ spanish ] = "Se ha interrumpido la accion ejecutada en $(ARG1).";
        Text[ finnish ] = "The operation executed on $(ARG1) was aborted";
        Text[ italian ] = "L'operazione eseguita su $(ARG1)  stata interrotta";
        Text[ danish ] = "The operation executed on $(ARG1) was aborted";
        Text[ swedish ] = "tgrden som utfrdes p $(ARG1) avbrts";
        Text[ polish ] = "Operacja wykonywana na $(ARG1) zostaa przerwana";
        Text[ portuguese_brazilian ] = "The operation executed on $(ARG1) was aborted";
        Text[ japanese ] = "$(ARG1) で実行したアクションは中止されました。";
        Text[ korean ] = "$(ARG1)에서  실행 중이던 작업이 중단되었습니다.";
        Text[ chinese_simplified ] = "已经取消执行 $(ARG1) 的操作。";
        Text[ chinese_traditional ] = "已經取消執行動作 $(ARG1) 。";
        Text[ turkish ] = "The operation executed on $(ARG1) was aborted";
        Text[ arabic ] = "The operation executed on $(ARG1) was aborted";
        Text[ catalan ] = "The operation executed on $(ARG1) was aborted";
    };

    String (ERRCODE_UUI_IO_ACCESSDENIED & ERRCODE_RES_MASK)
    {
        Text = "Der Zugriff auf $(ARG1) wurde verweigert";
        Text[english] = "The access to $(ARG1) was denied";
        Text[ english_us ] = "Access to $(ARG1) was denied";
        Text[ portuguese ] = "Acesso a $(ARG1) recusado.";
        Text[ russian ] = "  $(ARG1) ";
        Text[ greek ] = "The access to $(ARG1) was denied";
        Text[ dutch ] = "De toegang tot $(ARG1) werd geweigerd";
        Text[ french ] = "Accs  $(ARG1) refus.";
        Text[ spanish ] = "Denegado el acceso a $(ARG1)";
        Text[ finnish ] = "The access to $(ARG1) was denied";
        Text[ italian ] = "Accesso a $(ARG1) negato";
        Text[ danish ] = "The access to $(ARG1) was denied";
        Text[ swedish ] = "tkomst till $(ARG1) nekad";
        Text[ polish ] = "Brak dostpu do $(ARG1)";
        Text[ portuguese_brazilian ] = "The access to $(ARG1) was denied";
        Text[ japanese ] = "$(ARG1) へのアクセスは拒否されました。";
        Text[ korean ] = "$(ARG1)에 대한 액세스가 거부되었습니다.";
        Text[ chinese_simplified ] = "拒绝读取 $(ARG1) ";
        Text[ chinese_traditional ] = "拒絕存取 $(ARG1)。";
        Text[ turkish ] = "The access to $(ARG1) was denied";
        Text[ arabic ] = "The access to $(ARG1) was denied";
        Text[ catalan ] = "The access to $(ARG1) was denied";
    };

    String (ERRCODE_UUI_IO_ALREADYEXISTS & ERRCODE_RES_MASK)
    {
        Text = "$(ARG1) existiert bereits";
        Text[english] = "$(ARG1) does already exist";
        Text[ english_us ] = "$(ARG1) already exists";
        Text[ portuguese ] = "$(ARG1) j existe.";
        Text[ russian ] = "$(ARG1)  ";
        Text[ greek ] = "$(ARG1) does already exist";
        Text[ dutch ] = "$(ARG1) bestaat reeds";
        Text[ french ] = "$(ARG1) existe dj.";
        Text[ spanish ] = "Ya existe $(ARG1)";
        Text[ finnish ] = "$(ARG1) does already exist";
        Text[ italian ] = "$(ARG1) esiste gi";
        Text[ danish ] = "$(ARG1) does already exist";
        Text[ swedish ] = "$(ARG1) finns redan";
        Text[ polish ] = "$(ARG1) ju istnieje";
        Text[ portuguese_brazilian ] = "$(ARG1) does already exist";
        Text[ japanese ] = "$(ARG1) はすでにあります。";
        Text[ korean ] = "$(ARG1)이(가) 이미 존재합니다.";
        Text[ chinese_simplified ] = "$(ARG1) 已经存在。";
        Text[ chinese_traditional ] = "$(ARG1) 已經存在。";
        Text[ turkish ] = "$(ARG1) does already exist";
        Text[ arabic ] = "$(ARG1) does already exist";
        Text[ catalan ] = "$(ARG1) does already exist";
    };

    String (ERRCODE_UUI_IO_BADCRC & ERRCODE_RES_MASK)
    {
        Text = "Die Daten von $(ARG1) haben eine inkorrekte Prfsumme";
        Text[english] = "The data of $(ARG1) have an incorrect checksum";
        Text[ english_us ] = "The data from $(ARG1) has an incorrect checksum";
        Text[ portuguese ] = "A soma do controlo dos dados de $(ARG1) est incorrecta.";
        Text[ russian ] = " $(ARG1)    ";
        Text[ greek ] = "The data of $(ARG1) have an incorrect checksum";
        Text[ dutch ] = "De testsom van de gegevens van $(ARG1) is onjuist.";
        Text[ french ] = "La somme de contrle des donnes de $(ARG1) n'est pas correcte.";
        Text[ spanish ] = "Los datos de $(ARG1) tienen una suma incorrecta de comprobacin.";
        Text[ finnish ] = "The data of $(ARG1) have an incorrect checksum";
        Text[ italian ] = "La somma di controllo di $(ARG1) non  corretta.";
        Text[ danish ] = "The data of $(ARG1) have an incorrect checksum";
        Text[ swedish ] = "Data frn $(ARG1) har en felaktig kontrollsumma";
        Text[ polish ] = "Dane $(ARG1) maj nieprawidow sum kontroln";
        Text[ portuguese_brazilian ] = "The data of $(ARG1) have an incorrect checksum";
        Text[ japanese ] = "$(ARG1) のデータはチェックサムが正しくありません。";
        Text[ korean ] = "$(ARG1) 데이터의 테스트 합계가 올바르지 않습니다.";
        Text[ chinese_simplified ] = "$(ARG1) 数据的检验数目不正确。";
        Text[ chinese_traditional ] = "資料 $(ARG1) 的檢驗數目不正確。";
        Text[ turkish ] = "The data of $(ARG1) have an incorrect checksum";
        Text[ arabic ] = "The data of $(ARG1) have an incorrect checksum";
        Text[ catalan ] = "The data of $(ARG1) have an incorrect checksum";
    };

    String (ERRCODE_UUI_IO_CANTCREATE & ERRCODE_RES_MASK)
    {
        Text = "Das Objekt $(ARG1) kann im Verzeichnis $(ARG2) nicht angelegt werden";
        Text[english] = "The object $(ARG1) could not be created in directory $(ARG2)";
        Text[ english_us ] = "The object $(ARG1) cannot be created in directory $(ARG2)";
        Text[ portuguese ] = "Impossvel criar o objecto $(ARG1) no directrio $(ARG2).";
        Text[ russian ] = "  $(ARG1)   $(ARG2) ";
        Text[ greek ] = "The object $(ARG1) could not be created in directory $(ARG2)";
        Text[ dutch ] = "Het object $(ARG1) kan niet worden geplaatst in directory $(ARG2)";
        Text[ french ] = "Impossible de crer l'objet $(ARG1) dans le rpertoire $(ARG2) !";
        Text[ spanish ] = "No se puede crear el objeto $(ARG1) en el directorio $(ARG2).";
        Text[ finnish ] = "The object $(ARG1) could not be created in directory $(ARG2)";
        Text[ italian ] = "Impossibile creare l'oggetto $(ARG1) nella cartella $(ARG2)";
        Text[ danish ] = "The object $(ARG1) could not be created in directory $(ARG2)";
        Text[ swedish ] = "Det gr inte att skapa objektet $(ARG1) i katalogen $(ARG2)";
        Text[ polish ] = "Utworzenie obiektu $(ARG1) w katalogu $(ARG2) nie jest moliwe";
        Text[ portuguese_brazilian ] = "The object $(ARG1) could not be created in directory $(ARG2)";
        Text[ japanese ] = "オブジェクト $(ARG1) はフォルダ $(ARG2) に格納できません。";
        Text[ korean ] = "디렉토리 $(ARG2)에 개체 $(ARG1)을(를) 만들 수 없습니다.";
        Text[ chinese_simplified ] = "无法在目录 $(ARG2) 内新建对象 $(ARG1) 。";
        Text[ chinese_traditional ] = "無法在目錄 $(ARG2) 之下建立物件 $(ARG1)";
        Text[ turkish ] = "The object $(ARG1) could not be created in directory $(ARG2)";
        Text[ arabic ] = "The object $(ARG1) could not be created in directory $(ARG2)";
        Text[ catalan ] = "The object $(ARG1) could not be created in directory $(ARG2)";
    };

    String (ERRCODE_UUI_IO_CANTREAD & ERRCODE_RES_MASK)
    {
        Text = "Daten von $(ARG1) konnten nicht gelesen werden";
        Text[english] = "Data of $(ARG1) could not be read";
        Text[ english_us ] = "Data of $(ARG1) could not be read";
        Text[ portuguese ] = "Foi impossvel ler os dados de $(ARG1).";
        Text[ russian ] = "  $(ARG1) ";
        Text[ greek ] = "Data of $(ARG1) could not be read";
        Text[ dutch ] = "De gegevens van $(ARG1) konden niet worden gelezen";
        Text[ french ] = "Impossible de lire les donnes de $(ARG1) !";
        Text[ spanish ] = "No se pudieron leer los datos de $(ARG1).";
        Text[ finnish ] = "Data of $(ARG1) could not be read";
        Text[ italian ] = "Impossibile leggere i dati di $(ARG1)";
        Text[ danish ] = "Data of $(ARG1) could not be read";
        Text[ swedish ] = "Det gick inte att lsa data frn $(ARG1)";
        Text[ polish ] = "Odczytanie danych z $(ARG1) nie powiodo si";
        Text[ portuguese_brazilian ] = "Data of $(ARG1) could not be read";
        Text[ japanese ] = "$(ARG1) のデータは読み取れませんでした。";
        Text[ korean ] = "$(ARG1)의 데이터를 읽을 수 없었습니다.";
        Text[ chinese_simplified ] = "无法读取 $(ARG1) 的数据。";
        Text[ chinese_traditional ] = "無法存取 $(ARG1) 資料。";
        Text[ turkish ] = "Data of $(ARG1) could not be read";
        Text[ arabic ] = "Data of $(ARG1) could not be read";
        Text[ catalan ] = "Data of $(ARG1) could not be read";
    };

    String (ERRCODE_UUI_IO_CANTSEEK & ERRCODE_RES_MASK)
    {
        Text = "Die Seek-Operation auf $(ARG1) konnte nicht ausgefhrt werden";
        Text[english] = "The seek operation on $(ARG1) could not be completed";
        Text[ english_us ] = "The seek operation on $(ARG1) could not be performed";
        Text[ portuguese ] = "Foi impossvel executar a operao seek em $(ARG1).";
        Text[ russian ] = "  seek  $(ARG1) ";
        Text[ greek ] = "The seek operation on $(ARG1) could not be completed";
        Text[ dutch ] = "Het zoeken op $(ARG1) was niet mogelijk";
        Text[ french ] = "Impossible d'excuter l'opration seek sur $(ARG1) !";
        Text[ spanish ] = "No se pudo ejecutar la operacin seek en $(ARG1).";
        Text[ finnish ] = "The seek operation on $(ARG1) could not be completed";
        Text[ italian ] = "Impossibile portare a termine l'operazione 'seek' su $(ARG1)";
        Text[ danish ] = "The seek operation on $(ARG1) could not be completed";
        Text[ swedish ] = "Det gick inte att utfra seek-operationen $(ARG1)";
        Text[ polish ] = "Wykonanie operacji 'seek' na $(ARG1) nie powiodo si";
        Text[ portuguese_brazilian ] = "The seek operation on $(ARG1) could not be completed";
        Text[ japanese ] = "$(ARG1) への seek 操作は実行できませんでした。";
        Text[ korean ] = "$(ARG1)에서는 찾기 작업을 실행하지 못했습니다.";
        Text[ chinese_simplified ] = "无法对 $(ARG1) 执行 seek 命令。";
        Text[ chinese_traditional ] = "無法完成 $(ARG1) 的 seek 操作。";
        Text[ turkish ] = "The seek operation on $(ARG1) could not be completed";
        Text[ arabic ] = "The seek operation on $(ARG1) could not be completed";
        Text[ catalan ] = "The seek operation on $(ARG1) could not be completed";
    };

    String (ERRCODE_UUI_IO_CANTTELL & ERRCODE_RES_MASK)
    {
        Text = "Die Tell-Operation auf $(ARG1) konnte nicht ausgefhrt werden";
        Text[english] = "The tell operation on $(ARG1) could not be completed";
        Text[ english_us ] = "The tell operation on $(ARG1) could not be performed";
        Text[ portuguese ] = "Foi impossvel executar a operao tell em $(ARG1).";
        Text[ russian ] = "  tell  $(ARG1) ";
        Text[ greek ] = "The tell operation on $(ARG1) could not be completed";
        Text[ dutch ] = "De tell-activiteit op $(ARG1) kon niet worden uitgevoerd";
        Text[ french ] = "Impossible d'excuter l'opration tell sur $(ARG1) !";
        Text[ spanish ] = "No se pudo ejecutar la operacin tell en $(ARG1).";
        Text[ finnish ] = "The tell operation on $(ARG1) could not be completed";
        Text[ italian ] = "Impossibile portare a termine l'operazione 'tell' su  $(ARG1)";
        Text[ danish ] = "The tell operation on $(ARG1) could not be completed";
        Text[ swedish ] = "Det gick inte att utfra tell-operationen p $(ARG1)";
        Text[ polish ] = "Wykonanie operacji 'tell' na $(ARG1) nie powiodo si";
        Text[ portuguese_brazilian ] = "The tell operation on $(ARG1) could not be completed";
        Text[ japanese ] = "$(ARG1) への tell 操作は実行できませんでした。";
        Text[ korean ] = "$(ARG1)에서는 알림 작업을 실행하지 못했습니다.";
        Text[ chinese_simplified ] = "无法对 $(ARG1) 执行 tell 命令。";
        Text[ chinese_traditional ] = "無法完成 $(ARG1) 的 tell 操作。";
        Text[ turkish ] = "The tell operation on $(ARG1) could not be completed";
        Text[ arabic ] = "The tell operation on $(ARG1) could not be completed";
        Text[ catalan ] = "The tell operation on $(ARG1) could not be completed";
    };

    String (ERRCODE_UUI_IO_CANTWRITE & ERRCODE_RES_MASK)
    {
        Text = "Daten fr $(ARG1) konnten nicht geschrieben werden";
        Text[english] = "Data for $(ARG1) could not be written";
        Text[ english_us ] = "Data for $(ARG1) could not be written";
        Text[ portuguese ] = "Foi impossvel escrever os dados para $(ARG1).";
        Text[ russian ] = "   $(ARG1) ";
        Text[ greek ] = "Data for $(ARG1) could not be written";
        Text[ dutch ] = "De gegevens voor $(ARG1) konden niet worden geschreven";
        Text[ french ] = "Impossible d'crire les donnes pour $(ARG1) !";
        Text[ spanish ] = "No se pudieron guardar los datos para $(ARG1).";
        Text[ finnish ] = "Data for $(ARG1) could not be written";
        Text[ italian ] = "Impossibile scrivere i dati per $(ARG1)";
        Text[ danish ] = "Data for $(ARG1) could not be written";
        Text[ swedish ] = "Det gick inte att skriva data fr $(ARG1)";
        Text[ polish ] = "Napisanie danych dla $(ARG1) nie powiodo si";
        Text[ portuguese_brazilian ] = "Data for $(ARG1) could not be written";
        Text[ japanese ] = "$(ARG1) のデータは書き込みできませんでした。";
        Text[ korean ] = "$(ARG1)의 데이터를 기록하지 못했습니다.";
        Text[ chinese_simplified ] = "无法改写 $(ARG1) 的数据。";
        Text[ chinese_traditional ] = "無法寫入資料 $(ARG1) 。";
        Text[ turkish ] = "Data for $(ARG1) could not be written";
        Text[ arabic ] = "Data for $(ARG1) could not be written";
        Text[ catalan ] = "Data for $(ARG1) could not be written";
    };

    String (ERRCODE_UUI_IO_CURRENTDIR & ERRCODE_RES_MASK)
    {
        Text = "Aktion unmglich: $(ARG1) ist das aktuelle Verzeichnis";
        Text[english] = "Action not allowed: $(ARG1) is the current directory";
        Text[ english_us ] = "Action impossible: $(ARG1) is the current directory";
        Text[ portuguese ] = "Aco impossvel: $(ARG1)  o directrio activo.";
        Text[ russian ] = "  : $(ARG1)   ";
        Text[ greek ] = "Action not allowed: $(ARG1) is the current directory";
        Text[ dutch ] = "Deze opdracht kan niet worden uitgevoerd: $(ARG1) is de actuele directory";
        Text[ french ] = "Opration impossible : $(ARG1) est le rpertoire actif.";
        Text[ spanish ] = "Accin imposible: $(ARG1) es el directorio actual";
        Text[ finnish ] = "Action not allowed: $(ARG1) is the current directory";
        Text[ italian ] = "L'operazione non  ammessa: $(ARG1)  la cartella corrente";
        Text[ danish ] = "Action not allowed: $(ARG1) is the current directory";
        Text[ swedish ] = "tgrd omjlig: $(ARG1) r den aktuella katalogen";
        Text[ polish ] = "Niedozwolona operacja: $(ARG1) jest biecym katalogiem";
        Text[ portuguese_brazilian ] = "Action not allowed: $(ARG1) is the current directory";
        Text[ japanese ] = "アクションできません: $(ARG1) は現在のディレクトリです。";
        Text[ korean ] = "작업 불가능: $(ARG1)은(는) 현재의 디렉토리입니다.";
        Text[ chinese_simplified ] = "无法执行操作:$(ARG1) 是当前的目录。";
        Text[ chinese_traditional ] = "無法執行動作:$(ARG1) 是目前的目錄。";
        Text[ turkish ] = "Action not allowed: $(ARG1) is the current directory";
        Text[ arabic ] = "Action not allowed: $(ARG1) is the current directory";
        Text[ catalan ] = "Action not allowed: $(ARG1) is the current directory";
    };

    String (ERRCODE_UUI_IO_NOTREADY & ERRCODE_RES_MASK)
    {
        Text = "$(ARG1) ist nicht bereit";
        Text[english] = "$(ARG1) is not ready";
        Text[ english_us ] = "$(ARG1) is not ready";
        Text[ portuguese ] = "O dispositivo (unidade) $(ARG1) no est preparado.";
        Text[ russian ] = " $(ARG1)  ";
        Text[ greek ] = "The Device (drive) $(ARG1) is not ready";
        Text[ dutch ] = "$(ARG1) is niet bereid";
        Text[ french ] = "$(ARG1) n'est pas prt.";
        Text[ spanish ] = "$(ARG1) no est preparado";
        Text[ finnish ] = "The Device (drive) $(ARG1) is not ready";
        Text[ italian ] = "Il drive $(ARG1) non  pronto";
        Text[ danish ] = "The Device (drive) $(ARG1) is not ready";
        Text[ swedish ] = "$(ARG1) r inte redo";
        Text[ polish ] = "$(ARG1) nie jest gotowe";
        Text[ portuguese_brazilian ] = "The Device (drive) $(ARG1) is not ready";
        Text[ japanese ] = "$(ARG1) の準備ができていません。";
        Text[ korean ] = "장치(드라이브) $(ARG1)이(가) 준비되지 않았습니다.";
        Text[ chinese_simplified ] = "$(ARG1) 尚未准备就绪。";
        Text[ chinese_traditional ] = "$(ARG1) 尚未就緒。";
        Text[ turkish ] = "The Device (drive) $(ARG1) is not ready";
        Text[ arabic ] = "The Device (drive) $(ARG1) is not ready";
        Text[ catalan ] = "The Device (drive) $(ARG1) is not ready";
    };

    String (ERRCODE_UUI_IO_NOTSAMEDEVICE & ERRCODE_RES_MASK)
    {
        Text = "Aktion unmglich: $(ARG1) und $(ARG2) sind verschiedene Gerte (Laufwerke)";
        Text[english] = "Action not allowed: $(ARG1) and $(ARG2) are different devices (drives)";
        Text[ english_us ] = "Action impossible: $(ARG1) and $(ARG2) are different devices (drives)";
        Text[ portuguese ] = "Aco impossvel: $(ARG1) e $(ARG2) so dispositivos diferentes (unidades).";
        Text[ russian ] = "  : $(ARG1)  $(ARG2)    ()";
        Text[ greek ] = "Action not allowed: $(ARG1) and $(ARG2) are different devices (drives)";
        Text[ dutch ] = "Deze opdracht kan niet worden uitgevoerd: $(ARG1) en $(ARG2) zijn verschillende apparaten (stations)";
        Text[ french ] = "Opration impossible : $(ARG1) et $(ARG2) sont des appareils (units) diffrent(e)s.";
        Text[ spanish ] = "Accin imposible: $(ARG1) y $(ARG2) son dispositivos (unidades) diferentes.";
        Text[ finnish ] = "Action not allowed: $(ARG1) and $(ARG2) are different devices (drives)";
        Text[ italian ] = "L'operazione non  ammessa: $(ARG1) e $(ARG2) sono due drive diversi";
        Text[ danish ] = "Action not allowed: $(ARG1) and $(ARG2) are different devices (drives)";
        Text[ swedish ] = "tgrd omjlig: $(ARG1) och $(ARG2) r olika enheter";
        Text[ polish ] = "Niedozwolona operacja: $(ARG1) i $(ARG2) s rnymi urzdzeniami (napdami)";
        Text[ portuguese_brazilian ] = "Action not allowed: $(ARG1) and $(ARG2) are different devices (drives)";
        Text[ japanese ] = "アクションできません: $(ARG1) と $(ARG2) は異なったデバイス(ドライブ)です。";
        Text[ korean ] = "작업 불가능: $(ARG1)와(과) $(ARG2)은(는) 다른 장치(드라이브)입니다.";
        Text[ chinese_simplified ] = "无法执行操作:$(ARG1) 和 $(ARG2) 是不同的驱动盘。";
        Text[ chinese_traditional ] = "無法執行動作:$(ARG1) 和 $(ARG2) 是不同的設備(磁碟)";
        Text[ turkish ] = "Action not allowed: $(ARG1) and $(ARG2) are different devices (drives)";
        Text[ arabic ] = "Action not allowed: $(ARG1) and $(ARG2) are different devices (drives)";
        Text[ catalan ] = "Action not allowed: $(ARG1) and $(ARG2) are different devices (drives)";
    };

    String (ERRCODE_UUI_IO_GENERAL & ERRCODE_RES_MASK)
    {
        Text = "Allgemeiner Ein-/Ausgabefehler beim Zugriff auf $(ARG1)";
        Text[english] = "General input/output error while accessing $(ARG1)";
        Text[ english_us ] = "General input/output error while accessing $(ARG1)";
        Text[ portuguese ] = "Erro geral de acesso/sada ao entrar em $(ARG1).";
        Text[ russian ] = "  /    $(ARG1)";
        Text[ greek ] = "General input/output error while accessing $(ARG1)";
        Text[ dutch ] = "Algemene in-/uitvoerfout bij toegang tot ($(ARG1)";
        Text[ french ] = "Erreur gnrale d'entre/sortie lors de l'accs  $(ARG1).";
        Text[ spanish ] = "Error general de entrada/salida al acceder a $(ARG1).";
        Text[ finnish ] = "General input/output error while accessing $(ARG1)";
        Text[ italian ] = "Errore generale di I/O nell'accesso a $(ARG1).";
        Text[ danish ] = "General input/output error while accessing $(ARG1)";
        Text[ swedish ] = "Allmnt input/outputfel vid tkomst till $(ARG1)";
        Text[ polish ] = "Oglny bd w wejciu/wyjciu w dostpie do $(ARG1).";
        Text[ portuguese_brazilian ] = "General input/output error while accessing $(ARG1)";
        Text[ japanese ] = "$(ARG1) へアクセスする際の一般的な入力/出力のエラー。";
        Text[ korean ] = "$(ARG1)의 액세스에서 일반 입/출력 오류";
        Text[ chinese_simplified ] = "在读取 $(ARG1) 时发生一般的输入/输出错误";
        Text[ chinese_traditional ] = "存取 $(ARG1) 時發生一個一般的輸入/輸出錯誤。";
        Text[ turkish ] = "General input/output error while accessing $(ARG1)";
        Text[ arabic ] = "General input/output error while accessing $(ARG1)";
        Text[ catalan ] = "General input/output error while accessing $(ARG1)";
    };

    String (ERRCODE_UUI_IO_INVALIDACCESS & ERRCODE_RES_MASK)
    {
        Text = "Es wurde versucht, in ungltiger Weise auf $(ARG1) zuzugreifen";
        Text[english] = "An invalid attempt was made to access $(ARG1)";
        Text[ english_us ] = "An attempt was made to access $(ARG1) in an invalid way";
        Text[ portuguese ] = "Tentativa de acesso a $(ARG1) no vlida.";
        Text[ russian ] = "        $(ARG1)";
        Text[ greek ] = "An invalid attempt was made to access $(ARG1)";
        Text[ dutch ] = "Er werd getracht, op ongeldige wijze toegang te verkrijgen tot $(ARG1)";
        Text[ french ] = "Tentative d'accs  $(ARG1) non valide.";
        Text[ spanish ] = "Se intent acceder a $(ARG1) en una forma errnea.";
        Text[ finnish ] = "An invalid attempt was made to access $(ARG1)";
        Text[ italian ] = " stato rilevato un tentativo di accedere a $(ARG1) in modo non autorizzato.";
        Text[ danish ] = "An invalid attempt was made to access $(ARG1)";
        Text[ swedish ] = "Ogiltigt frsk att f tkomst till $(ARG1)";
        Text[ polish ] = "Nieprawidowa prba dostpu do $(ARG1)";
        Text[ portuguese_brazilian ] = "An invalid attempt was made to access $(ARG1)";
        Text[ japanese ] = "$(ARG1) への無効なアクセスが試みられました。";
        Text[ korean ] = "유효하지 않은 방식으로 $(ARG1)의 액세스를 시도하였습니다.";
        Text[ chinese_simplified ] = "尝试用无效的方式读取 $(ARG1) 。";
        Text[ chinese_traditional ] = "試圖採用一個無效的方式存取 $(ARG1)";
        Text[ turkish ] = "An invalid attempt was made to access $(ARG1)";
        Text[ arabic ] = "An invalid attempt was made to access $(ARG1)";
        Text[ catalan ] = "An invalid attempt was made to access $(ARG1)";
    };

    String (ERRCODE_UUI_IO_INVALIDCHAR & ERRCODE_RES_MASK)
    {
        Text = "$(ARG1) enthlt unzulssige Zeichen";
        Text[english] = "$(ARG1) contains invalid characters";
        Text[ english_us ] = "$(ARG1) contains invalid characters";
        Text[ portuguese ] = "$(ARG1) contm caracteres interditos.";
        Text[ russian ] = "$(ARG1)   ";
        Text[ greek ] = "$(ARG1) contains invalid characters";
        Text[ dutch ] = "$(ARG1) bevat ongeldige tekens";
        Text[ french ] = "$(ARG1) contient des caractres non permis.";
        Text[ spanish ] = "$(ARG1) contiene caracteres no permitidos";
        Text[ finnish ] = "$(ARG1) contains invalid characters";
        Text[ italian ] = "$(ARG1) contiene caratteri non validi";
        Text[ danish ] = "$(ARG1) contains invalid characters";
        Text[ swedish ] = "$(ARG1) innehller otilltna tecken";
        Text[ polish ] = "$(ARG1) zawiera niedozwolone znaki";
        Text[ portuguese_brazilian ] = "$(ARG1) contains invalid characters";
        Text[ japanese ] = "$(ARG1) に無効な文字が含まれています。";
        Text[ korean ] = "$(ARG1)에 허용되지 않는 문자가 있습니다.";
        Text[ chinese_simplified ] = "$(ARG1) 内含有无效的字符。";
        Text[ chinese_traditional ] = "$(ARG1) 含有無效的字元。";
        Text[ turkish ] = "$(ARG1) contains invalid characters";
        Text[ arabic ] = "$(ARG1) contains invalid characters";
        Text[ catalan ] = "$(ARG1) contains invalid characters";
    };

    String (ERRCODE_UUI_IO_INVALIDDEVICE & ERRCODE_RES_MASK)
    {
        Text = "Das Gert (Laufwerk) $(ARG1) ist ungltig";
        Text[english] = "The device (drive) $(ARG1) is invalid";
        Text[ english_us ] = "The device (drive) $(ARG1) is invalid";
        Text[ portuguese ] = "O dispositivo (unidade) $(ARG1) no  vlido.";
        Text[ russian ] = " () $(ARG1) ";
        Text[ greek ] = "The device (drive) $(ARG1) is invalid";
        Text[ dutch ] = "Apparaat (station) $(ARG1) is ongeldig";
        Text[ french ] = "L'appareil (unit) $(ARG1) n'est pas valide.";
        Text[ spanish ] = "El dispositivo (Unidad) $(ARG1) no es vlido";
        Text[ finnish ] = "The device (drive) $(ARG1) is invalid";
        Text[ italian ] = "Il drive $(ARG1) non  valido";
        Text[ danish ] = "The device (drive) $(ARG1) is invalid";
        Text[ swedish ] = "Enheten $(ARG1) r ogiltig";
        Text[ polish ] = "Nieprawidowe urzdzenie (napd) $(ARG1)";
        Text[ portuguese_brazilian ] = "The device (drive) $(ARG1) is invalid";
        Text[ japanese ] = "デバイス(ドライブ) $(ARG1) は無効です。";
        Text[ korean ] = "장치(드라이브) $(ARG1)이(가) 유효하지 않습니다.";
        Text[ chinese_simplified ] = "驱动盘 $(ARG1) 无效。";
        Text[ chinese_traditional ] = "設備(磁碟) $(ARG1) 無效。";
        Text[ turkish ] = "The device (drive) $(ARG1) is invalid";
        Text[ arabic ] = "The device (drive) $(ARG1) is invalid";
        Text[ catalan ] = "The device (drive) $(ARG1) is invalid";
    };

    String (ERRCODE_UUI_IO_INVALIDLENGTH & ERRCODE_RES_MASK)
    {
        Text = "Die Daten von $(ARG1) haben eine ungltige Lnge";
        Text[english] = "The data of $(ARG1) have an invalid length";
        Text[ english_us ] = "The data from $(ARG1) has an invalid length";
        Text[ portuguese ] = "Os dados de $(ARG1) tm um comprimento no vlido.";
        Text[ russian ] = "  $(ARG1)  ";
        Text[ greek ] = "The data of $(ARG1) have an invalid length";
        Text[ dutch ] = "De gegevens van $(ARG1) hebben een ongeldige lengte";
        Text[ french ] = "La longueur des donnes de $(ARG1) n'est pas valide.";
        Text[ spanish ] = "Los datos de $(ARG1) poseen una longitud no permitida";
        Text[ finnish ] = "The data of $(ARG1) have an invalid length";
        Text[ italian ] = "La lunghezza dei dati di $(ARG1) non  ammessa";
        Text[ danish ] = "The data of $(ARG1) have an invalid length";
        Text[ swedish ] = "Data frn $(ARG1) har en ogiltig lngd";
        Text[ polish ] = "Dane $(ARG1) s nieprawidowej dugoci";
        Text[ portuguese_brazilian ] = "The data of $(ARG1) have an invalid length";
        Text[ japanese ] = "$(ARG1) のデータの文字列の長さは無効です。";
        Text[ korean ] = "$(ARG1) 데이터의 길이가 유효하지 않습니다.";
        Text[ chinese_simplified ] = "$(ARG1) 数据的长度无效。";
        Text[ chinese_traditional ] = "資料 $(ARG1) 的長度無效。";
        Text[ turkish ] = "The data of $(ARG1) have an invalid length";
        Text[ arabic ] = "The data of $(ARG1) have an invalid length";
        Text[ catalan ] = "The data of $(ARG1) have an invalid length";
    };

    String (ERRCODE_UUI_IO_INVALIDPARAMETER & ERRCODE_RES_MASK)
    {
        Text = "Die Operation auf $(ARG1) wurde mit einem ungltigen Parameter gestartet";
        Text[english] = "The operation on $(ARG1) was started with an invalid parameter";
        Text[ english_us ] = "The operation on $(ARG1) was started with an invalid parameter";
        Text[ portuguese ] = "A operao em $(ARG1) foi iniciada com um parmetro no vlido.";
        Text[ russian ] = "  $(ARG1)     ";
        Text[ greek ] = "The operation on $(ARG1) was started with an invalid parameter";
        Text[ dutch ] = "De activiteit op $(ARG1) werd gestart met een ongeldige parameter";
        Text[ french ] = "L'opration sur $(ARG1) a t lance avec un paramtre non valide.";
        Text[ spanish ] = "La operacin en $(ARG1) se inici con un parmetro no permitido";
        Text[ finnish ] = "The operation on $(ARG1) was started with an invalid parameter";
        Text[ italian ] = "Il parametro per avviare l'operazione $(ARG1) non  ammesso";
        Text[ danish ] = "The operation on $(ARG1) was started with an invalid parameter";
        Text[ swedish ] = "Operationen p $(ARG1) startades med en ogiltig parameter";
        Text[ polish ] = "Operacj na $(ARG1) rozpoczto za pomoc nieprawidowego parametra";
        Text[ portuguese_brazilian ] = "The operation on $(ARG1) was started with an invalid parameter";
        Text[ japanese ] = "$(ARG1) への操作実行は無効なパラメータで開始されました。";
        Text[ korean ] = "$(ARG1)에서의 작업이 유효하지 않은 파라미터로 시작되었습니다.";
        Text[ chinese_simplified ] = "使用一个无效的参数启动了这个用于 $(ARG1) 的操作";
        Text[ chinese_traditional ] = "執行 $(ARG1) 動作時使用了一個無效的參數。";
        Text[ turkish ] = "The operation on $(ARG1) was started with an invalid parameter";
        Text[ arabic ] = "The operation on $(ARG1) was started with an invalid parameter";
        Text[ catalan ] = "The operation on $(ARG1) was started with an invalid parameter";
    };

    String (ERRCODE_UUI_IO_ISWILDCARD & ERRCODE_RES_MASK)
    {
        Text = "Die Operation kann nicht ausgefhrt werden, weil $(ARG1) Wildcards enthlt";
        Text[english] = "The operation cannot be run, because $(ARG1) contains wildcards";
        Text[ english_us ] = "The operation cannot be performed because $(ARG1) contains wildcards";
        Text[ portuguese ] = "Impossvel executar a operao, porque $(ARG1) contm wildcards.";
        Text[ russian ] = "-   $(ARG1)  ,   ";
        Text[ greek ] = "The operation cannot be run, because $(ARG1) contains wildcards";
        Text[ dutch ] = "Deze opdracht kan niet worden uitgevoerd, daar $(ARG1) wildcards bevat";
        Text[ french ] = "Impossible d'excuter l'opration : $(ARG1) contient des jokers.";
        Text[ spanish ] = "No se puede ejecutar la operacin porque $(ARG1) contiene comodines.";
        Text[ finnish ] = "The operation cannot be run, because $(ARG1) contains wildcards";
        Text[ italian ] = "Impossibile eseguire l'operazione perch $(ARG1) contiene wildcard.";
        Text[ danish ] = "The operation cannot be run, because $(ARG1) contains wildcards";
        Text[ swedish ] = "Det gr inte att utfra operationen eftersom $(ARG1) innehller jokertecken";
        Text[ polish ] = "Wykonanie operacji nie jest moliwe, poniewa $(ARG1) zawiera symbole wieloznaczne";
        Text[ portuguese_brazilian ] = "The operation cannot be run, because $(ARG1) contains wildcards";
        Text[ japanese ] = "$(ARG1) にワイルドカードが含まれているため、操作実行はできません。";
        Text[ korean ] = "$(ARG1)에 와일드카드가 포함되어 있어 작업을 실행할 수 없습니다.";
        Text[ chinese_simplified ] = "无法执行这个命令,因为 $(ARG1) 含有通配符。";
        Text[ chinese_traditional ] = "無法執行這個操作,因爲 $(ARG1) 含有萬用字元。";
        Text[ turkish ] = "The operation cannot be run, because $(ARG1) contains wildcards";
        Text[ arabic ] = "The operation cannot be run, because $(ARG1) contains wildcards";
        Text[ catalan ] = "The operation cannot be run, because $(ARG1) contains wildcards";
    };

    String (ERRCODE_UUI_IO_LOCKVIOLATION & ERRCODE_RES_MASK)
    {
        Text = "Fehler beim gemeinsamen Zugriff auf $(ARG1)";
        Text[english] = "Sharing violation while accessing $(ARG1)";
        Text[ english_us ] = "Error during shared access to $(ARG1).";
        Text[ portuguese ] = "Erro ao tentar acesso partilhado a $(ARG1).";
        Text[ russian ] = "     $(ARG1)";
        Text[ greek ] = "Sharing violation while accessing $(ARG1)";
        Text[ dutch ] = "Fout bij gelijktijdige toegang tot $(ARG1)";
        Text[ french ] = "Erreur de partage d'accs  $(ARG1)";
        Text[ spanish ] = "Error durante el acceso compartido al archivo $(ARG1).";
        Text[ finnish ] = "Sharing violation while accessing $(ARG1)";
        Text[ italian ] = "Errore nell'accesso comune a $(ARG1)";
        Text[ danish ] = "Sharing violation while accessing $(ARG1)";
        Text[ swedish ] = "Fel vid gemensam tkomst till $(ARG1)";
        Text[ polish ] = "Bd we wsplnym dostpie do $(ARG1)";
        Text[ portuguese_brazilian ] = "Sharing violation while accessing $(ARG1)";
        Text[ japanese ] = "$(ARG1) への共有アクセスの際のエラー。";
        Text[ korean ] = "$(ARG1)을 공동 액세스하는 동안 오류가 발생했습니다.";
        Text[ chinese_simplified ] = "在同时读取 $(ARG1) 时发生错误。";
        Text[ chinese_traditional ] = "在同時存取 $(ARG1) 時發生錯誤";
        Text[ turkish ] = "Sharing violation while accessing $(ARG1)";
        Text[ arabic ] = "Sharing violation while accessing $(ARG1)";
        Text[ catalan ] = "Sharing violation while accessing $(ARG1)";
    };

    String (ERRCODE_UUI_IO_MISPLACEDCHAR & ERRCODE_RES_MASK)
    {
        Text = "$(ARG1) enthlt Zeichen an unzulssiger Position";
        Text[english] = "$(ARG1) contains misplaced characters";
        Text[ english_us ] = "$(ARG1) contains misplaced characters";
        Text[ portuguese ] = "$(ARG1) contm caracteres mal posicionados.";
        Text[ russian ] = "$(ARG1)     ";
        Text[ greek ] = "$(ARG1) contains misplaced characters";
        Text[ dutch ] = "$(ARG1) bevat tekens op een ongeldige positie";
        Text[ french ] = "$(ARG1) contient des caractres mal positionns.";
        Text[ spanish ] = "$(ARG1) contiene caracteres en posiciones donde no estn permitidos.";
        Text[ finnish ] = "$(ARG1) contains misplaced characters";
        Text[ italian ] = "$(ARG1) contiene caratteri in posizione errata";
        Text[ danish ] = "$(ARG1) contains misplaced characters";
        Text[ swedish ] = "$(ARG1) innehller tecken som har en otillten placering";
        Text[ polish ] = "$(ARG1) zawiera znaki w niedozwolonym miejscu";
        Text[ portuguese_brazilian ] = "$(ARG1) contains misplaced characters";
        Text[ japanese ] = "$(ARG1) には間違った位置に文字が含まれています。";
        Text[ korean ] = "$(ARG1)에는 잘못 배치된 문자가 들어 있습니다.";
        Text[ chinese_simplified ] = "$(ARG1) 含有误置的字符。";
        Text[ chinese_traditional ] = "$(ARG1) 含有一些位置無效的字元。";
        Text[ turkish ] = "$(ARG1) contains misplaced characters";
        Text[ arabic ] = "$(ARG1) contains misplaced characters";
        Text[ catalan ] = "$(ARG1) contains misplaced characters";
    };

    String (ERRCODE_UUI_IO_NAMETOOLONG & ERRCODE_RES_MASK)
    {
        Text = "Der Name $(ARG1) enthlt zu viele Zeichen";
        Text[english] = "The name $(ARG1) contains to many characters";
        Text[ english_us ] = "The name $(ARG1) contains too many characters";
        Text[ portuguese ] = "O nome $(ARG1) contm demasiados caracteres.";
        Text[ russian ] = " $(ARG1)    ";
        Text[ greek ] = "The name $(ARG1) contains to many characters";
        Text[ dutch ] = "De naam $(ARG1) bevat te veel tekens";
        Text[ french ] = "Le nom $(ARG1) est trop long.";
        Text[ spanish ] = "El nombre $(ARG1) contiene demasiados caracteres";
        Text[ finnish ] = "The name $(ARG1) contains to many characters";
        Text[ italian ] = "Il nome $(ARG1)  troppo lungo";
        Text[ danish ] = "The name $(ARG1) contains to many characters";
        Text[ swedish ] = "Namnet $(ARG1) innehller fr mnga tecken";
        Text[ polish ] = "Nazwa $(ARG1) zawiera za duo znakw";
        Text[ portuguese_brazilian ] = "The name $(ARG1) contains to many characters";
        Text[ japanese ] = "名前 $(ARG1) に含まれている文字数が多すぎます。";
        Text[ korean ] = "이름 $(ARG1)의 길이가 너무 깁니다.";
        Text[ chinese_simplified ] = "名称 $(ARG1) 含有太多的字符。";
        Text[ chinese_traditional ] = "名稱 $(ARG1) 含有太多的字元。";
        Text[ turkish ] = "The name $(ARG1) contains to many characters";
        Text[ arabic ] = "The name $(ARG1) contains to many characters";
        Text[ catalan ] = "The name $(ARG1) contains to many characters";
    };

    String (ERRCODE_UUI_IO_NOTEXISTS & ERRCODE_RES_MASK)
    {
        Text = "$(ARG1) existiert nicht";
        Text[english] = "$(ARG1) does not exist";
        Text[ english_us ] = "$(ARG1) does not exist";
        Text[ portuguese ] = "$(ARG1) no existe.";
        Text[ russian ] = "$(ARG1)  ";
        Text[ greek ] = "$(ARG1) does not exist";
        Text[ dutch ] = "$(ARG1) bestaat niet";
        Text[ french ] = "$(ARG1) n'existe pas.";
        Text[ spanish ] = "$(ARG1) no existe";
        Text[ finnish ] = "$(ARG1) does not exist";
        Text[ italian ] = "$(ARG1) non esiste";
        Text[ danish ] = "$(ARG1) does not exist";
        Text[ swedish ] = "$(ARG1) existerar inte";
        Text[ polish ] = "$(ARG1) nie istnieje";
        Text[ portuguese_brazilian ] = "$(ARG1) does not exist";
        Text[ japanese ] = "$(ARG1) はありません。";
        Text[ korean ] = "$(ARG1)이(가) 존재하지 않음.";
        Text[ chinese_simplified ] = "$(ARG1) 不存在。";
        Text[ chinese_traditional ] = "$(ARG1) 不存在。";
        Text[ turkish ] = "$(ARG1) does not exist";
        Text[ arabic ] = "$(ARG1) does not exist";
        Text[ catalan ] = "$(ARG1) does not exist";
    };

    String (ERRCODE_UUI_IO_NOTEXISTSPATH & ERRCODE_RES_MASK)
    {
        Text = "Der Pfad $(ARG1) existiert nicht";
        Text[english] = "The path $(ARG1) does not exist";
        Text[ english_us ] = "The path $(ARG1) does not exist";
        Text[ portuguese ] = "O atalho $(ARG1) no existe.";
        Text[ russian ] = "  $(ARG1)  ";
        Text[ greek ] = "The path $(ARG1) does not exist";
        Text[ dutch ] = "Pad $(ARG1) bestaat niet";
        Text[ french ] = "Le chemin $(ARG1) n'existe pas.";
        Text[ spanish ] = "No existe la ruta $(ARG1)";
        Text[ finnish ] = "The path $(ARG1) does not exist";
        Text[ italian ] = "Il percorso $(ARG1) non esiste";
        Text[ danish ] = "The path $(ARG1) does not exist";
        Text[ swedish ] = "Skvgen $(ARG1) existerar inte";
        Text[ polish ] = "cieka $(ARG1) nie istnieje";
        Text[ portuguese_brazilian ] = "The path $(ARG1) does not exist";
        Text[ japanese ] = "パス $(ARG1) はありません。";
        Text[ korean ] = "경로 $(ARG1)이(가) 존재하지 않음";
        Text[ chinese_simplified ] = "路径 $(ARG1) 不存在。";
        Text[ chinese_traditional ] = "路徑 $(ARG1) 不存在。";
        Text[ turkish ] = "The path $(ARG1) does not exist";
        Text[ arabic ] = "The path $(ARG1) does not exist";
        Text[ catalan ] = "The path $(ARG1) does not exist";
    };

    String (ERRCODE_UUI_IO_NOTSUPPORTED & ERRCODE_RES_MASK)
    {
        Text = "Die Operation auf $(ARG1) wird auf dem vorliegenden Betriebssystem nicht untersttzt";
        Text[english] = "The operation on $(ARG1) is not supported on this operating system";
        Text[ english_us ] = "The operation on $(ARG1) is not supported on this operating system";
        Text[ portuguese ] = "O actual sistema operativo no tem suporte para a operao em $(ARG1).";
        Text[ russian ] = "  $(ARG1)     ";
        Text[ greek ] = "The operation on $(ARG1) is not supported on this operating system";
        Text[ dutch ] = "De activiteit op $(ARG1) wordt niet ondersteund door het bestaande besturingssysteem";
        Text[ french ] = "L'opration sur $(ARG1) n'est pas supporte par ce systme d'exploitation.";
        Text[ spanish ] = "En el sistema operativo actual no se apoya la operacin a $(ARG1).";
        Text[ finnish ] = "The operation on $(ARG1) is not supported on this operating system";
        Text[ italian ] = "Il sistema operativo non supporta l'operazione su $(ARG1)";
        Text[ danish ] = "The operation on $(ARG1) is not supported on this operating system";
        Text[ swedish ] = "Operationen p $(ARG1) understds inte p operativsystemet";
        Text[ polish ] = "Operacja $(ARG1) nie jest obsugiwana przez dany system operacyjny";
        Text[ portuguese_brazilian ] = "The operation on $(ARG1) is not supported on this operating system";
        Text[ japanese ] = "$(ARG1) への操作はこのオペレーティングシステムでは支援されません。";
        Text[ korean ] = "이 운영 체제에서는 $(ARG1)의 작업이 지원되지 않습니다.";
        Text[ chinese_simplified ] = "这个操作系统不支持用于 $(ARG1) 的命令 。";
        Text[ chinese_traditional ] = "這個操作系統不支援用於 $(ARG1) 的操作。";
        Text[ turkish ] = "The operation on $(ARG1) is not supported on this operating system";
        Text[ arabic ] = "The operation on $(ARG1) is not supported on this operating system";
        Text[ catalan ] = "The operation on $(ARG1) is not supported on this operating system";
    };

    String (ERRCODE_UUI_IO_NOTADIRECTORY & ERRCODE_RES_MASK)
    {
        Text = "$(ARG1) ist kein Verzeichnis";
        Text[english] = "$(ARG1) is not a directory";
        Text[ english_us ] = "$(ARG1) is not a directory";
        Text[ portuguese ] = "$(ARG1) no  um directrio.";
        Text[ russian ] = "$(ARG1)   ";
        Text[ greek ] = "$(ARG1) is not a directory";
        Text[ dutch ] = "$(ARG1) is geen directory";
        Text[ french ] = "$(ARG1) n'est pas un rpertoire.";
        Text[ spanish ] = "$(ARG1) no es un directorio";
        Text[ finnish ] = "$(ARG1) is not a directory";
        Text[ italian ] = "$(ARG1) non  una cartella";
        Text[ danish ] = "$(ARG1) is not a directory";
        Text[ swedish ] = "$(ARG1) r ingen katalog";
        Text[ polish ] = "$(ARG1) nie jest katalogiem";
        Text[ portuguese_brazilian ] = "$(ARG1) is not a directory";
        Text[ japanese ] = "$(ARG1) はディレクトリではありません。";
        Text[ korean ] = "$(ARG1)은(는) 디렉토리가 아닙니다.";
        Text[ chinese_simplified ] = "$(ARG1) 不是目录。";
        Text[ chinese_traditional ] = "$(ARG1) 不是目錄。";
        Text[ turkish ] = "$(ARG1) is not a directory";
        Text[ arabic ] = "$(ARG1) is not a directory";
        Text[ catalan ] = "$(ARG1) is not a directory";
    };

    String (ERRCODE_UUI_IO_NOTAFILE & ERRCODE_RES_MASK)
    {
        Text = "$(ARG1) ist keine Datei";
        Text[english] = "$(ARG1) is not a file";
        Text[ english_us ] = "$(ARG1) is not a file";
        Text[ portuguese ] = "$(ARG1) no  um ficheiro.";
        Text[ russian ] = "$(ARG1)   ";
        Text[ greek ] = "$(ARG1) is not a file";
        Text[ dutch ] = "$(ARG1) is geen bestand";
        Text[ french ] = "$(ARG1) n'est pas un fichier.";
        Text[ spanish ] = "$(ARG1) no es un archivo";
        Text[ finnish ] = "$(ARG1) is not a file";
        Text[ italian ] = "$(ARG1) non  un file";
        Text[ danish ] = "$(ARG1) is not a file";
        Text[ swedish ] = "$(ARG1) r ingen fil";
        Text[ polish ] = "$(ARG1) nie jest plikiem";
        Text[ portuguese_brazilian ] = "$(ARG1) is not a file";
        Text[ japanese ] = "$(ARG1) はファイルではありません。";
        Text[ korean ] = "$(ARG1)은(는) 파일이 아닙니다.";
        Text[ chinese_simplified ] = "$(ARG1) 不是文件。";
        Text[ chinese_traditional ] = "$(ARG1)不是檔案";
        Text[ turkish ] = "$(ARG1) is not a file";
        Text[ arabic ] = "$(ARG1) is not a file";
        Text[ catalan ] = "$(ARG1) is not a file";
    };

    String (ERRCODE_UUI_IO_OUTOFSPACE & ERRCODE_RES_MASK)
    {
        Text = "Auf dem Gert $(ARG1) ist kein Platz mehr vorhanden";
        Text[english] = "There was no space left on device $(ARG1)";
        Text[ english_us ] = "There is no space left on device $(ARG1)";
        Text[ portuguese ] = "No h espao disponvel no dispositivo $(ARG1).";
        Text[ russian ] = "  $(ARG1)   ";
        Text[ greek ] = "There was no space left on device $(ARG1)";
        Text[ dutch ] = "Op $(ARG1) is geen plaats meer";
        Text[ french ] = "Espace satur sur l'appareil $(ARG1).";
        Text[ spanish ] = "No existe ms espacio en el dispositivo $(ARG1)";
        Text[ finnish ] = "There was no space left on device $(ARG1)";
        Text[ italian ] = "Il drive $(ARG1) non ha pi spazio disponibile";
        Text[ danish ] = "There was no space left on device $(ARG1)";
        Text[ swedish ] = "Det finns ingen plats kvar p enheten $(ARG1)";
        Text[ polish ] = "Brak miejsca na urzdzeniu $(ARG1)";
        Text[ portuguese_brazilian ] = "There was no space left on device $(ARG1)";
        Text[ japanese ] = "デバイス $(ARG1) には空き容量はありません。";
        Text[ korean ] = "장치 $(ARG1)에는 더 이상 공간이 없습니다.";
        Text[ chinese_simplified ] = "硬盘 $(ARG1) 已没有可用空间了。";
        Text[ chinese_traditional ] = "設備 $(ARG1) 已經沒有可用空間了。";
        Text[ turkish ] = "There was no space left on device $(ARG1)";
        Text[ arabic ] = "There was no space left on device $(ARG1)";
        Text[ catalan ] = "There was no space left on device $(ARG1)";
    };

    String (ERRCODE_UUI_IO_TOOMANYOPENFILES & ERRCODE_RES_MASK)
    {
        Text = "Die Operation auf $(ARG1) kann nicht ausgefhrt werden, da bereits zu viele Dateien geffnet sind";
        Text[english] = "The operation on $(ARG1) can't be completed because there are too many open files";
        Text[ english_us ] = "The operation on $(ARG1) cannot be performed because too many files are already open";
        Text[ portuguese ] = " impossvel executar a operao em $(ARG1): demasiados ficheiros abertos.";
        Text[ russian ] = "  $(ARG1)  ,     ";
        Text[ greek ] = "The operation on $(ARG1) can't be completed because there are too many open files";
        Text[ dutch ] = "De activiteit op $(ARG1) kan niet worden uitgevoerd daar er teveel bestanden geopend zijn";
        Text[ french ] = "Impossible d'excuter l'opration sur $(ARG1) : il y a trop de fichiers ouverts.";
        Text[ spanish ] = "No se puede ejecutar la operacin en $(ARG1) porque ya existen demasiados archivos abiertos.";
        Text[ finnish ] = "The operation on $(ARG1) can't be completed because there are too many open files";
        Text[ italian ] = "Impossibile eseguire l'operazione su $(ARG1) perch sono aperti troppi file.";
        Text[ danish ] = "The operation on $(ARG1) can't be completed because there are too many open files";
        Text[ swedish ] = "Det gr inte att utfra operationen p $(ARG1) eftersom fr mnga filer redan r ppna";
        Text[ polish ] = "Wykonanie operacji na $(ARG1) nie jest moliwe, poniewa otwarto za duo plikw";
        Text[ portuguese_brazilian ] = "The operation on $(ARG1) can't be completed because there are too many open files";
        Text[ japanese ] = "すでに多くのファイルが開かれているため、$(ARG1) への操作は実行できません。";
        Text[ korean ] = "열려있는 파일들이 너무 많아 $(ARG1)에 대한 작업을 실행할 수 없습니다.";
        Text[ chinese_simplified ] = "因为已经打开了太多的文件,无法执行用于 $(ARG1) 的命令 。";
        Text[ chinese_traditional ] = "因爲已經開啓了太多的檔案,而無法執行這個操作 $(ARG1) 。";
        Text[ turkish ] = "The operation on $(ARG1) can't be completed because there are too many open files";
        Text[ arabic ] = "The operation on $(ARG1) can't be completed because there are too many open files";
        Text[ catalan ] = "The operation on $(ARG1) can't be completed because there are too many open files";
    };

    String (ERRCODE_UUI_IO_OUTOFMEMORY & ERRCODE_RES_MASK)
    {
        Text = "Die Operation auf $(ARG1) kann nicht ausgefhrt werden, da kein Speicher mehr zur Verfgung steht";
        Text[english] = "The operation on $(ARG1) can't be completed because there is no more memory available";
        Text[ english_us ] = "The operation on $(ARG1) cannot be performed because there is no more memory available";
        Text[ portuguese ] = " impossvel executar a operao em $(ARG1): memria insuficiente.";
        Text[ russian ] = "-      $(ARG1) ";
        Text[ greek ] = "The operation on $(ARG1) can't be completed because there is no more memory available";
        Text[ dutch ] = "De activiteit op $(ARG1) kan niet worden uitgevoerd daar er niet voldoende geheugen beschikbaar is";
        Text[ french ] = "Impossible d'excuter l'opration sur $(ARG1) : mmoire insuffisante.";
        Text[ spanish ] = "No se puede ejecutar la operacin en $(ARG1) por falta de espacio.";
        Text[ finnish ] = "The operation on $(ARG1) can't be completed because there is no more memory available";
        Text[ italian ] = "Impossibile eseguire l'operazione su $(ARG1) perch la memoria disponibile non  sufficiente";
        Text[ danish ] = "The operation on $(ARG1) can't be completed because there is no more memory available";
        Text[ swedish ] = "Det gr inte att utfra operationen p $(ARG1) eftersom inget mer minne r tillgngligt";
        Text[ polish ] = "Wykonanie operacji na $(ARG1) nie jest moliwe z powodu braku pamici";
        Text[ portuguese_brazilian ] = "The operation on $(ARG1) can't be completed because there is no more memory available";
        Text[ japanese ] = "$(ARG1) への操作は空き容量不足のため実行できません。";
        Text[ korean ] = "사용 가능한 메모리가 부족하여 $(ARG1)에 대한 작업을 실행할 수 없습니다.";
        Text[ chinese_simplified ] = "因为内存用尽而无法执行用于 $(ARG1) 的命令。";
        Text[ chinese_traditional ] = "因爲記憶體用完,無法執行操作 $(ARG1) 。";
        Text[ turkish ] = "The operation on $(ARG1) can't be completed because there is no more memory available";
        Text[ arabic ] = "The operation on $(ARG1) can't be completed because there is no more memory available";
        Text[ catalan ] = "The operation on $(ARG1) can't be completed because there is no more memory available";
    };

    String (ERRCODE_UUI_IO_PENDING & ERRCODE_RES_MASK)
    {
        Text = "Die Operation auf $(ARG1) kann nicht fortgesetzt werden, weil weitere Daten erwartet werden";
        Text[english] = "The operation on $(ARG1) cannot continue, because there are pending data";
        Text[ english_us ] = "The operation on $(ARG1) cannot continue because more data is pending";
        Text[ portuguese ] = " impossvel executar a operao em $(ARG1): existem dados pendentes.";
        Text[ russian ] = "   $(ARG1) ,    ";
        Text[ greek ] = "The operation on $(ARG1) cannot continue, because there are pending data";
        Text[ dutch ] = "De activiteit op $(ARG1) kan niet worden voortgezet daar er geen verdere gegevens worden verwacht";
        Text[ french ] = "Impossible de poursuivre l'opration sur $(ARG1) : d'autres donnes sont en attente.";
        Text[ spanish ] = "No se pudo completar la operacin en $(ARG1) porque se esperan ms datos.";
        Text[ finnish ] = "The operation on $(ARG1) cannot continue, because there are pending data";
        Text[ italian ] = "Impossibile proseguire l'operazione su $(ARG1) perch mancano alcuni dati";
        Text[ danish ] = "The operation on $(ARG1) cannot continue, because there are pending data";
        Text[ swedish ] = "Operation p $(ARG1) kan inte fortstta eftersom fler data vntas";
        Text[ polish ] = "Kontynuacja operacji na $(ARG1) wymaga wprowadzenia dalszych danych";
        Text[ portuguese_brazilian ] = "The operation on $(ARG1) cannot continue, because there are pending data";
        Text[ japanese ] = "保留データがあるために、$(ARG1) への操作は続行できません。";
        Text[ korean ] = "다른 데이터를 대기 중이므로 $(ARG1)에 대한 작업을 계속할 수 없습니다.";
        Text[ chinese_simplified ] = "因为在等待其他的数据,所以无法继续执行用于 $(ARG1) 的命令。";
        Text[ chinese_traditional ] = "因爲在等待其他的資料,而無法執行操作 $(ARG1) 。";
        Text[ turkish ] = "The operation on $(ARG1) cannot continue, because there are pending data";
        Text[ arabic ] = "The operation on $(ARG1) cannot continue, because there are pending data";
        Text[ catalan ] = "The operation on $(ARG1) cannot continue, because there are pending data";
    };

    String (ERRCODE_UUI_IO_RECURSIVE & ERRCODE_RES_MASK)
    {
        Text = "$(ARG1) kann nicht in sich selbst kopiert werden";
        Text[english] = "$(ARG1) cannot be copied into itself";
        Text[ english_us ] = "$(ARG1) cannot be copied into itself";
        Text[ portuguese ] = "$(ARG1) no pode autocopiar-se.";
        Text[ russian ] = "$(ARG1)       ";
        Text[ greek ] = "$(ARG1) cannot be copied into itself";
        Text[ dutch ] = "$(ARG1) kan niet naar zichzelf worden gekopieerd";
        Text[ french ] = "Autocopie de $(ARG1) impossible.";
        Text[ spanish ] = "$(ARG1) no se puede copiar en s mismo.";
        Text[ finnish ] = "$(ARG1) cannot be copied into itself";
        Text[ italian ] = "$(ARG1) non pu copiare se stesso";
        Text[ danish ] = "$(ARG1) cannot be copied into itself";
        Text[ swedish ] = "Det gr inte att kopiera $(ARG1) till sig sjlv";
        Text[ polish ] = "$(ARG1) nie mona skopiowa w sobie samym";
        Text[ portuguese_brazilian ] = "$(ARG1) cannot be copied into itself";
        Text[ japanese ] = "$(ARG1) をそれ自体にコピーすることはできません。";
        Text[ korean ] = "$(ARG1)을(를) $(ARG1)로 복사할 수 없습니다.";
        Text[ chinese_simplified ] = "$(ARG1) 无法自身复制。";
        Text[ chinese_traditional ] = "$(ARG1) 不可以自身複製。";
        Text[ turkish ] = "$(ARG1) cannot be copied into itself";
        Text[ arabic ] = "$(ARG1) cannot be copied into itself";
        Text[ catalan ] = "$(ARG1) cannot be copied into itself";
    };

    String (ERRCODE_UUI_IO_UNKNOWN & ERRCODE_RES_MASK)
    {
        Text = "Unbekannter Ein-/Ausgabefehler beim Zugriff auf $(ARG1)";
        Text[english] = "Unknown input/output error while accessing $(ARG1)";
        Text[ english_us ] = "Unknown input/output error while accessing $(ARG1)";
        Text[ portuguese ] = "Erro de entrada/sada durante o acesso a $(ARG1).";
        Text[ russian ] = "    $(ARG1)    /";
        Text[ greek ] = "Unknown input/output error while accessing $(ARG1)";
        Text[ dutch ] = "Algemene in-/uitvoerfout bij toegang tot $(ARG1)";
        Text[ french ] = "Erreur inconnue d'entre/sortie lors de l'accs  $(ARG1).";
        Text[ spanish ] = "Error de entrada/salida desconocido al acceder a $(ARG1)";
        Text[ finnish ] = "Unknown input/output error while accessing $(ARG1)";
        Text[ italian ] = "Errore sconosciuto di I/O nell'accesso a $(ARG1).";
        Text[ danish ] = "Unknown input/output error while accessing $(ARG1)";
        Text[ swedish ] = "Oknt input/outputfel vid tkomst till $(ARG1)";
        Text[ polish ] = "Nieznany bd w wejciu/wyjciu w dostpie do $(ARG1)";
        Text[ portuguese_brazilian ] = "Unknown input/output error while accessing $(ARG1)";
        Text[ japanese ] = "$(ARG1) へアクセスする際の不明な入力/出力のエラー。";
        Text[ korean ] = "$(ARG1)에 액세스하는 도중 알 수 없는 입/출력 오류가 발생했습니다.";
        Text[ chinese_simplified ] = "读取 $(ARG1) 时发生一个不明的输入/输出错误。";
        Text[ chinese_traditional ] = "存取 $(ARG1) 時發生一個不明的輸入/輸出錯誤。";
        Text[ turkish ] = "Unknown input/output error while accessing $(ARG1)";
        Text[ arabic ] = "Unknown input/output error while accessing $(ARG1)";
        Text[ catalan ] = "Unknown input/output error while accessing $(ARG1)";
    };

    String (ERRCODE_UUI_IO_WRITEPROTECTED & ERRCODE_RES_MASK)
    {
        Text = "$(ARG1) ist schreibgeschtzt";
        Text[english] = "$(ARG1) is write protected";
        Text[ english_us ] = "$(ARG1) is write protected";
        Text[ portuguese ] = "$(ARG1)  s de leitura.";
        Text[ russian ] = "$(ARG1)   ";
        Text[ greek ] = "$(ARG1) is write protected";
        Text[ dutch ] = "$(ARG1) is schrijfbeveiligd";
        Text[ french ] = "$(ARG1) est en lecture seule.";
        Text[ spanish ] = "$(ARG1) es de slo lectura";
        Text[ finnish ] = "$(ARG1) is write protected";
        Text[ italian ] = "$(ARG1)  protetto";
        Text[ danish ] = "$(ARG1) is write protected";
        Text[ swedish ] = "$(ARG1) r skrivskyddad";
        Text[ polish ] = "$(ARG1) jest tylko do odczytu";
        Text[ portuguese_brazilian ] = "$(ARG1) is write protected";
        Text[ japanese ] = "$(ARG1) は書き込み保護されています。";
        Text[ korean ] = "$(ARG1)은 읽기 전용입니다.";
        Text[ chinese_simplified ] = "$(ARG1) 是防改写的。";
        Text[ chinese_traditional ] = "$(ARG1) 是唯讀的。";
        Text[ turkish ] = "$(ARG1) is write protected";
        Text[ arabic ] = "$(ARG1) is write protected";
        Text[ catalan ] = "$(ARG1) is write protected";
    };

    String (ERRCODE_UUI_IO_WRONGFORMAT & ERRCODE_RES_MASK)
    {
        Text = "$(ARG1) liegt in einem falschen Format vor";
        Text[english] = "$(ARG1) has an incorrect format";
        Text[ english_us ] = "$(ARG1) is not in the correct format";
        Text[ portuguese ] = "O formato de $(ARG1) est incorrecto.";
        Text[ russian ] = "$(ARG1)   ";
        Text[ greek ] = "$(ARG1) has an incorrect format";
        Text[ dutch ] = "$(ARG1) heeft verkeerd formaat";
        Text[ french ] = "Le format de $(ARG1) est incorrect.";
        Text[ spanish ] = "$(ARG1) tiene un formato falso";
        Text[ finnish ] = "$(ARG1) has an incorrect format";
        Text[ italian ] = "$(ARG1) ha un formato errato";
        Text[ danish ] = "$(ARG1) has an incorrect format";
        Text[ swedish ] = "$(ARG1) har ett felaktigt format";
        Text[ polish ] = "$(ARG1) ma nieprawidowy format";
        Text[ portuguese_brazilian ] = "$(ARG1) has an incorrect format";
        Text[ japanese ] = "$(ARG1) の書式が正しくありません。";
        Text[ korean ] = "$(ARG1)의 형식이 올바르지 않습니다.";
        Text[ chinese_simplified ] = "$(ARG1) 格式有误。";
        Text[ chinese_traditional ] = "$(ARG1) 的格式錯誤。";
        Text[ turkish ] = "$(ARG1) has an incorrect format";
        Text[ arabic ] = "$(ARG1) has an incorrect format";
        Text[ catalan ] = "$(ARG1) has an incorrect format";
    };

    String (ERRCODE_UUI_IO_WRONGVERSION & ERRCODE_RES_MASK)
    {
        Text = "$(ARG1) liegt in einer falschen Version vor";
        Text[english] = "$(ARG1) has an incorrect version";
        Text[ english_us ] = "The version of $(ARG1) is not correct";
        Text[ portuguese ] = "A verso de $(ARG1) est incorrecta.";
        Text[ russian ] = "  $(ARG1)";
        Text[ greek ] = "$(ARG1) has an incorrect version";
        Text[ dutch ] = "Verkeerde versie van $(ARG1)";
        Text[ french ] = "La version de $(ARG1) est incorrecte.";
        Text[ spanish ] = "$(ARG1) no es la versin correcta.";
        Text[ finnish ] = "$(ARG1) has an incorrect version";
        Text[ italian ] = "$(ARG1)  presente in una versione errata";
        Text[ danish ] = "$(ARG1) has an incorrect version";
        Text[ swedish ] = "$(ARG1) har en felaktig version";
        Text[ polish ] = "Wersja $(ARG1) jest nieprawidowa";
        Text[ portuguese_brazilian ] = "$(ARG1) has an incorrect version";
        Text[ japanese ] = "$(ARG1) のバージョンが正しくありません。";
        Text[ korean ] = "$(ARG1)의 버전이 올바르지 않습니다.";
        Text[ chinese_simplified ] = "$(ARG1) 的版本错误。";
        Text[ chinese_traditional ] = "$(ARG1) 的版本無效";
        Text[ turkish ] = "$(ARG1) has an incorrect version";
        Text[ arabic ] = "$(ARG1) has an incorrect version";
        Text[ catalan ] = "$(ARG1) has an incorrect version";
    };

    String (ERRCODE_UUI_IO_NOTEXISTS_VOLUME & ERRCODE_RES_MASK)
    {
        Text = "Laufwerk $(ARG1) existiert nicht";
        Text[english] = "Volume $(ARG1) does not exist";
        Text[ english_us ] = "Drive $(ARG1) does not exist";
        Text[ portuguese ] = "A unidade $(ARG1)no existe.";
        Text[ russian ] = " $(ARG1)  ";
        Text[ greek ] = "Volume $(ARG1) does not exist";
        Text[ dutch ] = "Station $(ARG1) bestaat niet";
        Text[ french ] = "L'unit $(ARG1) n'existe pas.";
        Text[ spanish ] = "No existe la unidad $(ARG1)";
        Text[ finnish ] = "Volume $(ARG1) does not exist";
        Text[ italian ] = "Il drive $(ARG1) non esiste";
        Text[ danish ] = "Volume $(ARG1) does not exist";
        Text[ swedish ] = "Enheten $(ARG1) existerar inte";
        Text[ polish ] = "Napd $(ARG1) nie istnieje";
        Text[ portuguese_brazilian ] = "Volume $(ARG1) does not exist";
        Text[ japanese ] = "ドライブ $(ARG1) はありません。";
        Text[ korean ] = "$(ARG1) 드라이브가 존재하지 않습니다.";
        Text[ chinese_simplified ] = "驱动盘 $(ARG1) 不存在。";
        Text[ chinese_traditional ] = "硬碟 $(ARG1) 不存在。";
        Text[ turkish ] = "Volume $(ARG1) does not exist";
        Text[ arabic ] = "Volume $(ARG1) does not exist";
        Text[ catalan ] = "Volume $(ARG1) does not exist";
    };

    String (ERRCODE_UUI_IO_NOTEXISTS_FOLDER & ERRCODE_RES_MASK)
    {
        Text = "Ordner $(ARG1) existiert nicht";
        Text[english] = "Folder $(ARG1) does not exist";
        Text[ english_us ] = "Folder $(ARG1) does not exist";
        Text[ portuguese ] = "A pasta $(ARG1) no existe.";
        Text[ russian ] = " $(ARG1)  ";
        Text[ greek ] = "Folder $(ARG1) does not exist";
        Text[ dutch ] = "Map $(ARG1) bestaat niet";
        Text[ french ] = "Le dossier $(ARG1) n'existe pas.";
        Text[ spanish ] = "No existe la carpeta $(ARG1)";
        Text[ finnish ] = "Folder $(ARG1) does not exist";
        Text[ italian ] = "La cartella $(ARG1) non esiste";
        Text[ danish ] = "Folder $(ARG1) does not exist";
        Text[ swedish ] = "Mappen $(ARG1) existerar inte";
        Text[ polish ] = "Folder $(ARG1) nie istnieje";
        Text[ portuguese_brazilian ] = "Folder $(ARG1) does not exist";
        Text[ japanese ] = "フォルダ $(ARG1) はありません。";
        Text[ korean ] = "$(ARG1) 폴더가 존재하지 않습니다.";
        Text[ chinese_simplified ] = "文件夹 $(ARG1) 不存在。";
        Text[ chinese_traditional ] = "資料夾 $(ARG1) 不存在";
        Text[ turkish ] = "Folder $(ARG1) does not exist";
        Text[ arabic ] = "Folder $(ARG1) does not exist";
        Text[ catalan ] = "Folder $(ARG1) does not exist";
    };

    String (ERRCODE_UUI_WRONGJAVA & ERRCODE_RES_MASK)
    {
        Text = "Die vorhandene Java-Version wird nicht untersttzt";
        Text[english] = "The installed Java version is not supported";
        Text[ english_us ] = "The installed Java version is not supported";
        Text[ portuguese ] = "A verso Java instalada no tem suporte.";
        Text[ russian ] = "  Java  .";
        Text[ greek ] = "The installed Java version is not supported";
        Text[ dutch ] = "De voorhanden zijnde Java versie wordt niet ondersteund";
        Text[ french ] = "La version de Java installe n'est pas supporte.";
        Text[ spanish ] = "No se apoya la versin existente de Java.";
        Text[ finnish ] = "The installed Java version is not supported";
        Text[ italian ] = "La versione di Java installata non  supportata";
        Text[ danish ] = "The installed Java version is not supported";
        Text[ swedish ] = "Den installerade Java-versionen understds inte";
        Text[ polish ] = "Zainstalowana wersja Javy nie jest obsugiwana";
        Text[ portuguese_brazilian ] = "The installed Java version is not supported";
        Text[ japanese ] = "既存する Java バージョンは支援されません。";
        Text[ korean ] = "설치된 Java 버전은 지원되지 않습니다.";
        Text[ chinese_simplified ] = "不支持现有的 Java 版本。";
        Text[ chinese_traditional ] = "不支援現存的 Java 版本 。";
        Text[ turkish ] = "The installed Java version is not supported";
        Text[ arabic ] = "The installed Java version is not supported";
        Text[ catalan ] = "The installed Java version is not supported";
    };

    String (ERRCODE_UUI_WRONGJAVA_VERSION & ERRCODE_RES_MASK)
    {
        Text = "Die vorhandene Java-Version $(ARG1) wird nicht untersttzt";
        Text[english] = "The installed Java version $(ARG1) is not supported";
        Text[ english_us ] = "The installed Java version $(ARG1) is not supported";
        Text[ portuguese ] = "A verso Java instalada $(ARG1) no tem suporte.";
        Text[ russian ] = "  Java $(ARG1)  .";
        Text[ greek ] = "The installed Java version $(ARG1) is not supported";
        Text[ dutch ] = "De voorhanden zijnde Java versie $(ARG1) wordt niet ondersteund";
        Text[ french ] = "La version Java $(ARG1) installe n'est pas supporte.";
        Text[ spanish ] = "No se apoya la versin existente de Java $(ARG1)";
        Text[ finnish ] = "The installed Java version $(ARG1) is not supported";
        Text[ italian ] = "La versione di Java $(ARG1) installata non  supportata";
        Text[ danish ] = "The installed Java version $(ARG1) is not supported";
        Text[ swedish ] = "Den installerade Java-versionen $(ARG1) understds inte";
        Text[ polish ] = "Zainstalowana wersja Javy $(ARG1) nie jest obsugiwana";
        Text[ portuguese_brazilian ] = "The installed Java version $(ARG1) is not supported";
        Text[ japanese ] = "既存する Java バージョン $(ARG1) は支援されません。";
        Text[ korean ] = "설치된 Java 버전 $(ARG1)가 지원되지 않습니다.";
        Text[ chinese_simplified ] = "不支持现有的 Java 版本 $(ARG1)";
        Text[ chinese_traditional ] = "不支援現存的 Java 版本 $(ARG1) 。";
        Text[ turkish ] = "The installed Java version $(ARG1) is not supported";
        Text[ arabic ] = "The installed Java version $(ARG1) is not supported";
        Text[ catalan ] = "The installed Java version $(ARG1) is not supported";
    };
    String (ERRCODE_UUI_WRONGJAVA_MIN & ERRCODE_RES_MASK)
    {
        Text = "Die vorhandene Java-Version wird nicht untersttzt, es wird mindestens Version $(ARG1) bentigt";
        Text[english] = "The installed Java version is not supported, at least versin $(ARG1) is required";
        Text[ english_us ] = "The installed Java version is not supported, at least version $(ARG1) is required";
        Text[ portuguese ] = "A verso Java instalada no tem suporte. Verso mnima necessria: $(ARG1)";
        Text[ russian ] = "  Java  .  ,   $(ARG1).";
        Text[ greek ] = "The installed Java version is not supported, at least versin $(ARG1) is required";
        Text[ dutch ] = "De voorhanden zijnde Java versie wordt niet ondersteund. Minstens versie $(ARG1) wordt benodigd";
        Text[ french ] = "La version de Java installe n'est pas supporte. Version minimum requise : $(ARG1).";
        Text[ spanish ] = "No se apoya la versin existente de Java. Se requiere al menos la versin $(ARG1).";
        Text[ finnish ] = "The installed Java version is not supported, at least versin $(ARG1) is required";
        Text[ italian ] = "La versione di Java installata non  supportata.  necessario installare almeno una versione $(ARG1)";
        Text[ danish ] = "The installed Java version is not supported, at least versin $(ARG1) is required";
        Text[ swedish ] = "Den installerade Java-versionen understds inte, minst version $(ARG1) krvs";
        Text[ polish ] = "Zainstalowana wersja Javy nie jest obsugiwana, wymagana jest co najmniej wersja $(ARG1)";
        Text[ portuguese_brazilian ] = "The installed Java version is not supported, at least versin $(ARG1) is required";
        Text[ japanese ] = "既存する Java バージョンは支援されません。バージョン $(ARG1) 以上のものが必要です。";
        Text[ korean ] = "설치된 Java 버전이 지원되지 않으며 최소한 버전 $(ARG1)가 필요합니다.";
        Text[ chinese_simplified ] = "不支持现有的 Java 版本,起码需要版本 $(ARG1)。";
        Text[ chinese_traditional ] = "不支援現存的 Java 版本,但是至少需要一個 Java 版本 $(ARG1) 。";
        Text[ turkish ] = "The installed Java version is not supported, at least versin $(ARG1) is required";
        Text[ arabic ] = "The installed Java version is not supported, at least versin $(ARG1) is required";
        Text[ catalan ] = "The installed Java version is not supported, at least versin $(ARG1) is required";
    };

    String (ERRCODE_UUI_WRONGJAVA_VERSION_MIN & ERRCODE_RES_MASK)
    {
        Text = "Die vorhandene Java-Version $(ARG1) wird nicht untersttzt, es wird mindestens Version $(ARG2) bentigt";
        Text[english] = "The installed Java version $(ARG1) is not supported, at least versin $(ARG2) is required";
        Text[ english_us ] = "The installed Java version $(ARG1) is not supported, at least version $(ARG2) is required";
        Text[ portuguese ] = "A verso Java instalada $(ARG1) no tem suporte. Verso mnima necessria: $(ARG2)";
        Text[ russian ] = "  Java $(ARG1)  .  ,   $(ARG2).";
        Text[ greek ] = "The installed Java version $(ARG1) is not supported, at least versin $(ARG2) is required";
        Text[ dutch ] = "De voorhanden zijnde Java versie $(ARG1) wordt niet ondersteund. Minstens versie $(ARG2) wordt benodigd";
        Text[ french ] = "La version Java $(ARG1) installe n'est pas supporte. Version minimum requise : $(ARG2).";
        Text[ spanish ] = "No se apoya la versin existente de Java $(ARG1). Se requiere al menos la versin $(ARG2).";
        Text[ finnish ] = "The installed Java version $(ARG1) is not supported, at least versin $(ARG2) is required";
        Text[ italian ] = "La versione di Java $(ARG1) installata non  supportata.  necessario installare almeno una versione $(ARG2)";
        Text[ danish ] = "The installed Java version $(ARG1) is not supported, at least versin $(ARG2) is required";
        Text[ swedish ] = "Den installerade Java-versionen $(ARG1) understds inte, minst version $(ARG2) krvs";
        Text[ polish ] = "Zainstalowana wersja Javy $(ARG1) nie jest obsugiwana, wymagana jest co najmniej wersja $(ARG2)";
        Text[ portuguese_brazilian ] = "The installed Java version $(ARG1) is not supported, at least versin $(ARG2) is required";
        Text[ japanese ] = "既存する Java バージョン $(ARG1) は支援されません。バージョン $(ARG2) 以上は必要です。";
        Text[ korean ] = "설치된 Java 버전 $(ARG1)가 지원되지 않으며 최소한 버전 $(ARG2)가 필요합니다.";
        Text[ chinese_simplified ] = "不支持现有的 Java 版本 $(ARG1),起码需要版本 $(ARG2)。";
        Text[ chinese_traditional ] = "不支援現存的 Java 版本 $(ARG1) ,但是至少需要一個 Java 版本 $(ARG2) 。";
        Text[ turkish ] = "The installed Java version $(ARG1) is not supported, at least versin $(ARG2) is required";
        Text[ arabic ] = "The installed Java version $(ARG1) is not supported, at least versin $(ARG2) is required";
        Text[ catalan ] = "The installed Java version $(ARG1) is not supported, at least versin $(ARG2) is required";
    };

    String (ERRCODE_UUI_BADPARTNERSHIP & ERRCODE_RES_MASK)
    {
        Text = "Die zu der Partnerschaft gespeicherten Daten sind defekt";
        Text[english] = "The data associated with the partnership are corrupted";
        Text[ english_us ] = "The data associated with the partnership is corrupted.";
        Text[ portuguese ] = "Os dados associados  parceria esto danificados.";
        Text[ russian ] = ",   , .";
        Text[ greek ] = "The data associated with the partnership are corrupted";
        Text[ dutch ] = "De bij het partnerschap opgeslagen gegevens zijn defect.";
        Text[ french ] = "Les donnes associes au partenariat sont dfectueuses.";
        Text[ spanish ] = "Los datos guardados correspondientes a la asociacin estn en estado defectuoso.";
        Text[ finnish ] = "The data associated with the partnership are corrupted";
        Text[ italian ] = "I dati relativi alla partnership sono corrotti";
        Text[ danish ] = "The data associated with the partnership are corrupted";
        Text[ swedish ] = "De data som har sparats till partnerskapet r defekta";
        Text[ polish ] = "Zapisane dane dotyczce relacji s uszkodzone";
        Text[ portuguese_brazilian ] = "The data associated with the partnership are corrupted";
        Text[ japanese ] = "パートナシップに保存されたデータが破損しています。";
        Text[ korean ] = "협력 관계로 저장된 데이터가 손상되었습니다.";
        Text[ chinese_simplified ] = "与这个伙伴相关的数据已经损坏。";
        Text[ chinese_traditional ] = "與這個夥伴相關的資料已經損壞。";
        Text[ turkish ] = "The data associated with the partnership are corrupted";
        Text[ arabic ] = "The data associated with the partnership are corrupted";
        Text[ catalan ] = "The data associated with the partnership are corrupted";
    };

    String (ERRCODE_UUI_BADPARTNERSHIP_NAME & ERRCODE_RES_MASK)
    {
        Text = "Die zu der Partnerschaft $(ARG1) gespeicherten Daten sind defekt";
        Text[english] = "The data associated with the partnership $(ARG1) are corrupted";
        Text[ english_us ] = "The data associated with the partnership $(ARG1) is corrupted.";
        Text[ portuguese ] = "Os dados associados  parceria $(ARG1) esto danificados.";
        Text[ russian ] = ",    $(ARG1), ";
        Text[ greek ] = "The data associated with the partnership $(ARG1) are corrupted";
        Text[ dutch ] = "De bij het partnerschap $(ARG1) opgeslagen gegevens zijn defect";
        Text[ french ] = "Les donnes associes au partenariat $(ARG1) sont dfectueuses.";
        Text[ spanish ] = "Los datos guardados correspondientes a la asociacin $(ARG1) estn en estado defectuoso.";
        Text[ finnish ] = "The data associated with the partnership $(ARG1) are corrupted";
        Text[ italian ] = "I dati relativi alla partnership $(ARG1) sono corrotti";
        Text[ danish ] = "The data associated with the partnership $(ARG1) are corrupted";
        Text[ swedish ] = "De data som har sparats till partnerskapet $(ARG1) r defekta";
        Text[ polish ] = "Zapisane dane dotyczce relacji $(ARG1) s uszkodzone";
        Text[ portuguese_brazilian ] = "The data associated with the partnership $(ARG1) are corrupted";
        Text[ japanese ] = "パートナーシップ $(ARG1) に保存されたデータが破損しています。";
        Text[ korean ] = "협력 관계 $(ARG1)와 관련된 데이터가 손상되었습니다.";
        Text[ chinese_simplified ] = "与伙伴 $(ARG1) 相关的数据已经损坏。";
        Text[ chinese_traditional ] = "與這個夥伴 $(ARG1) 相關的資料已經損壞。";
        Text[ turkish ] = "The data associated with the partnership $(ARG1) are corrupted";
        Text[ arabic ] = "The data associated with the partnership $(ARG1) are corrupted";
        Text[ catalan ] = "The data associated with the partnership $(ARG1) are corrupted";
    };

    String (ERRCODE_UUI_IO_NOTREADY_VOLUME & ERRCODE_RES_MASK)
    {
        Text = "Laufwerk $(ARG1) ist nicht bereit";
        Text[english] = "Volume $(ARG1) is not ready";
        Text[ english_us ] = "Volume $(ARG1) is not ready";
        Text[ portuguese ] = "A unidade $(ARG1) no est preparada.";
        Text[ russian ] = " $(ARG1)  ";
        Text[ greek ] = "Volume $(ARG1) is not ready";
        Text[ dutch ] = "Station $(ARG1) is niet bereid";
        Text[ french ] = "L'unit $(ARG1) n'est pas prte.";
        Text[ spanish ] = "El dispositivo $(ARG1) no est preparado";
        Text[ finnish ] = "Volume $(ARG1) is not ready";
        Text[ italian ] = "Il drive $(ARG1) non  pronto";
        Text[ danish ] = "Volume $(ARG1) is not ready";
        Text[ swedish ] = "Enheten $(ARG1) r inte redo";
        Text[ polish ] = "Napd $(ARG1) nie jest gotowy";
        Text[ portuguese_brazilian ] = "Volume $(ARG1) is not ready";
        Text[ japanese ] = "ドライブ $(ARG1) の準備ができていません。";
        Text[ korean ] = "$(ARG1) 드라이브가 준비되지 않았습니다.";
        Text[ chinese_simplified ] = "驱动盘 $(ARG1) 尚未准备就绪";
        Text[ chinese_traditional ] = "驅動盤 $(ARG1) 尚未就緒。";
        Text[ turkish ] = "Volume $(ARG1) is not ready";
        Text[ arabic ] = "Volume $(ARG1) is not ready";
        Text[ catalan ] = "Volume $(ARG1) is not ready";
    };

    String (ERRCODE_UUI_IO_NOTREADY_REMOVABLE & ERRCODE_RES_MASK)
    {
        Text = "$(ARG1) ist nicht bereit; bitte legen Sie ein Speichermedium ein";
        Text[english] = "$(ARG1) is not ready; please insert a storage medium";
        Text[ english_us ] = "$(ARG1) is not ready; please insert a storage medium";
        Text[ portuguese ] = "$(ARG1) no est preparado; introduza outro mdia de armazenamento.";
        Text[ russian ] = "$(ARG1)  .   ";
        Text[ greek ] = "$(ARG1) is not ready; please insert a storage medium";
        Text[ dutch ] = "$(ARG1) is niet bereid; plaats een opslagmedium in het station";
        Text[ french ] = "$(ARG1) n'est pas prt ; insrez un autre mdia.";
        Text[ spanish ] = "$(ARG1) no est preparado; inserte un medio de almacenamiento";
        Text[ finnish ] = "$(ARG1) is not ready; please insert a storage medium";
        Text[ italian ] = "$(ARG1) non  pronto; inserite un supporto";
        Text[ danish ] = "$(ARG1) is not ready; please insert a storage medium";
        Text[ swedish ] = "$(ARG1) r inte redo; lgg in ett lagringsmedium";
        Text[ polish ] = "$(ARG1) nie jest gotowy; naley wsun nonik danych";
        Text[ portuguese_brazilian ] = "$(ARG1) is not ready; please insert a storage medium";
        Text[ japanese ] = "$(ARG1) の準備ができていません。記憶媒体を入れてください。";
        Text[ korean ] = "$(ARG1)가 준비되지 않았습니다. 저장 매체를 넣어주십시오.";
        Text[ chinese_simplified ] = "$(ARG1) 尚未准备就绪;请放入磁盘或光盘。";
        Text[ chinese_traditional ] = "$(ARG1) 尚未就緒。請插入軟盤。";
        Text[ turkish ] = "$(ARG1) is not ready; please insert a storage medium";
        Text[ arabic ] = "$(ARG1) is not ready; please insert a storage medium";
        Text[ catalan ] = "$(ARG1) is not ready; please insert a storage medium";
    };

    String (ERRCODE_UUI_IO_NOTREADY_VOLUME_REMOVABLE & ERRCODE_RES_MASK)
    {
        Text = "Laufwerk $(ARG1) ist nicht bereit; bitte legen Sie ein Speichermedium ein";
        Text[english] = "Volume $(ARG1) is not ready; please insert a storage medium";
        Text[ english_us ] = "Volume $(ARG1) is not ready; please insert a storage medium";
        Text[ portuguese ] = "A unidade $(ARG1) no est preparada; introduza um mdia de armazenamento.";
        Text[ russian ] = " $(ARG1)  .   ";
        Text[ greek ] = "Volume $(ARG1) is not ready; please insert a storage medium";
        Text[ dutch ] = "Station $(ARG1) is niet bereid; plaats een opslagmedium in het station";
        Text[ french ] = "L'unit $(ARG1) n'est pas prte ; insrez un autre mdia.";
        Text[ spanish ] = "La unidad $(ARG1) no est preparada; inserte un medio de almacenamiento";
        Text[ finnish ] = "Volume $(ARG1) is not ready; please insert a storage medium";
        Text[ italian ] = "Il drive $(ARG1) non  pronto; inserite un supporto dati";
        Text[ danish ] = "Volume $(ARG1) is not ready; please insert a storage medium";
        Text[ swedish ] = "Enhet $(ARG1) r inte redo; lgg in ett lagringsmedium";
        Text[ polish ] = "Napd $(ARG1) nie jest gotowy; naley wsun nonik danych";
        Text[ portuguese_brazilian ] = "Volume $(ARG1) is not ready; please insert a storage medium";
        Text[ japanese ] = "ドライブ $(ARG1) の準備ができていません。記憶媒体を入れてください。";
        Text[ korean ] = "볼륨 $(ARG1)가 준비되지 않았습니다. 저장 매체를 넣어주십시오.";
        Text[ chinese_simplified ] = "驱动盘 $(ARG1) 尚未准备就绪。请放入磁盘。";
        Text[ chinese_traditional ] = "驅動盤 $(ARG1) 尚未就緒。請插入軟盤。";
        Text[ turkish ] = "Volume $(ARG1) is not ready; please insert a storage medium";
        Text[ arabic ] = "Volume $(ARG1) is not ready; please insert a storage medium";
        Text[ catalan ] = "Volume $(ARG1) is not ready; please insert a storage medium";
    };

    String (ERRCODE_UUI_WRONGMEDIUM & ERRCODE_RES_MASK)
    {
        Text = "Legen Sie bitte den Datentrger $(ARG1) ein";
        Text[english] = "Please insert disk $(ARG1)";
        Text[ arabic ] = "   $(ARG1)";
        Text[ chinese_simplified ] = "请您放入软盘 $(ARG1)。";
        Text[ chinese_traditional ] = "請放置磁片 $(ARG1) 。";
        Text[ danish ] = "Indst venligst datamediet $(ARG1)";
        Text[ dutch ] = "Plaats datamedium in station $(ARG1)";
        Text[ english_us ] = "Please insert disk $(ARG1)";
        Text[ french ] = "Insrez le mdia $(ARG1).";
        Text[ greek ] = "    $(ARG1)";
        Text[ italian ] = "Inserite il supporto dati $(ARG1)";
        Text[ japanese ] = "媒体 $(ARG1) を入れてください。";
        Text[ korean ] = "데이터 매체 $(ARG1)을(를) 삽입하십시오";
        Text[ polish ] = "Wsu nonik danych $(ARG1)";
        Text[ portuguese ] = "Introduza o media $(ARG1)";
        Text[ portuguese_brazilian ] = "Please insert disk $(ARG1)";
        Text[ russian ] = ", ,   $(ARG1)";
        Text[ spanish ] = "Inserte por favor el medio $(ARG1)";
        Text[ swedish ] = "Lgg in datamediet $(ARG1)";
        Text[ turkish ] = "Please insert disk $(ARG1)";
        Text[ catalan ] = "Inserte por favor el medio $(ARG1)";
        Text[ finnish ] = "Syt tallennusvline $(ARG1)";
    };

    String (ERRCODE_UUI_IO_CANTCREATE_NONAME & ERRCODE_RES_MASK)
    {
        Text = "Das Objekt kann im Verzeichnis $(ARG2) nicht angelegt werden";
        Text[english] = "The object could not be created in directory $(ARG2)";
        Text[ english_us ] = "The object cannot be created in directory $(ARG2)";
        Text[ portuguese ] = "Impossvel criar o objecto no directrio $(ARG2).";
        Text[ russian ] = "    $(ARG2) ";
        Text[ greek ] = "The object could not be created in directory $(ARG2)";
        Text[ dutch ] = "Het object kan niet worden geplaatst in directory $(ARG2)";
        Text[ french ] = "Impossible de crer l'objet dans le rpertoire $(ARG2) !";
        Text[ spanish ] = "No se puede crear el objeto en el directorio $(ARG2).";
        Text[ finnish ] = "The object could not be created in directory $(ARG2)";
        Text[ italian ] = "Impossibile creare l'oggetto nella cartella $(ARG2)";
        Text[ danish ] = "The object could not be created in directory $(ARG2)";
        Text[ swedish ] = "Det gr inte att skapa objektet i katalogen $(ARG2)";
        Text[ polish ] = "Utworzenie obiektu w katalogu $(ARG2) nie jest moliwe";
        Text[ portuguese_brazilian ] = "The object could not be created in directory $(ARG2)";
        Text[ japanese ] = "オブジェクトはフォルダ $(ARG2) に格納できません。";
        Text[ korean ] = "디렉토리 $(ARG2)에 개체을(를) 만들 수 없습니다.";
        Text[ chinese_simplified ] = "无法在目录 $(ARG2) 内新建对象。";
        Text[ chinese_traditional ] = "無法在目錄 $(ARG2) 之下建立物件";
        Text[ turkish ] = "The object could not be created in directory $(ARG2)";
        Text[ arabic ] = "The object could not be created in directory $(ARG2)";
        Text[ catalan ] = "The object could not be created in directory $(ARG2)";
    };
};