123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105 |
- <?xml version="1.0" encoding="UTF-8"?>
- <!--
- Licensed Materials - Property of IBM
- BI and PM: QECL
- (C) Copyright IBM Corp. 2005, 2017
- US Government Users Restricted Rights - Use, duplication or disclosure restricted by GSA ADP Schedule Contract with IBM Corp.
- -->
- <stringTable xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="CCLMessageFile.xsd" usage="String">
- <component name="INF">
- <section name="IN1" type="UI">
- <string id="Informix" type="String" usage="Do not translate: Informix">Informix</string>
- </section>
- <section name="CMN" type="UI">
- <string id="V_Informix" type="String" usage="Do not translate: Informix">Informix</string>
- <string id="inf_cardinality.syntax" type="String" usage="Do not translate: cardinality">cardinality ( string_expression )</string>
- <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>
- <string id="inf_char_length.syntax" type="String" usage="Do not translate: char_length">char_length ( string_expression )</string>
- <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>
- <string id="inf_concat.syntax" type="String" usage="Do not translate: concat">concat ( string_expression1 , string_expression2 )</string>
- <string id="inf_concat.tip" type="String">Returns a string that is the result of concatenating, or joining, "string_expression1" to "string_expression2".</string>
- <string id="inf_concat.example.1" type="String" usage="Do not translate: concat">Example: concat ( [Sales (query)].[Sales staff].[First name], [Sales (query)].[Sales staff].[Last name] )</string>
- <string id="inf_concat.result.1" type="String">Result: Returns the first name and family name; e.g., Bob Smith.</string>
- <string id="inf_date.syntax" type="String" usage="Do not translate: date">date ( string_expression|date_expression|integer_expression )</string>
- <string id="inf_date.tip" type="String">Returns the date value of "string_expression", "date_expression", or "integer_expression".</string>
- <string id="inf_day.syntax" type="String" usage="Do not translate: day">day ( date_expression )</string>
- <string id="inf_day.tip" type="String">Returns an integer that represents the day of the month (1-31).</string>
- <string id="inf_extend.syntax" type="String" usage="Do not translate: extend, year, to, second">extend ( date_expression , ' { ' year to second ' } ' )</string>
- <string id="inf_extend.tip" type="String" usage="Keep line breaks">Adjusts the precision of a datetime or date expression.
- The expression cannot be a quoted string representation of a date value.
- If you do not specify first and last qualifiers, the default qualifiers are year to fraction (3).
- 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>
- <string id="inf_extend.example.1" type="String" usage="Do not translate: extend, year, to, second">Example: extend ( some_date_column , { year to second } )</string>
- <string id="inf_hex.syntax" type="String" usage="Do not translate: hex">hex ( integer_expression )</string>
- <string id="inf_hex.tip" type="String">Returns the hexadecimal encoding of "integer_expression".</string>
- <string id="inf_initcap.syntax" type="String" usage="Do not translate: initcap">initcap ( string_expression )</string>
- <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>
- <string id="inf_length.syntax" type="String" usage="Do not translate: length">length ( string_expression )</string>
- <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>
- <string id="inf_lpad.syntax" type="String" usage="Do not translate: lpad">lpad ( string_expression1 , integer_expression , string_expression2 )</string>
- <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>
- <string id="inf_mdy.syntax" type="String" usage="Do not translate: mdy">mdy ( integer_expression1 , integer_expression2 , integer_expression3 )</string>
- <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>
- <string id="inf_month.syntax" type="String" usage="Do not translate: month">month ( date_expression )</string>
- <string id="inf_month.tip" type="String">Returns an integer corresponding to the month portion of "date_expression".</string>
- <string id="inf_nvl.syntax" type="String" usage="Do not translate: nvl">nvl ( expression1 , expression2 )</string>
- <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>
- <string id="inf_nvl.example.1" type="String" usage="Do not translate: nvl">Example: nvl ( [Unit sale price] , [Unit price] )</string>
- <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>
- <string id="inf_octet_length.syntax" type="String" usage="Do not translate: octet_length">octet_length ( string_expression )</string>
- <string id="inf_octet_length.tip" type="String">Returns the number of bytes in "string_expression", including any trailing spaces.</string>
- <string id="inf_replace.syntax" type="String" usage="Do not translate: replace">replace ( string_expression1 , string_expression2 [ , string_expression3 ] )</string>
- <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>
- <string id="inf_replace.example.1" type="String" usage="Do not translate: replace">Example: replace ( [Sales (query)].[Products].[Product line code] , - )</string>
- <string id="inf_replace.result.1" type="String">Result: Returns all product line codes without the character "-"</string>
- <string id="inf_round.syntax" type="String" usage="Do not translate: round">round ( numeric_expression [ , integer_expression ] )</string>
- <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>
- <string id="inf_round.example.1" type="String" usage="Do not translate: round">Example: round (125, -1)</string>
- <string id="inf_round.result.1" type="String">Result: 130</string>
- <string id="inf_rpad.syntax" type="String" usage="Do not translate: rpad">rpad ( string_expression1 , integer_expression , string_expression2 )</string>
- <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>
- <string id="inf_substr.syntax" type="String" usage="Do not translate: substr">substr ( string_expression , integer_expression1 [ , integer_expression2 ] )</string>
- <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>
- <string id="inf_substr.example.1" type="String" usage="Do not translate: substr">Example: substr ( [Sales (query)].[Sales staff].[Position code], 3 , 5 )</string>
- <string id="inf_substr.result.1" type="String">Result: Returns characters 3 to 7 of the position codes.</string>
- <string id="inf_to_char.syntax" type="String" usage="Do not translate: to_char">to_char ( date_expression [ , string_expression ] )</string>
- <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>
- <string id="inf_to_date.syntax" type="String" usage="Do not translate: to_date">to_date ( string_expression1 , string_expression2 ) </string>
- <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>
- <string id="inf_weekday.syntax" type="String" usage="Do not translate: weekday">weekday ( date_expression )</string>
- <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>
- <string id="inf_year.syntax" type="String" usage="Do not translate: year">year ( date_expression )</string>
- <string id="inf_year.tip" type="String">Returns a four-digit integer that represents the year of "date_expression".</string>
- </section>
- <section name="MTH" type="UI">
- <string id="inf_math" type="String" usage="Do not translate: Informix">Informix Math</string>
- <string id="inf_log10.syntax" type="String" usage="Do not translate: log10">log10 ( numeric_expression )</string>
- <string id="inf_log10.tip" type="String">Returns the logarithm of "numeric_expression" to base 10.</string>
- <string id="inf_logn.syntax" type="String" usage="Do not translate: logn">logn ( numeric_expression )</string>
- <string id="inf_logn.tip" type="String">Returns the natural logarithm of "numeric_expression".</string>
- <string id="inf_root.syntax" type="String" usage="Do not translate: root">root ( numeric_expression1 [ , numeric_expression2 ] )</string>
- <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>
- <string id="inf_trunc1.syntax" type="String" usage="Do not translate: trunc">trunc ( date_expression , string_expression )</string>
- <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>
- <string id="inf_trunc2.syntax" type="String" usage="Do not translate: trunc">trunc ( numeric_expression [ , integer_expression ] )</string>
- <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>
- </section>
- <section name="TRG" type="UI">
- <string id="inf_trig" type="String" usage="Do not translate: Informix">Informix Trigonometry</string>
- <string id="inf_acos.syntax" type="String" usage="Do not translate: acos">acos ( numeric_expression )</string>
- <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>
- <string id="inf_asin.syntax" type="String" usage="Do not translate: asin">asin ( numeric_expression )</string>
- <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>
- <string id="inf_atan.syntax" type="String" usage="Do not translate: atan">atan ( numeric_expression )</string>
- <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>
- <string id="inf_atan2.syntax" type="String" usage="Do not translate: atan2">atan2 ( numeric_expression1 , numeric_expression2 )</string>
- <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>
- <string id="inf_cos.syntax" type="String" usage="Do not translate: cos">cos ( numeric_expression )</string>
- <string id="inf_cos.tip" type="String">Returns the cosine of "numeric_expression" where "numeric_expression" is an angle expressed in radians.</string>
- <string id="inf_sin.syntax" type="String" usage="Do not translate: sin">sin ( numeric_expression )</string>
- <string id="inf_sin.tip" type="String">Returns the sine of "numeric_expression" where "numeric_expression" is an angle expressed in radians.</string>
- <string id="inf_tan.syntax" type="String" usage="Do not translate: tan">tan ( numeric_expression )</string>
- <string id="inf_tan.tip" type="String">Returns the tangent of "numeric_expression" where "numeric_expression" is an angle expressed in radians.</string>
- </section>
- </component>
- </stringTable>
|