PostgresStrings_en.xml 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!--
  3. IBM Confidential
  4. OCO Source Materials
  5. BI and PM: QECL
  6. (C) Copyright IBM Corp. 2005, 2009, 2015
  7. The source code for this program is not published or otherwise divested of its trade secrets,
  8. irrespective of what has been deposited with the U.S. Copyright Office.
  9. -->
  10. <stringTable xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="CCLMessageFile.xsd" usage="String">
  11. <component name="PGR">
  12. <section name="PGR" type="UI">
  13. <string id="Postgres" usage="Do not translate: Postgres">Postgres</string>
  14. </section>
  15. <section name="CMN" type="UI">
  16. <string id="pg_common" type="String" usage="Do not translate: Postgres">Postgres Common</string>
  17. <string id="V_Postgres" type="String" usage="Do not translate: Postgres">Postgres</string>
  18. <string id="pg_current_catalog" type="String" usage="Do not translate: current_catalog">{current_catalog}</string>
  19. <string id="pg_current_catalog.syntax" type="String" usage="Do not translate: current_catalog">{current_catalog}</string>
  20. <string id="pg_current_schema" type="String" usage="Do not translate: current_schema">{current_schema}</string>
  21. <string id="pg_current_schema.syntax" type="String" usage="Do not translate: current_schema">{current_schema}</string>
  22. <string id="pg_current_database" type="String" usage="Do not translate: current_database">current_database()</string>
  23. <string id="pg_current_database.syntax" type="String" usage="Do not translate: current_database">current_database()</string>
  24. <string id="pg_current_user" type="String" usage="Do not translate: current_user">{current_user}</string>
  25. <string id="pg_current_user.syntax" type="String" usage="Do not translate: current_user">{current_user}</string>
  26. <string id="pg_session_user" type="String" usage="Do not translate: session_user">{session_user}</string>
  27. <string id="pg_session_user.syntax" type="String" usage="Do not translate: session_user">{session_user}</string>
  28. <string id="pg_ascii.syntax" type="String" usage="Do not translate: ascii">ascii ( string_expression )</string>
  29. <string id="pg_ascii.tip" type="String" usage="Do not translate: ASCII, ascii">Returns a number representing the ASCII code value of the leftmost character of "string_expression"; for example, ascii ( 'A' ) is 65.</string>
  30. <string id="pg_chr.syntax" type="String" usage="Do not translate: chr">chr ( integer_expression )</string>
  31. <string id="pg_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>
  32. <string id="pg_user" type="String" usage="Do not translate: user">{user}</string>
  33. <string id="pg_user.syntax" type="String" usage="Do not translate: user">{ user }</string>
  34. <string id="pg_user.tip" type="String">Returns the username of the current Postgres user.</string>
  35. <string id="pg_version.tip" type="String">Returns the string value of the database version.</string>
  36. <string id="pg_version.syntax" type="String" usage="Do not translate: version">version ()</string>
  37. <string id="pg_date_trunc.tip" type="String">Returns the timestamp to the specified precision.</string>
  38. <string id="pg_date_trunc.syntax" type="String" usage="Do not translate: date_trunc">date_trunc ( string_expression , timestamp_expression )</string>
  39. <string id="pg_translate.syntax" type="String" usage="Do not translate: translate">translate ( string_expression1 , string_expression2 , string_expression3 )</string>
  40. <string id="pg_translate.tip" type="String">Returns "string_expression1", with each occurrence of each character in "string_expression2" replaced by its corresponding character in "string_expression3".</string>
  41. </section>
  42. <section name="STR" type="UI">
  43. <string id="pg_string" type="String" usage="Do not translate: Postgres">Postgres String</string>
  44. <string id="pg_overlay.syntax" type="String" usage="Do not translate: overlay">overlay ( string_expression1 , string_expression2 , numeric_expression1 [ , numeric_expression2 ] )</string>
  45. <string id="pg_overlay.tip" type="String">Returns the "string_expression1" replacing "string_expression2" from character position numeric_expression.</string>
  46. <string id="pg_btrim.syntax" type="String" usage="Do not translate: btrim">btrim ( string_expression1 [ , string_expression2 ] )</string>
  47. <string id="pg_btrim.tip" type="String">Returns string_expression1 after removing the longest string of characters in "string_expression2".</string>
  48. <string id="pg_initcap.syntax" type="String" usage="Do not translate: initcap">initcap ( string_expression )</string>
  49. <string id="pg_initcap.tip" type="String">Returns "string_expression", with the first letter of each word in uppercase and all other letters in lowercase. Words are delimited by white space or characters that are not alphanumeric.</string>
  50. <string id="pg_instr.syntax" type="String" usage="Do not translate: instr">instr ( string_expression1 , string_expression2 [ , integer_expression1 [ , integer_expression2 ] ] )</string>
  51. <string id="pg_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 is backwards from the end of "string_expression1". Returns an integer indicating the position of "string_expression2".</string>
  52. <string id="pg_lpad.syntax" type="String" usage="Do not translate: lpad">lpad ( string_expression1 , integer_expression [ , string_expression2 ] )</string>
  53. <string id="pg_lpad.tip" type="String">Returns "string_expression1" 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.</string>
  54. <string id="pg_ltrim.syntax" type="String" usage="Do not translate: ltrim">ltrim ( string_expression1 [ , string_expression2 ] )</string>
  55. <string id="pg_ltrim.tip" type="String">Returns "string_expression1", with leading characters removed up to the first character not in "string_expression2"; for example, ltrim ( 'xyxXxyAB' , 'xy' ) returns XxyAB.</string>
  56. <string id="pg_md5.syntax" type="String" usage="Do not translate: md5">md5 ( string_expression1 )</string>
  57. <string id="pg_md5.tip" type="String">Returns the MD5 hash of "string_expression1".</string>
  58. <string id="pg_tohex.tip" type="String">Returns the hexadecimal string representation of "numeric_expression1".</string>
  59. <string id="pg_tohex.syntax" type="String" usage="Do not translate: to_hex">to_hex ( numeric_expression1 )</string>
  60. <string id="pg_repeat.syntax" type="String" usage="Do not translate: repeat">repeat ( string_expression , numeric_expression1 )</string>
  61. <string id="pg_repeat.tip" type="String">Returns the "string_expression" repeated "numeric_expression1" times.</string>
  62. <string id="pg_replace.syntax" type="String" usage="Do not translate: replace">replace ( string_expression , string_expression2 , string_expression3)</string>
  63. <string id="pg_replace.tip" type="String">Returns "string_expression" with "string_expression2" replaced with "string_expression3".</string>
  64. <string id="pg_rpad.syntax" type="String" usage="Do not translate: rpad">rpad ( string_expression1 , integer_expression [ , string_expression2 ] )</string>
  65. <string id="pg_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 spaces are used.</string>
  66. <string id="pg_rtrim.syntax" type="String" usage="Do not translate: rtrim">rtrim ( string_expression1 [ , string_expression2 ] )</string>
  67. <string id="pg_rtrim.tip" type="String">Returns "string_expression1", with final characters removed after the last character not in "string_expression2"; for example, rtrim ( 'ABxXxyx' , 'xy' ) returns ABxX. If "string_expression2" is not specified, the final space characters are removed.</string>
  68. <string id="pg_splitpart.syntax" type="String" usage="Do not translate: split_part">split_part ( string_expression1 , string_expression2 , numeric_expression )</string>
  69. <string id="pg_splitpart.tip" type="String">Returns "numeric_expression" field having split "string_expression1" on "string_expression2".</string>
  70. </section>
  71. <section name="MTH" type="UI">
  72. <string id="pg_math" type="String" usage="Do not translate: Postgres">Postgres Math</string>
  73. <string id="pg_log.syntax" type="String" usage="Do not translate: log">log ( numeric_expression1 [ , numeric_expression2 ] )</string>
  74. <string id="pg_log.tip" type="String">Returns the base 10 logarithm of "numeric_expression1" or logarithm to the base "numeric_expression2".</string>
  75. <string id="pg_ln.syntax" type="String" usage="Do not translate: ln">ln ( numeric_expression )</string>
  76. <string id="pg_ln.tip" type="String">Returns the natural logarithm of "numeric_expression1".</string>
  77. <string id="pg_cbrt.syntax" type="String" usage="Do not translate: cbrt">cbrt ( numeric_expression )</string>
  78. <string id="pg_cbrt.tip" type="String">Returns the cube root of "numeric_expression1".</string>
  79. <string id="pg_div.syntax" type="String" usage="Do not translate: div">div ( numeric_expression1 , numeric_expression2 )</string>
  80. <string id="pg_div.tip" type="String">Returns the integer quotient of "numeric_expression1" divided by "numeric_expression2".</string>
  81. <string id="pg_pi.syntax" type="String" usage="Do not translate: pi">pi ()</string>
  82. <string id="pg_pi.tip" type="String">Returns the constant of pi.</string>
  83. </section>
  84. <section name="TRG" type="UI">
  85. <string id="pg_trig" type="String" usage="Do not translate: Postgres">Postgres Trigonometry</string>
  86. <string id="pg_acos.syntax" type="String" usage="Do not translate: acos">acos ( numeric_expression )</string>
  87. <string id="pg_acos.tip" type="String">Returns the arccosine of "numeric_expression" in radians. The arccosine is the angle whose cosine is "numeric_expression".</string>
  88. <string id="pg_asin.syntax" type="String" usage="Do not translate: asin">asin ( numeric_expression )</string>
  89. <string id="pg_asin.tip" type="String">Returns the arcsine of "numeric_expression" in radians. The arcsine is the angle whose sine is "numeric_expression".</string>
  90. <string id="pg_atan.syntax" type="String" usage="Do not translate: atan">atan ( numeric_expression )</string>
  91. <string id="pg_atan.tip" type="String">Returns the arctangent of "numeric_expression" in radians. The arctangent is the angle whose tangent is "numeric_expression".</string>
  92. <string id="pg_atan2.syntax" type="String" usage="Do not translate: atan2">atan2 ( numeric_expression1 , numeric_expression2 )</string>
  93. <string id="pg_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>
  94. <string id="pg_cos.syntax" type="String" usage="Do not translate: cos">cos ( numeric_expression )</string>
  95. <string id="pg_cos.tip" type="String">Returns the cosine of "numeric_expression", where "numeric_expression" is an angle expressed in radians.</string>
  96. <string id="pg_cot.syntax" type="String" usage="Do not translate: cot">cot ( numeric_expression )</string>
  97. <string id="pg_cot.tip" type="String">Returns the cotangent of "numeric_expression", where "numeric_expression" is an angle expressed in radians.</string>
  98. <string id="pg_sin.syntax" type="String" usage="Do not translate: sin">sin ( numeric_expression )</string>
  99. <string id="pg_sin.tip" type="String">Returns the sine of "numeric_expression", where "numeric_expression" is an angle expressed in radians.</string>
  100. <string id="pg_tan.syntax" type="String" usage="Do not translate: tan">tan ( numeric_expression )</string>
  101. <string id="pg_tan.tip" type="String">Returns the tangent of "numeric_expression", where "numeric_expression" is an angle expressed in radians.</string>
  102. <string id="pg_degrees.syntax" type="String" usage="Do not translate: degrees">degrees ( numeric_expression )</string>
  103. <string id="pg_degrees.tip" type="String">Returns the degrees where "numeric_expression" is an angle expressed in radians.</string>
  104. <string id="pg_radians.syntax" type="String" usage="Do not translate: radians">radians ( numeric_expression )</string>
  105. <string id="pg_radians.tip" type="String">Returns the radians where "numeric_expression" is an angle expressed in degrees.</string>
  106. </section>
  107. <section name="FMT" type="UI">
  108. <string id="pg_datatypeformatting" type="String" usage="Do not translate: Postgres">Postgres Data type formatting</string>
  109. <string id="pg_to_char.syntax" type="String" usage="Do not translate: to_char">to_char ( expression , string_expression )</string>
  110. <string id="pg_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>
  111. <string id="pg_to_date.syntax" type="String" usage="Do not translate: to_date">to_date ( string_expression1 , string_expression2 )</string>
  112. <string id="pg_to_date.tip" type="String">Converts "string_expression1" to a date value as specified by the format "string_expression2".</string>
  113. <string id="pg_to_number.tip" type="String">Converts "string_expression1" to a numeric value as specified by the format "string_expression2".</string>
  114. <string id="pg_to_number.syntax" type="String" usage="Do not translate: to_number">to_number ( string_expression1 , string_expression2 )</string>
  115. <string id="pg_to_timestamp.tip" type="String">Converts "string_expression1" to a timestamp value as specified by the format "string_expression2".
  116. &#160;
  117. Alternate syntax:
  118. to_timestamp (&#160;numeric-expression&#160;)
  119. Converts an Unix epoch clock time to a timestamp value.
  120. </string>
  121. <string id="pg_to_timestamp.syntax" type="String" usage="Do not translate: to_timestamp">to_timestamp ( string_expression1 , string_expression2 )</string>
  122. </section>
  123. </component>
  124. </stringTable>