InformixStrings_en.xml 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105
  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, 2017
  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="INF">
  10. <section name="IN1" type="UI">
  11. <string id="Informix" type="String" usage="Do not translate: Informix">Informix</string>
  12. </section>
  13. <section name="CMN" type="UI">
  14. <string id="V_Informix" type="String" usage="Do not translate: Informix">Informix</string>
  15. <string id="inf_cardinality.syntax" type="String" usage="Do not translate: cardinality">cardinality (&#160;string_expression&#160;)</string>
  16. <string id="inf_cardinality.tip" type="String" usage="Do not translate: SET, MULTISET, LIST">Returns the number of elements in a collection column (SET, MULTISET, LIST).</string>
  17. <string id="inf_char_length.syntax" type="String" usage="Do not translate: char_length">char_length (&#160;string_expression&#160;)</string>
  18. <string id="inf_char_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>
  19. <string id="inf_concat.syntax" type="String" usage="Do not translate: concat">concat (&#160;string_expression1&#160;,&#160;string_expression2&#160;)</string>
  20. <string id="inf_concat.tip" type="String">Returns a string that is the result of concatenating, or joining, "string_expression1" to "string_expression2".</string>
  21. <string id="inf_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>
  22. <string id="inf_concat.result.1" type="String">Result: Returns the first name and family name; e.g., Bob Smith.</string>
  23. <string id="inf_date.syntax" type="String" usage="Do not translate: date">date (&#160;string_expression|date_expression|integer_expression&#160;)</string>
  24. <string id="inf_date.tip" type="String">Returns the date value of "string_expression", "date_expression", or "integer_expression".</string>
  25. <string id="inf_day.syntax" type="String" usage="Do not translate: day">day (&#160;date_expression&#160;)</string>
  26. <string id="inf_day.tip" type="String">Returns an integer that represents the day of the month (1-31).</string>
  27. <string id="inf_extend.syntax" type="String" usage="Do not translate: extend, year, to, second">extend (&#160;date_expression&#160;,&#160;' {&#160;' year to second '&#160;} '&#160;)</string>
  28. <string id="inf_extend.tip" type="String" usage="Keep line breaks">Adjusts the precision of a datetime or date expression.
  29. The expression cannot be a quoted string representation of a date value.
  30. If you do not specify first and last qualifiers, the default qualifiers are year to fraction (3).
  31. If the expression contains fields that are not specified by the qualifiers, the unwanted fields are discarded. If the first qualifier specifies a larger (more significant) field than what exists in the expression, the new fields are filled in with values returned by the current function. If the last qualifier specifies a smaller (less significant) field than what exists in the expression, the new fields are filled in with constant values. A missing month or day field is filled in with 1, and missing hour to fraction fields are filled in with 0.</string>
  32. <string id="inf_extend.example.1" type="String" usage="Do not translate: extend, year, to, second">Example: extend (&#160;some_date_column&#160;,&#160;{&#160;year to second&#160;}&#160;)</string>
  33. <string id="inf_hex.syntax" type="String" usage="Do not translate: hex">hex (&#160;integer_expression&#160;)</string>
  34. <string id="inf_hex.tip" type="String">Returns the hexadecimal encoding of "integer_expression".</string>
  35. <string id="inf_initcap.syntax" type="String" usage="Do not translate: initcap">initcap (&#160;string_expression&#160;)</string>
  36. <string id="inf_initcap.tip" type="String">Returns "string_expression" with the first letter of each word in uppercase and all other letters in lowercase. A word begins after any character other than a letter. Thus, in addition to a blank space, symbols such as commas, periods, and colons can introduce a new word.</string>
  37. <string id="inf_length.syntax" type="String" usage="Do not translate: length">length (&#160;string_expression&#160;)</string>
  38. <string id="inf_length.tip" type="String">Returns the number of bytes in "string_expression", not including any trailing blank spaces. For byte or text "string_expression", length returns the full number of bytes, including any trailing blank spaces.</string>
  39. <string id="inf_lpad.syntax" type="String" usage="Do not translate: lpad">lpad (&#160;string_expression1&#160;,&#160;integer_expression&#160;,&#160;string_expression2&#160;)</string>
  40. <string id="inf_lpad.tip" type="String">Returns "string_expression1" left-padded by "string_expression2" to the total number of characters specified by "integer_expression". The sequence of "string_expression2" occurs as many times as necessary to make the return string the length specified by "integer_expression".</string>
  41. <string id="inf_mdy.syntax" type="String" usage="Do not translate: mdy">mdy (&#160;integer_expression1&#160;,&#160;integer_expression2&#160;,&#160;integer_expression3&#160;)</string>
  42. <string id="inf_mdy.tip" type="String">Returns a type date value with three expressions that evaluate to integers that represent the month (integer_expression1), day (integer_expression2), and year (integer_expression3).</string>
  43. <string id="inf_month.syntax" type="String" usage="Do not translate: month">month (&#160;date_expression&#160;)</string>
  44. <string id="inf_month.tip" type="String">Returns an integer corresponding to the month portion of "date_expression".</string>
  45. <string id="inf_nvl.syntax" type="String" usage="Do not translate: nvl">nvl (&#160;expression1&#160;,&#160;expression2&#160;)</string>
  46. <string id="inf_nvl.tip" type="String" usage="Do not translate: NULL">Returns the value of "expression1" if "expression1" is not NULL. If "expression1" is NULL, then returns the value of "expression2".</string>
  47. <string id="inf_nvl.example.1" type="String" usage="Do not translate: nvl">Example: nvl (&#160;[Unit sale price]&#160;,&#160;[Unit price]&#160;)</string>
  48. <string id="inf_nvl.result.1" type="String" usage="Do not translate: NULL">Result: Returns the unit sale price, or returns the unit price if the unit sale price is NULL.</string>
  49. <string id="inf_octet_length.syntax" type="String" usage="Do not translate: octet_length">octet_length (&#160;string_expression&#160;)</string>
  50. <string id="inf_octet_length.tip" type="String">Returns the number of bytes in "string_expression", including any trailing spaces.</string>
  51. <string id="inf_replace.syntax" type="String" usage="Do not translate: replace">replace (&#160;string_expression1&#160;,&#160;string_expression2 [&#160;,&#160;string_expression3&#160;]&#160;)</string>
  52. <string id="inf_replace.tip" type="String">Returns "string_expression1" in which every occurrence of "string_expression2" is replaced by "string_expression3". If you omit the "string_expression3" option, every occurrence of "string_expression2" is omitted from the return string.</string>
  53. <string id="inf_replace.example.1" type="String" usage="Do not translate: replace">Example: replace (&#160;[Sales (query)].[Products].[Product line code]&#160;,&#160;-&#160;)</string>
  54. <string id="inf_replace.result.1" type="String">Result: Returns all product line codes without the character "-"</string>
  55. <string id="inf_round.syntax" type="String" usage="Do not translate: round">round (&#160;numeric_expression [&#160;,&#160;integer_expression&#160;]&#160;)</string>
  56. <string id="inf_round.tip" type="String">Returns the rounded value of "numeric_expression". If you omit "integer_expression", the value is rounded to zero digits or to the units place. The digit range of 32 (+ and -) refers to the entire decimal value. Rounding takes place before data formatting is applied.</string>
  57. <string id="inf_round.example.1" type="String" usage="Do not translate: round">Example: round (125, -1)</string>
  58. <string id="inf_round.result.1" type="String">Result: 130</string>
  59. <string id="inf_rpad.syntax" type="String" usage="Do not translate: rpad">rpad (&#160;string_expression1&#160;,&#160;integer_expression&#160;,&#160;string_expression2&#160;)</string>
  60. <string id="inf_rpad.tip" type="String">Returns "string_expression1" right-padded by "string_expression2" to the total number of characters specified by "integer_expression". The sequence of "string_expression2" occurs as many times as necessary to make the return string the length specified by "integer_expression".</string>
  61. <string id="inf_substr.syntax" type="String" usage="Do not translate: substr">substr (&#160;string_expression&#160;,&#160;integer_expression1 [&#160;,&#160;integer_expression2&#160;]&#160;)</string>
  62. <string id="inf_substr.tip" type="String">Returns the substring of "string_expression" that starts at position "integer_expression1" for "integer_expression2" characters. The first character in "string_expression" is at position 1. If you omit "integer_expression2", returns the substring of "string_expression" that starts at position "integer_expression1" and ends at the end of "string_expression".</string>
  63. <string id="inf_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>
  64. <string id="inf_substr.result.1" type="String">Result: Returns characters 3 to 7 of the position codes.</string>
  65. <string id="inf_to_char.syntax" type="String" usage="Do not translate: to_char">to_char (&#160;date_expression [&#160;,&#160;string_expression&#160;]&#160;)</string>
  66. <string id="inf_to_char.tip" type="String">Returns the character string "date_expression" with the specified "string_expression" formatting. You can use this function only with built-in data types.</string>
  67. <string id="inf_to_date.syntax" type="String" usage="Do not translate: to_date">to_date (&#160;string_expression1&#160;,&#160;string_expression2&#160;) </string>
  68. <string id="inf_to_date.tip" type="String">Returns "string_expression1" as a date according to the date format you specify in "string_expression2". If "string_expression1" is NULL, then a NULL value is returned.</string>
  69. <string id="inf_weekday.syntax" type="String" usage="Do not translate: weekday">weekday (&#160;date_expression&#160;)</string>
  70. <string id="inf_weekday.tip" type="String">Returns an integer that represents the day of the week of "date_expression". Zero (0) represents Sunday, one (1) represents Monday, and so on.</string>
  71. <string id="inf_year.syntax" type="String" usage="Do not translate: year">year (&#160;date_expression&#160;)</string>
  72. <string id="inf_year.tip" type="String">Returns a four-digit integer that represents the year of "date_expression".</string>
  73. </section>
  74. <section name="MTH" type="UI">
  75. <string id="inf_math" type="String" usage="Do not translate: Informix">Informix Math</string>
  76. <string id="inf_log10.syntax" type="String" usage="Do not translate: log10">log10 (&#160;numeric_expression&#160;)</string>
  77. <string id="inf_log10.tip" type="String">Returns the logarithm of "numeric_expression" to base 10.</string>
  78. <string id="inf_logn.syntax" type="String" usage="Do not translate: logn">logn (&#160;numeric_expression&#160;)</string>
  79. <string id="inf_logn.tip" type="String">Returns the natural logarithm of "numeric_expression".</string>
  80. <string id="inf_root.syntax" type="String" usage="Do not translate: root">root (&#160;numeric_expression1 [&#160;,&#160;numeric_expression2&#160;]&#160;)</string>
  81. <string id="inf_root.tip" type="String">Returns the root value of "numeric_expression1". Requires at least one numeric argument (the radians argument). If only "numeric_expression1" is supplied, 2 is used as a default value for "numeric_expression2". Zero cannot be used as the value of "numeric_expression2".</string>
  82. <string id="inf_trunc1.syntax" type="String" usage="Do not translate: trunc">trunc (&#160;date_expression&#160;,&#160;string_expression&#160;)</string>
  83. <string id="inf_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>
  84. <string id="inf_trunc2.syntax" type="String" usage="Do not translate: trunc">trunc (&#160;numeric_expression [&#160;,&#160;integer_expression&#160;]&#160;)</string>
  85. <string id="inf_trunc2.tip" type="String">Returns the truncated value of "numeric_expression". If you omit "integer_expression", then "numeric_expression" is truncated to zero digits or to the unit’s place. The digit limitation of 32 (+ and -) refers to the entire decimal value.</string>
  86. </section>
  87. <section name="TRG" type="UI">
  88. <string id="inf_trig" type="String" usage="Do not translate: Informix">Informix Trigonometry</string>
  89. <string id="inf_acos.syntax" type="String" usage="Do not translate: acos">acos (&#160;numeric_expression&#160;)</string>
  90. <string id="inf_acos.tip" type="String">Returns the arccosine of "numeric_expression" in radians. The arccosine is the angle whose cosine is "numeric_expression".</string>
  91. <string id="inf_asin.syntax" type="String" usage="Do not translate: asin">asin (&#160;numeric_expression&#160;)</string>
  92. <string id="inf_asin.tip" type="String">Returns the arcsine of "numeric_expression" in radians. The arcsine is the angle whose sine is "numeric_expression".</string>
  93. <string id="inf_atan.syntax" type="String" usage="Do not translate: atan">atan (&#160;numeric_expression&#160;)</string>
  94. <string id="inf_atan.tip" type="String">Returns the arctangent of "numeric_expression" in radians. The arctangent is the angle whose tangent is "numeric_expression".</string>
  95. <string id="inf_atan2.syntax" type="String" usage="Do not translate: atan2">atan2 (&#160;numeric_expression1&#160;,&#160;numeric_expression2&#160;)</string>
  96. <string id="inf_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_expression1".</string>
  97. <string id="inf_cos.syntax" type="String" usage="Do not translate: cos">cos (&#160;numeric_expression&#160;)</string>
  98. <string id="inf_cos.tip" type="String">Returns the cosine of "numeric_expression" where "numeric_expression" is an angle expressed in radians.</string>
  99. <string id="inf_sin.syntax" type="String" usage="Do not translate: sin">sin (&#160;numeric_expression&#160;)</string>
  100. <string id="inf_sin.tip" type="String">Returns the sine of "numeric_expression" where "numeric_expression" is an angle expressed in radians.</string>
  101. <string id="inf_tan.syntax" type="String" usage="Do not translate: tan">tan (&#160;numeric_expression&#160;)</string>
  102. <string id="inf_tan.tip" type="String">Returns the tangent of "numeric_expression" where "numeric_expression" is an angle expressed in radians.</string>
  103. </section>
  104. </component>
  105. </stringTable>