MySQLStrings_en.xml 10.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091
  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, 2010
  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="MYS">
  12. <section name="MYS" type="UI">
  13. <string id="MySQL" type="String" usage="Do not translate: MySQL">MySQL</string>
  14. </section>
  15. <section name="CMN" type="UI">
  16. <string id="my_common" type="String" usage="Do not translate: MySQL">MySQL Common</string>
  17. <string id="V_MySQL" type="String" usage="Do not translate: MySQL">MySQL</string>
  18. <string id="my_schema.tip" type="String">Returns the current schema name</string>
  19. <string id="my_schema.syntax" type="String" usage="Do not translate: schema">schema ()</string>
  20. <string id="my_database.tip" type="String">Returns the current database name</string>
  21. <string id="my_database.syntax" type="String" usage="Do not translate: database">database ()</string>
  22. <string id="my_current_user.tip" type="String">Returns the authenticated used name</string>
  23. <string id="my_current_user.syntax" type="String" usage="Do not translate: current_user">current_user ()</string>
  24. <string id="my_session_user.tip" type="String">Return the user name returned by the client</string>
  25. <string id="my_session_user.syntax" type="String" usage="Do not translate: session_user">session_user ()</string>
  26. <string id="my_system_user.tip" type="String">Return the user name returned by the client</string>
  27. <string id="my_system_user.syntax" type="String" usage="Do not translate: system_user">system_user ()</string>
  28. <string id="my_ascii.syntax" type="String" usage="Do not translate: ascii">ascii ( string_expression )</string>
  29. <string id="my_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="my_version.tip" type="String">Returns the string value of the database version.</string>
  31. <string id="my_version.syntax" type="String" usage="Do not translate: version">version ()</string>
  32. </section>
  33. <section name="STR" type="UI">
  34. <string id="my_string" type="String" usage="Do not translate: MySQL">MySQL String</string>
  35. <string id="my_instr.syntax" type="String" usage="Do not translate: instr">instr ( string_expression1 , string_expression2 [ , integer_expression1 [ , integer_expression2 ] ] )</string>
  36. <string id="my_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>
  37. <string id="my_lpad.syntax" type="String" usage="Do not translate: lpad">lpad ( string_expression1 , integer_expression [ , string_expression2 ] )</string>
  38. <string id="my_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>
  39. <string id="my_ltrim.syntax" type="String" usage="Do not translate: ltrim">ltrim ( string_expression1 [ , string_expression2 ] )</string>
  40. <string id="my_ltrim.tip" type="String" usage="Do not translate: ltrim">Returns "string_expression1", with leading characters removed up to the first character not in "string_expression2"; for example, ltrim ( 'xyxXxyAB' , 'xy' ) returns XxyAB.</string>
  41. <string id="my_hex.tip" type="String">Returns the hexadecimal string representation of "numeric_expression1".</string>
  42. <string id="my_hex.syntax" type="String" usage="Do not translate: hex">hex ( numeric_expression1 )</string>
  43. <string id="my_repeat.syntax" type="String" usage="Do not translate: repeat">repeat ( string_expression , numeric_expression1 )</string>
  44. <string id="my_repeat.tip" type="String">Returns the "string_expression" repeated "numeric_expression1" times.</string>
  45. <string id="my_replace.syntax" type="String" usage="Do not translate: replace">replace ( string_expression , string_expression2 , string_expression3 )</string>
  46. <string id="my_replace.tip" type="String">Returns "string_expression" having replaced "string_expression2" with "string_expression3".</string>
  47. <string id="my_reverse.syntax" type="String" usage="Do not translate: reverse">reverse ( string_expression )</string>
  48. <string id="my_reverse.tip" type="String">Returns "string_expression" reversed.</string>
  49. <string id="my_right.syntax" type="String" usage="Do not translate: right">right ( string_expression1 , numeric_expression )</string>
  50. <string id="my_right.tip" type="String">Returns the rightmost "numeric_expression" characters from "string_expression1".</string>
  51. <string id="my_rpad.syntax" type="String" usage="Do not translate: rpad">rpad ( string_expression1 , integer_expression [ , string_expression2 ] )</string>
  52. <string id="my_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>
  53. <string id="my_rtrim.syntax" type="String" usage="Do not translate: rtrim">rtrim ( string_expression1 [ , string_expression2 ] )</string>
  54. <string id="my_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>
  55. <string id="my_soundex.syntax" type="String" usage="Do not translate: soundex">soundex ( string_expression1 )</string>
  56. <string id="my_soundex.tip" type="String">Returns a soundex string of "string_expression1".</string>
  57. </section>
  58. <section name="MTH" type="UI">
  59. <string id="my_math" type="String" usage="Do not translate: MySQL">MySQL Math</string>
  60. <string id="my_log.syntax" type="String" usage="Do not translate: log">log ( numeric_expression )</string>
  61. <string id="my_log.tip" type="String">Returns the base 10 logarithm of "numeric_expression1" or logarithm to the base "numeric_expression2".</string>
  62. <string id="my_ln.syntax" type="String" usage="Do not translate: ln">ln ( numeric_expression )</string>
  63. <string id="my_ln.tip" type="String">Returns the natural logarithm of "numeric_expression1".</string>
  64. <string id="my_pi.syntax" type="String" usage="Do not translate: pi">pi ()</string>
  65. <string id="my_pi.tip" type="String" usage="Do not translate: pi">Returns the constant of pi.</string>
  66. </section>
  67. <section name="TRG" type="UI">
  68. <string id="my_trig" type="String" usage="Do not translate: MySQL">MySQL Trigonometry</string>
  69. <string id="my_acos.syntax" type="String" usage="Do not translate: acos">acos ( numeric_expression )</string>
  70. <string id="my_acos.tip" type="String">Returns the arccosine of "numeric_expression" in radians. The arccosine is the angle whose cosine is "numeric_expression".</string>
  71. <string id="my_asin.syntax" type="String" usage="Do not translate: asin">asin ( numeric_expression )</string>
  72. <string id="my_asin.tip" type="String">Returns the arcsine of "numeric_expression" in radians. The arcsine is the angle whose sine is "numeric_expression".</string>
  73. <string id="my_atan.syntax" type="String" usage="Do not translate: atan">atan ( numeric_expression )</string>
  74. <string id="my_atan.tip" type="String">Returns the arctangent of "numeric_expression" in radians. The arctangent is the angle whose tangent is "numeric_expression".</string>
  75. <string id="my_atan2.syntax" type="String" usage="Do not translate: atan2">atan2 ( numeric_expression1 ,numeric_expression2 )</string>
  76. <string id="my_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>
  77. <string id="my_cos.syntax" type="String" usage="Do not translate: cos">cos ( numeric_expression )</string>
  78. <string id="my_cos.tip" type="String">Returns the cosine of "numeric_expression" where "numeric_expression" is an angle expressed in radians.</string>
  79. <string id="my_cot.syntax" type="String" usage="Do not translate: cot">cot ( numeric_expression )</string>
  80. <string id="my_cot.tip" type="String">Returns the cotangent of "numeric_expression" where "numeric_expression" is an angle expressed in radians.</string>
  81. <string id="my_sin.syntax" type="String" usage="Do not translate: sin">sin ( numeric_expression )</string>
  82. <string id="my_sin.tip" type="String">Returns the sine of "numeric_expression" where "numeric_expression" is an angle expressed in radians.</string>
  83. <string id="my_tan.syntax" type="String" usage="Do not translate: tan">tan ( numeric_expression )</string>
  84. <string id="my_tan.tip" type="String">Returns the tangent of "numeric_expression" where "numeric_expression" is an angle expressed in radians.</string>
  85. <string id="my_degrees.syntax" type="String" usage="Do not translate: degrees">degrees ( numeric_expression )</string>
  86. <string id="my_degrees.tip" type="String">Returns the degrees where "numeric_expression" is an angle expressed in radians.</string>
  87. <string id="my_radians.syntax" type="String" usage="Do not translate: radians">radians ( numeric_expression )</string>
  88. <string id="my_radians.tip" type="String">Returns the radians where "numeric_expression" is an angle expressed in degrees.</string>
  89. </section>
  90. </component>
  91. </stringTable>