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#include "core_resource.hrc"
29#include "dbamiscres.hrc"
30
31String RID_STR_TRIED_OPEN_TABLE
32{
33	Text [ en-US ] = "Tried to open the table $name$.";
34};
35String RID_STR_CONNECTION_INVALID
36{
37	Text [ en-US ] = "No connection could be established.";
38};
39
40String RID_STR_TABLE_IS_FILTERED
41{
42	Text [ en-US ] = "The table $name$ already exists. It is not visible because it has been filtered out.";
43};
44
45String RID_STR_NEED_CONFIG_WRITE_ACCESS
46{
47	Text [ en-US ] = "You have no write access to the configuration data the object is based on.";
48};
49
50
51String RID_STR_COULDNOTCONNECT_UNSPECIFIED
52{
53	Text [ en-US ] = "The connection to the external data source could not be established. An unknown error occurred. The driver is probably defective.";
54};
55
56String RID_STR_COULDNOTCONNECT_NODRIVER
57{
58	Text [ en-US ] = "The connection to the external data source could not be established. No SDBC driver was found for the given URL.";
59};
60
61String RID_STR_COULDNOTLOAD_MANAGER
62{
63	Text [ en-US ] = "The connection to the external data source could not be established. The SDBC driver manager could not be loaded.";
64};
65
66String RID_STR_FORM
67{
68	Text [ en-US ] = "Form";
69};
70
71String RID_STR_REPORT
72{
73	Text [ en-US ] = "Report";
74};
75
76String RID_STR_DATASOURCE_NOT_STORED
77{
78	Text [ en-US ] = "The data source was not saved. Please use the interface XStorable to save the data source.";
79};
80String RID_STR_ONLY_QUERY
81{
82	Text [ en-US ] = "The given command is not a SELECT statement.\nOnly queries are allowed.";
83};
84String RID_STR_NO_VALUE_CHANGED
85{
86	Text [ en-US ] = "No values were modified.";
87};
88String RID_STR_NO_XROWUPDATE
89{
90	Text [ en-US ] = "Values could not be inserted. The XRowUpdate interface is not supported by ResultSet.";
91};
92String RID_STR_NO_XRESULTSETUPDATE
93{
94	Text [ en-US ] = "Values could not be inserted. The XResultSetUpdate interface is not supported by ResultSet.";
95};
96String RID_STR_NO_UPDATE_MISSING_CONDITION
97{
98	Text [ en-US ] = "Values could not be modified, due to a missing condition statement.";
99};
100String RID_STR_NO_COLUMN_ADD
101{
102	Text [ en-US ] = "The adding of columns is not supported.";
103};
104String RID_STR_NO_COLUMN_DROP
105{
106	Text [ en-US ] = "The dropping of columns is not supported.";
107};
108String RID_STR_NO_CONDITION_FOR_PK
109{
110	Text [ en-US ] = "The WHERE condition could not be created for the primary key.";
111};
112String RID_STR_COLUMN_UNKNOWN_PROP
113{
114	Text [ en-US ] = "The column does not support the property '%value'.";
115};
116String RID_STR_COLUMN_NOT_SEARCHABLE
117{
118	Text [ en-US ] = "The column is not searchable!";
119};
120String RID_STR_NOT_SEQUENCE_INT8
121{
122	Text [ en-US ] = "The value of the columns is not of the type Sequence<sal_Int8>.";
123};
124String RID_STR_COLUMN_NOT_VALID
125{
126	Text [ en-US ] = "The column is not valid.";
127};
128String RID_STR_COLUMN_MUST_VISIBLE
129{
130	Text [ en-US ] = "The column '%name' must be visible as a column.";
131};
132String RID_STR_NO_XQUERIESSUPPLIER
133{
134	Text [ en-US ] = "The interface XQueriesSupplier is not available.";
135};
136String RID_STR_NOT_SUPPORTED_BY_DRIVER
137{
138	Text [ en-US ] = "The driver does not support this function.";
139};
140String RID_STR_NO_ABS_ZERO
141{
142	Text [ en-US ] = "An 'absolute(0)' call is not allowed.";
143};
144String RID_STR_NO_RELATIVE
145{
146	Text [ en-US ] = "Relative positioning is not allowed in this state.";
147};
148String RID_STR_NO_REFESH_AFTERLAST
149{
150	Text [ en-US ] = "A row cannot be refreshed when the ResultSet is positioned after the last row.";
151};
152String RID_STR_NO_MOVETOINSERTROW_CALLED
153{
154	Text [ en-US ] = "A new row cannot be inserted when the ResultSet is not first moved to the insert row.";
155};
156String RID_STR_NO_UPDATEROW
157{
158	Text [ en-US ] = "A row cannot be modified in this state";
159};
160String RID_STR_NO_DELETEROW
161{
162	Text [ en-US ] = "A row cannot be deleted in this state.";
163};
164String RID_STR_NO_TABLE_RENAME
165{
166	Text [ en-US ] = "The driver does not support table renaming.";
167};
168String RID_STR_NO_ALTER_COLUMN_DEF
169{
170	Text [ en-US ] = "The driver does not support the modification of column descriptions.";
171};
172String RID_STR_COLUMN_ALTER_BY_NAME
173{
174	Text [ en-US ] = "The driver does not support the modification of column descriptions by changing the name.";
175};
176String RID_STR_COLUMN_ALTER_BY_INDEX
177{
178	Text [ en-US ] = "The driver does not support the modification of column descriptions by changing the index.";
179};
180String RID_STR_FILE_DOES_NOT_EXIST
181{
182	Text[ en-US ] = "The file \"$file$\" does not exist.";
183};
184
185String RID_STR_TABLE_DOES_NOT_EXIST
186{
187    Text [ en-US ] = "There exists no table named \"$table$\".";
188};
189
190String RID_STR_QUERY_DOES_NOT_EXIST
191{
192    Text [ en-US ] = "There exists no query named \"$table$\".";
193};
194
195String RID_STR_CONFLICTING_NAMES
196{
197    Text [ en-US ] = "There are tables in the database whose names conflict with the names of existing queries. To make full use of all queries and tables, make sure they have distinct names.";
198};
199
200String RID_STR_COMMAND_LEADING_TO_ERROR
201{
202    Text [ en-US ] = "The SQL command leading to this error is:\n\n$command$";
203
204};
205
206String RID_STR_STATEMENT_WITHOUT_RESULT_SET
207{
208    Text [ en-US ] = "The SQL command does not describe a result set.";
209};
210
211String RID_STR_NAME_MUST_NOT_BE_EMPTY
212{
213    Text [ en-US ] = "The name must not be empty.";
214};
215
216String RID_STR_NO_NULL_OBJECTS_IN_CONTAINER
217{
218    Text [ en-US ] = "The container cannot contain NULL objects.";
219};
220
221String RID_STR_NAME_ALREADY_USED
222{
223    Text [ en-US ] = "There already is an object with the given name.";
224};
225
226String RID_STR_OBJECT_CONTAINER_MISMATCH
227{
228    Text [ en-US ] = "This object cannot be part of this container.";
229};
230
231String RID_STR_OBJECT_ALREADY_CONTAINED
232{
233    Text [ en-US ] = "The object already is, with a different name, part of the container.";
234};
235
236String RID_STR_NAME_NOT_FOUND
237{
238    Text [ en-US ] = "Unable to find the document '$name$'.";
239};
240
241String RID_STR_ERROR_WHILE_SAVING
242{
243    Text [ en-US ] = "Could not save the document to $location$:\n$message$";
244};
245
246String RID_NO_SUCH_DATA_SOURCE
247{
248    Text [ en-US ] = "Error accessing data source '$name$':\n$error$";
249};
250String RID_STR_NO_SUB_FOLDER
251{
252    Text [ en-US ] = "There exists no folder named \"$folder$\".";
253};
254String RID_STR_NO_DELETE_BEFORE_AFTER
255{
256	Text [ en-US ] = "Cannot delete the before-first or after-last row.";
257};
258String RID_STR_NO_DELETE_INSERT_ROW
259{
260	Text [ en-US ] = "Cannot delete the insert-row.";
261};
262String RID_STR_RESULT_IS_READONLY
263{
264	Text [ en-US ] = "Result set is read only.";
265};
266String RID_STR_NO_DELETE_PRIVILEGE
267{
268	Text [ en-US ] = "DELETE privilege not available.";
269};
270String RID_STR_ROW_ALREADY_DELETED
271{
272	Text [ en-US ] = "Current row is already deleted.";
273};
274String RID_STR_UPDATE_FAILED
275{
276	Text [ en-US ] = "Current row could not be updated.";
277};
278//-------------------------------------------------------------------------
279String RID_STR_NO_INSERT_PRIVILEGE
280{
281	Text [ en-US ] = "INSERT privilege not available.";
282};
283String RID_STR_INTERNAL_ERROR
284{
285	Text [ en-US ] = "Internal error: no statement object provided by the database driver.";
286};
287String RID_STR_EXPRESSION1
288{
289	Text [ en-US ] = "Expression1";
290};
291String RID_STR_NO_SQL_COMMAND
292{
293	Text [ en-US ] = "No SQL command was provided.";
294};
295String RID_STR_INVALID_INDEX
296{
297	Text [ en-US ] = "Invalid column index.";
298};
299String RID_STR_INVALID_CURSOR_STATE
300{
301	Text [ en-US ] = "Invalid cursor state.";
302};
303String RID_STR_CURSOR_BEFORE_OR_AFTER
304{
305	Text [ en-US ] = "The cursor points to before the first or after the last row.";
306};
307String RID_STR_NO_BOOKMARK_BEFORE_OR_AFTER
308{
309	Text [ en-US ] = "The rows before the first and after the last row don't have a bookmark.";
310};
311String RID_STR_NO_BOOKMARK_DELETED
312{
313	Text [ en-US ] = "The current row is deleted, and thus doesn't have a bookmark.";
314};
315String RID_STR_NO_EMBEDDING
316{
317	Text [ en-US ] = "Embedding of database documents is not supported.";
318};
319String RID_STR_CONNECTION_REQUEST
320{
321	Text [ en-US ] = "A connection for the following URL was requested \"$name$\".";
322};
323String RID_STR_MISSING_EXTENSION
324{
325	Text [ en-US ] = "The extension is not installed.";
326};
327