summaryrefslogtreecommitdiff
path: root/uui/source/logindlg.src
blob: ea3de7043c04ad19e98e7a19088d3b3ad8beff13 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
/*
 * This file is part of the LibreOffice project.
 *
 * This Source Code Form is subject to the terms of the Mozilla Public
 * License, v. 2.0. If a copy of the MPL was not distributed with this
 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
 *
 * This file incorporates work covered by the following license notice:
 *
 *   Licensed to the Apache Software Foundation (ASF) under one or more
 *   contributor license agreements. See the NOTICE file distributed
 *   with this work for additional information regarding copyright
 *   ownership. The ASF licenses this file to you under the Apache
 *   License, Version 2.0 (the "License"); you may not use this file
 *   except in compliance with the License. You may obtain a copy of
 *   the License at http://www.apache.org/licenses/LICENSE-2.0 .
 */

#define __RSC

#include "ids.hrc"
#include "logindlg.hrc"

ModalDialog DLG_UUI_LOGIN
{
    HelpId = HID_DLG_LOGIN ;
    Border = TRUE ;
    Moveable = TRUE ;
    OutputSize = TRUE ;
    SVLook = TRUE ;
    Size = MAP_APPFONT( 177 , 247 ) ;
    Text [ en-US ] = "Authentication Required" ;

    FixedText FT_LOGIN_ERROR
    {
        Pos = MAP_APPFONT( 6 , 6 ) ;
        Size = MAP_APPFONT( 165 , 8 ) ;
        Text [ en-US ] = "Message from server:" ;
    };

    FixedText FT_INFO_LOGIN_ERROR
    {
        Pos = MAP_APPFONT( 6 , 14 ) ;
        Size = MAP_APPFONT( 165 , 3*8 ) ;
        WordBreak = TRUE ;
    };

    FixedLine FL_LOGIN_1
    {
        Pos = MAP_APPFONT( 6 , 41 ) ;
        Size = MAP_APPFONT( 165 , 8 ) ;
    };

    FixedText FT_INFO_LOGIN_REQUEST
    {
        Pos = MAP_APPFONT( 6 , 52 ) ;
        Size = MAP_APPFONT( 165 , 2*8 ) ;
        WordBreak = TRUE ;
        Text [ en-US ] = "Enter user name and password for: \n%1" ;
    };

    String STR_LOGIN_REALM
    {
        Text [ en-US ] = "Enter user name and password for: \n\"%2\" on %1" ;
    };

    FixedLine FL_LOGIN_2
    {
        Pos = MAP_APPFONT( 6 , 71 ) ;
        Size = MAP_APPFONT( 165 , 8 ) ;
    };

    FixedText FT_LOGIN_PATH
    {
        Pos = MAP_APPFONT( 6 , 84 ) ;
        Size = MAP_APPFONT( 112 , 8 ) ;
        Text [ en-US ] = "~Path" ;
    };

    Edit ED_LOGIN_PATH
    {
        HelpId = HID_LOGIN_DLG_PATH;
        Border = TRUE ;
        Pos = MAP_APPFONT( 6 , 95 ) ;
        Size = MAP_APPFONT( 112 , 12 ) ;
    };
    PushButton BTN_LOGIN_PATH
    {
        HelpId = HID_LOGIN_DLG_BROWSE;
        Pos = MAP_APPFONT( 121 , 94 ) ;
        Size = MAP_APPFONT( 50 , 14 ) ;
        Text = "~Browse..." ;
    };

    FixedText FT_LOGIN_USERNAME
    {
        Pos = MAP_APPFONT( 6 , 110 ) ;
        Size = MAP_APPFONT( 165 , 8 ) ;
        Text [ en-US ] = "~User name" ;
    };

    Edit ED_LOGIN_USERNAME
    {
        HelpId = HID_LOGIN_DLG_USER_NAME;
        Border = TRUE ;
        Pos = MAP_APPFONT( 6 , 121 ) ;
        Size = MAP_APPFONT( 165 , 12 ) ;
    };

    FixedText FT_LOGIN_PASSWORD
    {
        Pos = MAP_APPFONT( 6 , 136 ) ;
        Size = MAP_APPFONT( 165 , 8 ) ;
        Text [ en-US ] = "Pass~word" ;
    };

    Edit ED_LOGIN_PASSWORD
    {
        HelpId = HID_LOGIN_DLG_PASSWORD;
        Border = TRUE ;
        Pos = MAP_APPFONT( 6 , 147 ) ;
        Size = MAP_APPFONT( 165 , 12 ) ;
        PassWord = TRUE ;
    };

    FixedText FT_LOGIN_ACCOUNT
    {
        Pos = MAP_APPFONT( 6 , 162 ) ;
        Size = MAP_APPFONT( 165 , 8 ) ;
        Text [ en-US ] = "A~ccount";
    };

    Edit ED_LOGIN_ACCOUNT
    {
        HelpId = HID_LOGIN_DLG_ACCOUNT;
        Border = TRUE ;
        Pos = MAP_APPFONT( 6 , 173 ) ;
        Size = MAP_APPFONT( 165 , 12 ) ;
        PassWord = TRUE ;
    };

    CheckBox CB_LOGIN_SAVEPASSWORD
    {
        HelpId = HID_LOGIN_DLG_REMEMBER_PASSWORD;
        Pos = MAP_APPFONT( 6 , 190 ) ;
        Size = MAP_APPFONT( 165 , 10 ) ;
        Text [ en-US ] = "~Remember password" ;
    };

    CheckBox CB_LOGIN_USESYSCREDS
    {
        HelpId = HID_LOGIN_DLG_USE_SYSTEM_CREDENTIALS;
        Pos = MAP_APPFONT( 6 , 203 ) ;
        Size = MAP_APPFONT( 165 , 10 ) ;
        Text [ en-US ] = "~Use system credentials" ;
    };

    FixedLine FL_BUTTONS
    {
        Pos = MAP_APPFONT( 0 , 216 ) ;
        Size = MAP_APPFONT( 177 , 8 ) ;
    };

    HelpButton BTN_LOGIN_HELP
    {
        Pos = MAP_APPFONT( 6 , 227 ) ;
        Size = MAP_APPFONT( 50 , 14 ) ;
    };

    OKButton BTN_LOGIN_OK
    {
        Pos = MAP_APPFONT( 66 , 227 ) ;
        Size = MAP_APPFONT( 50 , 14 ) ;
        DefButton = TRUE ;
    };

    CancelButton BTN_LOGIN_CANCEL
    {
        Pos = MAP_APPFONT( 121 , 227 ) ;
        Size = MAP_APPFONT( 50 , 14 ) ;
    };
};