Globalization Plugin
Deprecated for Cordova 9.0 or higher. Please refer to here for the transition from cordova-plugin-globalization.
Tested Version: 1.0.9
This document is based on the original Cordova docs available at Cordova Docs.
This plugin obtains information and performs operations specific to the user's locale, language, and timezone. Note the difference between locale and language: locale controls how numbers, dates, and times are displayed for a region, while language determines what language text appears as, independently of locale settings. Often developers use locale to set both settings, but there is no reason a user couldn't set her language to "English" but locale to "French", so that text is displayed in English but dates, times, etc., are displayed as they are in France. Unfortunately, most mobile platforms currently do not make a distinction between these settings.
This plugin defines global navigator.globalization
object. Although in the global scope, it is not available until after the deviceready
event.
Deprecation Notice
With the ECMA Internationalization API now supported on iOS, Android and Windows devices, this plugin is not required any more. Migrating from this plugin to the ECMA Internationalization API is explained in this Cordova blog post.
Plugin ID
Adding the Plugin in Monaca
In order to use this plugin, please enable Globalization
plugin in Monaca Cloud IDE.
API Reference
Objects
GlobalizationError
Methods
navigator.globalization.getPreferredLanguage
navigator.globalization.getLocaleName
navigator.globalization.dateToString
navigator.globalization.stringToDate
navigator.globalization.getDatePattern
navigator.globalization.getDateNames
navigator.globalization.isDayLightSavingsTime
navigator.globalization.getFirstDayOfWeek
navigator.globalization.numberToString
navigator.globalization.stringToNumber
navigator.globalization.getNumberPattern
navigator.globalization.getCurrencyPattern
navigator.globalization.getPreferredLanguage
Get the BCP 47 language tag for the client's current language.
Description
Returns the BCP-47 compliant language identifier tag to the successCallback
with a properties
object as a parameter. That object should have a value
property with a String
value.
If there is an error getting the language, then the errorCallback
executes with a GlobalizationError
object as a parameter. The error's expected code is GlobalizationError.UNKNOWN_ERROR
.
Supported Platforms
Android
iOS
Example
When the browser is set to the en-US
language, this should display a popup dialog with the text language: en-US
:
Android Quirks
Returns the ISO 639-1 two-letter language code, upper case ISO 3166-1 country code and variant separated by hyphens. Examples: "en", "en-US", "US"
navigator.globalization.getLocaleName
Returns the BCP 47 compliant tag for the client's current locale setting.
Description
Returns the BCP 47 compliant locale identifier string to the successCallback
with a properties
object as a parameter. That object should have a value
property with a String
value. The locale tag will consist of a two-letter lower case language code, two-letter upper case country code, and (unspecified) variant code, separated by a hyphen.
If there is an error getting the locale, then the errorCallback
executes with a GlobalizationError
object as a parameter. The error's expected code is GlobalizationError.UNKNOWN_ERROR
.
Supported Platforms
Android
iOS
Example
When the browser is set to the en-US
locale, this displays a popup dialog with the text locale: en-US
.
Android Quirks
Java does not distinguish between a set "language" and set "locale," so this method is essentially the same as
navigator.globalization.getPreferredLanguage()
.
navigator.globalization.dateToString
Returns a date formatted as a string according to the client's locale and timezone.
Description
Returns the formatted date String
via a value
property accessible from the object passed as a parameter to the successCallback
.
The inbound date
parameter should be of type Date
.
If there is an error formatting the date, then the errorCallback
executes with a GlobalizationError
object as a parameter. The error's expected code is GlobalizationError.FORMATTING_ERROR
.
The options
parameter is optional, and its default values are:
The options.formatLength
can be short
, medium
, long
, or full
.
The options.selector
can be date
, time
or date and time
.
Supported Platforms
Android
iOS
Example
If the browser is set to the en_US
locale, this displays a popup dialog with text similar to date: 9/25/2012 4:21PM
using the default options:
Android Quirks
navigator.globalization.getCurrencyPattern
Returns a pattern string to format and parse currency values according to the client's user preferences and ISO 4217 currency code.
Description
Returns the pattern to the successCallback
with a properties
object as a parameter. That object should contain the following properties:
pattern: The currency pattern to format and parse currency values. The patterns follow Unicode Technical Standard #35. (String)
code: The ISO 4217 currency code for the pattern. (String)
fraction: The number of fractional digits to use when parsing and formatting currency. (Number)
rounding: The rounding increment to use when parsing and formatting. (Number)
decimal: The decimal symbol to use for parsing and formatting. (String)
grouping: The grouping symbol to use for parsing and formatting. (String)
The inbound currencyCode
parameter should be a String
of one of the ISO 4217 currency codes, for example 'USD'.
If there is an error obtaining the pattern, then the errorCallback
executes with a GlobalizationError
object as a parameter. The error's expected code is GlobalizationError.FORMATTING_ERROR
.
Supported Platforms
Android
iOS
Example
When the browser is set to the en_US
locale and the selected currency is United States Dollars, this example displays a popup dialog with text similar to the results that follow:
Expected result:
navigator.globalization.getDateNames
Returns an array of the names of the months or days of the week, depending on the client's user preferences and calendar.
Description
Returns the array of names to the successCallback
with a properties
object as a parameter. That object contains a value
property with an Array
of String
values. The array features names starting from either the first month in the year or the first day of the week, depending on the option selected.
If there is an error obtaining the names, then the errorCallback
executes with a GlobalizationError
object as a parameter. The error's expected code is GlobalizationError.UNKNOWN_ERROR
.
The options
parameter is optional, and its default values are:
The value of options.type
can be narrow
or wide
.
The value of options.item
can be months
or days
.
Supported Platforms
Android
iOS
Example
When the browser is set to the en_US
locale, this example displays a series of twelve popup dialogs, one per month, with text similar to month: January
:
navigator.globalization.getDatePattern
Returns a pattern string to format and parse dates according to the client's user preferences.
Description
Returns the pattern to the successCallback
. The object passed in as a parameter contains the following properties:
pattern: The date and time pattern to format and parse dates. The patterns follow Unicode Technical Standard #35. (String)
timezone: The abbreviated name of the time zone on the client. (String)
iana_timezone: The IANA name of the time zone on the client. (String)
utc_offset: The current difference in seconds between the client's time zone and coordinated universal time. (Number)
dst_offset: The current daylight saving time offset in seconds between the client's non-daylight saving's time zone and the client's daylight saving's time zone. (Number)
If there is an error obtaining the pattern, the errorCallback
executes with a GlobalizationError
object as a parameter. The error's expected code is GlobalizationError.PATTERN_ERROR
.
The options
parameter is optional, and defaults to the following values:
The options.formatLength
can be short
, medium
, long
, or full
. The options.selector
can be date
, time
or date and time
.
Supported Platforms
Android
iOS
Example
When the browser is set to the en_US
locale, this example displays a popup dialog with text such as pattern: M/d/yyyy h:mm a
:
navigator.globalization.getFirstDayOfWeek
Returns the first day of the week according to the client's user preferences and calendar.
Description
The days of the week are numbered starting from 1, where 1 is assumed to be Sunday. Returns the day to the successCallback
with a properties
object as a parameter. That object should have a value
property with a Number
value.
If there is an error obtaining the pattern, then the errorCallback
executes with a GlobalizationError
object as a parameter. The error's expected code is GlobalizationError.UNKNOWN_ERROR
.
Supported Platforms
Android
iOS
Example
When the browser is set to the en_US
locale, this displays a popup dialog with text similar to day: 1
.
navigator.globalization.getNumberPattern
Returns a pattern string to format and parse numbers according to the client's user preferences.
Description
Returns the pattern to the successCallback
with a properties
object as a parameter. That object contains the following properties:
pattern: The number pattern to format and parse numbers. The patterns follow Unicode Technical Standard #35. (String)
symbol: The symbol to use when formatting and parsing, such as a percent or currency symbol. (String)
fraction: The number of fractional digits to use when parsing and formatting numbers. (Number)
rounding: The rounding increment to use when parsing and formatting. (Number)
positive: The symbol to use for positive numbers when parsing and formatting. (String)
negative: The symbol to use for negative numbers when parsing and formatting. (String)
decimal: The decimal symbol to use for parsing and formatting. (String)
grouping: The grouping symbol to use for parsing and formatting. (String)
If there is an error obtaining the pattern, then the errorCallback
executes with a GlobalizationError
object as a parameter. The error's expected code is GlobalizationError.PATTERN_ERROR
.
The options
parameter is optional, and default values are:
The options.type
can be decimal
, percent
, or currency
.
Supported Platforms
Android
iOS
Example
When the browser is set to the en_US
locale, this should display a popup dialog with text similar to the results that follow:
Results:
navigator.globalization.isDayLightSavingsTime
Indicates whether daylight savings time is in effect for a given date using the client's time zone and calendar.
Description
Indicates whether or not daylight savings time is in effect to the successCallback
with a properties
object as a parameter. That object should have a dst
property with a Boolean
value. A true
value indicates that daylight savings time is in effect for the given date, and false
indicates that it is not.
The inbound parameter date
should be of type Date
.
If there is an error reading the date, then the errorCallback
executes. The error's expected code is GlobalizationError.UNKNOWN_ERROR
.
Supported Platforms
Android
iOS
Example
During the summer, and if the browser is set to a DST-enabled timezone, this should display a popup dialog with text similar to dst: true
:
navigator.globalization.numberToString
Returns a number formatted as a string according to the client's user preferences.
Description
Returns the formatted number string to the successCallback
with a properties
object as a parameter. That object should have a value
property with a String
value.
If there is an error formatting the number, then the errorCallback
executes with a GlobalizationError
object as a parameter. The error's expected code is GlobalizationError.FORMATTING_ERROR
.
The options
parameter is optional, and its default values are:
The options.type
can be decimal
, percent
, or currency
.
Supported Platforms
Android
iOS
Example
When the browser is set to the en_US
locale, this displays a popup dialog with text similar to number: 3.142
:
navigator.globalization.stringToDate
Parses a date formatted as a string, according to the client's user preferences and calendar using the time zone of the client, and returns the corresponding date object.
Description
Returns the date to the success callback with a properties
object as a parameter. That object should have the following properties:
year: The four digit year. (Number)
month: The month from (0-11). (Number)
day: The day from (1-31). (Number)
hour: The hour from (0-23). (Number)
minute: The minute from (0-59). (Number)
second: The second from (0-59). (Number)
millisecond: The milliseconds (from 0-999), not available on all platforms. (Number)
The inbound dateString
parameter should be of type String
.
The options
parameter is optional, and defaults to the following values:
The options.formatLength
can be short
, medium
, long
, or full
. The options.selector
can be date
, time
or date and time
.
If there is an error parsing the date string, then the errorCallback
executes with a GlobalizationError
object as a parameter. The error's expected code is GlobalizationError.PARSING_ERROR
.
Supported Platforms
Android
iOS
Example
When the browser is set to the en_US
locale, this displays a popup dialog with text similar to month:8 day:25 year:2012
. Note that the month integer is one less than the string, as the month integer represents an array index.
navigator.globalization.stringToNumber
Parses a number formatted as a string according to the client's user preferences and returns the corresponding number.
Description
Returns the number to the successCallback
with a properties
object as a parameter. That object should have a value
property with a Number
value.
If there is an error parsing the number string, then the errorCallback
executes with a GlobalizationError
object as a parameter. The error's expected code is GlobalizationError.PARSING_ERROR
.
The options
parameter is optional, and defaults to the following values:
The options.type
can be decimal
, percent
, or currency
.
Supported Platforms
Android
iOS
Example
When the browser is set to the en_US
locale, this should display a popup dialog with text similar to number: 1234.56
:
GlobalizationError
An object representing an error from the Globalization API.
Properties
code: One of the following codes representing the error type (Number)
GlobalizationError.UNKNOWN_ERROR
: 0GlobalizationError.FORMATTING_ERROR
: 1GlobalizationError.PARSING_ERROR
: 2GlobalizationError.PATTERN_ERROR
: 3message: A text message that includes the error's explanation and/or details. (String)
Description
This object is created and populated by Cordova, and returned to a callback in the case of an error.
Supported Platforms
Android
iOS
Example
When the following error callback executes, it displays a popup dialog with the text similar to code: 3
and message:
See Also:
Last updated