1/*************************************************************************
2 *
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4 *
5 * Copyright 2000, 2010 Oracle and/or its affiliates.
6 *
7 * OpenOffice.org - a multi-platform office productivity suite
8 *
9 * This file is part of OpenOffice.org.
10 *
11 * OpenOffice.org is free software: you can redistribute it and/or modify
12 * it under the terms of the GNU Lesser General Public License version 3
13 * only, as published by the Free Software Foundation.
14 *
15 * OpenOffice.org is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18 * GNU Lesser General Public License version 3 for more details
19 * (a copy is included in the LICENSE file that accompanied this code).
20 *
21 * You should have received a copy of the GNU Lesser General Public License
22 * version 3 along with OpenOffice.org.  If not, see
23 * <http://www.openoffice.org/license.html>
24 * for a copy of the LGPLv3 License.
25 *
26 ************************************************************************/
27
28// note: the resource IDs of the strings herein *must* correspond to the
29// com::sun::star::sdb::ErrorCondition values.
30//
31// For a given error condition value n, the message string must have ID
32// <code>256 + 2*n</code>, and the SQL state string (if applicable) must
33// have ID <code>256 + 2*n + 1</code>.
34//
35// The messages must be localized, the SQL states must *not*.
36
37// ROW_SET_OPERATION_VETOED = 100
38String 256 + 2*100 + 0
39{
40    Text [ en-US ] = "The record operation has been vetoed.";
41};
42
43// PARSER_CYCLIC_SUB_QUERIES = 200
44String 256 + 2*200 + 0
45{
46    Text [ en-US ] = "The statement contains a cyclic reference to one or more sub queries.";
47};
48
49// DB_OBJECT_NAME_WITH_SLASHES = 300
50String 256 + 2*300 + 0
51{
52    Text [ en-US ] = "The name must not contain any slashes ('/').";
53};
54
55// DB_INVALID_SQL_NAME = 301
56String 256 + 2*301 + 0
57{
58    Text [ en-US ] = "$1$ is no SQL conform identifier.";
59};
60
61// DB_QUERY_NAME_WITH_QUOTES = 302
62String 256 + 2*302 + 0
63{
64    Text [ en-US ] = "Query names must not contain quote characters.";
65};
66
67// DB_OBJECT_NAME_IS_USED = 303
68String 256 + 2*303 + 0
69{
70    Text [ en-US ] = "The name '$1$' is already in use in the database.";
71};
72
73// DB_NOT_CONNECTED = 304
74String 256 + 2*304 + 0
75{
76	Text [ en-US ] = "No connection to the database exists.";
77};
78
79String 256 + 2*304 + 1
80{
81	Text = "08003";
82};
83
84String 256 + 2*500 + 0
85{
86    Text [ en-US ] = "No $1$ exists.";
87};
88
89// DATA_CANNOT_SELECT_UNFILTERED = 550
90String 256 + 2*550 + 0
91{
92    Text [ en-US ] = "Unable to display the complete table content. Please apply a filter.";
93};
94
95String 256 + 2*550 + 1
96{
97    Text = "IM001";
98};
99
100