Update SDK

This commit is contained in:
Sorunome 2020-08-16 12:54:43 +02:00
parent dbe459958d
commit da9eafa3c0
No known key found for this signature in database
GPG Key ID: B19471D07FC9BE9C
31 changed files with 1394 additions and 261 deletions

View File

@ -28,10 +28,8 @@ class PublicRoomListItem extends StatelessWidget {
}
Future<String> _joinRoomAndWait(BuildContext context) async {
final roomId = await Matrix.of(context)
.client
.api
.joinRoomOrAlias(publicRoomEntry.roomId);
final roomId =
await Matrix.of(context).client.joinRoomOrAlias(publicRoomEntry.roomId);
if (Matrix.of(context).client.getRoomById(roomId) == null) {
await Matrix.of(context)
.client

View File

@ -302,12 +302,11 @@ class _InheritedMatrix extends InheritedWidget {
@override
bool updateShouldNotify(_InheritedMatrix old) {
var update =
old.data.client.api.accessToken != data.client.api.accessToken ||
old.data.client.userID != data.client.userID ||
old.data.client.deviceID != data.client.deviceID ||
old.data.client.deviceName != data.client.deviceName ||
old.data.client.api.homeserver != data.client.api.homeserver;
var update = old.data.client.accessToken != data.client.accessToken ||
old.data.client.userID != data.client.userID ||
old.data.client.deviceID != data.client.deviceID ||
old.data.client.deviceName != data.client.deviceName ||
old.data.client.homeserver != data.client.homeserver;
return update;
}
}

View File

@ -1,5 +1,5 @@
{
"@@last_modified": "2020-06-25T16:02:16.297192",
"@@last_modified": "2020-08-16T12:43:17.825046",
"About": "About",
"@About": {
"type": "text",
@ -54,6 +54,13 @@
"type": "text",
"placeholders": {}
},
"answeredTheCall": "{senderName} answered the call",
"@answeredTheCall": {
"type": "text",
"placeholders": {
"senderName": {}
}
},
"Anyone can join": "Anyone can join",
"@Anyone can join": {
"type": "text",
@ -541,6 +548,13 @@
"type": "text",
"placeholders": {}
},
"endedTheCall": "{senderName} ended the call",
"@endedTheCall": {
"type": "text",
"placeholders": {
"senderName": {}
}
},
"Enter a group name": "Enter a group name",
"@Enter a group name": {
"type": "text",
@ -721,6 +735,11 @@
"username": {}
}
},
"Join room": "Join room",
"@Join room": {
"type": "text",
"placeholders": {}
},
"keysCached": "Keys are cached",
"@keysCached": {
"type": "text",
@ -875,12 +894,12 @@
"type": "text",
"placeholders": {}
},
"noCrossSignBootstrap": "Fluffychat currently does not support enabling Cross-Signing. Please enable it from within Element.",
"noCrossSignBootstrap": "Fluffychat currently does not support enabling Cross-Signing. Please enable it from within Riot.",
"@noCrossSignBootstrap": {
"type": "text",
"placeholders": {}
},
"noMegolmBootstrap": "Fluffychat currently does not support enabling Online Key Backup. Please enable it from within Element.",
"noMegolmBootstrap": "Fluffychat currently does not support enabling Online Key Backup. Please enable it from within Riot.",
"@noMegolmBootstrap": {
"type": "text",
"placeholders": {}
@ -977,6 +996,11 @@
"type": "text",
"placeholders": {}
},
"Pin": "Pin",
"@Pin": {
"type": "text",
"placeholders": {}
},
"play": "Play {fileName}",
"@play": {
"type": "text",
@ -1205,6 +1229,13 @@
"username": {}
}
},
"sentCallInformations": "{senderName} sent call informations",
"@sentCallInformations": {
"type": "text",
"placeholders": {
"senderName": {}
}
},
"sessionVerified": "Session is verified",
"@sessionVerified": {
"type": "text",
@ -1245,6 +1276,13 @@
"type": "text",
"placeholders": {}
},
"startedACall": "{senderName} started a call",
"@startedACall": {
"type": "text",
"placeholders": {
"senderName": {}
}
},
"Change your style": "Change your style",
"@Change your style": {
"type": "text",
@ -1391,6 +1429,11 @@
"type": {}
}
},
"Unpin": "Unpin",
"@Unpin": {
"type": "text",
"placeholders": {}
},
"unreadChats": "{unreadCount} unread chats",
"@unreadChats": {
"type": "text",
@ -1539,7 +1582,7 @@
"type": "text",
"placeholders": {}
},
"Welcome to the cutest instant messenger in the matrix network.": "Welcome to the cutest instant messenger in the Matrix network.",
"Welcome to the cutest instant messenger in the matrix network.": "Welcome to the cutest instant messenger in the matrix network.",
"@Welcome to the cutest instant messenger in the matrix network.": {
"type": "text",
"placeholders": {}
@ -1589,4 +1632,4 @@
"type": "text",
"placeholders": {}
}
}
}

View File

