Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorpfilion2012-08-03 13:42:24 +0000
committerpfilion2012-08-03 13:42:24 +0000
commit15e2a6a058b75934bb7e7d47dc72ee4f3483ce70 (patch)
tree21649be83cfad69a0f5fa64e43c8ee7691b161ac
parentd49c7182a31480c1a8653ea560ad00471bf07404 (diff)
downloadwebtools.dali-15e2a6a058b75934bb7e7d47dc72ee4f3483ce70.tar.gz
webtools.dali-15e2a6a058b75934bb7e7d47dc72ee4f3483ce70.tar.xz
webtools.dali-15e2a6a058b75934bb7e7d47dc72ee4f3483ce70.zip
Fix for bug#384185 - WSW TCT#23 'first argument is not an Integer...'
and bug#384610 - WSW38 TCT#31 Copy/Paste error?
-rw-r--r--jpa/plugins/org.eclipse.jpt.jpa.core/property_files/jpa_jpql_validation.properties8
1 files changed, 4 insertions, 4 deletions
diff --git a/jpa/plugins/org.eclipse.jpt.jpa.core/property_files/jpa_jpql_validation.properties b/jpa/plugins/org.eclipse.jpt.jpa.core/property_files/jpa_jpql_validation.properties
index 9754e8664a..850677b495 100644
--- a/jpa/plugins/org.eclipse.jpt.jpa.core/property_files/jpa_jpql_validation.properties
+++ b/jpa/plugins/org.eclipse.jpt.jpa.core/property_files/jpa_jpql_validation.properties
@@ -229,8 +229,8 @@ EXTRACT_EXPRESSION_INVALID_EXPRESSION = The date expression is not a valid expre
EXTRACT_EXPRESSION_INVALID_JPA_VERSION = An EXTRACT expression is only supported by EclipseLink.
EXTRACT_EXPRESSION_MISSING_DATE_PART = The date part must be specified.
EXTRACT_EXPRESSION_MISSING_EXPRESSION = The date expression is missing from the EXTRACT expression.
-EXTRACT_EXPRESSION_MISSING_LEFT_PARENTHESIS = The date part must be specified.
-EXTRACT_EXPRESSION_MISSING_RIGHT_PARENTHESIS = The left parenthesis is missing from the EXTRACT expression.
+EXTRACT_EXPRESSION_MISSING_LEFT_PARENTHESIS = The left parenthesis is missing from the EXTRACT expression.
+EXTRACT_EXPRESSION_MISSING_RIGHT_PARENTHESIS = The right parenthesis is missing from the EXTRACT expression.
# FunctionExpression - Grammar
FUNCTION_EXPRESSION_HAS_EXPRESSION = The function {0} should not have any argument.
@@ -497,8 +497,8 @@ SUBSTRING_EXPRESSION_MISSING_SECOND_EXPRESSION = The second argument is missing
SUBSTRING_EXPRESSION_MISSING_THIRD_EXPRESSION = The third argument is missing from the SUBSTRING expression.
# SubstringExpression - Semantic
SUBSTRING_EXPRESSION_FIRST_EXPRESSION_WRONG_TYPE = The first argument is not a String value.
-SUBSTRING_EXPRESSION_SECOND_EXPRESSION_WRONG_TYPE = The first argument is not an integer value.
-SUBSTRING_EXPRESSION_THIRD_EXPRESSION_WRONG_TYPE = The first argument is not an integer value.
+SUBSTRING_EXPRESSION_SECOND_EXPRESSION_WRONG_TYPE = The second argument is not an integer value.
+SUBSTRING_EXPRESSION_THIRD_EXPRESSION_WRONG_TYPE = The third argument is not an integer value.
# SumFunction - Grammar
SUM_FUNCTION_INVALID_EXPRESSION = The encapsulated expression is not a valid expression.

Back to the top