bump product version to 4.1.6.2
[LibreOffice.git] / uui / source / newerverwarn.src
blob7a9476c617390385560767eebdb5cfa341f045a2
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  */
20 #define __RSC
22 #include "newerverwarn.hrc"
23 #include "ids.hrc"
25 #define STD_MASKCOLOR Color { Red=0xffff; Green=0x0000; Blue=0xffff; }
27 ModalDialog RID_DLG_NEWER_VERSION_WARNING
29     HelpId = HID_DLG_NEWERVERSIONWARNING;
30     OutputSize = TRUE ;
31     Size = MAP_APPFONT ( DLG_WIDTH , DLG_HEIGHT ) ;
32     SvLook = TRUE ;
33     Moveable = TRUE ;
34     Closeable = TRUE ;
35     Text [ en-US ] = "%PRODUCTNAME Update Available" ;
36     FixedImage FI_IMAGE
37     {
38         Pos = MAP_APPFONT ( COL_1 , ROW_1  );
39         Size = MAP_APPFONT ( IMAGE_WIDTH , IMAGE_HEIGHT );
40         Hide = FALSE;
41         Fixed = Image
42         {
43             ImageBitmap = Bitmap { File = "versionwarning.png"; };
44             MaskColor = STD_MASKCOLOR;
45         };
46     };
47     FixedText FT_INFO
48     {
49         Pos = MAP_APPFONT( COL_2, ROW_1 );
50         Size = MAP_APPFONT( INFO_WIDTH, INFO_LINES * RSC_CD_FIXEDTEXT_HEIGHT );
51         Wordbreak = TRUE;
52         Text [ en-US ] = "This document was created by a newer version of %PRODUCTNAME. It may contain features not supported by your current version.\n\nClick 'Update Now...' to run online update and get the latest version of %PRODUCTNAME.";
53     };
54     FixedLine FL_BUTTON
55     {
56         Pos = MAP_APPFONT ( 0 , ROW_2 ) ;
57         Size = MAP_APPFONT ( DLG_WIDTH , RSC_CD_FIXEDLINE_HEIGHT ) ;
58     };
59     PushButton PB_UPDATE
60     {
61         HelpID = "uui:PushButton:RID_DLG_NEWER_VERSION_WARNING:PB_UPDATE";
62         Pos = MAP_APPFONT ( COL_3 , ROW_3 ) ;
63         Size = MAP_APPFONT ( RSC_CD_PUSHBUTTON_WIDTH , RSC_CD_PUSHBUTTON_HEIGHT ) ;
64         TabStop = TRUE ;
65         Text [ en-US ] = "~Update Now..." ;
66     };
67     CancelButton PB_LATER
68     {
69         Pos = MAP_APPFONT ( COL_4 , ROW_3 ) ;
70         Size = MAP_APPFONT ( RSC_CD_PUSHBUTTON_WIDTH , RSC_CD_PUSHBUTTON_HEIGHT ) ;
71         TabStop = TRUE ;
72         Text [ en-US ] = "~Later" ;
73     };
76 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */