summaryrefslogtreecommitdiff
path: root/sfx2/source/doc/templatedlg.src
blob: f9ce918bc781f6b55b28577735531671810ed8dd (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
/*
 * Copyright 2012 LibreOffice contributors.
 *
 * This Source Code Form is subject to the terms of the Mozilla Public
 * License, v. 2.0. If a copy of the MPL was not distributed with this
 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
 */

#include "doc.hrc"
#include "templatedlg.hrc"
#include "helpid.hrc"

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

String STR_CREATE_SHEET
{
    Text [ en-US ] = "Spreedsheet Template";
};

String STR_CREATE_PRESENT
{
    Text [ en-US ] = "Presentation Template";
};

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

String STR_ACTION_SORT_NAME
{
    Text [ en-US ] = "Sort by name";
};

String STR_MOVE_NEW
{
    Text [ en-US ] = "New folder";
};

String STR_MOVE_DELETE
{
    Text [ en-US ] = "No folder";
};

String STR_INPUT_NEW
{
    Text [ en-US ] = "Enter folder name:";
};

ModalDialog DLG_TEMPLATE_MANAGER
{
    HelpId = CMD_SID_TEMPLATE_MANAGER;
    OutputSize = TRUE;
    SVLook = TRUE;
    Moveable = TRUE;
    Closeable = TRUE;
    Hide = TRUE;
    Size = MAP_APPFONT ( 290 , 250 );
    Text [en-US] = "Template Manager";

    PushButton BTN_SELECT_ALL
    {
        Pos = MAP_APPFONT(10,5);
        Size = MAP_APPFONT(50,14);
        TabStop = TRUE;
        DefButton = TRUE;
        Text [en-US] = "All";
    };

    PushButton BTN_SELECT_DOCS
    {
        Pos = MAP_APPFONT(60,5);
        Size = MAP_APPFONT(50,14);
        TabStop = TRUE;
        Text [en-US] = "Documents";
    };

    PushButton BTN_SELECT_PRESENTATIONS
    {
        Pos = MAP_APPFONT(110,5);
        Size = MAP_APPFONT(50,14);
        TabStop = TRUE;
        Text [en-US] = "Presentations";
    };

    PushButton BTN_SELECT_SHEETS
    {
        Pos = MAP_APPFONT(160,5);
        Size = MAP_APPFONT(50,14);
        TabStop = TRUE;
        Text [en-US] = "Spreedsheets";
    };

    PushButton BTN_SELECT_DRAWS
    {
        Pos = MAP_APPFONT(210,5);
        Size = MAP_APPFONT(50,14);
        TabStop = TRUE;
        Text [en-US] = "Drawings";
    };

    ImageButton BTN_SELECTION_MODE
    {
        Pos = MAP_APPFONT(260,5);
        Size = MAP_APPFONT(20,14);
        TabStop = TRUE;

        ButtonImage = Image
        {
            ImageBitmap = Bitmap { File = "select.png" ; };
        };

        QuickHelpText [en-US] = "Enables selecting items by just clicking in the thumbnail or title.";
    };

    PushButton BTN_TEMPLATE_CLOSE
    {
        Size = MAP_APPFONT(50,14);
        TabStop = TRUE;
        Text [en-US] = "Close";
    };

    Control TEMPLATE_VIEW
    {
        Pos = MAP_APPFONT(5,30);
        Size = MAP_APPFONT(280,220);
        TabStop = TRUE;
    };

    Image IMG_CREATE_TEXT
    {
        ImageBitmap = Bitmap
        {
            File = "create_text.png";
        };
    };

    Image IMG_CREATE_SHEET
    {
        ImageBitmap = Bitmap
        {
            File = "create_sheet.png";
        };
    };

    Image IMG_CREATE_PRESENT
    {
        ImageBitmap = Bitmap
        {
            File = "create_present.png";
        };
    };

    Image IMG_CREATE_DRAW
    {
        ImageBitmap = Bitmap
        {
            File = "create_draw.png";
        };
    };

    Image IMG_ACTION_SORT
    {
        ImageBitmap = Bitmap
        {
            File = "sortascending.png";
        };
    };


    ToolBox TBX_ACTION_VIEW
    {
        SVLook = TRUE ;
        TabStop = TRUE ;
        Pos = MAP_APPFONT ( 4 , 22 ) ;

        ItemList =
        {
            ToolBoxItem
            {
                Identifier = TBI_TEMPLATE_CREATE;
                Text [ en-US ] = "Create a template" ;

                ItemImage = Image
                {
                    ImageBitmap = Bitmap { File = "create_text.png" ; };
                };
            };

            ToolBoxItem
            {
                Identifier = TBI_TEMPLATE_IMPORT ;
                Text [ en-US ] = "Import a template" ;

                ItemImage = Image
                {
                    ImageBitmap = Bitmap { File = "import.png" ; };
                };
            };
        };
    };

    ToolBox TBX_ACTION_ACTION
    {
        SVLook = TRUE ;
        TabStop = TRUE ;
        Pos = MAP_APPFONT ( 4 , 22 ) ;

        ItemList =
        {
            ToolBoxItem
            {
                Identifier = TBI_TEMPLATE_SEARCH;
                Text [en-US] = "Search";

                ItemImage = Image
                {
                    ImageBitmap = Bitmap { File = "search.png" ; };
                };
            };

            ToolBoxItem
            {
                Identifier = TBI_TEMPLATE_ACTION;
                Text [en-US] = "Action Menu";

                ItemImage = Image
                {
                    ImageBitmap = Bitmap { File = "exec_action.png" ; };
                };
            };
        };
    };

    ToolBox TBX_ACTION_TEMPLATES
    {
        SVLook = TRUE ;
        TabStop = TRUE ;
        Pos = MAP_APPFONT ( 4 , 22 ) ;
        Hide = TRUE;

        ItemList =
        {
            ToolBoxItem
            {
                Identifier = TBI_TEMPLATE_EDIT;
                Text [ en-US ] = "Edit";
            };

            ToolBoxItem
            {
                Identifier = TBI_TEMPLATE_PROPERTIES;
                Text [ en-US ] = "Properties";
            };

            ToolBoxItem
            {
                Identifier = TBI_TEMPLATE_MOVE;
                Text [ en-US ] = "Move to folder" ;
            };

            ToolBoxItem
            {
                Identifier = TBI_TEMPLATE_DELETE;
                Text [ en-US ] = "Delete";
            };
        };
    };
};