Version 4.0.0.1, tag libreoffice-4.0.0.1
[LibreOffice.git] / cui / source / options / doclinkdialog.src
blob7fc25c2e0ad1f49e82d4fda58a18483d26aec1b3
1 /*
2  * This file is part of the LibreOffice project.
3  *
4  * This Source Code Form is subject to the terms of the Mozilla Public
5  * License, v. 2.0. If a copy of the MPL was not distributed with this
6  * file, You can obtain one at http://mozilla.org/MPL/2.0/.
7  *
8  * This file incorporates work covered by the following license notice:
9  *
10  *   Licensed to the Apache Software Foundation (ASF) under one or more
11  *   contributor license agreements. See the NOTICE file distributed
12  *   with this work for additional information regarding copyright
13  *   ownership. The ASF licenses this file to you under the Apache
14  *   License, Version 2.0 (the "License"); you may not use this file
15  *   except in compliance with the License. You may obtain a copy of
16  *   the License at http://www.apache.org/licenses/LICENSE-2.0 .
17  */
19 #include <cuires.hrc>
20 #include "doclinkdialog.hrc"
22 #define DIALOG_SIZE_X       200
23 #define DIALOG_SIZE_Y       94
24 #define BUTTON_SIZE_X       50
25 #define BUTTON_SIZE_Y       14
27 #define LABEL_WIDTH         50
29 #define HEIGHT_LABEL         8
30 #define HEIGHT_EDIT         12
32 #define LINE_1_Y            6
33 #define OFFSET_Y            6
35 ModalDialog DLG_DOCUMENTLINK
37     HelpID = "cui:ModalDialog:DLG_DOCUMENTLINK";
38     OutputSize = TRUE ;
39     SVLook = TRUE ;
40     Size = MAP_APPFONT ( DIALOG_SIZE_X , DIALOG_SIZE_Y ) ;
42     Moveable = TRUE ;
43     Closeable = TRUE ;
45     FixedText FT_URL
46     {
48         Pos = MAP_APPFONT ( 6, LINE_1_Y ) ;
49         Size = MAP_APPFONT ( DIALOG_SIZE_X - 6, HEIGHT_LABEL ) ;
50         Group = TRUE;
52         Text [ en-US ] = "~Database file";
53     };
54     ComboBox CMB_URL
55     {
56         HelpID = "cui:ComboBox:DLG_DOCUMENTLINK:CMB_URL";
57         Pos = MAP_APPFONT ( 6 , LINE_1_Y + OFFSET_Y + HEIGHT_LABEL - 3) ;
58         Size = MAP_APPFONT ( DIALOG_SIZE_X - 3*LINE_1_Y - BUTTON_SIZE_X , HEIGHT_EDIT ) ;
60         SVLook = TRUE ;
61         Border = TRUE ;
62         DropDown = TRUE ;
63         AutoHScroll = TRUE ;
64         TabStop = TRUE ;
65     };
66     PushButton PB_BROWSEFILE
67     {
68         HelpID = "cui:PushButton:DLG_DOCUMENTLINK:PB_BROWSEFILE";
69         Pos = MAP_APPFONT ( DIALOG_SIZE_X - BUTTON_SIZE_X - 6 , LINE_1_Y + OFFSET_Y + HEIGHT_LABEL - 4) ;
70         Size = MAP_APPFONT ( BUTTON_SIZE_X, BUTTON_SIZE_Y );
71         Text [ en-US ] = "~Browse...";
72     };
74     FixedText FT_NAME
75     {
76         Pos = MAP_APPFONT ( 6, LINE_1_Y + 2*OFFSET_Y + HEIGHT_LABEL + BUTTON_SIZE_Y - 3) ;
77         Size = MAP_APPFONT ( DIALOG_SIZE_X - 6, HEIGHT_LABEL ) ;
78         Group = TRUE;
80         Text [ en-US ] = "Registered ~name";
81     };
82     Edit ET_NAME
83     {
84         HelpID = "cui:Edit:DLG_DOCUMENTLINK:ET_NAME";
85         Pos = MAP_APPFONT ( 6, LINE_1_Y + 3*OFFSET_Y + 2*HEIGHT_LABEL + BUTTON_SIZE_Y - 6) ;
86         Size = MAP_APPFONT ( DIALOG_SIZE_X - 3*LINE_1_Y - BUTTON_SIZE_X , HEIGHT_EDIT ) ;
87         TabStop = TRUE ;
88         Border = TRUE ;
89     };
91     FixedLine FL_BOTTOM
92     {
93         Pos = MAP_APPFONT ( 4, LINE_1_Y + 4*OFFSET_Y + 2*HEIGHT_LABEL + BUTTON_SIZE_Y + HEIGHT_EDIT - 6);
94         Size = MAP_APPFONT ( DIALOG_SIZE_X - 8, 8 );
95     };
97     OKButton BTN_OK
98     {
99         Pos = MAP_APPFONT ( DIALOG_SIZE_X - 3 * ( BUTTON_SIZE_X + 3 ) - 6, DIALOG_SIZE_Y - 6 - BUTTON_SIZE_Y );
100         Size = MAP_APPFONT ( BUTTON_SIZE_X, BUTTON_SIZE_Y );
101         DefButton = TRUE;
102     };
103     CancelButton BTN_CANCEL
104     {
105         Pos = MAP_APPFONT ( DIALOG_SIZE_X - 2 * ( BUTTON_SIZE_X + 3 ) - 6, DIALOG_SIZE_Y - 6 - BUTTON_SIZE_Y );
106         Size = MAP_APPFONT ( BUTTON_SIZE_X, BUTTON_SIZE_Y );
107     };
108     HelpButton BTN_HELP
109     {
110         Pos = MAP_APPFONT ( DIALOG_SIZE_X - 1 * ( BUTTON_SIZE_X + 3 ) - 3, DIALOG_SIZE_Y - 6 - BUTTON_SIZE_Y );
111         Size = MAP_APPFONT ( BUTTON_SIZE_X, BUTTON_SIZE_Y );
112     };
114     String STR_EDIT_LINK
115     {
116         Text [ en-US ] = "Edit Database Link";
117     };
118     String STR_NEW_LINK
119     {
120         Text [ en-US ] = "Create Database Link";
121     };
124 String STR_LINKEDDOC_DOESNOTEXIST
126     Text [ en-US ] = "The file\n$file$\ndoes not exist.";
129 String STR_LINKEDDOC_NO_SYSTEM_FILE
131     Text [ en-US ] = "The file\n$file$\ndoes not exist in the local file system.";
134 String STR_NAME_CONFLICT
136     Text [ en-US ] = "The name '$file$' is already used for another database.\nPlease choose a different name.";
139 QueryBox QUERY_DELETE_CONFIRM
141     Buttons = WB_YES_NO ;
142     Message [ en-US ] = "Do you want to delete the entry?" ;