Reference version

Expo 本地化 iconExpo 本地化

一个提供本机用户本地化信息接口的库。

Android
iOS
tvOS
Web
Included in Expo Go
Bundled version:
~16.1.6

For the complete documentation index, see llms.txt. Use this Use this file to discover all available pages.

expo-localization 允许你本地化你的应用,为特定地区、语言或文化定制体验。它还提供对原生设备上区域设置数据的访问。结合 lingui-jsreact-i18nextreact-intli18n-jsreact-native-intlayer 等本地化库与 expo-localization 一起使用,将使你能够为用户创建非常易于访问的体验。

安装

Terminal
npx expo install expo-localization

If you are installing this in an existing React Native app, make sure to install expo in your project.

在 app 配置中配置

如果你在项目中使用 config plugins(Continuous Native Generation (CNG)),你可以使用 expo-localization 内置的 config plugin 来进行配置。该插件允许你配置各种无法在运行时设置、且需要构建新的应用二进制文件后才会生效的属性。如果你的应用使用 CNG,那么你需要手动配置该库。

Example app.json with config plugin

app.json
{ "expo": { "plugins": ["expo-localization"] } }

用法

有关使用 expo-localization 以及为从右到左语言添加支持的更多信息,请参阅 Localization 指南。

API

import { getLocales, getCalendars } from 'expo-localization';

行为

你可以使用同步的 getLocales()getCalendars() 方法获取用户设备的区域设置。在 iOS 上,结果在应用运行期间将保持不变。

在 Android 上,用户可以在设置中更改区域设置偏好,而无需重启应用。为了保持本地化的最新状态,你可以在应用每次返回前台时重新运行 getLocales()getCalendars() 方法。使用 AppState 来检测这一点。

Constants

Deprecated: Use Localization.getLocales() instead. An IETF BCP 47 language tag, consisting of a two-character language code and optional script, region and variant codes.

Localization.locale

Android
iOS
tvOS
Web

Type: string

Example

'en', 'en-US', 'zh-Hans', 'zh-Hans-CN', 'en-emodeng'

Hooks

useCalendars()

Android
iOS
tvOS
Web

A hook providing a list of user's preferred calendars, returned as an array of objects of type Calendar. Guaranteed to contain at least 1 element. For now always returns a single element, but it's likely to return a user preference list on some platforms in the future. If the OS settings change, the hook will rerender with a new list of calendars.

Returns:
Calendar[]

Example

[{ "calendar": "gregory", "timeZone": "Europe/Warsaw", "uses24hourClock": true, "firstWeekday": 1 }]

useLocales()

Android
iOS
tvOS
Web

A hook providing a list of user's locales, returned as an array of objects of type Locale. Guaranteed to contain at least 1 element. These are returned in the order the user defines in their device settings. On the web currency and measurements systems are not provided, instead returned as null. If needed, you can infer them from the current region using a lookup table. If the OS settings change, the hook will rerender with a new list of locales.

Returns:
Locale[]

Example

[{ "languageTag": "pl-PL", "languageCode": "pl", "textDirection": "ltr", "digitGroupingSeparator": " ", "decimalSeparator": ",", "measurementSystem": "metric", "currencyCode": "PLN", "currencySymbol": "zł", "regionCode": "PL", "temperatureUnit": "celsius" }]

Methods

Localization.getCalendars()

Android
iOS
tvOS
Web

List of user's preferred calendars, returned as an array of objects of type Calendar. Guaranteed to contain at least 1 element. For now always returns a single element, but it's likely to return a user preference list on some platforms in the future.

Returns:
Calendar[]

Example

[{ "calendar": "gregory", "timeZone": "Europe/Warsaw", "uses24hourClock": true, "firstWeekday": 1 }]

Localization.getLocales()

Android
iOS
tvOS
Web

List of user's locales, returned as an array of objects of type Locale. Guaranteed to contain at least 1 element. These are returned in the order the user defines in their device settings. On the web currency and measurements systems are not provided, instead returned as null. If needed, you can infer them from the current region using a lookup table.

Returns:
Locale[]

Example

[{ "languageTag": "pl-PL", "languageCode": "pl", "textDirection": "ltr", "digitGroupingSeparator": " ", "decimalSeparator": ",", "measurementSystem": "metric", "currencyCode": "PLN", "currencySymbol": "zł", "regionCode": "PL", "temperatureUnit": "celsius" }]