@ -86,6 +86,10 @@ class L10n extends MatrixLocalizations {
String get alreadyHaveAnAccount => Intl.message("Already have an account?");
String answeredTheCall(String senderName) =>
Intl.message('$senderName answered the call',
name: "answeredTheCall", args: [senderName]);
String get anyoneCanJoin => Intl.message("Anyone can join");
String get archive => Intl.message("Archive");
@ -379,6 +383,12 @@ class L10n extends MatrixLocalizations {
String get end2endEncryptionSettings =>
Intl.message("End-to-end encryption settings");
String endedTheCall(String senderName) => Intl.message(
'$senderName ended the call',
name: 'endedTheCall',
args: [senderName],
);
String get enterAGroupName => Intl.message("Enter a group name");
String get enterAUsername => Intl.message("Enter a username");
@ -756,6 +766,12 @@ class L10n extends MatrixLocalizations {
args: [username],
);
String sentCallInformations(String senderName) => Intl.message(
'$senderName sent call informations',
name: 'sentCallInformations',
args: [senderName],
);
String get sessionVerified =>
Intl.message("Session is verified", name: "sessionVerified");
@ -773,6 +789,10 @@ class L10n extends MatrixLocalizations {
String get skip => Intl.message("Skip");
String startedACall(String senderName) =>
Intl.message('$senderName started a call',
name: "startedACall", args: [senderName]);
String get changeTheme => Intl.message("Change your style");
String get systemTheme => Intl.message("System");

View File

@ -22,11 +22,13 @@ import 'messages_fr.dart' as messages_fr;
import 'messages_gl.dart' as messages_gl;
import 'messages_hr.dart' as messages_hr;
import 'messages_hu.dart' as messages_hu;
import 'messages_hy.dart' as messages_hy;
import 'messages_ja.dart' as messages_ja;
import 'messages_messages.dart' as messages_messages;
import 'messages_pl.dart' as messages_pl;
import 'messages_ru.dart' as messages_ru;
import 'messages_sk.dart' as messages_sk;
import 'messages_tr.dart' as messages_tr;
import 'messages_uk.dart' as messages_uk;
typedef Future<dynamic> LibraryLoader();
@ -38,11 +40,13 @@ Map<String, LibraryLoader> _deferredLibraries = {
'gl': () => new Future.value(null),
'hr': () => new Future.value(null),
'hu': () => new Future.value(null),
'hy': () => new Future.value(null),
'ja': () => new Future.value(null),
'messages': () => new Future.value(null),
'pl': () => new Future.value(null),
'ru': () => new Future.value(null),
'sk': () => new Future.value(null),
'tr': () => new Future.value(null),
'uk': () => new Future.value(null),
};
@ -62,6 +66,8 @@ MessageLookupByLibrary _findExact(String localeName) {
return messages_hr.messages;
case 'hu':
return messages_hu.messages;
case 'hy':
return messages_hy.messages;
case 'ja':
return messages_ja.messages;
case 'messages':
@ -72,6 +78,8 @@ MessageLookupByLibrary _findExact(String localeName) {
return messages_ru.messages;
case 'sk':
return messages_sk.messages;
case 'tr':
return messages_tr.messages;
case 'uk':
return messages_uk.messages;
default:

View File

@ -85,7 +85,7 @@ class MessageLookup extends MessageLookupByLibrary {
static m27(groupName) => "Pozvat kontakt do ${groupName}";
static m28(username, link) =>
"${username} vás pozval na FluffyChat.\n1. Nainstalujte si FluffyChat: http://fluffy.chat\n2. Zaregistrujte se anebo se přihlašte\n3. Otevřete odkaz na pozvánce: ${link}";
"${username} vás pozval na FluffyChat.\n1. Nainstalujte si FluffyChat: https://fluffychat.im\n2. Zaregistrujte se anebo se přihlašte\n3. Otevřete odkaz na pozvánce: ${link}";
static m29(username, targetName) => "${username} pozvali ${targetName}";

View File

@ -33,20 +33,21 @@ class MessageLookup extends MessageLookupByLibrary {
static m5(username) => "${username} hat den Chat-Avatar geändert";
static m6(username, description) =>
"${username} hat die Beschreibung vom Chat geändert zu: \'${description}\'";
"${username} hat die Chat-Beschreibung geändert zu: „${description}";
static m7(username, chatname) =>
"${username} hat den Chat-Namen geändert zu: \'${chatname}\'";
"${username} hat den Chat-Namen geändert zu: ${chatname}";
static m8(username) => "${username} hat die Berechtigungen vom Chat geändert";
static m8(username) => "${username} hat die Chat-Berechtigungen geändert";
static m9(username, displayname) =>
"${username} hat den Nicknamen geändert zu: ${displayname}";
static m10(username) => "${username} hat Gast-Zugangsregeln geändert";
static m10(username) =>
"${username} hat die Zugangsregeln für Gäste geändert";
static m11(username, rules) =>
"${username} hat Gast-Zugangsregeln geändert zu: ${rules}";
"${username} hat die Zugangsregeln für Gäste geändert zu: ${rules}";
static m12(username) =>
"${username} hat die Sichtbarkeit des Chat-Verlaufs geändert";
@ -61,7 +62,7 @@ class MessageLookup extends MessageLookupByLibrary {
static m16(username) => "${username} hat das Profilbild geändert";
static m17(username) => "${username} hat die Raum-Aliase geändert";
static m17(username) => "${username} hat die Raum-Aliasse geändert";
static m18(username) => "${username} hat den Einladungslink geändert";
@ -108,7 +109,7 @@ class MessageLookup extends MessageLookupByLibrary {
static m37(fileName) => "${fileName} abspielen";
static m38(username) => "${username} hat ein Event enternt";
static m38(username) => "${username} hat ein Event entfernt";
static m39(username) => "${username} hat die Einladung abgelehnt";
@ -146,11 +147,10 @@ class MessageLookup extends MessageLookupByLibrary {
static m55(unreadEvents, unreadChats) =>
"${unreadEvents} ungelesene Nachrichten in ${unreadChats} Chats";
static m56(username, count) =>
"${username} und ${count} andere schreiben ...";
static m56(username, count) => "${username} und ${count} andere schreiben...";
static m57(username, username2) =>
"${username} und ${username2} schreiben ...";
"${username} und ${username2} schreiben...";
static m58(username) => "${username} schreibt ...";
@ -246,12 +246,12 @@ class MessageLookup extends MessageLookupByLibrary {
"Download file":
MessageLookupByLibrary.simpleMessage("Datei herunterladen"),
"Edit Jitsi instance":
MessageLookupByLibrary.simpleMessage("Jitsi Instanz ändern"),
MessageLookupByLibrary.simpleMessage("Jitsi-Instanz ändern"),
"Edit displayname":
MessageLookupByLibrary.simpleMessage("Anzeigename ändern"),
"Emote Settings":
MessageLookupByLibrary.simpleMessage("Emote Einstellungen"),
"Emote shortcode": MessageLookupByLibrary.simpleMessage("Emote kürzel"),
MessageLookupByLibrary.simpleMessage("Emote-Einstellungen"),
"Emote shortcode": MessageLookupByLibrary.simpleMessage("Emote-Kürzel"),
"Empty chat": MessageLookupByLibrary.simpleMessage("Leerer Chat"),
"Encryption": MessageLookupByLibrary.simpleMessage("Verschlüsselung"),
"Encryption algorithm":
@ -303,19 +303,19 @@ class MessageLookup extends MessageLookupByLibrary {
MessageLookupByLibrary.simpleMessage("Nur eingeladene Benutzer"),
"It seems that you have no google services on your phone. That\'s a good decision for your privacy! To receive push notifications in FluffyChat we recommend using microG: https://microg.org/":
MessageLookupByLibrary.simpleMessage(
"Es sieht so aus als hättest du keine Google Dienste auf deinem Gerät. Das ist eine gute Entscheidung für deine Privatsphäre. Um Push Benachrichtigungen in FluffyChat zu erhalten, empfehlen wir die Verwendung von microG: https://microg.org/"),
"Es sieht so aus als hättest du keine Google-Dienste auf deinem Gerät. Das ist eine gute Entscheidung für deine Privatsphäre! Um Push Benachrichtigungen in FluffyChat zu erhalten, empfehlen wir die Verwendung von microG: https://microg.org/"),
"Kick from chat":
MessageLookupByLibrary.simpleMessage("Aus dem Chat hinauswerfen"),
"Last seen IP":
MessageLookupByLibrary.simpleMessage("Zuletzt bekannte IP"),
MessageLookupByLibrary.simpleMessage("Letzte bekannte IP"),
"Leave": MessageLookupByLibrary.simpleMessage("Verlassen"),
"Left the chat":
MessageLookupByLibrary.simpleMessage("Hat den Chat verlassen"),
"License": MessageLookupByLibrary.simpleMessage("Lizenz"),
"Light": MessageLookupByLibrary.simpleMessage("Hell"),
"Load more...": MessageLookupByLibrary.simpleMessage("Lade mehr ..."),
"Load more...": MessageLookupByLibrary.simpleMessage("Lade mehr..."),
"Loading... Please wait":
MessageLookupByLibrary.simpleMessage("Lade ... Bitte warten"),
MessageLookupByLibrary.simpleMessage("Lade... Bitte warten"),
"Login": MessageLookupByLibrary.simpleMessage("Login"),
"Logout": MessageLookupByLibrary.simpleMessage("Abmelden"),
"Make a moderator":
@ -340,19 +340,19 @@ class MessageLookup extends MessageLookupByLibrary {
"No permission":
MessageLookupByLibrary.simpleMessage("Keine Berechtigung"),
"No rooms found...":
MessageLookupByLibrary.simpleMessage("Keine Räume gefunden ..."),
MessageLookupByLibrary.simpleMessage("Keine Räume gefunden..."),
"None": MessageLookupByLibrary.simpleMessage("Keiner"),
"Not supported in web": MessageLookupByLibrary.simpleMessage(
"Wird in der Web-Version nicht unterstützt"),
"Oops something went wrong...": MessageLookupByLibrary.simpleMessage(
"Hoppla! Da ist etwas schief gelaufen ..."),
"Open app to read messages": MessageLookupByLibrary.simpleMessage(
"Öffne app, um Nachrichten zu lesen"),
"App öffnen, um Nachrichten zu lesen"),
"Open camera": MessageLookupByLibrary.simpleMessage("Kamera öffnen"),
"Participating user devices":
MessageLookupByLibrary.simpleMessage("Teilnehmende Geräte"),
"Password": MessageLookupByLibrary.simpleMessage("Passwort"),
"Pick image": MessageLookupByLibrary.simpleMessage("Wähle Bild"),
"Pick image": MessageLookupByLibrary.simpleMessage("Bild wählen"),
"Please be aware that you need Pantalaimon to use end-to-end encryption for now.":
MessageLookupByLibrary.simpleMessage(
"Bitte beachte, dass du Pantalaimon brauchst, um Ende-zu-Ende-Verschlüsselung benutzen zu können."),
@ -466,7 +466,7 @@ class MessageLookup extends MessageLookupByLibrary {
"Yes": MessageLookupByLibrary.simpleMessage("Ja"),
"You": MessageLookupByLibrary.simpleMessage("Du"),
"You are invited to this chat": MessageLookupByLibrary.simpleMessage(
"Du wurdest eingeladen in diesen Chat"),
"Du wurdest in diesen Chat eingeladen"),
"You are no longer participating in this chat":
MessageLookupByLibrary.simpleMessage(
"Du bist kein Mitglied mehr in diesem Chat"),
@ -525,9 +525,9 @@ class MessageLookup extends MessageLookupByLibrary {
"emoteExists":
MessageLookupByLibrary.simpleMessage("Emote existiert bereits!"),
"emoteInvalid":
MessageLookupByLibrary.simpleMessage("Ungültiges Emote-kürzel!"),
MessageLookupByLibrary.simpleMessage("Ungültiges Emote-Kürzel!"),
"emoteWarnNeedToPick": MessageLookupByLibrary.simpleMessage(
"Wähle ein Emote-kürzel und ein Bild!"),
"Wähle ein Emote-Kürzel und ein Bild!"),
"groupWith": m25,
"hasWithdrawnTheInvitationFor": m26,
"incorrectPassphraseOrKey": MessageLookupByLibrary.simpleMessage(
@ -550,9 +550,9 @@ class MessageLookup extends MessageLookupByLibrary {
"newVerificationRequest":
MessageLookupByLibrary.simpleMessage("Neue Verifikationsanfrage!"),
"noCrossSignBootstrap": MessageLookupByLibrary.simpleMessage(
"Fluffychat unterstützt noch nicht das Einschalten von Cross-Signing. Bitte schalte es innerhalb Riot an."),
"Fluffychat kann Cross-Signing noch nicht einschalten. Bitte schalte es innerhalb Element an."),
"noMegolmBootstrap": MessageLookupByLibrary.simpleMessage(
"Fluffychat unterstützt noch nicht das Einschalten vom Online Key Backup. Bitte schalte es innerhalb Riot an."),
"Fluffychat kann das Online-Schlüssel-Backup noch nicht aktivieren. Bitte schalte es innerhalb von Element an."),
"numberSelected": m36,
"ok": MessageLookupByLibrary.simpleMessage("ok"),
"onlineKeyBackupDisabled": MessageLookupByLibrary.simpleMessage(

View File

@ -86,7 +86,7 @@ class MessageLookup extends MessageLookupByLibrary {
static m27(groupName) => "Invitar contacto a ${groupName}";
static m28(username, link) =>
"${username} te invitó a FluffyChat.\n1. Instale FluffyChat: http://fluffy.chat\n2. Regístrate o inicia sesión \n3. Abra el enlace de invitación: ${link}";
"${username} te invitó a FluffyChat.\n1. Instale FluffyChat: https://fluffychat.im\n2. Regístrate o inicia sesión \n3. Abra el enlace de invitación: ${link}";
static m29(username, targetName) => "${username} invitó a ${targetName}";

View File

@ -60,7 +60,7 @@ class MessageLookup extends MessageLookupByLibrary {
static m15(username, joinRules) =>
"${username} je promijenio/la pravila pridruživanja u: ${joinRules}";
static m16(username) => "${username} je promijenio/la avatar profila";
static m16(username) => "${username} je promijenio/la svoj avatar";
static m17(username) => "${username} je promijenio/la pseudonime soba";
@ -447,7 +447,7 @@ class MessageLookup extends MessageLookupByLibrary {
"Wednesday": MessageLookupByLibrary.simpleMessage("Srijeda"),
"Welcome to the cutest instant messenger in the matrix network.":
MessageLookupByLibrary.simpleMessage(
"Lijep pozdrav u najslađi program za čavrljanje u matrix-mreži."),
"Lijep pozdrav u najslađi program za čavrljanje u Matrix-mreži."),
"Who is allowed to join this group":
MessageLookupByLibrary.simpleMessage(
"Tko se smije pridružiti grupi"),

467
lib/l10n/messages_hy.dart Normal file
View File

@ -0,0 +1,467 @@
// DO NOT EDIT. This is code generated via package:intl/generate_localized.dart
// This is a library that provides messages for a hy locale. All the
// messages from the main program should be duplicated here with the same
// function name.
// Ignore issues from commonly used lints in this file.
// ignore_for_file:unnecessary_brace_in_string_interps, unnecessary_new
// ignore_for_file:prefer_single_quotes,comment_references, directives_ordering
// ignore_for_file:annotate_overrides,prefer_generic_function_type_aliases
// ignore_for_file:unused_import, file_names
import 'package:intl/intl.dart';
import 'package:intl/message_lookup_by_library.dart';
final messages = new MessageLookup();
typedef String MessageIfAbsent(String messageStr, List<dynamic> args);
class MessageLookup extends MessageLookupByLibrary {
String get localeName => 'hy';
static m0(username) => "${username}-ը ընդունել է հրավերը";
static m1(username) => "${username}-ը ակտիվացրել է end to end կոդավորումը";
static m2(username) => "";
static m3(username, targetName) => "";
static m4(homeserver) => "";
static m5(username) => "";
static m6(username, description) => "";
static m7(username, chatname) => "";
static m8(username) => "";
static m9(username, displayname) => "";
static m10(username) => "";
static m11(username, rules) => "";
static m12(username) => "";
static m13(username, rules) => "";
static m14(username) => "";
static m15(username, joinRules) => "";
static m16(username) => "";
static m17(username) => "";
static m18(username) => "";
static m19(error) => "";
static m20(count) => "";
static m21(username) => "";
static m22(date, timeOfDay) => "";
static m23(year, month, day) => "";
static m24(month, day) => "";
static m25(displayname) => "";
static m26(username, targetName) => "";
static m27(groupName) => "";
static m28(username, link) => "";
static m29(username, targetName) => "";
static m30(username) => "";
static m31(username, targetName) => "";
static m32(username, targetName) => "";
static m33(localizedTimeShort) => "";
static m34(count) => "";
static m35(homeserver) => "";
static m36(number) => "";
static m37(fileName) => "";
static m38(username) => "";
static m39(username) => "";
static m40(username) => "";
static m41(username) => "";
static m42(username, count) => "";
static m43(username, username2) => "";
static m44(username) => "";
static m45(username) => "";
static m46(username) => "";
static m47(username) => "";
static m48(username) => "";
static m49(username) => "";
static m50(hours12, hours24, minutes, suffix) => "";
static m51(username, targetName) => "";
static m52(type) => "";
static m53(unreadCount) => "";
static m54(unreadEvents) => "";
static m55(unreadEvents, unreadChats) => "";
static m56(username, count) => "";
static m57(username, username2) => "";
static m58(username) => "";
static m59(username) => "";
static m60(username, type) => "";
final messages = _notInlinedMessages(_notInlinedMessages);
static _notInlinedMessages(_) => <String, Function>{
"(Optional) Group name": MessageLookupByLibrary.simpleMessage(""),
"About": MessageLookupByLibrary.simpleMessage("Հավելվածի մասին"),
"Accept": MessageLookupByLibrary.simpleMessage("Ընդունել"),
"Account": MessageLookupByLibrary.simpleMessage("Հաշիվ"),
"Account informations":
MessageLookupByLibrary.simpleMessage("Տեղեկություններ հաշվի մասին"),
"Add a group description": MessageLookupByLibrary.simpleMessage(
"Ավելացնել խմբի նկարագրություն"),
"Admin": MessageLookupByLibrary.simpleMessage("Համակարգող"),
"Already have an account?":
MessageLookupByLibrary.simpleMessage("Արդեն հաշի՞վ ունեք"),
"Anyone can join": MessageLookupByLibrary.simpleMessage(
"Յուրաքանչյուրը կարող է միանալ"),
"Archive": MessageLookupByLibrary.simpleMessage("Արխիվ"),
"Archived Room":
MessageLookupByLibrary.simpleMessage("Արխիվացված սենյակ"),
"Are guest users allowed to join": MessageLookupByLibrary.simpleMessage(
"Արդյո՞ք հյուր օգտատերերին թույլատրվում է միանալ"),
"Are you sure?": MessageLookupByLibrary.simpleMessage("Համոզվա՞ծ եք"),
"Authentication": MessageLookupByLibrary.simpleMessage(""),
"Avatar has been changed": MessageLookupByLibrary.simpleMessage(""),
"Ban from chat": MessageLookupByLibrary.simpleMessage(""),
"Banned": MessageLookupByLibrary.simpleMessage(""),
"Block Device": MessageLookupByLibrary.simpleMessage(""),
"Cancel": MessageLookupByLibrary.simpleMessage(""),
"Change the homeserver": MessageLookupByLibrary.simpleMessage(""),
"Change the name of the group":
MessageLookupByLibrary.simpleMessage(""),
"Change the server": MessageLookupByLibrary.simpleMessage(""),
"Change wallpaper": MessageLookupByLibrary.simpleMessage(""),
"Change your style": MessageLookupByLibrary.simpleMessage(""),
"Changelog": MessageLookupByLibrary.simpleMessage(""),
"Chat": MessageLookupByLibrary.simpleMessage(""),
"Chat details": MessageLookupByLibrary.simpleMessage(""),
"Choose a strong password": MessageLookupByLibrary.simpleMessage(""),
"Choose a username": MessageLookupByLibrary.simpleMessage(""),
"Close": MessageLookupByLibrary.simpleMessage(""),
"Confirm": MessageLookupByLibrary.simpleMessage(""),
"Connect": MessageLookupByLibrary.simpleMessage(""),
"Connection attempt failed": MessageLookupByLibrary.simpleMessage(""),
"Contact has been invited to the group":
MessageLookupByLibrary.simpleMessage(""),
"Content viewer": MessageLookupByLibrary.simpleMessage(""),
"Copied to clipboard": MessageLookupByLibrary.simpleMessage(""),
"Copy": MessageLookupByLibrary.simpleMessage(""),
"Could not set avatar": MessageLookupByLibrary.simpleMessage(""),
"Could not set displayname": MessageLookupByLibrary.simpleMessage(""),
"Create": MessageLookupByLibrary.simpleMessage(""),
"Create account now": MessageLookupByLibrary.simpleMessage(""),
"Create new group": MessageLookupByLibrary.simpleMessage(""),
"Currently active": MessageLookupByLibrary.simpleMessage(""),
"Dark": MessageLookupByLibrary.simpleMessage(""),
"Delete": MessageLookupByLibrary.simpleMessage(""),
"Delete message": MessageLookupByLibrary.simpleMessage(""),
"Deny": MessageLookupByLibrary.simpleMessage(""),
"Device": MessageLookupByLibrary.simpleMessage(""),
"Devices": MessageLookupByLibrary.simpleMessage(""),
"Discard picture": MessageLookupByLibrary.simpleMessage(""),
"Displayname has been changed":
MessageLookupByLibrary.simpleMessage(""),
"Donate": MessageLookupByLibrary.simpleMessage(""),
"Download file": MessageLookupByLibrary.simpleMessage(""),
"Edit Jitsi instance": MessageLookupByLibrary.simpleMessage(""),
"Edit displayname": MessageLookupByLibrary.simpleMessage(""),
"Emote Settings": MessageLookupByLibrary.simpleMessage(""),
"Emote shortcode": MessageLookupByLibrary.simpleMessage(""),
"Empty chat": MessageLookupByLibrary.simpleMessage(""),
"Encryption": MessageLookupByLibrary.simpleMessage(""),
"Encryption algorithm": MessageLookupByLibrary.simpleMessage(""),
"Encryption is not enabled": MessageLookupByLibrary.simpleMessage(""),
"End to end encryption is currently in Beta! Use at your own risk!":
MessageLookupByLibrary.simpleMessage(""),
"End-to-end encryption settings":
MessageLookupByLibrary.simpleMessage(""),
"Enter a group name": MessageLookupByLibrary.simpleMessage(""),
"Enter a username": MessageLookupByLibrary.simpleMessage(""),
"Enter your homeserver": MessageLookupByLibrary.simpleMessage(""),
"File name": MessageLookupByLibrary.simpleMessage(""),
"File size": MessageLookupByLibrary.simpleMessage(""),
"FluffyChat": MessageLookupByLibrary.simpleMessage(""),
"Forward": MessageLookupByLibrary.simpleMessage(""),
"Friday": MessageLookupByLibrary.simpleMessage(""),
"From joining": MessageLookupByLibrary.simpleMessage(""),
"From the invitation": MessageLookupByLibrary.simpleMessage(""),
"Group": MessageLookupByLibrary.simpleMessage(""),
"Group description": MessageLookupByLibrary.simpleMessage(""),
"Group description has been changed":
MessageLookupByLibrary.simpleMessage(""),
"Group is public": MessageLookupByLibrary.simpleMessage(""),
"Guests are forbidden": MessageLookupByLibrary.simpleMessage(""),
"Guests can join": MessageLookupByLibrary.simpleMessage(""),
"Help": MessageLookupByLibrary.simpleMessage(""),
"Homeserver is not compatible":
MessageLookupByLibrary.simpleMessage(""),
"How are you today?": MessageLookupByLibrary.simpleMessage(""),
"ID": MessageLookupByLibrary.simpleMessage(""),
"Identity": MessageLookupByLibrary.simpleMessage(""),
"Invite contact": MessageLookupByLibrary.simpleMessage(""),
"Invited": MessageLookupByLibrary.simpleMessage(""),
"Invited users only": MessageLookupByLibrary.simpleMessage(""),
"It seems that you have no google services on your phone. That\'s a good decision for your privacy! To receive push notifications in FluffyChat we recommend using microG: https://microg.org/":
MessageLookupByLibrary.simpleMessage(""),
"Kick from chat": MessageLookupByLibrary.simpleMessage(""),
"Last seen IP": MessageLookupByLibrary.simpleMessage(""),
"Leave": MessageLookupByLibrary.simpleMessage(""),
"Left the chat": MessageLookupByLibrary.simpleMessage(""),
"License": MessageLookupByLibrary.simpleMessage(""),
"Light": MessageLookupByLibrary.simpleMessage(""),
"Load more...": MessageLookupByLibrary.simpleMessage(""),
"Loading... Please wait": MessageLookupByLibrary.simpleMessage(""),
"Login": MessageLookupByLibrary.simpleMessage(""),
"Logout": MessageLookupByLibrary.simpleMessage(""),
"Make a moderator": MessageLookupByLibrary.simpleMessage(""),
"Make an admin": MessageLookupByLibrary.simpleMessage(""),
"Make sure the identifier is valid":
MessageLookupByLibrary.simpleMessage(""),
"Message will be removed for all participants":
MessageLookupByLibrary.simpleMessage(""),
"Moderator": MessageLookupByLibrary.simpleMessage(""),
"Monday": MessageLookupByLibrary.simpleMessage(""),
"Mute chat": MessageLookupByLibrary.simpleMessage(""),
"New message in FluffyChat": MessageLookupByLibrary.simpleMessage(""),
"New private chat": MessageLookupByLibrary.simpleMessage(""),
"No emotes found. 😕": MessageLookupByLibrary.simpleMessage(""),
"No permission": MessageLookupByLibrary.simpleMessage(""),
"No rooms found...": MessageLookupByLibrary.simpleMessage(""),
"None": MessageLookupByLibrary.simpleMessage(""),
"Not supported in web": MessageLookupByLibrary.simpleMessage(""),
"Oops something went wrong...":
MessageLookupByLibrary.simpleMessage(""),
"Open app to read messages": MessageLookupByLibrary.simpleMessage(""),
"Open camera": MessageLookupByLibrary.simpleMessage(""),
"Participating user devices": MessageLookupByLibrary.simpleMessage(""),
"Password": MessageLookupByLibrary.simpleMessage(""),
"Pick image": MessageLookupByLibrary.simpleMessage(""),
"Please be aware that you need Pantalaimon to use end-to-end encryption for now.":
MessageLookupByLibrary.simpleMessage(""),
"Please choose a username": MessageLookupByLibrary.simpleMessage(""),
"Please enter a matrix identifier":
MessageLookupByLibrary.simpleMessage(""),
"Please enter your password": MessageLookupByLibrary.simpleMessage(""),
"Please enter your username": MessageLookupByLibrary.simpleMessage(""),
"Public Rooms": MessageLookupByLibrary.simpleMessage(""),
"Recording": MessageLookupByLibrary.simpleMessage(""),
"Reject": MessageLookupByLibrary.simpleMessage(""),
"Rejoin": MessageLookupByLibrary.simpleMessage(""),
"Remove": MessageLookupByLibrary.simpleMessage(""),
"Remove all other devices": MessageLookupByLibrary.simpleMessage(""),
"Remove device": MessageLookupByLibrary.simpleMessage(""),
"Remove exile": MessageLookupByLibrary.simpleMessage(""),
"Remove message": MessageLookupByLibrary.simpleMessage(""),
"Render rich message content": MessageLookupByLibrary.simpleMessage(""),
"Reply": MessageLookupByLibrary.simpleMessage(""),
"Request permission": MessageLookupByLibrary.simpleMessage(""),
"Request to read older messages":
MessageLookupByLibrary.simpleMessage(""),
"Revoke all permissions": MessageLookupByLibrary.simpleMessage(""),
"Room has been upgraded": MessageLookupByLibrary.simpleMessage(""),
"Saturday": MessageLookupByLibrary.simpleMessage(""),
"Search for a chat": MessageLookupByLibrary.simpleMessage(""),
"Seen a long time ago": MessageLookupByLibrary.simpleMessage(""),
"Send": MessageLookupByLibrary.simpleMessage(""),
"Send a message": MessageLookupByLibrary.simpleMessage(""),
"Send file": MessageLookupByLibrary.simpleMessage(""),
"Send image": MessageLookupByLibrary.simpleMessage(""),
"Set a profile picture": MessageLookupByLibrary.simpleMessage(""),
"Set group description": MessageLookupByLibrary.simpleMessage(""),
"Set invitation link": MessageLookupByLibrary.simpleMessage(""),
"Set status": MessageLookupByLibrary.simpleMessage(""),
"Settings": MessageLookupByLibrary.simpleMessage(""),
"Share": MessageLookupByLibrary.simpleMessage(""),
"Sign up": MessageLookupByLibrary.simpleMessage(""),
"Skip": MessageLookupByLibrary.simpleMessage(""),
"Source code": MessageLookupByLibrary.simpleMessage(""),
"Start your first chat :-)": MessageLookupByLibrary.simpleMessage(""),
"Submit": MessageLookupByLibrary.simpleMessage(""),
"Sunday": MessageLookupByLibrary.simpleMessage(""),
"System": MessageLookupByLibrary.simpleMessage(""),
"Tap to show menu": MessageLookupByLibrary.simpleMessage(""),
"The encryption has been corrupted":
MessageLookupByLibrary.simpleMessage(""),
"They Don\'t Match": MessageLookupByLibrary.simpleMessage(""),
"They Match": MessageLookupByLibrary.simpleMessage(""),
"This room has been archived.":
MessageLookupByLibrary.simpleMessage(""),
"Thursday": MessageLookupByLibrary.simpleMessage(""),
"Try to send again": MessageLookupByLibrary.simpleMessage(""),
"Tuesday": MessageLookupByLibrary.simpleMessage(""),
"Unblock Device": MessageLookupByLibrary.simpleMessage(""),
"Unknown device": MessageLookupByLibrary.simpleMessage(""),
"Unknown encryption algorithm":
MessageLookupByLibrary.simpleMessage(""),
"Unmute chat": MessageLookupByLibrary.simpleMessage(""),
"Use Amoled compatible colors?":
MessageLookupByLibrary.simpleMessage(""),
"Username": MessageLookupByLibrary.simpleMessage(""),
"Verify": MessageLookupByLibrary.simpleMessage(""),
"Verify User": MessageLookupByLibrary.simpleMessage(""),
"Video call": MessageLookupByLibrary.simpleMessage(""),
"Visibility of the chat history":
MessageLookupByLibrary.simpleMessage(""),
"Visible for all participants":
MessageLookupByLibrary.simpleMessage(""),
"Visible for everyone": MessageLookupByLibrary.simpleMessage(""),
"Voice message": MessageLookupByLibrary.simpleMessage(""),
"Wallpaper": MessageLookupByLibrary.simpleMessage(""),
"Wednesday": MessageLookupByLibrary.simpleMessage(""),
"Welcome to the cutest instant messenger in the matrix network.":
MessageLookupByLibrary.simpleMessage(""),
"Who is allowed to join this group":
MessageLookupByLibrary.simpleMessage(""),
"Write a message...": MessageLookupByLibrary.simpleMessage(""),
"Yes": MessageLookupByLibrary.simpleMessage(""),
"You": MessageLookupByLibrary.simpleMessage(""),
"You are invited to this chat":
MessageLookupByLibrary.simpleMessage(""),
"You are no longer participating in this chat":
MessageLookupByLibrary.simpleMessage(""),
"You cannot invite yourself": MessageLookupByLibrary.simpleMessage(""),
"You have been banned from this chat":
MessageLookupByLibrary.simpleMessage(""),
"You won\'t be able to disable the encryption anymore. Are you sure?":
MessageLookupByLibrary.simpleMessage(""),
"Your own username": MessageLookupByLibrary.simpleMessage(""),
"acceptedTheInvitation": m0,
"activatedEndToEndEncryption": m1,
"alias": MessageLookupByLibrary.simpleMessage("կեղծանուն"),
"askSSSSCache": MessageLookupByLibrary.simpleMessage(""),
"askSSSSSign": MessageLookupByLibrary.simpleMessage(""),
"askSSSSVerify": MessageLookupByLibrary.simpleMessage(""),
"askVerificationRequest": m2,
"bannedUser": m3,
"byDefaultYouWillBeConnectedTo": m4,
"cachedKeys": MessageLookupByLibrary.simpleMessage(""),
"changedTheChatAvatar": m5,
"changedTheChatDescriptionTo": m6,
"changedTheChatNameTo": m7,
"changedTheChatPermissions": m8,
"changedTheDisplaynameTo": m9,
"changedTheGuestAccessRules": m10,
"changedTheGuestAccessRulesTo": m11,
"changedTheHistoryVisibility": m12,
"changedTheHistoryVisibilityTo": m13,
"changedTheJoinRules": m14,
"changedTheJoinRulesTo": m15,
"changedTheProfileAvatar": m16,
"changedTheRoomAliases": m17,
"changedTheRoomInvitationLink": m18,
"compareEmojiMatch": MessageLookupByLibrary.simpleMessage(""),
"compareNumbersMatch": MessageLookupByLibrary.simpleMessage(""),
"couldNotDecryptMessage": m19,
"countParticipants": m20,
"createdTheChat": m21,
"crossSigningDisabled": MessageLookupByLibrary.simpleMessage(""),
"crossSigningEnabled": MessageLookupByLibrary.simpleMessage(""),
"dateAndTimeOfDay": m22,
"dateWithYear": m23,
"dateWithoutYear": m24,
"emoteExists": MessageLookupByLibrary.simpleMessage(""),
"emoteInvalid": MessageLookupByLibrary.simpleMessage(""),
"emoteWarnNeedToPick": MessageLookupByLibrary.simpleMessage(""),
"groupWith": m25,
"hasWithdrawnTheInvitationFor": m26,
"incorrectPassphraseOrKey": MessageLookupByLibrary.simpleMessage(""),
"inviteContactToGroup": m27,
"inviteText": m28,
"invitedUser": m29,
"is typing...": MessageLookupByLibrary.simpleMessage(""),
"isDeviceKeyCorrect": MessageLookupByLibrary.simpleMessage(""),
"joinedTheChat": m30,
"keysCached": MessageLookupByLibrary.simpleMessage(""),
"keysMissing": MessageLookupByLibrary.simpleMessage(""),
"kicked": m31,
"kickedAndBanned": m32,
"lastActiveAgo": m33,
"loadCountMoreParticipants": m34,
"logInTo": m35,
"newVerificationRequest": MessageLookupByLibrary.simpleMessage(""),
"noCrossSignBootstrap": MessageLookupByLibrary.simpleMessage(""),
"noMegolmBootstrap": MessageLookupByLibrary.simpleMessage(""),
"numberSelected": m36,
"ok": MessageLookupByLibrary.simpleMessage(""),
"onlineKeyBackupDisabled": MessageLookupByLibrary.simpleMessage(""),
"onlineKeyBackupEnabled": MessageLookupByLibrary.simpleMessage(""),
"passphraseOrKey": MessageLookupByLibrary.simpleMessage(""),
"play": m37,
"redactedAnEvent": m38,
"rejectedTheInvitation": m39,
"removedBy": m40,
"seenByUser": m41,
"seenByUserAndCountOthers": m42,
"seenByUserAndUser": m43,
"sentAFile": m44,
"sentAPicture": m45,
"sentASticker": m46,
"sentAVideo": m47,
"sentAnAudio": m48,
"sessionVerified": MessageLookupByLibrary.simpleMessage(""),
"sharedTheLocation": m49,
"timeOfDay": m50,
"title": MessageLookupByLibrary.simpleMessage(""),
"unbannedUser": m51,
"unknownEvent": m52,
"unknownSessionVerify": MessageLookupByLibrary.simpleMessage(""),
"unreadChats": m53,
"unreadMessages": m54,
"unreadMessagesInChats": m55,
"userAndOthersAreTyping": m56,
"userAndUserAreTyping": m57,
"userIsTyping": m58,
"userLeftTheChat": m59,
"userSentUnknownEvent": m60,
"verifiedSession": MessageLookupByLibrary.simpleMessage(""),
"verifyManual": MessageLookupByLibrary.simpleMessage(""),
"verifyStart": MessageLookupByLibrary.simpleMessage(""),
"verifySuccess": MessageLookupByLibrary.simpleMessage(""),
"verifyTitle": MessageLookupByLibrary.simpleMessage(""),
"waitingPartnerAcceptRequest": MessageLookupByLibrary.simpleMessage(""),
"waitingPartnerEmoji": MessageLookupByLibrary.simpleMessage(""),
"waitingPartnerNumbers": MessageLookupByLibrary.simpleMessage("")
};
}

View File

@ -23,6 +23,8 @@ class MessageLookup extends MessageLookupByLibrary {
static m1(username) => "${username} activated end to end encryption";
static m61(senderName) => "${senderName} answered the call";
static m2(username) => "Accept this verification request from ${username}?";
static m3(username, targetName) => "${username} banned ${targetName}";
@ -75,6 +77,8 @@ class MessageLookup extends MessageLookupByLibrary {
static m24(month, day) => "${month}-${day}";
static m62(senderName) => "${senderName} ended the call";
static m25(displayname) => "Group with ${displayname}";
static m26(username, targetName) =>
@ -126,8 +130,12 @@ class MessageLookup extends MessageLookupByLibrary {
static m48(username) => "${username} sent an audio";
static m63(senderName) => "${senderName} sent call informations";
static m49(username) => "${username} shared the location";
static m64(senderName) => "${senderName} started a call";
static m50(hours12, hours24, minutes, suffix) =>
"${hours12}:${minutes} ${suffix}";
@ -297,6 +305,7 @@ class MessageLookup extends MessageLookupByLibrary {
"It seems that you have no google services on your phone. That\'s a good decision for your privacy! To receive push notifications in FluffyChat we recommend using microG: https://microg.org/":
MessageLookupByLibrary.simpleMessage(
"It seems that you have no google services on your phone. That\'s a good decision for your privacy! To receive push notifications in FluffyChat we recommend using microG: https://microg.org/"),
"Join room": MessageLookupByLibrary.simpleMessage("Join room"),
"Kick from chat":
MessageLookupByLibrary.simpleMessage("Kick from chat"),
"Last seen IP": MessageLookupByLibrary.simpleMessage("Last seen IP"),
@ -342,6 +351,7 @@ class MessageLookup extends MessageLookupByLibrary {
MessageLookupByLibrary.simpleMessage("Participating user devices"),
"Password": MessageLookupByLibrary.simpleMessage("Password"),
"Pick image": MessageLookupByLibrary.simpleMessage("Pick image"),
"Pin": MessageLookupByLibrary.simpleMessage("Pin"),
"Please be aware that you need Pantalaimon to use end-to-end encryption for now.":
MessageLookupByLibrary.simpleMessage(
"Please be aware that you need Pantalaimon to use end-to-end encryption for now."),
@ -424,6 +434,7 @@ class MessageLookup extends MessageLookupByLibrary {
"Unknown encryption algorithm": MessageLookupByLibrary.simpleMessage(
"Unknown encryption algorithm"),
"Unmute chat": MessageLookupByLibrary.simpleMessage("Unmute chat"),
"Unpin": MessageLookupByLibrary.simpleMessage("Unpin"),
"Use Amoled compatible colors?": MessageLookupByLibrary.simpleMessage(
"Use Amoled compatible colors?"),
"Username": MessageLookupByLibrary.simpleMessage("Username"),
@ -441,7 +452,7 @@ class MessageLookup extends MessageLookupByLibrary {
"Wednesday": MessageLookupByLibrary.simpleMessage("Wednesday"),
"Welcome to the cutest instant messenger in the matrix network.":
MessageLookupByLibrary.simpleMessage(
"Welcome to the cutest instant messenger in the Matrix network."),
"Welcome to the cutest instant messenger in the matrix network."),
"Who is allowed to join this group":
MessageLookupByLibrary.simpleMessage(
"Who is allowed to join this group"),
@ -467,6 +478,7 @@ class MessageLookup extends MessageLookupByLibrary {
"acceptedTheInvitation": m0,
"activatedEndToEndEncryption": m1,
"alias": MessageLookupByLibrary.simpleMessage("alias"),
"answeredTheCall": m61,
"askSSSSCache": MessageLookupByLibrary.simpleMessage(
"Please enter your secure store passphrase or recovery key to cache the keys."),
"askSSSSSign": MessageLookupByLibrary.simpleMessage(
@ -512,6 +524,7 @@ class MessageLookup extends MessageLookupByLibrary {
MessageLookupByLibrary.simpleMessage("Invalid emote shortcode!"),
"emoteWarnNeedToPick": MessageLookupByLibrary.simpleMessage(
"You need to pick an emote shortcode and an image!"),
"endedTheCall": m62,
"groupWith": m25,
"hasWithdrawnTheInvitationFor": m26,
"incorrectPassphraseOrKey": MessageLookupByLibrary.simpleMessage(
@ -533,9 +546,9 @@ class MessageLookup extends MessageLookupByLibrary {
"newVerificationRequest":
MessageLookupByLibrary.simpleMessage("New verification request!"),
"noCrossSignBootstrap": MessageLookupByLibrary.simpleMessage(
"Fluffychat currently does not support enabling Cross-Signing. Please enable it from within Element."),
"Fluffychat currently does not support enabling Cross-Signing. Please enable it from within Riot."),
"noMegolmBootstrap": MessageLookupByLibrary.simpleMessage(
"Fluffychat currently does not support enabling Online Key Backup. Please enable it from within Element."),
"Fluffychat currently does not support enabling Online Key Backup. Please enable it from within Riot."),
"numberSelected": m36,
"ok": MessageLookupByLibrary.simpleMessage("ok"),
"onlineKeyBackupDisabled": MessageLookupByLibrary.simpleMessage(
@ -556,9 +569,11 @@ class MessageLookup extends MessageLookupByLibrary {
"sentASticker": m46,
"sentAVideo": m47,
"sentAnAudio": m48,
"sentCallInformations": m63,
"sessionVerified":
MessageLookupByLibrary.simpleMessage("Session is verified"),
"sharedTheLocation": m49,
"startedACall": m64,
"timeOfDay": m50,
"title": MessageLookupByLibrary.simpleMessage("FluffyChat"),
"unbannedUser": m51,

View File

@ -19,25 +19,26 @@ typedef String MessageIfAbsent(String messageStr, List<dynamic> args);
class MessageLookup extends MessageLookupByLibrary {
String get localeName => 'ru';
static m0(username) => "${username} принял(а) приглашение";
static m0(username) => "${username} принял(а) приглашение войти в чат";
static m1(username) => "${username} активировал(а) сквозное шифрование";
static m2(username) => "Принять этот запрос подтверждения от ${username}?";
static m3(username, targetName) => "${username} забанил(а) ${targetName}";
static m3(username, targetName) =>
"${username} заблокировал(а) ${targetName}";
static m4(homeserver) => "По умолчанию вы будете подключены к ${homeserver}";
static m5(username) => "${username} изменил(а) аватар чата";
static m6(username, description) =>
"${username} изменил(а) описание чата на: \'${description}\'";
"${username} изменил(а) описание чата на: \"${description}\"";
static m7(username, chatname) =>
"${username} изменил(а) имя чата на: \'${chatname}\'";
"${username} изменил(а) имя чата на: \"${chatname}\"";
static m8(username) => "${username} изменил(а) права чата";
static m8(username) => "${username} изменил(а) права доступа к чату";
static m9(username, displayname) =>
"${username} изменил(а) отображаемое имя на: ${displayname}";
@ -57,23 +58,23 @@ class MessageLookup extends MessageLookupByLibrary {
static m15(username, joinRules) =>
"${username} изменил(а) правила присоединения на: ${joinRules}";
static m16(username) => "${username} сменил(а) свой аватар";
static m16(username) => "${username} изменил(а) аватар";
static m17(username) => "${username} изменил(а) псевдонимы комнаты";
static m18(username) => "${username} изменил(а) ссылку приглашения";
static m18(username) => "${username} изменил(а) ссылку для приглашения";
static m19(error) => "Не удалось расшифровать сообщение: ${error}";
static m20(count) => "${count} участника(-ов)";
static m20(count) => "${count} участника(ов)";
static m21(username) => "${username} создал(а) чат";
static m22(date, timeOfDay) => "${date}, ${timeOfDay}";
static m23(year, month, day) => "${day}. ${month}. ${year}";
static m23(year, month, day) => "${day}.${month}.${year}";
static m24(month, day) => "${day}. ${month}";
static m24(month, day) => "${day}.${month}";
static m25(displayname) => "Группа с ${displayname}";
@ -83,27 +84,27 @@ class MessageLookup extends MessageLookupByLibrary {
static m27(groupName) => "Пригласить контакт в ${groupName}";
static m28(username, link) =>
"${username} пригласил(а) вас в FluffyChat. \n1. Установите FluffyChat: http://fluffy.chat \n2. Зарегистрируйтесь или войдите \n3. Откройте ссылку приглашения: ${link}";
"${username} пригласил(а) вас в FluffyChat. \n1. Установите FluffyChat: http://fluffychat.im \n2. Зарегистрируйтесь или войдите \n3. Откройте ссылку приглашения: ${link}";
static m29(username, targetName) => "${username} пригласил(а) ${targetName}";
static m30(username) => "${username} присоединился(-ась) к чату";
static m30(username) => "${username} присоединился(ась) к чату";
static m31(username, targetName) => "${username} исключил(а) ${targetName}";
static m32(username, targetName) =>
"${username} исключил(а) и забанил(а) ${targetName}";
"${username} исключил(а) и заблокировал(а) ${targetName}";
static m33(localizedTimeShort) =>
"Последнее посещение: ${localizedTimeShort}";
static m34(count) => "Загрузить еще ${count} участников";
static m34(count) => "Загрузить еще ${count} участника(ов)";
static m35(homeserver) => "Войти в ${homeserver}";
static m36(number) => "${number} выбрано";
static m36(number) => "${number} выбран(о)";
static m37(fileName) => "Играть ${fileName}";
static m37(fileName) => "Проиграть ${fileName}";
static m38(username) => "${username} отредактировал(а) событие";
@ -121,7 +122,7 @@ class MessageLookup extends MessageLookupByLibrary {
static m44(username) => "${username} отправил(а) файл";
static m45(username) => "${username} отправил(а) картинку";
static m45(username) => "${username} отправил(а) изображение";
static m46(username) => "${username} отправил(а) стикер";
@ -129,20 +130,21 @@ class MessageLookup extends MessageLookupByLibrary {
static m48(username) => "${username} отправил(а) аудио";
static m49(username) => "${username} поделился(-ась) местоположением";
static m49(username) => "${username} поделился(ась) местоположением";
static m50(hours12, hours24, minutes, suffix) => "${hours24}:${minutes}";
static m51(username, targetName) => "${username} разбанил(а) ${targetName}";
static m51(username, targetName) =>
"${username} разблокировал(а) ${targetName}";
static m52(type) => "Неизвестное событие \'${type}\'";
static m52(type) => "Неизвестное событие \"${type}\"";
static m53(unreadCount) => "${unreadCount} непрочитанных чатов";
static m53(unreadCount) => "${unreadCount} непрочитанных чата(ов)";
static m54(unreadEvents) => "${unreadEvents} непрочитанных сообщений";
static m54(unreadEvents) => "${unreadEvents} непрочитанных сообщения(ий)";
static m55(unreadEvents, unreadChats) =>
"${unreadEvents} непрочитанных сообщений в ${unreadChats} чатах";
"${unreadEvents} непрочитанное(ых) сообщенией) в ${unreadChats} чате(ах)";
static m56(username, count) =>
"${username} и ${count} других участников печатают...";
@ -153,12 +155,13 @@ class MessageLookup extends MessageLookupByLibrary {
static m59(username) => "${username} покинул(а) чат";
static m60(username, type) => "${username} отправил(а) событие типа ${type}";
static m60(username, type) =>
"${username} отправил(а) событие типа \"${type}\"";
final messages = _notInlinedMessages(_notInlinedMessages);
static _notInlinedMessages(_) => <String, Function>{
"(Optional) Group name": MessageLookupByLibrary.simpleMessage(
"(Необязательно) Название группы"),
"(необязательно) Название группы"),
"About": MessageLookupByLibrary.simpleMessage("О приложении"),
"Accept": MessageLookupByLibrary.simpleMessage("Принять"),
"Account": MessageLookupByLibrary.simpleMessage("Учётная запись"),
@ -182,22 +185,21 @@ class MessageLookup extends MessageLookupByLibrary {
"Avatar has been changed":
MessageLookupByLibrary.simpleMessage("Аватар был изменён"),
"Ban from chat":
MessageLookupByLibrary.simpleMessage("Забанить в чате"),
"Banned": MessageLookupByLibrary.simpleMessage("Забанен(а)"),
MessageLookupByLibrary.simpleMessage("Заблокировать в чате"),
"Banned": MessageLookupByLibrary.simpleMessage("Заблокирован(а)"),
"Block Device":
MessageLookupByLibrary.simpleMessage("Заблокировать устройство"),
"Cancel": MessageLookupByLibrary.simpleMessage("Отмена"),
"Change the homeserver":
MessageLookupByLibrary.simpleMessage("Изменить домашний сервер"),
MessageLookupByLibrary.simpleMessage("Изменить сервер Matrix"),
"Change the name of the group":
MessageLookupByLibrary.simpleMessage("Изменить название группы"),
"Change the server":
MessageLookupByLibrary.simpleMessage("Сменить сервер"),
MessageLookupByLibrary.simpleMessage("Изменить сервер"),
"Change wallpaper":
MessageLookupByLibrary.simpleMessage("Сменить обои"),
"Change your style":
MessageLookupByLibrary.simpleMessage("Изменить свой стиль"),
"Changelog": MessageLookupByLibrary.simpleMessage("Изменения"),
MessageLookupByLibrary.simpleMessage("Изменить фон чатов"),
"Change your style": MessageLookupByLibrary.simpleMessage("Тема"),
"Changelog": MessageLookupByLibrary.simpleMessage("Журнал изменений"),
"Chat": MessageLookupByLibrary.simpleMessage("Чат"),
"Chat details": MessageLookupByLibrary.simpleMessage("Детали чата"),
"Choose a strong password":
@ -225,10 +227,10 @@ class MessageLookup extends MessageLookupByLibrary {
"Create account now": MessageLookupByLibrary.simpleMessage(
"Создать учётную запись сейчас"),
"Create new group":
MessageLookupByLibrary.simpleMessage("Создать новую группу"),
"Currently active":
MessageLookupByLibrary.simpleMessage("В настоящее время активен"),
"Dark": MessageLookupByLibrary.simpleMessage("Тёмный"),
MessageLookupByLibrary.simpleMessage("Новая группа"),
"Currently active": MessageLookupByLibrary.simpleMessage(
"В настоящее время активен(а)"),
"Dark": MessageLookupByLibrary.simpleMessage("Тёмная"),
"Delete": MessageLookupByLibrary.simpleMessage("Удалить"),
"Delete message":
MessageLookupByLibrary.simpleMessage("Удалить сообщение"),
@ -236,19 +238,19 @@ class MessageLookup extends MessageLookupByLibrary {
"Device": MessageLookupByLibrary.simpleMessage("Устройство"),
"Devices": MessageLookupByLibrary.simpleMessage("Устройства"),
"Discard picture":
MessageLookupByLibrary.simpleMessage("Сбросить картинку"),
MessageLookupByLibrary.simpleMessage("Удалить изображение"),
"Displayname has been changed": MessageLookupByLibrary.simpleMessage(
"Отображаемое имя было изменено"),
"Donate": MessageLookupByLibrary.simpleMessage("Пожертвовать"),
"Download file": MessageLookupByLibrary.simpleMessage("Скачать файл"),
"Edit Jitsi instance":
MessageLookupByLibrary.simpleMessage("Изменить сервер Jitsi"),
MessageLookupByLibrary.simpleMessage("Сервер Jitsi"),
"Edit displayname":
MessageLookupByLibrary.simpleMessage("Изменить отображаемое имя"),
MessageLookupByLibrary.simpleMessage("Отображаемое имя"),
"Emote Settings":
MessageLookupByLibrary.simpleMessage("Настройки смайликов"),
MessageLookupByLibrary.simpleMessage("Настройки эмодзи"),
"Emote shortcode":
MessageLookupByLibrary.simpleMessage("Краткий код для смайлика"),
MessageLookupByLibrary.simpleMessage("Краткий код для эмодзи"),
"Empty chat": MessageLookupByLibrary.simpleMessage("Пустой чат"),
"Encryption": MessageLookupByLibrary.simpleMessage("Шифрование"),
"Encryption algorithm":
@ -259,13 +261,13 @@ class MessageLookup extends MessageLookupByLibrary {
MessageLookupByLibrary.simpleMessage(
"Сквозное шифрование в настоящее время в бета-версии! Используйте на свой риск!"),
"End-to-end encryption settings": MessageLookupByLibrary.simpleMessage(
"Сквозные настройки шифрования"),
"Настройки сквозного шифрования"),
"Enter a group name":
MessageLookupByLibrary.simpleMessage("Введите название группы"),
"Enter a username":
MessageLookupByLibrary.simpleMessage("Введите имя пользователя"),
"Enter your homeserver":
MessageLookupByLibrary.simpleMessage("Введите ваш домашний сервер"),
"Enter your homeserver": MessageLookupByLibrary.simpleMessage(
"Введите адрес вашего сервера Matrix"),
"File name": MessageLookupByLibrary.simpleMessage("Имя файла"),
"File size": MessageLookupByLibrary.simpleMessage("Размер файла"),
"FluffyChat": MessageLookupByLibrary.simpleMessage("FluffyChat"),
@ -288,8 +290,8 @@ class MessageLookup extends MessageLookupByLibrary {
"Guests can join":
MessageLookupByLibrary.simpleMessage("Гости могут присоединиться"),
"Help": MessageLookupByLibrary.simpleMessage("Помощь"),
"Homeserver is not compatible": MessageLookupByLibrary.simpleMessage(
"Домашний сервер не совместим"),
"Homeserver is not compatible":
MessageLookupByLibrary.simpleMessage("Несовместимый сервер Matrix"),
"How are you today?":
MessageLookupByLibrary.simpleMessage("Как у вас сегодня дела?"),
"ID": MessageLookupByLibrary.simpleMessage("ID"),
@ -301,19 +303,19 @@ class MessageLookup extends MessageLookupByLibrary {
"Только приглашённым пользователям"),
"It seems that you have no google services on your phone. That\'s a good decision for your privacy! To receive push notifications in FluffyChat we recommend using microG: https://microg.org/":
MessageLookupByLibrary.simpleMessage(
"Похоже, у вас нет служб Google на вашем телефоне. Это хорошее решение для вашей конфиденциальности! Для получения push-уведомлений в FluffyChat мы рекомендуем использовать microG: https://microg.org/"),
"Похоже, у вас нет служб Google на вашем телефоне. Это хорошее решение для вашей конфиденциальности! Для получения push-уведомлений во FluffyChat мы рекомендуем использовать microG: https://microg.org/"),
"Kick from chat":
MessageLookupByLibrary.simpleMessage("Исключить из чата"),
"Last seen IP":
MessageLookupByLibrary.simpleMessage("Последний увиденный IP"),
"Last seen IP": MessageLookupByLibrary.simpleMessage(
"Последний IP, с которого заходили"),
"Leave": MessageLookupByLibrary.simpleMessage("Покинуть"),
"Left the chat": MessageLookupByLibrary.simpleMessage("Покинуть чат"),
"License": MessageLookupByLibrary.simpleMessage("Лицензия"),
"Light": MessageLookupByLibrary.simpleMessage("Светлый"),
"Light": MessageLookupByLibrary.simpleMessage("Светлая"),
"Load more...":
MessageLookupByLibrary.simpleMessage("Загрузить больше..."),
"Loading... Please wait": MessageLookupByLibrary.simpleMessage(
"Загрузка... Пожалуйста подождите"),
"Loading... Please wait":
MessageLookupByLibrary.simpleMessage("Пожалуйста, подождите..."),
"Login": MessageLookupByLibrary.simpleMessage("Вход"),
"Logout": MessageLookupByLibrary.simpleMessage("Выйти"),
"Make a moderator":
@ -331,12 +333,13 @@ class MessageLookup extends MessageLookupByLibrary {
"Mute chat":
MessageLookupByLibrary.simpleMessage("Отключить уведомления"),
"New message in FluffyChat": MessageLookupByLibrary.simpleMessage(
"Новое сообщение в FluffyChat"),
"Новое сообщение во FluffyChat"),
"New private chat":
MessageLookupByLibrary.simpleMessage("Новый приватный чат"),
"No emotes found. 😕":
MessageLookupByLibrary.simpleMessage("Смайликов не найдено. 😕"),
"No permission": MessageLookupByLibrary.simpleMessage("Нет разрешений"),
MessageLookupByLibrary.simpleMessage("Эмодзи не найдены 😕"),
"No permission":
MessageLookupByLibrary.simpleMessage("Нет прав доступа"),
"No rooms found...":
MessageLookupByLibrary.simpleMessage("Комнаты не найдены..."),
"None": MessageLookupByLibrary.simpleMessage("Ничего"),
@ -350,7 +353,8 @@ class MessageLookup extends MessageLookupByLibrary {
"Participating user devices":
MessageLookupByLibrary.simpleMessage("Участвующие устройства"),
"Password": MessageLookupByLibrary.simpleMessage("Пароль"),
"Pick image": MessageLookupByLibrary.simpleMessage("Выбрать картинку"),
"Pick image":
MessageLookupByLibrary.simpleMessage("Выбрать изображение"),
"Please be aware that you need Pantalaimon to use end-to-end encryption for now.":
MessageLookupByLibrary.simpleMessage(
"Помните, что вам нужен Pantalaimon для использования сквозного шифрования."),
@ -360,43 +364,44 @@ class MessageLookup extends MessageLookupByLibrary {
MessageLookupByLibrary.simpleMessage(
"Пожалуйста, введите идентификатор Matrix"),
"Please enter your password": MessageLookupByLibrary.simpleMessage(
"Пожалуйста введите ваш пароль"),
"Пожалуйста, введите ваш пароль"),
"Please enter your username": MessageLookupByLibrary.simpleMessage(
"Пожалуйста, введите имя пользователя"),
"Public Rooms":
MessageLookupByLibrary.simpleMessage("Публичные комнаты"),
"Recording": MessageLookupByLibrary.simpleMessage("Запись"),
"Reject": MessageLookupByLibrary.simpleMessage("Отклонить"),
"Rejoin": MessageLookupByLibrary.simpleMessage("Перезайти"),
"Rejoin": MessageLookupByLibrary.simpleMessage("Зайти повторно"),
"Remove": MessageLookupByLibrary.simpleMessage("Удалить"),
"Remove all other devices": MessageLookupByLibrary.simpleMessage(
"Удалить все другие устройства"),
"Remove device":
MessageLookupByLibrary.simpleMessage("Удалить устройство"),
"Remove exile": MessageLookupByLibrary.simpleMessage("Удалить ссылку"),
"Remove exile":
MessageLookupByLibrary.simpleMessage("Разблокировать в чате"),
"Remove message":
MessageLookupByLibrary.simpleMessage("Удалить сообщение"),
"Render rich message content": MessageLookupByLibrary.simpleMessage(
"Показать отформатированные сообщения"),
"Показывать текст с форматированием"),
"Reply": MessageLookupByLibrary.simpleMessage("Ответить"),
"Request permission":
MessageLookupByLibrary.simpleMessage("Запросить разрешение"),
"Request to read older messages": MessageLookupByLibrary.simpleMessage(
"Запросить доступ к предыдущим сообщениям"),
"Revoke all permissions":
MessageLookupByLibrary.simpleMessage("Отменить все разрешения"),
MessageLookupByLibrary.simpleMessage("Отменить все права доступа"),
"Room has been upgraded":
MessageLookupByLibrary.simpleMessage("Комната обновлена"),
"Saturday": MessageLookupByLibrary.simpleMessage("Суббота"),
"Search for a chat": MessageLookupByLibrary.simpleMessage("Поиск чата"),
"Seen a long time ago":
MessageLookupByLibrary.simpleMessage("Просматривали давно"),
MessageLookupByLibrary.simpleMessage("Был(а) в сети давно"),
"Send": MessageLookupByLibrary.simpleMessage("Отправить"),
"Send a message":
MessageLookupByLibrary.simpleMessage("Отправить сообщение"),
"Send file": MessageLookupByLibrary.simpleMessage("Отправить файл"),
"Send image":
MessageLookupByLibrary.simpleMessage("Отправить картинку"),
MessageLookupByLibrary.simpleMessage("Отправить изображение"),
"Set a profile picture": MessageLookupByLibrary.simpleMessage(
"Установить изображение профиля"),
"Set group description":
@ -413,7 +418,7 @@ class MessageLookup extends MessageLookupByLibrary {
MessageLookupByLibrary.simpleMessage("Начните свой первый чат :-)"),
"Submit": MessageLookupByLibrary.simpleMessage("Отправить"),
"Sunday": MessageLookupByLibrary.simpleMessage("Воскресенье"),
"System": MessageLookupByLibrary.simpleMessage("Системный"),
"System": MessageLookupByLibrary.simpleMessage("Системная"),
"Tap to show menu": MessageLookupByLibrary.simpleMessage(
"Нажмите, чтобы показать меню"),
"The encryption has been corrupted":
@ -435,8 +440,8 @@ class MessageLookup extends MessageLookupByLibrary {
"Неизвестный алгоритм шифрования"),
"Unmute chat":
MessageLookupByLibrary.simpleMessage("Включить уведомления"),
"Use Amoled compatible colors?": MessageLookupByLibrary.simpleMessage(
"Использовать AMOLED-совместимые цвета?"),
"Use Amoled compatible colors?":
MessageLookupByLibrary.simpleMessage("AMOLED-совместимые цвета"),
"Username": MessageLookupByLibrary.simpleMessage("Имя пользователя"),
"Verify": MessageLookupByLibrary.simpleMessage("Проверить"),
"Verify User":
@ -448,8 +453,8 @@ class MessageLookup extends MessageLookupByLibrary {
MessageLookupByLibrary.simpleMessage("Видима для всех участников"),
"Visible for everyone":
MessageLookupByLibrary.simpleMessage("Видна всем"),
"Voice message":
MessageLookupByLibrary.simpleMessage("Голосовое сообщение"),
"Voice message": MessageLookupByLibrary.simpleMessage(
"Отправить голосовое сообщение"),
"Wallpaper": MessageLookupByLibrary.simpleMessage("Обои"),
"Wednesday": MessageLookupByLibrary.simpleMessage("Среда"),
"Welcome to the cutest instant messenger in the matrix network.":
@ -471,7 +476,7 @@ class MessageLookup extends MessageLookupByLibrary {
"Вы не можете пригласить себя"),
"You have been banned from this chat":
MessageLookupByLibrary.simpleMessage(
"Вы были забанены в этом чате"),
"Вы были заблокированы в этом чате"),
"You won\'t be able to disable the encryption anymore. Are you sure?":
MessageLookupByLibrary.simpleMessage(
"Вы больше не сможете отключить шифрование. Вы уверены?"),
@ -481,16 +486,16 @@ class MessageLookup extends MessageLookupByLibrary {
"activatedEndToEndEncryption": m1,
"alias": MessageLookupByLibrary.simpleMessage("псевдоним"),
"askSSSSCache": MessageLookupByLibrary.simpleMessage(
"Пожалуйста, введите секретную фразу безопасного хранилища или ключ восстановления для кэширования ключей."),
"Пожалуйста, введите вашу парольную фразу или ключ восстановления для кэширования ключей."),
"askSSSSSign": MessageLookupByLibrary.simpleMessage(
"Чтобы иметь возможность подписать другое лицо, пожалуйста, введите пароль или ключ восстановления вашего безопасного хранилища."),
"Для подписи ключа другого пользователя, пожалуйста, введите вашу парольную фразу или ключ восстановления."),
"askSSSSVerify": MessageLookupByLibrary.simpleMessage(
"Пожалуйста, введите вашу парольную фразу или ключ восстановления для подтвердждения сеанса."),
"Пожалуйста, введите вашу парольную фразу или ключ восстановления для подтвердждения сессии."),
"askVerificationRequest": m2,
"bannedUser": m3,
"byDefaultYouWillBeConnectedTo": m4,
"cachedKeys":
MessageLookupByLibrary.simpleMessage("Ключи успешно кэшированы!"),
MessageLookupByLibrary.simpleMessage("Ключи успешно кэшированы"),
"changedTheChatAvatar": m5,
"changedTheChatDescriptionTo": m6,
"changedTheChatNameTo": m7,
@ -506,7 +511,7 @@ class MessageLookup extends MessageLookupByLibrary {
"changedTheRoomAliases": m17,
"changedTheRoomInvitationLink": m18,
"compareEmojiMatch": MessageLookupByLibrary.simpleMessage(
"Сравните и убедитесь, что следующие эмодзи соответствуют таковым на другом устройстве:"),
"Сравните и убедитесь, что следующие эмодзи соответствуют эмодзи на другом устройстве:"),
"compareNumbersMatch": MessageLookupByLibrary.simpleMessage(
"Сравните и убедитесь, что следующие числа соответствуют числам на другом устройстве:"),
"couldNotDecryptMessage": m19,
@ -520,11 +525,11 @@ class MessageLookup extends MessageLookupByLibrary {
"dateWithYear": m23,
"dateWithoutYear": m24,
"emoteExists":
MessageLookupByLibrary.simpleMessage("Смайлик уже существует!"),
MessageLookupByLibrary.simpleMessage("Эмодзи уже существует"),
"emoteInvalid": MessageLookupByLibrary.simpleMessage(
"Недопустимый краткий код смайлика!"),
"Недопустимый краткий код эмодзи"),
"emoteWarnNeedToPick": MessageLookupByLibrary.simpleMessage(
"Вам нужно выбрать краткий код смайлика и картинку!"),
"Выберите краткий код эмодзи и изображение"),
"groupWith": m25,
"hasWithdrawnTheInvitationFor": m26,
"incorrectPassphraseOrKey": MessageLookupByLibrary.simpleMessage(
@ -536,7 +541,8 @@ class MessageLookup extends MessageLookupByLibrary {
"isDeviceKeyCorrect": MessageLookupByLibrary.simpleMessage(
"Правильно ли указан следующий ключ устройства?"),
"joinedTheChat": m30,
"keysCached": MessageLookupByLibrary.simpleMessage("Ключи кэшированы"),
"keysCached":
MessageLookupByLibrary.simpleMessage("Ключи сохранены в кэше"),
"keysMissing":
MessageLookupByLibrary.simpleMessage("Ключи отсутствуют"),
"kicked": m31,
@ -545,17 +551,17 @@ class MessageLookup extends MessageLookupByLibrary {
"loadCountMoreParticipants": m34,
"logInTo": m35,
"newVerificationRequest": MessageLookupByLibrary.simpleMessage(
"Новый запрос на подтверждение!"),
"Новый запрос на подтверждение"),
"noCrossSignBootstrap": MessageLookupByLibrary.simpleMessage(
"Fluffychat в настоящее время не поддерживает включение кросс-подписи. Пожалуйста, включите его в Element."),
"FluffyChat в настоящее время не поддерживает включение кросс-подписи. Пожалуйста, включите его в Element."),
"noMegolmBootstrap": MessageLookupByLibrary.simpleMessage(
"В настоящее время Fluffychat не поддерживает функцию резервного копирования онлайн-ключей. Пожалуйста, включите его из Element."),
"В настоящее время FluffyChat не поддерживает функцию резервного копирования онлайн-ключей. Пожалуйста, включите её в Element."),
"numberSelected": m36,
"ok": MessageLookupByLibrary.simpleMessage("ok"),
"onlineKeyBackupDisabled": MessageLookupByLibrary.simpleMessage(
"Резервное копирование онлайн-ключей отключено"),
"Резервное копирование ключей на сервере отключено"),
"onlineKeyBackupEnabled": MessageLookupByLibrary.simpleMessage(
"Резервное копирование онлайн ключей включено"),
"Резервное копирование ключей на сервере включено"),
"passphraseOrKey": MessageLookupByLibrary.simpleMessage(
"пароль или ключ восстановления"),
"play": m37,
@ -588,18 +594,18 @@ class MessageLookup extends MessageLookupByLibrary {
"userLeftTheChat": m59,
"userSentUnknownEvent": m60,
"verifiedSession":
MessageLookupByLibrary.simpleMessage("Успешно проверенная сессия!"),
MessageLookupByLibrary.simpleMessage("Сессия успешно проверена"),
"verifyManual":
MessageLookupByLibrary.simpleMessage("Проверить вручную"),
"verifyStart": MessageLookupByLibrary.simpleMessage("Начать проверку"),
"verifySuccess":
MessageLookupByLibrary.simpleMessage("Вы успешно проверили!"),
MessageLookupByLibrary.simpleMessage("Проверка успешно завершена"),
"verifyTitle": MessageLookupByLibrary.simpleMessage(
"Проверка другой учётной записи"),
"waitingPartnerAcceptRequest": MessageLookupByLibrary.simpleMessage(
"В ожидании партнёра, чтобы принять запрос..."),
"waitingPartnerEmoji": MessageLookupByLibrary.simpleMessage(
"В ожидании партнёра, чтобы принять смайлики..."),
"В ожидании партнёра, чтобы принять эмодзи..."),
"waitingPartnerNumbers": MessageLookupByLibrary.simpleMessage(
"В ожидании партнёра, чтобы принять числа...")
};

539
lib/l10n/messages_tr.dart Normal file
View File

@ -0,0 +1,539 @@
// DO NOT EDIT. This is code generated via package:intl/generate_localized.dart
// This is a library that provides messages for a tr locale. All the
// messages from the main program should be duplicated here with the same
// function name.
// Ignore issues from commonly used lints in this file.
// ignore_for_file:unnecessary_brace_in_string_interps, unnecessary_new
// ignore_for_file:prefer_single_quotes,comment_references, directives_ordering
// ignore_for_file:annotate_overrides,prefer_generic_function_type_aliases
// ignore_for_file:unused_import, file_names
import 'package:intl/intl.dart';
import 'package:intl/message_lookup_by_library.dart';
final messages = new MessageLookup();
typedef String MessageIfAbsent(String messageStr, List<dynamic> args);
class MessageLookup extends MessageLookupByLibrary {
String get localeName => 'tr';
static m0(username) => "${username} katılma davetini kabul etti";
static m1(username) => "${username} uçtan uca şifrelemeyi etkinleştirdi";
static m2(username) =>
"${username}\'den gelen doğrulama talebini kabul etmek istiyor musunuz?";
static m3(username, targetName) => "${username} engelledi: ${targetName}";
static m4(homeserver) =>
"Varsayılan olarak ${homeserver} sunucusuna bağlanacaksınız";
static m5(username) => "${username} sohbet resmini değiştirdi";
static m6(username, description) =>
"${username} sohbet açıklamasını değiştirdi: \'${description}\'";
static m7(username, chatname) =>
"${username} sohbet adını değiştirdi: \'${chatname}\'";
static m8(username) => "${username} sohbet izinlerini değiştirdi";
static m9(username, displayname) => "";
static m10(username) => "${username} misafir erişim kurallarını değiştirdi";
static m11(username, rules) =>
"${username} misafir erişim kurallarını değiştirdi: ${rules}";
static m12(username) => "${username} geçmiş görünürlüğünü değiştirdi";
static m13(username, rules) =>
"${username} geçmiş görünürlüğünü değiştirdi: ${rules}";
static m14(username) => "${username} katılım kurallarını değiştirdi";
static m15(username, joinRules) =>
"${username} katılım kurallarını değiştirdi: ${joinRules}";
static m16(username) => "${username} avatarını değiştirdi";
static m17(username) => "";
static m18(username) => "${username} davet bağlantısını değiştirdi";
static m19(error) => "Mesajın şifresi çözülemedi: ${error}";
static m20(count) => "${count} katılımcı";
static m21(username) => "${username} sohbeti oluşturdu";
static m22(date, timeOfDay) => "${date}, ${timeOfDay}";
static m23(year, month, day) => "${day}/${month}/${year}";
static m24(month, day) => "${day} ${month}";
static m25(displayname) => "";
static m26(username, targetName) => "";
static m27(groupName) => "";
static m28(username, link) => "";
static m29(username, targetName) => "";
static m30(username) => "${username} sohbete katıldı";
static m31(username, targetName) => "";
static m32(username, targetName) => "";
static m33(localizedTimeShort) => "";
static m34(count) => "";
static m35(homeserver) => "";
static m36(number) => "";
static m37(fileName) => "";
static m38(username) => "";
static m39(username) => "${username} daveti reddetti";
static m40(username) => "${username} tarafından kaldırıldı";
static m41(username) => "${username} tarafından görüldü";
static m42(username, count) =>
"${username} ve ${count} diğerleri tarafından görüldü";
static m43(username, username2) =>
"${username} ve ${username2} tarafından görüldü";
static m44(username) => "${username} bir dosya gönderdi";
static m45(username) => "${username} bir resim gönderdi";
static m46(username) => "${username} bir çıkartma gönderdi";
static m47(username) => "${username} bir video gönderdi";
static m48(username) => "${username} bir ses gönderdi";
static m49(username) => "${username} konumu paylaştı";
static m50(hours12, hours24, minutes, suffix) =>
"${hours12}:${minutes} ${suffix}";
static m51(username, targetName) =>
"${username} engeli kaldırdı: ${targetName}";
static m52(type) => "";
static m53(unreadCount) => "${unreadCount} okunmamış sohbet";
static m54(unreadEvents) => "${unreadEvents} okunmamış mesaj";
static m55(unreadEvents, unreadChats) =>
"${unreadChats} sohbetten ${unreadEvents} okunmamış mesaj";
static m56(username, count) =>
"${username} ve ${count} diğer kişi yazıyor...";
static m57(username, username2) => "${username} ve ${username2} yazıyor...";
static m58(username) => "${username} yazıyor...";
static m59(username) => "${username} sohbetten ayrıldı";
static m60(username, type) => "";
final messages = _notInlinedMessages(_notInlinedMessages);
static _notInlinedMessages(_) => <String, Function>{
"(Optional) Group name":
MessageLookupByLibrary.simpleMessage("(İsteğe bağlı) Grup adı"),
"About": MessageLookupByLibrary.simpleMessage("Hakkında"),
"Accept": MessageLookupByLibrary.simpleMessage("Kabul et"),
"Account": MessageLookupByLibrary.simpleMessage("Hesap"),
"Account informations":
MessageLookupByLibrary.simpleMessage("Hesap bilgileri"),
"Add a group description":
MessageLookupByLibrary.simpleMessage("Grup açıklaması ekle"),
"Admin": MessageLookupByLibrary.simpleMessage("Yönetici"),
"Already have an account?":
MessageLookupByLibrary.simpleMessage("Hesabınız var mı?"),
"Anyone can join":
MessageLookupByLibrary.simpleMessage("Herkes katılabilir"),
"Archive": MessageLookupByLibrary.simpleMessage("Arşiv"),
"Archived Room": MessageLookupByLibrary.simpleMessage("Arşiv Odası"),
"Are guest users allowed to join": MessageLookupByLibrary.simpleMessage(
"Misafir kullanıcıların katılmasına izin veriliyor mu"),
"Are you sure?": MessageLookupByLibrary.simpleMessage("Emin misiniz?"),
"Authentication": MessageLookupByLibrary.simpleMessage("Doğrulama"),
"Avatar has been changed":
MessageLookupByLibrary.simpleMessage("Avatar değiştirildi"),
"Ban from chat":
MessageLookupByLibrary.simpleMessage("Sohbetten engellendiniz"),
"Banned": MessageLookupByLibrary.simpleMessage("Engellendi"),
"Block Device": MessageLookupByLibrary.simpleMessage(""),
"Cancel": MessageLookupByLibrary.simpleMessage("İptal"),
"Change the homeserver": MessageLookupByLibrary.simpleMessage(""),
"Change the name of the group":
MessageLookupByLibrary.simpleMessage("Grubun adını değiştir"),
"Change the server":
MessageLookupByLibrary.simpleMessage("Sunucuyu değiştir"),
"Change wallpaper":
MessageLookupByLibrary.simpleMessage("Duvar kağıdını değiştir"),
"Change your style":
MessageLookupByLibrary.simpleMessage("Sitilinizi değiştirin"),
"Changelog": MessageLookupByLibrary.simpleMessage("Değişiklikler"),
"Chat": MessageLookupByLibrary.simpleMessage("Sohbet"),
"Chat details":
MessageLookupByLibrary.simpleMessage("Sohbet ayrıntıları"),
"Choose a strong password":
MessageLookupByLibrary.simpleMessage("Güçlü bir parola seçin"),
"Choose a username":
MessageLookupByLibrary.simpleMessage("Bir kullanıcı adı seçin"),
"Close": MessageLookupByLibrary.simpleMessage("Kapat"),
"Confirm": MessageLookupByLibrary.simpleMessage("Onayla"),
"Connect": MessageLookupByLibrary.simpleMessage("Bağlan"),
"Connection attempt failed": MessageLookupByLibrary.simpleMessage(
"Bağlantı denemesi başarısız oldu"),
"Contact has been invited to the group":
MessageLookupByLibrary.simpleMessage("Kişi gruba davet edildi"),
"Content viewer": MessageLookupByLibrary.simpleMessage(""),
"Copied to clipboard":
MessageLookupByLibrary.simpleMessage("Panoya kopyalandı"),
"Copy": MessageLookupByLibrary.simpleMessage("Kopyala"),
"Could not set avatar":
MessageLookupByLibrary.simpleMessage("Avatar ayarlanamadı"),
"Could not set displayname": MessageLookupByLibrary.simpleMessage(""),
"Create": MessageLookupByLibrary.simpleMessage("Oluştur"),
"Create account now":
MessageLookupByLibrary.simpleMessage("Şimdi hesap oluştur"),
"Create new group":
MessageLookupByLibrary.simpleMessage("Yeni grup oluştur"),
"Currently active": MessageLookupByLibrary.simpleMessage(""),
"Dark": MessageLookupByLibrary.simpleMessage("Koyu"),
"Delete": MessageLookupByLibrary.simpleMessage("Sil"),
"Delete message": MessageLookupByLibrary.simpleMessage("Mesajı sil"),
"Deny": MessageLookupByLibrary.simpleMessage(""),
"Device": MessageLookupByLibrary.simpleMessage("Cihaz"),
"Devices": MessageLookupByLibrary.simpleMessage("Cihazlar"),
"Discard picture": MessageLookupByLibrary.simpleMessage(""),
"Displayname has been changed":
MessageLookupByLibrary.simpleMessage(""),
"Donate": MessageLookupByLibrary.simpleMessage("Bağış"),
"Download file": MessageLookupByLibrary.simpleMessage(""),
"Edit Jitsi instance": MessageLookupByLibrary.simpleMessage(""),
"Edit displayname": MessageLookupByLibrary.simpleMessage(""),
"Emote Settings": MessageLookupByLibrary.simpleMessage(""),
"Emote shortcode": MessageLookupByLibrary.simpleMessage(""),
"Empty chat": MessageLookupByLibrary.simpleMessage(""),
"Encryption": MessageLookupByLibrary.simpleMessage("Şifreleme"),
"Encryption algorithm":
MessageLookupByLibrary.simpleMessage("Şifreleme algoritması"),
"Encryption is not enabled": MessageLookupByLibrary.simpleMessage(""),
"End to end encryption is currently in Beta! Use at your own risk!":
MessageLookupByLibrary.simpleMessage(
"Uçtan uca şifreleme şimdilik Beta aşamasında! Risk alarak kullanın!"),
"End-to-end encryption settings": MessageLookupByLibrary.simpleMessage(
"Uçtan uca şifreleme ayarları"),
"Enter a group name":
MessageLookupByLibrary.simpleMessage("Bir grup adı girin"),
"Enter a username":
MessageLookupByLibrary.simpleMessage("Bir kullanıcı adı girin"),
"Enter your homeserver": MessageLookupByLibrary.simpleMessage(""),
"File name": MessageLookupByLibrary.simpleMessage("Dosya adı"),
"File size": MessageLookupByLibrary.simpleMessage("Dosya boyutu"),
"FluffyChat": MessageLookupByLibrary.simpleMessage("FluffyChat"),
"Forward": MessageLookupByLibrary.simpleMessage(""),
"Friday": MessageLookupByLibrary.simpleMessage("Cuma"),
"From joining": MessageLookupByLibrary.simpleMessage(""),
"From the invitation": MessageLookupByLibrary.simpleMessage(""),
"Group": MessageLookupByLibrary.simpleMessage("Grup"),
"Group description":
MessageLookupByLibrary.simpleMessage("Grup açıklaması"),
"Group description has been changed":
MessageLookupByLibrary.simpleMessage(
"Grup açıklaması değiştirildi"),
"Group is public": MessageLookupByLibrary.simpleMessage(""),
"Guests are forbidden": MessageLookupByLibrary.simpleMessage(""),
"Guests can join":
MessageLookupByLibrary.simpleMessage("Misafirler katılabilir"),
"Help": MessageLookupByLibrary.simpleMessage("Yardım"),
"Homeserver is not compatible":
MessageLookupByLibrary.simpleMessage(""),
"How are you today?":
MessageLookupByLibrary.simpleMessage("Bugün nasılsınız?"),
"ID": MessageLookupByLibrary.simpleMessage(""),
"Identity": MessageLookupByLibrary.simpleMessage(""),
"Invite contact": MessageLookupByLibrary.simpleMessage(""),
"Invited": MessageLookupByLibrary.simpleMessage(""),
"Invited users only": MessageLookupByLibrary.simpleMessage(
"Sadece davet edilen kullanıcılar"),
"It seems that you have no google services on your phone. That\'s a good decision for your privacy! To receive push notifications in FluffyChat we recommend using microG: https://microg.org/":
MessageLookupByLibrary.simpleMessage(""),
"Kick from chat": MessageLookupByLibrary.simpleMessage(""),
"Last seen IP": MessageLookupByLibrary.simpleMessage(""),
"Leave": MessageLookupByLibrary.simpleMessage("Ayrıl"),
"Left the chat": MessageLookupByLibrary.simpleMessage(""),
"License": MessageLookupByLibrary.simpleMessage("Lisans"),
"Light": MessageLookupByLibrary.simpleMessage("ık"),
"Load more...":
MessageLookupByLibrary.simpleMessage("Daha fazla yükle..."),
"Loading... Please wait": MessageLookupByLibrary.simpleMessage(
"Yükleniyor... Lütfen bekleyin"),
"Login": MessageLookupByLibrary.simpleMessage("Oturum aç"),
"Logout": MessageLookupByLibrary.simpleMessage("Oturumu kapat"),
"Make a moderator": MessageLookupByLibrary.simpleMessage(""),
"Make an admin": MessageLookupByLibrary.simpleMessage(""),
"Make sure the identifier is valid":
MessageLookupByLibrary.simpleMessage(""),
"Message will be removed for all participants":
MessageLookupByLibrary.simpleMessage(
"Mesaj tüm katılımcılar için kaldırılacak"),
"Moderator": MessageLookupByLibrary.simpleMessage(""),
"Monday": MessageLookupByLibrary.simpleMessage("Pazartesi"),
"Mute chat": MessageLookupByLibrary.simpleMessage(""),
"New message in FluffyChat": MessageLookupByLibrary.simpleMessage(""),
"New private chat": MessageLookupByLibrary.simpleMessage(""),
"No emotes found. 😕": MessageLookupByLibrary.simpleMessage(""),
"No permission": MessageLookupByLibrary.simpleMessage(""),
"No rooms found...": MessageLookupByLibrary.simpleMessage(""),
"None": MessageLookupByLibrary.simpleMessage(""),
"Not supported in web": MessageLookupByLibrary.simpleMessage(""),
"Oops something went wrong...":
MessageLookupByLibrary.simpleMessage(""),
"Open app to read messages": MessageLookupByLibrary.simpleMessage(
"Mesajları okumak için uygulamayı"),
"Open camera": MessageLookupByLibrary.simpleMessage("Kamerayı"),
"Participating user devices": MessageLookupByLibrary.simpleMessage(""),
"Password": MessageLookupByLibrary.simpleMessage("Parola"),
"Pick image": MessageLookupByLibrary.simpleMessage(""),
"Please be aware that you need Pantalaimon to use end-to-end encryption for now.":
MessageLookupByLibrary.simpleMessage(""),
"Please choose a username": MessageLookupByLibrary.simpleMessage(
"Lütfen bir kullanıcı adı seçin"),
"Please enter a matrix identifier":
MessageLookupByLibrary.simpleMessage(""),
"Please enter your password":
MessageLookupByLibrary.simpleMessage("Lütfen parolanızı girin"),
"Please enter your username": MessageLookupByLibrary.simpleMessage(
"Lütfen kullanıcı adınızı girin"),
"Public Rooms": MessageLookupByLibrary.simpleMessage(""),
"Recording": MessageLookupByLibrary.simpleMessage(""),
"Reject": MessageLookupByLibrary.simpleMessage("Reddet"),
"Rejoin": MessageLookupByLibrary.simpleMessage("Yeniden katıl"),
"Remove": MessageLookupByLibrary.simpleMessage("Kaldır"),
"Remove all other devices":
MessageLookupByLibrary.simpleMessage("Diğer tüm cihazları kaldır"),
"Remove device": MessageLookupByLibrary.simpleMessage("Cihazı kaldır"),
"Remove exile": MessageLookupByLibrary.simpleMessage(""),
"Remove message": MessageLookupByLibrary.simpleMessage("Mesajı kaldır"),
"Render rich message content": MessageLookupByLibrary.simpleMessage(""),
"Reply": MessageLookupByLibrary.simpleMessage(""),
"Request permission": MessageLookupByLibrary.simpleMessage("İzin iste"),
"Request to read older messages":
MessageLookupByLibrary.simpleMessage("Eski mesajları okumayı iste"),
"Revoke all permissions":
MessageLookupByLibrary.simpleMessage("Tüm izinleri iptal et"),
"Room has been upgraded": MessageLookupByLibrary.simpleMessage(""),
"Saturday": MessageLookupByLibrary.simpleMessage("Cumartesi"),
"Search for a chat": MessageLookupByLibrary.simpleMessage("Sohbet ara"),
"Seen a long time ago":
MessageLookupByLibrary.simpleMessage("Uzun zaman önce görüldü"),
"Send": MessageLookupByLibrary.simpleMessage("Gönder"),
"Send a message":
MessageLookupByLibrary.simpleMessage("Bir mesaj gönder"),
"Send file": MessageLookupByLibrary.simpleMessage("Dosya gönder"),
"Send image": MessageLookupByLibrary.simpleMessage(""),
"Set a profile picture":
MessageLookupByLibrary.simpleMessage("Profil fotoğrafı ekleyin"),
"Set group description":
MessageLookupByLibrary.simpleMessage("Grup açıklaması ekleyin"),
"Set invitation link":
MessageLookupByLibrary.simpleMessage("Davet bağlantısı ayarlayın"),
"Set status": MessageLookupByLibrary.simpleMessage("Durumu ayarla"),
"Settings": MessageLookupByLibrary.simpleMessage("Ayarlar"),
"Share": MessageLookupByLibrary.simpleMessage("Paylaş"),
"Sign up": MessageLookupByLibrary.simpleMessage("Hesap oluştur"),
"Skip": MessageLookupByLibrary.simpleMessage("Geç"),
"Source code": MessageLookupByLibrary.simpleMessage("Kaynak kod"),
"Start your first chat :-)":
MessageLookupByLibrary.simpleMessage("İlk sohbetini başlat :-)"),
"Submit": MessageLookupByLibrary.simpleMessage("Gönder"),
"Sunday": MessageLookupByLibrary.simpleMessage("Pazar"),
"System": MessageLookupByLibrary.simpleMessage("Sistem"),
"Tap to show menu":
MessageLookupByLibrary.simpleMessage("Menüyü açmak için dokunun"),
"The encryption has been corrupted":
MessageLookupByLibrary.simpleMessage(""),
"They Don\'t Match":
MessageLookupByLibrary.simpleMessage("Eşleşme yok"),
"They Match": MessageLookupByLibrary.simpleMessage("Eşleştiler"),
"This room has been archived.":
MessageLookupByLibrary.simpleMessage("Bu sohbet arşivlendi."),
"Thursday": MessageLookupByLibrary.simpleMessage("Perşembe"),
"Try to send again":
MessageLookupByLibrary.simpleMessage("Tekrar göndermeyi deneyin"),
"Tuesday": MessageLookupByLibrary.simpleMessage("Salı"),
"Unblock Device": MessageLookupByLibrary.simpleMessage(""),
"Unknown device":
MessageLookupByLibrary.simpleMessage("Bilinmeyen cihaz"),
"Unknown encryption algorithm": MessageLookupByLibrary.simpleMessage(
"Bilinmeyen şifreleme algoritması"),
"Unmute chat":
MessageLookupByLibrary.simpleMessage("Sohbeti sessizden çıkart"),
"Use Amoled compatible colors?": MessageLookupByLibrary.simpleMessage(
"Amolede uyumlu renkler kullanılsın mı?"),
"Username": MessageLookupByLibrary.simpleMessage("Kullanıcı adı"),
"Verify": MessageLookupByLibrary.simpleMessage("Doğrula"),
"Verify User":
MessageLookupByLibrary.simpleMessage("Kullanıcıyı Doğrula"),
"Video call": MessageLookupByLibrary.simpleMessage("Video arama"),
"Visibility of the chat history":
MessageLookupByLibrary.simpleMessage("Sohbet geçmişi görünürlüğü"),
"Visible for all participants": MessageLookupByLibrary.simpleMessage(
"Tüm katılımcılar için görünür"),
"Visible for everyone":
MessageLookupByLibrary.simpleMessage("Herkes için görünür"),
"Voice message": MessageLookupByLibrary.simpleMessage("Sesli mesaj"),
"Wallpaper": MessageLookupByLibrary.simpleMessage("Duvar kağıdı"),
"Wednesday": MessageLookupByLibrary.simpleMessage("Çarşamba"),
"Welcome to the cutest instant messenger in the matrix network.":
MessageLookupByLibrary.simpleMessage(
"Matrix ağındaki en şirin anlık mesajlaşma uygulamasına hoş geldiniz."),
"Who is allowed to join this group":
MessageLookupByLibrary.simpleMessage("Bu gruba kimler katılabilir"),
"Write a message...":
MessageLookupByLibrary.simpleMessage("Mesaj yazın..."),
"Yes": MessageLookupByLibrary.simpleMessage("Evet"),
"You": MessageLookupByLibrary.simpleMessage("Sen"),
"You are invited to this chat":
MessageLookupByLibrary.simpleMessage("Sohbete davet edildiniz"),
"You are no longer participating in this chat":
MessageLookupByLibrary.simpleMessage(
"Artık bu sohbette katılımcı değilsiniz"),
"You cannot invite yourself":
MessageLookupByLibrary.simpleMessage("Kendinizi davet edemezsiniz"),
"You have been banned from this chat":
MessageLookupByLibrary.simpleMessage("Bu sohbetten engellendiniz"),
"You won\'t be able to disable the encryption anymore. Are you sure?":
MessageLookupByLibrary.simpleMessage(""),
"Your own username":
MessageLookupByLibrary.simpleMessage("Kullanıcı adınız"),
"acceptedTheInvitation": m0,
"activatedEndToEndEncryption": m1,
"alias": MessageLookupByLibrary.simpleMessage("takma ad"),
"askSSSSCache": MessageLookupByLibrary.simpleMessage(""),
"askSSSSSign": MessageLookupByLibrary.simpleMessage(""),
"askSSSSVerify": MessageLookupByLibrary.simpleMessage(""),
"askVerificationRequest": m2,
"bannedUser": m3,
"byDefaultYouWillBeConnectedTo": m4,
"cachedKeys": MessageLookupByLibrary.simpleMessage(
"Anahtarlar başarıyla önbelleğe alındı!"),
"changedTheChatAvatar": m5,
"changedTheChatDescriptionTo": m6,
"changedTheChatNameTo": m7,
"changedTheChatPermissions": m8,
"changedTheDisplaynameTo": m9,
"changedTheGuestAccessRules": m10,
"changedTheGuestAccessRulesTo": m11,
"changedTheHistoryVisibility": m12,
"changedTheHistoryVisibilityTo": m13,
"changedTheJoinRules": m14,
"changedTheJoinRulesTo": m15,
"changedTheProfileAvatar": m16,
"changedTheRoomAliases": m17,
"changedTheRoomInvitationLink": m18,
"compareEmojiMatch": MessageLookupByLibrary.simpleMessage(""),
"compareNumbersMatch": MessageLookupByLibrary.simpleMessage(""),
"couldNotDecryptMessage": m19,
"countParticipants": m20,
"createdTheChat": m21,
"crossSigningDisabled": MessageLookupByLibrary.simpleMessage(""),
"crossSigningEnabled": MessageLookupByLibrary.simpleMessage(""),
"dateAndTimeOfDay": m22,
"dateWithYear": m23,
"dateWithoutYear": m24,
"emoteExists": MessageLookupByLibrary.simpleMessage(""),
"emoteInvalid": MessageLookupByLibrary.simpleMessage(""),
"emoteWarnNeedToPick": MessageLookupByLibrary.simpleMessage(""),
"groupWith": m25,
"hasWithdrawnTheInvitationFor": m26,
"incorrectPassphraseOrKey": MessageLookupByLibrary.simpleMessage(""),
"inviteContactToGroup": m27,
"inviteText": m28,
"invitedUser": m29,
"is typing...": MessageLookupByLibrary.simpleMessage("yazıyor..."),
"isDeviceKeyCorrect": MessageLookupByLibrary.simpleMessage(""),
"joinedTheChat": m30,
"keysCached": MessageLookupByLibrary.simpleMessage(""),
"keysMissing": MessageLookupByLibrary.simpleMessage(""),
"kicked": m31,
"kickedAndBanned": m32,
"lastActiveAgo": m33,
"loadCountMoreParticipants": m34,
"logInTo": m35,
"newVerificationRequest": MessageLookupByLibrary.simpleMessage(""),
"noCrossSignBootstrap": MessageLookupByLibrary.simpleMessage(""),
"noMegolmBootstrap": MessageLookupByLibrary.simpleMessage(""),
"numberSelected": m36,
"ok": MessageLookupByLibrary.simpleMessage(""),
"onlineKeyBackupDisabled": MessageLookupByLibrary.simpleMessage(""),
"onlineKeyBackupEnabled": MessageLookupByLibrary.simpleMessage(""),
"passphraseOrKey": MessageLookupByLibrary.simpleMessage(""),
"play": m37,
"redactedAnEvent": m38,
"rejectedTheInvitation": m39,
"removedBy": m40,
"seenByUser": m41,
"seenByUserAndCountOthers": m42,
"seenByUserAndUser": m43,
"sentAFile": m44,
"sentAPicture": m45,
"sentASticker": m46,
"sentAVideo": m47,
"sentAnAudio": m48,
"sessionVerified":
MessageLookupByLibrary.simpleMessage("Oturum doğrulandı"),
"sharedTheLocation": m49,
"timeOfDay": m50,
"title": MessageLookupByLibrary.simpleMessage("FluffyChat"),
"unbannedUser": m51,
"unknownEvent": m52,
"unknownSessionVerify": MessageLookupByLibrary.simpleMessage(
"Bilinmeyen oturum, lütfen doğrulayın"),
"unreadChats": m53,
"unreadMessages": m54,
"unreadMessagesInChats": m55,
"userAndOthersAreTyping": m56,
"userAndUserAreTyping": m57,
"userIsTyping": m58,
"userLeftTheChat": m59,
"userSentUnknownEvent": m60,
"verifiedSession": MessageLookupByLibrary.simpleMessage(
"Oturum başarıyla doğrulandı!"),
"verifyManual":
MessageLookupByLibrary.simpleMessage("Manuel Olarak Doğrula"),
"verifyStart":
MessageLookupByLibrary.simpleMessage("Doğrulamayı Başlat"),
"verifySuccess":
MessageLookupByLibrary.simpleMessage("Başarıyla doğrulandı!"),
"verifyTitle":
MessageLookupByLibrary.simpleMessage("Diğer hesap doğrulanıyor"),
"waitingPartnerAcceptRequest": MessageLookupByLibrary.simpleMessage(
"İsteği kabul etmesi bekleniyor..."),
"waitingPartnerEmoji": MessageLookupByLibrary.simpleMessage(
"Emojiyi kabul etmesi bekleniyor..."),
"waitingPartnerNumbers": MessageLookupByLibrary.simpleMessage("")
};
}

View File

@ -19,66 +19,72 @@ typedef String MessageIfAbsent(String messageStr, List<dynamic> args);
class MessageLookup extends MessageLookupByLibrary {
String get localeName => 'uk';
static m0(username) => "${username} прийняв(ла) запрошення";
static m0(username) => "${username} прийняв(-ла) запрошення";
static m1(username) => "${username} активував(ла) наскрізне шифрування";
static m2(username) => "Прийняти цей запит на підтвердження від ${username}?";
static m3(username, targetName) => "${username} забанив(ла) ${targetName}";
static m3(username, targetName) =>
"${username} заблокував(-ла) ${targetName}";
static m4(homeserver) =>
"За замовчуванням ви будете підключені до ${homeserver}";
static m5(username) => "${username} змінив(ла) аватар чату";
static m5(username) => "${username} змінив(-ла) аватар чату";
static m6(username, description) =>
"${username} змінив(ла) опис чату на: \'${description}\'";
"${username} змінив(-ла) опис чату на: \'${description}\'";
static m7(username, chatname) =>
"${username} змінив(ла) ім\'я чату на: \'${chatname}\'";
"${username} змінив(-ла) ім\'я чату на: \'${chatname}\'";
static m8(username) => "";
static m8(username) => "${username} змінив(-ла) права чату";
static m9(username, displayname) => "";
static m9(username, displayname) =>
"${username} змінив(-ла) відображуване ім\'я на: ${displayname}";
static m10(username) => "";
static m10(username) => "${username} змінив(-ла) правила гостьового доступу";
static m11(username, rules) => "";
static m11(username, rules) =>
"${username} змінив(-ла) правила гостьового доступу на: ${rules}";
static m12(username) => "";
static m12(username) => "${username} змінив(-ла) видимість історії";
static m13(username, rules) => "";
static m13(username, rules) =>
"${username} змінив(-ла) видимість історії на: ${rules}";
static m14(username) => "";
static m14(username) => "${username} змінив(-ла) правила щодо приєднання";
static m15(username, joinRules) => "";
static m15(username, joinRules) =>
"${username} змінив(-ла) правила щодо приєднання на: ${joinRules}";
static m16(username) => "";
static m16(username) => "${username} змінив(-ла) аватар";
static m17(username) => "";
static m17(username) => "${username} змінив(-ла) псевдоніми кімнати";
static m18(username) => "";
static m18(username) => "${username} змінив(-ла) посилання для запрошення";
static m19(error) => "";
static m19(error) => "Помилка при розшифруванні повідомлення: ${error}";
static m20(count) => "";
static m20(count) => "${count} учасника(-ів)";
static m21(username) => "";
static m21(username) => "${username} створив(-ла) чат";
static m22(date, timeOfDay) => "";
static m22(date, timeOfDay) => "${date}, ${timeOfDay}";
static m23(year, month, day) => "${day}.${month}.${year}";
static m24(month, day) => "";
static m24(month, day) => "${day}.${month}";
static m25(displayname) => "";
static m25(displayname) => "Група з ${displayname}";
static m26(username, targetName) => "";
static m27(groupName) => "";
static m28(username, link) => "";
static m28(username, link) =>
"${username} запросив(-ла) вас у FluffyChat. \n1. Встановіть FluffyChat: http://fluffychat.im \n2. Зареєструйтесь або увійдіть \n3. Відкрийте посилання для запрошення: ${link}";
static m29(username, targetName) => "";
@ -86,7 +92,8 @@ class MessageLookup extends MessageLookupByLibrary {
static m31(username, targetName) => "";
static m32(username, targetName) => "";
static m32(username, targetName) =>
"${username} виключив(-ла) та заблокував(-ла) ${targetName}";
static m33(localizedTimeShort) => "";
@ -124,7 +131,8 @@ class MessageLookup extends MessageLookupByLibrary {
static m50(hours12, hours24, minutes, suffix) => "${hours24}:${minutes}";
static m51(username, targetName) => "";
static m51(username, targetName) =>
"${username} розблокував(-ла) ${targetName}";
static m52(type) => "";
@ -170,75 +178,103 @@ class MessageLookup extends MessageLookupByLibrary {
"Avatar has been changed":
MessageLookupByLibrary.simpleMessage("Аватар був змінений"),
"Ban from chat":
MessageLookupByLibrary.simpleMessage("Забанити в чаті"),
"Banned": MessageLookupByLibrary.simpleMessage("Забанений(на)"),
MessageLookupByLibrary.simpleMessage("Заблокувати в чаті"),
"Banned": MessageLookupByLibrary.simpleMessage("Заблокований(-на)"),
"Block Device":
MessageLookupByLibrary.simpleMessage("Заблокувати пристрій"),
"Cancel": MessageLookupByLibrary.simpleMessage("Скасувати"),
"Change the homeserver": MessageLookupByLibrary.simpleMessage(""),
"Change the homeserver":
MessageLookupByLibrary.simpleMessage("Змінити домашній сервер"),
"Change the name of the group":
MessageLookupByLibrary.simpleMessage(""),
"Change the server": MessageLookupByLibrary.simpleMessage(""),
"Change wallpaper": MessageLookupByLibrary.simpleMessage(""),
MessageLookupByLibrary.simpleMessage("Змінити назву групи"),
"Change the server":
MessageLookupByLibrary.simpleMessage("Змінити сервер"),
"Change wallpaper":
MessageLookupByLibrary.simpleMessage("Змінити фонове зображення"),
"Change your style": MessageLookupByLibrary.simpleMessage(""),
"Changelog": MessageLookupByLibrary.simpleMessage(""),
"Chat": MessageLookupByLibrary.simpleMessage(""),
"Chat details": MessageLookupByLibrary.simpleMessage(""),
"Choose a strong password": MessageLookupByLibrary.simpleMessage(""),
"Choose a username": MessageLookupByLibrary.simpleMessage(""),
"Close": MessageLookupByLibrary.simpleMessage(""),
"Confirm": MessageLookupByLibrary.simpleMessage(""),
"Connect": MessageLookupByLibrary.simpleMessage(""),
"Connection attempt failed": MessageLookupByLibrary.simpleMessage(""),
"Changelog": MessageLookupByLibrary.simpleMessage("Журнал змін"),
"Chat": MessageLookupByLibrary.simpleMessage("Чат"),
"Chat details": MessageLookupByLibrary.simpleMessage("Деталі чату"),
"Choose a strong password":
MessageLookupByLibrary.simpleMessage("Виберіть надійний пароль"),
"Choose a username":
MessageLookupByLibrary.simpleMessage("Виберіть ім\'я користувача"),
"Close": MessageLookupByLibrary.simpleMessage("Закрити"),
"Confirm": MessageLookupByLibrary.simpleMessage("Підтвердити"),
"Connect": MessageLookupByLibrary.simpleMessage("Приєднатись"),
"Connection attempt failed": MessageLookupByLibrary.simpleMessage(
"Спроба підключення не вдалась"),
"Contact has been invited to the group":
MessageLookupByLibrary.simpleMessage(""),
"Content viewer": MessageLookupByLibrary.simpleMessage(""),
"Copied to clipboard": MessageLookupByLibrary.simpleMessage(""),
"Copy": MessageLookupByLibrary.simpleMessage(""),
"Could not set avatar": MessageLookupByLibrary.simpleMessage(""),
"Could not set displayname": MessageLookupByLibrary.simpleMessage(""),
"Create": MessageLookupByLibrary.simpleMessage(""),
"Create account now": MessageLookupByLibrary.simpleMessage(""),
"Create new group": MessageLookupByLibrary.simpleMessage(""),
"Currently active": MessageLookupByLibrary.simpleMessage(""),
MessageLookupByLibrary.simpleMessage(
"Контакт був запрошений в групу"),
"Content viewer":
MessageLookupByLibrary.simpleMessage("Перегляд вмісту"),
"Copied to clipboard":
MessageLookupByLibrary.simpleMessage("Скопійовано в буфер обміну"),
"Copy": MessageLookupByLibrary.simpleMessage("Копіювати"),
"Could not set avatar": MessageLookupByLibrary.simpleMessage(
"Помилка при встановленні аватара"),
"Could not set displayname": MessageLookupByLibrary.simpleMessage(
"Помилка при встановленні відображуваного імені"),
"Create": MessageLookupByLibrary.simpleMessage("Створити"),
"Create account now": MessageLookupByLibrary.simpleMessage(
"Створити обліковий запис зараз"),
"Create new group":
MessageLookupByLibrary.simpleMessage("Створити нову групу"),
"Currently active":
MessageLookupByLibrary.simpleMessage("Зараз активний(-на)"),
"Dark": MessageLookupByLibrary.simpleMessage(""),
"Delete": MessageLookupByLibrary.simpleMessage(""),
"Delete message": MessageLookupByLibrary.simpleMessage(""),
"Deny": MessageLookupByLibrary.simpleMessage(""),
"Device": MessageLookupByLibrary.simpleMessage(""),
"Devices": MessageLookupByLibrary.simpleMessage(""),
"Discard picture": MessageLookupByLibrary.simpleMessage(""),
"Displayname has been changed":
MessageLookupByLibrary.simpleMessage(""),
"Delete": MessageLookupByLibrary.simpleMessage("Видалити"),
"Delete message":
MessageLookupByLibrary.simpleMessage("Видалити повідомлення"),
"Deny": MessageLookupByLibrary.simpleMessage("Відхилити"),
"Device": MessageLookupByLibrary.simpleMessage("Пристрій"),
"Devices": MessageLookupByLibrary.simpleMessage("Пристрої"),
"Discard picture":
MessageLookupByLibrary.simpleMessage("Скинути зображення"),
"Displayname has been changed": MessageLookupByLibrary.simpleMessage(
"Відображуване ім\'я було змінено"),
"Donate": MessageLookupByLibrary.simpleMessage(""),
"Download file": MessageLookupByLibrary.simpleMessage(""),
"Download file":
MessageLookupByLibrary.simpleMessage("Завантажити файл"),
"Edit Jitsi instance": MessageLookupByLibrary.simpleMessage(""),
"Edit displayname": MessageLookupByLibrary.simpleMessage(""),
"Emote Settings": MessageLookupByLibrary.simpleMessage(""),
"Emote shortcode": MessageLookupByLibrary.simpleMessage(""),
"Empty chat": MessageLookupByLibrary.simpleMessage(""),
"Encryption": MessageLookupByLibrary.simpleMessage(""),
"Encryption algorithm": MessageLookupByLibrary.simpleMessage(""),
"Encryption is not enabled": MessageLookupByLibrary.simpleMessage(""),
"Edit displayname":
MessageLookupByLibrary.simpleMessage("Змінити відображуване ім\'я"),
"Emote Settings":
MessageLookupByLibrary.simpleMessage("Налаштування емодзі"),
"Emote shortcode":
MessageLookupByLibrary.simpleMessage("Короткий код для емодзі"),
"Empty chat": MessageLookupByLibrary.simpleMessage("Пустий чат"),
"Encryption": MessageLookupByLibrary.simpleMessage("Шифрування"),
"Encryption algorithm":
MessageLookupByLibrary.simpleMessage("Алгоритм шифрування"),
"Encryption is not enabled":
MessageLookupByLibrary.simpleMessage("Шифрування вимкнено"),
"End to end encryption is currently in Beta! Use at your own risk!":
MessageLookupByLibrary.simpleMessage(""),
"End-to-end encryption settings":
MessageLookupByLibrary.simpleMessage(""),
"Enter a group name": MessageLookupByLibrary.simpleMessage(""),
"Enter a username": MessageLookupByLibrary.simpleMessage(""),
"Enter your homeserver": MessageLookupByLibrary.simpleMessage(""),
"File name": MessageLookupByLibrary.simpleMessage(""),
"File size": MessageLookupByLibrary.simpleMessage(""),
"FluffyChat": MessageLookupByLibrary.simpleMessage(""),
"Forward": MessageLookupByLibrary.simpleMessage(""),
"Friday": MessageLookupByLibrary.simpleMessage(""),
"From joining": MessageLookupByLibrary.simpleMessage(""),
"From the invitation": MessageLookupByLibrary.simpleMessage(""),
"Group": MessageLookupByLibrary.simpleMessage(""),
"Group description": MessageLookupByLibrary.simpleMessage(""),
"End-to-end encryption settings": MessageLookupByLibrary.simpleMessage(
"Налаштування наскрізного шифрування"),
"Enter a group name":
MessageLookupByLibrary.simpleMessage("Введіть назву групи"),
"Enter a username":
MessageLookupByLibrary.simpleMessage("Введіть ім\'я користувача"),
"Enter your homeserver": MessageLookupByLibrary.simpleMessage(
"Введіть адресу вашого сервера Matrix"),
"File name": MessageLookupByLibrary.simpleMessage("Ім\'я файлу"),
"File size": MessageLookupByLibrary.simpleMessage("Розмір файлу"),
"FluffyChat": MessageLookupByLibrary.simpleMessage("FluffyChat"),
"Forward": MessageLookupByLibrary.simpleMessage("Переслати"),
"Friday": MessageLookupByLibrary.simpleMessage("П\'ятниця"),
"From joining":
MessageLookupByLibrary.simpleMessage("З моменту приєднання"),
"From the invitation":
MessageLookupByLibrary.simpleMessage("З моменту запрошення"),
"Group": MessageLookupByLibrary.simpleMessage("Група"),
"Group description": MessageLookupByLibrary.simpleMessage("Опис групи"),
"Group description has been changed":
MessageLookupByLibrary.simpleMessage(""),
"Group is public": MessageLookupByLibrary.simpleMessage(""),
MessageLookupByLibrary.simpleMessage("Опис групи було змінено"),
"Group is public":
MessageLookupByLibrary.simpleMessage("Публічна група"),
"Guests are forbidden": MessageLookupByLibrary.simpleMessage(""),
"Guests can join": MessageLookupByLibrary.simpleMessage(""),
"Help": MessageLookupByLibrary.simpleMessage(""),
@ -330,7 +366,7 @@ class MessageLookup extends MessageLookupByLibrary {
"System": MessageLookupByLibrary.simpleMessage(""),
"Tap to show menu": MessageLookupByLibrary.simpleMessage(""),
"The encryption has been corrupted":
MessageLookupByLibrary.simpleMessage(""),
MessageLookupByLibrary.simpleMessage("Шифрування було пошкоджено"),
"They Don\'t Match": MessageLookupByLibrary.simpleMessage(""),
"They Match": MessageLookupByLibrary.simpleMessage(""),
"This room has been archived.":
@ -370,9 +406,11 @@ class MessageLookup extends MessageLookupByLibrary {
MessageLookupByLibrary.simpleMessage(""),
"You cannot invite yourself": MessageLookupByLibrary.simpleMessage(""),
"You have been banned from this chat":
MessageLookupByLibrary.simpleMessage(""),
MessageLookupByLibrary.simpleMessage(
"Ви були заблоковані в цьому чаті"),
"You won\'t be able to disable the encryption anymore. Are you sure?":
MessageLookupByLibrary.simpleMessage(""),
MessageLookupByLibrary.simpleMessage(
"Ви більше не зможете відключити шифрування. Ви впевнені?"),
"Your own username": MessageLookupByLibrary.simpleMessage(""),
"acceptedTheInvitation": m0,
"activatedEndToEndEncryption": m1,
@ -402,19 +440,25 @@ class MessageLookup extends MessageLookupByLibrary {
"changedTheProfileAvatar": m16,
"changedTheRoomAliases": m17,
"changedTheRoomInvitationLink": m18,
"compareEmojiMatch": MessageLookupByLibrary.simpleMessage(""),
"compareNumbersMatch": MessageLookupByLibrary.simpleMessage(""),
"compareEmojiMatch": MessageLookupByLibrary.simpleMessage(
"Порівняйте і переконайтесь, що наступні емодзі відповідають таким на іншому пристрої:"),
"compareNumbersMatch": MessageLookupByLibrary.simpleMessage(
"Порівняйте і переконайтесь, що наступні числа відповідають числам на іншому пристрої:"),
"couldNotDecryptMessage": m19,
"countParticipants": m20,
"createdTheChat": m21,
"crossSigningDisabled": MessageLookupByLibrary.simpleMessage(""),
"crossSigningEnabled": MessageLookupByLibrary.simpleMessage(""),
"crossSigningDisabled":
MessageLookupByLibrary.simpleMessage("Крос-підпис вимкнено"),
"crossSigningEnabled":
MessageLookupByLibrary.simpleMessage("Крос-підпис ввімкнено"),
"dateAndTimeOfDay": m22,
"dateWithYear": m23,
"dateWithoutYear": m24,
"emoteExists": MessageLookupByLibrary.simpleMessage(""),
"emoteInvalid": MessageLookupByLibrary.simpleMessage(""),
"emoteWarnNeedToPick": MessageLookupByLibrary.simpleMessage(""),
"emoteExists": MessageLookupByLibrary.simpleMessage("Емодзі вже існує"),
"emoteInvalid": MessageLookupByLibrary.simpleMessage(
"Неприпустимий короткий код емодзі"),
"emoteWarnNeedToPick": MessageLookupByLibrary.simpleMessage(
"Виберіть короткий код емодзі і картинку"),
"groupWith": m25,
"hasWithdrawnTheInvitationFor": m26,
"incorrectPassphraseOrKey": MessageLookupByLibrary.simpleMessage(""),

View File

@ -53,7 +53,7 @@ abstract class FirebaseController {
}
return;
}
final pushers = await client.api.requestPushers();
final pushers = await client.requestPushers();
final currentPushers = pushers.where((pusher) => pusher.pushkey == token);
if (currentPushers.length == 1 &&
currentPushers.first.kind == 'http' &&
@ -69,14 +69,14 @@ abstract class FirebaseController {
for (final currentPusher in currentPushers) {
currentPusher.pushkey = token;
currentPusher.kind = 'null';
await client.api.setPusher(
await client.setPusher(
currentPusher,
append: true,
);
debugPrint('[Push] Remove legacy pusher for this device');
}
}
await client.api.setPusher(
await client.setPusher(
Pusher(
token,
APP_ID,

View File

@ -23,7 +23,7 @@ class UrlLauncher {
final identifier = url.replaceAll('https://matrix.to/#/', '');
if (identifier.substring(0, 1) == '#') {
final response = await SimpleDialogs(context).tryRequestWithLoadingDialog(
matrix.client.api.joinRoom(
matrix.client.joinRoom(
Uri.encodeComponent(identifier),
),
);

View File

@ -33,7 +33,7 @@ class AppInfo extends StatelessWidget {
),
ListTile(
title: Text('Homeserver:'),
subtitle: Text(client.api.homeserver.toString()),
subtitle: Text(client.homeserver.toString()),
),
ListTile(
title: Text('Device name:'),

View File

@ -14,7 +14,7 @@ class AuthWebView extends StatelessWidget {
@override
Widget build(BuildContext context) {
final url = Matrix.of(context).client.api.homeserver.toString() +
final url = Matrix.of(context).client.homeserver.toString() +
'/_matrix/client/r0/auth/$authType/fallback/web?session=$session';
if (kIsWeb) launch(url);
return Scaffold(

View File

@ -63,20 +63,18 @@ class _ChatDetailsState extends State<ChatDetails> {
var newAliases = List<String>.from(aliases);
newAliases.add(canonicalAlias);
final response = await SimpleDialogs(context).tryRequestWithLoadingDialog(
widget.room.client.api.requestRoomAliasInformations(canonicalAlias),
widget.room.client.requestRoomAliasInformations(canonicalAlias),
);
if (response == false) {
final success =
await SimpleDialogs(context).tryRequestWithLoadingDialog(
widget.room.client.api
.createRoomAlias(canonicalAlias, widget.room.id),
widget.room.client.createRoomAlias(canonicalAlias, widget.room.id),
);
if (success == false) return;
}
}
await SimpleDialogs(context).tryRequestWithLoadingDialog(
widget.room.client.api
.sendState(widget.room.id, 'm.room.canonical_alias', {
widget.room.client.sendState(widget.room.id, 'm.room.canonical_alias', {
'alias': '#$s:$domain',
}),
);

View File

@ -92,7 +92,7 @@ class _ChatListState extends State<ChatList> {
setState(() => loadingPublicRooms = true);
final newPublicRoomsResponse =
await SimpleDialogs(context).tryRequestWithErrorToast(
Matrix.of(context).client.api.searchPublicRooms(
Matrix.of(context).client.searchPublicRooms(
limit: 30,
includeAllNetworks: true,
genericSearchTerm: searchController.text,
@ -197,7 +197,7 @@ class _ChatListState extends State<ChatList> {
);
if (status?.isEmpty ?? true) return;
await SimpleDialogs(context).tryRequestWithLoadingDialog(
Matrix.of(context).client.api.sendPresence(
Matrix.of(context).client.sendPresence(
Matrix.of(context).client.userID, PresenceType.online,
statusMsg: status),
);

View File

@ -85,7 +85,7 @@ class _InvitationSelectionState extends State<InvitationSelection> {
setState(() => loading = true);
final matrix = Matrix.of(context);
final response = await SimpleDialogs(context).tryRequestWithErrorToast(
matrix.client.api.searchUser(text, limit: 10),
matrix.client.searchUser(text, limit: 10),
);
setState(() => loading = false);
if (response == false || (response?.results == null)) return;

View File

@ -45,7 +45,8 @@ class _LoginState extends State<Login> {
setState(() => loading = true);
try {
await matrix.client.login(
usernameController.text, passwordController.text,
user: usernameController.text,
password: passwordController.text,
initialDeviceDisplayName: matrix.widget.clientName);
} on MatrixException catch (exception) {
setState(() => passwordError = exception.errorMessage);
@ -91,7 +92,7 @@ class _LoginState extends State<Login> {
.getWellKnownInformationsByUserId(userId);
final newDomain = wellKnownInformations.mHomeserver?.baseUrl;
if ((newDomain?.isNotEmpty ?? false) &&
newDomain != Matrix.of(context).client.api.homeserver.toString()) {
newDomain != Matrix.of(context).client.homeserver.toString()) {
await SimpleDialogs(context).tryRequestWithErrorToast(
Matrix.of(context).client.checkServer(newDomain));
setState(() => usernameError = null);
@ -110,7 +111,6 @@ class _LoginState extends State<Login> {
title: Text(
L10n.of(context).logInTo(Matrix.of(context)
.client
.api
.homeserver
.toString()
.replaceFirst('https://', '')),

View File

@ -35,7 +35,7 @@ class _NewGroupState extends State<_NewGroup> {
final matrix = Matrix.of(context);
final String roomID =
await SimpleDialogs(context).tryRequestWithLoadingDialog(
matrix.client.api.createRoom(
matrix.client.createRoom(
preset: publicGroup
? api.CreateRoomPreset.public_chat
: api.CreateRoomPreset.private_chat,

View File

@ -90,7 +90,7 @@ class _NewPrivateChatState extends State<_NewPrivateChat> {
setState(() => loading = true);
final matrix = Matrix.of(context);
final response = await SimpleDialogs(context).tryRequestWithErrorToast(
matrix.client.api.searchUser(text, limit: 10),
matrix.client.searchUser(text, limit: 10),
);
setState(() => loading = false);
if (response == false || (response?.results?.isEmpty ?? true)) return;

View File

@ -77,7 +77,7 @@ class _SettingsState extends State<Settings> {
if (displayname == null) return;
final matrix = Matrix.of(context);
final success = await SimpleDialogs(context).tryRequestWithLoadingDialog(
matrix.client.setDisplayname(displayname),
matrix.client.setDisplayname(matrix.client.userID, displayname),
);
if (success != false) {
setState(() {

View File

@ -28,7 +28,7 @@ class DevicesSettingsState extends State<DevicesSettings> {
List<Device> devices;
Future<bool> _loadUserDevices(BuildContext context) async {
if (devices != null) return true;
devices = await Matrix.of(context).client.api.requestDevices();
devices = await Matrix.of(context).client.requestDevices();
return true;
}
@ -49,7 +49,7 @@ class DevicesSettingsState extends State<DevicesSettings> {
if (password == null) return;
final success = await SimpleDialogs(context).tryRequestWithLoadingDialog(
matrix.client.api.deleteDevices(deviceIds,
matrix.client.deleteDevices(deviceIds,
auth: matrix.getAuthByPassword(password)));
if (success != false) {
reload();

View File

@ -73,12 +73,11 @@ class _EmotesSettingsState extends State<EmotesSettings> {
debugPrint(content.toString());
if (widget.room != null) {
await SimpleDialogs(context).tryRequestWithLoadingDialog(
client.api.sendState(widget.room.id, 'im.ponies.room_emotes', content),
client.sendState(widget.room.id, 'im.ponies.room_emotes', content),
);
} else {
await SimpleDialogs(context).tryRequestWithLoadingDialog(
client.api
.setAccountData(client.userID, 'im.ponies.user_emotes', content),
client.setAccountData(client.userID, 'im.ponies.user_emotes', content),
);
}
}
@ -377,10 +376,7 @@ class _EmoteImagePickerState extends State<_EmoteImagePicker> {
final matrixFile = MatrixFile(bytes: file.bytes, name: file.path);
final uploadResp =
await SimpleDialogs(context).tryRequestWithLoadingDialog(
Matrix.of(context)
.client
.api
.upload(matrixFile.bytes, matrixFile.name),
Matrix.of(context).client.upload(matrixFile.bytes, matrixFile.name),
);
setState(() {
widget.controller.text = uploadResp;

View File

@ -49,7 +49,7 @@ class _SignUpState extends State<SignUp> {
usernameController.text.toLowerCase().replaceAll(' ', '-');
try {
await matrix.client.api.usernameAvailable(preferredUsername);
await matrix.client.usernameAvailable(preferredUsername);
} on MatrixException catch (exception) {
setState(() => usernameError = exception.errorMessage);
return setState(() => loading = false);
@ -75,7 +75,6 @@ class _SignUpState extends State<SignUp> {
title: Text(
Matrix.of(context)
.client
.api
.homeserver
.toString()
.replaceFirst('https://', ''),

View File

@ -92,7 +92,8 @@ class _SignUpPasswordState extends State<SignUpPassword> {
await matrix.client.onLoginStateChanged.stream
.firstWhere((l) => l == LoginState.logged);
try {
await matrix.client.setDisplayname(widget.displayname);
await matrix.client
.setDisplayname(matrix.client.userID, widget.displayname);
} catch (exception) {
BotToast.showText(text: L10n.of(context).couldNotSetDisplayname);
}

View File

@ -180,8 +180,8 @@ packages:
dependency: "direct main"
description:
path: "."
ref: "574fe27101bb03c8c18c776e98f7f44668e6d159"
resolved-ref: "574fe27101bb03c8c18c776e98f7f44668e6d159"
ref: "50d97ebeb224dcbfa8e306b8cb50adcaee12d4db"
resolved-ref: "50d97ebeb224dcbfa8e306b8cb50adcaee12d4db"
url: "https://gitlab.com/famedly/famedlysdk.git"
source: git
version: "0.0.1"

View File

@ -27,7 +27,7 @@ dependencies:
famedlysdk:
git:
url: https://gitlab.com/famedly/famedlysdk.git
ref: 574fe27101bb03c8c18c776e98f7f44668e6d159
ref: 50d97ebeb224dcbfa8e306b8cb50adcaee12d4db
localstorage: ^3.0.1+4
bubble: ^1.1.9+1