ExasolStrings_en.xml 21 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!--
  3. Licensed Materials - Property of IBM
  4. BI and PM: QECL
  5. (C) Copyright IBM Corp. 2005, 2009, 2014
  6. US Government Users Restricted Rights - Use, duplication or disclosure restricted by GSA ADP Schedule Contract with IBM Corp.
  7. -->
  8. <stringTable xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="CCLMessageFile.xsd" usage="String">
  9. <component name="EXA">
  10. <section name="EX1" type="UI">
  11. <string id="Exasol" usage="Do not translate: Exasol">Exasol</string>
  12. </section>
  13. <section name="CMN" type="UI">
  14. <string id="exa_common" type="String" usage="Do not translate: Exasol">Exasol Common</string>
  15. <string id="V_Exasol" type="String" usage="Do not translate: Exasol">Exasol</string>
  16. <string id="exa_add_months.syntax" type="String" usage="Do not translate: add_months">add_months (&#160;date_expression&#160;,&#160;integer_expression&#160;)</string>
  17. <string id="exa_add_months.tip" type="String">Returns the datetime resulting from adding "integer_expression" months to "date_expression".</string>
  18. <string id="exa_ascii.syntax" type="String" usage="Do not translate: ascii">ascii (&#160;string_expression&#160;)</string>
  19. <string id="exa_ascii.tip" type="String" usage="Do not translate: ASCII">Returns a number representing the ASCII code value of the leftmost character of "string_expression".</string>
  20. <string id="exa_ascii.example.1" type="String" usage="Do not translate: ascii">Example: ascii (&#160;'A'&#160;)</string>
  21. <string id="exa_ascii.result.1" type="String">Result: Returns '65'</string>
  22. <string id="exa_ceil.syntax" type="String" usage="Do not translate: ceil">ceil (&#160;numeric_expression&#160;)</string>
  23. <string id="exa_ceil.tip" type="String">Returns the smallest integer greater than or equal to "numeric_expression".</string>
  24. <string id="exa_character_length.syntax" type="String" usage="Do not translate: character_length">character_length (&#160;string_expression&#160;)</string>
  25. <string id="exa_character_length.tip" type="String">Returns the number of logical characters in "string_expression". The number of logical characters can be distinct from the number of bytes in some East Asian locales.</string>
  26. <string id="exa_chr.syntax" type="String" usage="Do not translate: chr">chr (&#160;integer_expression&#160;)</string>
  27. <string id="exa_chr.tip" type="String" usage="Do not translate: ASCII">Returns the character that has the ASCII code value specified by "integer_expression". "Integer_expression" should be between 0 and 255.</string>
  28. <string id="exa_concat.syntax" type="String" usage="Do not translate: concat">concat (&#160;string_expression1&#160;,&#160;string_expression2&#160;)</string>
  29. <string id="exa_concat.tip" type="String">Returns a string that is the result of concatenating, or joining, "string_expression1" to "string_expression2".</string>
  30. <string id="exa_concat.example.1" type="String" usage="Do not translate: concat">Example: concat (&#160;[Sales (query)].[Sales staff].[First name], [Sales (query)].[Sales staff].[Last name]&#160;)</string>
  31. <string id="exa_concat.result.1" type="String">Result: Returns the first name and family name; e.g., Bob Smith.</string>
  32. <string id="exa_decode.syntax" type="String" usage="Do not translate: decode">decode (&#160;expression&#160;,&#160;search&#160;,&#160;result [&#160;,&#160;search&#160;,&#160;result&#160;]... [&#160;,&#160;default&#160;]&#160;)</string>
  33. <string id="exa_decode.tip" type="String">Compares "expression" to each search value one by one. If "expression" is equal to a search, then it returns the corresponding result. If no match is found, it returns "default", or if "default" is omitted, it returns null.</string>
  34. <string id="exa_dump.syntax" type="String" usage="Do not translate: dump">dump (&#160;expression [&#160;,&#160;numeric_expression1 [&#160;,&#160;numeric_expression2 [&#160;,&#160;numeric_expression3&#160;]&#160;]&#160;]&#160;)</string>
  35. <string id="exa_dump.tip" type="String">Returns internal representation of "expression" with the format of "numeric_expression1" starting from position "numeric_expression2" for "numeric_expression3" characters.</string>
  36. <string id="exa_greatest.syntax" type="String" usage="Do not translate: greatest">greatest (&#160;expression_list&#160;)</string>
  37. <string id="exa_greatest.tip" type="String">Returns the greatest value in "expression_list".</string>
  38. <string id="exa_instr.syntax" type="String" usage="Do not translate: instr">instr (&#160;string_expression1, string_expression2 [&#160;,&#160;integer_expression1 [&#160;,&#160;integer_expression2&#160;]&#160;]&#160;)</string>
  39. <string id="exa_instr.tip" type="String">Searches "string_expression1" starting at position "integer_expression1" for the "integer_expression2" occurrence of "string_expression2". If "integer_expression1" is negative, then the search occurs backwards from the end of "string_expression1". Returns an integer indicating the position of "string_expression2".</string>
  40. <string id="exa_least.syntax" type="String" usage="Do not translate: least">least (&#160;expression_list&#160;)</string>
  41. <string id="exa_least.tip" type="String">Returns the least value in "expression_list".</string>
  42. <string id="exa_length.syntax" type="String" usage="Do not translate: length">length (&#160;string_expression&#160;)</string>
  43. <string id="exa_length.tip" type="String">Returns the number of characters in "string_expression".</string>
  44. <string id="exa_lpad.syntax" type="String" usage="Do not translate: lpad">lpad (&#160;string_expression1, integer_expression [&#160;,&#160;string_expression2&#160;]&#160;)</string>
  45. <string id="exa_lpad.tip" type="String">Returns "string_expression1" left-padded to the length defined by "integer_expression" with occurrences of "string_expression2". If "string_expression1" is longer than "integer_expression", the appropriate portion of "string_expression1" is returned.</string>
  46. <string id="exa_ltrim.syntax" type="String" usage="Do not translate: ltrim">ltrim (&#160;string_expression1 [&#160;,&#160;string_expression2&#160;]&#160;)</string>
  47. <string id="exa_ltrim.tip" type="String">Returns "string_expression1" with leading characters removed up to the first character not in "string_expression2".</string>
  48. <string id="exa_ltrim.example.1" type="String" usage="Do not translate: ltrim">Example: ltrim (&#160;'xyxXxyAB'&#160;,&#160;'xy'&#160;)</string>
  49. <string id="exa_ltrim.result.1" type="String">Result: XxyAB</string>
  50. <string id="exa_months_between.syntax" type="String" usage="Do not translate: months_between">months_between (&#160;date_expression1&#160;,&#160;date_expression2&#160;)</string>
  51. <string id="exa_months_between.tip" type="String">Returns the number of months from "date_expression1" to "date_expression2". If "date_expression1" is later than "date_expression2" then the result will be a positive number. The days and time portion of the difference are ignored, so the months are not rounded unless "date_expression1" and "date_expression2" are the last days of a month.</string>
  52. <string id="exa_nvl.syntax" type="String" usage="Do not translate: nvl">nvl (&#160;expression1&#160;,&#160;expression2&#160;)</string>
  53. <string id="exa_nvl.tip" type="String">Returns the value of "expression1" if "expression1" is not NULL. If "expression1" is NULL, then returns the value of "expression2".</string>
  54. <string id="exa_nvl.example.1" type="String" usage="Do not translate: nvl">Example: nvl (&#160;[Unit sale price]&#160;,&#160;0&#160;)</string>
  55. <string id="exa_nvl.result.1" type="String" usage="Do not translate: NULL">Result: Returns the unit sale price, or returns 0 if the unit sale price is NULL.</string>
  56. <string id="exa_regexp_instr.syntax" type="String" usage="Do not translate: regexp_instr">regexp_instr (&#160;string_expression1&#160;,&#160;string_expression2&#160;[&#160;,&#160;numeric_expression1&#160;,&#160;numeric_expression2&#160;]&#160;)</string>
  57. <string id="exa_regexp_instr.tip" type="String">Returns the position in "string_expression1" (starting at 1) at which the regular expression "string_expression2" matches. The optional parameter "numeric_expression1" defines from which position the search shall begin (starting with 1). The optional positive number "numeric_expression2" defines which occurrence shall be searched for.</string>
  58. <string id="exa_regexp_replace.syntax" type="String" usage="Do not translate: regexp_replace">regexp_replace (&#160;string_expression1&#160;,&#160;string_expression2&#160;[&#160;,&#160;string_expression3&#160;,&#160;numeric_expression1&#160;,&#160;numeric_expression2&#160;]&#160;)</string>
  59. <string id="exa_regexp_replace.tip" type="String">Replaces occurrences of "string_expression2" in "string_expression1" by "string_expression3". The optional parameter "numeric_expression1" defines from which position the search shall begin (starting with 1). The optional positive number "numeric_expression2" defines which occurrence shall be searched for.</string>
  60. <string id="exa_regexp_substr.syntax" type="String" usage="Do not translate: regexp_substr">regexp_substr (&#160;string_expression1&#160;,&#160;string_expression2&#160;[&#160;,&#160;numeric_expression1&#160;,&#160;numeric_expression2&#160;]&#160;)</string>
  61. <string id="exa_regexp_substr.tip" type="String">Returns a substring of the parameter "string_expression1". The parameter "string_expression2" defines a regular expression to be searched for. The optional parameter "numeric_expression1" defines from which position the search shall begin (starting with 1). The optional positive number "numeric_expression2" defines which occurrence shall be searched for.</string>
  62. <string id="exa_round.syntax" type="String" usage="Do not translate: round">round (&#160;numeric_expression [&#160;,&#160;integer_expression&#160;]&#160;)</string>
  63. <string id="exa_round.tip" type="String">Returns "numeric_expression" rounded to the nearest value "integer_expression" places right of the decimal point. If "integer_expression" is negative, "numeric_expression" is rounded to the nearest absolute value "integer_expression" places to the left of the decimal point. Rounding takes place before data formatting is applied.</string>
  64. <string id="exa_round.example.1" type="String" usage="Do not translate: round">Example: round (&#160;125&#160;,&#160;-1&#160;)</string>
  65. <string id="exa_round.result.1" type="String">Result: Returns 130</string>
  66. <string id="exa_soundex.syntax" type="String" usage="Do not translate: soundex">soundex (&#160;string_expression&#160;)</string>
  67. <string id="exa_soundex.tip" type="String">Returns a character string containing the phonetic representation of "string_expression".</string>
  68. <string id="exa_user" type="String" usage="Do not translate: user">{user}</string>
  69. <string id="exa_user.syntax" type="String" usage="Do not translate: user">{&#160;user&#160;}</string>
  70. <string id="exa_user.tip" type="String">Returns the username of the current user.</string>
  71. <string id="exa_replace.syntax" type="String" usage="Do not translate: replace">replace (&#160;string_expression1&#160;,&#160;string_expression2 [&#160;,&#160;string_expression3&#160;]&#160;)</string>
  72. <string id="exa_replace.tip" type="String">Replaces all occurrences of "string_expression2" in "string_expression1" with "string_expression3". If "string_expression3" is not specified, then it removes all occurrences of "string_expression2".</string>
  73. <string id="exa_reverse.syntax" type="String" usage="Do not translate: reverse">reverse (&#160;string_expression&#160;)</string>
  74. <string id="exa_reverse.tip" type="String">Reverses the order of all characters in "string_expression".</string>
  75. <string id="exa_rpad.syntax" type="String" usage="Do not translate: rpad">rpad (&#160;string_expression1&#160;,&#160;integer_expression [&#160;,&#160;string_expression2&#160;]&#160;)</string>
  76. <string id="exa_rpad.tip" type="String">Returns "string_expression1" right-padded to length "integer_expression" with occurrences of "string_expression2". If "string_expression1" is longer than "integer_expression", the appropriate portion of "string_expression1" is returned. If "string_expression2" is not specified, then occurrences of "string_expression2" are replaced with spaces.</string>
  77. <string id="exa_rtrim.syntax" type="String" usage="Do not translate: rtrim">rtrim (&#160;string_expression1 [&#160;,&#160;string_expression2&#160;]&#160;)</string>
  78. <string id="exa_rtrim.tip" type="String">Returns "string_expression1" with the final characters removed after the last character not in "string_expression2". If "string_expression2" is not specified, the final space characters are removed.</string>
  79. <string id="exa_rtrim.example.1" type="String" usage="Do not translate: rtrim">Example: rtrim (&#160;'ABxXxyx'&#160;,&#160;'xy'&#160;)</string>
  80. <string id="exa_rtrim.result.1" type="String">Result: Returns 'ABxX'</string>
  81. <string id="exa_sign.syntax" type="String" usage="Do not translate: sign">sign (&#160;numeric_expression&#160;)</string>
  82. <string id="exa_sign.tip" type="String">Returns an indicator of the sign of "numeric_expression", +1 if positive, 0 if zero, or -1 if negative.</string>
  83. <string id="exa_substr.syntax" type="String" usage="Do not translate: substr">substr (&#160;string_expression&#160;,&#160;integer_expression1 [&#160;,&#160;integer_expression2&#160;]&#160;)</string>
  84. <string id="exa_substr.tip" type="String">Returns the substring of "string_expression" that starts at position "integer_expression1" for "integer_expression2" characters or to the end of "string_expression" if "integer_expression2" is omitted. The first character in "string_expression" is at position 1.</string>
  85. <string id="exa_substr.example.1" type="String" usage="Do not translate: substr">Example: substr (&#160;[Sales (query)].[Sales staff].[Position code], 3&#160;,&#160;5&#160;)</string>
  86. <string id="exa_substr.result.1" type="String">Result: Returns characters 3 to 7 of the position codes.</string>
  87. <string id="exa_sysdate" type="String" usage="Do not translate: sysdate">{sysdate}</string>
  88. <string id="exa_sysdate.syntax" type="String" usage="Do not translate: sysdate">{&#160;sysdate&#160;}</string>
  89. <string id="exa_sysdate.tip" type="String">Returns a datetime value representing the current date and time of the computer that the database software runs on.</string>
  90. <string id="exa_to_char.syntax" type="String" usage="Do not translate: to_char">to_char (&#160;expression [&#160;,&#160;string_expression&#160;]&#160;)</string>
  91. <string id="exa_to_char.tip" type="String">Returns the string representation of "expression" with the format of "string_expression". "Expression" can be either a date value or a numeric value.</string>
  92. <string id="exa_to_date.syntax" type="String" usage="Do not translate: to_date">to_date (&#160;expression1 [&#160;,&#160;string_expression2 [&#160;,&#160;string_expression3&#160;]&#160;]&#160;)</string>
  93. <string id="exa_to_date.tip" type="String">Converts "expression1" to a datetime value as specified by the format "string_expression2". The first argument "expression1" may be of type string or numeric. "String_expression3" specifies the format elements, such as language.</string>
  94. <string id="exa_to_date.example.1" type="String" usage="Do not translate: to_date">to_date (&#160;'2013-02-27 15:13:14'&#160;,&#160;'YYYY-MM-DD HH24:MI:SS'&#160;)</string>
  95. <string id="exa_to_date.result.1" type="String">Result: Returns datetime with value '2013-02-27 15:13:14'.</string>
  96. <string id="exa_to_date.example.2" type="String" usage="Do not translate: to_date">to_date (&#160;'2013-02-27 15:13:14'&#160;,&#160;'YYYY-MM-DD HH24:MI:SS'&#160;,&#160;'NLS_DATE_LANGUAGE = American'&#160;)</string>
  97. <string id="exa_to_date.result.2" type="String">Result: Returns datetime with value '2013-02-27 15:13:14'.</string>
  98. <string id="exa_to_number.syntax" type="String" usage="Do not translate: to_number">to_number (&#160;string_expression1&#160;,&#160;string_expression2&#160;,&#160;string_expression3&#160;)</string>
  99. <string id="exa_to_number.tip" type="String">Converts "string_expression1" to a numeric value as specified by the format "string_expression2". "String_expression3" specifies the format elements, such as currency information.</string>
  100. <string id="exa_translate.syntax" type="String" usage="Do not translate: translate">translate (&#160;string_expression1&#160;,&#160;string_expression2&#160;,&#160;string_expression3&#160;)</string>
  101. <string id="exa_translate.tip" type="String">Returns "string_expression1" with all occurrences of each character in "string_expression2" replaced by the corresponding character in "string_expression3".</string>
  102. <string id="exa_trunc1.syntax" type="String" usage="Do not translate: trunc">trunc (&#160;date_expression&#160;,&#160;string_expression&#160;)</string>
  103. <string id="exa_trunc1.tip" type="String">Truncates "date_expression" using the format specified by "string_expression". For example, if "string_expression" is 'year', then "date_expression" is truncated to the first day of the year.</string>
  104. <string id="exa_trunc1.example.1" type="String" usage="Do not translate: trunc">Example: trunc (&#160;2003-08-22&#160;,&#160;'year'&#160;)</string>
  105. <string id="exa_trunc1.result.1" type="String">Result: Returns 2003-01-01.</string>
  106. <string id="exa_trunc2.syntax" type="String" usage="Do not translate: trunc">trunc (&#160;numeric_expression1&#160;,&#160;numeric_expression2&#160;)</string>
  107. <string id="exa_trunc2.tip" type="String">Truncates digits from "numeric_expression1" using "numeric_expression2" as the precision.</string>
  108. </section>
  109. <section name="MTH" type="UI">
  110. <string id="exa_math" type="String" usage="Do not translate: Exasol">Exasol Math</string>
  111. <string id="exa_log.syntax" type="String" usage="Do not translate: log">log (&#160;numeric_expression1&#160;,&#160;numeric_expression2&#160;)</string>
  112. <string id="exa_log.tip" type="String">Returns the logarithm of "numeric_expression2" with base "numeric_expression1".</string>
  113. <string id="exa_log2.syntax" type="String" usage="Do not translate: log2">log2 (&#160;numeric_expression1&#160;)</string>
  114. <string id="exa_log2.tip" type="String">Returns the logarithm of "numeric_expression1" with base 2.</string>
  115. <string id="exa_log10.syntax" type="String" usage="Do not translate: log10">log10 (&#160;numeric_expression1&#160;)</string>
  116. <string id="exa_log10.tip" type="String">Returns the logarithm of "numeric_expression1" with base 10.</string>
  117. </section>
  118. <section name="TRG" type="UI">
  119. <string id="exa_trig" type="String" usage="Do not translate: Exasol">Exasol Trigonometry</string>
  120. <string id="exa_acos.syntax" type="String" usage="Do not translate: acos">acos (&#160;numeric_expression&#160;)</string>
  121. <string id="exa_acos.tip" type="String">Returns the arccosine of "numeric_expression" in radians. The arccosine is the angle whose cosine is "numeric_expression".</string>
  122. <string id="exa_asin.syntax" type="String" usage="Do not translate: asin">asin (&#160;numeric_expression&#160;)</string>
  123. <string id="exa_asin.tip" type="String">Returns the arcsine of "numeric_expression" in radians. The arcsine is the angle whose sine is "numeric_expression".</string>
  124. <string id="exa_atan.syntax" type="String" usage="Do not translate: atan">atan (&#160;numeric_expression&#160;)</string>
  125. <string id="exa_atan.tip" type="String">Returns the arctangent of "numeric_expression" in radians. The arctangent is the angle whose tangent is "numeric_expression".</string>
  126. <string id="exa_atan2.syntax" type="String" usage="Do not translate: atan2">atan2 (&#160;numeric_expression1 ,numeric_expression2&#160;)</string>
  127. <string id="exa_atan2.tip" type="String">Returns the arctangent of the x and y coordinates specified by "numeric_expression1" and "numeric_expression2", respectively, in radians. The arctangent is the angle whose tangent is "numeric_expression2" / "numeric_expression1".</string>
  128. <string id="exa_cos.syntax" type="String" usage="Do not translate: cos">cos (&#160;numeric_expression&#160;)</string>
  129. <string id="exa_cos.tip" type="String">Returns the cosine of "numeric_expression" where "numeric_expression" is an angle expressed in radians.</string>
  130. <string id="exa_cosh.syntax" type="String" usage="Do not translate: cosh">cosh (&#160;numeric_expression&#160;)</string>
  131. <string id="exa_cosh.tip" type="String">Returns the hyperbolic cosine of "numeric_expression" where "numeric_expression" is an angle expressed in radians.</string>
  132. <string id="exa_sin.syntax" type="String" usage="Do not translate: sin">sin (&#160;numeric_expression&#160;)</string>
  133. <string id="exa_sin.tip" type="String">Returns the sine of "numeric_expression" where "numeric_expression" is an angle expressed in radians.</string>
  134. <string id="exa_sinh.syntax" type="String" usage="Do not translate: sinh">sinh (&#160;numeric_expression&#160;)</string>
  135. <string id="exa_sinh.tip" type="String">Returns the hyperbolic sine of "numeric_expression" where "numeric_expression" is an angle expressed in radians.</string>
  136. <string id="exa_tan.syntax" type="String" usage="Do not translate: tan">tan (&#160;numeric_expression&#160;)</string>
  137. <string id="exa_tan.tip" type="String">Returns the tangent of "numeric_expression" where "numeric_expression" is an angle expressed in radians.</string>
  138. <string id="exa_tanh.syntax" type="String" usage="Do not translate: tanh">tanh (&#160;numeric_expression&#160;)</string>
  139. <string id="exa_tanh.tip" type="String">Returns the hyperbolic tangent of "numeric_expression" where "numeric_expression" is an angle expressed in radians.</string>
  140. </section>
  141. </component>
  142. </stringTable>