User: ihi Date: 2007-11-21 16:15:04+0000 Modified: dba/dbaccess/source/ui/querydesign/query.src
Log: 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# File Changes: Directory: /dba/dbaccess/source/ui/querydesign/ =============================================== File [changed]: query.src Url: http://dba.openoffice.org/source/browse/dba/dbaccess/source/ui/querydesign/query.src?r1=1.97&r2=1.98 Delta lines: +21 -9 -------------------- --- query.src 2007-04-19 15:06:45+0000 1.97 +++ query.src 2007-11-21 16:15:01+0000 1.98 @@ -317,25 +317,23 @@ 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 @@ 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_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."; +}; --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
