summaryrefslogtreecommitdiff
path: root/sfx2/source/appl/app.src
blob: 084818a70751f3382e43fb16b3c65c0878f0b2ab (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
/*************************************************************************
 *
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
 * 
 * Copyright 2000, 2010 Oracle and/or its affiliates.
 *
 * OpenOffice.org - a multi-platform office productivity suite
 *
 * This file is part of OpenOffice.org.
 *
 * OpenOffice.org is free software: you can redistribute it and/or modify
 * it under the terms of the GNU Lesser General Public License version 3
 * only, as published by the Free Software Foundation.
 *
 * OpenOffice.org 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 version 3 for more details
 * (a copy is included in the LICENSE file that accompanied this code).
 *
 * You should have received a copy of the GNU Lesser General Public License
 * version 3 along with OpenOffice.org.  If not, see
 * <http://www.openoffice.org/license.html>
 * for a copy of the LGPLv3 License.
 *
 ************************************************************************/

 // include ------------------------------------------------------------------

#include <sfx2/sfx.hrc>
#include "app.hrc"
#include "helpid.hrc"

String STR_NONAME
{
    Text [ en-US ] = "Untitled" ;
};
String STR_CLOSE
{
    Text [ en-US ] = "Close" ;
};
String STR_STYLE_FILTER_AUTO
{
    Text [ en-US ] = "Automatic" ;
};
String STR_STANDARD_SHORTCUT
{
    Text [ en-US ] = "Standard" ;
};
String STR_BYTES
{
    Text [ en-US ] = "Bytes" ;
};
String STR_KB
{
    Text [ en-US ] = "KB" ;
};
String STR_MB
{
    Text [ en-US ] = "MB" ;
};
String STR_GB
{
    Text [ en-US ] = "GB" ;
};
QueryBox MSG_QUERY_LASTVERSION
{
    Buttons = WB_YES_NO ;
    DefButton = WB_DEF_NO ;
    Message [ en-US ] = "Cancel all changes?" ;
};

InfoBox RID_DOCALREADYLOADED_DLG
{
    Message [ en-US ] = "Document already open." ;
};

ErrorBox RID_CANTLOADDOC_DLG
{
    Message [ en-US ] = "Cannot open document." ;
};

ErrorBox MSG_ERR_READ_CFG
{
    BUTTONS = WB_OK ;
    DEFBUTTON = WB_DEF_OK ;
    Message [ en-US ] = "Error reading configuration file." ;
};

ErrorBox MSG_ERR_WRITE_CFG
{
    BUTTONS = WB_OK ;
    DEFBUTTON = WB_DEF_OK ;
    Message [ en-US ] = "Error writing configuration file." ;
};

ErrorBox MSG_ERR_OPEN_CFG
{
    BUTTONS = WB_OK ;
    DEFBUTTON = WB_DEF_OK ;
    Message [ en-US ] = "Error opening configuration file." ;
};

ErrorBox MSG_ERR_FILETYPE_CFG
{
    BUTTONS = WB_OK ;
    DEFBUTTON = WB_DEF_OK ;
    Message [ en-US ] = "File is not a configuration file." ;
};

ErrorBox MSG_ERR_VERSION_CFG
{
    BUTTONS = WB_OK ;
    DEFBUTTON = WB_DEF_OK ;
    Message [ en-US ] = "Configuration file contains the wrong version." ;
};

ErrorBox MSG_ERR_WRITE_SBL
{
    BUTTONS = WB_OK ;
    DEFBUTTON = WB_DEF_OK ;
    Message [ en-US ] = "Error recording BASIC library in\n'@'." ;
};

ErrorBox MSG_SIGNAL
{
    BUTTONS = WB_YES_NO ;
    DEFBUTTON = WB_DEF_YES ;
    Message [ en-US ] = "An unexpected program error has occurred.\n\nDo you want to try to save your changes in all open documents before the program is terminated?" ;
};

ErrorBox MSG_ERR_NO_WEBBROWSER_FOUND
{
    BUTTONS = WB_OK ;
    DEFBUTTON = WB_DEF_OK ;
    Message[ en-US ] = "%PRODUCTNAME could not find a web browser on your system. Please check your Desktop Preferences or install a web browser (for example, Mozilla) in the default  location requested during the browser installation." ;
};

Resource SID_UNKNOWN
{
    String 1 "-" ;
};

Resource BMP_SFX_COLOR
{
    ExtraData =
    {
        SID_NEWDOC;             // 043
        SID_OPENDOC;            // 044
        SID_CLOSEDOC;           // 045
        SID_RELOAD; 			// 046
        SID_SAVEASDOC;          // 047
        SID_PRINTDOC;           // 051
        SID_SETUPPRINTER;       // 053
        SID_QUITAPP;            // 054
        SID_UNDO;               // 055
        SID_REDO;               // 056
        SID_REPEAT;             // 057
        SID_CUT;                // 058
        SID_COPY;               // 059
        SID_PASTE;              // 060
        SID_DELETE;             // 061
        SID_SELECTALL;          // 062
        SID_SAVEDOC;            // 063 vormals 046
        SID_EXITANDRETURN;      // 064 vormals 054
        SID_RECORDMACRO;        // 095
        SID_EDITMACRO;          // 096
        SID_HELPMENU;           // 098
        SID_CONFIG;     		// 123
        SID_CONFIGTOOLBOX;      // 124
        0;
    };
    Bitmap BMP_SFX_SMALL { File = "sco.bmp" ; };
    Bitmap BMP_SFX_LARGE { File = "lco.bmp" ; };
};

Resource BMP_SFX_MONO
{
    ExtraData =
    {
        SID_NEWDOC;             // 043
        SID_OPENDOC;            // 044
        SID_CLOSEDOC;           // 045
        SID_RELOAD; 			// 046
        SID_SAVEASDOC;          // 047
        SID_PRINTDOC;           // 051
        SID_SETUPPRINTER;       // 053
        SID_QUITAPP;            // 054
        SID_UNDO;               // 055
        SID_REDO;               // 056
        SID_REPEAT;             // 057
        SID_CUT;                // 058
        SID_COPY;               // 059
        SID_PASTE;              // 060
        SID_DELETE;             // 061
        SID_SELECTALL;          // 062
        SID_SAVEDOC;            // 063 vormals 046
        SID_EXITANDRETURN;      // 064 vormals 054
        SID_RECORDMACRO;        // 095
        SID_EDITMACRO;          // 096
        SID_HELPMENU;           // 098
        SID_CONFIG;     		// 123
        SID_CONFIGTOOLBOX;      // 124
        0;
    };
    Bitmap BMP_SFX_SMALL { File = "smo.bmp" ; };
    Bitmap BMP_SFX_LARGE { File = "lmo.bmp" ; };
};

WarningBox RID_WARN_POST_MAILTO
{
    BUTTONS = WB_OK_CANCEL ;
    DEFBUTTON = WB_DEF_OK ;
    Message [ en-US ] = "A form is to be sent by e-mail.\nThis means that the receiver will get to see your e-mail address." ;
};

String STR_RECOVER_TITLE
{
    Text [ en-US ] = "File Recovery" ;
};

String STR_RECOVER_QUERY
{
    Text [ en-US ] = "Should the file \"$1\" be restored?" ;
};

String GID_INTERN
{
    Text [ en-US ] = "Internal" ;
};

String GID_APPLICATION
{
    Text [ en-US ] = "Application" ;
};

String GID_VIEW
{
    Text [ en-US ] = "View" ;
};

String GID_DOCUMENT
{
    Text [ en-US ] = "Documents" ;
};

String GID_EDIT
{
    Text [ en-US ] = "Edit" ;
};

String GID_MACRO
{
    Text [ en-US ] = "BASIC" ;
};

String GID_OPTIONS
{
    Text [ en-US ] = "Options" ;
};

String GID_MATH
{
    Text [ en-US ] = "Math" ;
};

String GID_NAVIGATOR
{
    Text [ en-US ] = "Navigate" ;
};

String GID_INSERT
{
    Text [ en-US ] = "Insert" ;
};

String GID_FORMAT
{
    Text [ en-US ] = "Format" ;
};

String GID_TEMPLATE
{
    Text [ en-US ] = "Templates" ;
};

String GID_TEXT
{
    Text [ en-US ] = "Text" ;
};

String GID_FRAME
{
    Text [ en-US ] = "Frame" ;
};

String GID_GRAPHIC
{
    Text [ en-US ] = "Graphic" ;
};

String GID_TABLE
{
    Text [ en-US ] = "Table" ;
};

String GID_ENUMERATION
{
    Text [ en-US ] = "Numbering" ;
};

String GID_DATA
{
    Text [ en-US ] = "Data" ;
};

String GID_SPECIAL
{
    Text [ en-US ] = "Special Functions" ;
};

String GID_IMAGE
{
    Text [ en-US ] = "Image" ;
};

String GID_CHART
{
    Text [ en-US ] = "Chart" ;
};

String GID_EXPLORER
{
    Text [ en-US ] = "Explorer" ;
};

String GID_CONNECTOR
{
    Text [ en-US ] = "Connector" ;
};

String GID_MODIFY
{
    Text [ en-US ] = "Modify" ;
};

String GID_DRAWING
{
    Text [ en-US ] = "Drawing" ;
};

String GID_CONTROLS
{
    Text [ en-US ] = "Controls" ;
};

TabDialog SID_OPTIONS
{
    OutputSize = TRUE ;
    SVLook = TRUE ;
    Size = MAP_APPFONT ( 244 , 155 ) ;
    Text [ en-US ] = "Options" ;
    Moveable = TRUE ;
    Closeable = TRUE ;
    TabControl 1
    {
        SVLook = TRUE ;
        Pos = MAP_APPFONT ( 3 , 15 ) ;
        Size = MAP_APPFONT ( 221 , 130 ) ;
        PageList =
        {
            PageItem
            {
                Identifier = RID_SFXPAGE_GENERAL ;
                Text [ en-US ] = "General" ;
                PageResID = 256 ;
            };
            PageItem
            {
                Identifier = RID_SFXPAGE_SAVE ;
                Text [ en-US ] = "Save" ;
                PageResID = 257 ;
            };
            PageItem
            {
                Identifier = RID_SFXPAGE_PATH ;
                Text [ en-US ] = "Paths" ;
                PageResID = 258 ;
            };
            PageItem
            {
                Identifier = RID_SFXPAGE_SPELL ;
                Text [ en-US ] = "Spellcheck" ;
                PageResID = 259 ;
            };
        };
    };
};

InfoBox MSG_CANT_QUIT
{
    Message [ en-US ] = "The application cannot be terminated at the moment.\nPlease wait until all print jobs and/or\nOLE actions have finished and close all dialogs." ;
};

QueryBox MSG_IS_SERVER
{
    Buttons = WB_YES_NO ;
    DefButton = WB_DEF_NO ;
    Message [ en-US ] = "This application is as object or print server active.\nDo you want to terminate anyway?" ;
};

String STR_NODOUBLE
{
    Text [ en-US ] = "%PRODUCTNAME cannot be started more than once." ;
};

String STR_NOPRINTER
{
    Text [ en-US ] = "Some %PRODUCTNAME functions will not work properly without a printer driver.\nPlease install a printer driver." ;
};

String STR_ISMODIFIED
{
    Text [ en-US ] = "Do you want to save the changes to %1?" ;
};

String STR_AUTOSAVE
{
    Text [ en-US ] = "AutoSave" ;
};

String STR_RESWARNING
{
    Text [ en-US ] = "Limited system resources. Please quit other applications or close some windows before continuing." ;
};
String STR_RESEXCEPTION
{
    Text [ en-US ] = "There are files missing. Please check application setup." ;
};

String STR_DOUBLEEXCEPTION
{
    Text [ en-US ] = "Another error occurred during the save recovery.\nPossibly, the data could not be entirely saved." ;
};

String STR_SYSRESEXCEPTION
{
    Text [ en-US ] = "System resources exhausted. Please restart the application." ;
};

ErrorBox MSG_ERR_SOINIT
{
    Message [ en-US ] = "Error initializing object-system." ;
};

String MSG_IOERR_FILE_NOT_FOUND
{
    Text [ en-US ] = "The file $(FILE) doesn't exist." ;
};

String MSG_IOERR_PATH_NOT_FOUND
{
    Text [ en-US ] = "The path to file $(FILE) doesn't exist." ;
};

String MSG_IOERR_TOO_MANY_OPEN_FILES
{
    Text [ en-US ] = "The file $(FILE) could not be opened,\nbecause too many files are open.\nPlease close some files and try again." ;
};

String MSG_IOERR_ACCESS_DENIED
{
    Text [ en-US ] = "The file $(FILE) could not be opened due to missing access rights." ;
};

String MSG_IOERR_INVALID_ACCESS
{
    Text [ en-US ] = "The file $(FILE) could not be accessed." ;
};

String MSG_IOERR_INVALID_HANDLE
{
    Text [ en-US ] = "The file $(FILE) could not be opened due to an invalid file handle." ;
};

String MSG_IOERR_CANNOT_MAKE
{
    Text [ en-US ] = "The file $(FILE) could not be created." ;
};

String MSG_IOERR_SHARING
{
    Text [ en-US ] = "Error by shared access to $(FILE)." ;
};

String MSG_IOERR_INVALID_PARAMETER
{
    Text [ en-US ] = "" ;
};

String MSG_IOERR_GENERAL
{
    Text [ en-US ] = "General I/O error accessing $(FILE)." ;
};

String RID_FULLSCREENTOOLBOX
{
    Text  = "" ;
};

ToolBox RID_FULLSCREENTOOLBOX
{
    HelpId = HID_FULLSCREENTOOLBOX ;
    ButtonType = BUTTON_SYMBOL ;
    LineSpacing = TRUE ;
    Border = TRUE ;
    Scroll = TRUE ;
    SVLook = TRUE ;
    Moveable = TRUE ;
    Sizeable = TRUE ;
    Closeable = TRUE ;
    Zoomable = TRUE ;
    Customize = TRUE ;
    FloatingMode = TRUE ;
    Hide = TRUE ;
    _FloatingPosMapMode = MAP_APPFONT ;
    _FloatingPosX = -50 ;
    _FloatingPosY = -70 ;
    FloatingLines = 1 ;
    HideWhenDeactivate = TRUE ;
    Align = BOXALIGN_TOP ;
    ItemList =
    {
        ToolBoxItem
        {
            Identifier = SID_WIN_FULLSCREEN ;
        };
    };
};

String STR_ERR_NOTEMPLATE
{
    Text [ en-US ] = "The selected template has an incorrect format" ;
};

String STR_ERR_NOFILE
{
    Text [ en-US ] = "Can't open file $." ;
};

String STR_QUITAPP
{
    Text [ en-US ] = "E~xit" ;
};

String STR_EXITANDRETURN
{
    Text [ en-US ] = "E~xit & return to " ;
};

String STR_EXTHELPSTATUS
{
    Text [ en-US ] = "Select a command or click to select a theme." ;
};

String STR_MAIL
{
    Text [ en-US ] = "Mail" ;
};

String STR_ADDRESS_NAME
{
    Text [ en-US ] = "Addresses" ;
};

String RID_STR_HELP
{
    Text [ en-US ] = "Help" ;
};

String RID_STR_NOAUTOSTARTHELPAGENT
{
    Text [ en-US ] = "No automatic start at 'XX'" ;
};

String RID_STR_NOWELCOMESCREEN
{
    Text [ en-US ] = "Don't display tips" ;
};

String RID_HELPBAR
{
    Text [ en-US ] = "Help Bar" ;
};

ToolBox RID_HELPBAR
{
    HelpId = HID_HELPBAR ;
    Hide = TRUE ;
    ItemList  =
    {
        ToolBoxItem
        {
            Identifier = SID_HELP_INDEX ;
        };
        ToolBoxItem
        {
            Identifier = SID_HELP_HELPFILEBOX ;
        };
        ToolBoxItem
        {
            Type = TOOLBOXITEM_SEPARATOR ;
        };
        ToolBoxItem
        {
            Identifier = SID_HELP_ZOOMOUT;
        };
        ToolBoxItem
        {
            Identifier = SID_HELP_ZOOMIN;
        };
        ToolBoxItem
        {
            Type = TOOLBOXITEM_SEPARATOR ;
        };
        ToolBoxItem
        {
            Identifier = SID_HELP_SEARCH ;
        };
        ToolBoxItem
        {
            Identifier = SID_HELP_BOOKMARK ;
        };
        ToolBoxItem
        {
            Identifier = SID_HELP_ANNOTATE ;
        };
        /*
        ToolBoxItem
        {
            Type = TOOLBOXITEM_SEPARATOR ;
        };
        ToolBoxItem
        {
            Identifier = SID_HELP_DOWNLOAD ;
        };
*/
    };
};

String RID_STR_HLPFILENOTEXIST
{
    Text [ en-US ] = "The help file for this topic is not installed." ;
};

String RID_STR_HLPAPPNOTSTARTED
{
    Text [ en-US ] = "The help system could not be started" ;
};

 //----------------------------------------------------------------------------

String RID_ENVTOOLBOX
{
    Text [ en-US ] = "Function Bar" ;
};

String RID_SPECIALCONFIG_ERROR
{
    Text [ en-US ] = "An error has occurred in the special configuration.\nPlease contact your administrator." ;
};

String STR_MEMINFO_HEADER
{
};

String STR_MEMINFO_FOOTER
{
    Text = "</table>" ;
};

String STR_MEMINFO_OBJINFO
{
    Text = "<tr><td >$(VISIBLE)</td><td>$(CACHED)</td><td>$(EXPIRE)</td><td>$(JSDIRTY)</td><td>$(JSEXEC)</td><td>$(FORBID)</td><td>$(FACTORY)</td><td>$(URL)</td><td>$(ORIGURL)</td><td>$(POSTSTRING)</td></tr>" ;
};

String RID_PLUGIN
{
    Text [ en-US ] = "Enable plug-ins" ;
};

String STR_CORRUPT_INSTALLATION
{
    Text [ en-US ] = "Important program components could not be initialized correctly.\nPlease start the setup program with the option /Repair." ;
};

String IDS_SBERR_STOREREF
{
    Text [ en-US ] = "Reference will not be saved: " ;
};

String STR_KEY_CONFIG_DIR
{
    Text [ en-US ] = "Configuration" ;
};
String STR_KEY_WORK_PATH
{
    Text [ en-US ] = "My Documents" ;
};
String STR_KEY_GRAPHICS_PATH
{
    Text [ en-US ] = "Graphics" ;
};
String STR_KEY_BITMAP_PATH
{
    Text [ en-US ] = "Icons" ;
};
String STR_KEY_BASIC_PATH
{
    Text = "BASIC" ;
};

String STR_KEY_PALETTE_PATH
{
    Text [ en-US ] = "Palettes" ;
};
String STR_KEY_BACKUP_PATH
{
    Text [ en-US ] = "Backups" ;
};
String STR_KEY_MODULES_PATH
{
    Text [ en-US ] = "Modules" ;
};
String STR_KEY_TEMPLATE_PATH
{
    Text [ en-US ] = "Templates" ;
};
String STR_KEY_GLOSSARY_PATH
{
    Text [ en-US ] = "AutoText" ;
};
String STR_KEY_DICTIONARY_PATH
{
    Text [ en-US ] = "Dictionaries" ;
};
String STR_KEY_HELP_DIR
{
    Text [ en-US ] = "Help" ;
};
String STR_KEY_GALLERY_DIR
{
    Text [ en-US ] = "Gallery" ;
};

String STR_KEY_STORAGE_DIR
{
    Text [ en-US ] = "Message Storage" ;
};
String STR_KEY_TEMP_PATH
{
    Text [ en-US ] = "Temporary files" ;
};
String STR_KEY_PLUGINS_PATH
{
    Text [ en-US ] = "Plug-ins" ;
};
String STR_KEY_FAVORITES_DIR
{
    Text [ en-US ] = "Folder Bookmarks" ;
};
String STR_KEY_FILTER_PATH
{
    Text [ en-US ] = "Filters" ;
};
String STR_KEY_ADDINS_PATH
{
    Text [ en-US ] = "Add-ins" ;
};
String STR_KEY_USERCONFIG_PATH
{
    Text [ en-US ] = "User Configuration" ;
};
String STR_KEY_USERDICTIONARY_DIR
{
    Text [ en-US ] = "User-defined dictionaries" ;
};
String STR_KEY_AUTOCORRECT_DIR
{
    Text [ en-US ] = "AutoCorrect" ;
};
String STR_KEY_LINGUISTIC_DIR
{
    Text [ en-US ] = "Writing aids" ;
};
String STR_QUICKSTART_EXIT
{
    Text [ en-US ] = "Exit Quickstarter" ;
};
String STR_QUICKSTART_TIP
{
    Text [ en-US ] = "%PRODUCTNAME %PRODUCTVERSION Quickstarter" ;
};
String STR_QUICKSTART_FILEOPEN
{
    Text [ en-US ] = "Open Document..." ;
};
String STR_QUICKSTART_FROMTEMPLATE
{
    Text [ en-US ] = "From Template..." ;
};
String STR_QUICKSTART_PRELAUNCH
{
    Text [ en-US ] = "Load %PRODUCTNAME During System Start-Up" ;
};
String STR_QUICKSTART_PRELAUNCH_UNX
{
    Text[ en-US ] = "Disable systray Quickstarter";
};
String STR_QUICKSTART_LNKNAME
{
    Text [ en-US ] = "%PRODUCTNAME %PRODUCTVERSION" ;
};
String STR_QUICKSTART_FILE
{
    Text [ en-US ] = "File";
};

String STR_QUICKSTART_STARTCENTER
{
    Text [ en-US ] = "Startcenter";
};

String STR_QUICKSTART_RECENTDOC
{
    Text [ en-US ] = "Recent Documents";
};

String STR_QUERY_UPDATE_LINKS
{
    Text [ en-US ] = "This document contains one or more links to external data.\n\nWould you like to change the document, and update all links\nto get the most recent data?" ;
};

String STR_DDE_ERROR
{
    Text [ en-US ] = "DDE link to % for % area % are not available." ;
};

WarningBox RID_SECURITY_WARNING_HYPERLINK
{
    HelpId = HID_WARNING_SECURITY_HYPERLINK;
    Buttons = WB_YES_NO ;
    DefButton = WB_DEF_NO ;
    Message [ en-US ] = "This hyperlink is going to open \"%s\". Do you want to proceed?" ;
};

WarningBox RID_SECURITY_WARNING_NO_HYPERLINKS
{
    //HelpId = HID_WARNING_SECURITY_NO_HYPERLINKS;
    Buttons = WB_OK ;
    DefButton = WB_DEF_OK ;
    Message [ en-US ] = "For security reasons, the hyperlink cannot be executed.\nThe stated address will not be opened.";
};

String RID_SECURITY_WARNING_TITLE
{
    Text [ en-US ] = "Security Warning" ;
};

ErrorBox RID_INVALID_URL_MSG
{
    Buttons = WB_OK ;
    Message [ en-US ] = "The URL is not valid." ;
};

String RID_INVALID_URL_TITLE
{
    Text = "%PRODUCTNAME %PRODUCTVERSION" ;
};

String RID_DESKTOP
{
    Text = "%PRODUCTNAME" ;
};

QueryBox RID_XMLSEC_QUERY_LOSINGSIGNATURE
{
//    HelpId = HID_XMLSEC_QUERY_LOSINGSIGNATURE;
    Buttons = WB_YES_NO ;
    DefButton = WB_DEF_NO ;
    Message [ en-US ] = "Saving will remove all existing signatures.\nDo you want to continue saving the document?" ;
};

QueryBox RID_XMLSEC_QUERY_SAVEBEFORESIGN
{
//    HelpId = HID_XMLSEC_QUERY_SAVEBEFORESIGN;
    Buttons = WB_YES_NO ;
    DefButton = WB_DEF_YES ;
    Message [ en-US ] = "The document has to be saved before it can be signed.\nDo you want to save the document?" ;
};

InfoBox RID_XMLSEC_INFO_WRONGDOCFORMAT
{
//    HelpId = HID_XMLSEC_INFO_WRONGDOCFORMAT;
    Message [ en-US ] = "This document must be saved in OpenDocument file format before it can be digitally signed." ;
};

String RID_XMLSEC_DOCUMENTSIGNED
{
    Text [ en-US ] = " (Signed)" ;
};

Image IMG_MISSING_1
{
    ImageBitmap = Bitmap { File = "sc05539.bmp" ; };
};

Image IMG_MISSING_2
{
    ImageBitmap = Bitmap { File = "sc05700.bmp" ; };
};

Image IMG_MISSING_3
{
    ImageBitmap = Bitmap { File = "sc06302.bmp" ; };
};

Image IMG_MISSING_4
{
    ImageBitmap = Bitmap { File = "sn064.bmp" ; };
};

String STR_STANDARD
{
    Text [ en-US ] = "Standard" ;
};

String RID_SVXSTR_FILELINK
{
    Text [ en-US ] = "Document" ;
};

String STR_NONE
{
    Text [ en-US ] = "- None -" ;
};
String RID_SVXSTR_GRAFIKLINK
{
    Text [ en-US ] = "Graphic" ;
};
String STR_SFX_FILTERNAME_ALL
{
    Text [ en-US ] = "All files (*.*)" ;
};
String RID_SVXSTR_EDITGRFLINK
{
    Text [ en-US ] = "Link graphics" ;
};
// i66948 used in project scripting
String STR_ERRUNOEVENTBINDUNG
{
    Text [ en-US ] = "An appropriate component method %1\ncould not be found.\n\nCheck spelling of method name.";
};
String RID_SVXSTR_GRFILTER_OPENERROR
{
    Text [ en-US ] = "Graphics file cannot be opened" ;
};
String RID_SVXSTR_GRFILTER_IOERROR
{
    Text [ en-US ] = "Graphics file cannot be read" ;
};
String RID_SVXSTR_GRFILTER_FORMATERROR
{
    Text [ en-US ] = "Unknown graphics format" ;
};
String RID_SVXSTR_GRFILTER_VERSIONERROR
{
    Text [ en-US ] = "This version of the graphics file is not supported" ;
};
String RID_SVXSTR_GRFILTER_FILTERERROR
{
    Text [ en-US ] = "Graphics filter not found" ;
};
String RID_SVXSTR_GRFILTER_TOOBIG
{
    Text [ en-US ] = "Not enough memory to insert graphic" ;
};