Types

Calendar

Android
iOS
tvOS
Web
PropertyTypeDescription
calendarCalendarIdentifier | null

The calendar identifier, one of Unicode calendar types.

On Android is limited to one of device's available calendar types.

On iOS uses calendar identifiers, but maps them to the corresponding Unicode types, will also never contain 'dangi' or 'islamic-rgsa' due to it not being implemented on iOS.

firstWeekdayWeekday | null

The first day of the week. For most calendars Sunday is numbered 1, with Saturday being number 7. Can be null on some browsers that don't support the weekInfo property in Intl API.

Example

1, 7.

timeZonestring | null

Time zone for the calendar. Can be null on Web.

Example

'America/Los_Angeles', 'Europe/Warsaw', 'GMT+1'.

uses24hourClockboolean | null

True when current device settings use 24-hour time format. Can be null on some browsers that don't support the hourCycle property in Intl API.

Locale

Android
iOS
tvOS
Web
PropertyTypeDescription
currencyCodestring | null

Currency code for the locale. On iOS, it's the currency code from the Region setting under Language & Region, not for the current locale. On Android, it's the currency specifc to the locale in the list, as there are no separate settings for selecting a region. Is null on Web, use a table lookup based on region instead.

Example

'USD', 'EUR', 'PLN'.

currencySymbolstring | null

Currency symbol for the currency specified by currencyCode.

Example

'$', '€', 'zł'.

decimalSeparatorstring | null

Decimal separator used for formatting numbers with fractional parts.

Example

'.', ','.

digitGroupingSeparatorstring | null

Digit grouping separator used for formatting large numbers.

Example

'.', ','.

languageCodestring | null

An IETF BCP 47 language tag without the region code.

Example

'en', 'es', 'pl'.

languageCurrencyCodestring | null

Currency code for the locale. On iOS, it's the currency code for the current locale in the list, not the device region. On Android, it's equal to currencyCode. Is null on Web. Prefer using currencyCode for any internalization purposes.

Example

'USD', 'EUR', 'PLN'.

languageCurrencySymbolstring | null

Currency symbol for the currency specified by languageCurrencyCode. Prefer using currencySymbol for any internalization purposes.

Example

'$', '€', 'zł'.

languageRegionCodestring | null

The region code for the preferred language. When the language is not region-specific, it returns the same value as regionCode. When the language is region-specific, it returns the region code for the language (en-CA -> CA). Prefer using regionCode for any internalization purposes.

Example

'US'.

languageScriptCodestring | null

An ISO 15924 4-letter script code. On Android and Web, it may be null if none is defined.

Example

'Latn', 'Hans', 'Hebr'.

languageTagstring

An IETF BCP 47 language tag with a region code.

Example

'en-US', 'es-419', 'pl-PL'.

measurementSystem'metric' | 'us' | 'uk' | null

The measurement system used in the locale. Is null on Web, as user chosen measurement system is not exposed on the web and using locale to determine measurement systems is unreliable. Ask for user preferences if possible.

regionCodestring | null

The region code for your device that comes from the Region setting under Language & Region on iOS, Region settings on Android and is parsed from locale on Web (can be null on Web).

Example

'US'.

temperatureUnit'celsius' | 'fahrenheit' | null

The temperature unit used in the locale. Returns null if the region code is unknown.

textDirection'ltr' | 'rtl' | null

Text direction for the locale. One of: 'ltr', 'rtl', but can also be null on some browsers without support for the textInfo property in Intl API.

Localization

Android
iOS
tvOS
Web
PropertyTypeDescription
currencystring | null

Three-character ISO 4217 currency code. Returns null on web.

Example

'USD', 'EUR', 'CNY', null

decimalSeparatorstring

Decimal separator used for formatting numbers.

Example

',', '.'

digitGroupingSeparatorstring

Digit grouping separator used when formatting numbers larger than 1000.

Example

'.', '', ','

isMetricboolean

Boolean value that indicates whether the system uses the metric system. On Android and web, this is inferred from the current region.

isoCurrencyCodesstring[]

A list of all the supported language ISO codes.

isRTLboolean

