Localization 有些单词显示为''';在MS团队应用程序本地化(清单1.5)中使用法语时 描述:团队在应用程序静态选项卡和“我能做什么”输入命令中显示错误的值 例如,值“显示”�L�但是,似乎团队无法识别字符“é” 清单版本:1.5 语言:fr

Localization 有些单词显示为''';在MS团队应用程序本地化(清单1.5)中使用法语时 描述:团队在应用程序静态选项卡和“我能做什么”输入命令中显示错误的值 例如,值“显示”�L�但是,似乎团队无法识别字符“é” 清单版本:1.5 语言:fr,localization,microsoft-teams,Localization,Microsoft Teams,Manifest.json { //hide bot other message "localizationInfo": { "defaultLanguageTag": "en", "additionalLanguages": [ { "languageTag": "fr-fr",

Manifest.json

{
   //hide bot other message
   "localizationInfo": {
                "defaultLanguageTag": "en",
                "additionalLanguages": [            
                    {
                        "languageTag": "fr-fr",
                        "file": "fr-fr.json"
                    }
                ]
   }
}

fr-fr.json
@林老师,对于所有的法语地区,你需要设置你的“languageTag”=“fr”。请跟我来

当我检查安装程序bot包时,这个问题已经解决了。似乎App Studio无法识别像“é”这样的单词。关闭这个问题

{
  "$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",
}