bump product version to 4.1.6.2
[LibreOffice.git] / dbaccess / source / ui / dlg / sqlmessage.src
blob0991505c2ec08567e10850bc560206ae13e7d40a
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 "dbaccess_helpid.hrc"
21 #include "dbu_dlg.hrc"
22 #include "sqlmessage.hrc"
24 //-------------------------------------------------------------------------
25 Image BMP_EXCEPTION_ERROR
27     ImageBitmap = Bitmap { File = "exerror.png"; };
28     MaskColor = Color { Red = 0xff00 ; Green = 0x0000 ; Blue = 0xff00 ; };
31 Image BMP_EXCEPTION_WARNING
33     ImageBitmap = Bitmap { File = "exwarning.png"; };
34     MaskColor = Color { Red = 0xff00 ; Green = 0x0000 ; Blue = 0xff00 ; };
37 Image BMP_EXCEPTION_INFO
39     ImageBitmap = Bitmap { File = "exinfo.png"; };
40     MaskColor = Color { Red = 0xff00 ; Green = 0x0000 ; Blue = 0xff00 ; };
43 ModalDialog DLG_SQLEXCEPTIONCHAIN
45     HelpID = "dbaccess:ModalDialog:DLG_SQLEXCEPTIONCHAIN";
46     Moveable = TRUE ;
47     Closeable = TRUE ;
48     OutputSize = TRUE ;
49     SVLook = TRUE ;
50     Size = MAP_APPFONT ( 240 , 150 ) ;
51     Text [ en-US ] = "%PRODUCTNAME Base" ;
53     FixedLine FL_DETAILS
54     {
55         Pos = MAP_APPFONT ( 6, 3 ) ;
56         Size = MAP_APPFONT ( 228, 8 ) ;
57         Text [ en-US ] = "Details";
58     };
59     FixedText FT_ERRORLIST
60     {
61         Pos = MAP_APPFONT ( 12, 12 ) ;
62         Size = MAP_APPFONT ( 85, 10 ) ;
63         Text [ en-US ] = "Error ~list:";
64         Group = TRUE;
65     };
66     Control CTL_ERRORLIST
67     {
68         Pos = MAP_APPFONT ( 12, 25 ) ;
69         Size = MAP_APPFONT ( 85, 93 ) ;
70         Border = TRUE;
71         TabStop = TRUE;
72         HelpId = HID_SQLERROR_EXCHAIN_ERRORS;
73     };
74     FixedText FT_DESCRIPTION
75     {
76         Pos = MAP_APPFONT ( 103, 12 ) ;
77         Size = MAP_APPFONT ( 125, 10 ) ;
78         Text [ en-US ] = "~Description:";
79         Group = TRUE;
80     };
81     MultiLineEdit ME_DESCRIPTION
82     {
83         Border = TRUE ;
84         Pos = MAP_APPFONT ( 103 , 25 ) ;
85         Size = MAP_APPFONT ( 125 , 93 ) ;
86         TabStop = TRUE ;
87         VScroll = TRUE ;
88         HelpId = HID_SQLERROR_EXCHAIN_TEXT;
89     };
90     OKButton PB_OK
91     {
92         Pos = MAP_APPFONT ( 95 , 130 ) ;
93         Size = MAP_APPFONT ( 50 , 14 ) ;
94         TabStop = TRUE ;
95         DefButton = TRUE ;
96     };
98     String STR_EXCEPTION_STATUS
99     {
100         Text [ en-US ] = "SQL Status";
101     };
102     String STR_EXCEPTION_ERRORCODE
103     {
104         Text [ en-US ] = "Error code";
105     };
108 String STR_EXPLAN_STRINGCONVERSION_ERROR
110     Text [ en-US ] = "A frequent reason for this error is an inappropriate character set setting for the language of your database. Check the setting by choosing Edit - Database - Properties.";
113 String STR_EXCEPTION_ERROR
115     Text [ en-US ] = "Error";
118 String STR_EXCEPTION_WARNING
120     Text [ en-US ] = "Warning";
123 String STR_EXCEPTION_INFO
125     Text [ en-US ] = "Information";
128 String STR_EXCEPTION_DETAILS
130     Text [ en-US ] = "Details";
133 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */