chore: Update localizations

This commit is contained in:
Christian Pauly 2022-12-14 09:28:41 +01:00
parent 944a9ccc20
commit 36237d04aa
2 changed files with 12 additions and 1 deletions

View File

@ -2975,5 +2975,12 @@
}
},
"hideUnimportantStateEvents": "Hide unimportant state events",
"doNotShowAgain": "Do not show again"
"doNotShowAgain": "Do not show again",
"wasDirectChatDisplayName": "Empty chat (was {oldDisplayName})",
"@wasDirectChatDisplayName": {
"type": "text",
"placeholders": {
"oldDisplayName": {}
}
}
}

View File

@ -300,4 +300,8 @@ class MatrixLocals extends MatrixLocalizations {
@override
String youUnbannedUser(String targetName) => l10n.youUnbannedUser(targetName);
@override
String wasDirectChatDisplayName(String oldDisplayName) =>
l10n.wasDirectChatDisplayName(oldDisplayName);
}