chore: updated input bar copy (#1774)

This commit is contained in:
ggurdin 2025-02-12 13:30:34 -05:00 committed by GitHub
parent 3af3f78d93
commit 8988cce68a
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
4 changed files with 7 additions and 16 deletions

View file

@ -2179,12 +2179,12 @@
"placeholders": {}
},
"writeAMessage": "Write a message…",
"writeAMessageFlag": "Write a message in {l1flag} or {l2flag}",
"@writeAMessageFlag": {
"writeAMessageLangCodes": "Type in {l1} or {l2}...",
"@writeAMessageLangCodes": {
"type": "text",
"placeholders": {
"l1flag": {},
"l2flag": {}
"l1": {},
"l2": {}
}
},
"yes": "Yes",

View file

@ -4510,14 +4510,6 @@
"presenceStyle": "Presencia:",
"noActivitiesFound": "¡Ya has practicado por ahora! Vuelve más tarde para ver más.",
"presencesToggle": "Mostrar mensajes de estado de otros usuarios",
"writeAMessageFlag": "Escribe un mensaje en {l1flag} o {l2flag}",
"@writeAMessageFlag": {
"type": "text",
"placeholders": {
"l1flag": {},
"l2flag": {}
}
},
"youInvitedToBy": "📩 Has sido invitado a través de un enlace a:\n{alias}",
"@youInvitedToBy": {
"placeholders": {

View file

@ -1034,7 +1034,6 @@
"wipeChatBackup": "Xóa sao lưu trò chuyện để tạo khóa khôi phục mới?",
"withTheseAddressesRecoveryDescription": "Nhờ các địa chỉ này, bạn có thể khôi phục mật khẩu của mình.",
"writeAMessage": "Viết tin nhắn…",
"writeAMessageFlag": "Viết tin nhắn bằng {l1flag} hoặc {l2flag}",
"yes": "Có",
"you": "Bạn",
"youAreNoLongerParticipatingInThisChat": "Bạn không còn tham gia cuộc trò chuyện này",

View file

@ -69,9 +69,9 @@ class ChatInputRow extends StatelessWidget {
activel2 != null &&
activel1.langCode != LanguageKeys.unknownLanguage &&
activel2.langCode != LanguageKeys.unknownLanguage
? L10n.of(context).writeAMessageFlag(
activel1.getDisplayName(context) ?? activel1.langCode,
activel2.getDisplayName(context) ?? activel2.langCode,
? L10n.of(context).writeAMessageLangCodes(
activel1.langCodeShort.toUpperCase(),
activel2.langCodeShort.toUpperCase(),
)
: L10n.of(context).writeAMessage;
}