added missing matrix localization for invitedBy

pull/1384/head
ggurdin 1 year ago
parent b22c451cc9
commit abb1e3a56f
No known key found for this signature in database
GPG Key ID: A01CB41737CBB478

@ -2303,6 +2303,12 @@
"user": {} "user": {}
} }
}, },
"invitedBy": "📩 Invited by {user}",
"@invitedBy": {
"placeholders": {
"user": {}
}
},
"youInvitedUser": "📩 You invited {user}", "youInvitedUser": "📩 You invited {user}",
"@youInvitedUser": { "@youInvitedUser": {
"placeholders": { "placeholders": {
@ -4017,7 +4023,7 @@
"conversationBotTextAdventureZone_title": "Text Adventure", "conversationBotTextAdventureZone_title": "Text Adventure",
"conversationBotTextAdventureZone_instructionLabel": "Game Master Instructions", "conversationBotTextAdventureZone_instructionLabel": "Game Master Instructions",
"conversationBotTextAdventureZone_instructionPlaceholder": "Set game master instructions", "conversationBotTextAdventureZone_instructionPlaceholder": "Set game master instructions",
"conversationBotCustomZone_instructionSystemPromptEmptyError": "Missing game master instructions", "conversationBotCustomZone_instructionSystemPromptEmptyError": "Missing game master instructions",
"studentAnalyticsNotAvailable": "Student data not currently available", "studentAnalyticsNotAvailable": "Student data not currently available",
"roomDataMissing": "Some data may be missing from rooms in which you are not a member.", "roomDataMissing": "Some data may be missing from rooms in which you are not a member.",
"updatePhoneOS": "You may need to update your device's OS version.", "updatePhoneOS": "You may need to update your device's OS version.",

@ -346,8 +346,5 @@ class MatrixLocals extends MatrixLocalizations {
l10n.startedKeyVerification(senderName); l10n.startedKeyVerification(senderName);
@override @override
String invitedBy(String senderName) { String invitedBy(String senderName) => l10n.invitedBy(senderName);
// TODO: implement invitedBy
throw UnimplementedError();
}
} }

Loading…
Cancel
Save