Version 4.0.0.1, tag libreoffice-4.0.0.1
[LibreOffice.git] / uui / source / passworddlg.src
blob29f4557a69c0958c6cf4bac8eede10b65ef84a97
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 #define __RSC
21 #include <ids.hrc>
22 #include <passworddlg.hrc>
24 ModalDialog DLG_UUI_PASSWORD
26     HelpId = HID_DLG_PASSWORD_UUI;
27     Border = TRUE ;
28     Moveable = TRUE ;
29     OutputSize = TRUE ;
30     SVLook = TRUE ;
31     Size = MAP_APPFONT( 165, 95 );
33     FixedText FT_PASSWORD
34     {
35         Pos = MAP_APPFONT( 3, 6 );
36         Size = MAP_APPFONT( 159, 8 );
37         WordBreak = TRUE;
38     };
40     Edit ED_PASSWORD
41     {
42         HelpID = "uui:Edit:DLG_UUI_PASSWORD:ED_PASSWORD";
43         Pos = MAP_APPFONT( 3, 17 );
44         Size = MAP_APPFONT( 159, 12 );
45         Border = TRUE ;
46         PassWord = TRUE ;
47     };
49     FixedText FT_CONFIRM_PASSWORD
50     {
51         Pos = MAP_APPFONT( 3, 34 );
52         Size = MAP_APPFONT( 159, 8 );
53         WordBreak = TRUE;
54     };
56     Edit ED_CONFIRM_PASSWORD
57     {
58         HelpID = "uui:Edit:DLG_UUI_PASSWORD:ED_CONFIRM_PASSWORD";
59         Pos = MAP_APPFONT( 3, 45 );
60         Size = MAP_APPFONT( 159, 12 );
61         Border = TRUE ;
62         PassWord = TRUE ;
63     };
65     FixedLine FL_FIXED_LINE_1
66     {
67         Pos = MAP_APPFONT( 0, 63 );
68         Size = MAP_APPFONT( 165, 8 );
69     };
71     HelpButton BTN_PASSWORD_HELP
72     {
73         Pos = MAP_APPFONT( 3, 76 );
74         Size = MAP_APPFONT( 50, 14 );
75     };
77     OKButton BTN_PASSWORD_OK
78     {
79         Pos = MAP_APPFONT( 59, 76 );
80         Size = MAP_APPFONT( 50, 14 );
81         DefButton = TRUE ;
82     };
84     CancelButton BTN_PASSWORD_CANCEL
85     {
86         Pos = MAP_APPFONT( 112, 76 );
87         Size = MAP_APPFONT( 50, 14 );
88     };
90     String STR_ENTER_PASSWORD_TO_OPEN
91     {
92         Text [ en-US ] = "Enter password to open file: \n";
93     };
95     String STR_ENTER_PASSWORD_TO_MODIFY
96     {
97         Text [ en-US ] = "Enter password to modify file: \n";
98     };
100     String STR_ENTER_SIMPLE_PASSWORD
101     {
102         Text [ en-US ] = "Enter password: ";
103     };
105     String STR_CONFIRM_SIMPLE_PASSWORD
106     {
107         Text [ en-US ] = "Confirm password: ";
108     };
110     String STR_TITLE_CREATE_PASSWORD
111     {
112         Text [ en-US ] = "Set Password";
113     };
115     String STR_TITLE_ENTER_PASSWORD
116     {
117         Text [ en-US ] = "Enter Password";
118     };
120     String STR_PASSWORD_MISMATCH
121     {
122         Text [ en-US ] = "The confirmation password did not match the password. Set the password again by entering the same password in both boxes." ;
123     };