summaryrefslogtreecommitdiff
path: root/basctl/source/basicide/basidesh.src
blob: c6d7591525f4088866affe3741c83253183da2cf (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
/*************************************************************************
 *
 *  $RCSfile: basidesh.src,v $
 *
 *  $Revision: 1.97 $
 *
 *  last change: $Author: hjs $ $Date: 2004-06-25 12:44:30 $
 *
 *  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 <baside2.hrc>
#include <helpid.hrc>
#ifndef _GLOBLMN_HRC
#include <svx/globlmn.hrc>
#endif

#define MASKCOLOR   MaskColor = Color { Red = 0xFFFF; Green = 0x0000; Blue = 0xFFFF; };

String RID_STR_IDENAME
{
    Text = "BasicIDE" ;
};
String RID_STR_FILTER_ALLFILES
{
    Text [ de ] = "<Alle>" ;
    Text [ en-US ] = "<All>" ;
};
String RID_STR_NOMODULE
{
    Text [ de ] = "< Kein Modul >" ;
    Text [ en-US ] = "< No Module >" ;
};
String RID_STR_WRONGPASSWORD
{
    /* ### ACHTUNG: Neuer Text in Resource? Fehlerhaftes Paßwort. : Fehlerhaftes Pa˜wort. */
    Text [ de ] = "Fehlerhaftes Kennwort." ;
    Text [ en-US ] = "Incorrect Password" ;
};
String RID_STR_OPEN
{
    Text [ de ] = "Laden" ;
    Text [ en-US ] = "Load" ;
};
String RID_STR_SAVE
{
    Text [ de ] = "Speichern" ;
    Text [ en-US ] = "Save" ;
};
String RID_STR_SOURCETOBIG
{
    /* ### ACHTUNG: Neuer Text in Resource? Der Quelltext ist zu groß und kann weder gespeichert noch compiliert werden.\nLöschen Sie einige Kommentare oder übertragen Sie einige Methoden in ein anderes Modul. : Der Quelltext ist zu gro˜ und kann weder gespeichert noch compiliert werden.\nL÷schen Sie einige Kommentare oder ³bertragen Sie einige Methoden in ein anderes Modul. */
    Text [ de ] = "Der Quelltext ist zu groß und kann weder gespeichert noch compiliert werden.\nLöschen Sie einige Kommentare oder übertragen Sie einige Methoden in ein anderes Modul." ;
    Text [ en-US ] = "The source text is too large and can be neither compiled nor saved.\nDelete some of the comments or transfer some methods into another module." ;
};
String RID_STR_ERROROPENSTORAGE
{
    /* ### ACHTUNG: Neuer Text in Resource? Fehler beim Öffnen der Datei : Fehler beim Íffnen der Datei */
    Text [ de ] = "Fehler beim Öffnen der Datei" ;
    Text [ en-US ] = "Error opening file" ;
};
String RID_STR_ERROROPENLIB
{
    Text [ de ] = "Fehler beim Laden der Bibliothek" ;
    Text [ en-US ] = "Error loading library" ;
};
String RID_STR_NOLIBINSTORAGE
{
    /* ### ACHTUNG: Neuer Text in Resource? Die Datei enthält keine BASIC-Bibliotheken : Die Datei enthõlt keine BASIC-Bibliotheken */
    Text [ de ] = "Die Datei enthält keine BASIC-Bibliotheken" ;
    Text [ en-US ] = "The file does not contain any BASIC libraries" ;
};
String RID_STR_BADSBXNAME
{
    /* ### ACHTUNG: Neuer Text in Resource? Ungültiger Bezeichner : Ung³ltiger Bezeichner */
    Text [ de ] = "Ungültiger Bezeichner" ;
    Text [ en-US ] = "Invalid Name" ;
};
String RID_STR_LIBNAMETOLONG
{
    Text [ de ] = "Der Name einer Bibliothek darf maximal 30 Zeichen lang sein.";
    Text [ en-US ] = "A library name can have up to 30 characters.";
};
String RID_STR_ERRORCHOOSEMACRO
{
    Text [ de ] = "Auf Makros anderer Dokumente kann nicht zugegriffen werden.";
    Text [ en-US ] = "Macros from other documents are not accessible.";
};
String RID_STR_LIBISREADONLY
{
    Text [ de ] = "Diese Bibliothek ist schreibgeschützt.";
    Text [ en-US ] = "This library is read-only.";
};
String RID_STR_REPLACELIB
{
    Text [ de ] = "'XX' kann nicht ersetzt werden." ;
    Text [ en-US ] = "'XX' cannot be replaced.";
};
String RID_STR_IMPORTNOTPOSSIBLE
{
    Text [ de ] = "Hinzufügen von 'XX' nicht möglich." ;
    Text [ en-US ] = "'XX' cannot be added.";
};
String RID_STR_NOIMPORT
{
    Text [ de ] = "'XX' wurde nicht hinzugefügt." ;
    Text [ en-US ] = "'XX' was not added.";
};
String RID_STR_ENTERPASSWORD
{
    Text [ de ] = "Kennwort eingeben für 'XX'" ;
    Text [ en-US ] = "Enter password for 'XX'";
};
String RID_STR_SBXNAMEALLREADYUSED
{
    Text [ de ] = "Name bereits vergeben" ;
    Text [ en-US ] = "Name already exists" ;
};
String RID_STR_SBXNAMEALLREADYUSED2
{
    Text [ de ] = "Objekt mit dem Namen existiert schon" ;
    Text [ en-US ] = "Object with same name already exists" ;
};
String RID_STR_FILEEXISTS
{
    /* ### ACHTUNG: Neuer Text in Resource? Die Datei 'XX' existiert schon : Die Datei ''XX'' existiert schon */
    Text [ de ] = "Die Datei 'XX' existiert schon" ;
    Text [ en-US ] = "The 'XX' file already exists" ;
};
String RID_STR_CANNOTRUNMACRO
{
    Text [ de ] = "Aus Sicherheitsgründen ist dieses Makro nicht ausführbar.\n\nFür weitere Informationen überprüfen Sie die Sicherheitseinstellungen." ;
    Text [ en-US ] = "For security reasons, you cannot run this macro.\n\nFor more information, check the security settings." ;
};
String RID_STR_COMPILEERROR
{
    /* ### ACHTUNG: Neuer Text in Resource? Übersetzungs-Fehler:  : šbersetzungs-Fehler:  */
    Text [ de ] = "Übersetzungs-Fehler: " ;
    Text [ en-US ] = "Compile Error: " ;
};
String RID_STR_RUNTIMEERROR
{
    Text [ de ] = "Laufzeit-Fehler: #" ;
    Text [ en-US ] = "Runtime Error: #" ;
};
String RID_STR_SEARCHNOTFOUND
{
    Text [ de ] = "Suchbegriff nicht gefunden" ;
    Text [ en-US ] = "Search key not found" ;
};
String RID_STR_SEARCHFROMSTART
{
    /* ### ACHTUNG: Neuer Text in Resource? Es wurde bis zum letzten Modul gesucht. Möchten Sie die Suche beim ersten Modul fortsetzen? : Es wurde bis zum letzten Modul gesucht. M÷chten Sie die Suche beim ersten Modul fortsetzen? */
    Text [ de ] = "Es wurde bis zum letzten Modul gesucht. Möchten Sie die Suche beim ersten Modul fortsetzen?" ;
    Text [ en-US ] = "Search to last module complete. Continue at first module?" ;
};
String RID_STR_SEARCHREPLACES
{
    Text [ de ] = "Suchbegriff XXmal ersetzt" ;
    Text [ en-US ] = "Search key replaced XX times" ;
};
String RID_STR_COULDNTREAD
{
    Text [ de ] = "Die Datei konnte nicht gelesen werden" ;
    Text [ en-US ] = "The file could not be read" ;
};
String RID_STR_COULDNTWRITE
{
    Text [ de ] = "Die Datei konnte nicht gespeichert werden" ;
    Text [ en-US ] = "The file could not be saved" ;
};
String RID_STR_CANNOTCHANGENAMESTDLIB
{
    /* ### ACHTUNG: Neuer Text in Resource? Der Name der Standard-Bibliothek kann nicht geändert werden : Der Name der Standard-Bibliothek kann nicht geõndert werden */
    Text [ de ] = "Der Name der Standard-Bibliothek kann nicht geändert werden" ;
    Text [ en-US ] = "The name of the default library cannot be changed." ;
};
String RID_STR_CANNOTCHANGENAMEREFLIB
{
    /* ### ACHTUNG: Neuer Text in Resource? Der Name einer referenzierten Bibliothek kann nicht geändert werden : Der Name einer referenzierten Bibliothek kann nicht geõndert werden */
    Text [ de ] = "Der Name einer referenzierten Bibliothek kann nicht geändert werden" ;
    Text [ en-US ] = "The name of a referenced library cannot be changed." ;
};
String RID_STR_CANNOTUNLOADSTDLIB
{
    Text [ de ] = "Die Standard-Bibliothek kann nicht deaktiviert werden" ;
    Text [ en-US ] = "The default library cannot be deactivated" ;
};
String RID_STR_GENERATESOURCE
{
    Text [ de ] = "Erzeuge Quelltext" ;
    Text [ en-US ] = "Generating source" ;
};
String RID_STR_FILENAME
{
    Text [ de ] = "Dateiname: " ;
    Text [ en-US ] = "File name:" ;
};
String RID_STR_APPENDLIBS
{
    /* ### ACHTUNG: Neuer Text in Resource? Bibliotheken hinzufügen : Bibliotheken hinzuf³gen */
    Text [ de ] = "Bibliotheken hinzufügen" ;
    Text [ en-US ] = "Append Libraries" ;
};
String RID_STR_QUERYDELMACRO
{
    /* ### ACHTUNG: Neuer Text in Resource? Möchten Sie das Makro XX löschen ? : M÷chten Sie das Makro XX l÷schen ? */
    Text [ de ] = "Möchten Sie das Makro XX löschen ?" ;
    Text [ en-US ] = "Do you want to delete the macro XX ?" ;
};
String RID_STR_QUERYDELDIALOG
{
    /* ### ACHTUNG: Neuer Text in Resource? Möchten Sie den Dialog XX löschen ? : M÷chten Sie den Dialog XX l÷schen ? */
    Text [ de ] = "Möchten Sie den Dialog XX löschen ?" ;
    Text [ en-US ] = "Do you want to delete the XX dialog?" ;
};
String RID_STR_QUERYDELLIB
{
    /* ### ACHTUNG: Neuer Text in Resource? Möchten Sie die Bibliothek XX löschen ? : M÷chten Sie die Bibliothek XX l÷schen ? */
    Text [ de ] = "Möchten Sie die Bibliothek XX löschen ?" ;
    Text [ en-US ] = "Do you want to delete the XX library?" ;
};
String RID_STR_QUERYDELLIBREF
{
    /* ### ACHTUNG: Neuer Text in Resource? Möchten Sie die Referenz auf die Bibliothek XX löschen ? : M÷chten Sie die Referenz auf die Bibliothek XX l÷schen ? */
    Text [ de ] = "Möchten Sie die Referenz auf die Bibliothek XX löschen ?" ;
    Text [ en-US ] = "Do you want to delete the reference to the XX library?" ;
};
String RID_STR_QUERYDELMODULE
{
    /* ### ACHTUNG: Neuer Text in Resource? Möchten Sie das Modul XX löschen ? : M÷chten Sie das Modul XX l÷schen ? */
    Text [ de ] = "Möchten Sie das Modul XX löschen ?" ;
    Text [ en-US ] = "Do you want to delete the XX module?" ;
};
String RID_STR_OBJNOTFOUND
{
    Text [ de ] = "Objekt oder Methode nicht gefunden" ;
    Text [ en-US ] = "Object or method not found" ;
};
String RID_STR_BASIC
{
    Text [ de ] = "BASIC" ;
    Text [ en-US ] = "BASIC" ;
};
String RID_STR_LINE
{
     // Abkuerzung fuer 'Zeile'
    Text [ de ] = "Zl" ;
    Text [ en-US ] = "Ln" ;
    Text [ x-comment ] = "; TSM:; TSM: 11/9/00 This entry denotes Zeile - Zl";
};
String RID_STR_COLUMN
{
     // Abkuerzung fuer 'Spalte'
    Text [ de ] = "Sp" ;
    Text [ en-US ] = "Col" ;
};
String RID_STR_DOC
{
    Text [ de ] = "Dokument" ;
    Text [ en-US ] = "Document" ;
};
String RID_BASICIDE_OBJECTBAR
{
    Text [ de ] = "Makro-Leiste" ;
    Text [ en-US ] = "Macro Bar" ;
};
String RID_STR_CANNOTCLOSE
{
    /* ### ACHTUNG: Neuer Text in Resource? Das Fenster kann nicht geschlossen werden,\nwährend das BASIC-Programm läuft. : Das Fenster kann nicht geschlossen werden,\nwõhrend das BASIC-Programm lõuft. */
    Text [ de ] = "Das Fenster kann nicht geschlossen werden,\nwährend das BASIC-Programm läuft." ;
    Text [ en-US ] = "The window cannot be closed while BASIC is running." ;
};
String RID_STR_REPLACESTDLIB
{
    Text [ de ] = "Die Standard-Bibliothek kann nicht ersetzt werden." ;
    Text [ en-US ] = "The default library cannot be replaced." ;
};
String RID_STR_REFNOTPOSSIBLE
{
    /* ### ACHTUNG: Neuer Text in Resource? Referenz auf 'XX' nicht möglich. : Referenz auf ''XX'' nicht möglich. */
    /* ### ACHTUNG: Neuer Text in Resource? Referenz auf 'XX' nicht möglich. : Referenz auf 'XX' nicht m÷glich. */
    Text [ de ] = "Referenz auf 'XX' nicht möglich." ;
    Text [ en-US ] = "Reference to 'XX' not possible." ;
};
String RID_STR_WATCHNAME
{
    Text [ de ] = "Beobachter" ;
    Text [ en-US ] = "Watch" ;
};
String RID_STR_STACKNAME
{
    Text [ de ] = "Kommandostapel" ;
    Text [ en-US ] = "Call Stack" ;
};
String RID_STR_INITIDE
{
    Text [ de ] = "Initialisierung BASIC" ;
    Text [ en-US ] = "BASIC Initialization" ;
};
String RID_STR_STDMODULENAME
{
    Text [ de ] = "Modul" ;
    Text [ en-US ] = "Module" ;
};
String RID_STR_STDDIALOGNAME
{
    Text [ de ] = "Dialog" ;
    Text [ en-US ] = "Dialog" ;
};
String RID_STR_STDLIBNAME
{
    Text [ de ] = "Bibliothek" ;
    Text [ en-US ] = "Library" ;
};
String RID_STR_NEWLIB
{
    Text [ de ] = "Neue Bibliothek" ;
    Text [ en-US ] = "New Library" ;
};
String RID_STR_NEWMOD
{
    Text [ de ] = "Neues Modul" ;
    Text [ en-US ] = "New Module" ;
};
String RID_STR_NEWDLG
{
    Text [ de ] = "Neuer Dialog" ;
    Text [ en-US ] = "New Dialog" ;
};
String RID_STR_ALL
{
    Text [ de ] = "Alle" ;
    Text [ en-US ] = "All" ;
};
String RID_STR_PAGE
{
    Text [ de ] = "Seite" ;
    Text [ en-US ] = "Page" ;
};
String RID_STR_MACRONAMEREQ
{
    /* ### ACHTUNG: Neuer Text in Resource? Es muß ein Name angegeben werden. : Es mu˜ ein Name angegeben werden. */
    Text [ de ] = "Es muss ein Name angegeben werden." ;
    Text [ en-US ] = "A name must be entered." ;
};
String RID_STR_WILLSTOPPRG
{
    /* ### ACHTUNG: Neuer Text in Resource? Sie müssen nach dieser Änderung Ihr Programm neu starten.\nForfahren? : Sie m³ssen nach dieser Žnderung Ihr Programm neu starten.\nForfahren? */
    Text [ de ] = "Sie müssen nach dieser Änderung Ihr Programm neu starten.\nForfahren?" ;
    Text [ en-US ] = "You will have to restart the program after this edit.\nContinue?" ;
};
String RID_STR_SEARCHALLMODULES
{
    Text [ de ] = "Soll der Text in allen aktiven Modulen ersetzt werden?" ;
    Text [ en-US ] = "Do you want to replace the text in all active modules?" ;
};
Edit RID_EDT_WATCHEDIT
{
    HelpId = HID_BASICIDE_WATCHWINDOW_EDIT ;
    Border = TRUE ;
    SvLook = TRUE ;
    Size = MAP_APPFONT ( 80 , 12 ) ;
};
ImageButton RID_IMGBTN_REMOVEWATCH
{
    HelpId = HID_BASICIDE_REMOVEWATCH ;
    SmallStyle = TRUE ;
    ButtonImage = Image
    {
        ImageBitmap = Bitmap { File = "baswatr.bmp" ; };
        MASKCOLOR
    };
    QuickHelpText [ de ] = "Beobachter entfernen" ;
    QuickHelpText [ en-US ] = "Remove Watch" ;
};
Image RID_IMG_REMOVEWATCH_HC
{
    ImageBitmap = Bitmap { File = "baswatr_h.bmp" ; };
    MASKCOLOR
};
ImageButton RID_IMGBTN_GOTOCALL
{
    HelpId = HID_BASICIDE_GOTOALL ;
    SmallStyle = TRUE ;
    ButtonImage = Image { ImageBitmap = Bitmap { File = "basgocl.bmp" ; }; } ;
};
String RID_STR_REMOVEWATCH
{
    Text [ de ] = "Beobachter: " ;
    Text [ en-US ] = "Watch:" ;
};
String RID_STR_STACK
{
    Text [ de ] = "Aufrufe: " ;
    Text [ en-US ] = "Calls: " ;
};
/*
String RID_STR_INSERTMODE
{
    Text [ de ] = "EINFG" ;
    Text [ en-US ] = "INS" ;
};

String RID_STR_OVERWRITEMODE
{
    Text [ de ] = "ÜBER" ;
    Text [ en-US ] = "OVR" ;
};

*/
ImageList RID_DEFAULTIMAGELIST_SC
{
    Prefix = "sc";
    MASKCOLOR
    IdList =
    {
        SID_BASICLOAD ;
        SID_BASICSAVEAS ;
        SID_BASICCOMPILE ;
        SID_BASICRUN ;
        SID_BASICSTEPINTO ;
        SID_BASICSTEPOVER ;
        SID_BASICSTEPOUT ;
        SID_BASICSTOP ;
        SID_BASICIDE_TOGGLEBRKPNT ;
        SID_BASICIDE_MANAGEBRKPNTS ;
        SID_BASICIDE_ADDWATCH ;
        SID_BASICIDE_MODULEDLG ;
        SID_BASICIDE_OBJCAT ;
        SID_UNDO ;
        SID_REDO ;
        SID_CHOOSE_CONTROLS ;
        SID_INSERT_PUSHBUTTON ;
        SID_INSERT_CHECKBOX ;
        SID_INSERT_RADIOBUTTON ;
        SID_INSERT_FIXEDTEXT ;
        SID_INSERT_EDIT ;
        SID_INSERT_GROUPBOX ;
        SID_INSERT_LISTBOX ;
        SID_INSERT_COMBOBOX ;
        SID_SHOW_PROPERTYBROWSER ;
        SID_DIALOG_TESTMODE ;
        SID_INSERT_SPINBUTTON ;
        SID_INSERT_HSCROLLBAR ;
        SID_INSERT_VSCROLLBAR ;
        SID_INSERT_SELECT ;
        SID_BASICIDE_MATCHGROUP ;
        SID_BASICIDE_CHOOSEMACRO ;
        SID_SHOW_HIDDEN ;
        SID_SHOW_FORMS ;
        SID_INSERT_IMAGECONTROL ;
        SID_INSERT_PROGRESSBAR ;
        SID_INSERT_HFIXEDLINE ;
        SID_INSERT_VFIXEDLINE ;
        SID_INSERT_DATEFIELD ;
        SID_INSERT_TIMEFIELD ;
        SID_INSERT_NUMERICFIELD ;
        SID_INSERT_CURRENCYFIELD ;
        SID_INSERT_FORMATTEDFIELD ;
        SID_INSERT_PATTERNFIELD ;
        SID_INSERT_FILECONTROL ;
    };
};
ImageList RID_DEFAULTIMAGELIST_LC
{
    Prefix = "lc";
    MASKCOLOR
    IdList =
    {
        SID_BASICLOAD ;
        SID_BASICSAVEAS ;
        SID_BASICCOMPILE ;
        SID_BASICRUN ;
        SID_BASICSTEPINTO ;
        SID_BASICSTEPOVER ;
        SID_BASICSTEPOUT ;
        SID_BASICSTOP ;
        SID_BASICIDE_TOGGLEBRKPNT ;
        SID_BASICIDE_MANAGEBRKPNTS ;
        SID_BASICIDE_ADDWATCH ;
        SID_BASICIDE_MODULEDLG ;
        SID_BASICIDE_OBJCAT ;
        SID_UNDO ;
        SID_REDO ;
        SID_CHOOSE_CONTROLS ;
        SID_INSERT_PUSHBUTTON ;
        SID_INSERT_CHECKBOX ;
        SID_INSERT_RADIOBUTTON ;
        SID_INSERT_FIXEDTEXT ;
        SID_INSERT_EDIT ;
        SID_INSERT_GROUPBOX ;
        SID_INSERT_LISTBOX ;
        SID_INSERT_COMBOBOX ;
        SID_SHOW_PROPERTYBROWSER ;
        SID_DIALOG_TESTMODE ;
        SID_INSERT_SPINBUTTON ;
        SID_INSERT_HSCROLLBAR ;
        SID_INSERT_VSCROLLBAR ;
        SID_INSERT_SELECT ;
        SID_BASICIDE_MATCHGROUP ;
        SID_BASICIDE_CHOOSEMACRO ;
        SID_SHOW_HIDDEN ;
        SID_SHOW_FORMS ;
        SID_INSERT_IMAGECONTROL ;
        SID_INSERT_PROGRESSBAR ;
        SID_INSERT_HFIXEDLINE ;
        SID_INSERT_VFIXEDLINE ;
        SID_INSERT_DATEFIELD ;
        SID_INSERT_TIMEFIELD ;
        SID_INSERT_NUMERICFIELD ;
        SID_INSERT_CURRENCYFIELD ;
        SID_INSERT_FORMATTEDFIELD ;
        SID_INSERT_PATTERNFIELD ;
        SID_INSERT_FILECONTROL ;
    };
};
ToolBox RID_BASICIDE_OBJECTBAR
{
    HelpId = HID_BASICIDE_TOOLBOX ;
    LineSpacing = TRUE ;
    Dockable = TRUE ;
    Moveable = TRUE ;
    Sizeable = TRUE ;
    Zoomable = TRUE ;
    Scroll = TRUE ;
    HideWhenDeactivate = TRUE ;
    Border = TRUE ;
    SVLook = TRUE ;
    Align = BOXALIGN_TOP ;
    Scroll = TRUE ;
    Customize = TRUE ;
    Text [ de ] = "BASIC" ;
    Text [ en-US ] = "BASIC" ;
    ItemList =
    {
        ToolBoxItem
        {
            Identifier = SID_BASICIDE_LIBSELECTOR ;
            Text [ de ] = "Bibliothek" ;
            Text [ en-US ] = "Library" ;
        };
        ToolBoxItem
        {
            Type = TOOLBOXITEM_SEPARATOR ;
        };
        ToolBoxItem
        {
            Identifier = SID_BASICCOMPILE ;
            /* ### ACHTUNG: Neuer Text in Resource? Übersetzen : šbersetzen */
            Text [ de ] = "Übersetzen" ;
            Text [ en-US ] = "Compile" ;
        };
        ToolBoxItem
        {
            Identifier = SID_BASICRUN ;
            /* ### ACHTUNG: Neuer Text in Resource? Ausführen : Ausf³hren */
            Text [ de ] = "Ausführen" ;
            Text [ en-US ] = "Run" ;
        };
        ToolBoxItem
        {
            Identifier = SID_BASICSTOP ;
            Text [ de ] = "Anhalten" ;
            Text [ en-US ] = "Stop" ;
        };
        ToolBoxItem
        {
            Type = TOOLBOXITEM_SEPARATOR ;
        };
        ToolBoxItem
        {
            Identifier = SID_BASICSTEPOVER ;
            Text [ de ] = "Prozedurschritt" ;
            Text [ en-US ] = "Procedure Step" ;
        };
        ToolBoxItem
        {
            Identifier = SID_BASICSTEPINTO ;
            Text [ de ] = "Einzelschritt" ;
            Text [ en-US ] = "Single Step" ;
        };
        ToolBoxItem
        {
            Identifier = SID_BASICSTEPOUT ;
            /* ### ACHTUNG: Neuer Text in Resource? Rücksprung : R³cksprung */
            Text [ de ] = "Rücksprung" ;
            Text [ en-US ] = "Step Back" ;
        };
        ToolBoxItem
        {
            Identifier = SID_BASICIDE_TOGGLEBRKPNT ;
            Text [ de ] = "Haltepunkt" ;
            Text [ en-US ] = "Breakpoint" ;
        };
        ToolBoxItem
        {
            Identifier = SID_BASICIDE_MANAGEBRKPNTS ;
            Text [ de ] = "Haltepunkte verwalten" ;
            Text [ en-US ] = "Manage Breakpoints" ;
        };
        ToolBoxItem
        {
            Identifier = SID_BASICIDE_ADDWATCH ;
            Text [ de ] = "Beobachter anzeigen" ;
            Text [ en-US ] = "Add Watch" ;
        };
        ToolBoxItem
        {
            Type = TOOLBOXITEM_SEPARATOR ;
        };
        ToolBoxItem
        {
            Identifier = SID_BASICIDE_OBJCAT ;
            Text [ de ] = "Objektkatalog" ;
            Text [ en-US ] = "Object Catalog" ;
        };
        ToolBoxItem
        {
            Identifier = SID_BASICIDE_CHOOSEMACRO ;
            Text [ de ] = "Makros" ;
            Text [ en-US ] = "Macros" ;
        };
        ToolBoxItem
        {
            Identifier = SID_BASICIDE_MODULEDLG ;
            Text [ de ] = "Module" ;
            Text [ en-US ] = "Modules" ;
        };
        ToolBoxItem
        {
            Type = TOOLBOXITEM_SEPARATOR ;
        };
        ToolBoxItem
        {
            Identifier = SID_BASICIDE_MATCHGROUP ;
            Text [ de ] = "Klammer suchen" ;
            Text [ en-US ] = "Find Parentheses" ;
        };
        ToolBoxItem
        {
            Identifier = SID_CHOOSE_CONTROLS ;
            Text [ de ] = "Kontrollfelder" ;
            Text [ en-US ] = "Controls" ;
        };
        ToolBoxItem
        {
            Type = TOOLBOXITEM_SEPARATOR ;
        };
        ToolBoxItem
        {
            Identifier = SID_BASICLOAD ;
            /* ### ACHTUNG: Neuer Text in Resource? Quelltext einfügen : Quelltext einf³gen */
            Text [ de ] = "Quelltext einfügen" ;
            Text [ en-US ] = "Insert Source Text" ;
        };
        ToolBoxItem
        {
            Identifier = SID_BASICSAVEAS ;
            Text [ de ] = "Quelltext speichern unter..." ;
            Text [ en-US ] = "Save Source As..." ;
        };
    };
};

