diff options
author | Ivo Hinkelmann <ihi@openoffice.org> | 2007-11-21 15:15:01 +0000 |
---|---|---|
committer | Ivo Hinkelmann <ihi@openoffice.org> | 2007-11-21 15:15:01 +0000 |
commit | 3bd4cde5ef172eafbbb647fbd2e2ccb93ea2e9fc (patch) | |
tree | 95558ebcbc5da75709a4d043115293153e4205d3 | |
parent | 8f91a4cde77700a081b8238b7952a1b5e4eaab87 (diff) |
INTEGRATION: CWS dba24c (1.97.62); FILE MERGED
2007/09/17 10:20:52 fs 1.97.62.2: #i49183# adjusted ERROR_PARSING_STATEMENT and INFO_OPENING_IN_SQL_VIEW to also apply when we open a view
2007/09/13 11:38:14 fs 1.97.62.1: #i49183#
-rw-r--r-- | dbaccess/source/ui/querydesign/query.src | 34 |
1 files changed, 23 insertions, 11 deletions
diff --git a/dbaccess/source/ui/querydesign/query.src b/dbaccess/source/ui/querydesign/query.src index 4906c99b6a21..86cf48bf3d79 100644 --- a/dbaccess/source/ui/querydesign/query.src +++ b/dbaccess/source/ui/querydesign/query.src @@ -4,9 +4,9 @@ * * $RCSfile: query.src,v $ * - * $Revision: 1.97 $ + * $Revision: 1.98 $ * - * last change: $Author: ihi $ $Date: 2007-04-19 15:06:45 $ + * last change: $Author: ihi $ $Date: 2007-11-21 16:15:01 $ * * The Contents of this file are made available subject to * the terms of GNU Lesser General Public License Version 2.1. @@ -317,25 +317,23 @@ String STR_QRY_ILLEGAL_JOIN String STR_QUERY_SAVEMODIFIED { - Text [ en-US ] = "$object$ has been changed.\nDo you want to save the changes?" ; + Text [ en-US ] = "The $object$ has been changed.\nDo you want to save the changes?" ; + Text [ x-comment ] = "For $object$, one of the values of the RSC_QUERY_OBJECT_TYPE resource will be inserted."; }; Resource RSC_QUERY_OBJECT_TYPE { String 1 { - - Text [ en-US ] = "The query"; + Text [ en-US ] = "table view"; }; String 2 { - - Text [ en-US ] = "The table view"; + Text [ en-US ] = "query"; }; String 3 { - - Text [ en-US ] = "The SQL statement"; + Text [ en-US ] = "SQL statement"; }; }; @@ -349,6 +347,11 @@ String STR_QUERYDESIGN_NO_VIEW_SUPPORT Text [ en-US ] = "This database does not support table views."; }; +String STR_NO_ALTER_VIEW_SUPPORT +{ + Text [ en-US ] = "This database does not support altering of existing table views."; +}; + String STR_QUERYDESIGN_NO_VIEW_ASK { Text [ en-US ] = "Do you want to create a query instead?"; @@ -405,15 +408,24 @@ String STR_VIEWDESIGN String STR_ERROR_PARSING_STATEMENT { - Text [ en-US ] = "The SQL command which constitutes the query could not be parsed."; + Text [ en-US ] = "The SQL command which constitutes the $object$ could not be parsed."; + Text [ x-comment ] = "For $object$, one of the values of the RSC_QUERY_OBJECT_TYPE resource " + "(except \"SQL command\", which doesn't make sense here) will be inserted."; }; String STR_INFO_OPENING_IN_SQL_VIEW { - Text [ en-US ] = "The query will be opened in SQL view."; + Text [ en-US ] = "The $object$ will be opened in SQL view."; + Text [ x-comment ] = "For $object$, one of the values of the RSC_QUERY_OBJECT_TYPE resource " + "(except \"SQL command\", which doesn't make sense here) will be inserted."; }; String STR_STATEMENT_WITHOUT_RESULT_SET { Text [ en-US ] = "The query does not create a result set, and thus cannot be part of another query."; }; + +String STR_NO_DATASOURCE_OR_CONNECTION +{ + Text [ en-US ] = "Both the ActiveConnection and the DataSourceName parameter are missing or wrong - cannot initialize the query designer."; +}; |