Bump version to 4.1-6
[LibreOffice.git] / sfx2 / source / dialog / alienwarn.src
blob88a6fc1eb9eb96af0984c6ebfedfbb63ccf1be0b
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 #include "alienwarn.hrc"
21 #include "dialog.hrc"
22 #include "helpid.hrc"
24 ModalDialog RID_DLG_ALIEN_WARNING
26     HelpId = HID_WARNING_ALIENFORMAT;
27     Size = MAP_APPFONT( DIALOG_WIDTH, DIALOG_HEIGHT );
28     OutputSize = TRUE;
29     Closeable = FALSE;
30     Moveable = TRUE;
31     SVLook = TRUE;
33     Text [ en-US ] = "Confirm File Format";
35     FixedImage FI_QUERY
36     {
37         Pos = MAP_APPFONT( AW_COL_1, AW_ROW_1 );
38         Size = MAP_APPFONT( SYMBOL_EDGE, SYMBOL_EDGE );
39     };
40     FixedText FT_INFOTEXT
41     {
42         Pos = MAP_APPFONT( AW_COL_2, AW_ROW_1 );
43         Size = MAP_APPFONT( DIALOG_WIDTH-AW_COL_2-RSC_SP_DLG_INNERBORDER_RIGHT, INFO_TEXT_LINES*RSC_CD_FIXEDTEXT_HEIGHT );
44         NoLabel = TRUE;
45         Wordbreak = TRUE;
46         Text [ en-US ] = "This document may contain formatting or content that cannot be saved in the currently selected file format \"%FORMATNAME\".\n\nUse the default ODF file format to be sure that the document is saved correctly.";
47     };
48     OKButton PB_NO
49     {
50         Pos = MAP_APPFONT( AW_COL_2, AW_ROW_2 );
51         Size = MAP_APPFONT( RSC_CD_PUSHBUTTON_WIDTH, RSC_CD_PUSHBUTTON_HEIGHT );
52         DefButton = TRUE ;
53         Text [ en-US ] = "~Use %FORMATNAME Format";
54     };
55     CancelButton PB_YES
56     {
57         Pos = MAP_APPFONT( AW_COL_3, AW_ROW_2 );
58         Size = MAP_APPFONT( RSC_CD_PUSHBUTTON_WIDTH, RSC_CD_PUSHBUTTON_HEIGHT );
59         Text [ en-US ] = "Use ~ODF Format";
60     };
61     HelpButton PB_MOREINFO
62     {
63         Pos = MAP_APPFONT( AW_COL_4, AW_ROW_2 );
64         Size = MAP_APPFONT( RSC_CD_PUSHBUTTON_WIDTH, RSC_CD_PUSHBUTTON_HEIGHT );
65         Hide = TRUE ;
66         Text [ en-US ] = "~More Information...";
67     };
68     FixedLine FL_OPTION
69     {
70         Pos = MAP_APPFONT( 0, AW_ROW_3 );
71         Size = MAP_APPFONT( DIALOG_WIDTH, RSC_CD_FIXEDLINE_HEIGHT );
72     };
73     CheckBox CB_WARNING_OFF
74     {
75         HelpID = "sfx2:CheckBox:RID_DLG_ALIEN_WARNING:CB_WARNING_OFF";
76         Pos = MAP_APPFONT( AW_COL_2, AW_ROW_4 );
77         Size = MAP_APPFONT( DIALOG_WIDTH-AW_COL_2-RSC_SP_DLG_INNERBORDER_RIGHT, RSC_CD_CHECKBOX_HEIGHT );
78         WordBreak = TRUE ;
79         Text [ en-US ] = "~Ask when not saving in ODF format";
80     };
83 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */