summaryrefslogtreecommitdiff
path: root/sw/source/ui/config/mailconfigpage.src
blob: aaf158898256b3b2c743db238f3468be0eb3854c (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
/* -*- 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 <mailconfigpage.hrc>
#include <config.hrc>
#include <helpid.h>
#include <cmdid.h>
#include <globals.hrc>


ModalDialog DLG_MM_TESTACCOUNTSETTINGS
{
    OutputSize = TRUE ;
    SVLook = TRUE ;
    HelpID = HID_MM_TESTACCOUNTSETTINGS;
    Size = MAP_APPFONT ( 250 , 176 ) ;
    Moveable = TRUE ;

    Text[ en-US ] = "Test Account Settings";

    FixedText FI_INFO
    {
        Pos = MAP_APPFONT ( 6 , 3 ) ;
        Size = MAP_APPFONT ( 238 , 8 ) ;
        Text[ en-US ] = "%PRODUCTNAME is testing the e-mail account settings...";
    };
    Control        LB_STATUS
    {
        Pos = MAP_APPFONT ( 6, 14 ) ;
        Size = MAP_APPFONT ( 238 , 50 ) ;
        Border = TRUE;
    };
    FixedText           FI_ERROR
    {
        Pos = MAP_APPFONT ( 6 , 68 ) ;
        Size = MAP_APPFONT ( 238 , 8 ) ;
        Text[ en-US ] = "Errors";
    };
    MultiLineEdit       ED_ERROR
    {
        HelpID = "sw:MultiLineEdit:DLG_MM_TESTACCOUNTSETTINGS:ED_ERROR";
        Pos = MAP_APPFONT ( 6 , 79 ) ;
        Size = MAP_APPFONT ( 238 , 60 ) ;
        Border = TRUE;
        Readonly = TRUE;
    };
    FixedLine   FL_SEPAPARATOR
    {
        Pos = MAP_APPFONT ( 0 , 145 ) ;
        Size = MAP_APPFONT ( 250 , 8 ) ;
    };
    PushButton          PB_STOP
    {
        HelpID = "sw:PushButton:DLG_MM_TESTACCOUNTSETTINGS:PB_STOP";
        Pos = MAP_APPFONT ( 85 , 156 ) ;
        Size = MAP_APPFONT ( 50 , 14 ) ;
        Text[ en-US ] = "~Stop";
    };
    CancelButton        PB_CANCEL
    {
        Pos = MAP_APPFONT ( 138 , 156 ) ;
        Size = MAP_APPFONT ( 50 , 14 ) ;
    };
    HelpButton          PB_HELP
    {
        Pos = MAP_APPFONT ( 194 , 156 ) ;
        Size = MAP_APPFONT ( 50 , 14 ) ;
    };
    #define IMGLIST_IDS\
        IdList = \
        { \
            FN_FORMULA_CANCEL ;\
            FN_FORMULA_APPLY     ;\
        }; \
        IdCount = 2

    ImageList ILIST
    {
        Prefix = "sc";
        MaskColor = IMAGE_MASK_COLOR;
        IMGLIST_IDS;
    };
    String ST_TASK
    {
        Text[ en-US ] = "Task";
    };
    String ST_STATUS
    {
        Text[ en-US ] = "Status";
    };
    String ST_ESTABLISH
    {
        Text[ en-US ] = "Establish network connection";
    };
    String ST_FINDSERVER
    {
        Text[ en-US ] = "Find outgoing mail server";
    };
    String ST_COMPLETED
    {
        Text[ en-US ] = "Successful";
    };
    String ST_FAILED
    {
        Text[ en-US ] = "Failed";
    };
    String ST_ERROR_SERVER
    {
        Text[ en-US ] = "%PRODUCTNAME could not connect to the outgoing mail server. Check your system's settings and the settings in %PRODUCTNAME. Check the server name, the port and the secure connections settings";
    };

};

/* vim:set shiftwidth=4 softtabstop=4 expandtab: */