Design improvements
This commit is contained in:
parent
e5aa94bb62
commit
ec9e8fe5d4
10 changed files with 278 additions and 159 deletions
|
|
@ -354,6 +354,11 @@
|
|||
"type": "text",
|
||||
"placeholders": {}
|
||||
},
|
||||
"Currenlty active": "Jetzt gerade online",
|
||||
"@Currenlty active": {
|
||||
"type": "text",
|
||||
"placeholders": {}
|
||||
},
|
||||
"dateAndTimeOfDay": "{date}, {timeOfDay}",
|
||||
"@dateAndTimeOfDay": {
|
||||
"type": "text",
|
||||
|
|
@ -687,7 +692,7 @@
|
|||
"username": {}
|
||||
}
|
||||
},
|
||||
"lastActiveAgo": "Zuletzt aktiv: {localizedTimeShort}",
|
||||
"lastActiveAgo": "Zuletzt gesehen: {localizedTimeShort}",
|
||||
"@lastActiveAgo": {
|
||||
"type": "text",
|
||||
"placeholders": {
|
||||
|
|
@ -997,6 +1002,11 @@
|
|||
"username": {}
|
||||
}
|
||||
},
|
||||
"Seen a long time ago": "Vor sehr langer Zeit gesehen",
|
||||
"@Seen a long time ago": {
|
||||
"type": "text",
|
||||
"placeholders": {}
|
||||
},
|
||||
"seenByUserAndUser": "Gelesen von {username} und {username2}",
|
||||
"@seenByUserAndUser": {
|
||||
"type": "text",
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
{
|
||||
"@@last_modified": "2020-05-12T08:42:24.358124",
|
||||
"@@last_modified": "2020-05-15T15:34:50.065646",
|
||||
"About": "About",
|
||||
"@About": {
|
||||
"type": "text",
|
||||
|
|
@ -354,6 +354,11 @@
|
|||
"type": "text",
|
||||
"placeholders": {}
|
||||
},
|
||||
"Currenlty active": "Currenlty active",
|
||||
"@Currenlty active": {
|
||||
"type": "text",
|
||||
"placeholders": {}
|
||||
},
|
||||
"dateAndTimeOfDay": "{date}, {timeOfDay}",
|
||||
"@dateAndTimeOfDay": {
|
||||
"type": "text",
|
||||
|
|
@ -995,6 +1000,11 @@
|
|||
"type": "text",
|
||||
"placeholders": {}
|
||||
},
|
||||
"Seen a long time ago": "Seen a long time ago",
|
||||
"@Seen a long time ago": {
|
||||
"type": "text",
|
||||
"placeholders": {}
|
||||
},
|
||||
"seenByUser": "Seen by {username}",
|
||||
"@seenByUser": {
|
||||
"type": "text",
|
||||
|
|
|
|||
|
|
@ -261,6 +261,8 @@ class L10n extends MatrixLocalizations {
|
|||
|
||||
String get createNewGroup => Intl.message("Create new group");
|
||||
|
||||
String get currentlyActive => Intl.message('Currenlty active');
|
||||
|
||||
String dateAndTimeOfDay(String date, String timeOfDay) => Intl.message(
|
||||
"$date, $timeOfDay",
|
||||
name: "dateAndTimeOfDay",
|
||||
|
|
@ -599,6 +601,8 @@ class L10n extends MatrixLocalizations {
|
|||
|
||||
String get searchForAChat => Intl.message("Search for a chat");
|
||||
|
||||
String get lastSeenLongTimeAgo => Intl.message('Seen a long time ago');
|
||||
|
||||
String seenByUser(String username) => Intl.message(
|
||||
"Seen by $username",
|
||||
name: "seenByUser",
|
||||
|
|
|
|||
|
|
@ -83,7 +83,7 @@ class MessageLookup extends MessageLookupByLibrary {
|
|||
|
||||
static m31(username, targetName) => "${username} hat ${targetName} hinausgeworfen und verbannt";
|
||||
|
||||
static m32(localizedTimeShort) => "Zuletzt aktiv: ${localizedTimeShort}";
|
||||
static m32(localizedTimeShort) => "Zuletzt gesehen: ${localizedTimeShort}";
|
||||
|
||||
static m33(count) => "${count} weitere Teilnehmer laden";
|
||||
|
||||
|
|
@ -181,6 +181,7 @@ class MessageLookup extends MessageLookupByLibrary {
|
|||
"Create" : MessageLookupByLibrary.simpleMessage("Create"),
|
||||
"Create account now" : MessageLookupByLibrary.simpleMessage("Account jetzt erstellen"),
|
||||
"Create new group" : MessageLookupByLibrary.simpleMessage("Neue Gruppe"),
|
||||
"Currenlty active" : MessageLookupByLibrary.simpleMessage("Jetzt gerade online"),
|
||||
"Dark" : MessageLookupByLibrary.simpleMessage("Dunkel"),
|
||||
"Delete" : MessageLookupByLibrary.simpleMessage("Löschen"),
|
||||
"Delete message" : MessageLookupByLibrary.simpleMessage("Nachricht löschen"),
|
||||
|
|
@ -273,6 +274,7 @@ class MessageLookup extends MessageLookupByLibrary {
|
|||
"Revoke all permissions" : MessageLookupByLibrary.simpleMessage("Alle Berechtigungen zurücknehmen"),
|
||||
"Saturday" : MessageLookupByLibrary.simpleMessage("Samstag"),
|
||||
"Search for a chat" : MessageLookupByLibrary.simpleMessage("Durchsuche die Chats"),
|
||||
"Seen a long time ago" : MessageLookupByLibrary.simpleMessage("Vor sehr langer Zeit gesehen"),
|
||||
"Send" : MessageLookupByLibrary.simpleMessage("Senden"),
|
||||
"Send a message" : MessageLookupByLibrary.simpleMessage("Nachricht schreiben"),
|
||||
"Send file" : MessageLookupByLibrary.simpleMessage("Datei senden"),
|
||||
|
|
|
|||
|
|
@ -181,6 +181,7 @@ class MessageLookup extends MessageLookupByLibrary {
|
|||
"Create" : MessageLookupByLibrary.simpleMessage("Create"),
|
||||
"Create account now" : MessageLookupByLibrary.simpleMessage("Create account now"),
|
||||
"Create new group" : MessageLookupByLibrary.simpleMessage("Create new group"),
|
||||
"Currenlty active" : MessageLookupByLibrary.simpleMessage("Currenlty active"),
|
||||
"Dark" : MessageLookupByLibrary.simpleMessage("Dark"),
|
||||
"Delete" : MessageLookupByLibrary.simpleMessage("Delete"),
|
||||
"Delete message" : MessageLookupByLibrary.simpleMessage("Delete message"),
|
||||
|
|
@ -275,6 +276,7 @@ class MessageLookup extends MessageLookupByLibrary {
|
|||
"Revoke all permissions" : MessageLookupByLibrary.simpleMessage("Revoke all permissions"),
|
||||
"Saturday" : MessageLookupByLibrary.simpleMessage("Saturday"),
|
||||
"Search for a chat" : MessageLookupByLibrary.simpleMessage("Search for a chat"),
|
||||
"Seen a long time ago" : MessageLookupByLibrary.simpleMessage("Seen a long time ago"),
|
||||
"Send" : MessageLookupByLibrary.simpleMessage("Send"),
|
||||
"Send a message" : MessageLookupByLibrary.simpleMessage("Send a message"),
|
||||
"Send file" : MessageLookupByLibrary.simpleMessage("Send file"),
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue