bump product version to 4.1.6.2
[LibreOffice.git] / uui / source / passworddlg.src
blobe7a4aaaacede274c50069d7b99735906c7abebc5
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*
3  * This file is part of the LibreOffice project.
4  *
5  * This Source Code Form is subject to the terms of the Mozilla Public
6  * License, v. 2.0. If a copy of the MPL was not distributed with this
7  * file, You can obtain one at http://mozilla.org/MPL/2.0/.
8  *
9  * This file incorporates work covered by the following license notice:
10  *
11  *   Licensed to the Apache Software Foundation (ASF) under one or more
12  *   contributor license agreements. See the NOTICE file distributed
13  *   with this work for additional information regarding copyright
14  *   ownership. The ASF licenses this file to you under the Apache
15  *   License, Version 2.0 (the "License"); you may not use this file
16  *   except in compliance with the License. You may obtain a copy of
17  *   the License at http://www.apache.org/licenses/LICENSE-2.0 .
18  */
20 #define __RSC
22 #include <ids.hrc>
23 #include <passworddlg.hrc>
25 ModalDialog DLG_UUI_PASSWORD
27     HelpId = HID_DLG_PASSWORD_UUI;
28     Border = TRUE ;
29     Moveable = TRUE ;
30     OutputSize = TRUE ;
31     SVLook = TRUE ;
32     Size = MAP_APPFONT( 165, 95 );
34     FixedText FT_PASSWORD
35     {
36         Pos = MAP_APPFONT( 3, 6 );
37         Size = MAP_APPFONT( 159, 8 );
38         WordBreak = TRUE;
39     };
41     Edit ED_PASSWORD
42     {
43         HelpID = "uui:Edit:DLG_UUI_PASSWORD:ED_PASSWORD";
44         Pos = MAP_APPFONT( 3, 17 );
45         Size = MAP_APPFONT( 159, 12 );
46         Border = TRUE ;
47         PassWord = TRUE ;
48     };
50     FixedText FT_CONFIRM_PASSWORD
51     {
52         Pos = MAP_APPFONT( 3, 34 );
53         Size = MAP_APPFONT( 159, 8 );
54         WordBreak = TRUE;
55     };
57     Edit ED_CONFIRM_PASSWORD
58     {
59         HelpID = "uui:Edit:DLG_UUI_PASSWORD:ED_CONFIRM_PASSWORD";
60         Pos = MAP_APPFONT( 3, 45 );
61         Size = MAP_APPFONT( 159, 12 );
62         Border = TRUE ;
63         PassWord = TRUE ;
64     };
66     FixedLine FL_FIXED_LINE_1
67     {
68         Pos = MAP_APPFONT( 0, 63 );
69         Size = MAP_APPFONT( 165, 8 );
70     };
72     HelpButton BTN_PASSWORD_HELP
73     {
74         Pos = MAP_APPFONT( 3, 76 );
75         Size = MAP_APPFONT( 50, 14 );
76     };
78     OKButton BTN_PASSWORD_OK
79     {
80         Pos = MAP_APPFONT( 59, 76 );
81         Size = MAP_APPFONT( 50, 14 );
82         DefButton = TRUE ;
83     };
85     CancelButton BTN_PASSWORD_CANCEL
86     {
87         Pos = MAP_APPFONT( 112, 76 );
88         Size = MAP_APPFONT( 50, 14 );
89     };
91     String STR_ENTER_PASSWORD_TO_OPEN
92     {
93         Text [ en-US ] = "Enter password to open file: \n";
94     };
96     String STR_ENTER_PASSWORD_TO_MODIFY
97     {
98         Text [ en-US ] = "Enter password to modify file: \n";
99     };
101     String STR_ENTER_SIMPLE_PASSWORD
102     {
103         Text [ en-US ] = "Enter password: ";
104     };
106     String STR_CONFIRM_SIMPLE_PASSWORD
107     {
108         Text [ en-US ] = "Confirm password: ";
109     };
111     String STR_TITLE_CREATE_PASSWORD
112     {
113         Text [ en-US ] = "Set Password";
114     };
116     String STR_TITLE_ENTER_PASSWORD
117     {
118         Text [ en-US ] = "Enter Password";
119     };
121     String STR_PASSWORD_MISMATCH
122     {
123         Text [ en-US ] = "The confirmation password did not match the password. Set the password again by entering the same password in both boxes." ;
124     };
127 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */