/* -*- 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 #include #include #include #include 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: */