LocalizedText
Stay organized with collections
Save and categorize content based on your preferences.
Localized variant of a text in a particular language.
JSON representation |
{
"text": string,
"languageCode": string
} |
Except as otherwise noted, the content of this page is licensed under the Creative Commons Attribution 4.0 License, and code samples are licensed under the Apache 2.0 License. For details, see the Google Developers Site Policies. Java is a registered trademark of Oracle and/or its affiliates.
Last updated 2025-08-27 UTC.
[null,null,["Last updated 2025-08-27 UTC."],[[["\u003cp\u003eLocalizedText provides localized strings in a specific language, represented by the \u003ccode\u003etext\u003c/code\u003e field.\u003c/p\u003e\n"],["\u003cp\u003eIt uses the BCP-47 standard for language codes in the \u003ccode\u003elanguageCode\u003c/code\u003e field, enabling global language support.\u003c/p\u003e\n"],["\u003cp\u003eThe JSON representation combines the localized text and its language code for clear identification.\u003c/p\u003e\n"]]],["The provided information describes a JSON structure for representing localized text. It includes two key fields: `text`, which holds the localized string, and `languageCode`, which uses a BCP-47 code (e.g., \"en-US\") to specify the language of the `text`. This schema allows for the storage and identification of a string in a particular language, referencing external information for further detail.\n"],null,["# LocalizedText\n\n- [JSON representation](#SCHEMA_REPRESENTATION)\n\nLocalized variant of a text in a particular language.\n\n| JSON representation |\n|----------------------------------------------------|\n| ``` { \"text\": string, \"languageCode\": string } ``` |\n\n| Fields ||\n|----------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------|\n| `text` | `string` Localized string in the language corresponding to [languageCode](/maps/documentation/routes/reference/rest/v2/LocalizedText#FIELDS.language_code) below. |\n| `languageCode` | `string` The text's BCP-47 language code, such as \"en-US\" or \"sr-Latn\". For more information, see \u003chttp://www.unicode.org/reports/tr35/#Unicode_locale_identifier\u003e. |"]]