OracleStrings_en.xml 25 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165
  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, 2016
  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="ORA">
  10. <section name="OR1" type="UI">
  11. <string id="Oracle" usage="Do not translate: Oracle">Oracle</string>
  12. </section>
  13. <section name="CMN" type="UI">
  14. <string id="or_common" type="String" usage="Do not translate: Oracle">Oracle Common</string>
  15. <string id="V_Oracle" type="String" usage="Do not translate: Oracle">Oracle</string>
  16. <string id="or_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="or_add_months.tip" type="String">Returns the datetime resulting from adding "integer_expression" months to "date_expression".</string>
  18. <string id="or_ceil.syntax" type="String" usage="Do not translate: ceil">ceil (&#160;numeric_expression&#160;)</string>
  19. <string id="or_ceil.tip" type="String">Returns the smallest integer greater than or equal to "numeric_expression".</string>
  20. <string id="or_char_length.syntax" type="String" usage="Do not translate: char_length">char_length (&#160;string_expression&#160;)</string>
  21. <string id="or_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>
  22. <string id="or_chr.syntax" type="String" usage="Do not translate: chr">chr (&#160;integer_expression&#160;)</string>
  23. <string id="or_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>
  24. <string id="or_concat.syntax" type="String" usage="Do not translate: concat">concat (&#160;string_expression1&#160;,&#160;string_expression2&#160;)</string>
  25. <string id="or_concat.tip" type="String">Returns a string that is the result of concatenating, or joining, "string_expression1" to "string_expression2".</string>
  26. <string id="or_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>
  27. <string id="or_concat.result.1" type="String">Result: Returns the first name and family name; e.g., Bob Smith.</string>
  28. <string id="or_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>
  29. <string id="or_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>
  30. <string id="or_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>
  31. <string id="or_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>
  32. <string id="or_greatest.syntax" type="String" usage="Do not translate: greatest">greatest (&#160;expression_list&#160;)</string>
  33. <string id="or_greatest.tip" type="String">Returns the greatest value in "expression_list".</string>
  34. <string id="or_initcap.syntax" type="String" usage="Do not translate: initcap">initcap (&#160;string_expression&#160;)</string>
  35. <string id="or_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>
  36. <string id="or_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>
  37. <string id="or_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>
  38. <string id="or_instrb.syntax" type="String" usage="Do not translate: instrb">instrb (&#160;string_expression1, string_expression2 [&#160;,&#160;integer_expression1 [&#160;,&#160;integer_expression2&#160;]&#160;]&#160;)</string>
  39. <string id="or_instrb.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 the position (byte number) where "string_expression2" was found.</string>
  40. <string id="or_least.syntax" type="String" usage="Do not translate: least">least (&#160;expression_list&#160;)</string>
  41. <string id="or_least.tip" type="String">Returns the least value in "expression_list".</string>
  42. <string id="or_length.syntax" type="String" usage="Do not translate: length">length (&#160;string_expression&#160;)</string>
  43. <string id="or_length.tip" type="String">Returns the number of characters in "string_expression".</string>
  44. <string id="or_lengthb.syntax" type="String" usage="Do not translate: lengthb">lengthb (&#160;string_expression&#160;)</string>
  45. <string id="or_lengthb.tip" type="String">Returns the number of bytes in "string_expression".</string>
  46. <string id="or_lpad.syntax" type="String" usage="Do not translate: lpad">lpad (&#160;string_expression1, integer_expression [&#160;,&#160;string_expression2&#160;]&#160;)</string>
  47. <string id="or_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>
  48. <string id="or_ltrim.syntax" type="String" usage="Do not translate: ltrim">ltrim (&#160;string_expression1 [&#160;,&#160;string_expression2&#160;]&#160;)</string>
  49. <string id="or_ltrim.tip" type="String">Returns "string_expression1" with leading characters removed up to the first character not in "string_expression2".</string>
  50. <string id="or_ltrim.example.1" type="String" usage="Do not translate: ltrim">Example: ltrim (&#160;'xyxXxyAB'&#160;,&#160;'xy'&#160;)</string>
  51. <string id="or_ltrim.result.1" type="String">Result: XxyAB</string>
  52. <string id="or_months_between.syntax" type="String" usage="Do not translate: months_between">months_between (&#160;date_expression1&#160;,&#160;date_expression2&#160;)</string>
  53. <string id="or_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>
  54. <string id="or_new_time.syntax" type="String" usage="Do not translate: new_time">new_time (&#160;datetime_expression&#160;,&#160;old_timezone&#160;,&#160;new_timezone&#160;)</string>
  55. <string id="or_new_time.tip" type="String">Returns the datetime in "new_timezone" for "datetime_expression" in "old_timezone". "Old_timezone" and "new_timezone" can be one of 'AST', 'ADT', 'BST', 'BDT', 'CST', 'CDT', 'EST', 'EDT', 'HST', 'HDT', 'MST', 'MDT', 'NST', 'PST', 'PDT', 'YST', or 'YDT'.</string>
  56. <string id="or_next_day.syntax" type="String" usage="Do not translate: next_day">next_day (&#160;datetime_expression&#160;,&#160;string_expression&#160;)</string>
  57. <string id="or_next_day.tip" type="String">Returns the datetime of the first weekday named by "string_expression" that is later than "datetime_expression". The return value has the same format as "datetime_expression".</string>
  58. <string id="or_nls_initcap.syntax" type="String" usage="Do not translate: nls_initcap">nls_initcap (&#160;string_expression1 [&#160;,&#160;string_expression2&#160;]&#160;)</string>
  59. <string id="or_nls_initcap.tip" type="String">Returns "string_expression1" 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_expression2" specifies the sorting sequence.</string>
  60. <string id="or_nls_lower.syntax" type="String" usage="Do not translate: nls_lower">nls_lower (&#160;string_expression1 [&#160;,&#160;string_expression2&#160;]&#160;)</string>
  61. <string id="or_nls_lower.tip" type="String">Returns "string_expression1" with all letters in lowercase. "String_expression2" specifies the sorting sequence.</string>
  62. <string id="or_nls_upper.syntax" type="String" usage="Do not translate: nls_upper">nls_upper (&#160;string_expression1 [&#160;,&#160;string_expression2&#160;]&#160;)</string>
  63. <string id="or_nls_upper.tip" type="String">Returns "string_expression1" with all letters in uppercase. "String_expression2" specifies the sorting sequence.</string>
  64. <string id="or_nvl.syntax" type="String" usage="Do not translate: nvl">nvl (&#160;expression1&#160;,&#160;expression2&#160;)</string>
  65. <string id="or_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>
  66. <string id="or_nvl.example.1" type="String" usage="Do not translate: nvl">Example: nvl (&#160;[Unit sale price]&#160;,&#160;0&#160;)</string>
  67. <string id="or_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>
  68. <string id="or_ascii.syntax" type="String" usage="Do not translate: ascii">ascii (&#160;string_expression&#160;)</string>
  69. <string id="or_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>
  70. <string id="or_ascii.example.1" type="String" usage="Do not translate: ascii">Example: ascii (&#160;'A'&#160;)</string>
  71. <string id="or_ascii.result.1" type="String">Result: Returns '65'</string>
  72. <string id="or_round.syntax" type="String" usage="Do not translate: round">round (&#160;numeric_expression [&#160;,&#160;integer_expression&#160;]&#160;)</string>
  73. <string id="or_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>
  74. <string id="or_round.example.1" type="String" usage="Do not translate: round">Example: round (&#160;125&#160;,&#160;-1&#160;)</string>
  75. <string id="or_round.result.1" type="String">Result: Returns 130</string>
  76. <string id="or_soundex.syntax" type="String" usage="Do not translate: soundex">soundex (&#160;string_expression&#160;)</string>
  77. <string id="or_soundex.tip" type="String">Returns a character string containing the phonetic representation of "string_expression".</string>
  78. <string id="or_user" type="String" usage="Do not translate: user">{user}</string>
  79. <string id="or_user.syntax" type="String" usage="Do not translate: user">{&#160;user&#160;}</string>
  80. <string id="or_user.tip" type="String">Returns the username of the current Oracle user.</string>
  81. <string id="or_replace.syntax" type="String" usage="Do not translate: replace">replace (&#160;string_expression1&#160;,&#160;string_expression2 [&#160;,&#160;string_expression3&#160;]&#160;)</string>
  82. <string id="or_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>
  83. <string id="or_reverse.syntax" type="String" usage="Do not translate: reverse">reverse (&#160;string_expression&#160;)</string>
  84. <string id="or_reverse.tip" type="String">Reverses the order of all characters in "string_expression".</string>
  85. <string id="or_rpad.syntax" type="String" usage="Do not translate: rpad">rpad (&#160;string_expression1&#160;,&#160;integer_expression [&#160;,&#160;string_expression2&#160;]&#160;)</string>
  86. <string id="or_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>
  87. <string id="or_rtrim.syntax" type="String" usage="Do not translate: rtrim">rtrim (&#160;string_expression1 [&#160;,&#160;string_expression2&#160;]&#160;)</string>
  88. <string id="or_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>
  89. <string id="or_rtrim.example.1" type="String" usage="Do not translate: rtrim">Example: rtrim (&#160;'ABxXxyx'&#160;,&#160;'xy'&#160;)</string>
  90. <string id="or_rtrim.result.1" type="String">Result: Returns 'ABxX'</string>
  91. <string id="or_sign.syntax" type="String" usage="Do not translate: sign">sign (&#160;numeric_expression&#160;)</string>
  92. <string id="or_sign.tip" type="String">Returns an indicator of the sign of "numeric_expression", +1 if positive, 0 if zero, or -1 if negative.</string>
  93. <string id="or_substr.syntax" type="String" usage="Do not translate: substr">substr (&#160;string_expression&#160;,&#160;integer_expression1 [&#160;,&#160;integer_expression2&#160;]&#160;)</string>
  94. <string id="or_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>
  95. <string id="or_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>
  96. <string id="or_substr.result.1" type="String">Result: Returns characters 3 to 7 of the position codes.</string>
  97. <string id="or_substrb.syntax" type="String" usage="Do not translate: substrb">substrb (&#160;string_expression&#160;,&#160;numeric_expression1 [&#160;,&#160;numeric_expression2&#160;]&#160;)</string>
  98. <string id="or_substrb.tip" type="String">Returns the substring of "string_expression" that starts at position "numeric_expression1" and ends after "numeric_expression2" bytes. The first byte in "string_expression" is at position 1. If you omit "numeric_expression2", returns the substring of "string_expression" that starts at position "numeric_expression1" and ends at the end of "string_expression".</string>
  99. <string id="or_substrb.example.1" type="String" usage="Do not translate: substrb">Example: substrb (&#160;[Sales (query)].[Sales staff].[Position code], 3&#160;,&#160;5&#160;)</string>
  100. <string id="or_substrb.result.1" type="String">Result: Returns characters 3 to 7 of the position codes.</string>
  101. <string id="or_sysdate" type="String" usage="Do not translate: sysdate">{sysdate}</string>
  102. <string id="or_sysdate.syntax" type="String" usage="Do not translate: sysdate">{&#160;sysdate&#160;}</string>
  103. <string id="or_sysdate.tip" type="String">Returns a datetime value representing the current date and time of the computer that the database software runs on.</string>
  104. <string id="or_to_char.syntax" type="String" usage="Do not translate: to_char">to_char (&#160;expression1 [&#160;,&#160;string_expression2 [&#160;,&#160;string_expression3&#160;]&#160;]&#160;)</string>
  105. <string id="or_to_char.tip" type="String">Returns the string representation of "expression1" with the format of "string_expression2". "Expression1" can be either a date value or a numeric value. "String_expression3" specifies the format elements, such as language.</string>
  106. <string id="or_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>
  107. <string id="or_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>
  108. <string id="or_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>
  109. <string id="or_to_date.result.1" type="String">Result: Returns datetime with value '2013-02-27 15:13:14'.</string>
  110. <string id="or_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>
  111. <string id="or_to_date.result.2" type="String">Result: Returns datetime with value '2013-02-27 15:13:14'.</string>
  112. <string id="or_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>
  113. <string id="or_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>
  114. <string id="or_translate.syntax" type="String" usage="Do not translate: translate">translate (&#160;string_expression1&#160;,&#160;string_expression2&#160;,&#160;string_expression3&#160;)</string>
  115. <string id="or_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>
  116. <string id="or_trunc1.syntax" type="String" usage="Do not translate: trunc">trunc (&#160;date_expression&#160;,&#160;string_expression&#160;)</string>
  117. <string id="or_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>
  118. <string id="or_trunc1.example.1" type="String" usage="Do not translate: trunc">Example: trunc (&#160;2003-08-22&#160;,&#160;'year'&#160;)</string>
  119. <string id="or_trunc1.result.1" type="String">Result: Returns 2003-01-01.</string>
  120. <string id="or_trunc2.syntax" type="String" usage="Do not translate: trunc">trunc (&#160;numeric_expression1&#160;,&#160;numeric_expression2&#160;)</string>
  121. <string id="or_trunc2.tip" type="String">Truncates digits from "numeric_expression1" using "numeric_expression2" as the precision.</string>
  122. <string id="or_vsize" type="String" usage="Do not translate: vsize">vsize</string>
  123. <string id="or_vsize.syntax" type="String" usage="Do not translate: vsize">vsize (&#160;expression&#160;)</string>
  124. <string id="or_vsize.tip" type="String">Returns the number of bytes in the internal representation of "expression". "Expression" must be a string expression.</string>
  125. </section>
  126. <section name="CST" type="UI">
  127. <string id="or_cast_varchar.syntax" type="String" usage="Do not translate: cast_varchar">cast_varchar (&#160;expression&#160;)</string>
  128. <string id="or_cast_varchar.tip" type="String">Returns the value of "expression" cast as a variable character. "Expression" can be numeric, date, or timestamp.</string>
  129. <string id="or_cast_date.syntax" type="String" usage="Do not translate: cast_date">cast_date (&#160;expression&#160;)</string>
  130. <string id="or_cast_date.tip" type="String">Returns the value of "expression" cast as a date.</string>
  131. <string id="or_cast_timestamp.syntax" type="String" usage="Do not translate: cast_timestamp">cast_timestamp (&#160;expression&#160;)</string>
  132. <string id="or_cast_timestamp.tip" type="String">Returns the value of "expression" cast as a timestamp. "Expression" can be of a string or date.</string>
  133. <string id="or_cast_timestamp.example.1" type="String" usage="Do not translate: cast_timestamp">Example: cast_timestamp (&#160;'1999-12-31 23:59:59.23'&#160;)</string>
  134. <string id="or_cast_timestamp.result.1" type="String">Result: Returns 31-Dec-99 11:59:59 PM</string>
  135. </section>
  136. <section name="MTH" type="UI">
  137. <string id="or_math" type="String" usage="Do not translate: Oracle">Oracle Math</string>
  138. <string id="or_log.syntax" type="String" usage="Do not translate: log">log ([&#160;numeric_expression1&#160;,&#160;] numeric_expression2&#160;)</string>
  139. <string id="or_log.tip" type="String">Returns the logarithm of "numeric_expression2" to the base "numeric_expression1". When the optional argument "numeric_expression1" is not specified, the base used is the contsant e (which is approximately equal to 2.71282).</string>
  140. </section>
  141. <section name="TRG" type="UI">
  142. <string id="or_trig" type="String" usage="Do not translate: Oracle">Oracle Trigonometry</string>
  143. <string id="or_acos.syntax" type="String" usage="Do not translate: acos">acos (&#160;numeric_expression&#160;)</string>
  144. <string id="or_acos.tip" type="String">Returns the arccosine of "numeric_expression" in radians. The arccosine is the angle whose cosine is "numeric_expression".</string>
  145. <string id="or_asin.syntax" type="String" usage="Do not translate: asin">asin (&#160;numeric_expression&#160;)</string>
  146. <string id="or_asin.tip" type="String">Returns the arcsine of "numeric_expression" in radians. The arcsine is the angle whose sine is "numeric_expression".</string>
  147. <string id="or_atan.syntax" type="String" usage="Do not translate: atan">atan (&#160;numeric_expression&#160;)</string>
  148. <string id="or_atan.tip" type="String">Returns the arctangent of "numeric_expression" in radians. The arctangent is the angle whose tangent is "numeric_expression".</string>
  149. <string id="or_atan2.syntax" type="String" usage="Do not translate: atan2">atan2 (&#160;numeric_expression1 ,numeric_expression2&#160;)</string>
  150. <string id="or_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>
  151. <string id="or_cos.syntax" type="String" usage="Do not translate: cos">cos (&#160;numeric_expression&#160;)</string>
  152. <string id="or_cos.tip" type="String">Returns the cosine of "numeric_expression" where "numeric_expression" is an angle expressed in radians.</string>
  153. <string id="or_cosh.syntax" type="String" usage="Do not translate: cosh">cosh (&#160;numeric_expression&#160;)</string>
  154. <string id="or_cosh.tip" type="String">Returns the hyperbolic cosine of "numeric_expression" where "numeric_expression" is an angle expressed in radians.</string>
  155. <string id="or_sin.syntax" type="String" usage="Do not translate: sin">sin (&#160;numeric_expression&#160;)</string>
  156. <string id="or_sin.tip" type="String">Returns the sine of "numeric_expression" where "numeric_expression" is an angle expressed in radians.</string>
  157. <string id="or_sinh.syntax" type="String" usage="Do not translate: sinh">sinh (&#160;numeric_expression&#160;)</string>
  158. <string id="or_sinh.tip" type="String">Returns the hyperbolic sine of "numeric_expression" where "numeric_expression" is an angle expressed in radians.</string>
  159. <string id="or_tan.syntax" type="String" usage="Do not translate: tan">tan (&#160;numeric_expression&#160;)</string>
  160. <string id="or_tan.tip" type="String">Returns the tangent of "numeric_expression" where "numeric_expression" is an angle expressed in radians.</string>
  161. <string id="or_tanh.syntax" type="String" usage="Do not translate: tanh">tanh (&#160;numeric_expression&#160;)</string>
  162. <string id="or_tanh.tip" type="String">Returns the hyperbolic tangent of "numeric_expression" where "numeric_expression" is an angle expressed in radians.</string>
  163. </section>
  164. </component>
  165. </stringTable>