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
|
/*************************************************************************
*
* OpenOffice.org - a multi-platform office productivity suite
*
* $RCSfile: sb.src,v $
*
* $Revision: 1.45 $
*
* last change: $Author: obo $ $Date: 2006-03-27 09:04:45 $
*
* The Contents of this file are made available subject to
* the terms of GNU Lesser General Public License Version 2.1.
*
*
* GNU Lesser General Public License Version 2.1
* =============================================
* Copyright 2005 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
*
************************************************************************/
#define __RSC
#ifndef _ERRCODE_HXX //autogen
#include <tools/errcode.hxx>
#endif
#include "sb.hrc"
#include "sberrors.hxx"
Resource RID_BASIC_START
{
String SbERR_SYNTAX & ERRCODE_RES_MASK
{
Text [ de ] = "Syntaxfehler." ;
Text [ en-US ] = "Syntax error." ;
Text [ x-comment ] = " ";
};
String SbERR_NO_GOSUB & ERRCODE_RES_MASK
{
Text [ de ] = "Return ohne Gosub." ;
Text [ en-US ] = "Return without Gosub." ;
Text [ x-comment ] = " ";
};
String SbERR_REDO_FROM_START & ERRCODE_RES_MASK
{
Text [ de ] = "Inkorrekte Eingabe, bitte wiederholen." ;
Text [ en-US ] = "Incorrect entry; please retry." ;
Text [ x-comment ] = " ";
};
String SbERR_BAD_ARGUMENT & ERRCODE_RES_MASK
{
/* ### ACHTUNG: Neuer Text in Resource? Ungltiger Prozeduraufruf : Ungltiger Prozeduraufruf */
Text [ de ] = "Ungültiger Prozeduraufruf." ;
Text [ en-US ] = "Invalid procedure call." ;
Text [ x-comment ] = " ";
};
String SbERR_MATH_OVERFLOW & ERRCODE_RES_MASK
{
/* ### ACHTUNG: Neuer Text in Resource? berlauf : berlauf */
Text [ de ] = "Überlauf." ;
Text [ en-US ] = "Overflow." ;
Text [ x-comment ] = " ";
};
String SbERR_NO_MEMORY & ERRCODE_RES_MASK
{
/* ### ACHTUNG: Neuer Text in Resource? Nicht gengend Speicher : Nicht gengend Speicher */
Text [ de ] = "Nicht genügend Speicher." ;
Text [ en-US ] = "Not enough memory." ;
Text [ x-comment ] = " ";
};
String SbERR_ALREADY_DIM & ERRCODE_RES_MASK
{
Text [ de ] = "Array bereits dimensioniert." ;
Text [ en-US ] = "Array already dimensioned." ;
Text [ x-comment ] = " ";
};
String SbERR_OUT_OF_RANGE & ERRCODE_RES_MASK
{
/* ### ACHTUNG: Neuer Text in Resource? Index auerhalb des definierten Bereichs : Index auerhalb des definierten Bereichs */
Text [ de ] = "Index außerhalb des definierten Bereichs." ;
Text [ en-US ] = "Index out of defined range." ;
Text [ x-comment ] = " ";
};
String SbERR_DUPLICATE_DEF & ERRCODE_RES_MASK
{
Text [ de ] = "Doppelt vorhandene Definition." ;
Text [ en-US ] = "Duplicate definition." ;
Text [ x-comment ] = " ";
};
String SbERR_ZERODIV & ERRCODE_RES_MASK
{
Text [ de ] = "Division durch Null." ;
Text [ en-US ] = "Division by zero." ;
Text [ x-comment ] = " ";
};
String SbERR_VAR_UNDEFINED & ERRCODE_RES_MASK
{
Text [ de ] = "Variable nicht definiert." ;
Text [ en-US ] = "Variable not defined." ;
Text [ x-comment ] = " ";
};
String SbERR_CONVERSION & ERRCODE_RES_MASK
{
/* ### ACHTUNG: Neuer Text in Resource? Datentypen unvertrglich : Datentypen unvertrglich */
Text [ de ] = "Datentypen unverträglich." ;
Text [ en-US ] = "Data type mismatch." ;
Text [ x-comment ] = " ";
};
String SbERR_BAD_PARAMETER & ERRCODE_RES_MASK
{
/* ### ACHTUNG: Neuer Text in Resource? Ungltiger Parameter : Ungltiger Parameter */
Text [ de ] = "Ungültiger Parameter." ;
Text [ en-US ] = "Invalid parameter." ;
Text [ x-comment ] = " ";
};
String SbERR_USER_ABORT & ERRCODE_RES_MASK
{
Text [ de ] = "Der Ablauf wurde durch den Benutzer unterbrochen." ;
Text [ en-US ] = "Process interrupted by user." ;
Text [ x-comment ] = " ";
};
String SbERR_BAD_RESUME & ERRCODE_RES_MASK
{
Text [ de ] = "Resume ohne Fehler." ;
Text [ en-US ] = "Resume without error." ;
Text [ x-comment ] = " ";
};
String SbERR_STACK_OVERFLOW & ERRCODE_RES_MASK
{
/* ### ACHTUNG: Neuer Text in Resource? Nicht gengend Stapelspeicher : Nicht gengend Stapelspeicher */
Text [ de ] = "Nicht genügend Stapelspeicher." ;
Text [ en-US ] = "Not enough stack memory." ;
Text [ x-comment ] = " ";
};
String SbERR_PROC_UNDEFINED & ERRCODE_RES_MASK
{
Text [ de ] = "Sub- oder Function-Prozedur nicht definiert." ;
Text [ en-US ] = "Sub-procedure or function procedure not defined." ;
Text [ x-comment ] = " ";
};
String SbERR_BAD_DLL_LOAD & ERRCODE_RES_MASK
{
Text [ de ] = "Fehler beim Laden einer DLL-Datei." ;
Text [ en-US ] = "Error loading DLL file." ;
Text [ x-comment ] = " ";
};
String SbERR_BAD_DLL_CALL & ERRCODE_RES_MASK
{
Text [ de ] = "Falsche DLL-Aufrufkonvention." ;
Text [ en-US ] = "Wrong DLL call convention." ;
Text [ x-comment ] = " ";
};
String SbERR_INTERNAL_ERROR & ERRCODE_RES_MASK
{
Text [ de ] = "Interner Fehler $(ARG1)." ;
Text [ en-US ] = "Internal error $(ARG1)." ;
Text [ x-comment ] = " ";
};
String SbERR_BAD_CHANNEL & ERRCODE_RES_MASK
{
Text [ de ] = "Dateiname oder -nummer falsch." ;
Text [ en-US ] = "Invalid file name or file number." ;
Text [ x-comment ] = " ";
};
String SbERR_FILE_NOT_FOUND & ERRCODE_RES_MASK
{
Text [ de ] = "Datei nicht gefunden." ;
Text [ en-US ] = "File not found." ;
Text [ x-comment ] = " ";
};
String SbERR_BAD_FILE_MODE & ERRCODE_RES_MASK
{
Text [ de ] = "Dateimodus falsch." ;
Text [ en-US ] = "Incorrect file mode." ;
Text [ x-comment ] = " ";
};
String SbERR_FILE_ALREADY_OPEN & ERRCODE_RES_MASK
{
/* ### ACHTUNG: Neuer Text in Resource? Datei bereits geffnet : Datei bereits geffnet */
Text [ de ] = "Datei bereits geöffnet." ;
Text [ en-US ] = "File already open." ;
Text [ x-comment ] = " ";
};
String SbERR_IO_ERROR & ERRCODE_RES_MASK
{
/* ### ACHTUNG: Neuer Text in Resource? Gerte-E/A-Fehler : Gerte-E/A-Fehler */
Text [ de ] = "Geräte-E/A-Fehler." ;
Text [ en-US ] = "Device I/O error." ;
Text [ x-comment ] = " ";
};
String SbERR_FILE_EXISTS & ERRCODE_RES_MASK
{
Text [ de ] = "Datei bereits vorhanden." ;
Text [ en-US ] = "File already exists." ;
Text [ x-comment ] = " ";
};
String SbERR_BAD_RECORD_LENGTH & ERRCODE_RES_MASK
{
/* ### ACHTUNG: Neuer Text in Resource? Falsche Datensatzlnge : Falsche Datensatzlnge */
Text [ de ] = "Falsche Datensatzlänge." ;
Text [ en-US ] = "Incorrect record length." ;
Text [ x-comment ] = " ";
};
String SbERR_DISK_FULL & ERRCODE_RES_MASK
{
Text [ de ] = "Diskette/Festplatte voll." ;
Text [ en-US ] = "Disk or hard drive full." ;
Text [ x-comment ] = " ";
};
String SbERR_READ_PAST_EOF & ERRCODE_RES_MASK
{
/* ### ACHTUNG: Neuer Text in Resource? Lesen ber das Ende der Datei hinaus : Lesen ber das Ende der Datei hinaus */
Text [ de ] = "Lesen über das Ende der Datei hinaus." ;
Text [ en-US ] = "Reading exceeds EOF." ;
Text [ x-comment ] = " ";
};
String SbERR_BAD_RECORD_NUMBER & ERRCODE_RES_MASK
{
Text [ de ] = "Datensatznummer falsch." ;
Text [ en-US ] = "Incorrect record number." ;
Text [ x-comment ] = " ";
};
String SbERR_TOO_MANY_FILES & ERRCODE_RES_MASK
{
Text [ de ] = "Zu viele Dateien." ;
Text [ en-US ] = "Too many files." ;
Text [ x-comment ] = " ";
};
String SbERR_NO_DEVICE & ERRCODE_RES_MASK
{
/* ### ACHTUNG: Neuer Text in Resource? Gert nicht verfgbar : Gert nicht verfgbar */
Text [ de ] = "Gerät nicht verfügbar." ;
Text [ en-US ] = "Device not available." ;
Text [ x-comment ] = " ";
};
String SbERR_ACCESS_DENIED & ERRCODE_RES_MASK
{
Text [ de ] = "Zugriff verweigert." ;
Text [ en-US ] = "Access denied." ;
Text [ x-comment ] = " ";
};
String SbERR_NOT_READY & ERRCODE_RES_MASK
{
Text [ de ] = "Diskette nicht bereit." ;
Text [ en-US ] = "Disk not ready." ;
Text [ x-comment ] = " ";
};
String SbERR_NOT_IMPLEMENTED & ERRCODE_RES_MASK
{
Text [ de ] = "Nicht implementiert." ;
Text [ en-US ] = "Not implemented." ;
Text [ x-comment ] = " ";
};
String SbERR_DIFFERENT_DRIVE & ERRCODE_RES_MASK
{
/* ### ACHTUNG: Neuer Text in Resource? Umbenennen auf verschiedenen Laufwerken nicht mglich : Umbenennen auf verschiedenen Laufwerken nicht mglich */
Text [ de ] = "Umbenennen auf verschiedenen Laufwerken nicht möglich." ;
Text [ en-US ] = "Renaming on different drives impossible." ;
Text [ x-comment ] = " ";
};
String SbERR_ACCESS_ERROR & ERRCODE_RES_MASK
{
Text [ de ] = "Pfad/Datei-Zugriffsfehler." ;
Text [ en-US ] = "Path/File access error." ;
Text [ x-comment ] = " ";
};
String SbERR_PATH_NOT_FOUND & ERRCODE_RES_MASK
{
Text [ de ] = "Pfad nicht gefunden." ;
Text [ en-US ] = "Path not found." ;
Text [ x-comment ] = " ";
};
String SbERR_NO_OBJECT & ERRCODE_RES_MASK
{
Text [ de ] = "Objektvariable nicht belegt." ;
Text [ en-US ] = "Object variable not set." ;
Text [ x-comment ] = " ";
};
String SbERR_BAD_PATTERN & ERRCODE_RES_MASK
{
/* ### ACHTUNG: Neuer Text in Resource? Zeichenfolgenmuster unzulssig : Zeichenfolgenmuster unzulssig */
Text [ de ] = "Zeichenfolgenmuster unzulässig." ;
Text [ en-US ] = "Invalid string pattern." ;
Text [ x-comment ] = " ";
};
String SBERR_IS_NULL & ERRCODE_RES_MASK
{
/* ### ACHTUNG: Neuer Text in Resource? Verwendung von Null unzulssig : Verwendung von Null unzulssig */
Text [ de ] = "Verwendung von Null unzulässig." ;
Text [ en-US ] = "Use of zero not permitted." ;
Text [ x-comment ] = " ";
};
String SbERR_DDE_ERROR & ERRCODE_RES_MASK
{
Text [ de ] = "DDE-Fehler." ;
Text [ en-US ] = "DDE Error." ;
Text [ x-comment ] = " ";
};
String SbERR_DDE_WAITINGACK & ERRCODE_RES_MASK
{
Text [ de ] = "Warten auf Antwort in DDE-Verbindung." ;
Text [ en-US ] = "Awaiting response to DDE connection." ;
Text [ x-comment ] = " ";
};
String SbERR_DDE_OUTOFCHANNELS & ERRCODE_RES_MASK
{
/* ### ACHTUNG: Neuer Text in Resource? Keine freien DDE-Kanle : Keine freien DDE-Kanle */
Text [ de ] = "Keine freien DDE-Kanäle." ;
Text [ en-US ] = "No DDE channels available." ;
Text [ x-comment ] = " ";
};
String SbERR_DDE_NO_RESPONSE & ERRCODE_RES_MASK
{
Text [ de ] = "Keine Applikation anwortet auf DDE-Verbindungswunsch." ;
Text [ en-US ] = "No application responded to DDE connect initiation." ;
Text [ x-comment ] = " ";
};
String SbERR_DDE_MULT_RESPONSES & ERRCODE_RES_MASK
{
Text [ de ] = "Zu viele Applikationen antworten auf DDE-Verbindungswunsch." ;
Text [ en-US ] = "Too many applications responded to DDE connect initiation." ;
Text [ x-comment ] = " ";
};
String SbERR_DDE_CHANNEL_LOCKED & ERRCODE_RES_MASK
{
Text [ de ] = "DDE-Kanal gesperrt." ;
Text [ en-US ] = "DDE channel locked." ;
Text [ x-comment ] = " ";
};
String SbERR_DDE_NOTPROCESSED & ERRCODE_RES_MASK
{
/* ### ACHTUNG: Neuer Text in Resource? Fremdapplikation kann DDE-Operation nicht ausfhren : Fremdapplikation kann DDE-Operation nicht ausfhren */
Text [ de ] = "Fremdapplikation kann DDE-Operation nicht ausführen." ;
Text [ en-US ] = "External application cannot execute DDE operation." ;
Text [ x-comment ] = " ";
};
String SbERR_DDE_TIMEOUT & ERRCODE_RES_MASK
{
/* ### ACHTUNG: Neuer Text in Resource? Zeitberschreitung whrend des Wartens auf DDE-Antwort : Zeitberschreitung whrend des Wartens auf DDE-Antwort */
Text [ de ] = "Zeitüberschreitung während des Wartens auf DDE-Antwort." ;
Text [ en-US ] = "Timeout while waiting for DDE response." ;
Text [ x-comment ] = " ";
};
String SbERR_DDE_USER_INTERRUPT & ERRCODE_RES_MASK
{
/* ### ACHTUNG: Neuer Text in Resource? Benutzer drckte ESCAPE whrend der DDE-Operation : Benutzer drckte ESCAPE whrend der DDE-Operation */
Text [ de ] = "Benutzer drückte ESCAPE während der DDE-Operation." ;
Text [ en-US ] = "User pressed ESCAPE during DDE operation." ;
Text [ x-comment ] = " ";
};
String SbERR_DDE_BUSY & ERRCODE_RES_MASK
{
Text [ de ] = "Fremdapplikation ist nicht bereit." ;
Text [ en-US ] = "External application busy." ;
Text [ x-comment ] = " ";
};
String SbERR_DDE_NO_DATA & ERRCODE_RES_MASK
{
Text [ de ] = "DDE-Operation ohne Daten." ;
Text [ en-US ] = "DDE operation without data." ;
Text [ x-comment ] = " ";
};
String SbERR_DDE_WRONG_DATA_FORMAT & ERRCODE_RES_MASK
{
Text [ de ] = "Daten sind im falschen Format." ;
Text [ en-US ] = "Data are in wrong format." ;
Text [ x-comment ] = " ";
};
String SbERR_DDE_PARTNER_QUIT & ERRCODE_RES_MASK
{
Text [ de ] = "Fremdapplikation ist beendet worden." ;
Text [ en-US ] = "External application has been terminated." ;
Text [ x-comment ] = " ";
};
String SbERR_DDE_CONV_CLOSED & ERRCODE_RES_MASK
{
/* ### ACHTUNG: Neuer Text in Resource? DDE-Verbindung ist unterbrochen oder gendert worden : DDE-Verbindung ist unterbrochen oder gendert worden */
Text [ de ] = "DDE-Verbindung ist unterbrochen oder geändert worden." ;
Text [ en-US ] = "DDE connection interrupted or modified." ;
Text [ x-comment ] = " ";
};
String SbERR_DDE_NO_CHANNEL & ERRCODE_RES_MASK
{
Text [ de ] = "DDE-Methode ohne offenen DDE-Kanal gerufen." ;
Text [ en-US ] = "DDE method invoked with no channel open." ;
Text [ x-comment ] = " ";
};
String SbERR_DDE_INVALID_LINK & ERRCODE_RES_MASK
{
/* ### ACHTUNG: Neuer Text in Resource? Ungltiges DDE-Linkformat : Ungltiges DDE-Linkformat */
Text [ de ] = "Ungültiges DDE-Linkformat." ;
Text [ en-US ] = "Invalid DDE link format." ;
Text [ x-comment ] = " ";
};
String SbERR_DDE_QUEUE_OVERFLOW & ERRCODE_RES_MASK
{
Text [ de ] = "DDE-Message ist verlorengegangen." ;
Text [ en-US ] = "DDE message has been lost." ;
Text [ x-comment ] = " ";
};
String SbERR_DDE_LINK_ALREADY_EST & ERRCODE_RES_MASK
{
/* ### ACHTUNG: Neuer Text in Resource? Paste Link bereits durchgefhrt : Paste Link bereits durchgefhrt */
Text [ de ] = "Paste Link bereits durchgeführt." ;
Text [ en-US ] = "Paste link already performed." ;
Text [ x-comment ] = " ";
};
String SbERR_DDE_LINK_INV_TOPIC & ERRCODE_RES_MASK
{
/* ### ACHTUNG: Neuer Text in Resource? LinkMode kann wegen ungltigen Link-Topics nicht gesetzt werden : LinkMode kann wegen ungltigen Link-Topics nicht gesetzt werden */
Text [ de ] = "LinkMode kann wegen ungültigen Link-Topics nicht gesetzt werden." ;
Text [ en-US ] = "Link mode cannot be set due to invalid link topic." ;
Text [ x-comment ] = " ";
};
String SbERR_DDE_DLL_NOT_FOUND & ERRCODE_RES_MASK
{
/* ### ACHTUNG: Neuer Text in Resource? Fr DDE wird DDEML.DLL bentigt : Fr DDE wird DDEML.DLL bentigt */
Text [ de ] = "Für DDE wird DDEML.DLL benötigt." ;
Text [ en-US ] = "DDE requires the DDEML.DLL file." ;
Text [ x-comment ] = " ";
};
String SbERR_CANNOT_LOAD & ERRCODE_RES_MASK
{
/* ### ACHTUNG: Neuer Text in Resource? Das Modul kann nicht geladen werden, ungltiges Format : Das Modul kann nicht geladen werden, ungltiges Format */
Text [ de ] = "Das Modul kann nicht geladen werden, ungültiges Format." ;
Text [ en-US ] = "Module cannot be loaded; invalid format." ;
Text [ x-comment ] = " ";
};
String SbERR_BAD_INDEX & ERRCODE_RES_MASK
{
/* ### ACHTUNG: Neuer Text in Resource? Ungltiger Objektindex : Ungltiger Objektindex */
Text [ de ] = "Ungültiger Objektindex." ;
Text [ en-US ] = "Invalid object index." ;
Text [ x-comment ] = " ";
};
String SbERR_NO_ACTIVE_OBJECT & ERRCODE_RES_MASK
{
/* ### ACHTUNG: Neuer Text in Resource? Objekt ist nicht verfgbar : Objekt ist nicht verfgbar */
Text [ de ] = "Objekt ist nicht verfügbar." ;
Text [ en-US ] = "Object is not available." ;
Text [ x-comment ] = " ";
};
String SbERR_BAD_PROP_VALUE & ERRCODE_RES_MASK
{
/* ### ACHTUNG: Neuer Text in Resource? Falscher Wert fr Eigenschaft : Falscher Wert fr Eigenschaft */
Text [ de ] = "Falscher Wert für Eigenschaft." ;
Text [ en-US ] = "Incorrect property value." ;
Text [ x-comment ] = " ";
};
String SbERR_PROP_READONLY & ERRCODE_RES_MASK
{
/* ### ACHTUNG: Neuer Text in Resource? Eigenschaft ist schreibgeschtzt : Eigenschaft ist schreibgeschtzt */
Text [ de ] = "Eigenschaft ist schreibgeschützt." ;
Text [ en-US ] = "This property is read-only." ;
Text [ x-comment ] = " ";
};
String SbERR_PROP_WRITEONLY & ERRCODE_RES_MASK
{
/* ### ACHTUNG: Neuer Text in Resource? Eigenschaft ist lesegeschtzt : Eigenschaft ist lesegeschtzt */
Text [ de ] = "Eigenschaft ist lesegeschützt." ;
Text [ en-US ] = "This property is write only." ;
Text [ x-comment ] = " ";
};
String SbERR_INVALID_OBJECT & ERRCODE_RES_MASK
{
/* ### ACHTUNG: Neuer Text in Resource? Ungltige Objektreferenz : Ungltige Objektreferenz */
Text [ de ] = "Ungültige Objektreferenz." ;
Text [ en-US ] = "Invalid object reference." ;
Text [ x-comment ] = " ";
};
String SbERR_NO_METHOD & ERRCODE_RES_MASK
{
Text [ de ] = "Eigenschaft oder Methode nicht gefunden." ;
Text [ en-US ] = "Property or method not found." ;
Text [ x-comment ] = " ";
};
String SbERR_NEEDS_OBJECT & ERRCODE_RES_MASK
{
Text [ de ] = "Objekt erforderlich." ;
Text [ en-US ] = "Object required." ;
Text [ x-comment ] = " ";
};
String SbERR_INVALID_USAGE_OBJECT & ERRCODE_RES_MASK
{
Text [ de ] = "Falsche Verwendung eines Objekts." ;
Text [ en-US ] = "Invalid use of an object." ;
Text [ x-comment ] = " ";
};
String SbERR_NO_OLE & ERRCODE_RES_MASK
{
/* ### ACHTUNG: Neuer Text in Resource? OLE-Automatisierung wird von diesem Objekt nicht untersttzt : OLE-Automatisierung wird von diesem Objekt nicht untersttzt */
Text [ de ] = "OLE-Automatisierung wird von diesem Objekt nicht unterstützt." ;
Text [ en-US ] = "OLE Automation is not supported by this object." ;
Text [ x-comment ] = " ";
};
String SbERR_BAD_METHOD & ERRCODE_RES_MASK
{
/* ### ACHTUNG: Neuer Text in Resource? Objekt untersttzt diese Eigenschaft oder Methode nicht : Objekt untersttzt diese Eigenschaft oder Methode nicht */
Text [ de ] = "Objekt unterstützt diese Eigenschaft oder Methode nicht." ;
Text [ en-US ] = "This property or method is not supported by the object." ;
Text [ x-comment ] = " ";
};
String SbERR_OLE_ERROR & ERRCODE_RES_MASK
{
Text [ de ] = "Fehler bei OLE-Automatisierung." ;
Text [ en-US ] = "OLE Automation Error." ;
Text [ x-comment ] = " ";
};
String SbERR_BAD_ACTION & ERRCODE_RES_MASK
{
/* ### ACHTUNG: Neuer Text in Resource? Diese Aktion wird vom angegebenen Objekt nicht untersttzt : Diese Aktion wird vom angegebenen Objekt nicht untersttzt */
Text [ de ] = "Diese Aktion wird vom angegebenen Objekt nicht unterstützt." ;
Text [ en-US ] = "This action is not supported by given object." ;
Text [ x-comment ] = " ";
};
String SbERR_NO_NAMED_ARGS & ERRCODE_RES_MASK
{
/* ### ACHTUNG: Neuer Text in Resource? Benannte Argumente werden vom angegebenen Objekt nicht untersttzt : Benannte Argumente werden vom angegebenen Objekt nicht untersttzt */
Text [ de ] = "Benannte Argumente werden vom angegebenen Objekt nicht unterstützt." ;
Text [ en-US ] = "Named arguments are not supported by given object." ;
Text [ x-comment ] = " ";
};
String SbERR_BAD_LOCALE & ERRCODE_RES_MASK
{
/* ### ACHTUNG: Neuer Text in Resource? Das aktuelle Gebietsschema wird vom angegebenen Objekt nicht untersttzt : Das aktuelle Gebietsschema wird vom angegebenen Objekt nicht untersttzt */
Text [ de ] = "Das aktuelle Gebietsschema wird vom angegebenen Objekt nicht unterstützt." ;
Text [ en-US ] = "The current locale setting is not supported by the given object." ;
Text [ x-comment ] = " ";
};
String SbERR_NAMED_NOT_FOUND & ERRCODE_RES_MASK
{
Text [ de ] = "Benanntes Argument nicht gefunden." ;
Text [ en-US ] = "Named argument not found." ;
Text [ x-comment ] = " ";
};
String SbERR_NOT_OPTIONAL & ERRCODE_RES_MASK
{
Text [ de ] = "Argument ist nicht optional." ;
Text [ en-US ] = "Argument is not optional." ;
Text [ x-comment ] = " ";
};
String SbERR_WRONG_ARGS & ERRCODE_RES_MASK
{
Text [ de ] = "Falsche Anzahl an Argumenten." ;
Text [ en-US ] = "Invalid number of arguments." ;
Text [ x-comment ] = " ";
};
String SbERR_NOT_A_COLL & ERRCODE_RES_MASK
{
Text [ de ] = "Objekt ist keine Auflistung." ;
Text [ en-US ] = "Object is not a list." ;
Text [ x-comment ] = " ";
};
String SbERR_BAD_ORDINAL & ERRCODE_RES_MASK
{
/* ### ACHTUNG: Neuer Text in Resource? Ordnungszahl ungltig : Ordnungszahl ungltig */
Text [ de ] = "Ordnungszahl ungültig." ;
Text [ en-US ] = "Invalid ordinal number." ;
Text [ x-comment ] = " ";
};
String SbERR_DLLPROC_NOT_FOUND & ERRCODE_RES_MASK
{
Text [ de ] = "Angegebene DLL-Funktion nicht gefunden." ;
Text [ en-US ] = "Specified DLL function not found." ;
Text [ x-comment ] = " ";
};
String SbERR_BAD_CLIPBD_FORMAT & ERRCODE_RES_MASK
{
/* ### ACHTUNG: Neuer Text in Resource? Ungltiges Clipboard-Format : Ungltiges Clipboard-Format */
Text [ de ] = "Ungültiges Zwischenablagen-Format." ;
Text [ en-US ] = "Invalid clipboard format." ;
Text [ x-comment ] = " ";
};
String SbERR_PROPERTY_NOT_FOUND & ERRCODE_RES_MASK
{
Text [ de ] = "Objekt hat diese Eigenschaft nicht." ;
Text [ en-US ] = "Object does not have this property." ;
Text [ x-comment ] = " ";
};
String SbERR_METHOD_NOT_FOUND & ERRCODE_RES_MASK
{
Text [ de ] = "Objekt hat diese Methode nicht." ;
Text [ en-US ] = "Object does not have this method." ;
Text [ x-comment ] = " ";
};
String SbERR_ARG_MISSING & ERRCODE_RES_MASK
{
Text [ de ] = "Erforderliches Argument fehlt." ;
Text [ en-US ] = "Required argument lacking." ;
Text [ x-comment ] = " ";
};
String SbERR_BAD_NUMBER_OF_ARGS & ERRCODE_RES_MASK
{
/* ### ACHTUNG: Neuer Text in Resource? Ungltige Anzahl von Argumenten : Ungltige Anzahl von Argumenten */
Text [ de ] = "Ungültige Anzahl von Argumenten." ;
Text [ en-US ] = "Invalid number of arguments." ;
Text [ x-comment ] = " ";
};
String SbERR_METHOD_FAILED & ERRCODE_RES_MASK
{
/* ### ACHTUNG: Neuer Text in Resource? Fehler in Ausfhrung einer Methode : Fehler in Ausfhrung einer Methode */
Text [ de ] = "Fehler in Ausführung einer Methode." ;
Text [ en-US ] = "Error executing a method." ;
Text [ x-comment ] = " ";
};
String SbERR_SETPROP_FAILED & ERRCODE_RES_MASK
{
Text [ de ] = "Eigenschaft konnte nicht festgelegt werden." ;
Text [ en-US ] = "Unable to set property." ;
Text [ x-comment ] = " ";
};
String SbERR_GETPROP_FAILED & ERRCODE_RES_MASK
{
Text [ de ] = "Eigenschaft konnte nicht ermittelt werden." ;
Text [ en-US ] = "Unable to determine property." ;
Text [ x-comment ] = " ";
};
// Compiler errors. These are not runtime errors.
String SbERR_UNEXPECTED & ERRCODE_RES_MASK
{
Text [ de ] = "Unerwartetes Symbol: $(ARG1)." ;
Text [ en-US ] = "Unexpected symbol: $(ARG1)." ;
Text [ x-comment ] = " ";
};
String SbERR_EXPECTED & ERRCODE_RES_MASK
{
Text [ de ] = "Erwartet: $(ARG1)." ;
Text [ en-US ] = "Expected: $(ARG1)." ;
Text [ x-comment ] = " ";
};
String SbERR_SYMBOL_EXPECTED & ERRCODE_RES_MASK
{
Text [ de ] = "Symbol erwartet." ;
Text [ en-US ] = "Symbol expected." ;
Text [ x-comment ] = " ";
};
String SbERR_VAR_EXPECTED & ERRCODE_RES_MASK
{
Text [ de ] = "Variable erwartet." ;
Text [ en-US ] = "Variable expected." ;
Text [ x-comment ] = " ";
};
String SbERR_LABEL_EXPECTED & ERRCODE_RES_MASK
{
Text [ de ] = "Label erwartet." ;
Text [ en-US ] = "Label expected." ;
Text [ x-comment ] = " ";
};
String SbERR_LVALUE_EXPECTED & ERRCODE_RES_MASK
{
Text [ de ] = "Wert kann nicht zugewiesen werden." ;
Text [ en-US ] = "Value cannot be applied." ;
Text [ x-comment ] = " ";
};
String SbERR_VAR_DEFINED & ERRCODE_RES_MASK
{
Text [ de ] = "Variable $(ARG1) bereits definiert." ;
Text [ en-US ] = "Variable $(ARG1) already defined." ;
Text [ x-comment ] = " ";
};
String SbERR_PROC_DEFINED & ERRCODE_RES_MASK
{
Text [ de ] = "Sub- oder Function-Prozedur $(ARG1) bereits definiert." ;
Text [ en-US ] = "Sub procedure or function procedure $(ARG1) already defined." ;
Text [ x-comment ] = " ";
};
String SbERR_LABEL_DEFINED & ERRCODE_RES_MASK
{
Text [ de ] = "Label $(ARG1) bereits definiert." ;
Text [ en-US ] = "Label $(ARG1) already defined." ;
Text [ x-comment ] = " ";
};
String SbERR_UNDEF_VAR & ERRCODE_RES_MASK
{
Text [ de ] = "Variable $(ARG1) nicht gefunden." ;
Text [ en-US ] = "Variable $(ARG1) not found." ;
Text [ x-comment ] = " ";
};
String SbERR_UNDEF_ARRAY & ERRCODE_RES_MASK
{
Text [ de ] = "Array oder Prozedur $(ARG1) nicht gefunden." ;
Text [ en-US ] = "Array or procedure $(ARG1) not found." ;
Text [ x-comment ] = " ";
};
String SbERR_UNDEF_PROC & ERRCODE_RES_MASK
{
Text [ de ] = "Procedure $(ARG1) nicht gefunden." ;
Text [ en-US ] = "Procedure $(ARG1) not found." ;
Text [ x-comment ] = " ";
};
String SbERR_UNDEF_LABEL & ERRCODE_RES_MASK
{
Text [ de ] = "Label $(ARG1) undefiniert." ;
Text [ en-US ] = "Label $(ARG1) undefined." ;
Text [ x-comment ] = " ";
};
String SbERR_UNDEF_TYPE & ERRCODE_RES_MASK
{
Text [ de ] = "Unbekannter Datentyp $(ARG1)." ;
Text [ en-US ] = "Unknown data type $(ARG1)." ;
Text [ x-comment ] = " ";
};
String SbERR_BAD_EXIT & ERRCODE_RES_MASK
{
Text [ de ] = "Exit $(ARG1) erwartet." ;
Text [ en-US ] = "Exit $(ARG1) expected." ;
Text [ x-comment ] = " ";
};
String SbERR_BAD_BLOCK & ERRCODE_RES_MASK
{
Text [ de ] = "Noch offener Anweisungsblock: $(ARG1) fehlt." ;
Text [ en-US ] = "Statement block still open: $(ARG1) missing." ;
Text [ x-comment ] = " ";
};
String SbERR_BAD_BRACKETS & ERRCODE_RES_MASK
{
Text [ de ] = "Fehler in Klammerschachtelung." ;
Text [ en-US ] = "Parentheses do not match." ;
Text [ x-comment ] = " ";
};
String SbERR_BAD_DECLARATION & ERRCODE_RES_MASK
{
Text [ de ] = "Symbol $(ARG1) bereits anders definiert." ;
Text [ en-US ] = "Symbol $(ARG1) already defined differently." ;
Text [ x-comment ] = " ";
};
String SbERR_BAD_PARAMETERS & ERRCODE_RES_MASK
{
Text [ de ] = "Parameter passen nicht zu Prozedur." ;
Text [ en-US ] = "Parameters do not correspond to procedure." ;
Text [ x-comment ] = " ";
};
String SbERR_BAD_CHAR_IN_NUMBER & ERRCODE_RES_MASK
{
/* ### ACHTUNG: Neuer Text in Resource? Ungltiges Zeichen in Zahl : Ungltiges Zeichen in Zahl */
Text [ de ] = "Ungültiges Zeichen in Zahl." ;
Text [ en-US ] = "Invalid character in number." ;
Text [ x-comment ] = " ";
};
String SbERR_MUST_HAVE_DIMS & ERRCODE_RES_MASK
{
/* ### ACHTUNG: Neuer Text in Resource? Array mu dimensioniert werden : Array mu dimensioniert werden */
Text [ de ] = "Array muss dimensioniert werden." ;
Text [ en-US ] = "Array must be dimensioned." ;
Text [ x-comment ] = " ";
};
String SbERR_NO_IF & ERRCODE_RES_MASK
{
Text [ de ] = "Else/Endif ohne If." ;
Text [ en-US ] = "Else/Endif without If." ;
Text [ x-comment ] = " ";
};
String SbERR_NOT_IN_SUBR & ERRCODE_RES_MASK
{
/* ### ACHTUNG: Neuer Text in Resource? $(ARG1) innerhalb einer Prozedur unzulssig : $(ARG1) innerhalb einer Prozedur unzulssig */
Text [ de ] = "$(ARG1) innerhalb einer Prozedur unzulässig." ;
Text [ en-US ] = "$(ARG1) not allowed within a procedure." ;
Text [ x-comment ] = " ";
};
String SbERR_NOT_IN_MAIN & ERRCODE_RES_MASK
{
/* ### ACHTUNG: Neuer Text in Resource? $(ARG1) auerhalb einer Prozedur unzulssig : $(ARG1) auerhalb einer Prozedur unzulssig */
Text [ de ] = "$(ARG1) außerhalb einer Prozedur unzulässig." ;
Text [ en-US ] = "$(ARG1) not allowed outside a procedure." ;
Text [ x-comment ] = " ";
};
String SbERR_WRONG_DIMS & ERRCODE_RES_MASK
{
Text [ de ] = "Dimensionsangaben passen nicht zueinander." ;
Text [ en-US ] = "Dimension specifications do not match." ;
Text [ x-comment ] = " ";
};
String SbERR_BAD_OPTION & ERRCODE_RES_MASK
{
Text [ de ] = "Unbekannte Option: $(ARG1)." ;
Text [ en-US ] = "Unknown option: $(ARG1)." ;
Text [ x-comment ] = " ";
};
String SbERR_CONSTANT_REDECLARED & ERRCODE_RES_MASK
{
Text [ de ] = "Konstante $(ARG1) neu definiert." ;
Text [ en-US ] = "Constant $(ARG1) redefined." ;
Text [ x-comment ] = " ";
};
String SbERR_PROG_TOO_LARGE & ERRCODE_RES_MASK
{
/* ### ACHTUNG: Neuer Text in Resource? Programm ist zu gro : Programm ist zu gro */
Text [ de ] = "Programm ist zu groß." ;
Text [ en-US ] = "Program too large." ;
Text [ x-comment ] = " ";
};
String SbERR_NO_STRINGS_ARRAYS & ERRCODE_RES_MASK
{
/* ### ACHTUNG: Neuer Text in Resource? Strings oder Arrays unzulssig : Strings oder Arrays unzulssig */
Text [ de ] = "Strings oder Arrays unzulässig." ;
Text [ en-US ] = "Strings or arrays not permitted." ;
Text [ x-comment ] = " ";
};
String ERRCODE_BASIC_EXCEPTION & ERRCODE_RES_MASK
{
Text [ de ] = "Es ist eine Exception aufgetreten $(ARG1)." ;
Text [ en-US ] = "An exception occurred $(ARG1)." ;
Text [ x-comment ] = " ";
};
};
// Hinweis: IDS_SBERR_TERMINATED = IDS_SBERR_START+2000.
String IDS_SBERR_TERMINATED
{
Text [ de ] = "Das laufende Makro wurde unterbrochen" ;
Text [ en-US ] = "The macro running has been interrupted" ;
Text [ x-comment ] = " ";
};
String IDS_SBERR_STOREREF
{
Text [ de ] = "Referenz wird nicht gespeichert: ";
Text [ en-US ] = "Reference will not be saved: ";
Text [ x-comment ] = " ";
};
String ERRCODE_BASMGR_LIBLOAD & ERRCODE_RES_MASK
{
/* ### ACHTUNG: Neuer Text in Resource? Fehler beim Laden der Bibliothek '$(ARG1)' : Fehler beim Laden der Bibliothek ''$(ARG1)'' */
/* ### ACHTUNG: Neuer Text in Resource? Fehler beim Laden der Bibliothek '$(ARG1)' : Fehler beim Laden der Bibliothek ''$(ARG1) */
/* ### ACHTUNG: Neuer Text in Resource? Fehler beim Laden der Bibliothek '$(ARG1)' : Fehler beim Laden der Bibliothek ''$(ARG1) */
/* ### ACHTUNG: Neuer Text in Resource? Fehler beim Laden der Bibliothek '$(ARG1)' : Fehler beim Laden der Bibliothek ''$(ARG1)'' */
Text [ de ] = "Fehler beim Laden der Bibliothek '$(ARG1)'." ;
Text [ en-US ] = "Error loading library '$(ARG1)'." ;
Text [ x-comment ] = " ";
};
String ERRCODE_BASMGR_LIBSAVE & ERRCODE_RES_MASK
{
/* ### ACHTUNG: Neuer Text in Resource? Fehler beim Speichern der Bibliothek: '$(ARG1)' : Fehler beim Speichern der Bibliothek: ''$(ARG1)'' */
/* ### ACHTUNG: Neuer Text in Resource? Fehler beim Speichern der Bibliothek: '$(ARG1)' : Fehler beim Speichern der Bibliothek: ''$(ARG1) */
/* ### ACHTUNG: Neuer Text in Resource? Fehler beim Speichern der Bibliothek: '$(ARG1)' : Fehler beim Speichern der Bibliothek: ''$(ARG1) */
/* ### ACHTUNG: Neuer Text in Resource? Fehler beim Speichern der Bibliothek: '$(ARG1)' : Fehler beim Speichern der Bibliothek: ''$(ARG1)'' */
Text [ de ] = "Fehler beim Speichern der Bibliothek: '$(ARG1)'." ;
Text [ en-US ] = "Error saving library: '$(ARG1)'." ;
Text [ x-comment ] = " ";
};
String ERRCODE_BASMGR_MGROPEN & ERRCODE_RES_MASK
{
/* ### ACHTUNG: Neuer Text in Resource? Das BASIC aus der Datei '$(ARG1)' konnte nicht initialisiert werden : Das BASIC aus der Datei ''$(ARG1)'' konnte nicht initialisiert werden */
/* ### ACHTUNG: Neuer Text in Resource? Das BASIC aus der Datei '$(ARG1)' konnte nicht initialisiert werden : Das BASIC aus der Datei ''$(ARG1)'' konnte nicht initialisiert werden */
/* ### ACHTUNG: Neuer Text in Resource? Das BASIC aus der Datei '$(ARG1)' konnte nicht initialisiert werden : Das BASIC aus der Datei ''$(ARG1)'' konnte nicht initialisiert werden */
/* ### ACHTUNG: Neuer Text in Resource? Das BASIC aus der Datei '$(ARG1)' konnte nicht initialisiert werden : Das BASIC aus der Datei ''$(ARG1)'' konnte nicht initialisiert werden */
Text [ de ] = "Das BASIC aus der Datei '$(ARG1)' konnte nicht initialisiert werden." ;
Text [ en-US ] = "The BASIC from the file '$(ARG1)' could not be initialized." ;
Text [ x-comment ] = " ";
};
String ERRCODE_BASMGR_MGRSAVE & ERRCODE_RES_MASK
{
Text [ de ] = "Fehler beim Speichern des BASIC's: '$(ARG1)'." ;
Text [ en-US ] = "Error saving BASIC: '$(ARG1)'." ;
Text [ x-comment ] = " ";
};
String ERRCODE_BASMGR_REMOVELIB & ERRCODE_RES_MASK
{
Text [ de ] = "Fehler beim entfernen der Bibliothek." ;
Text [ en-US ] = "Error removing library." ;
Text [ x-comment ] = " ";
};
String ERRCODE_BASMGR_UNLOADLIB & ERRCODE_RES_MASK
{
Text [ de ] = "Die Bibliothek konnte nicht aus dem Speicher entfernt werden." ;
Text [ en-US ] = "The library could not be removed from memory." ;
Text [ x-comment ] = " ";
};
|