123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126 |
- <?xml version="1.0" encoding="UTF-8"?>
- <!--
- IBM Confidential
- OCO Source Materials
- BI and PM: QECL
- (C) Copyright IBM Corp. 2005, 2009, 2015
- The source code for this program is not published or otherwise divested of its trade secrets,
- irrespective of what has been deposited with the U.S. Copyright Office.
- -->
- <stringTable xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="CCLMessageFile.xsd" usage="String">
- <component name="PGR">
- <section name="PGR" type="UI">
- <string id="Postgres" usage="Do not translate: Postgres">Postgres</string>
- </section>
- <section name="CMN" type="UI">
- <string id="pg_common" type="String" usage="Do not translate: Postgres">Postgres Common</string>
- <string id="V_Postgres" type="String" usage="Do not translate: Postgres">Postgres</string>
- <string id="pg_current_catalog" type="String" usage="Do not translate: current_catalog">{current_catalog}</string>
- <string id="pg_current_catalog.syntax" type="String" usage="Do not translate: current_catalog">{current_catalog}</string>
- <string id="pg_current_schema" type="String" usage="Do not translate: current_schema">{current_schema}</string>
- <string id="pg_current_schema.syntax" type="String" usage="Do not translate: current_schema">{current_schema}</string>
- <string id="pg_current_database" type="String" usage="Do not translate: current_database">current_database()</string>
- <string id="pg_current_database.syntax" type="String" usage="Do not translate: current_database">current_database()</string>
- <string id="pg_current_user" type="String" usage="Do not translate: current_user">{current_user}</string>
- <string id="pg_current_user.syntax" type="String" usage="Do not translate: current_user">{current_user}</string>
- <string id="pg_session_user" type="String" usage="Do not translate: session_user">{session_user}</string>
- <string id="pg_session_user.syntax" type="String" usage="Do not translate: session_user">{session_user}</string>
- <string id="pg_ascii.syntax" type="String" usage="Do not translate: ascii">ascii ( string_expression )</string>
- <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>
- <string id="pg_chr.syntax" type="String" usage="Do not translate: chr">chr ( integer_expression )</string>
- <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>
- <string id="pg_user" type="String" usage="Do not translate: user">{user}</string>
- <string id="pg_user.syntax" type="String" usage="Do not translate: user">{ user }</string>
- <string id="pg_user.tip" type="String">Returns the username of the current Postgres user.</string>
- <string id="pg_version.tip" type="String">Returns the string value of the database version.</string>
- <string id="pg_version.syntax" type="String" usage="Do not translate: version">version ()</string>
- <string id="pg_date_trunc.tip" type="String">Returns the timestamp to the specified precision.</string>
- <string id="pg_date_trunc.syntax" type="String" usage="Do not translate: date_trunc">date_trunc ( string_expression , timestamp_expression )</string>
- <string id="pg_translate.syntax" type="String" usage="Do not translate: translate">translate ( string_expression1 , string_expression2 , string_expression3 )</string>
- <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>
-
- </section>
- <section name="STR" type="UI">
- <string id="pg_string" type="String" usage="Do not translate: Postgres">Postgres String</string>
- <string id="pg_overlay.syntax" type="String" usage="Do not translate: overlay">overlay ( string_expression1 , string_expression2 , numeric_expression1 [ , numeric_expression2 ] )</string>
- <string id="pg_overlay.tip" type="String">Returns the "string_expression1" replacing "string_expression2" from character position numeric_expression.</string>
- <string id="pg_btrim.syntax" type="String" usage="Do not translate: btrim">btrim ( string_expression1 [ , string_expression2 ] )</string>
- <string id="pg_btrim.tip" type="String">Returns string_expression1 after removing the longest string of characters in "string_expression2".</string>
- <string id="pg_initcap.syntax" type="String" usage="Do not translate: initcap">initcap ( string_expression )</string>
- <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>
- <string id="pg_instr.syntax" type="String" usage="Do not translate: instr">instr ( string_expression1 , string_expression2 [ , integer_expression1 [ , integer_expression2 ] ] )</string>
- <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>
- <string id="pg_lpad.syntax" type="String" usage="Do not translate: lpad">lpad ( string_expression1 , integer_expression [ , string_expression2 ] )</string>
- <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>
- <string id="pg_ltrim.syntax" type="String" usage="Do not translate: ltrim">ltrim ( string_expression1 [ , string_expression2 ] )</string>
- <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>
- <string id="pg_md5.syntax" type="String" usage="Do not translate: md5">md5 ( string_expression1 )</string>
- <string id="pg_md5.tip" type="String">Returns the MD5 hash of "string_expression1".</string>
- <string id="pg_tohex.tip" type="String">Returns the hexadecimal string representation of "numeric_expression1".</string>
- <string id="pg_tohex.syntax" type="String" usage="Do not translate: to_hex">to_hex ( numeric_expression1 )</string>
- <string id="pg_repeat.syntax" type="String" usage="Do not translate: repeat">repeat ( string_expression , numeric_expression1 )</string>
- <string id="pg_repeat.tip" type="String">Returns the "string_expression" repeated "numeric_expression1" times.</string>
- <string id="pg_replace.syntax" type="String" usage="Do not translate: replace">replace ( string_expression , string_expression2 , string_expression3)</string>
- <string id="pg_replace.tip" type="String">Returns "string_expression" with "string_expression2" replaced with "string_expression3".</string>
- <string id="pg_rpad.syntax" type="String" usage="Do not translate: rpad">rpad ( string_expression1 , integer_expression [ , string_expression2 ] )</string>
- <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>
- <string id="pg_rtrim.syntax" type="String" usage="Do not translate: rtrim">rtrim ( string_expression1 [ , string_expression2 ] )</string>
- <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>
- <string id="pg_splitpart.syntax" type="String" usage="Do not translate: split_part">split_part ( string_expression1 , string_expression2 , numeric_expression )</string>
- <string id="pg_splitpart.tip" type="String">Returns "numeric_expression" field having split "string_expression1" on "string_expression2".</string>
- </section>
- <section name="MTH" type="UI">
- <string id="pg_math" type="String" usage="Do not translate: Postgres">Postgres Math</string>
- <string id="pg_log.syntax" type="String" usage="Do not translate: log">log ( numeric_expression1 [ , numeric_expression2 ] )</string>
- <string id="pg_log.tip" type="String">Returns the base 10 logarithm of "numeric_expression1" or logarithm to the base "numeric_expression2".</string>
- <string id="pg_ln.syntax" type="String" usage="Do not translate: ln">ln ( numeric_expression )</string>
- <string id="pg_ln.tip" type="String">Returns the natural logarithm of "numeric_expression1".</string>
- <string id="pg_cbrt.syntax" type="String" usage="Do not translate: cbrt">cbrt ( numeric_expression )</string>
- <string id="pg_cbrt.tip" type="String">Returns the cube root of "numeric_expression1".</string>
- <string id="pg_div.syntax" type="String" usage="Do not translate: div">div ( numeric_expression1 , numeric_expression2 )</string>
- <string id="pg_div.tip" type="String">Returns the integer quotient of "numeric_expression1" divided by "numeric_expression2".</string>
- <string id="pg_pi.syntax" type="String" usage="Do not translate: pi">pi ()</string>
- <string id="pg_pi.tip" type="String">Returns the constant of pi.</string>
- </section>
- <section name="TRG" type="UI">
- <string id="pg_trig" type="String" usage="Do not translate: Postgres">Postgres Trigonometry</string>
- <string id="pg_acos.syntax" type="String" usage="Do not translate: acos">acos ( numeric_expression )</string>
- <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>
- <string id="pg_asin.syntax" type="String" usage="Do not translate: asin">asin ( numeric_expression )</string>
- <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>
- <string id="pg_atan.syntax" type="String" usage="Do not translate: atan">atan ( numeric_expression )</string>
- <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>
- <string id="pg_atan2.syntax" type="String" usage="Do not translate: atan2">atan2 ( numeric_expression1 , numeric_expression2 )</string>
- <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>
- <string id="pg_cos.syntax" type="String" usage="Do not translate: cos">cos ( numeric_expression )</string>
- <string id="pg_cos.tip" type="String">Returns the cosine of "numeric_expression", where "numeric_expression" is an angle expressed in radians.</string>
- <string id="pg_cot.syntax" type="String" usage="Do not translate: cot">cot ( numeric_expression )</string>
- <string id="pg_cot.tip" type="String">Returns the cotangent of "numeric_expression", where "numeric_expression" is an angle expressed in radians.</string>
- <string id="pg_sin.syntax" type="String" usage="Do not translate: sin">sin ( numeric_expression )</string>
- <string id="pg_sin.tip" type="String">Returns the sine of "numeric_expression", where "numeric_expression" is an angle expressed in radians.</string>
- <string id="pg_tan.syntax" type="String" usage="Do not translate: tan">tan ( numeric_expression )</string>
- <string id="pg_tan.tip" type="String">Returns the tangent of "numeric_expression", where "numeric_expression" is an angle expressed in radians.</string>
- <string id="pg_degrees.syntax" type="String" usage="Do not translate: degrees">degrees ( numeric_expression )</string>
- <string id="pg_degrees.tip" type="String">Returns the degrees where "numeric_expression" is an angle expressed in radians.</string>
- <string id="pg_radians.syntax" type="String" usage="Do not translate: radians">radians ( numeric_expression )</string>
- <string id="pg_radians.tip" type="String">Returns the radians where "numeric_expression" is an angle expressed in degrees.</string>
- </section>
- <section name="FMT" type="UI">
- <string id="pg_datatypeformatting" type="String" usage="Do not translate: Postgres">Postgres Data type formatting</string>
- <string id="pg_to_char.syntax" type="String" usage="Do not translate: to_char">to_char ( expression , string_expression )</string>
- <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>
- <string id="pg_to_date.syntax" type="String" usage="Do not translate: to_date">to_date ( string_expression1 , string_expression2 )</string>
- <string id="pg_to_date.tip" type="String">Converts "string_expression1" to a date value as specified by the format "string_expression2".</string>
- <string id="pg_to_number.tip" type="String">Converts "string_expression1" to a numeric value as specified by the format "string_expression2".</string>
- <string id="pg_to_number.syntax" type="String" usage="Do not translate: to_number">to_number ( string_expression1 , string_expression2 )</string>
- <string id="pg_to_timestamp.tip" type="String">Converts "string_expression1" to a timestamp value as specified by the format "string_expression2".
-
-  
- Alternate syntax:
- to_timestamp ( numeric-expression )
- Converts an Unix epoch clock time to a timestamp value.
- </string>
- <string id="pg_to_timestamp.syntax" type="String" usage="Do not translate: to_timestamp">to_timestamp ( string_expression1 , string_expression2 )</string>
- </section>
- </component>
- </stringTable>
|