Hi Team,
I working on localizing my teams app and following steps in the below article:
https://learn.microsoft.com/en-us/microsoftteams/platform/concepts/build-and-test/apps-localization
In the steps it's mentioned that we need to add Language Tags for all the languages we support and create corresponding json files.
"additionalLanguages": [
{
"languageTag": "en-gb",
"file": "en-gb.json"
},
{
"languageTag": "fr",
"file": "fr.json"
},
{
"languageTag": "pl",
"file": "pl.json"
}]
I wanted to check what all are the possible values for languageTag property.
Is there some link where I can find all the supported language codes (all possible values for languageTag) and language that code represents ?