xref: /trunk/main/cui/source/options/webconninfo.src (revision cdf0e10c)
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 --------------------------------------------------------------
29
30#include <svtools/controldims.hrc>
31#include "webconninfo.hrc"
32#include <cuires.hrc>
33#include "helpid.hrc"
34
35ModalDialog RID_SVXDLG_WEBCONNECTION_INFO
36{
37    HelpID = HID_DLG_WEBCONNECTION_INFO ;
38	OutputSize = TRUE ;
39	SVLook = TRUE ;
40	Size = MAP_APPFONT ( DLG_WIDTH , DLG_HEIGHT ) ;
41	Moveable = TRUE ;
42	Closeable = TRUE ;
43    Text [ en-US ] = "Stored Web Connection Information" ;
44    FixedText FI_NEVERSHOWN
45	{
46        Pos = MAP_APPFONT( COL_0, ROW_0 );
47        Size = MAP_APPFONT( COL_2-COL_0, RSC_CD_FIXEDTEXT_HEIGHT );
48        Text [ en-US ] = "Web login information (passwords are never shown)";
49	};
50    Control LB_PASSWORDS
51    {
52        Pos = MAP_APPFONT ( COL_0 , ROW_1 ) ;
53        Size = MAP_APPFONT ( COL_2-COL_0 , ROW_2-ROW_1 ) ;
54        Border = TRUE ;
55        TabStop = TRUE ;
56    };
57    PushButton PB_REMOVE
58    {
59        HelpID = "cui:PushButton:RID_SVXDLG_WEBCONNECTION_INFO:PB_REMOVE";
60        Pos = MAP_APPFONT ( COL_0 , ROW_3 ) ;
61        Size = MAP_APPFONT ( RSC_CD_PUSHBUTTON_WIDTH , RSC_CD_PUSHBUTTON_HEIGHT ) ;
62        Text [ en-US ] = "Remove";
63    };
64    PushButton PB_REMOVEALL
65    {
66        HelpID = "cui:PushButton:RID_SVXDLG_WEBCONNECTION_INFO:PB_REMOVEALL";
67        Pos = MAP_APPFONT ( COL_1 , ROW_3 ) ;
68        Size = MAP_APPFONT ( RSC_CD_PUSHBUTTON_WIDTH , RSC_CD_PUSHBUTTON_HEIGHT ) ;
69        Text [ en-US ] = "Remove All";
70    };
71    PushButton PB_CHANGE
72    {
73        HelpID = "cui:PushButton:RID_SVXDLG_WEBCONNECTION_INFO:PB_CHANGE";
74        Pos = MAP_APPFONT ( COL_C , ROW_3 ) ;
75        Size = MAP_APPFONT ( RSC_CD_PUSHBUTTON_WIDTH , RSC_CD_PUSHBUTTON_HEIGHT ) ;
76        Text [ en-US ] = "Change Password...";
77    };
78    FixedLine FL_BUTTONS
79	{
80        Pos = MAP_APPFONT( 0, ROW_4 );
81        Size = MAP_APPFONT( DLG_WIDTH, RSC_CD_FIXEDLINE_HEIGHT );
82	};
83	CancelButton PB_CLOSE
84	{
85        Pos = MAP_APPFONT ( COL_B , ROW_5 ) ;
86		Size = MAP_APPFONT ( RSC_CD_PUSHBUTTON_WIDTH , RSC_CD_PUSHBUTTON_HEIGHT ) ;
87		TabStop = TRUE ;
88		DefButton = TRUE ;
89        Text [ en-US ] = "Close";
90	};
91	HelpButton PB_HELP
92	{
93        Pos = MAP_APPFONT ( COL_C , ROW_5 ) ;
94		Size = MAP_APPFONT ( RSC_CD_PUSHBUTTON_WIDTH , RSC_CD_PUSHBUTTON_HEIGHT ) ;
95		TabStop = TRUE ;
96	};
97    String STR_WEBSITE
98    {
99        Text [ en-US ] = "Website";
100    };
101    String STR_USERNAME
102    {
103        Text [ en-US ] = "User name";
104    };
105};
106
107