Menu RID_POPUP_BRKPROPS
{
    Text [ de ] = "Eigenschaften" ;
    Text [ en-US ] = "Properties" ;
    DefaultItemId = RID_BRKPROPS ;
    ItemList =
    {
        MenuItem
        {
            Identifier = RID_ACTIV ;
            HelpId = HID_BASICIDE_ACTIV ;
            Text [ de ] = "Aktiv" ;
            Text [ en-US ] = "Active" ;
        };
        MenuItem
        {
            Separator = TRUE ;
        };
        MenuItem
        {
            Identifier = RID_BRKPROPS ;
            HelpId = HID_BASICIDE_BRKPROPS ;
            Text [ de ] = "Eigenschaften..." ;
            Text [ en-US ] = "Properties..." ;
            /* ### ACHTUNG: Neuer Text in Resource? Einstellungen für den Haltepunkt : Einstellungen f³r den Haltepunkt */
        };
    };
};
Menu RID_POPUP_BRKDLG
{
    Text [ de ] = "Haltepunkte verwalten" ;
    Text [ en-US ] = "Manage Breakpoints" ;
    ItemList =
    {
        MenuItem
        {
            Identifier = RID_BRKDLG ;
            HelpId = HID_BASICIDE_BRKDLG ;
            Text [ de ] = "Haltepunkte verwalten..." ;
            Text [ en-US ] = "Manage Breakpoints..." ;
            /* ### ACHTUNG: Neuer Text in Resource? Dialog für die Haltepunkte : Dialog f³r die Haltepunkte */
        };
    };
};
Menu RID_POPUP_TABBAR
{
    DefaultItemId = SID_BASICIDE_HIDECURPAGE ;
    ItemList =
    {
        MenuItem
        {
            Identifier = RID_INSERT ;
            /* ### ACHTUNG: Neuer Text in Resource? Einfügen : Einf³gen */
            Text [ de ] = "Einfügen" ;
            Text [ en-US ] = "Insert" ;
            Submenu = Menu
            {
                ItemList =
                {
                    MenuItem
                    {
                        Identifier = SID_BASICIDE_NEWMODULE ;
                        HelpId = SID_BASICIDE_NEWMODULE ;
                        Text [ de ] = "BASIC-Modul" ;
                        Text [ en-US ] = "BASIC Module" ;
                    };
                    MenuItem
                    {
                        Identifier = SID_BASICIDE_NEWDIALOG ;
                        HelpId = SID_BASICIDE_NEWDIALOG ;
                        Text [ de ] = "BASIC-Dialog" ;
                        Text [ en-US ] = "BASIC Dialog" ;
                    };
                };
            };
            /* ### ACHTUNG: Neuer Text in Resource? Modul oder Dialog einfügen : Modul oder Dialog einf³gen */
        };
        MenuItem
        {
            Identifier = SID_BASICIDE_DELETECURRENT ;
            HelpId = SID_BASICIDE_DELETECURRENT ;
            /* ### ACHTUNG: Neuer Text in Resource? Löschen : L÷schen */
            Text [ de ] = "Löschen" ;
            Text [ en-US ] = "Delete" ;
            /* ### ACHTUNG: Neuer Text in Resource? Modul oder Dialog löschen : Modul oder Dialog l÷schen */
        };
        MenuItem
        {
            Identifier = SID_BASICIDE_RENAMECURRENT ;
            HelpId = SID_BASICIDE_RENAMECURRENT ;
            Text [ de ] = "Umbenennen" ;
            Text [ en-US ] = "Rename" ;
        };
        MenuItem
        {
            Identifier = SID_BASICIDE_HIDECURPAGE ;
            HelpId = SID_BASICIDE_HIDECURPAGE ;
            Text [ de ] = "Ausblenden" ;
            Text [ en-US ] = "Hide" ;
        };
        MenuItem
        {
            Separator = TRUE ;
        };
        MenuItem
        {
            Identifier = SID_BASICIDE_MODULEDLG ;
            HelpId = SID_BASICIDE_MODULEDLG ;
            Text [ de ] = "Module..." ;
            Text [ en-US ] = "Modules..." ;
        };
    };
};
Menu RID_POPUP_DLGED
{
    DefaultItemId = SID_SHOW_PROPERTYBROWSER ;
    ItemList =
    {
        MenuItem
        {
            Identifier = SID_SHOW_PROPERTYBROWSER ;
            HelpId = SID_SHOW_PROPERTYBROWSER ;
            Text [ de ] = "Eigenschaften..." ;
            Text [ en-US ] = "Properties...";
        };
    };
};
ImageList RID_IMGLST_OBJECTS
{
    Prefix = "im";
    MASKCOLOR
    IdList =
    {
        IMGID_APPICON ;
        IMGID_LIB ;
        IMGID_MODULE ;
        IMGID_MACRO ;
        IMGID_OBJECT ;
        IMGID_SUBOBJ ;
        IMGID_PROP ;
        IMGID_DOCUMENT ;
        IMGID_LIBNOTLOADED ;
    };
};
ImageList RID_IMGLST_OBJECTS_HC
{
    Prefix = "imh";
    MASKCOLOR
    IdList =
    {
        IMGID_APPICON ;
        IMGID_LIB ;
        IMGID_MODULE ;
        IMGID_MACRO ;
        IMGID_OBJECT ;
        IMGID_SUBOBJ ;
        IMGID_PROP ;
        IMGID_DOCUMENT ;
        IMGID_LIBNOTLOADED ;
    };
};
ImageList RID_IMGLST_LAYOUT
{
    Prefix = "im";
    MASKCOLOR
    IdList =
    {
        IMGID_BRKENABLED ;
        IMGID_BRKDISABLED ;
        IMGID_STEPMARKER ;
        IMGID_ERRORMARKER ;
    };
};
ImageList RID_IMGLST_LAYOUT_HC
{
    Prefix = "imh";
    MASKCOLOR
    IdList =
    {
        IMGID_BRKENABLED ;
        IMGID_BRKDISABLED ;
        IMGID_STEPMARKER ;
        IMGID_ERRORMARKER ;
    };
};
Image RID_IMG_LOCKED
{
    ImageBitmap = Bitmap { File = "locked.bmp" ; };
    MASKCOLOR
};
Image RID_IMG_LOCKED_HC
{
    ImageBitmap = Bitmap { File = "locked_h.bmp" ; };
    MASKCOLOR
};
String RID_STR_QUERYREPLACEMACRO
{
    Text [ de ] = "Möchten Sie das Makro XX überschreiben ?" ;
    Text [ en-US ] = "Do you want to overwrite the XX macro?" ;
};

#define MN_EDIT       20
#define MN_VIEW 21
#define MN_EXTRA 22
#define MN_WIN 30
#define MN_HELP 31
#define MN_TEMPLATES 11

#define MN_PLEDIT       20
#define MN_PLVIEW       21
#define MN_PLEXTRA      22
#define MN_PLWIN        30
#define MN_PLHELP       31
#define MN_PLTEMPLATES  11


/*

The application menu bar resource has become obsolete. You can now find the menu bar definition at:
<project>/basicide/menubar/menubar.xml.

*/