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
|
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
/*
* 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 .
*/
#include "rtsetup.hrc"
String RID_RTS_RTSDIALOG_INVALID_TXT
{
Text [ en-US ] = "<ignore>";
};
String RID_TXT_QUERYFAXNUMBER
{
Text [ en-US ] = "Please enter the fax number.";
};
ModalDialog RID_RTS_PWDIALOG
{
HelpID = "padmin:ModalDialog:RID_RTS_PWDIALOG";
Text [ en-US ] = "Authentication request";
OutputSize = TRUE ;
SVLook = TRUE ;
Size = MAP_APPFONT ( 150 , 90 ) ;
Moveable = TRUE ;
Closeable = TRUE ;
FixedText RID_RTS_PWDIALOG_TXT
{
Pos = MAP_APPFONT( 5, 5 );
Size = MAP_APPFONT( 140, 20 );
WordBreak = TRUE;
Text [ en-US ] = "Please enter your authentication data for server %s";
};
FixedText RID_RTS_PWDIALOG_USER_TXT
{
Pos = MAP_APPFONT( 5, 30 );
Size = MAP_APPFONT( 60, 10 );
Text [ en-US ] = "~User";
};
Edit RID_RTS_PWDIALOG_USER_EDT
{
HelpID = "padmin:Edit:RID_RTS_PWDIALOG:RID_RTS_PWDIALOG_USER_EDT";
Pos = MAP_APPFONT( 70, 29 );
Size = MAP_APPFONT( 75, 12 );
Border = TRUE;
};
FixedText RID_RTS_PWDIALOG_PASS_TXT
{
Pos = MAP_APPFONT( 5, 45 );
Size = MAP_APPFONT( 60, 10 );
Text [ en-US ] = "~Password";
};
Edit RID_RTS_PWDIALOG_PASS_EDT
{
HelpID = "padmin:Edit:RID_RTS_PWDIALOG:RID_RTS_PWDIALOG_PASS_EDT";
Pos = MAP_APPFONT( 70, 44 );
Size = MAP_APPFONT( 75, 12 );
Border = TRUE;
Password = TRUE;
};
CancelButton RID_RTS_PWDIALOG_CANCEL_BTN
{
Pos = MAP_APPFONT( 95, 70 );
Size = MAP_APPFONT( 50, 15 );
};
OKButton RID_RTS_PWDIALOG_OK_BTN
{
Pos = MAP_APPFONT( 5, 70 );
Size = MAP_APPFONT( 50, 15 );
DefButton = TRUE;
};
};
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|