UserFacingMessage
提供面向用户的消息,其中包含语言区域信息。消息的长度不得超过 4096 个字符。
JSON 表示法 |
{
"localizedMessages": {
string: string,
...
},
"defaultMessage": string
} |
字段 |
localizedMessages |
map (key: string, value: string)
包含 <locale, message> 对的映射,其中 locale 是格式正确的 BCP 47 语言代码,例如 en-US、es-ES 或 fr。 包含一系列 "key": value 对的对象。示例:{ "name": "wrench", "mass": "1.3kg", "count": "3" } 。
|
defaultMessage |
string
如果未指定任何本地化消息,或者用户的语言区域与任何本地化消息都不匹配,系统会显示此默认消息。如果提供了本地化消息,则必须提供默认消息。
|
如未另行说明,那么本页面中的内容已根据知识共享署名 4.0 许可获得了许可,并且代码示例已根据 Apache 2.0 许可获得了许可。有关详情,请参阅 Google 开发者网站政策。Java 是 Oracle 和/或其关联公司的注册商标。
最后更新时间 (UTC):2024-10-15。
[null,null,["最后更新时间 (UTC):2024-10-15。"],[[["The JSON representation is used to provide user-facing messages with locale information, with a maximum length of 4096 characters."],["It includes `localizedMessages`, a map of locale codes and corresponding messages, and `defaultMessage` for fallback display."],["A well-formed BCP 47 language code is used for locale specification, and a default message is required if localized messages are provided."]]],[]]