Difference between revisions of "Extensions.I18n.GetCurrentLocale"

From emotive
Jump to navigation Jump to search
(Created page with "Category:i18n == Classification == {{ClassificationActivity | GetCurrentLocale | Gets Locale Code | Term | OTX i18n extension | Locale settings related term...")
 
Line 3: Line 3:
 
{{ClassificationActivity | GetCurrentLocale | Gets Locale Code | [[Term]] | [[i18n|OTX i18n extension]] | [[Locale settings related terms ]] | - | - }}
 
{{ClassificationActivity | GetCurrentLocale | Gets Locale Code | [[Term]] | [[i18n|OTX i18n extension]] | [[Locale settings related terms ]] | - | - }}
  
== Pseudo-Code Syntax ==
+
== OTL Syntax ==
 
<syntaxhighlight lang="java" enclose="div" style="font-size: medium;">
 
<syntaxhighlight lang="java" enclose="div" style="font-size: medium;">
String GetCurrentLocale();
+
StringTerm = I18n.GetCurrentLocale();
 
</syntaxhighlight>
 
</syntaxhighlight>
  
Line 15: Line 15:
 
== Properties ==
 
== Properties ==
  
== Examples ==
+
== OTL Examples ==
 
<syntaxhighlight lang="java" enclose="div" style="font-size: medium;">
 
<syntaxhighlight lang="java" enclose="div" style="font-size: medium;">
String result = GetCurrentLocale();
+
String result;
 +
result = I18n.GetCurrentLocale();
 
</syntaxhighlight>
 
</syntaxhighlight>
  
 
== See also ==
 
== See also ==
 
[[GetAllLocales]]
 
[[GetAllLocales]]

Revision as of 07:57, 10 February 2015

Classification

Name GetCurrentLocale
Short Description Gets Locale Code
Class Term
Extension OTX i18n extension
Group Locale settings related terms
Exceptions -
Checker Rules -
Standard Compliant Yes

OTL Syntax

StringTerm = I18n.GetCurrentLocale();

Description

The GetCurrentLocale term should retrieve the current locale code that is used by the runtime system. The returned locale code is a combination that consists of a language two-letter code according to ISO 639-1, followed a hyphen and then a country code of two uppercase ISO 3166. Optional can be added (under the direction of another hyphen) a code variant in case of additional adjustments. The Variant codes are not defined in this standard.

Return Value

The Term returns the value, see table below.

Icons Note.png In OTX, Terms are categorized according to its return data type!
Data Type Description
String Current locale code of the runtime system.

Properties

OTL Examples

String result;
result = I18n.GetCurrentLocale();

See also

GetAllLocales