I have following adaptive card
So when i change browser language it show the date and time and localized format but when i change my system's timezone locally it doesn't show me the date and time in localized format
I'm referencing to this article
https://learn.microsoft.com/en-us/adaptive-cards/authoring-cards/text-features
{
"$schema": "http://adaptivecards.io/schemas/adaptive-card.json",
"type": "AdaptiveCard",
"version": "1.0",
"body": [
{
"type": "TextBlock",
"text": "Your package will arrive on {{DATE(2017-02-14T06:00:00Z, SHORT)}} at {{TIME(2017-02-14T06:00:00Z)}}",
"wrap": true
}
]
}