Returns if the system's language is written from Right-to-Left. This can be used to build features like bidirectional icons.

Returns false in Server Side Rendering (SSR) environments.

localestring

An IETF BCP 47 language tag, consisting of a two-character language code and optional script, region and variant codes.

Example

'en', 'en-US', 'zh-Hans', 'zh-Hans-CN', 'en-emodeng'

localesstring[]

List of all the native languages provided by the user settings. These are returned in the order that the user defined in the device settings.

Example

['en', 'en-US', 'zh-Hans', 'zh-Hans-CN', 'en-emodeng']

regionstring | null

The region code for your device that comes from the Region setting under Language & Region on iOS. This value is always available on iOS, but might return null on Android or web.

Example

'US', 'NZ', null

timezonestring

The current time zone in display format. On Web time zone is calculated with Intl.DateTimeFormat().resolvedOptions().timeZone. For a better estimation you could use the moment-timezone package but it will add significant bloat to your website's bundle size.

Example

'America/Los_Angeles'

Enums

CalendarIdentifier

Android
iOS
tvOS
Web

The calendar identifier, one of Unicode calendar types. Gregorian calendar is aliased and can be referred to as both CalendarIdentifier.GREGORIAN and CalendarIdentifier.GREGORY.

BUDDHIST

CalendarIdentifier.BUDDHIST = "buddhist"

Thai Buddhist calendar

CHINESE

CalendarIdentifier.CHINESE = "chinese"

Traditional Chinese calendar

COPTIC

CalendarIdentifier.COPTIC = "coptic"

Coptic calendar

DANGI

CalendarIdentifier.DANGI = "dangi"

Traditional Korean calendar

ETHIOAA

CalendarIdentifier.ETHIOAA = "ethioaa"

Ethiopic calendar, Amete Alem (epoch approx. 5493 B.C.E)

ETHIOPIC

CalendarIdentifier.ETHIOPIC = "ethiopic"

Ethiopic calendar, Amete Mihret (epoch approx, 8 C.E.)

GREGORIAN

CalendarIdentifier.GREGORIAN = "gregory"

Gregorian calendar (alias)

GREGORY

CalendarIdentifier.GREGORY = "gregory"

Gregorian calendar

HEBREW

CalendarIdentifier.HEBREW = "hebrew"

Traditional Hebrew calendar

INDIAN

CalendarIdentifier.INDIAN = "indian"

Indian calendar

ISLAMIC

CalendarIdentifier.ISLAMIC = "islamic"

Islamic calendar

ISLAMIC_CIVIL

CalendarIdentifier.ISLAMIC_CIVIL = "islamic-civil"

Islamic calendar, tabular (intercalary years [2,5,7,10,13,16,18,21,24,26,29] - civil epoch)

ISLAMIC_RGSA

CalendarIdentifier.ISLAMIC_RGSA = "islamic-rgsa"

Islamic calendar, Saudi Arabia sighting

ISLAMIC_TBLA

CalendarIdentifier.ISLAMIC_TBLA = "islamic-tbla"

Islamic calendar, tabular (intercalary years [2,5,7,10,13,16,18,21,24,26,29] - astronomical epoch)

ISLAMIC_UMALQURA

CalendarIdentifier.ISLAMIC_UMALQURA = "islamic-umalqura"

Islamic calendar, Umm al-Qura

ISO8601

CalendarIdentifier.ISO8601 = "iso8601"

ISO calendar (Gregorian calendar using the ISO 8601 calendar week rules)

JAPANESE

CalendarIdentifier.JAPANESE = "japanese"

Japanese imperial calendar

PERSIAN

CalendarIdentifier.PERSIAN = "persian"

Persian calendar

ROC

CalendarIdentifier.ROC = "roc"

Civil (algorithmic) Arabic calendar

Weekday

Android
iOS
tvOS
Web

An enum mapping days of the week in Gregorian calendar to their index as returned by the firstWeekday property.

SUNDAY

Weekday.SUNDAY = 1

MONDAY

Weekday.MONDAY = 2

TUESDAY

Weekday.TUESDAY = 3

WEDNESDAY

Weekday.WEDNESDAY = 4

THURSDAY

Weekday.THURSDAY = 5

FRIDAY

Weekday.FRIDAY = 6

SATURDAY

Weekday.SATURDAY = 7