refactor: Update arb file types
This commit is contained in:
parent
aad2c9af99
commit
25872eeb26
55 changed files with 43340 additions and 31747 deletions
|
|
@ -14,8 +14,7 @@ extension RoomStatusExtension on Room {
|
|||
if (AppConfig.hideTypingUsernames) {
|
||||
typingText = L10n.of(context).isTyping;
|
||||
if (typingUsers.first.id != directChatMatrixID) {
|
||||
typingText =
|
||||
L10n.of(context).numUsersTyping(typingUsers.length.toString());
|
||||
typingText = L10n.of(context).numUsersTyping(typingUsers.length);
|
||||
}
|
||||
} else if (typingUsers.length == 1) {
|
||||
typingText = L10n.of(context).isTyping;
|
||||
|
|
@ -31,7 +30,7 @@ extension RoomStatusExtension on Room {
|
|||
} else if (typingUsers.length > 2) {
|
||||
typingText = L10n.of(context).userAndOthersAreTyping(
|
||||
typingUsers.first.calcDisplayname(),
|
||||
(typingUsers.length - 1).toString(),
|
||||
(typingUsers.length - 1),
|
||||
);
|
||||
}
|
||||
return typingText;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue