bump product version to 4.1.6.2
[LibreOffice.git] / uui / source / sslwarndlg.src
blob3e28cc4689ec8d522efe6fe8d05a09733a07759a
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  */
19 #define __RSC
21 #include <ids.hrc>
22 #include <sslwarndlg.hrc>
24 ModalDialog DLG_UUI_SSLWARN
26     HelpId = HID_DLG_SSLWARN_UUI;
27     Border = TRUE ;
28     Moveable = TRUE ;
29     OutputSize = TRUE ;
30     SVLook = TRUE ;
31     Size = MAP_APPFONT( DLG_WIDTH, DLG_HEIGHT );
33     Text [ en-US ] = "Security Warning: ";
35     FixedText FT_LABEL_1
36     {
37         Pos = MAP_APPFONT( DLG_TEXT_START_X, RSC_SP_DLG_INNERBORDER_TOP );
38         Size = MAP_APPFONT( 195, DLG_TEXT_1_HEIGHT );
40         Text [ en-US ] = "No Text";
42         Border = FALSE;
43         WordBreak = TRUE;
44     };
46     PushButton PB_VIEW__CERTIFICATE
47     {
48         HelpID = "uui:PushButton:DLG_UUI_SSLWARN:PB_VIEW__CERTIFICATE";
49         Pos = MAP_APPFONT( DLG_CTLBTN_CERT_START_X, DLG_CTLBTN_START_Y );
50         Size = MAP_APPFONT( DLG_CTLBTN_CERT_PUSHBUTTON_WIDTH, RSC_CD_PUSHBUTTON_HEIGHT );
52         Text [ en-US ] = "View Certificate";
54     };
56     CancelButton PB_CANCEL
57     {
58         Pos = MAP_APPFONT( DLG_CTLBTN_CANCEL_START_X, DLG_CTLBTN_START_Y );
59         Size = MAP_APPFONT( DLG_CTLBTN_CANCEL_PUSHBUTTON_WIDTH, RSC_CD_PUSHBUTTON_HEIGHT );
61         Text [ en-US ] = "Cancel Connection";
63     };
65     PushButton PB_OK
66     {
67         HelpID = "uui:PushButton:DLG_UUI_SSLWARN:PB_OK";
68         Pos = MAP_APPFONT( DLG_CTLBTN_OK_START_X, DLG_CTLBTN_START_Y );
69         Size = MAP_APPFONT( RSC_CD_PUSHBUTTON_WIDTH, RSC_CD_PUSHBUTTON_HEIGHT );
71         Text [ en-US ] = "Continue";
73     };
75     FixedImage IMG_WARN
76     {
77         Pos = MAP_APPFONT( RSC_SP_DLG_INNERBORDER_LEFT, RSC_SP_DLG_INNERBORDER_TOP );
78         Size = MAP_APPFONT( DLG_WARMIMG_WIDTH , DLG_WARMIMG_HEIGHT );
80         Fixed = Image
81         {
82             /* ImageBitmap = Bitmap { File = "certificate_40x56.png"; }; */
83             MaskColor = Color{Red=0xffff;Green=0x0000;Blue=0xffff;};
84         };
86     };
88     FixedLine FL_LINE
89     {
90         Pos = MAP_APPFONT( 0, DLG_CTLBTN_START_Y - RSC_SP_FLGR_INNERBORDER_TOP -  RSC_CD_FIXEDLINE_HEIGHT );
91         Size = MAP_APPFONT( DLG_WIDTH,  RSC_CD_FIXEDLINE_HEIGHT );
92     };
95 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */