1/**************************************************************
2 *
3 * Licensed to the Apache Software Foundation (ASF) under one
4 * or more contributor license agreements.  See the NOTICE file
5 * distributed with this work for additional information
6 * regarding copyright ownership.  The ASF licenses this file
7 * to you under the Apache License, Version 2.0 (the
8 * "License"); you may not use this file except in compliance
9 * with the License.  You may obtain a copy of the License at
10 *
11 *   http://www.apache.org/licenses/LICENSE-2.0
12 *
13 * Unless required by applicable law or agreed to in writing,
14 * software distributed under the License is distributed on an
15 * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
16 * KIND, either express or implied.  See the License for the
17 * specific language governing permissions and limitations
18 * under the License.
19 *
20 *************************************************************/
21
22
23
24// note: the resource IDs of the strings herein *must* correspond to the
25// com::sun::star::sdb::ErrorCondition values.
26//
27// For a given error condition value n, the message string must have ID
28// <code>256 + 2*n</code>, and the SQL state string (if applicable) must
29// have ID <code>256 + 2*n + 1</code>.
30//
31// The messages must be localized, the SQL states must *not*.
32
33// ROW_SET_OPERATION_VETOED = 100
34String 256 + 2*100 + 0
35{
36    Text [ en-US ] = "The record operation has been vetoed.";
37};
38
39// PARSER_CYCLIC_SUB_QUERIES = 200
40String 256 + 2*200 + 0
41{
42    Text [ en-US ] = "The statement contains a cyclic reference to one or more sub queries.";
43};
44
45// DB_OBJECT_NAME_WITH_SLASHES = 300
46String 256 + 2*300 + 0
47{
48    Text [ en-US ] = "The name must not contain any slashes ('/').";
49};
50
51// DB_INVALID_SQL_NAME = 301
52String 256 + 2*301 + 0
53{
54    Text [ en-US ] = "$1$ is no SQL conform identifier.";
55};
56
57// DB_QUERY_NAME_WITH_QUOTES = 302
58String 256 + 2*302 + 0
59{
60    Text [ en-US ] = "Query names must not contain quote characters.";
61};
62
63// DB_OBJECT_NAME_IS_USED = 303
64String 256 + 2*303 + 0
65{
66    Text [ en-US ] = "The name '$1$' is already in use in the database.";
67};
68
69// DB_NOT_CONNECTED = 304
70String 256 + 2*304 + 0
71{
72	Text [ en-US ] = "No connection to the database exists.";
73};
74
75String 256 + 2*304 + 1
76{
77	Text = "08003";
78};
79
80String 256 + 2*500 + 0
81{
82    Text [ en-US ] = "No $1$ exists.";
83};
84
85// DATA_CANNOT_SELECT_UNFILTERED = 550
86String 256 + 2*550 + 0
87{
88    Text [ en-US ] = "Unable to display the complete table content. Please apply a filter.";
89};
90
91String 256 + 2*550 + 1
92{
93    Text = "IM001";
94};
95
96