在 MS Teams 应用程序本地化(清单 1.5)中使用法语时,某些单词显示为“?”
some words display as '?'' when using french language in MS Teams app localization(manifest 1.5)
- 说明:团队在应用程序静态选项卡和'what can i do'输入命令中显示错误值
例如,值 'élément' 显示 '�l�ment',似乎 Teams 无法识别字符 'é'
- 清单版本: 1.5
- 语言: 法语-法语
Manifest.json
{
//hide bot other message
"localizationInfo": {
"defaultLanguageTag": "en",
"additionalLanguages": [
{
"languageTag": "fr-fr",
"file": "fr-fr.json"
}
]
}
}
fr-fr.json
{
"$schema": "https://developer.microsoft.com/fr-fr/json-schemas/teams/v1.5/MicrosoftTeams.Localization.schema.json",
"name.short": "Test",
"name.full": "TestFullName",
"description.short": "short description example",
"description.full": "full description example",
"staticTabs[0].name": "Nouveautés",
"bots[0].commandLists[0].commands[0].title": "Restaurer élément",
"bots[0].commandLists[0].commands[0].description": "Restaurer élément for test",
}
@Lin's Master,对于所有法国地区,您需要设置您的"languageTag" = "fr"。请关注这个documentation。
当我检查安装程序机器人时,这个问题已经解决了 package.It 似乎 App Studio 无法识别某些单词,如“é”。所以关闭这个问题!
- 说明:团队在应用程序静态选项卡和'what can i do'输入命令中显示错误值 例如,值 'élément' 显示 '�l�ment',似乎 Teams 无法识别字符 'é'
- 清单版本: 1.5
- 语言: 法语-法语
Manifest.json
{
//hide bot other message
"localizationInfo": {
"defaultLanguageTag": "en",
"additionalLanguages": [
{
"languageTag": "fr-fr",
"file": "fr-fr.json"
}
]
}
}
fr-fr.json
{
"$schema": "https://developer.microsoft.com/fr-fr/json-schemas/teams/v1.5/MicrosoftTeams.Localization.schema.json",
"name.short": "Test",
"name.full": "TestFullName",
"description.short": "short description example",
"description.full": "full description example",
"staticTabs[0].name": "Nouveautés",
"bots[0].commandLists[0].commands[0].title": "Restaurer élément",
"bots[0].commandLists[0].commands[0].description": "Restaurer élément for test",
}
@Lin's Master,对于所有法国地区,您需要设置您的"languageTag" = "fr"。请关注这个documentation。
当我检查安装程序机器人时,这个问题已经解决了 package.It 似乎 App Studio 无法识别某些单词,如“é”。所以关闭这个问题!