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