Add public room discovery

This commit is contained in:
Christian Pauly 2020-02-22 20:05:04 +01:00
commit 7e8ad4a42c
10 changed files with 170 additions and 23 deletions

View file

@ -188,6 +188,8 @@ class I18n {
String get changeTheNameOfTheGroup =>
Intl.message("Change the name of the group");
String get changeTheServer => Intl.message("Change the server");
String get channelCorruptedDecryptError =>
Intl.message("The encryption has been corrupted");
@ -478,6 +480,8 @@ class I18n {
String get pleaseEnterYourUsername =>
Intl.message("Please enter your username");
String get publicRooms => Intl.message("Public Rooms");
String get rejoin => Intl.message("Rejoin");
String redactedAnEvent(String username) => Intl.message(

View file

@ -216,6 +216,11 @@
"type": "text",
"placeholders": {}
},
"Change the server": "Ändere den Server",
"@Change the server": {
"type": "text",
"placeholders": {}
},
"The encryption has been corrupted": "Die Verschlüsselung wurde korrumpiert",
"@The encryption has been corrupted": {
"type": "text",
@ -761,6 +766,11 @@
"type": "text",
"placeholders": {}
},
"Public Rooms": "Öffentliche Räume",
"@Public Rooms": {
"type": "text",
"placeholders": {}
},
"Rejoin": "Wieder beitreten",
"@Rejoin": {
"type": "text",

View file

@ -1,5 +1,5 @@
{
"@@last_modified": "2020-02-22T08:18:47.225173",
"@@last_modified": "2020-02-22T20:02:42.757437",
"About": "About",
"@About": {
"type": "text",
@ -216,6 +216,11 @@
"type": "text",
"placeholders": {}
},
"Change the server": "Change the server",
"@Change the server": {
"type": "text",
"placeholders": {}
},
"The encryption has been corrupted": "The encryption has been corrupted",
"@The encryption has been corrupted": {
"type": "text",
@ -761,6 +766,11 @@
"type": "text",
"placeholders": {}
},
"Public Rooms": "Public Rooms",
"@Public Rooms": {
"type": "text",
"placeholders": {}
},
"Rejoin": "Rejoin",
"@Rejoin": {
"type": "text",

View file

@ -150,6 +150,7 @@ class MessageLookup extends MessageLookupByLibrary {
"Ban from chat" : MessageLookupByLibrary.simpleMessage("Aus dem Chat verbannen"),
"Banned" : MessageLookupByLibrary.simpleMessage("Banned"),
"Change the name of the group" : MessageLookupByLibrary.simpleMessage("Gruppenname ändern"),
"Change the server" : MessageLookupByLibrary.simpleMessage("Ändere den Server"),
"Change your style" : MessageLookupByLibrary.simpleMessage("Change your style"),
"Changelog" : MessageLookupByLibrary.simpleMessage("Changelog"),
"Chat details" : MessageLookupByLibrary.simpleMessage("Gruppeninfo"),
@ -234,6 +235,7 @@ class MessageLookup extends MessageLookupByLibrary {
"Please enter a matrix identifier" : MessageLookupByLibrary.simpleMessage("Bitte eine Matrix ID eingeben"),
"Please enter your password" : MessageLookupByLibrary.simpleMessage("Bitte dein Passwort eingeben"),
"Please enter your username" : MessageLookupByLibrary.simpleMessage("Bitte deinen Benutzernamen eingeben"),
"Public Rooms" : MessageLookupByLibrary.simpleMessage("Öffentliche Räume"),
"Rejoin" : MessageLookupByLibrary.simpleMessage("Wieder beitreten"),
"Remove" : MessageLookupByLibrary.simpleMessage("Entfernen"),
"Remove all other devices" : MessageLookupByLibrary.simpleMessage("Alle anderen Geräte entfernen"),

View file

@ -150,6 +150,7 @@ class MessageLookup extends MessageLookupByLibrary {
"Ban from chat" : MessageLookupByLibrary.simpleMessage("Ban from chat"),
"Banned" : MessageLookupByLibrary.simpleMessage("Banned"),
"Change the name of the group" : MessageLookupByLibrary.simpleMessage("Change the name of the group"),
"Change the server" : MessageLookupByLibrary.simpleMessage("Change the server"),
"Change your style" : MessageLookupByLibrary.simpleMessage("Change your style"),
"Changelog" : MessageLookupByLibrary.simpleMessage("Changelog"),
"Chat details" : MessageLookupByLibrary.simpleMessage("Chat details"),
@ -234,6 +235,7 @@ class MessageLookup extends MessageLookupByLibrary {
"Please enter a matrix identifier" : MessageLookupByLibrary.simpleMessage("Please enter a matrix identifier"),
"Please enter your password" : MessageLookupByLibrary.simpleMessage("Please enter your password"),
"Please enter your username" : MessageLookupByLibrary.simpleMessage("Please enter your username"),
"Public Rooms" : MessageLookupByLibrary.simpleMessage("Public Rooms"),
"Rejoin" : MessageLookupByLibrary.simpleMessage("Rejoin"),
"Remove" : MessageLookupByLibrary.simpleMessage("Remove"),
"Remove all other devices" : MessageLookupByLibrary.simpleMessage("Remove all other devices"),