summaryrefslogtreecommitdiff
path: root/basic/source/app/ttmsg.src
blob: 69be3768cf145a9bd8cc52211da0691050f61993 (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
/*************************************************************************
 *
 *  $RCSfile: ttmsg.src,v $
 *
 *  $Revision: 1.30 $
 *
 *  last change: $Author: kz $ $Date: 2001-08-24 13:37:58 $
 *
 *  The Contents of this file are made available subject to the terms of
 *  either of the following licenses
 *
 *         - GNU Lesser General Public License Version 2.1
 *         - Sun Industry Standards Source License Version 1.1
 *
 *  Sun Microsystems Inc., October, 2000
 *
 *  GNU Lesser General Public License Version 2.1
 *  =============================================
 *  Copyright 2000 by Sun Microsystems, Inc.
 *  901 San Antonio Road, Palo Alto, CA 94303, USA
 *
 *  This library is free software; you can redistribute it and/or
 *  modify it under the terms of the GNU Lesser General Public
 *  License version 2.1, as published by the Free Software Foundation.
 *
 *  This library is distributed in the hope that it will be useful,
 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 *  Lesser General Public License for more details.
 *
 *  You should have received a copy of the GNU Lesser General Public
 *  License along with this library; if not, write to the Free Software
 *  Foundation, Inc., 59 Temple Place, Suite 330, Boston,
 *  MA  02111-1307  USA
 *
 *
 *  Sun Industry Standards Source License Version 1.1
 *  =================================================
 *  The contents of this file are subject to the Sun Industry Standards
 *  Source License Version 1.1 (the "License"); You may not use this file
 *  except in compliance with the License. You may obtain a copy of the
 *  License at http://www.openoffice.org/license.html.
 *
 *  Software provided under this License is provided on an "AS IS" basis,
 *  WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING,
 *  WITHOUT LIMITATION, WARRANTIES THAT THE SOFTWARE IS FREE OF DEFECTS,
 *  MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE, OR NON-INFRINGING.
 *  See the License for the specific provisions governing your rights and
 *  obligations concerning the Software.
 *
 *  The Initial Developer of the Original Code is: Sun Microsystems, Inc.
 *
 *  Copyright: 2000 by Sun Microsystems, Inc.
 *
 *  All Rights Reserved.
 *
 *  Contributor(s): _______________________________________
 *
 *
 ************************************************************************/
#include "ttmsg.hrc"


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


///////////////////////////////
// Fehlermeldungen, die in das Resultfile gelangen.
// *********************
// ***  !!ACHTUNG!!  ***
// *********************
// Die Nummern drfen sich NIE! ndern,
// da sie in den Resultfiles gespeichert sind, und bei erneutem Anzeigen
// statdessen die entsprechenden neuen oder garkeine Strings angzeigt werden.
///////////////////////////////
String S_NAME_NOT_THERE
{
    Text = "Name nicht vorhanden: #($Arg1)";
    Text[ english_us ] = "Name doesn't exist: #($Arg1)";
    Text[ portuguese ] = "Nome inexistente: #($Arg1)";
    Text[ russian ] = "Name doesn't exist: #($Arg1)";
    Text[ greek ] = "Name doesn't exist: #($Arg1)";
    Text[ dutch ] = "Naam bestaat niet: #($Arg1)";
    Text[ french ] = "Nom inexistant : #($Arg1)";
    Text[ spanish ] = "El nombre no existe: #($Arg1)";
    Text[ italian ] = "Name doesn't exist: #($Arg1)";
    Text[ danish ] = "Name doesn't exist: #($Arg1)";
    Text[ swedish ] = "Name doesn't exist: #($Arg1)";
    Text[ polish ] = "Nazwa nie istnieje: #($Arg1)";
    Text[ portuguese_brazilian ] = "Name nicht vorhanden: #($Arg1)";
    Text[ japanese ] = "この名前はありません: #($Arg1)";
    Text[ korean ] = "이름이 존재하지 않습니다: #($Arg1)";
    Text[ chinese_simplified ] = "名称不存在:#($Arg1)";
    Text[ chinese_traditional ] = "名稱不存在: #($Arg1)";
    Text[ arabic ] = "Name doesn't exist: #($Arg1)";
    Text[ turkish ] = "Name doesn't exist: #($Arg1)";
    Text[ catalan ] = "El nombre no existe: #($Arg1)";
    Text[ finnish ] = "Nime ei ole: ($Arg1)";
};
String S_DOUBLE_NAME
{
    Text = "Name Doppelt: ($Arg1)";
    Text[ english_us ] = "Name double: ($Arg1)";
    Text[ portuguese ] = "Nome duplo: ($Arg1)";
    Text[ russian ] = "Name double: ($Arg1)";
    Text[ greek ] = "Name double: ($Arg1)";
    Text[ dutch ] = "Dubbele naam: ($Arg1)";
    Text[ french ] = "Nome double : ($Arg1)";
    Text[ spanish ] = "Nombre doble: ($Arg1)";
    Text[ italian ] = "Name double: ($Arg1)";
    Text[ danish ] = "Name double: ($Arg1)";
    Text[ swedish ] = "Name double: ($Arg1)";
    Text[ polish ] = "Podwjna nazwa: ($Arg1)";
    Text[ portuguese_brazilian ] = "Name Doppelt: ($Arg1)";
    Text[ japanese ] = "名前が重複しています: ($Arg1)";
    Text[ korean ] = "이름이 중복되었습니다. : ($Arg1)";
    Text[ chinese_simplified ] = "双重名称:($Arg1)";
    Text[ chinese_traditional ] = "名稱雙重:($Arg1)";
    Text[ arabic ] = "Name double: ($Arg1)";
    Text[ turkish ] = "Name double: ($Arg1)";
    Text[ catalan ] = "Nombre doble: ($Arg1)";
    Text[ finnish ] = "Kaksoisnimi: ($Arg1)";
};
String S_READING_FILE
{
    Text = "Einlesen der Dateien";
    Text[ english_us ] = "Reading the files";
    Text[ portuguese ] = "Leitura dos ficheiros";
    Text[ russian ] = "Reading the files";
    Text[ greek ] = "Reading the files";
    Text[ dutch ] = "Bestanden lezen";
    Text[ french ] = "Lecture des fichiers";
    Text[ spanish ] = "Leyendo los archivos";
    Text[ italian ] = "Reading the files";
    Text[ danish ] = "Reading the files";
    Text[ swedish ] = "Reading the files";
    Text[ polish ] = "Czytanie plikw";
    Text[ portuguese_brazilian ] = "Einlesen der Dateien";
    Text[ japanese ] = "ファイルの読み取り";
    Text[ korean ] = "파일 읽기";
    Text[ chinese_simplified ] = "读取文件";
    Text[ chinese_traditional ] = "讀取檔案";
    Text[ arabic ] = "Reading the files";
    Text[ turkish ] = "Reading the files";
    Text[ catalan ] = "Leyendo los archivos";
    Text[ finnish ] = "Luetaan tiedostoja";
};
String S_CANNOT_OPEN_FILE
{
    Text = "Kann Datei nicht ffnen: ($Arg1)";
    Text[ english_us ] = "File cannot be opened: ($Arg1)";
    Text[ portuguese ] = "Impossvel abrir ficheiro: ($Arg1)";
    Text[ russian ] = "File cannot be opened: ($Arg1)";
    Text[ greek ] = "File cannot be opened: ($Arg1)";
    Text[ dutch ] = "Kan bestand niet openen: ($Arg1)";
    Text[ french ] = "Impossible d'ouvrir le fichier : ($Arg1)";
    Text[ spanish ] = "No se puede abrir el archivo: ($Arg1)";
    Text[ italian ] = "File cannot be opened: ($Arg1)";
    Text[ danish ] = "File cannot be opened: ($Arg1)";
    Text[ swedish ] = "File cannot be opened: ($Arg1)";
    Text[ polish ] = "Nie moe otworzy pliku: ($Arg1)";
    Text[ portuguese_brazilian ] = "Kann Datei nicht ?ffnen: ($Arg1)";
    Text[ japanese ] = "ファイルが開けられません: ($Arg1)";
    Text[ korean ] = "파일이 열리지 않습니다: ($Arg1)";
    Text[ chinese_simplified ] = "无法打开文件:($Arg1)";
    Text[ chinese_traditional ] = "無法開啟檔案: ($Arg1)";
    Text[ arabic ] = "File cannot be opened: ($Arg1)";
    Text[ turkish ] = "File cannot be opened: ($Arg1)";
    Text[ catalan ] = "No se puede abrir el archivo: ($Arg1)";
    Text[ finnish ] = "Tiedoston avaaminen ei onnistu: ($Arg1)";
};
String S_INVALID_LINE
{
    Text = "Zeile \"($Arg1)\" Ist ungltig.";
    Text[ english_us ] = "Line \"($Arg1)\" is invalid.";
    Text[ portuguese ] = "A linha \"($Arg1)\" no  vlida.";
    Text[ russian ] = "Line \"($Arg1)\" is invalid.";
    Text[ greek ] = "Line \"($Arg1)\" is invalid.";
    Text[ dutch ] = "Regel \"($Arg1)\" is ongeldig.";
    Text[ french ] = "Ligne \"($Arg1)\" non valable.";
    Text[ spanish ] = "La lnea \"($Arg1)\" no es vlida.";
    Text[ italian ] = "Line \"($Arg1)\" is invalid.";
    Text[ danish ] = "Line \"($Arg1)\" is invalid.";
    Text[ swedish ] = "Line \"($Arg1)\" is invalid.";
    Text[ polish ] = "Wiersz \"($Arg1)\" jest niewany.";
    Text[ portuguese_brazilian ] = "Zeile \"($Arg1)\" Ist ung?tig.";
    Text[ japanese ] = "\"($Arg1)\"行は無効です。";
    Text[ korean ] = "행 \"($Arg1)\" 은 유효하지 않습니다.";
    Text[ chinese_simplified ] = "行($Arg1)无效。";
    Text[ chinese_traditional ] = "行($Arg1)無效。";
    Text[ arabic ] = "Line \"($Arg1)\" is invalid.";
    Text[ turkish ] = "Line \"($Arg1)\" is invalid.";
    Text[ catalan ] = "La lnea \"($Arg1)\" no es vlida.";
    Text[ finnish ] = "Rivi (Arg1) ei ole kelvollinen.";
};
String S_SHORTNAME_UNKNOWN
{
    Text = "Kurzname unbekannt beim Kopieren: ($Arg1)";
    Text[ english_us ] = "Short name unknown during copying: ($Arg1)";
    Text[ portuguese ] = "Abreviatura desconhecida ao copiar: ($Arg1)";
    Text[ russian ] = "Short name unknown during copying: ($Arg1)";
    Text[ greek ] = "Short name unknown during copying: ($Arg1)";
    Text[ dutch ] = "Afkorting onbekend bij kopiren: ($Arg1)";
    Text[ french ] = "Abrviation inconnue lors de la copie : ($Arg1)";
    Text[ spanish ] = "Abreviatura desconocida al copiar: ($Arg1)";
    Text[ italian ] = "Short name unknown during copying: ($Arg1)";
    Text[ danish ] = "Short name unknown during copying: ($Arg1)";
    Text[ swedish ] = "Short name unknown during copying: ($Arg1)";
    Text[ polish ] = "Skrt nazwy nieznany podczas kopiowania: ($Arg1)";
    Text[ portuguese_brazilian ] = "Kurzname Unbekannt beim Kopieren: ($Arg1)";
    Text[ japanese ] = "Short name unknown during copying: ($Arg1)";
    Text[ korean ] = "복사시에 알 수 없는 짧은 이름: ($Arg1)";
    Text[ chinese_simplified ] = "复制时不明的简称:($Arg1)";
    Text[ chinese_traditional ] = "複製時檔案短名稱不明:($Arg1)";
    Text[ arabic ] = "Short name unknown during copying: ($Arg1)";
    Text[ turkish ] = "Short name unknown during copying: ($Arg1)";
    Text[ catalan ] = "Abreviatura desconocida al copiar: ($Arg1)";
    Text[ finnish ] = "Kopioitaessa havaittu tuntematon lyhyt nimi: ($Arg1)";
};
String S_LONGNAME_UNKNOWN
{
    Text = "Langname unbekannt: ($Arg1)";
    Text[ english_us ] = "Long name unknown: ($Arg1)";
    Text[ portuguese ] = "Nome desconhecido: ($Arg1)";
    Text[ russian ] = "Long name unknown: ($Arg1)";
    Text[ greek ] = "   : ($Arg1)";
    Text[ dutch ] = "Naam onbekend: ($Arg1)";
    Text[ french ] = "Nom inconnu : ($Arg1)";
    Text[ spanish ] = "Nombre largo desconocido: ($Arg1)";
    Text[ italian ] = "Long name unknown: ($Arg1)";
    Text[ danish ] = "Short name unknown during copying: ($Arg1)";
    Text[ swedish ] = "Long name unknown: ($Arg1)";
    Text[ polish ] = "Pena nazwa nieznana: ($Arg1)";
    Text[ portuguese_brazilian ] = "Kurzname Unbekannt beim Kopieren: ($Arg1)";
    Text[ japanese ] = "長い名前は不明: ($Arg1)";
    Text[ korean ] = "알 수 없는 긴 이름: ($Arg1)";
    Text[ chinese_simplified ] = "长名称不明:($Arg1)";
    Text[ chinese_traditional ] = "長檔案名稱不明:($Arg1)";
    Text[ arabic ] = "   : ($Arg1)";
    Text[ turkish ] = "Short name unknown during copying: ($Arg1)";
    Text[ catalan ] = "Abreviatura desconocida al copiar: ($Arg1)";
    Text[ finnish ] = "Kopioitaessa havaittu tuntematon lyhyt nimi: ($Arg1)";
};
String S_FIRST_SHORTNAME_REQ_ASTRX
{
    Text = "Erster Kurzname muss mit * beginnen. berspringe.";
    Text[ english_us ] = "First short name must start with * . Ignore.";
    Text[ portuguese ] = "A primeira abreviatura dever comear com *. Ignorar.";
    Text[ russian ] = "First short name must start with * . Leave out.";
    Text[ greek ] = "First short name must start with * . Ignore.";
    Text[ dutch ] = "Eerste afkorting moet beginnen met *. Overslaan.";
    Text[ french ] = "La premire abrviation doit commencer par *. Ignorer.";
    Text[ spanish ] = "La primera abreviatura debe comenzar con *. Ignorar.";
    Text[ italian ] = "First short name must start with * . Ignore.";
    Text[ danish ] = "First short name must start with *. Ignore. ";
    Text[ swedish ] = "First short name must start with * . Ignore.";
    Text[ polish ] = "Pierwszy skrt nazwy musi si zaczyna na * . Omi.";
    Text[ portuguese_brazilian ] = "Erster Kurzname mu? mit * beginnen. ?berspringe.";
    Text[ japanese ] = "First short name must start with * . Ignore.";
    Text[ korean ] = "첫번째 짧은 이름은 반드시 * 로 시작 되어야 합니다.건너뛰기";
    Text[ chinese_simplified ] = "第一个简称必须以 * 开头。省略。";
    Text[ chinese_traditional ] = "第一個短名稱必須以 * 開始。忽略。";
    Text[ arabic ] = "First short name must start with * . Leave out.";
    Text[ turkish ] = "First short name must start with * . Ignore.";
    Text[ catalan ] = "La primera abreviatura debe comenzar con *. Ignorar.";
    Text[ finnish ] = "Ensimmisen lyhyen nimen ensimmisen merkin on oltava *. Ohita.";
};
String S_TIMOUT_WAITING
{
    Text = "Server Timeout beim Warten auf Antwort. Sequenz Nr: ($Arg1)";
    Text[ english_us ] = "Server Timeout while waiting for answer. Sequence No: ($Arg1)";
    Text[ portuguese ] = "Server Timeout ao esperar pela resposta. Sequncia n: ($Arg1)";
    Text[ russian ] = "Server Timeout while waiting for answer. Sequence No: ($Arg1)";
    Text[ greek ] = "Server Timeout while waiting for answer. Sequence No: ($Arg1)";
    Text[ dutch ] = "Server timeout bij het wachten op antwoord. Sequentie nr: ($Arg1)";
    Text[ french ] = "Timeout du serveur lors de l'attente de la rponse. N de squence : ($Arg1)";
    Text[ spanish ] = "Desconexin temporal al esperar por respuesta. Secuencia nm.: ($Arg1)";
    Text[ italian ] = "Server Timeout while waiting for answer. Sequence No: ($Arg1)";
    Text[ danish ] = "Server Timeout while waiting for answer. Sequence No: ($Arg1)";
    Text[ swedish ] = "Server Timeout while waiting for answer. Sequence No: ($Arg1)";
    Text[ polish ] = "Server Timeout podczas czekania na odpowied. Numer sekwencji: ($Arg1)";
    Text[ portuguese_brazilian ] = "Server Timeout beim Warten auf Antwort. Sequenz Nr: ($Arg1)";
    Text[ japanese ] = "応答待ちの際のサーバーのタイムアウト。シーケンスNo.: ($Arg1)";
    Text[ korean ] = "응답을 기다릴 때 서버 타임아웃. 일련 번호: ($Arg1)";
    Text[ chinese_simplified ] = "在等候答复时服务器超时。序列号:($Arg1)";
    Text[ chinese_traditional ] = "伺服器等候答复超時。序列號碼: ($Arg1)";
    Text[ arabic ] = "Server Timeout while waiting for answer. Sequence No: ($Arg1)";
    Text[ turkish ] = "Server Timeout while waiting for answer. Sequence No: ($Arg1)";
    Text[ catalan ] = "Desconexin temporal al esperar por respuesta. Secuencia nm.: ($Arg1)";
    Text[ finnish ] = "Palvelimen aikakatkaisu vastausta odotettaessa. Jrjestysnumero: ($Arg1)";
};
String S_APPLICATION_RESTARTED
{
    Text = "Applikation wurde neu gestartet.";
    Text[ english_us ] = "Application has been restarted.";
    Text[ portuguese ] = "A aplicao foi reiniciada.";
    Text[ russian ] = "Application has been restarted.";
    Text[ greek ] = "Application has been restarted.";
    Text[ dutch ] = "Applicatie werd opnieuw gestart";
    Text[ french ] = "L'application a t redmarre.";
    Text[ spanish ] = "Se reinici la aplicacin.";
    Text[ italian ] = "Application has been restarted.";
    Text[ danish ] = "Application has been restarted.";
    Text[ swedish ] = "Application has been restarted.";
    Text[ polish ] = "Aplikacja zostaa ponownie uruchomiona.";
    Text[ portuguese_brazilian ] = "Applikation wurde neu gestartet.";
    Text[ japanese ] = "アプリケーションは再スタートされました。";
    Text[ korean ] = "응용프로그램이 다시 시작 되었습니다.";
    Text[ chinese_simplified ] = "应用程序已经重新启动。";
    Text[ chinese_traditional ] = "重新啟動了應用程式。";
    Text[ arabic ] = "Application has been restarted.";
    Text[ turkish ] = "Application has been restarted.";
    Text[ catalan ] = "Se reinici la aplicacin.";
    Text[ finnish ] = "Sovellus on kynnistetty uudelleen.";
};
String S_APPLICATION_START_FAILED
{
    Text = "Applikation \"($Arg1)\" kann nicht gestartet werden. ";
    Text[ english_us ] = "Application \"($Arg1)\" cannot be started. ";
    Text[ portuguese ] = "Impossvel iniciar a aplicao \"($Arg1)\". ";
    Text[ russian ] = "Application \"($Arg1)\" cannot be started. ";
    Text[ greek ] = "Application \"($Arg1)\" cannot be started. ";
    Text[ dutch ] = "Applicatie \"($Arg1)\" kan niet worden gestart.  ";
    Text[ french ] = "Impossible de lancer l'application \"($Arg1)\".  ";
    Text[ spanish ] = "No se puede iniciar la aplicacin \"($Arg1)\".  ";
    Text[ italian ] = "Application \"($Arg1)\" cannot be started.  ";
    Text[ danish ] = "Application \"($Arg1)\" cannot be started. ";
    Text[ swedish ] = "Application \"($Arg1)\" cannot be started.  ";
    Text[ polish ] = "Nie mona uruchomi aplikacji \"($Arg1)\". ";
    Text[ portuguese_brazilian ] = "Applikation \"($Arg1)\" kann nicht gestartet werden. ";
    Text[ japanese ] = "アプリケーション \"($Arg1)\" はスタートできません。 ";
    Text[ korean ] = "응용프로그램 \"($Arg1)\"은(는) 시작될 수 없습니다. ";
    Text[ chinese_simplified ] = "无法启动应用程序($Arg1)。 ";
    Text[ chinese_traditional ] = "無法啟動應用程式($Arg1)。";
    Text[ arabic ] = "Application \"($Arg1)\" cannot be started. ";
    Text[ turkish ] = "Application \"($Arg1)\" cannot be started. ";
    Text[ catalan ] = "No se puede iniciar la aplicacin \"($Arg1)\".  ";
    Text[ finnish ] = "Sovelluksen ($Arg1) kynnistys ei onnistu. ";
};
String S_TIMOUT_SENDING
{
    Text = "Server Timeout beim Senden. Sequenz Nr: ($Arg1)";
    Text[ english_us ] = "Server Timeout while sending. Sequence No: ($Arg1)";
    Text[ portuguese ] = "Server Timeout ao enviar. Sequncia n: ($Arg1)";
    Text[ russian ] = "Server Timeout while sending. Sequence No: ($Arg1)";
    Text[ greek ] = "Server Timeout while sending. Sequence No: ($Arg1)";
    Text[ dutch ] = "Server timeout bij het zenden. Sequentie nr: ($Arg1)";
    Text[ french ] = "Timeout du serveur lors de l'envoi. N de squence : ($Arg1)";
    Text[ spanish ] = "Desconexin temporal al enviar. Secuencia nm.: ($Arg1)";
    Text[ italian ] = "Server Timeout while sending. Sequence No: ($Arg1)";
    Text[ danish ] = "Server Timeout while sending. Sequence No: ($Arg1)";
    Text[ swedish ] = "Server Timeout while sending. Sequence No: ($Arg1)";
    Text[ polish ] = "Server Timeout podczas wysyania. Numer sekwencji: ($Arg1)";
    Text[ portuguese_brazilian ] = "Server Timeout beim Senden. Sequenz Nr: ($Arg1)";
    Text[ japanese ] = "送信の際のサーバーのタイムアウト。シーケンスNo.: ($Arg1)";
    Text[ korean ] = "송신시 서버 타임아웃. 일련 번호: ($Arg1)";
    Text[ chinese_simplified ] = "在寄发时服务器超时。序列号:($Arg1)";
    Text[ chinese_traditional ] = "伺服器發送時超時。序列號碼: ($Arg1)";
    Text[ arabic ] = "Server Timeout while sending. Sequence No: ($Arg1)";
    Text[ turkish ] = "Server Timeout while sending. Sequence No: ($Arg1)";
    Text[ catalan ] = "Desconexin temporal al enviar. Secuencia nm.: ($Arg1)";
    Text[ finnish ] = "Palvelimen aikakatkaisu lhetettess. Jrjestysnumero: ($Arg1)";
};
String S_NO_CONNECTION
{
    Text = "Keine Verbindung. Sequenz Nr: ($Arg1)";
    Text[ english_us ] = "No connection. Sequence No: ($Arg1)";
    Text[ portuguese ] = "Sem ligao. Sequncia n: ($Arg1)";
    Text[ russian ] = "No connection. Sequence No: ($Arg1)";
    Text[ greek ] = "No connection. Sequence No: ($Arg1)";
    Text[ dutch ] = "Geen verbinding. Sequentie nr: ($Arg1)";
    Text[ french ] = "Aucune connexion. N de squence : ($Arg1)";
    Text[ spanish ] = "Sin conexin. Secuencia nm.: ($Arg1)";
    Text[ italian ] = "No connection. Sequence No: ($Arg1)";
    Text[ danish ] = "No connection. Sequence No: ($Arg1)";
    Text[ swedish ] = "No connection. Sequence No: ($Arg1)";
    Text[ polish ] = "Brak poczenia. Numer sekwencji: ($Arg1)";
    Text[ portuguese_brazilian ] = "Keine Verbindung. Sequenz Nr: ($Arg1)";
    Text[ japanese ] = "接続なし。シーケンスNo.: ($Arg1)";
    Text[ korean ] = "접속 안됨. 일련번호: ($Arg1)";
    Text[ chinese_simplified ] = "没有连接。序列号:($Arg1)";
    Text[ chinese_traditional ] = "無法連線。序列號碼:($Arg1)";
    Text[ arabic ] = "No connection. Sequence No: ($Arg1)";
    Text[ turkish ] = "No connection. Sequence No: ($Arg1)";
    Text[ catalan ] = "Sin conexin. Secuencia nm.: ($Arg1)";
    Text[ finnish ] = "Ei yhteytt. Jrjestysnumero: ($Arg1)";
};
String S_NO_FILES_FOUND
{
    Text = "Keine ($Arg1) Dateien gefunden";
    Text[ english_us ] = "No ($Arg1) files found";
    Text[ portuguese ] = "No foram encontrados quaisquer ficheiros ($Arg1)";
    Text[ russian ] = "No ($Arg1) files found";
    Text[ greek ] = "No ($Arg1) files found";
    Text[ dutch ] = "Geen ($Arg1) bestanden gevonden";
    Text[ french ] = "Aucun fichier ($Arg1) dtect";
    Text[ spanish ] = "No se encontr ningn archivo ($Arg1)";
    Text[ italian ] = "No ($Arg1) files found";
    Text[ danish ] = "No ($Arg1) files found";
    Text[ swedish ] = "No ($Arg1) files found";
    Text[ polish ] = "Nie znaleziono plikw ($Arg1)";
    Text[ portuguese_brazilian ] = "Keine ($Arg1) Dateien gefunden";
    Text[ japanese ] = "($Arg1)ファイルは見つかりません。";
    Text[ korean ] = "($Arg1) 파일을 찾지 못했습니다.";
    Text[ chinese_simplified ] = "没有找到 ($Arg1) 文件";
    Text[ chinese_traditional ] = "沒有找到 ($Arg1) 檔案";
    Text[ arabic ] = "No ($Arg1) files found";
    Text[ turkish ] = "No ($Arg1) files found";
    Text[ catalan ] = "No se encontr ningn archivo ($Arg1)";
    Text[ finnish ] = "($Arg1) tiedostoja ei lytynyt";
};
String S_ERRORS_DETECTED
{
    Text = "** ($Arg1) Fehler aufgetreten";
    Text[ english_us ] = "** ($Arg1) errors occurred";
    Text[ portuguese ] = "** ($Arg1): erros ocorridos";
    Text[ russian ] = "** ($Arg1) errors occurred";
    Text[ greek ] = "** ($Arg1) errors occurred";
    Text[ dutch ] = "** ($Arg1) fout opgetreden";
    Text[ french ] = "** ($Arg1) : Erreurs survenues";
    Text[ spanish ] = "** Ha ocurrido el error ($Arg1)";
    Text[ italian ] = "** ($Arg1) errors occurred";
    Text[ danish ] = "** ($Arg1) errors occurred";
    Text[ swedish ] = "** ($Arg1) errors occurred";
    Text[ polish ] = "** Wystpio ($Arg1) bdw";
    Text[ portuguese_brazilian ] = "** ($Arg1) Fehler aufgetreten";
    Text[ japanese ] = "** ($Arg1) のエラー発生";
    Text[ korean ] = "** ($Arg1) 오류 발생";
    Text[ chinese_simplified ] = "发生了** ($Arg1) 错误";
    Text[ chinese_traditional ] = "** ($Arg1) 錯誤";
    Text[ arabic ] = "** ($Arg1) errors occurred";
    Text[ turkish ] = "** ($Arg1) errors occurred";
    Text[ catalan ] = "** Ha ocurrido el error ($Arg1)";
    Text[ finnish ] = "** ($Arg1) virhett havaittu";
};
String S_NO_ERRORS_DETECTED
{
    Text = "** Keine Fehler aufgetreten";
    Text[ english_us ] = "** No errors have occurred";
    Text[ portuguese ] = "**No ocorreram erros";
    Text[ russian ] = "** No errors have occurred";
    Text[ greek ] = "** No errors have occurred";
    Text[ dutch ] = "** Geen fouten opgetreden";
    Text[ french ] = "** Aucune erreur n'est survenue";
    Text[ spanish ] = "** No ha ocurrido ningn error";
    Text[ italian ] = "** No errors have occurred";
    Text[ danish ] = "** No errors have occurred";
    Text[ swedish ] = "** No errors have occurred";
    Text[ polish ] = "** Nie wystpiy adne bdy";
    Text[ portuguese_brazilian ] = "** Keine Fehler aufgetreten";
    Text[ japanese ] = "** エラーなし";
    Text[ korean ] = "** 발생된 오류 없음.";
    Text[ chinese_simplified ] = "** 没有出现错误";
    Text[ chinese_traditional ] = "** 沒有出現錯誤";
    Text[ arabic ] = "** No errors have occurred";
    Text[ turkish ] = "** No errors have occurred";
    Text[ catalan ] = "** No ha ocurrido ningn error";
    Text[ finnish ] = "** Virheit ei ilmennyt";
};
String S_WARNINGS_DETECTED
{
    Text = "** ($Arg1) Warnungen aufgetreten";
    Text[ english_us ] = "** ($Arg1) warnings occurred";
    Text[ portuguese ] = "** ($Arg1)advertncias ocorridas";
    Text[ russian ] = "** ($Arg1) warnings occurred";
    Text[ greek ] = "** ($Arg1) warnings occurred";
    Text[ dutch ] = "** ($Arg1) waarschuwingen weergegeven";
    Text[ french ] = "** ($Arg1) : Avertissements survenus";
    Text[ spanish ] = "** Han aparecido las advertencias ($Arg1)";
    Text[ italian ] = "** ($Arg1) warnings occurred";
    Text[ danish ] = "** ($Arg1) warnings occurred";
    Text[ swedish ] = "** ($Arg1) warnings occurred";
    Text[ polish ] = "** Wystpio ($Arg1) ostrzee";
    Text[ portuguese_brazilian ] = "** ($Arg1) Warnungen aufgetreten";
    Text[ japanese ] = "** ($Arg1) の警告発生";
    Text[ korean ] = "** ($Arg1) 경고 발생";
    Text[ chinese_simplified ] = "发生了** ($Arg1) 警告";
    Text[ chinese_traditional ] = "** ($Arg1) 警告";
    Text[ arabic ] = "** ($Arg1) warnings occurred";
    Text[ turkish ] = "** ($Arg1) warnings occurred";
    Text[ catalan ] = "** Han aparecido las advertencias ($Arg1)";
    Text[ finnish ] = "** ($Arg1) varoitusta";
};
String S_NO_WARNINGS_DETECTED
{
    Text = "** Keine Warnungen aufgetreten";
    Text[ english_us ] = "** No warnings have occurred";
    Text[ portuguese ] = "**No ocorreram quaisquer erros";
    Text[ russian ] = "** No warnings have occurred";
    Text[ greek ] = "** No warnings have occurred";
    Text[ dutch ] = "** Geen waarschuwingen weergegeven";
    Text[ french ] = "** Aucun avertissement n'est survenu";
    Text[ spanish ] = "** No han aparecido advertencias";
    Text[ italian ] = "** No warnings have occurred";
    Text[ danish ] = "** No warnings have occurred";
    Text[ swedish ] = "** No warnings have occurred";
    Text[ polish ] = "** Nie wystpiy adne ostrzeenia";
    Text[ portuguese_brazilian ] = "** Keine Warnungen aufgetreten";
    Text[ japanese ] = "** 警告なし";
    Text[ korean ] = "** 발생된 경고 없음.";
    Text[ chinese_simplified ] = "** 没有出现警告";
    Text[ chinese_traditional ] = "** 沒有警告";
    Text[ arabic ] = "** No warnings have occurred";
    Text[ turkish ] = "** No warnings have occurred";
    Text[ catalan ] = "** No han aparecido advertencias";
    Text[ finnish ] = "** Varoituksia ei ilmennyt";
};
String S_INCLUDE_FILE_WARNINGS_DETECTED
{
    Text = "** ($Arg1) Warnungen bei der Initialisierung aufgetreten";
    Text[ english_us ] = "** ($Arg1) warnings occurred during initialization";
    Text[ portuguese ] = "Advertncias ** ($Arg1) durante a inicializao";
    Text[ russian ] = "**    ($Arg1) ";
    Text[ greek ] = "**    ($Arg1)   ";
    Text[ dutch ] = "** ($Arg1) waarschuwingen weergegeven";
    Text[ french ] = "** ($Arg1) : Avertissements durant l'initialisation";
    Text[ spanish ] = "** Han aparecido las advertencias ($Arg1) durante la inicializacin";
    Text[ italian ] = "** ($Arg1) avvertenze durante l'inizializzazione";
    Text[ danish ] = "** ($Arg1) advarsler opstod under initialiseringen";
    Text[ swedish ] = "** ($Arg1) warnings occurred during initialization";
    Text[ polish ] = "** Wystpio ($Arg1) ostrzee podczas inicjalizacji";
    Text[ portuguese_brazilian ] = "** ($Arg1) Warnungen aufgetreten";
    Text[ japanese ] = "** 初期化中に ($Arg1) の警告あり";
    Text[ korean ] = "** ($Arg1) 초기화에서 경고 발생";
    Text[ chinese_simplified ] = "在初始化时发出 ** ($Arg1) 警告";
    Text[ chinese_traditional ] = "** 在初始化時發出警告($Arg1) 警告";
    Text[ arabic ] = "** ($Arg1)     ";
    Text[ turkish ] = "** ($Arg1) warnings occurred";
    Text[ catalan ] = "** Han aparecido las advertencias ($Arg1) durante la inicializacin";
    Text[ finnish ] = "** ($Arg1) varoitusta asennuksessa";
};
String S_NO_INCLUDE_FILE_WARNINGS_DETECTED
{
    Text = "** Keine Warnungen bei der Initialisierung aufgetreten";
    Text[ english_us ] = "** No warnings occurred during initialization";
    Text[ portuguese ] = "**No apareceram quaisquer advertncias durante a inicializao";
    Text[ russian ] = "**     ";
    Text[ greek ] = "**       ";
    Text[ dutch ] = "** Geen waarschuwingen weergegeven";
    Text[ french ] = "** Aucun avertissement durant l'initialisation";
    Text[ spanish ] = "** No han aparecido advertencias durante la inicializacin";
    Text[ italian ] = "** Nessuna avvertenza durante l'inizializzazione";
    Text[ danish ] = "** Ingen advarsler opstod under initialiseringen";
    Text[ swedish ] = "** No warnings occurred during initialization";
    Text[ polish ] = "** Nie wystpiy adne ostrzeenia podczas inicjalizacji";
    Text[ portuguese_brazilian ] = "** Keine Warnungen aufgetreten";
    Text[ japanese ] = "** 初期化中に警告なし";
    Text[ korean ] = "** 초기화에서 경고가 발생하지 않았습니다.";
    Text[ chinese_simplified ] = "** 在初始化时没有出现警告";
    Text[ chinese_traditional ] = "** 在初始化時沒有發出警告";
    Text[ arabic ] = "**      ";
    Text[ turkish ] = "** No warnings have occurred";
    Text[ catalan ] = "** No han aparecido advertencias durante la inicializacin";
    Text[ finnish ] = "** Ei varoituksia asennuksessa";
};
String S_UNKNOWN_SLOT_CONTROL
{
    Text = "Slot/Control unbekannt :\"($Arg1)\"";
    Text[ english_us ] = "Slot/Control unknown :\"($Arg1)\"";
    Text[ portuguese ] = "Slot/Control desconhecido :\"($Arg1)\"";
    Text[ russian ] = "Slot/Control unknown :\"($Arg1)\"";
    Text[ greek ] = "Slot/Control unknown :\"($Arg1)\"";
    Text[ dutch ] = "Slot/Control onbekend :\"($Arg1)\"";
    Text[ french ] = "Slot/Control inconnu : \"($Arg1)\"";
    Text[ spanish ] = "Slot/Control desconocido :\"($Arg1)\"";
    Text[ italian ] = "Slot/Control unknown :\"($Arg1)\"";
    Text[ danish ] = "Slot/Control unknown :\"($Arg1)\"";
    Text[ swedish ] = "Slot/Control unknown :\"($Arg1)\"";
    Text[ polish ] = "Nieznany Slot/Control :\"($Arg1)\"";
    Text[ portuguese_brazilian ] = "Slot/Control unbekannt :\"($Arg1)\"";
    Text[ japanese ] = "スロット/コントロールがわかりません:\"($Arg1)\"";
    Text[ korean ] = "알수 없는 슬롯/컨트롤 :\"($Arg1)\"";
    Text[ chinese_simplified ] = "不明的 Slot/Control:\"($Arg1)\"";
    Text[ chinese_traditional ] = "Slot/Control 不明:($Arg1)";
    Text[ arabic ] = "Slot/Control unknown :\"($Arg1)\"";
    Text[ turkish ] = "Slot/Control unknown :\"($Arg1)\"";
    Text[ catalan ] = "Slot/Control desconocido :\"($Arg1)\"";
    Text[ finnish ] = "Tuntematon paikka/ohjain: ($Arg1)";
};
String S_RETURN_SEQUENCE_MISSMATCH
{
    Text = "Return Stream mit falscher Sequenz: ($Arg1) statt ($Arg2)";
    Text[ english_us ] = "Return Stream has wrong sequence: ($Arg1) instead of ($Arg2)";
    Text[ portuguese ] = "Return Stream com sequncia incorrecta: ($Arg1) em lugar de ($Arg2)";
    Text[ russian ] = "Return Stream has wrong sequence: ($Arg1) instead of ($Arg2)";
    Text[ greek ] = "Return Stream has wrong sequence: ($Arg1) instead of ($Arg2)";
    Text[ dutch ] = "Return Stream met verkeerde sequentie: ($Arg1) in plaats van ($Arg2)";
    Text[ french ] = "Return Stream avec une squence errone : ($Arg1) au lieu de ($Arg2)";
    Text[ spanish ] = "Return Stream con secuencia falsa: ($Arg1) en vez de ($Arg2)";
    Text[ italian ] = "Return Stream has wrong sequence: ($Arg1) instead of ($Arg2)";
    Text[ danish ] = "Return Stream has wrong sequence: ($Arg1) instead of ($Arg2)";
    Text[ swedish ] = "Return Stream has wrong sequence: ($Arg1) instead of ($Arg2)";
    Text[ polish ] = "Return Stream o nieprawidowej sekwencji: ($Arg1) zamiast ($Arg2)";
    Text[ portuguese_brazilian ] = "Return Stream mit falscher Sequenz: ($Arg1) statt ($Arg2)";
    Text[ japanese ] = "リターンストリームのシーケンスが間違っています: ($Arg2) でなく ($Arg1)";
    Text[ korean ] = "일련 번호가 틀린 리턴 스트림: ($Arg2) 대신 ($Arg1)";
    Text[ chinese_simplified ] = "含有错误序列的返回信息流:($Arg1) 代替($Arg2)";
    Text[ chinese_traditional ] = "返回數據流的序列錯誤:($Arg1), 應該是 ($Arg2)";
    Text[ arabic ] = "Return Stream has wrong sequence: ($Arg1) instead of ($Arg2)";
    Text[ turkish ] = "Return Stream has wrong sequence: ($Arg1) instead of ($Arg2)";
    Text[ catalan ] = "Return Stream con secuencia falsa: ($Arg1) en vez de ($Arg2)";
    Text[ finnish ] = "Paluuvirran jrjestys on vr: ($Arg1) eik ($Arg2)";
};
String S_RETURNED_VALUE_ID_MISSMATCH
{
    Text = "Returnwert Empfangen aber andere Id erwartet";
    Text[ english_us ] = "Return value received but different Id expected";
    Text[ portuguese ] = "Recebido o valor Return, mas  necessrio outro ID";
    Text[ russian ] = "Return value received but different Id expected";
    Text[ greek ] = "Return value received but different Id expected";
    Text[ dutch ] = "Retourwaarde ontvangen echter andere Id verwacht";
    Text[ french ] = "Valeur de renvoi reue mais attente d'un autre ID";
    Text[ spanish ] = "Recibido Valor Return, pero se esperaba otro Id";
    Text[ italian ] = "Return value received but different Id expected";
    Text[ danish ] = "Return value received but different Id expected";
    Text[ swedish ] = "Return value received but different Id expected";
    Text[ polish ] = "Odebrano warto return, ale oczekiwane jest inne ID";
    Text[ portuguese_brazilian ] = "Returnwert Empfangen aber andere Id erwartet";
    Text[ japanese ] = "リターン値を受け取りましたが、別のIdが必要です。";
    Text[ korean ] = "반환값 수신함,  하지만 다른 Id를 기대함";
    Text[ chinese_simplified ] = "返回值接收期待的是其它的 Id(标识符)";
    Text[ chinese_traditional ] = "接收到返回值,但是期待是其它 Id";
    Text[ arabic ] = "Return value received but different Id expected";
    Text[ turkish ] = "Return value received but different Id expected";
    Text[ catalan ] = "Recibido Valor Return, pero se esperaba otro Id";
    Text[ finnish ] = "Palautusarvo saatu, mutta tunnus ei ole odotettu";
};
String S_RETURNED_VALUE_NO_RECEIVER
{
    Text = "Returnwert Empfangen aber kein Empfnger definiert";
    Text[ english_us ] = "Return value received but receiver not defined";
    Text[ portuguese ] = "Recebido o valor Return, mas o destinatrio no foi definido";
    Text[ russian ] = "Return value received but receiver not defined";
    Text[ greek ] = "Return value received but receiver not defined";
    Text[ dutch ] = "Retourwaarde ontvangen echter geen ontvanger gedefinieerd";
    Text[ french ] = "Valeur de renvoi reue mais aucun destinataire dfini";
    Text[ spanish ] = "Recibido valor Return sin definicin de destinatario";
    Text[ italian ] = "Return value received but receiver not defined";
    Text[ danish ] = "Return value received but receiver not defined";
    Text[ swedish ] = "Return value received but receiver not defined";
    Text[ polish ] = "Odebrano warto return, ale brak zdefiniowanego odbiorcy";
    Text[ portuguese_brazilian ] = "Returnwert Empfangen aber kein Empf?nger definiert";
    Text[ japanese ] = "リターン値を受け取りましたが、受信者が決定できません。";
    Text[ korean ] = "반환값 수신함, 하지만 수신자가  정의되지 않았음";
    Text[ chinese_simplified ] = "返回值接收没有指定接收者";
    Text[ chinese_traditional ] = "接收到返回值,但是沒有指定接收目標。";
    Text[ arabic ] = "Return value received but receiver not defined";
    Text[ turkish ] = "Return value received but receiver not defined";
    Text[ catalan ] = "Recibido valor Return sin definicin de destinatario";
    Text[ finnish ] = "Palautusarvo saatu, mutta vastaanottajaa ei ole mritetty";
};
String S_UNKNOWN_METHOD
{
    Text = "Unbekannte Methode an Objekt : ($Arg1).($Arg2)";
    Text[ english_us ] = "Unknown method on object :($Arg1).($Arg2)";
    Text[ portuguese ] = "Mtodo desconhecido ($Arg1) para ($Arg2)";
    Text[ russian ] = "Unknown method '($Arg1)' to ($Arg2)";
    Text[ greek ] = "Unknown method on object :($Arg1).($Arg2)";
    Text[ dutch ] = "Onbekende methode aan object: ($Arg1).($Arg2)";
    Text[ french ] = "Mthode inconnue vers l'objet : ($Arg1).($Arg2)";
    Text[ spanish ] = "Mtodo desconocido ($Arg1) a ($Arg2)";
    Text[ italian ] = "Unknown method '($Arg1)' to ($Arg2)";
    Text[ danish ] = "Unknown method on object: ($Arg1).($Arg2)";
    Text[ swedish ] = "Unknown method '($Arg1)' to ($Arg2)";
    Text[ polish ] = "Nieznana metoda do obiektu: ($Arg1).($Arg2)";
    Text[ portuguese_brazilian ] = "Unbekannte Methode an Objekt : ($Arg1).($Arg2)";
    Text[ japanese ] = "Unknown method on object :($Arg1).($Arg2)";
    Text[ korean ] = "개체에 알수 없는 메소드 : ($Arg1).($Arg2)";
    Text[ chinese_simplified ] = "Unknown method on object:($Arg1).($Arg2)";
    Text[ chinese_traditional ] = "物件方式不明: ($Arg1).($Arg2)";
    Text[ arabic ] = "Unknown method '($Arg1)' to ($Arg2)";
    Text[ turkish ] = "Unknown method on object :($Arg1).($Arg2)";
    Text[ catalan ] = "Mtodo desconocido ($Arg1) a ($Arg2)";
    Text[ finnish ] = "Tuntematon menetelm objektissa($Arg1).($Arg2)";
};
/*
String
{
    Text = ;
};
String
{
    Text = ;
};
String
{
    Text = ;
};
String
{
    Text = ;
};
String
{
    Text = ;
};
String
{
    Text = ;
};
String
{
    Text = ;
};
*/