xref: /trunk/main/sw/source/ui/misc/bookmark.src (revision cdf0e10c4e3984b49a9502b011690b615761d4a3)
1/*************************************************************************
2 *
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4 *
5 * Copyright 2000, 2010 Oracle and/or its affiliates.
6 *
7 * OpenOffice.org - a multi-platform office productivity suite
8 *
9 * This file is part of OpenOffice.org.
10 *
11 * OpenOffice.org is free software: you can redistribute it and/or modify
12 * it under the terms of the GNU Lesser General Public License version 3
13 * only, as published by the Free Software Foundation.
14 *
15 * OpenOffice.org is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18 * GNU Lesser General Public License version 3 for more details
19 * (a copy is included in the LICENSE file that accompanied this code).
20 *
21 * You should have received a copy of the GNU Lesser General Public License
22 * version 3 along with OpenOffice.org.  If not, see
23 * <http://www.openoffice.org/license.html>
24 * for a copy of the LGPLv3 License.
25 *
26 ************************************************************************/
27
28#include "misc.hrc"
29#include "bookmark.hrc"
30#include "cmdid.h"
31#include "helpid.h"
32ModalDialog DLG_INSERT_BOOKMARK
33{
34    HelpID = CMD_FN_INSERT_BOOKMARK ;
35    OUTPUTSIZE = TRUE ;
36    Size = MAP_APPFONT ( 179 , 96 ) ;
37    /* ### ACHTUNG: Neuer Text in Resource? Textmarke einf�gen : Textmarke einf�gen */
38    Text [ en-US ] = "Insert Bookmark" ;
39    MOVEABLE = TRUE ;
40    SVLOOK = TRUE ;
41    OkButton BT_OK
42    {
43        DISABLE = TRUE ;
44        Pos = MAP_APPFONT ( 123 , 6 ) ;
45        Size = MAP_APPFONT ( 50 , 14 ) ;
46        TABSTOP = TRUE ;
47        DefButton = TRUE ;
48    };
49    CancelButton BT_CANCEL
50    {
51        Pos = MAP_APPFONT ( 123 , 23 ) ;
52        Size = MAP_APPFONT ( 50 , 14 ) ;
53        TABSTOP = TRUE ;
54    };
55    ComboBox CB_BOOKMARK
56    {
57        HelpID = "sw:ComboBox:DLG_INSERT_BOOKMARK:CB_BOOKMARK";
58        Pos = MAP_APPFONT ( 12 , 14 ) ;
59        Size = MAP_APPFONT ( 99 , 76 ) ;
60        TABSTOP = TRUE ;
61        AutoHScroll = TRUE ;
62        SORT = TRUE ;
63    };
64    PushButton BT_DELETE
65    {
66        HelpID = "sw:PushButton:DLG_INSERT_BOOKMARK:BT_DELETE";
67        Pos = MAP_APPFONT ( 123 , 40 ) ;
68        Size = MAP_APPFONT ( 50 , 14 ) ;
69        /* ### ACHTUNG: Neuer Text in Resource? ~L�schen : ~L�schen */
70        Text [ en-US ] = "~Delete" ;
71        TABSTOP = TRUE ;
72        DISABLE = TRUE ;
73    };
74    FixedLine FL_BOOKMARK
75    {
76        Pos = MAP_APPFONT ( 6 , 3 ) ;
77        Size = MAP_APPFONT ( 111 , 8 ) ;
78        Text [ en-US ] = "Bookmarks" ;
79    };
80};
81String STR_REMOVE_WARNING
82{
83    Text [ en-US ] = "The following characters are not valid and have been removed: ";
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