AI-generated Key Takeaways
-
The i18nLanguage resource identifies a language supported by the YouTube website, which can be automatically set based on Google Account settings, browser language, or IP location, or manually selected by the user.
-
Each i18nLanguage resource includes a language code and a name, with the language code being usable as the value for the
hlparameter in API calls likevideoCategories.listandguideCategories.list. -
The i18nLanguages resource can be retrieved using the
i18nLanguages.listmethod, which provides a list of supported application languages. -
The resource is represented in JSON format, containing properties such as
kind(identifying the resource type),etag,id, and asnippetobject with details like thehlcode and the languagename.
An i18nLanguage resource identifies an application language that the YouTube website supports. The application language can also be referred to as a UI language. For the YouTube website, an application language could be automatically selected based on Google Account settings, browser language, or IP location. A user could also manually select the desired UI language from the YouTube site footer.
Each i18nLanguage resource identifies a language code and a name. The language code can be used as the value of the hl parameter when calling API methods like videoCategories.list and guideCategories.list.
Methods
The API supports the following methods for i18nLanguages resources:
- list
- Returns a list of application languages that the YouTube website supports. Try it now.
Resource representation
The following JSON structure shows the format of a i18nLanguages resource:
{
"kind": "youtube#i18nLanguage",
"etag": etag,
"id": string,
"snippet": {
"hl": string,
"name": string
}
}Properties
The following table defines the properties that appear in this resource:
| Properties | |
|---|---|
kind |
stringIdentifies the API resource's type. The value will be youtube#i18nLanguage. |
etag |
etagThe Etag of this resource. |
id |
stringThe ID that YouTube uses to uniquely identify the i18n language. |
snippet |
objectThe snippet object contains basic details about the i18n language, such as its language code and name. |
snippet.hl |
stringA BCP-47 code that uniquely identifies a language. |
snippet.name |
stringThe name of the language as it is written in the language specified using the i18nLanguage.list method's hl parameter. |