Update translations
This commit is contained in:
parent
4ab05b4df9
commit
58071895dc
|
@ -123,19 +123,21 @@ class MessageLookup extends MessageLookupByLibrary {
|
||||||
|
|
||||||
static m51(type) => "Unbekanntes Event \'${type}\'";
|
static m51(type) => "Unbekanntes Event \'${type}\'";
|
||||||
|
|
||||||
static m52(unreadEvents) => "${unreadEvents} ungelesene Nachrichten";
|
static m52(unreadCount) => "${unreadCount} ungelesene Unterhaltungen";
|
||||||
|
|
||||||
static m53(unreadEvents, unreadChats) => "${unreadEvents} ungelesene Nachrichten in ${unreadChats} Chats";
|
static m53(unreadEvents) => "${unreadEvents} ungelesene Nachrichten";
|
||||||
|
|
||||||
static m54(username, count) => "${username} und ${count} andere schreiben ...";
|
static m54(unreadEvents, unreadChats) => "${unreadEvents} ungelesene Nachrichten in ${unreadChats} Chats";
|
||||||
|
|
||||||
static m55(username, username2) => "${username} und ${username2} schreiben ...";
|
static m55(username, count) => "${username} und ${count} andere schreiben ...";
|
||||||
|
|
||||||
static m56(username) => "${username} schreibt ...";
|
static m56(username, username2) => "${username} und ${username2} schreiben ...";
|
||||||
|
|
||||||
static m57(username) => "${username} hat den Chat verlassen";
|
static m57(username) => "${username} schreibt ...";
|
||||||
|
|
||||||
static m58(username, type) => "${username} hat ${type} Event gesendet";
|
static m58(username) => "${username} hat den Chat verlassen";
|
||||||
|
|
||||||
|
static m59(username, type) => "${username} hat ${type} Event gesendet";
|
||||||
|
|
||||||
final messages = _notInlinedMessages(_notInlinedMessages);
|
final messages = _notInlinedMessages(_notInlinedMessages);
|
||||||
static _notInlinedMessages(_) => <String, Function> {
|
static _notInlinedMessages(_) => <String, Function> {
|
||||||
|
@ -364,12 +366,13 @@ class MessageLookup extends MessageLookupByLibrary {
|
||||||
"title" : MessageLookupByLibrary.simpleMessage("FluffyChat"),
|
"title" : MessageLookupByLibrary.simpleMessage("FluffyChat"),
|
||||||
"unbannedUser" : m50,
|
"unbannedUser" : m50,
|
||||||
"unknownEvent" : m51,
|
"unknownEvent" : m51,
|
||||||
"unreadMessages" : m52,
|
"unreadChats" : m52,
|
||||||
"unreadMessagesInChats" : m53,
|
"unreadMessages" : m53,
|
||||||
"userAndOthersAreTyping" : m54,
|
"unreadMessagesInChats" : m54,
|
||||||
"userAndUserAreTyping" : m55,
|
"userAndOthersAreTyping" : m55,
|
||||||
"userIsTyping" : m56,
|
"userAndUserAreTyping" : m56,
|
||||||
"userLeftTheChat" : m57,
|
"userIsTyping" : m57,
|
||||||
"userSentUnknownEvent" : m58
|
"userLeftTheChat" : m58,
|
||||||
|
"userSentUnknownEvent" : m59
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -123,19 +123,21 @@ class MessageLookup extends MessageLookupByLibrary {
|
||||||
|
|
||||||
static m51(type) => "Unknown event \'${type}\'";
|
static m51(type) => "Unknown event \'${type}\'";
|
||||||
|
|
||||||
static m52(unreadEvents) => "${unreadEvents} unread messages";
|
static m52(unreadCount) => "${unreadCount} unread chats";
|
||||||
|
|
||||||
static m53(unreadEvents, unreadChats) => "${unreadEvents} unread messages in ${unreadChats} chats";
|
static m53(unreadEvents) => "${unreadEvents} unread messages";
|
||||||
|
|
||||||
static m54(username, count) => "${username} and ${count} others are typing...";
|
static m54(unreadEvents, unreadChats) => "${unreadEvents} unread messages in ${unreadChats} chats";
|
||||||
|
|
||||||
static m55(username, username2) => "${username} and ${username2} are typing...";
|
static m55(username, count) => "${username} and ${count} others are typing...";
|
||||||
|
|
||||||
static m56(username) => "${username} is typing...";
|
static m56(username, username2) => "${username} and ${username2} are typing...";
|
||||||
|
|
||||||
static m57(username) => "${username} left the chat";
|
static m57(username) => "${username} is typing...";
|
||||||
|
|
||||||
static m58(username, type) => "${username} sent a ${type} event";
|
static m58(username) => "${username} left the chat";
|
||||||
|
|
||||||
|
static m59(username, type) => "${username} sent a ${type} event";
|
||||||
|
|
||||||
final messages = _notInlinedMessages(_notInlinedMessages);
|
final messages = _notInlinedMessages(_notInlinedMessages);
|
||||||
static _notInlinedMessages(_) => <String, Function> {
|
static _notInlinedMessages(_) => <String, Function> {
|
||||||
|
@ -243,6 +245,7 @@ class MessageLookup extends MessageLookupByLibrary {
|
||||||
"None" : MessageLookupByLibrary.simpleMessage("None"),
|
"None" : MessageLookupByLibrary.simpleMessage("None"),
|
||||||
"Not supported in web" : MessageLookupByLibrary.simpleMessage("Not supported in web"),
|
"Not supported in web" : MessageLookupByLibrary.simpleMessage("Not supported in web"),
|
||||||
"Oops something went wrong..." : MessageLookupByLibrary.simpleMessage("Oops something went wrong..."),
|
"Oops something went wrong..." : MessageLookupByLibrary.simpleMessage("Oops something went wrong..."),
|
||||||
|
"Open app to read messages" : MessageLookupByLibrary.simpleMessage("Open app to read messages"),
|
||||||
"Open camera" : MessageLookupByLibrary.simpleMessage("Open camera"),
|
"Open camera" : MessageLookupByLibrary.simpleMessage("Open camera"),
|
||||||
"Participating user devices" : MessageLookupByLibrary.simpleMessage("Participating user devices"),
|
"Participating user devices" : MessageLookupByLibrary.simpleMessage("Participating user devices"),
|
||||||
"Password" : MessageLookupByLibrary.simpleMessage("Password"),
|
"Password" : MessageLookupByLibrary.simpleMessage("Password"),
|
||||||
|
@ -365,12 +368,13 @@ class MessageLookup extends MessageLookupByLibrary {
|
||||||
"title" : MessageLookupByLibrary.simpleMessage("FluffyChat"),
|
"title" : MessageLookupByLibrary.simpleMessage("FluffyChat"),
|
||||||
"unbannedUser" : m50,
|
"unbannedUser" : m50,
|
||||||
"unknownEvent" : m51,
|
"unknownEvent" : m51,
|
||||||
"unreadMessages" : m52,
|
"unreadChats" : m52,
|
||||||
"unreadMessagesInChats" : m53,
|
"unreadMessages" : m53,
|
||||||
"userAndOthersAreTyping" : m54,
|
"unreadMessagesInChats" : m54,
|
||||||
"userAndUserAreTyping" : m55,
|
"userAndOthersAreTyping" : m55,
|
||||||
"userIsTyping" : m56,
|
"userAndUserAreTyping" : m56,
|
||||||
"userLeftTheChat" : m57,
|
"userIsTyping" : m57,
|
||||||
"userSentUnknownEvent" : m58
|
"userLeftTheChat" : m58,
|
||||||
|
"userSentUnknownEvent" : m59
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue