update dev300-m58
[ooovba.git] / svx / source / cui / doclinkdialog.src
blob29a72695d74af6ed4986b69affe1d687f278aa93
1 /*************************************************************************
2  *
3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4  * 
5  * Copyright 2008 by Sun Microsystems, Inc.
6  *
7  * OpenOffice.org - a multi-platform office productivity suite
8  *
9  * $RCSfile: doclinkdialog.src,v $
10  * $Revision: 1.8 $
11  *
12  * This file is part of OpenOffice.org.
13  *
14  * OpenOffice.org is free software: you can redistribute it and/or modify
15  * it under the terms of the GNU Lesser General Public License version 3
16  * only, as published by the Free Software Foundation.
17  *
18  * OpenOffice.org is distributed in the hope that it will be useful,
19  * but WITHOUT ANY WARRANTY; without even the implied warranty of
20  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
21  * GNU Lesser General Public License version 3 for more details
22  * (a copy is included in the LICENSE file that accompanied this code).
23  *
24  * You should have received a copy of the GNU Lesser General Public License
25  * version 3 along with OpenOffice.org.  If not, see
26  * <http://www.openoffice.org/license.html>
27  * for a copy of the LGPLv3 License.
28  *
29  ************************************************************************/
31 #include <svx/dialogs.hrc>
32 #ifndef _SVX_DOCLINKDIALOG_HRC_
33 #include "doclinkdialog.hrc"
34 #endif
36 #define DIALOG_SIZE_X           200
37 #define DIALOG_SIZE_Y           94
38 #define BUTTON_SIZE_X           50
39 #define BUTTON_SIZE_Y           14
41 #define LABEL_WIDTH                     50
43 #define HEIGHT_LABEL             8
44 #define HEIGHT_EDIT                     12
46 #define LINE_1_Y                        6
47 #define LINE_2_Y                        LINE_1_Y + HEIGHT_EDIT + 4
48 #define OFFSET_Y                        6
50 ModalDialog DLG_DOCUMENTLINK
52     OutputSize = TRUE ;
53     SVLook = TRUE ;
54     Size = MAP_APPFONT ( DIALOG_SIZE_X , DIALOG_SIZE_Y ) ;
55     
56     Moveable = TRUE ;
57     Closeable = TRUE ;
58     
59     FixedText FT_URL
60     {
61         
62         Pos = MAP_APPFONT ( 6, LINE_1_Y ) ;
63         Size = MAP_APPFONT ( DIALOG_SIZE_X - 6, HEIGHT_LABEL ) ;
64         Group = TRUE;
66         Text [ en-US ] = "~Database file";
67     };
68     ComboBox CMB_URL
69     {
70         Pos = MAP_APPFONT ( 6 , LINE_1_Y + OFFSET_Y + HEIGHT_LABEL - 3) ;
71         Size = MAP_APPFONT ( DIALOG_SIZE_X - 3*LINE_1_Y - BUTTON_SIZE_X , HEIGHT_EDIT ) ;
73         SVLook = TRUE ;
74         Border = TRUE ;
75         DropDown = TRUE ;
76         AutoHScroll = TRUE ;
77         TabStop = TRUE ;
78     };
79     PushButton PB_BROWSEFILE
80     {
81         Pos = MAP_APPFONT ( DIALOG_SIZE_X - BUTTON_SIZE_X - 6 , LINE_1_Y + OFFSET_Y + HEIGHT_LABEL - 4) ;
82         Size = MAP_APPFONT ( BUTTON_SIZE_X, BUTTON_SIZE_Y );
83         Text [ en-US ] = "~Browse...";
84     };
86     FixedText FT_NAME
87     {
88         Pos = MAP_APPFONT ( 6, LINE_1_Y + 2*OFFSET_Y + HEIGHT_LABEL + BUTTON_SIZE_Y - 3) ;
89         Size = MAP_APPFONT ( DIALOG_SIZE_X - 6, HEIGHT_LABEL ) ;
90         Group = TRUE;
92         Text [ en-US ] = "Registered ~name";
93     };
94     Edit ET_NAME
95     {
96         Pos = MAP_APPFONT ( 6, LINE_1_Y + 3*OFFSET_Y + 2*HEIGHT_LABEL + BUTTON_SIZE_Y - 6) ;
97         Size = MAP_APPFONT ( DIALOG_SIZE_X - 3*LINE_1_Y - BUTTON_SIZE_X , HEIGHT_EDIT ) ;
98         TabStop = TRUE ;
99         Border = TRUE ;
100     };
101     
102     FixedLine FL_BOTTOM
103     {
104         Pos = MAP_APPFONT ( 4, LINE_1_Y + 4*OFFSET_Y + 2*HEIGHT_LABEL + BUTTON_SIZE_Y + HEIGHT_EDIT - 6);
105         Size = MAP_APPFONT ( DIALOG_SIZE_X - 8, 8 );
106     };
108     OKButton BTN_OK
109     {
110         Pos = MAP_APPFONT ( DIALOG_SIZE_X - 3 * ( BUTTON_SIZE_X + 3 ) - 6, DIALOG_SIZE_Y - 6 - BUTTON_SIZE_Y );
111         Size = MAP_APPFONT ( BUTTON_SIZE_X, BUTTON_SIZE_Y );
112         DefButton = TRUE;
113     };
114     CancelButton BTN_CANCEL
115     {
116         Pos = MAP_APPFONT ( DIALOG_SIZE_X - 2 * ( BUTTON_SIZE_X + 3 ) - 6, DIALOG_SIZE_Y - 6 - BUTTON_SIZE_Y );
117         Size = MAP_APPFONT ( BUTTON_SIZE_X, BUTTON_SIZE_Y );
118     };
119     HelpButton BTN_HELP
120     {
121         Pos = MAP_APPFONT ( DIALOG_SIZE_X - 1 * ( BUTTON_SIZE_X + 3 ) - 3, DIALOG_SIZE_Y - 6 - BUTTON_SIZE_Y );
122         Size = MAP_APPFONT ( BUTTON_SIZE_X, BUTTON_SIZE_Y );
123     };
125     String STR_EDIT_LINK
126     {
127         Text [ en-US ] = "Edit Database Link";
128     };
129     String STR_NEW_LINK
130     {
131         Text [ en-US ] = "Create Database Link";
132     };
135 String STR_LINKEDDOC_DOESNOTEXIST
137     Text [ en-US ] = "The file\n$file$\ndoes not exist.";
140 String STR_LINKEDDOC_NO_SYSTEM_FILE
142     Text [ en-US ] = "The file\n$file$\ndoes not exist in the local file system.";
145 String STR_NAME_CONFLICT
147     Text [ en-US ] = "The name '$file$' is already used for another database.\nPlease choose a different name.";
150 QueryBox QUERY_DELETE_CONFIRM
152     Buttons = WB_YES_NO ;
153     Message [ en-US ] = "Do you want to delete the entry?" ;