Add code formatting

This commit is contained in:
Christian Pauly 2020-05-22 12:21:16 +02:00
parent 95b1e9566b
commit 7ffb875d67
14 changed files with 2063 additions and 1352 deletions

View File

@ -12,6 +12,7 @@ code_analyze:
stage: coverage stage: coverage
dependencies: [] dependencies: []
script: script:
- flutter format lib/ test/ test_driver/ --set-exit-if-changed
- flutter analyze - flutter analyze
test: test:

View File

@ -12,20 +12,26 @@ class HtmlMessage extends StatelessWidget {
final TextStyle defaultTextStyle; final TextStyle defaultTextStyle;
final TextStyle linkStyle; final TextStyle linkStyle;
const HtmlMessage({this.html, this.maxLines, this.room, this.defaultTextStyle, this.linkStyle}); const HtmlMessage(
{this.html,
this.maxLines,
this.room,
this.defaultTextStyle,
this.linkStyle});
@override @override
Widget build(BuildContext context) { Widget build(BuildContext context) {
// there is no need to pre-validate the html, as we validate it while rendering // there is no need to pre-validate the html, as we validate it while rendering
final themeData = Theme.of(context); final themeData = Theme.of(context);
return Html( return Html(
data: html, data: html,
defaultTextStyle: defaultTextStyle, defaultTextStyle: defaultTextStyle,
linkStyle: linkStyle ?? themeData.textTheme.bodyText2.copyWith( linkStyle: linkStyle ??
color: themeData.accentColor, themeData.textTheme.bodyText2.copyWith(
decoration: TextDecoration.underline, color: themeData.accentColor,
), decoration: TextDecoration.underline,
),
shrinkToFit: true, shrinkToFit: true,
maxLines: maxLines, maxLines: maxLines,
onLinkTap: (String url) { onLinkTap: (String url) {
@ -67,11 +73,11 @@ class HtmlMessage extends StatelessWidget {
// we have an alias pill // we have an alias pill
for (final r in room.client.rooms) { for (final r in room.client.rooms) {
final state = r.getState('m.room.canonical_alias'); final state = r.getState('m.room.canonical_alias');
if ( if (state != null &&
state != null && ( ((state.content['alias'] is String &&
(state.content['alias'] is String && state.content['alias'] == identifier) || state.content['alias'] == identifier) ||
(state.content['alt_aliases'] is List && state.content['alt_aliases'].contains(identifier)) (state.content['alt_aliases'] is List &&
)) { state.content['alt_aliases'].contains(identifier)))) {
// we have a room! // we have a room!
return { return {
'displayname': identifier, 'displayname': identifier,

View File

@ -82,10 +82,9 @@ class InputBar extends StatelessWidget {
if (userMatch != null) { if (userMatch != null) {
final userSearch = userMatch[1].toLowerCase(); final userSearch = userMatch[1].toLowerCase();
for (final user in room.getParticipants()) { for (final user in room.getParticipants()) {
if ( if ((user.displayName != null &&
(user.displayName != null && user.displayName.toLowerCase().contains(userSearch)) || user.displayName.toLowerCase().contains(userSearch)) ||
user.id.split(':')[0].toLowerCase().contains(userSearch) user.id.split(':')[0].toLowerCase().contains(userSearch)) {
) {
ret.add({ ret.add({
'type': 'user', 'type': 'user',
'mxid': user.id, 'mxid': user.id,
@ -103,15 +102,23 @@ class InputBar extends StatelessWidget {
final roomSearch = roomMatch[1].toLowerCase(); final roomSearch = roomMatch[1].toLowerCase();
for (final r in room.client.rooms) { for (final r in room.client.rooms) {
final state = r.getState('m.room.canonical_alias'); final state = r.getState('m.room.canonical_alias');
if ( if (state != null &&
state != null && ( ((state.content['alias'] is String &&
(state.content['alias'] is String && state.content['alias'].split(':')[0].toLowerCase().contains(roomSearch)) || state.content['alias']
(state.content['alt_aliases'] is List && state.content['alt_aliases'].any((l) => l is String && l.split(':')[0].toLowerCase().contains(roomSearch))) || .split(':')[0]
(room.name != null && room.name.toLowerCase().contains(roomSearch)) .toLowerCase()
)) { .contains(roomSearch)) ||
(state.content['alt_aliases'] is List &&
state.content['alt_aliases'].any((l) =>
l is String &&
l.split(':')[0].toLowerCase().contains(roomSearch))) ||
(room.name != null &&
room.name.toLowerCase().contains(roomSearch)))) {
ret.add({ ret.add({
'type': 'room', 'type': 'room',
'mxid': (r.canonicalAlias != null && r.canonicalAlias.isNotEmpty) ? r.canonicalAlias : r.id, 'mxid': (r.canonicalAlias != null && r.canonicalAlias.isNotEmpty)
? r.canonicalAlias
: r.id,
'displayname': r.displayname, 'displayname': r.displayname,
'avatar_url': r.avatar?.toString(), 'avatar_url': r.avatar?.toString(),
}); });
@ -167,7 +174,8 @@ class InputBar extends StatelessWidget {
child: Row( child: Row(
crossAxisAlignment: CrossAxisAlignment.center, crossAxisAlignment: CrossAxisAlignment.center,
children: <Widget>[ children: <Widget>[
Avatar(url, suggestion['displayname'] ?? suggestion['mxid'], size: size), Avatar(url, suggestion['displayname'] ?? suggestion['mxid'],
size: size),
SizedBox(width: 6), SizedBox(width: 6),
Text(suggestion['displayname'] ?? suggestion['mxid']), Text(suggestion['displayname'] ?? suggestion['mxid']),
], ],
@ -182,8 +190,8 @@ class InputBar extends StatelessWidget {
controller.text.substring(0, controller.selection.baseOffset); controller.text.substring(0, controller.selection.baseOffset);
var startText = ''; var startText = '';
final afterText = replaceText == controller.text final afterText = replaceText == controller.text
? '' ? ''
: controller.text.substring(controller.selection.baseOffset + 1); : controller.text.substring(controller.selection.baseOffset + 1);
var insertText = ''; var insertText = '';
if (suggestion['type'] == 'emote') { if (suggestion['type'] == 'emote') {
var isUnique = true; var isUnique = true;
@ -204,8 +212,10 @@ class InputBar extends StatelessWidget {
break; break;
} }
} }
insertText = insertText = (isUnique
(isUnique ? insertEmote : ':${insertPack}~${insertEmote.substring(1)}') + ' '; ? insertEmote
: ':${insertPack}~${insertEmote.substring(1)}') +
' ';
startText = replaceText.replaceAllMapped( startText = replaceText.replaceAllMapped(
RegExp(r'(\s|^)(:(?:[-\w]+~)?[-\w]+)$'), RegExp(r'(\s|^)(:(?:[-\w]+~)?[-\w]+)$'),
(Match m) => '${m[1]}${insertText}', (Match m) => '${m[1]}${insertText}',

View File

@ -31,8 +31,8 @@ class ReplyContent extends StatelessWidget {
html: html, html: html,
defaultTextStyle: TextStyle( defaultTextStyle: TextStyle(
color: lightText color: lightText
? Colors.white ? Colors.white
: Theme.of(context).textTheme.bodyText2.color, : Theme.of(context).textTheme.bodyText2.color,
fontSize: DefaultTextStyle.of(context).style.fontSize, fontSize: DefaultTextStyle.of(context).style.fontSize,
), ),
maxLines: 1, maxLines: 1,
@ -50,8 +50,8 @@ class ReplyContent extends StatelessWidget {
maxLines: 1, maxLines: 1,
style: TextStyle( style: TextStyle(
color: lightText color: lightText
? Colors.white ? Colors.white
: Theme.of(context).textTheme.bodyText2.color, : Theme.of(context).textTheme.bodyText2.color,
fontSize: DefaultTextStyle.of(context).style.fontSize, fontSize: DefaultTextStyle.of(context).style.fontSize,
), ),
); );

View File

@ -50,9 +50,8 @@ MessageLookupByLibrary _findExact(String localeName) {
/// User programs should call this before using [localeName] for messages. /// User programs should call this before using [localeName] for messages.
Future<bool> initializeMessages(String localeName) async { Future<bool> initializeMessages(String localeName) async {
var availableLocale = Intl.verifiedLocale( var availableLocale = Intl.verifiedLocale(
localeName, localeName, (locale) => _deferredLibraries[locale] != null,
(locale) => _deferredLibraries[locale] != null, onFailure: (_) => null);
onFailure: (_) => null);
if (availableLocale == null) { if (availableLocale == null) {
return new Future.value(false); return new Future.value(false);
} }
@ -72,8 +71,8 @@ bool _messagesExistFor(String locale) {
} }
MessageLookupByLibrary _findGeneratedMessagesFor(String locale) { MessageLookupByLibrary _findGeneratedMessagesFor(String locale) {
var actualLocale = Intl.verifiedLocale(locale, _messagesExistFor, var actualLocale =
onFailure: (_) => null); Intl.verifiedLocale(locale, _messagesExistFor, onFailure: (_) => null);
if (actualLocale == null) return null; if (actualLocale == null) return null;
return _findExact(actualLocale); return _findExact(actualLocale);
} }

View File

@ -21,7 +21,8 @@ class MessageLookup extends MessageLookupByLibrary {
static m0(username) => "${username} hat die Einladung akzeptiert"; static m0(username) => "${username} hat die Einladung akzeptiert";
static m1(username) => "${username} hat Ende-zu-Ende Verschlüsselung aktiviert"; static m1(username) =>
"${username} hat Ende-zu-Ende Verschlüsselung aktiviert";
static m2(username, targetName) => "${username} hat ${targetName} verbannt"; static m2(username, targetName) => "${username} hat ${targetName} verbannt";
@ -29,25 +30,32 @@ class MessageLookup extends MessageLookupByLibrary {
static m4(username) => "${username} hat den Chat-Avatar geändert"; static m4(username) => "${username} hat den Chat-Avatar geändert";
static m5(username, description) => "${username} hat die Beschreibung vom Chat geändert zu: \'${description}\'"; static m5(username, description) =>
"${username} hat die Beschreibung vom Chat geändert zu: \'${description}\'";
static m6(username, chatname) => "${username} hat den Chat-Namen geändert zu: \'${chatname}\'"; static m6(username, chatname) =>
"${username} hat den Chat-Namen geändert zu: \'${chatname}\'";
static m7(username) => "${username} hat die Berechtigungen vom Chat geändert"; static m7(username) => "${username} hat die Berechtigungen vom Chat geändert";
static m8(username, displayname) => "${username} hat den Nicknamen geändert zu: ${displayname}"; static m8(username, displayname) =>
"${username} hat den Nicknamen geändert zu: ${displayname}";
static m9(username) => "${username} hat Gast-Zugangsregeln geändert"; static m9(username) => "${username} hat Gast-Zugangsregeln geändert";
static m10(username, rules) => "${username} hat Gast-Zugangsregeln geändert zu: ${rules}"; static m10(username, rules) =>
"${username} hat Gast-Zugangsregeln geändert zu: ${rules}";
static m11(username) => "${username} hat die Sichtbarkeit des Chat-Verlaufs geändert"; static m11(username) =>
"${username} hat die Sichtbarkeit des Chat-Verlaufs geändert";
static m12(username, rules) => "${username} hat die Sichtbarkeit des Chat-Verlaufs geändert zu: ${rules}"; static m12(username, rules) =>
"${username} hat die Sichtbarkeit des Chat-Verlaufs geändert zu: ${rules}";
static m13(username) => "${username} hat die Zugangsregeln geändert"; static m13(username) => "${username} hat die Zugangsregeln geändert";
static m14(username, joinRules) => "${username} hat die Zugangsregeln geändert zu: ${joinRules}"; static m14(username, joinRules) =>
"${username} hat die Zugangsregeln geändert zu: ${joinRules}";
static m15(username) => "${username} hat das Profilbild geändert"; static m15(username) => "${username} hat das Profilbild geändert";
@ -69,19 +77,24 @@ class MessageLookup extends MessageLookupByLibrary {
static m24(displayname) => "Gruppe mit ${displayname}"; static m24(displayname) => "Gruppe mit ${displayname}";
static m25(username, targetName) => "${username} hat die Einladung für ${targetName} zurückgezogen"; static m25(username, targetName) =>
"${username} hat die Einladung für ${targetName} zurückgezogen";
static m26(groupName) => "Kontakt zu ${groupName} einladen"; static m26(groupName) => "Kontakt zu ${groupName} einladen";
static m27(username, link) => "${username} hat Dich zu FluffyChat eingeladen. \n1. Installiere FluffyChat: http://fluffy.chat \n2. Melde Dich in der App an \n3. Öffne den Einladungslink: ${link}"; static m27(username, link) =>
"${username} hat Dich zu FluffyChat eingeladen. \n1. Installiere FluffyChat: http://fluffy.chat \n2. Melde Dich in der App an \n3. Öffne den Einladungslink: ${link}";
static m28(username, targetName) => "${username} hat ${targetName} eingeladen"; static m28(username, targetName) =>
"${username} hat ${targetName} eingeladen";
static m29(username) => "${username} ist dem Chat beigetreten"; static m29(username) => "${username} ist dem Chat beigetreten";
static m30(username, targetName) => "${username} hat ${targetName} hinausgeworfen"; static m30(username, targetName) =>
"${username} hat ${targetName} hinausgeworfen";
static m31(username, targetName) => "${username} hat ${targetName} hinausgeworfen und verbannt"; static m31(username, targetName) =>
"${username} hat ${targetName} hinausgeworfen und verbannt";
static m32(localizedTimeShort) => "Zuletzt gesehen: ${localizedTimeShort}"; static m32(localizedTimeShort) => "Zuletzt gesehen: ${localizedTimeShort}";
@ -119,7 +132,8 @@ class MessageLookup extends MessageLookupByLibrary {
static m49(hours12, hours24, minutes, suffix) => "${hours24}:${minutes}"; static m49(hours12, hours24, minutes, suffix) => "${hours24}:${minutes}";
static m50(username, targetName) => "${username} hat die Verbannung von ${targetName} aufgehoben"; static m50(username, targetName) =>
"${username} hat die Verbannung von ${targetName} aufgehoben";
static m51(type) => "Unbekanntes Event \'${type}\'"; static m51(type) => "Unbekanntes Event \'${type}\'";
@ -127,11 +141,14 @@ class MessageLookup extends MessageLookupByLibrary {
static m53(unreadEvents) => "${unreadEvents} ungelesene Nachrichten"; static m53(unreadEvents) => "${unreadEvents} ungelesene Nachrichten";
static m54(unreadEvents, unreadChats) => "${unreadEvents} ungelesene Nachrichten in ${unreadChats} Chats"; static m54(unreadEvents, unreadChats) =>
"${unreadEvents} ungelesene Nachrichten in ${unreadChats} Chats";
static m55(username, count) => "${username} und ${count} andere schreiben ..."; static m55(username, count) =>
"${username} und ${count} andere schreiben ...";
static m56(username, username2) => "${username} und ${username2} schreiben ..."; static m56(username, username2) =>
"${username} und ${username2} schreiben ...";
static m57(username) => "${username} schreibt ..."; static m57(username) => "${username} schreibt ...";
@ -140,252 +157,376 @@ class MessageLookup extends MessageLookupByLibrary {
static m59(username, type) => "${username} hat ${type} Event gesendet"; static m59(username, type) => "${username} hat ${type} Event gesendet";
final messages = _notInlinedMessages(_notInlinedMessages); final messages = _notInlinedMessages(_notInlinedMessages);
static _notInlinedMessages(_) => <String, Function> { static _notInlinedMessages(_) => <String, Function>{
"(Optional) Group name" : MessageLookupByLibrary.simpleMessage("(Optional) Name für die Gruppe"), "(Optional) Group name": MessageLookupByLibrary.simpleMessage(
"About" : MessageLookupByLibrary.simpleMessage("Über"), "(Optional) Name für die Gruppe"),
"Account" : MessageLookupByLibrary.simpleMessage("Konto"), "About": MessageLookupByLibrary.simpleMessage("Über"),
"Account informations" : MessageLookupByLibrary.simpleMessage("Kontoinformationen"), "Account": MessageLookupByLibrary.simpleMessage("Konto"),
"Add a group description" : MessageLookupByLibrary.simpleMessage("Eine Beschreibung für die Gruppe hinzufügen"), "Account informations":
"Admin" : MessageLookupByLibrary.simpleMessage("Admin"), MessageLookupByLibrary.simpleMessage("Kontoinformationen"),
"Already have an account?" : MessageLookupByLibrary.simpleMessage("Hast du schon einen Account?"), "Add a group description": MessageLookupByLibrary.simpleMessage(
"Anyone can join" : MessageLookupByLibrary.simpleMessage("Jeder darf beitreten"), "Eine Beschreibung für die Gruppe hinzufügen"),
"Archive" : MessageLookupByLibrary.simpleMessage("Archiv"), "Admin": MessageLookupByLibrary.simpleMessage("Admin"),
"Archived Room" : MessageLookupByLibrary.simpleMessage("Archivierter Raum"), "Already have an account?": MessageLookupByLibrary.simpleMessage(
"Are guest users allowed to join" : MessageLookupByLibrary.simpleMessage("Dürfen Gast-Benutzer beitreten"), "Hast du schon einen Account?"),
"Are you sure?" : MessageLookupByLibrary.simpleMessage("Bist Du sicher?"), "Anyone can join":
"Authentication" : MessageLookupByLibrary.simpleMessage("Authentifizierung"), MessageLookupByLibrary.simpleMessage("Jeder darf beitreten"),
"Avatar has been changed" : MessageLookupByLibrary.simpleMessage("Avatar wurde geändert"), "Archive": MessageLookupByLibrary.simpleMessage("Archiv"),
"Ban from chat" : MessageLookupByLibrary.simpleMessage("Aus dem Chat verbannen"), "Archived Room":
"Banned" : MessageLookupByLibrary.simpleMessage("Banned"), MessageLookupByLibrary.simpleMessage("Archivierter Raum"),
"Cancel" : MessageLookupByLibrary.simpleMessage("Abbrechen"), "Are guest users allowed to join": MessageLookupByLibrary.simpleMessage(
"Change the homeserver" : MessageLookupByLibrary.simpleMessage("Anderen Homeserver verwenden"), "Dürfen Gast-Benutzer beitreten"),
"Change the name of the group" : MessageLookupByLibrary.simpleMessage("Gruppenname ändern"), "Are you sure?":
"Change the server" : MessageLookupByLibrary.simpleMessage("Ändere den Server"), MessageLookupByLibrary.simpleMessage("Bist Du sicher?"),
"Change wallpaper" : MessageLookupByLibrary.simpleMessage("Hintergrund ändern"), "Authentication":
"Change your style" : MessageLookupByLibrary.simpleMessage("Ändere Deinen Style"), MessageLookupByLibrary.simpleMessage("Authentifizierung"),
"Changelog" : MessageLookupByLibrary.simpleMessage("Changelog"), "Avatar has been changed":
"Chat" : MessageLookupByLibrary.simpleMessage("Chat"), MessageLookupByLibrary.simpleMessage("Avatar wurde geändert"),
"Chat details" : MessageLookupByLibrary.simpleMessage("Gruppeninfo"), "Ban from chat":
"Choose a strong password" : MessageLookupByLibrary.simpleMessage("Wähle ein sicheres Passwort"), MessageLookupByLibrary.simpleMessage("Aus dem Chat verbannen"),
"Choose a username" : MessageLookupByLibrary.simpleMessage("Wähle einen Benutzernamen"), "Banned": MessageLookupByLibrary.simpleMessage("Banned"),
"Close" : MessageLookupByLibrary.simpleMessage("Schließen"), "Cancel": MessageLookupByLibrary.simpleMessage("Abbrechen"),
"Confirm" : MessageLookupByLibrary.simpleMessage("Bestätigen"), "Change the homeserver": MessageLookupByLibrary.simpleMessage(
"Connect" : MessageLookupByLibrary.simpleMessage("Verbinden"), "Anderen Homeserver verwenden"),
"Connection attempt failed" : MessageLookupByLibrary.simpleMessage("Verbindungsversuch fehlgeschlagen"), "Change the name of the group":
"Contact has been invited to the group" : MessageLookupByLibrary.simpleMessage("Kontakt wurde in die Gruppe eingeladen"), MessageLookupByLibrary.simpleMessage("Gruppenname ändern"),
"Content viewer" : MessageLookupByLibrary.simpleMessage("Content Viewer"), "Change the server":
"Copied to clipboard" : MessageLookupByLibrary.simpleMessage("Wurde in die Zwischenablage kopiert"), MessageLookupByLibrary.simpleMessage("Ändere den Server"),
"Copy" : MessageLookupByLibrary.simpleMessage("Kopieren"), "Change wallpaper":
"Could not set avatar" : MessageLookupByLibrary.simpleMessage("Profilbild konnte nicht gesetzt werden"), MessageLookupByLibrary.simpleMessage("Hintergrund ändern"),
"Could not set displayname" : MessageLookupByLibrary.simpleMessage("Anzeigename konnte nicht gesetzt werden"), "Change your style":
"Create" : MessageLookupByLibrary.simpleMessage("Create"), MessageLookupByLibrary.simpleMessage("Ändere Deinen Style"),
"Create account now" : MessageLookupByLibrary.simpleMessage("Account jetzt erstellen"), "Changelog": MessageLookupByLibrary.simpleMessage("Changelog"),
"Create new group" : MessageLookupByLibrary.simpleMessage("Neue Gruppe"), "Chat": MessageLookupByLibrary.simpleMessage("Chat"),
"Currenlty active" : MessageLookupByLibrary.simpleMessage("Jetzt gerade online"), "Chat details": MessageLookupByLibrary.simpleMessage("Gruppeninfo"),
"Dark" : MessageLookupByLibrary.simpleMessage("Dunkel"), "Choose a strong password":
"Delete" : MessageLookupByLibrary.simpleMessage("Löschen"), MessageLookupByLibrary.simpleMessage("Wähle ein sicheres Passwort"),
"Delete message" : MessageLookupByLibrary.simpleMessage("Nachricht löschen"), "Choose a username":
"Deny" : MessageLookupByLibrary.simpleMessage("Ablehnen"), MessageLookupByLibrary.simpleMessage("Wähle einen Benutzernamen"),
"Device" : MessageLookupByLibrary.simpleMessage("Gerät"), "Close": MessageLookupByLibrary.simpleMessage("Schließen"),
"Devices" : MessageLookupByLibrary.simpleMessage("Geräte"), "Confirm": MessageLookupByLibrary.simpleMessage("Bestätigen"),
"Discard picture" : MessageLookupByLibrary.simpleMessage("Bild verwerfen"), "Connect": MessageLookupByLibrary.simpleMessage("Verbinden"),
"Displayname has been changed" : MessageLookupByLibrary.simpleMessage("Anzeigename wurde geändert"), "Connection attempt failed": MessageLookupByLibrary.simpleMessage(
"Donate" : MessageLookupByLibrary.simpleMessage("Spenden"), "Verbindungsversuch fehlgeschlagen"),
"Download file" : MessageLookupByLibrary.simpleMessage("Datei herunterladen"), "Contact has been invited to the group":
"Edit Jitsi instance" : MessageLookupByLibrary.simpleMessage("Jitsi Instanz ändern"), MessageLookupByLibrary.simpleMessage(
"Edit displayname" : MessageLookupByLibrary.simpleMessage("Anzeigename ändern"), "Kontakt wurde in die Gruppe eingeladen"),
"Emote Settings" : MessageLookupByLibrary.simpleMessage("Emote Einstellungen"), "Content viewer":
"Emote shortcode" : MessageLookupByLibrary.simpleMessage("Emote kürzel"), MessageLookupByLibrary.simpleMessage("Content Viewer"),
"Empty chat" : MessageLookupByLibrary.simpleMessage("Leerer Chat"), "Copied to clipboard": MessageLookupByLibrary.simpleMessage(
"Encryption algorithm" : MessageLookupByLibrary.simpleMessage("Verschlüsselungsalgorithmus"), "Wurde in die Zwischenablage kopiert"),
"Encryption is not enabled" : MessageLookupByLibrary.simpleMessage("Verschlüsselung ist nicht aktiviert"), "Copy": MessageLookupByLibrary.simpleMessage("Kopieren"),
"End to end encryption is currently in Beta! Use at your own risk!" : MessageLookupByLibrary.simpleMessage("Ende-zu-Ende-Verschlüsselung ist im Beta-Status. Benutzung auf eigene Gefahr!"), "Could not set avatar": MessageLookupByLibrary.simpleMessage(
"End-to-end encryption settings" : MessageLookupByLibrary.simpleMessage("Ende-zu-Ende-Verschlüsselung"), "Profilbild konnte nicht gesetzt werden"),
"Enter a group name" : MessageLookupByLibrary.simpleMessage("Gib einen Gruppennamen ein"), "Could not set displayname": MessageLookupByLibrary.simpleMessage(
"Enter a username" : MessageLookupByLibrary.simpleMessage("Gib einen Benutzernamen ein"), "Anzeigename konnte nicht gesetzt werden"),
"Enter your homeserver" : MessageLookupByLibrary.simpleMessage("Gib Deinen Homeserver ein"), "Create": MessageLookupByLibrary.simpleMessage("Create"),
"File name" : MessageLookupByLibrary.simpleMessage("Dateiname"), "Create account now":
"File size" : MessageLookupByLibrary.simpleMessage("Dateigröße"), MessageLookupByLibrary.simpleMessage("Account jetzt erstellen"),
"FluffyChat" : MessageLookupByLibrary.simpleMessage("FluffyChat"), "Create new group": MessageLookupByLibrary.simpleMessage("Neue Gruppe"),
"Forward" : MessageLookupByLibrary.simpleMessage("Weiterleiten"), "Currenlty active":
"Friday" : MessageLookupByLibrary.simpleMessage("Freitag"), MessageLookupByLibrary.simpleMessage("Jetzt gerade online"),
"From joining" : MessageLookupByLibrary.simpleMessage("Ab dem Beitritt"), "Dark": MessageLookupByLibrary.simpleMessage("Dunkel"),
"From the invitation" : MessageLookupByLibrary.simpleMessage("Ab der Einladung"), "Delete": MessageLookupByLibrary.simpleMessage("Löschen"),
"Group" : MessageLookupByLibrary.simpleMessage("Gruppe"), "Delete message":
"Group description" : MessageLookupByLibrary.simpleMessage("Gruppenbeschreibung"), MessageLookupByLibrary.simpleMessage("Nachricht löschen"),
"Group description has been changed" : MessageLookupByLibrary.simpleMessage("Gruppenbeschreibung wurde geändert"), "Deny": MessageLookupByLibrary.simpleMessage("Ablehnen"),
"Group is public" : MessageLookupByLibrary.simpleMessage("Öffentliche Gruppe"), "Device": MessageLookupByLibrary.simpleMessage("Gerät"),
"Guests are forbidden" : MessageLookupByLibrary.simpleMessage("Gäste sind verboten"), "Devices": MessageLookupByLibrary.simpleMessage("Geräte"),
"Guests can join" : MessageLookupByLibrary.simpleMessage("Gäste dürfen beitreten"), "Discard picture":
"Help" : MessageLookupByLibrary.simpleMessage("Hilfe"), MessageLookupByLibrary.simpleMessage("Bild verwerfen"),
"Homeserver is not compatible" : MessageLookupByLibrary.simpleMessage("Homeserver ist nicht kompatibel"), "Displayname has been changed":
"ID" : MessageLookupByLibrary.simpleMessage("ID"), MessageLookupByLibrary.simpleMessage("Anzeigename wurde geändert"),
"Identity" : MessageLookupByLibrary.simpleMessage("Identität"), "Donate": MessageLookupByLibrary.simpleMessage("Spenden"),
"Invite contact" : MessageLookupByLibrary.simpleMessage("Kontakt einladen"), "Download file":
"Invited" : MessageLookupByLibrary.simpleMessage("Eingeladen"), MessageLookupByLibrary.simpleMessage("Datei herunterladen"),
"Invited users only" : MessageLookupByLibrary.simpleMessage("Nur eingeladene Benutzer"), "Edit Jitsi instance":
"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/"), MessageLookupByLibrary.simpleMessage("Jitsi Instanz ändern"),
"Kick from chat" : MessageLookupByLibrary.simpleMessage("Aus dem Chat hinauswerfen"), "Edit displayname":
"Last seen IP" : MessageLookupByLibrary.simpleMessage("Zuletzt bekannte IP"), MessageLookupByLibrary.simpleMessage("Anzeigename ändern"),
"Leave" : MessageLookupByLibrary.simpleMessage("Verlassen"), "Emote Settings":
"Left the chat" : MessageLookupByLibrary.simpleMessage("Hat den Chat verlassen"), MessageLookupByLibrary.simpleMessage("Emote Einstellungen"),
"License" : MessageLookupByLibrary.simpleMessage("Lizenz"), "Emote shortcode": MessageLookupByLibrary.simpleMessage("Emote kürzel"),
"Light" : MessageLookupByLibrary.simpleMessage("Hell"), "Empty chat": MessageLookupByLibrary.simpleMessage("Leerer Chat"),
"Load more..." : MessageLookupByLibrary.simpleMessage("Lade mehr ..."), "Encryption algorithm":
"Loading... Please wait" : MessageLookupByLibrary.simpleMessage("Lade ... Bitte warten"), MessageLookupByLibrary.simpleMessage("Verschlüsselungsalgorithmus"),
"Login" : MessageLookupByLibrary.simpleMessage("Login"), "Encryption is not enabled": MessageLookupByLibrary.simpleMessage(
"Logout" : MessageLookupByLibrary.simpleMessage("Logout"), "Verschlüsselung ist nicht aktiviert"),
"Make a moderator" : MessageLookupByLibrary.simpleMessage("Zum Moderator ernennen"), "End to end encryption is currently in Beta! Use at your own risk!":
"Make an admin" : MessageLookupByLibrary.simpleMessage("Zum Admin ernennen"), MessageLookupByLibrary.simpleMessage(
"Make sure the identifier is valid" : MessageLookupByLibrary.simpleMessage("Gib bitte einen richtigen Benutzernamen ein"), "Ende-zu-Ende-Verschlüsselung ist im Beta-Status. Benutzung auf eigene Gefahr!"),
"Message will be removed for all participants" : MessageLookupByLibrary.simpleMessage("Nachricht wird für alle Teilnehmer*innen entfernt"), "End-to-end encryption settings": MessageLookupByLibrary.simpleMessage(
"Moderator" : MessageLookupByLibrary.simpleMessage("Moderator"), "Ende-zu-Ende-Verschlüsselung"),
"Monday" : MessageLookupByLibrary.simpleMessage("Montag"), "Enter a group name":
"Mute chat" : MessageLookupByLibrary.simpleMessage("Stummschalten"), MessageLookupByLibrary.simpleMessage("Gib einen Gruppennamen ein"),
"New message in FluffyChat" : MessageLookupByLibrary.simpleMessage("Neue Nachricht in FluffyChat"), "Enter a username":
"New private chat" : MessageLookupByLibrary.simpleMessage("Neuer privater Chat"), MessageLookupByLibrary.simpleMessage("Gib einen Benutzernamen ein"),
"No emotes found. 😕" : MessageLookupByLibrary.simpleMessage("Keine Emotes gefunden. 😕"), "Enter your homeserver":
"No permission" : MessageLookupByLibrary.simpleMessage("Keine Berechtigung"), MessageLookupByLibrary.simpleMessage("Gib Deinen Homeserver ein"),
"No rooms found..." : MessageLookupByLibrary.simpleMessage("Keine Räume gefunden ..."), "File name": MessageLookupByLibrary.simpleMessage("Dateiname"),
"None" : MessageLookupByLibrary.simpleMessage("Keiner"), "File size": MessageLookupByLibrary.simpleMessage("Dateigröße"),
"Not supported in web" : MessageLookupByLibrary.simpleMessage("Wird in der Web-Version nicht unterstützt"), "FluffyChat": MessageLookupByLibrary.simpleMessage("FluffyChat"),
"Oops something went wrong..." : MessageLookupByLibrary.simpleMessage("Hoppla! Da ist etwas schief gelaufen ..."), "Forward": MessageLookupByLibrary.simpleMessage("Weiterleiten"),
"Open camera" : MessageLookupByLibrary.simpleMessage("Kamera öffnen"), "Friday": MessageLookupByLibrary.simpleMessage("Freitag"),
"Participating user devices" : MessageLookupByLibrary.simpleMessage("Teilnehmende Geräte"), "From joining": MessageLookupByLibrary.simpleMessage("Ab dem Beitritt"),
"Password" : MessageLookupByLibrary.simpleMessage("Passwort"), "From the invitation":
"Pick image" : MessageLookupByLibrary.simpleMessage("Wähle Bild"), MessageLookupByLibrary.simpleMessage("Ab der Einladung"),
"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."), "Group": MessageLookupByLibrary.simpleMessage("Gruppe"),
"Please choose a username" : MessageLookupByLibrary.simpleMessage("Bitte wähle einen Benutzernamen"), "Group description":
"Please enter a matrix identifier" : MessageLookupByLibrary.simpleMessage("Bitte eine Matrix ID eingeben"), MessageLookupByLibrary.simpleMessage("Gruppenbeschreibung"),
"Please enter your password" : MessageLookupByLibrary.simpleMessage("Bitte dein Passwort eingeben"), "Group description has been changed":
"Please enter your username" : MessageLookupByLibrary.simpleMessage("Bitte deinen Benutzernamen eingeben"), MessageLookupByLibrary.simpleMessage(
"Public Rooms" : MessageLookupByLibrary.simpleMessage("Öffentliche Räume"), "Gruppenbeschreibung wurde geändert"),
"Recording" : MessageLookupByLibrary.simpleMessage("Aufnahme"), "Group is public":
"Rejoin" : MessageLookupByLibrary.simpleMessage("Wieder beitreten"), MessageLookupByLibrary.simpleMessage("Öffentliche Gruppe"),
"Remove" : MessageLookupByLibrary.simpleMessage("Entfernen"), "Guests are forbidden":
"Remove all other devices" : MessageLookupByLibrary.simpleMessage("Alle anderen Geräte entfernen"), MessageLookupByLibrary.simpleMessage("Gäste sind verboten"),
"Remove device" : MessageLookupByLibrary.simpleMessage("Gerät entfernen"), "Guests can join":
"Remove exile" : MessageLookupByLibrary.simpleMessage("Verbannung aufheben"), MessageLookupByLibrary.simpleMessage("Gäste dürfen beitreten"),
"Remove message" : MessageLookupByLibrary.simpleMessage("Nachricht entfernen"), "Help": MessageLookupByLibrary.simpleMessage("Hilfe"),
"Render rich message content" : MessageLookupByLibrary.simpleMessage("Zeige Nachrichtenformatierungen an"), "Homeserver is not compatible": MessageLookupByLibrary.simpleMessage(
"Reply" : MessageLookupByLibrary.simpleMessage("Antworten"), "Homeserver ist nicht kompatibel"),
"Request permission" : MessageLookupByLibrary.simpleMessage("Berechtigung anfragen"), "ID": MessageLookupByLibrary.simpleMessage("ID"),
"Request to read older messages" : MessageLookupByLibrary.simpleMessage("Anfrage um ältere Nachrichten zu lesen"), "Identity": MessageLookupByLibrary.simpleMessage("Identität"),
"Revoke all permissions" : MessageLookupByLibrary.simpleMessage("Alle Berechtigungen zurücknehmen"), "Invite contact":
"Saturday" : MessageLookupByLibrary.simpleMessage("Samstag"), MessageLookupByLibrary.simpleMessage("Kontakt einladen"),
"Search for a chat" : MessageLookupByLibrary.simpleMessage("Durchsuche die Chats"), "Invited": MessageLookupByLibrary.simpleMessage("Eingeladen"),
"Seen a long time ago" : MessageLookupByLibrary.simpleMessage("Vor sehr langer Zeit gesehen"), "Invited users only":
"Send" : MessageLookupByLibrary.simpleMessage("Senden"), MessageLookupByLibrary.simpleMessage("Nur eingeladene Benutzer"),
"Send a message" : MessageLookupByLibrary.simpleMessage("Nachricht schreiben"), "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/":
"Send file" : MessageLookupByLibrary.simpleMessage("Datei senden"), MessageLookupByLibrary.simpleMessage(
"Send image" : MessageLookupByLibrary.simpleMessage("Bild senden"), "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/"),
"Set a profile picture" : MessageLookupByLibrary.simpleMessage("Ein Profilbild festlegen"), "Kick from chat":
"Set group description" : MessageLookupByLibrary.simpleMessage("Gruppenbeschreibung festlegen"), MessageLookupByLibrary.simpleMessage("Aus dem Chat hinauswerfen"),
"Set invitation link" : MessageLookupByLibrary.simpleMessage("Einladungslink festlegen"), "Last seen IP":
"Set status" : MessageLookupByLibrary.simpleMessage("Status ändern"), MessageLookupByLibrary.simpleMessage("Zuletzt bekannte IP"),
"Settings" : MessageLookupByLibrary.simpleMessage("Einstellungen"), "Leave": MessageLookupByLibrary.simpleMessage("Verlassen"),
"Share" : MessageLookupByLibrary.simpleMessage("Teilen"), "Left the chat":
"Sign up" : MessageLookupByLibrary.simpleMessage("Registrieren"), MessageLookupByLibrary.simpleMessage("Hat den Chat verlassen"),
"Source code" : MessageLookupByLibrary.simpleMessage("Quellcode"), "License": MessageLookupByLibrary.simpleMessage("Lizenz"),
"Start your first chat :-)" : MessageLookupByLibrary.simpleMessage("Starte deinen ersten Chat :-)"), "Light": MessageLookupByLibrary.simpleMessage("Hell"),
"Sunday" : MessageLookupByLibrary.simpleMessage("Sonntag"), "Load more...": MessageLookupByLibrary.simpleMessage("Lade mehr ..."),
"System" : MessageLookupByLibrary.simpleMessage("System"), "Loading... Please wait":
"Tap to show menu" : MessageLookupByLibrary.simpleMessage("Tippen, um das Menü anzuzeigen"), MessageLookupByLibrary.simpleMessage("Lade ... Bitte warten"),
"The encryption has been corrupted" : MessageLookupByLibrary.simpleMessage("Die Verschlüsselung wurde korrumpiert"), "Login": MessageLookupByLibrary.simpleMessage("Login"),
"This room has been archived." : MessageLookupByLibrary.simpleMessage("Dieser Raum wurde archiviert."), "Logout": MessageLookupByLibrary.simpleMessage("Logout"),
"Thursday" : MessageLookupByLibrary.simpleMessage("Donnerstag"), "Make a moderator":
"Try to send again" : MessageLookupByLibrary.simpleMessage("Nochmal versuchen zu senden"), MessageLookupByLibrary.simpleMessage("Zum Moderator ernennen"),
"Tuesday" : MessageLookupByLibrary.simpleMessage("Dienstag"), "Make an admin":
"Unknown device" : MessageLookupByLibrary.simpleMessage("Unbekanntes Gerät"), MessageLookupByLibrary.simpleMessage("Zum Admin ernennen"),
"Unknown encryption algorithm" : MessageLookupByLibrary.simpleMessage("Unbekannter Verschlüsselungsalgorithmus"), "Make sure the identifier is valid":
"Unmute chat" : MessageLookupByLibrary.simpleMessage("Stumm aus"), MessageLookupByLibrary.simpleMessage(
"Use Amoled compatible colors?" : MessageLookupByLibrary.simpleMessage("Amoled optimierte Farben verwenden?"), "Gib bitte einen richtigen Benutzernamen ein"),
"Username" : MessageLookupByLibrary.simpleMessage("Benutzername"), "Message will be removed for all participants":
"Verify" : MessageLookupByLibrary.simpleMessage("Bestätigen"), MessageLookupByLibrary.simpleMessage(
"Video call" : MessageLookupByLibrary.simpleMessage("Videoanruf"), "Nachricht wird für alle Teilnehmer*innen entfernt"),
"Visibility of the chat history" : MessageLookupByLibrary.simpleMessage("Sichtbarkeit des Chat-Verlaufs"), "Moderator": MessageLookupByLibrary.simpleMessage("Moderator"),
"Visible for all participants" : MessageLookupByLibrary.simpleMessage("Sichtbar für alle Teilnehmer*innen"), "Monday": MessageLookupByLibrary.simpleMessage("Montag"),
"Visible for everyone" : MessageLookupByLibrary.simpleMessage("Für jeden sichtbar"), "Mute chat": MessageLookupByLibrary.simpleMessage("Stummschalten"),
"Voice message" : MessageLookupByLibrary.simpleMessage("Sprachnachricht"), "New message in FluffyChat": MessageLookupByLibrary.simpleMessage(
"Wallpaper" : MessageLookupByLibrary.simpleMessage("Hintergrund"), "Neue Nachricht in FluffyChat"),
"Wednesday" : MessageLookupByLibrary.simpleMessage("Mittwoch"), "New private chat":
"Welcome to the cutest instant messenger in the matrix network." : MessageLookupByLibrary.simpleMessage("Herzlich willkommen beim knuffigsten Instant Messenger im Matrix-Netwerk."), MessageLookupByLibrary.simpleMessage("Neuer privater Chat"),
"Who is allowed to join this group" : MessageLookupByLibrary.simpleMessage("Wer darf der Gruppe beitreten"), "No emotes found. 😕":
"Write a message..." : MessageLookupByLibrary.simpleMessage("Schreibe eine Nachricht ..."), MessageLookupByLibrary.simpleMessage("Keine Emotes gefunden. 😕"),
"Yes" : MessageLookupByLibrary.simpleMessage("Ja"), "No permission":
"You" : MessageLookupByLibrary.simpleMessage("Du"), MessageLookupByLibrary.simpleMessage("Keine Berechtigung"),
"You are invited to this chat" : MessageLookupByLibrary.simpleMessage("Du wurdest eingeladen in diesen Chat"), "No rooms found...":
"You are no longer participating in this chat" : MessageLookupByLibrary.simpleMessage("Du bist kein Mitglied mehr in diesem Chat"), MessageLookupByLibrary.simpleMessage("Keine Räume gefunden ..."),
"You cannot invite yourself" : MessageLookupByLibrary.simpleMessage("Du kannst dich nicht selbst einladen"), "None": MessageLookupByLibrary.simpleMessage("Keiner"),
"You have been banned from this chat" : MessageLookupByLibrary.simpleMessage("Du wurdest aus dem Chat verbannt"), "Not supported in web": MessageLookupByLibrary.simpleMessage(
"You won\'t be able to disable the encryption anymore. Are you sure?" : MessageLookupByLibrary.simpleMessage("Du wirst die Verschlüsselung nicht mehr ausstellen können. Bist Du sicher?"), "Wird in der Web-Version nicht unterstützt"),
"Your own username" : MessageLookupByLibrary.simpleMessage("Dein eigener Benutzername"), "Oops something went wrong...": MessageLookupByLibrary.simpleMessage(
"acceptedTheInvitation" : m0, "Hoppla! Da ist etwas schief gelaufen ..."),
"activatedEndToEndEncryption" : m1, "Open camera": MessageLookupByLibrary.simpleMessage("Kamera öffnen"),
"alias" : MessageLookupByLibrary.simpleMessage("Alias"), "Participating user devices":
"bannedUser" : m2, MessageLookupByLibrary.simpleMessage("Teilnehmende Geräte"),
"byDefaultYouWillBeConnectedTo" : m3, "Password": MessageLookupByLibrary.simpleMessage("Passwort"),
"changedTheChatAvatar" : m4, "Pick image": MessageLookupByLibrary.simpleMessage("Wähle Bild"),
"changedTheChatDescriptionTo" : m5, "Please be aware that you need Pantalaimon to use end-to-end encryption for now.":
"changedTheChatNameTo" : m6, MessageLookupByLibrary.simpleMessage(
"changedTheChatPermissions" : m7, "Bitte beachte, dass du Pantalaimon brauchst, um Ende-zu-Ende-Verschlüsselung benutzen zu können."),
"changedTheDisplaynameTo" : m8, "Please choose a username": MessageLookupByLibrary.simpleMessage(
"changedTheGuestAccessRules" : m9, "Bitte wähle einen Benutzernamen"),
"changedTheGuestAccessRulesTo" : m10, "Please enter a matrix identifier":
"changedTheHistoryVisibility" : m11, MessageLookupByLibrary.simpleMessage(
"changedTheHistoryVisibilityTo" : m12, "Bitte eine Matrix ID eingeben"),
"changedTheJoinRules" : m13, "Please enter your password": MessageLookupByLibrary.simpleMessage(
"changedTheJoinRulesTo" : m14, "Bitte dein Passwort eingeben"),
"changedTheProfileAvatar" : m15, "Please enter your username": MessageLookupByLibrary.simpleMessage(
"changedTheRoomAliases" : m16, "Bitte deinen Benutzernamen eingeben"),
"changedTheRoomInvitationLink" : m17, "Public Rooms":
"couldNotDecryptMessage" : m18, MessageLookupByLibrary.simpleMessage("Öffentliche Räume"),
"countParticipants" : m19, "Recording": MessageLookupByLibrary.simpleMessage("Aufnahme"),
"createdTheChat" : m20, "Rejoin": MessageLookupByLibrary.simpleMessage("Wieder beitreten"),
"dateAndTimeOfDay" : m21, "Remove": MessageLookupByLibrary.simpleMessage("Entfernen"),
"dateWithYear" : m22, "Remove all other devices": MessageLookupByLibrary.simpleMessage(
"dateWithoutYear" : m23, "Alle anderen Geräte entfernen"),
"emoteExists" : MessageLookupByLibrary.simpleMessage("Emote existiert bereits!"), "Remove device":
"emoteInvalid" : MessageLookupByLibrary.simpleMessage("Ungültiges Emote-kürzel!"), MessageLookupByLibrary.simpleMessage("Gerät entfernen"),
"emoteWarnNeedToPick" : MessageLookupByLibrary.simpleMessage("Wähle ein Emote-kürzel und ein Bild!"), "Remove exile":
"groupWith" : m24, MessageLookupByLibrary.simpleMessage("Verbannung aufheben"),
"hasWithdrawnTheInvitationFor" : m25, "Remove message":
"inviteContactToGroup" : m26, MessageLookupByLibrary.simpleMessage("Nachricht entfernen"),
"inviteText" : m27, "Render rich message content": MessageLookupByLibrary.simpleMessage(
"invitedUser" : m28, "Zeige Nachrichtenformatierungen an"),
"is typing..." : MessageLookupByLibrary.simpleMessage("schreibt..."), "Reply": MessageLookupByLibrary.simpleMessage("Antworten"),
"joinedTheChat" : m29, "Request permission":
"kicked" : m30, MessageLookupByLibrary.simpleMessage("Berechtigung anfragen"),
"kickedAndBanned" : m31, "Request to read older messages": MessageLookupByLibrary.simpleMessage(
"lastActiveAgo" : m32, "Anfrage um ältere Nachrichten zu lesen"),
"loadCountMoreParticipants" : m33, "Revoke all permissions": MessageLookupByLibrary.simpleMessage(
"logInTo" : m34, "Alle Berechtigungen zurücknehmen"),
"numberSelected" : m35, "Saturday": MessageLookupByLibrary.simpleMessage("Samstag"),
"ok" : MessageLookupByLibrary.simpleMessage("ok"), "Search for a chat":
"play" : m36, MessageLookupByLibrary.simpleMessage("Durchsuche die Chats"),
"redactedAnEvent" : m37, "Seen a long time ago": MessageLookupByLibrary.simpleMessage(
"rejectedTheInvitation" : m38, "Vor sehr langer Zeit gesehen"),
"removedBy" : m39, "Send": MessageLookupByLibrary.simpleMessage("Senden"),
"seenByUser" : m40, "Send a message":
"seenByUserAndCountOthers" : m41, MessageLookupByLibrary.simpleMessage("Nachricht schreiben"),
"seenByUserAndUser" : m42, "Send file": MessageLookupByLibrary.simpleMessage("Datei senden"),
"sentAFile" : m43, "Send image": MessageLookupByLibrary.simpleMessage("Bild senden"),
"sentAPicture" : m44, "Set a profile picture":
"sentASticker" : m45, MessageLookupByLibrary.simpleMessage("Ein Profilbild festlegen"),
"sentAVideo" : m46, "Set group description": MessageLookupByLibrary.simpleMessage(
"sentAnAudio" : m47, "Gruppenbeschreibung festlegen"),
"sharedTheLocation" : m48, "Set invitation link":
"timeOfDay" : m49, MessageLookupByLibrary.simpleMessage("Einladungslink festlegen"),
"title" : MessageLookupByLibrary.simpleMessage("FluffyChat"), "Set status": MessageLookupByLibrary.simpleMessage("Status ändern"),
"unbannedUser" : m50, "Settings": MessageLookupByLibrary.simpleMessage("Einstellungen"),
"unknownEvent" : m51, "Share": MessageLookupByLibrary.simpleMessage("Teilen"),
"unreadChats" : m52, "Sign up": MessageLookupByLibrary.simpleMessage("Registrieren"),
"unreadMessages" : m53, "Source code": MessageLookupByLibrary.simpleMessage("Quellcode"),
"unreadMessagesInChats" : m54, "Start your first chat :-)": MessageLookupByLibrary.simpleMessage(
"userAndOthersAreTyping" : m55, "Starte deinen ersten Chat :-)"),
"userAndUserAreTyping" : m56, "Sunday": MessageLookupByLibrary.simpleMessage("Sonntag"),
"userIsTyping" : m57, "System": MessageLookupByLibrary.simpleMessage("System"),
"userLeftTheChat" : m58, "Tap to show menu": MessageLookupByLibrary.simpleMessage(
"userSentUnknownEvent" : m59 "Tippen, um das Menü anzuzeigen"),
}; "The encryption has been corrupted":
MessageLookupByLibrary.simpleMessage(
"Die Verschlüsselung wurde korrumpiert"),
"This room has been archived.": MessageLookupByLibrary.simpleMessage(
"Dieser Raum wurde archiviert."),
"Thursday": MessageLookupByLibrary.simpleMessage("Donnerstag"),
"Try to send again":
MessageLookupByLibrary.simpleMessage("Nochmal versuchen zu senden"),
"Tuesday": MessageLookupByLibrary.simpleMessage("Dienstag"),
"Unknown device":
MessageLookupByLibrary.simpleMessage("Unbekanntes Gerät"),
"Unknown encryption algorithm": MessageLookupByLibrary.simpleMessage(
"Unbekannter Verschlüsselungsalgorithmus"),
"Unmute chat": MessageLookupByLibrary.simpleMessage("Stumm aus"),
"Use Amoled compatible colors?": MessageLookupByLibrary.simpleMessage(
"Amoled optimierte Farben verwenden?"),
"Username": MessageLookupByLibrary.simpleMessage("Benutzername"),
"Verify": MessageLookupByLibrary.simpleMessage("Bestätigen"),
"Video call": MessageLookupByLibrary.simpleMessage("Videoanruf"),
"Visibility of the chat history": MessageLookupByLibrary.simpleMessage(
"Sichtbarkeit des Chat-Verlaufs"),
"Visible for all participants": MessageLookupByLibrary.simpleMessage(
"Sichtbar für alle Teilnehmer*innen"),
"Visible for everyone":
MessageLookupByLibrary.simpleMessage("Für jeden sichtbar"),
"Voice message":
MessageLookupByLibrary.simpleMessage("Sprachnachricht"),
"Wallpaper": MessageLookupByLibrary.simpleMessage("Hintergrund"),
"Wednesday": MessageLookupByLibrary.simpleMessage("Mittwoch"),
"Welcome to the cutest instant messenger in the matrix network.":
MessageLookupByLibrary.simpleMessage(
"Herzlich willkommen beim knuffigsten Instant Messenger im Matrix-Netwerk."),
"Who is allowed to join this group":
MessageLookupByLibrary.simpleMessage(
"Wer darf der Gruppe beitreten"),
"Write a message...":
MessageLookupByLibrary.simpleMessage("Schreibe eine Nachricht ..."),
"Yes": MessageLookupByLibrary.simpleMessage("Ja"),
"You": MessageLookupByLibrary.simpleMessage("Du"),
"You are invited to this chat": MessageLookupByLibrary.simpleMessage(
"Du wurdest eingeladen in diesen Chat"),
"You are no longer participating in this chat":
MessageLookupByLibrary.simpleMessage(
"Du bist kein Mitglied mehr in diesem Chat"),
"You cannot invite yourself": MessageLookupByLibrary.simpleMessage(
"Du kannst dich nicht selbst einladen"),
"You have been banned from this chat":
MessageLookupByLibrary.simpleMessage(
"Du wurdest aus dem Chat verbannt"),
"You won\'t be able to disable the encryption anymore. Are you sure?":
MessageLookupByLibrary.simpleMessage(
"Du wirst die Verschlüsselung nicht mehr ausstellen können. Bist Du sicher?"),
"Your own username":
MessageLookupByLibrary.simpleMessage("Dein eigener Benutzername"),
"acceptedTheInvitation": m0,
"activatedEndToEndEncryption": m1,
"alias": MessageLookupByLibrary.simpleMessage("Alias"),
"bannedUser": m2,
"byDefaultYouWillBeConnectedTo": m3,
"changedTheChatAvatar": m4,
"changedTheChatDescriptionTo": m5,
"changedTheChatNameTo": m6,
"changedTheChatPermissions": m7,
"changedTheDisplaynameTo": m8,
"changedTheGuestAccessRules": m9,
"changedTheGuestAccessRulesTo": m10,
"changedTheHistoryVisibility": m11,
"changedTheHistoryVisibilityTo": m12,
"changedTheJoinRules": m13,
"changedTheJoinRulesTo": m14,
"changedTheProfileAvatar": m15,
"changedTheRoomAliases": m16,
"changedTheRoomInvitationLink": m17,
"couldNotDecryptMessage": m18,
"countParticipants": m19,
"createdTheChat": m20,
"dateAndTimeOfDay": m21,
"dateWithYear": m22,
"dateWithoutYear": m23,
"emoteExists":
MessageLookupByLibrary.simpleMessage("Emote existiert bereits!"),
"emoteInvalid":
MessageLookupByLibrary.simpleMessage("Ungültiges Emote-kürzel!"),
"emoteWarnNeedToPick": MessageLookupByLibrary.simpleMessage(
"Wähle ein Emote-kürzel und ein Bild!"),
"groupWith": m24,
"hasWithdrawnTheInvitationFor": m25,
"inviteContactToGroup": m26,
"inviteText": m27,
"invitedUser": m28,
"is typing...": MessageLookupByLibrary.simpleMessage("schreibt..."),
"joinedTheChat": m29,
"kicked": m30,
"kickedAndBanned": m31,
"lastActiveAgo": m32,
"loadCountMoreParticipants": m33,
"logInTo": m34,
"numberSelected": m35,
"ok": MessageLookupByLibrary.simpleMessage("ok"),
"play": m36,
"redactedAnEvent": m37,
"rejectedTheInvitation": m38,
"removedBy": m39,
"seenByUser": m40,
"seenByUserAndCountOthers": m41,
"seenByUserAndUser": m42,
"sentAFile": m43,
"sentAPicture": m44,
"sentASticker": m45,
"sentAVideo": m46,
"sentAnAudio": m47,
"sharedTheLocation": m48,
"timeOfDay": m49,
"title": MessageLookupByLibrary.simpleMessage("FluffyChat"),
"unbannedUser": m50,
"unknownEvent": m51,
"unreadChats": m52,
"unreadMessages": m53,
"unreadMessagesInChats": m54,
"userAndOthersAreTyping": m55,
"userAndUserAreTyping": m56,
"userIsTyping": m57,
"userLeftTheChat": m58,
"userSentUnknownEvent": m59
};
} }

View File

@ -29,25 +29,35 @@ class MessageLookup extends MessageLookupByLibrary {
static m4(username) => "${username} a changé l\'image de la discussion"; static m4(username) => "${username} a changé l\'image de la discussion";
static m5(username, description) => "${username} a changé la description de la discussion en : \'${description}\'"; static m5(username, description) =>
"${username} a changé la description de la discussion en : \'${description}\'";
static m6(username, chatname) => "${username} a renommé la discussion en : \'${chatname}\'"; static m6(username, chatname) =>
"${username} a renommé la discussion en : \'${chatname}\'";
static m7(username) => "${username} a changé les permissions de la discussion"; static m7(username) =>
"${username} a changé les permissions de la discussion";
static m8(username, displayname) => "${username} s\'est renommé en : ${displayname}"; static m8(username, displayname) =>
"${username} s\'est renommé en : ${displayname}";
static m9(username) => "${username} a changé les règles d\'accès à la discussion pour les invités"; static m9(username) =>
"${username} a changé les règles d\'accès à la discussion pour les invités";
static m10(username, rules) => "${username} a changé les règles d\'accès à la discussion pour les invités en : ${rules}"; static m10(username, rules) =>
"${username} a changé les règles d\'accès à la discussion pour les invités en : ${rules}";
static m11(username) => "${username} a changé la visibilité de l\'historique de la discussion"; static m11(username) =>
"${username} a changé la visibilité de l\'historique de la discussion";
static m12(username, rules) => "${username} a changé la visibilité de l\'historique de la discussion en : ${rules}"; static m12(username, rules) =>
"${username} a changé la visibilité de l\'historique de la discussion en : ${rules}";
static m13(username) => "${username} a changé les règles d\'accès à la discussion"; static m13(username) =>
"${username} a changé les règles d\'accès à la discussion";
static m14(username, joinRules) => "${username} a changé les règles d\'accès à la discussion en : ${joinRules}"; static m14(username, joinRules) =>
"${username} a changé les règles d\'accès à la discussion en : ${joinRules}";
static m15(username) => "${username} a changé son image de profil"; static m15(username) => "${username} a changé son image de profil";
@ -69,11 +79,13 @@ class MessageLookup extends MessageLookupByLibrary {
static m24(displayname) => "Groupe avec ${displayname}"; static m24(displayname) => "Groupe avec ${displayname}";
static m25(username, targetName) => "${username} a retiré l\'invitation de ${targetName}"; static m25(username, targetName) =>
"${username} a retiré l\'invitation de ${targetName}";
static m26(groupName) => "Inviter un contact dans ${groupName}"; static m26(groupName) => "Inviter un contact dans ${groupName}";
static m27(username, link) => "${username} vous a invité sur FluffyChat. \n1. Installez FluffyChat : http://fluffy.chat \n2. Inscrivez-vous ou connectez-vous \n3. Ouvrez le lien d\'invitation : ${link}"; static m27(username, link) =>
"${username} vous a invité sur FluffyChat. \n1. Installez FluffyChat : http://fluffy.chat \n2. Inscrivez-vous ou connectez-vous \n3. Ouvrez le lien d\'invitation : ${link}";
static m28(username, targetName) => "${username} a invité ${targetName}"; static m28(username, targetName) => "${username} a invité ${targetName}";
@ -81,9 +93,11 @@ class MessageLookup extends MessageLookupByLibrary {
static m30(username, targetName) => "${username} a expulsé ${targetName}"; static m30(username, targetName) => "${username} a expulsé ${targetName}";
static m31(username, targetName) => "${username} a expulsé et banni ${targetName}"; static m31(username, targetName) =>
"${username} a expulsé et banni ${targetName}";
static m32(localizedTimeShort) => "Vu pour la dernière fois: ${localizedTimeShort}"; static m32(localizedTimeShort) =>
"Vu pour la dernière fois: ${localizedTimeShort}";
static m33(count) => "Charger ${count} participants de plus"; static m33(count) => "Charger ${count} participants de plus";
@ -127,267 +141,402 @@ class MessageLookup extends MessageLookupByLibrary {
static m53(unreadEvents) => "${unreadEvents} messages non lus"; static m53(unreadEvents) => "${unreadEvents} messages non lus";
static m54(unreadEvents, unreadChats) => "${unreadEvents} messages non lus dans ${unreadChats} discussions"; static m54(unreadEvents, unreadChats) =>
"${unreadEvents} messages non lus dans ${unreadChats} discussions";
static m55(username, count) => "${username} et ${count} autres sont en train d\'écrire..."; static m55(username, count) =>
"${username} et ${count} autres sont en train d\'écrire...";
static m56(username, username2) => "${username} et ${username2} sont en train d\'écrire..."; static m56(username, username2) =>
"${username} et ${username2} sont en train d\'écrire...";
static m57(username) => "${username} est en train d\'écrire..."; static m57(username) => "${username} est en train d\'écrire...";
static m58(username) => "${username} a quitté la discussion"; static m58(username) => "${username} a quitté la discussion";
static m59(username, type) => "${username} a envoyé un événement de type ${type}"; static m59(username, type) =>
"${username} a envoyé un événement de type ${type}";
final messages = _notInlinedMessages(_notInlinedMessages); final messages = _notInlinedMessages(_notInlinedMessages);
static _notInlinedMessages(_) => <String, Function> { static _notInlinedMessages(_) => <String, Function>{
"(Optional) Group name" : MessageLookupByLibrary.simpleMessage("(Optionnel) Nom du groupe"), "(Optional) Group name":
"About" : MessageLookupByLibrary.simpleMessage("About"), MessageLookupByLibrary.simpleMessage("(Optionnel) Nom du groupe"),
"Account" : MessageLookupByLibrary.simpleMessage("Account"), "About": MessageLookupByLibrary.simpleMessage("About"),
"Account informations" : MessageLookupByLibrary.simpleMessage("Informations du compte"), "Account": MessageLookupByLibrary.simpleMessage("Account"),
"Add a group description" : MessageLookupByLibrary.simpleMessage("Ajouter une description au groupe"), "Account informations":
"Admin" : MessageLookupByLibrary.simpleMessage("Administrateur"), MessageLookupByLibrary.simpleMessage("Informations du compte"),
"Already have an account?" : MessageLookupByLibrary.simpleMessage("Vous avez déjà un compte ?"), "Add a group description": MessageLookupByLibrary.simpleMessage(
"Anyone can join" : MessageLookupByLibrary.simpleMessage("Tout le monde peut rejoindre"), "Ajouter une description au groupe"),
"Archive" : MessageLookupByLibrary.simpleMessage("Archiver"), "Admin": MessageLookupByLibrary.simpleMessage("Administrateur"),
"Archived Room" : MessageLookupByLibrary.simpleMessage("Salon achivé"), "Already have an account?":
"Are guest users allowed to join" : MessageLookupByLibrary.simpleMessage("Est-ce que les invités peuvent rejoindre"), MessageLookupByLibrary.simpleMessage("Vous avez déjà un compte ?"),
"Are you sure?" : MessageLookupByLibrary.simpleMessage("Êtes-vous sûr ?"), "Anyone can join": MessageLookupByLibrary.simpleMessage(
"Authentication" : MessageLookupByLibrary.simpleMessage("Authentification"), "Tout le monde peut rejoindre"),
"Avatar has been changed" : MessageLookupByLibrary.simpleMessage("L\'image de profil a été changée"), "Archive": MessageLookupByLibrary.simpleMessage("Archiver"),
"Ban from chat" : MessageLookupByLibrary.simpleMessage("Bannir de la discussion"), "Archived Room": MessageLookupByLibrary.simpleMessage("Salon achivé"),
"Banned" : MessageLookupByLibrary.simpleMessage("Banned"), "Are guest users allowed to join": MessageLookupByLibrary.simpleMessage(
"Cancel" : MessageLookupByLibrary.simpleMessage("Annuler"), "Est-ce que les invités peuvent rejoindre"),
"Change the homeserver" : MessageLookupByLibrary.simpleMessage("Changer le serveur d\'accueil"), "Are you sure?":
"Change the name of the group" : MessageLookupByLibrary.simpleMessage("Changer le nom du groupe"), MessageLookupByLibrary.simpleMessage("Êtes-vous sûr ?"),
"Change the server" : MessageLookupByLibrary.simpleMessage("Changer de serveur"), "Authentication":
"Change wallpaper" : MessageLookupByLibrary.simpleMessage("Changer d\'image de fond"), MessageLookupByLibrary.simpleMessage("Authentification"),
"Change your style" : MessageLookupByLibrary.simpleMessage("Changez votre style"), "Avatar has been changed": MessageLookupByLibrary.simpleMessage(
"Changelog" : MessageLookupByLibrary.simpleMessage("Journal des changements"), "L\'image de profil a été changée"),
"Chat" : MessageLookupByLibrary.simpleMessage("Discussion"), "Ban from chat":
"Chat details" : MessageLookupByLibrary.simpleMessage("Détails de la discussion"), MessageLookupByLibrary.simpleMessage("Bannir de la discussion"),
"Choose a strong password" : MessageLookupByLibrary.simpleMessage("Choisissez un mot de passe fort"), "Banned": MessageLookupByLibrary.simpleMessage("Banned"),
"Choose a username" : MessageLookupByLibrary.simpleMessage("Choisissez un nom d\'utilisateur"), "Cancel": MessageLookupByLibrary.simpleMessage("Annuler"),
"Close" : MessageLookupByLibrary.simpleMessage("Fermer"), "Change the homeserver": MessageLookupByLibrary.simpleMessage(
"Confirm" : MessageLookupByLibrary.simpleMessage("Confirmer"), "Changer le serveur d\'accueil"),
"Connect" : MessageLookupByLibrary.simpleMessage("Se connecter"), "Change the name of the group":
"Connection attempt failed" : MessageLookupByLibrary.simpleMessage("Tentative de connexion echouée"), MessageLookupByLibrary.simpleMessage("Changer le nom du groupe"),
"Contact has been invited to the group" : MessageLookupByLibrary.simpleMessage("Le contact a été invité au groupe"), "Change the server":
"Content viewer" : MessageLookupByLibrary.simpleMessage("Visionneuse de contenu"), MessageLookupByLibrary.simpleMessage("Changer de serveur"),
"Copied to clipboard" : MessageLookupByLibrary.simpleMessage("Copié dans le presse-papier"), "Change wallpaper":
"Copy" : MessageLookupByLibrary.simpleMessage("Copier"), MessageLookupByLibrary.simpleMessage("Changer d\'image de fond"),
"Could not set avatar" : MessageLookupByLibrary.simpleMessage("Impossible de changer d\'image de profil"), "Change your style":
"Could not set displayname" : MessageLookupByLibrary.simpleMessage("Impossible de changer de nom"), MessageLookupByLibrary.simpleMessage("Changez votre style"),
"Create" : MessageLookupByLibrary.simpleMessage("Créer"), "Changelog":
"Create account now" : MessageLookupByLibrary.simpleMessage("Créer un compte"), MessageLookupByLibrary.simpleMessage("Journal des changements"),
"Create new group" : MessageLookupByLibrary.simpleMessage("Créer un nouveau groupe"), "Chat": MessageLookupByLibrary.simpleMessage("Discussion"),
"Currenlty active" : MessageLookupByLibrary.simpleMessage("Actif en ce moment"), "Chat details":
"Dark" : MessageLookupByLibrary.simpleMessage("Sombre"), MessageLookupByLibrary.simpleMessage("Détails de la discussion"),
"Delete" : MessageLookupByLibrary.simpleMessage("Supprimer"), "Choose a strong password": MessageLookupByLibrary.simpleMessage(
"Delete message" : MessageLookupByLibrary.simpleMessage("Supprimer le message"), "Choisissez un mot de passe fort"),
"Deny" : MessageLookupByLibrary.simpleMessage("Refuser"), "Choose a username": MessageLookupByLibrary.simpleMessage(
"Device" : MessageLookupByLibrary.simpleMessage("Périphérique"), "Choisissez un nom d\'utilisateur"),
"Devices" : MessageLookupByLibrary.simpleMessage("Périphériques"), "Close": MessageLookupByLibrary.simpleMessage("Fermer"),
"Discard picture" : MessageLookupByLibrary.simpleMessage("Abandonner l\'image"), "Confirm": MessageLookupByLibrary.simpleMessage("Confirmer"),
"Displayname has been changed" : MessageLookupByLibrary.simpleMessage("Renommage effectué"), "Connect": MessageLookupByLibrary.simpleMessage("Se connecter"),
"Donate" : MessageLookupByLibrary.simpleMessage("Faire un don"), "Connection attempt failed": MessageLookupByLibrary.simpleMessage(
"Download file" : MessageLookupByLibrary.simpleMessage("Télécharger le fichier"), "Tentative de connexion echouée"),
"Edit Jitsi instance" : MessageLookupByLibrary.simpleMessage("Changer l\'instance Jitsi"), "Contact has been invited to the group":
"Edit displayname" : MessageLookupByLibrary.simpleMessage("Changer de nom"), MessageLookupByLibrary.simpleMessage(
"Emote Settings" : MessageLookupByLibrary.simpleMessage("Paramètre des émoticônes"), "Le contact a été invité au groupe"),
"Emote shortcode" : MessageLookupByLibrary.simpleMessage("Raccourci d\'émoticône"), "Content viewer":
"Empty chat" : MessageLookupByLibrary.simpleMessage("Discussion vide"), MessageLookupByLibrary.simpleMessage("Visionneuse de contenu"),
"Encryption algorithm" : MessageLookupByLibrary.simpleMessage("Algorithme de chiffrement"), "Copied to clipboard":
"Encryption is not enabled" : MessageLookupByLibrary.simpleMessage("Le chiffrement n\'est pas actif"), MessageLookupByLibrary.simpleMessage("Copié dans le presse-papier"),
"End to end encryption is currently in Beta! Use at your own risk!" : MessageLookupByLibrary.simpleMessage("Le chiffrement de bout en bout est actuellement en beta ! Utilisez cette fonctionnalité à vos propres risques !!"), "Copy": MessageLookupByLibrary.simpleMessage("Copier"),
"End-to-end encryption settings" : MessageLookupByLibrary.simpleMessage("Paramètres du chiffrement de bout en bout"), "Could not set avatar": MessageLookupByLibrary.simpleMessage(
"Enter a group name" : MessageLookupByLibrary.simpleMessage("Entrez un nom de groupe"), "Impossible de changer d\'image de profil"),
"Enter a username" : MessageLookupByLibrary.simpleMessage("Entrez un nom d\'utilisateur"), "Could not set displayname": MessageLookupByLibrary.simpleMessage(
"Enter your homeserver" : MessageLookupByLibrary.simpleMessage("Renseignez votre serveur d\'accueil"), "Impossible de changer de nom"),
"File name" : MessageLookupByLibrary.simpleMessage("Nom du ficher"), "Create": MessageLookupByLibrary.simpleMessage("Créer"),
"File size" : MessageLookupByLibrary.simpleMessage("Taille du fichier"), "Create account now":
"FluffyChat" : MessageLookupByLibrary.simpleMessage("FluffyChat"), MessageLookupByLibrary.simpleMessage("Créer un compte"),
"Forward" : MessageLookupByLibrary.simpleMessage("Transférer"), "Create new group":
"Friday" : MessageLookupByLibrary.simpleMessage("Vendredi"), MessageLookupByLibrary.simpleMessage("Créer un nouveau groupe"),
"From joining" : MessageLookupByLibrary.simpleMessage("À partir de l\'entrée dans le salon"), "Currenlty active":
"From the invitation" : MessageLookupByLibrary.simpleMessage("À partir de l\'invitation"), MessageLookupByLibrary.simpleMessage("Actif en ce moment"),
"Group" : MessageLookupByLibrary.simpleMessage("Groupe"), "Dark": MessageLookupByLibrary.simpleMessage("Sombre"),
"Group description" : MessageLookupByLibrary.simpleMessage("Description du groupe"), "Delete": MessageLookupByLibrary.simpleMessage("Supprimer"),
"Group description has been changed" : MessageLookupByLibrary.simpleMessage("La description du groupe a été changée"), "Delete message":
"Group is public" : MessageLookupByLibrary.simpleMessage("Le groupe est public"), MessageLookupByLibrary.simpleMessage("Supprimer le message"),
"Guests are forbidden" : MessageLookupByLibrary.simpleMessage("Les invités ne peuvent pas rejoindre"), "Deny": MessageLookupByLibrary.simpleMessage("Refuser"),
"Guests can join" : MessageLookupByLibrary.simpleMessage("Les invités peuvent rejoindre"), "Device": MessageLookupByLibrary.simpleMessage("Périphérique"),
"Help" : MessageLookupByLibrary.simpleMessage("Aide"), "Devices": MessageLookupByLibrary.simpleMessage("Périphériques"),
"Homeserver is not compatible" : MessageLookupByLibrary.simpleMessage("Le serveur d\'accueil n\'est pas compatible"), "Discard picture":
"How are you today?" : MessageLookupByLibrary.simpleMessage("Comment allez-vous aujourd\'hui ?"), MessageLookupByLibrary.simpleMessage("Abandonner l\'image"),
"ID" : MessageLookupByLibrary.simpleMessage("Identifiant"), "Displayname has been changed":
"Identity" : MessageLookupByLibrary.simpleMessage("Identité"), MessageLookupByLibrary.simpleMessage("Renommage effectué"),
"Invite contact" : MessageLookupByLibrary.simpleMessage("Inviter un contact"), "Donate": MessageLookupByLibrary.simpleMessage("Faire un don"),
"Invited" : MessageLookupByLibrary.simpleMessage("Invité"), "Download file":
"Invited users only" : MessageLookupByLibrary.simpleMessage("Uniquement les utilisateurs invités"), MessageLookupByLibrary.simpleMessage("Télécharger le fichier"),
"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("On dirait que vous n\'avez pas installé les services Google sur votre téléphone. C\'est une bonne décision pour votre vie privée ! Pour recevoir les notifications de FluffyChat, nous vous recommendons d\'utiliser microG : https://microg.org/"), "Edit Jitsi instance":
"Kick from chat" : MessageLookupByLibrary.simpleMessage("Expulser de la discussion"), MessageLookupByLibrary.simpleMessage("Changer l\'instance Jitsi"),
"Last seen IP" : MessageLookupByLibrary.simpleMessage("Dernière addresse IP utilisée"), "Edit displayname":
"Leave" : MessageLookupByLibrary.simpleMessage("Leave"), MessageLookupByLibrary.simpleMessage("Changer de nom"),
"Left the chat" : MessageLookupByLibrary.simpleMessage("Discussion quittée"), "Emote Settings":
"License" : MessageLookupByLibrary.simpleMessage("Licence"), MessageLookupByLibrary.simpleMessage("Paramètre des émoticônes"),
"Light" : MessageLookupByLibrary.simpleMessage("Clair"), "Emote shortcode":
"Load more..." : MessageLookupByLibrary.simpleMessage("Charger plus..."), MessageLookupByLibrary.simpleMessage("Raccourci d\'émoticône"),
"Loading... Please wait" : MessageLookupByLibrary.simpleMessage("Chargement... Merci de patienter"), "Empty chat": MessageLookupByLibrary.simpleMessage("Discussion vide"),
"Login" : MessageLookupByLibrary.simpleMessage("Connexion"), "Encryption algorithm":
"Logout" : MessageLookupByLibrary.simpleMessage("Logout"), MessageLookupByLibrary.simpleMessage("Algorithme de chiffrement"),
"Make a moderator" : MessageLookupByLibrary.simpleMessage("Promouvoir comme modérateur"), "Encryption is not enabled": MessageLookupByLibrary.simpleMessage(
"Make an admin" : MessageLookupByLibrary.simpleMessage("Promouvoir comme administrateur"), "Le chiffrement n\'est pas actif"),
"Make sure the identifier is valid" : MessageLookupByLibrary.simpleMessage("Vérifiez que l\'identifiant est valide"), "End to end encryption is currently in Beta! Use at your own risk!":
"Message will be removed for all participants" : MessageLookupByLibrary.simpleMessage("Le message sera supprimé pour tous les participants"), MessageLookupByLibrary.simpleMessage(
"Moderator" : MessageLookupByLibrary.simpleMessage("Moderateur"), "Le chiffrement de bout en bout est actuellement en beta ! Utilisez cette fonctionnalité à vos propres risques !!"),
"Monday" : MessageLookupByLibrary.simpleMessage("Lundi"), "End-to-end encryption settings": MessageLookupByLibrary.simpleMessage(
"Mute chat" : MessageLookupByLibrary.simpleMessage("Mettre la discussion en sourdine"), "Paramètres du chiffrement de bout en bout"),
"New message in FluffyChat" : MessageLookupByLibrary.simpleMessage("Nouveau message dans FluffyChat"), "Enter a group name":
"New private chat" : MessageLookupByLibrary.simpleMessage("Nouvelle discussion privée"), MessageLookupByLibrary.simpleMessage("Entrez un nom de groupe"),
"No emotes found. 😕" : MessageLookupByLibrary.simpleMessage("Aucune émoticône trouvée. 😕"), "Enter a username": MessageLookupByLibrary.simpleMessage(
"No permission" : MessageLookupByLibrary.simpleMessage("Aucune permission"), "Entrez un nom d\'utilisateur"),
"No rooms found..." : MessageLookupByLibrary.simpleMessage("Aucun salon trouvé..."), "Enter your homeserver": MessageLookupByLibrary.simpleMessage(
"None" : MessageLookupByLibrary.simpleMessage("Aucun"), "Renseignez votre serveur d\'accueil"),
"Not supported in web" : MessageLookupByLibrary.simpleMessage("Non supporté par l\'application web"), "File name": MessageLookupByLibrary.simpleMessage("Nom du ficher"),
"Oops something went wrong..." : MessageLookupByLibrary.simpleMessage("Oups, quelque chose s\'est mal passé..."), "File size": MessageLookupByLibrary.simpleMessage("Taille du fichier"),
"Open app to read messages" : MessageLookupByLibrary.simpleMessage("Ouvrez l\'application pour lire le message"), "FluffyChat": MessageLookupByLibrary.simpleMessage("FluffyChat"),
"Open camera" : MessageLookupByLibrary.simpleMessage("Ouvrir l\'appareil photo"), "Forward": MessageLookupByLibrary.simpleMessage("Transférer"),
"Participating user devices" : MessageLookupByLibrary.simpleMessage("Périphériques participants"), "Friday": MessageLookupByLibrary.simpleMessage("Vendredi"),
"Password" : MessageLookupByLibrary.simpleMessage("Mot de passe"), "From joining": MessageLookupByLibrary.simpleMessage(
"Pick image" : MessageLookupByLibrary.simpleMessage("Choisir une image"), "À partir de l\'entrée dans le salon"),
"Please be aware that you need Pantalaimon to use end-to-end encryption for now." : MessageLookupByLibrary.simpleMessage("Vous devez installer Pantalaimon pour utiliser le chiffrement de bout en bout pour l\'instant."), "From the invitation":
"Please choose a username" : MessageLookupByLibrary.simpleMessage("Choisissez un nom d\'utilisateur"), MessageLookupByLibrary.simpleMessage("À partir de l\'invitation"),
"Please enter a matrix identifier" : MessageLookupByLibrary.simpleMessage("Renseignez un identifiant Matrix"), "Group": MessageLookupByLibrary.simpleMessage("Groupe"),
"Please enter your password" : MessageLookupByLibrary.simpleMessage("Renseignez votre mot de passe"), "Group description":
"Please enter your username" : MessageLookupByLibrary.simpleMessage("Renseignez votre nom d\'utilisateur"), MessageLookupByLibrary.simpleMessage("Description du groupe"),
"Public Rooms" : MessageLookupByLibrary.simpleMessage("Salons publics"), "Group description has been changed":
"Recording" : MessageLookupByLibrary.simpleMessage("Enregistrement"), MessageLookupByLibrary.simpleMessage(
"Rejoin" : MessageLookupByLibrary.simpleMessage("Rejoindre de nouveau"), "La description du groupe a été changée"),
"Remove" : MessageLookupByLibrary.simpleMessage("Supprimer"), "Group is public":
"Remove all other devices" : MessageLookupByLibrary.simpleMessage("Supprimer tous les autres périphériques"), MessageLookupByLibrary.simpleMessage("Le groupe est public"),
"Remove device" : MessageLookupByLibrary.simpleMessage("Supprimer le périphérique"), "Guests are forbidden": MessageLookupByLibrary.simpleMessage(
"Remove exile" : MessageLookupByLibrary.simpleMessage("Retirer le bannissement"), "Les invités ne peuvent pas rejoindre"),
"Remove message" : MessageLookupByLibrary.simpleMessage("Supprimer le message"), "Guests can join": MessageLookupByLibrary.simpleMessage(
"Render rich message content" : MessageLookupByLibrary.simpleMessage("Afficher les contenus riches des messages"), "Les invités peuvent rejoindre"),
"Reply" : MessageLookupByLibrary.simpleMessage("Répondre"), "Help": MessageLookupByLibrary.simpleMessage("Aide"),
"Request permission" : MessageLookupByLibrary.simpleMessage("Demander la permission"), "Homeserver is not compatible": MessageLookupByLibrary.simpleMessage(
"Request to read older messages" : MessageLookupByLibrary.simpleMessage("Demander à lire les anciens messages"), "Le serveur d\'accueil n\'est pas compatible"),
"Revoke all permissions" : MessageLookupByLibrary.simpleMessage("Révoquer toutes les permissions"), "How are you today?": MessageLookupByLibrary.simpleMessage(
"Saturday" : MessageLookupByLibrary.simpleMessage("Samedi"), "Comment allez-vous aujourd\'hui ?"),
"Search for a chat" : MessageLookupByLibrary.simpleMessage("Rechercher une discussion"), "ID": MessageLookupByLibrary.simpleMessage("Identifiant"),
"Seen a long time ago" : MessageLookupByLibrary.simpleMessage("Vu pour la dernière fois il y a longtemps"), "Identity": MessageLookupByLibrary.simpleMessage("Identité"),
"Send" : MessageLookupByLibrary.simpleMessage("Envoyer"), "Invite contact":
"Send a message" : MessageLookupByLibrary.simpleMessage("Envoyer un message"), MessageLookupByLibrary.simpleMessage("Inviter un contact"),
"Send file" : MessageLookupByLibrary.simpleMessage("Envoyer un fichier"), "Invited": MessageLookupByLibrary.simpleMessage("Invité"),
"Send image" : MessageLookupByLibrary.simpleMessage("Envoyer une image"), "Invited users only": MessageLookupByLibrary.simpleMessage(
"Set a profile picture" : MessageLookupByLibrary.simpleMessage("Définir une image de profil"), "Uniquement les utilisateurs invités"),
"Set group description" : MessageLookupByLibrary.simpleMessage("Définir une description du groupe"), "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/":
"Set invitation link" : MessageLookupByLibrary.simpleMessage("Créer un lien d\'invitation"), MessageLookupByLibrary.simpleMessage(
"Set status" : MessageLookupByLibrary.simpleMessage("Définir un statut"), "On dirait que vous n\'avez pas installé les services Google sur votre téléphone. C\'est une bonne décision pour votre vie privée ! Pour recevoir les notifications de FluffyChat, nous vous recommendons d\'utiliser microG : https://microg.org/"),
"Settings" : MessageLookupByLibrary.simpleMessage("Paramètres"), "Kick from chat":
"Share" : MessageLookupByLibrary.simpleMessage("Partager"), MessageLookupByLibrary.simpleMessage("Expulser de la discussion"),
"Sign up" : MessageLookupByLibrary.simpleMessage("S\'inscrire"), "Last seen IP": MessageLookupByLibrary.simpleMessage(
"Source code" : MessageLookupByLibrary.simpleMessage("Code source"), "Dernière addresse IP utilisée"),
"Start your first chat :-)" : MessageLookupByLibrary.simpleMessage("Démarrez votre première discussion :-)"), "Leave": MessageLookupByLibrary.simpleMessage("Leave"),
"Sunday" : MessageLookupByLibrary.simpleMessage("Dimanche"), "Left the chat":
"System" : MessageLookupByLibrary.simpleMessage("Système"), MessageLookupByLibrary.simpleMessage("Discussion quittée"),
"Tap to show menu" : MessageLookupByLibrary.simpleMessage("Tappez pour afficher le menu"), "License": MessageLookupByLibrary.simpleMessage("Licence"),
"The encryption has been corrupted" : MessageLookupByLibrary.simpleMessage("Le chiffrement a été corrompu"), "Light": MessageLookupByLibrary.simpleMessage("Clair"),
"This room has been archived." : MessageLookupByLibrary.simpleMessage("Ce salon a été archivé."), "Load more...": MessageLookupByLibrary.simpleMessage("Charger plus..."),
"Thursday" : MessageLookupByLibrary.simpleMessage("Jeudi"), "Loading... Please wait": MessageLookupByLibrary.simpleMessage(
"Try to send again" : MessageLookupByLibrary.simpleMessage("Retenter l\'envoi"), "Chargement... Merci de patienter"),
"Tuesday" : MessageLookupByLibrary.simpleMessage("Mardi"), "Login": MessageLookupByLibrary.simpleMessage("Connexion"),
"Unknown device" : MessageLookupByLibrary.simpleMessage("Périphérique inconnu"), "Logout": MessageLookupByLibrary.simpleMessage("Logout"),
"Unknown encryption algorithm" : MessageLookupByLibrary.simpleMessage("Algorithme de chiffrement inconnu"), "Make a moderator":
"Unmute chat" : MessageLookupByLibrary.simpleMessage("Retirer la sourdine"), MessageLookupByLibrary.simpleMessage("Promouvoir comme modérateur"),
"Use Amoled compatible colors?" : MessageLookupByLibrary.simpleMessage("Utiliser des couleurs compatibles Amoled ?"), "Make an admin": MessageLookupByLibrary.simpleMessage(
"Username" : MessageLookupByLibrary.simpleMessage("Nom d\'utilisateur"), "Promouvoir comme administrateur"),
"Verify" : MessageLookupByLibrary.simpleMessage("Vérifier"), "Make sure the identifier is valid":
"Video call" : MessageLookupByLibrary.simpleMessage("Appel vidéo"), MessageLookupByLibrary.simpleMessage(
"Visibility of the chat history" : MessageLookupByLibrary.simpleMessage("Visibilité de l\'historique de la discussion"), "Vérifiez que l\'identifiant est valide"),
"Visible for all participants" : MessageLookupByLibrary.simpleMessage("Visible pour tous les participants"), "Message will be removed for all participants":
"Visible for everyone" : MessageLookupByLibrary.simpleMessage("Visible pour tout le monde"), MessageLookupByLibrary.simpleMessage(
"Voice message" : MessageLookupByLibrary.simpleMessage("Message vocal"), "Le message sera supprimé pour tous les participants"),
"Wallpaper" : MessageLookupByLibrary.simpleMessage("Image de fond"), "Moderator": MessageLookupByLibrary.simpleMessage("Moderateur"),
"Wednesday" : MessageLookupByLibrary.simpleMessage("Mercredi"), "Monday": MessageLookupByLibrary.simpleMessage("Lundi"),
"Welcome to the cutest instant messenger in the matrix network." : MessageLookupByLibrary.simpleMessage("Bienvenue dans la messagerie la plus mignonne du réseau Matrix."), "Mute chat": MessageLookupByLibrary.simpleMessage(
"Who is allowed to join this group" : MessageLookupByLibrary.simpleMessage("Qui est autorisé à rejoindre ce groupe"), "Mettre la discussion en sourdine"),
"Write a message..." : MessageLookupByLibrary.simpleMessage("Écrivez un message..."), "New message in FluffyChat": MessageLookupByLibrary.simpleMessage(
"Yes" : MessageLookupByLibrary.simpleMessage("Oui"), "Nouveau message dans FluffyChat"),
"You" : MessageLookupByLibrary.simpleMessage("Vous"), "New private chat":
"You are invited to this chat" : MessageLookupByLibrary.simpleMessage("Vous êtes invité à cette discussion"), MessageLookupByLibrary.simpleMessage("Nouvelle discussion privée"),
"You are no longer participating in this chat" : MessageLookupByLibrary.simpleMessage("Vous ne participez plus à cette discussion"), "No emotes found. 😕": MessageLookupByLibrary.simpleMessage(
"You cannot invite yourself" : MessageLookupByLibrary.simpleMessage("Vous ne pouvez pas vous inviter vous-même"), "Aucune émoticône trouvée. 😕"),
"You have been banned from this chat" : MessageLookupByLibrary.simpleMessage("Vous avez été banni de cette discussion"), "No permission":
"You won\'t be able to disable the encryption anymore. Are you sure?" : MessageLookupByLibrary.simpleMessage("Vous ne pourrez plus désactiver le chiffrement. Êtez-vous sûr ?"), MessageLookupByLibrary.simpleMessage("Aucune permission"),
"Your own username" : MessageLookupByLibrary.simpleMessage("Votre propre nom d\'utilisateur"), "No rooms found...":
"acceptedTheInvitation" : m0, MessageLookupByLibrary.simpleMessage("Aucun salon trouvé..."),
"activatedEndToEndEncryption" : m1, "None": MessageLookupByLibrary.simpleMessage("Aucun"),
"alias" : MessageLookupByLibrary.simpleMessage("adresse"), "Not supported in web": MessageLookupByLibrary.simpleMessage(
"bannedUser" : m2, "Non supporté par l\'application web"),
"byDefaultYouWillBeConnectedTo" : m3, "Oops something went wrong...": MessageLookupByLibrary.simpleMessage(
"changedTheChatAvatar" : m4, "Oups, quelque chose s\'est mal passé..."),
"changedTheChatDescriptionTo" : m5, "Open app to read messages": MessageLookupByLibrary.simpleMessage(
"changedTheChatNameTo" : m6, "Ouvrez l\'application pour lire le message"),
"changedTheChatPermissions" : m7, "Open camera":
"changedTheDisplaynameTo" : m8, MessageLookupByLibrary.simpleMessage("Ouvrir l\'appareil photo"),
"changedTheGuestAccessRules" : m9, "Participating user devices":
"changedTheGuestAccessRulesTo" : m10, MessageLookupByLibrary.simpleMessage("Périphériques participants"),
"changedTheHistoryVisibility" : m11, "Password": MessageLookupByLibrary.simpleMessage("Mot de passe"),
"changedTheHistoryVisibilityTo" : m12, "Pick image": MessageLookupByLibrary.simpleMessage("Choisir une image"),
"changedTheJoinRules" : m13, "Please be aware that you need Pantalaimon to use end-to-end encryption for now.":
"changedTheJoinRulesTo" : m14, MessageLookupByLibrary.simpleMessage(
"changedTheProfileAvatar" : m15, "Vous devez installer Pantalaimon pour utiliser le chiffrement de bout en bout pour l\'instant."),
"changedTheRoomAliases" : m16, "Please choose a username": MessageLookupByLibrary.simpleMessage(
"changedTheRoomInvitationLink" : m17, "Choisissez un nom d\'utilisateur"),
"couldNotDecryptMessage" : m18, "Please enter a matrix identifier":
"countParticipants" : m19, MessageLookupByLibrary.simpleMessage(
"createdTheChat" : m20, "Renseignez un identifiant Matrix"),
"dateAndTimeOfDay" : m21, "Please enter your password": MessageLookupByLibrary.simpleMessage(
"dateWithYear" : m22, "Renseignez votre mot de passe"),
"dateWithoutYear" : m23, "Please enter your username": MessageLookupByLibrary.simpleMessage(
"emoteExists" : MessageLookupByLibrary.simpleMessage("Cette émoticône existe déjà !"), "Renseignez votre nom d\'utilisateur"),
"emoteInvalid" : MessageLookupByLibrary.simpleMessage("Raccourci d\'émoticône invalide !"), "Public Rooms": MessageLookupByLibrary.simpleMessage("Salons publics"),
"emoteWarnNeedToPick" : MessageLookupByLibrary.simpleMessage("Vous devez sélectionner un raccourci d\'émoticône et une image !"), "Recording": MessageLookupByLibrary.simpleMessage("Enregistrement"),
"groupWith" : m24, "Rejoin": MessageLookupByLibrary.simpleMessage("Rejoindre de nouveau"),
"hasWithdrawnTheInvitationFor" : m25, "Remove": MessageLookupByLibrary.simpleMessage("Supprimer"),
"inviteContactToGroup" : m26, "Remove all other devices": MessageLookupByLibrary.simpleMessage(
"inviteText" : m27, "Supprimer tous les autres périphériques"),
"invitedUser" : m28, "Remove device":
"is typing..." : MessageLookupByLibrary.simpleMessage("is typing..."), MessageLookupByLibrary.simpleMessage("Supprimer le périphérique"),
"joinedTheChat" : m29, "Remove exile":
"kicked" : m30, MessageLookupByLibrary.simpleMessage("Retirer le bannissement"),
"kickedAndBanned" : m31, "Remove message":
"lastActiveAgo" : m32, MessageLookupByLibrary.simpleMessage("Supprimer le message"),
"loadCountMoreParticipants" : m33, "Render rich message content": MessageLookupByLibrary.simpleMessage(
"logInTo" : m34, "Afficher les contenus riches des messages"),
"numberSelected" : m35, "Reply": MessageLookupByLibrary.simpleMessage("Répondre"),
"ok" : MessageLookupByLibrary.simpleMessage("ok"), "Request permission":
"play" : m36, MessageLookupByLibrary.simpleMessage("Demander la permission"),
"redactedAnEvent" : m37, "Request to read older messages": MessageLookupByLibrary.simpleMessage(
"rejectedTheInvitation" : m38, "Demander à lire les anciens messages"),
"removedBy" : m39, "Revoke all permissions": MessageLookupByLibrary.simpleMessage(
"seenByUser" : m40, "Révoquer toutes les permissions"),
"seenByUserAndCountOthers" : m41, "Saturday": MessageLookupByLibrary.simpleMessage("Samedi"),
"seenByUserAndUser" : m42, "Search for a chat":
"sentAFile" : m43, MessageLookupByLibrary.simpleMessage("Rechercher une discussion"),
"sentAPicture" : m44, "Seen a long time ago": MessageLookupByLibrary.simpleMessage(
"sentASticker" : m45, "Vu pour la dernière fois il y a longtemps"),
"sentAVideo" : m46, "Send": MessageLookupByLibrary.simpleMessage("Envoyer"),
"sentAnAudio" : m47, "Send a message":
"sharedTheLocation" : m48, MessageLookupByLibrary.simpleMessage("Envoyer un message"),
"timeOfDay" : m49, "Send file": MessageLookupByLibrary.simpleMessage("Envoyer un fichier"),
"title" : MessageLookupByLibrary.simpleMessage("FluffyChat"), "Send image": MessageLookupByLibrary.simpleMessage("Envoyer une image"),
"unbannedUser" : m50, "Set a profile picture":
"unknownEvent" : m51, MessageLookupByLibrary.simpleMessage("Définir une image de profil"),
"unreadChats" : m52, "Set group description": MessageLookupByLibrary.simpleMessage(
"unreadMessages" : m53, "Définir une description du groupe"),
"unreadMessagesInChats" : m54, "Set invitation link":
"userAndOthersAreTyping" : m55, MessageLookupByLibrary.simpleMessage("Créer un lien d\'invitation"),
"userAndUserAreTyping" : m56, "Set status": MessageLookupByLibrary.simpleMessage("Définir un statut"),
"userIsTyping" : m57, "Settings": MessageLookupByLibrary.simpleMessage("Paramètres"),
"userLeftTheChat" : m58, "Share": MessageLookupByLibrary.simpleMessage("Partager"),
"userSentUnknownEvent" : m59 "Sign up": MessageLookupByLibrary.simpleMessage("S\'inscrire"),
}; "Source code": MessageLookupByLibrary.simpleMessage("Code source"),
"Start your first chat :-)": MessageLookupByLibrary.simpleMessage(
"Démarrez votre première discussion :-)"),
"Sunday": MessageLookupByLibrary.simpleMessage("Dimanche"),
"System": MessageLookupByLibrary.simpleMessage("Système"),
"Tap to show menu": MessageLookupByLibrary.simpleMessage(
"Tappez pour afficher le menu"),
"The encryption has been corrupted":
MessageLookupByLibrary.simpleMessage(
"Le chiffrement a été corrompu"),
"This room has been archived.":
MessageLookupByLibrary.simpleMessage("Ce salon a été archivé."),
"Thursday": MessageLookupByLibrary.simpleMessage("Jeudi"),
"Try to send again":
MessageLookupByLibrary.simpleMessage("Retenter l\'envoi"),
"Tuesday": MessageLookupByLibrary.simpleMessage("Mardi"),
"Unknown device":
MessageLookupByLibrary.simpleMessage("Périphérique inconnu"),
"Unknown encryption algorithm": MessageLookupByLibrary.simpleMessage(
"Algorithme de chiffrement inconnu"),
"Unmute chat":
MessageLookupByLibrary.simpleMessage("Retirer la sourdine"),
"Use Amoled compatible colors?": MessageLookupByLibrary.simpleMessage(
"Utiliser des couleurs compatibles Amoled ?"),
"Username": MessageLookupByLibrary.simpleMessage("Nom d\'utilisateur"),
"Verify": MessageLookupByLibrary.simpleMessage("Vérifier"),
"Video call": MessageLookupByLibrary.simpleMessage("Appel vidéo"),
"Visibility of the chat history": MessageLookupByLibrary.simpleMessage(
"Visibilité de l\'historique de la discussion"),
"Visible for all participants": MessageLookupByLibrary.simpleMessage(
"Visible pour tous les participants"),
"Visible for everyone":
MessageLookupByLibrary.simpleMessage("Visible pour tout le monde"),
"Voice message": MessageLookupByLibrary.simpleMessage("Message vocal"),
"Wallpaper": MessageLookupByLibrary.simpleMessage("Image de fond"),
"Wednesday": MessageLookupByLibrary.simpleMessage("Mercredi"),
"Welcome to the cutest instant messenger in the matrix network.":
MessageLookupByLibrary.simpleMessage(
"Bienvenue dans la messagerie la plus mignonne du réseau Matrix."),
"Who is allowed to join this group":
MessageLookupByLibrary.simpleMessage(
"Qui est autorisé à rejoindre ce groupe"),
"Write a message...":
MessageLookupByLibrary.simpleMessage("Écrivez un message..."),
"Yes": MessageLookupByLibrary.simpleMessage("Oui"),
"You": MessageLookupByLibrary.simpleMessage("Vous"),
"You are invited to this chat": MessageLookupByLibrary.simpleMessage(
"Vous êtes invité à cette discussion"),
"You are no longer participating in this chat":
MessageLookupByLibrary.simpleMessage(
"Vous ne participez plus à cette discussion"),
"You cannot invite yourself": MessageLookupByLibrary.simpleMessage(
"Vous ne pouvez pas vous inviter vous-même"),
"You have been banned from this chat":
MessageLookupByLibrary.simpleMessage(
"Vous avez été banni de cette discussion"),
"You won\'t be able to disable the encryption anymore. Are you sure?":
MessageLookupByLibrary.simpleMessage(
"Vous ne pourrez plus désactiver le chiffrement. Êtez-vous sûr ?"),
"Your own username": MessageLookupByLibrary.simpleMessage(
"Votre propre nom d\'utilisateur"),
"acceptedTheInvitation": m0,
"activatedEndToEndEncryption": m1,
"alias": MessageLookupByLibrary.simpleMessage("adresse"),
"bannedUser": m2,
"byDefaultYouWillBeConnectedTo": m3,
"changedTheChatAvatar": m4,
"changedTheChatDescriptionTo": m5,
"changedTheChatNameTo": m6,
"changedTheChatPermissions": m7,
"changedTheDisplaynameTo": m8,
"changedTheGuestAccessRules": m9,
"changedTheGuestAccessRulesTo": m10,
"changedTheHistoryVisibility": m11,
"changedTheHistoryVisibilityTo": m12,
"changedTheJoinRules": m13,
"changedTheJoinRulesTo": m14,
"changedTheProfileAvatar": m15,
"changedTheRoomAliases": m16,
"changedTheRoomInvitationLink": m17,
"couldNotDecryptMessage": m18,
"countParticipants": m19,
"createdTheChat": m20,
"dateAndTimeOfDay": m21,
"dateWithYear": m22,
"dateWithoutYear": m23,
"emoteExists": MessageLookupByLibrary.simpleMessage(
"Cette émoticône existe déjà !"),
"emoteInvalid": MessageLookupByLibrary.simpleMessage(
"Raccourci d\'émoticône invalide !"),
"emoteWarnNeedToPick": MessageLookupByLibrary.simpleMessage(
"Vous devez sélectionner un raccourci d\'émoticône et une image !"),
"groupWith": m24,
"hasWithdrawnTheInvitationFor": m25,
"inviteContactToGroup": m26,
"inviteText": m27,
"invitedUser": m28,
"is typing...": MessageLookupByLibrary.simpleMessage("is typing..."),
"joinedTheChat": m29,
"kicked": m30,
"kickedAndBanned": m31,
"lastActiveAgo": m32,
"loadCountMoreParticipants": m33,
"logInTo": m34,
"numberSelected": m35,
"ok": MessageLookupByLibrary.simpleMessage("ok"),
"play": m36,
"redactedAnEvent": m37,
"rejectedTheInvitation": m38,
"removedBy": m39,
"seenByUser": m40,
"seenByUserAndCountOthers": m41,
"seenByUserAndUser": m42,
"sentAFile": m43,
"sentAPicture": m44,
"sentASticker": m45,
"sentAVideo": m46,
"sentAnAudio": m47,
"sharedTheLocation": m48,
"timeOfDay": m49,
"title": MessageLookupByLibrary.simpleMessage("FluffyChat"),
"unbannedUser": m50,
"unknownEvent": m51,
"unreadChats": m52,
"unreadMessages": m53,
"unreadMessagesInChats": m54,
"userAndOthersAreTyping": m55,
"userAndUserAreTyping": m56,
"userIsTyping": m57,
"userLeftTheChat": m58,
"userSentUnknownEvent": m59
};
} }

View File

@ -21,7 +21,8 @@ class MessageLookup extends MessageLookupByLibrary {
static m0(username) => "${username} elfogadta a meghívást"; static m0(username) => "${username} elfogadta a meghívást";
static m1(username) => "${username} aktiválta a végpontól-végpontig titkosítást"; static m1(username) =>
"${username} aktiválta a végpontól-végpontig titkosítást";
static m2(username, targetName) => "${username} kitiltotta ${targetName}-t"; static m2(username, targetName) => "${username} kitiltotta ${targetName}-t";
@ -29,25 +30,33 @@ class MessageLookup extends MessageLookupByLibrary {
static m4(username) => "${username} módosította a csevegés képét"; static m4(username) => "${username} módosította a csevegés képét";
static m5(username, description) => "${username} módosította a csevegés leírását erre: \'${description}\'"; static m5(username, description) =>
"${username} módosította a csevegés leírását erre: \'${description}\'";
static m6(username, chatname) => "${username} módosította a csevegés nevét erre: \'${chatname}\'"; static m6(username, chatname) =>
"${username} módosította a csevegés nevét erre: \'${chatname}\'";
static m7(username) => "${username} módosította a csevegési enegedélyeket"; static m7(username) => "${username} módosította a csevegési enegedélyeket";
static m8(username, displayname) => "${username} módosította a megjenelítési nevét erre: ${displayname}"; static m8(username, displayname) =>
"${username} módosította a megjenelítési nevét erre: ${displayname}";
static m9(username) => "${username} módosította a vendégek hozzáférési jogait"; static m9(username) =>
"${username} módosította a vendégek hozzáférési jogait";
static m10(username, rules) => "${username} módosította a vendégek hozzáférési jogait, így: ${rules}"; static m10(username, rules) =>
"${username} módosította a vendégek hozzáférési jogait, így: ${rules}";
static m11(username) => "${username} módosította a múltbéli események láthatóságát"; static m11(username) =>
"${username} módosította a múltbéli események láthatóságát";
static m12(username, rules) => "${username} módosította a múltbéli események láthatóságát, így: ${rules}"; static m12(username, rules) =>
"${username} módosította a múltbéli események láthatóságát, így: ${rules}";
static m13(username) => "${username} módosított a csatlakozási szabályokat"; static m13(username) => "${username} módosított a csatlakozási szabályokat";
static m14(username, joinRules) => "${username} módosította a csatlakozási szabályokat, így: ${joinRules}"; static m14(username, joinRules) =>
"${username} módosította a csatlakozási szabályokat, így: ${joinRules}";
static m15(username) => "${username} módosította a profil képét"; static m15(username) => "${username} módosította a profil képét";
@ -67,11 +76,13 @@ class MessageLookup extends MessageLookupByLibrary {
static m24(displayname) => "Csoport ${displayname}-vel"; static m24(displayname) => "Csoport ${displayname}-vel";
static m25(username, targetName) => "${username} visszavonta ${targetName} meghívását"; static m25(username, targetName) =>
"${username} visszavonta ${targetName} meghívását";
static m26(groupName) => "Ismerős meghívása a ${groupName} csoportba"; static m26(groupName) => "Ismerős meghívása a ${groupName} csoportba";
static m27(username, link) => "${username} meghívott a FluffyChatre. \n1. FluffyChat telepítése: http://fluffy.chat \n2. Jelentkezz be vagy regisztrálj. \n3. Nyisd meg a meghívó linket: ${link}"; static m27(username, link) =>
"${username} meghívott a FluffyChatre. \n1. FluffyChat telepítése: http://fluffy.chat \n2. Jelentkezz be vagy regisztrálj. \n3. Nyisd meg a meghívó linket: ${link}";
static m28(username, targetName) => "${username} meghívta ${targetName}-t"; static m28(username, targetName) => "${username} meghívta ${targetName}-t";
@ -79,7 +90,8 @@ class MessageLookup extends MessageLookupByLibrary {
static m30(username, targetName) => "${username} kirúgta ${targetName}-t"; static m30(username, targetName) => "${username} kirúgta ${targetName}-t";
static m31(username, targetName) => "${username} kirúgta és kitiltotta ${targetName}-t"; static m31(username, targetName) =>
"${username} kirúgta és kitiltotta ${targetName}-t";
static m32(localizedTimeShort) => "Utoljára aktív: ${localizedTimeShort}"; static m32(localizedTimeShort) => "Utoljára aktív: ${localizedTimeShort}";
@ -99,7 +111,8 @@ class MessageLookup extends MessageLookupByLibrary {
static m40(username) => "${username} látta"; static m40(username) => "${username} látta";
static m41(username, count) => "${username} és ${count} másik résztvevő látta"; static m41(username, count) =>
"${username} és ${count} másik résztvevő látta";
static m42(username, username2) => "${username} és ${username2} látta"; static m42(username, username2) => "${username} és ${username2} látta";
@ -117,7 +130,8 @@ class MessageLookup extends MessageLookupByLibrary {
static m49(hours12, hours24, minutes, suffix) => "${hours24}:${minutes}"; static m49(hours12, hours24, minutes, suffix) => "${hours24}:${minutes}";
static m50(username, targetName) => "${username} feloldotta ${targetName} kitiltását"; static m50(username, targetName) =>
"${username} feloldotta ${targetName} kitiltását";
static m51(type) => "Ismeretlen esemény \'${type}\'"; static m51(type) => "Ismeretlen esemény \'${type}\'";
@ -125,9 +139,11 @@ class MessageLookup extends MessageLookupByLibrary {
static m53(unreadEvents) => "${unreadEvents} olvasatlan üzenet"; static m53(unreadEvents) => "${unreadEvents} olvasatlan üzenet";
static m54(unreadEvents, unreadChats) => "${unreadEvents} olvastlan üzenet van ${unreadChats}-ban"; static m54(unreadEvents, unreadChats) =>
"${unreadEvents} olvastlan üzenet van ${unreadChats}-ban";
static m55(username, count) => "${username} és ${count} másik résztvevő gépel..."; static m55(username, count) =>
"${username} és ${count} másik résztvevő gépel...";
static m56(username, username2) => "${username} és ${username2} gépel..."; static m56(username, username2) => "${username} és ${username2} gépel...";
@ -138,251 +154,376 @@ class MessageLookup extends MessageLookupByLibrary {
static m59(username, type) => "${username} ${type} eseményt küldött"; static m59(username, type) => "${username} ${type} eseményt küldött";
final messages = _notInlinedMessages(_notInlinedMessages); final messages = _notInlinedMessages(_notInlinedMessages);
static _notInlinedMessages(_) => <String, Function> { static _notInlinedMessages(_) => <String, Function>{
"(Optional) Group name" : MessageLookupByLibrary.simpleMessage("(Nem kötelező) Csoport név"), "(Optional) Group name":
"About" : MessageLookupByLibrary.simpleMessage("Névjegy"), MessageLookupByLibrary.simpleMessage("(Nem kötelező) Csoport név"),
"Account" : MessageLookupByLibrary.simpleMessage("Fiók"), "About": MessageLookupByLibrary.simpleMessage("Névjegy"),
"Account informations" : MessageLookupByLibrary.simpleMessage("Fiók információk"), "Account": MessageLookupByLibrary.simpleMessage("Fiók"),
"Add a group description" : MessageLookupByLibrary.simpleMessage("Csoport leírás hozzáadása"), "Account informations":
"Admin" : MessageLookupByLibrary.simpleMessage("Admin"), MessageLookupByLibrary.simpleMessage("Fiók információk"),
"Already have an account?" : MessageLookupByLibrary.simpleMessage("Van már fiókod?"), "Add a group description":
"Anyone can join" : MessageLookupByLibrary.simpleMessage("Bárki csatlakozhat"), MessageLookupByLibrary.simpleMessage("Csoport leírás hozzáadása"),
"Archive" : MessageLookupByLibrary.simpleMessage("Archív"), "Admin": MessageLookupByLibrary.simpleMessage("Admin"),
"Archived Room" : MessageLookupByLibrary.simpleMessage("Archivált szoba"), "Already have an account?":
"Are guest users allowed to join" : MessageLookupByLibrary.simpleMessage("Csatlakozhatnak-e vendég felhasználók"), MessageLookupByLibrary.simpleMessage("Van már fiókod?"),
"Are you sure?" : MessageLookupByLibrary.simpleMessage("Biztos?"), "Anyone can join":
"Authentication" : MessageLookupByLibrary.simpleMessage("Hitelesítés"), MessageLookupByLibrary.simpleMessage("Bárki csatlakozhat"),
"Avatar has been changed" : MessageLookupByLibrary.simpleMessage("Az avatar megváltozott"), "Archive": MessageLookupByLibrary.simpleMessage("Archív"),
"Ban from chat" : MessageLookupByLibrary.simpleMessage("Csevegésből kitiltás"), "Archived Room":
"Banned" : MessageLookupByLibrary.simpleMessage("Kitiltva"), MessageLookupByLibrary.simpleMessage("Archivált szoba"),
"Cancel" : MessageLookupByLibrary.simpleMessage("Mégsem"), "Are guest users allowed to join": MessageLookupByLibrary.simpleMessage(
"Change the homeserver" : MessageLookupByLibrary.simpleMessage("Matrix szerver váltás"), "Csatlakozhatnak-e vendég felhasználók"),
"Change the name of the group" : MessageLookupByLibrary.simpleMessage("Csoport nevének módosítása"), "Are you sure?": MessageLookupByLibrary.simpleMessage("Biztos?"),
"Change the server" : MessageLookupByLibrary.simpleMessage("Szerver módosítás"), "Authentication": MessageLookupByLibrary.simpleMessage("Hitelesítés"),
"Change wallpaper" : MessageLookupByLibrary.simpleMessage("Háttér módosítása"), "Avatar has been changed":
"Change your style" : MessageLookupByLibrary.simpleMessage("Stílus módosítása"), MessageLookupByLibrary.simpleMessage("Az avatar megváltozott"),
"Changelog" : MessageLookupByLibrary.simpleMessage("Változás napló"), "Ban from chat":
"Chat" : MessageLookupByLibrary.simpleMessage("Csevegés"), MessageLookupByLibrary.simpleMessage("Csevegésből kitiltás"),
"Chat details" : MessageLookupByLibrary.simpleMessage("Csevegés részletei"), "Banned": MessageLookupByLibrary.simpleMessage("Kitiltva"),
"Choose a strong password" : MessageLookupByLibrary.simpleMessage("Válassz egy erős jelszót"), "Cancel": MessageLookupByLibrary.simpleMessage("Mégsem"),
"Choose a username" : MessageLookupByLibrary.simpleMessage("Válassz egy felhasználónevet"), "Change the homeserver":
"Close" : MessageLookupByLibrary.simpleMessage("Bezárás"), MessageLookupByLibrary.simpleMessage("Matrix szerver váltás"),
"Confirm" : MessageLookupByLibrary.simpleMessage("Megerősítés"), "Change the name of the group":
"Connect" : MessageLookupByLibrary.simpleMessage("Csatlakozás"), MessageLookupByLibrary.simpleMessage("Csoport nevének módosítása"),
"Connection attempt failed" : MessageLookupByLibrary.simpleMessage("Csatlakozási kísérlet meghiusult"), "Change the server":
"Contact has been invited to the group" : MessageLookupByLibrary.simpleMessage("Meghívtad ismerősödet a csoportba"), MessageLookupByLibrary.simpleMessage("Szerver módosítás"),
"Content viewer" : MessageLookupByLibrary.simpleMessage("Tartalom nézegető"), "Change wallpaper":
"Copied to clipboard" : MessageLookupByLibrary.simpleMessage("Vágólapra másolva"), MessageLookupByLibrary.simpleMessage("Háttér módosítása"),
"Copy" : MessageLookupByLibrary.simpleMessage("Másolás"), "Change your style":
"Could not set avatar" : MessageLookupByLibrary.simpleMessage("Nem sikerült beállítani a képet"), MessageLookupByLibrary.simpleMessage("Stílus módosítása"),
"Could not set displayname" : MessageLookupByLibrary.simpleMessage("Nem sikerült beállítani a megjelenítési nevet"), "Changelog": MessageLookupByLibrary.simpleMessage("Változás napló"),
"Create" : MessageLookupByLibrary.simpleMessage("Létrehozás"), "Chat": MessageLookupByLibrary.simpleMessage("Csevegés"),
"Create account now" : MessageLookupByLibrary.simpleMessage("Új fiók létrehozása"), "Chat details":
"Create new group" : MessageLookupByLibrary.simpleMessage("Új csoport létrehozása"), MessageLookupByLibrary.simpleMessage("Csevegés részletei"),
"Dark" : MessageLookupByLibrary.simpleMessage("Sötét"), "Choose a strong password":
"Delete" : MessageLookupByLibrary.simpleMessage("Törlés"), MessageLookupByLibrary.simpleMessage("Válassz egy erős jelszót"),
"Delete message" : MessageLookupByLibrary.simpleMessage("Üzenet törlése"), "Choose a username": MessageLookupByLibrary.simpleMessage(
"Deny" : MessageLookupByLibrary.simpleMessage("Elutasítás"), "Válassz egy felhasználónevet"),
"Device" : MessageLookupByLibrary.simpleMessage("Eszköz"), "Close": MessageLookupByLibrary.simpleMessage("Bezárás"),
"Devices" : MessageLookupByLibrary.simpleMessage("Eszközök"), "Confirm": MessageLookupByLibrary.simpleMessage("Megerősítés"),
"Discard picture" : MessageLookupByLibrary.simpleMessage("Kép elvetése"), "Connect": MessageLookupByLibrary.simpleMessage("Csatlakozás"),
"Displayname has been changed" : MessageLookupByLibrary.simpleMessage("Megjelenítési név megváltozott"), "Connection attempt failed": MessageLookupByLibrary.simpleMessage(
"Donate" : MessageLookupByLibrary.simpleMessage("Támogatom"), "Csatlakozási kísérlet meghiusult"),
"Download file" : MessageLookupByLibrary.simpleMessage("File letöltése"), "Contact has been invited to the group":
"Edit Jitsi instance" : MessageLookupByLibrary.simpleMessage("Jitsi példány módosítása"), MessageLookupByLibrary.simpleMessage(
"Edit displayname" : MessageLookupByLibrary.simpleMessage("Megjelenítési név módosítása"), "Meghívtad ismerősödet a csoportba"),
"Emote Settings" : MessageLookupByLibrary.simpleMessage("Hangulatjel beállíŧások"), "Content viewer":
"Emote shortcode" : MessageLookupByLibrary.simpleMessage("Rövid kód a hangulatjelhez"), MessageLookupByLibrary.simpleMessage("Tartalom nézegető"),
"Empty chat" : MessageLookupByLibrary.simpleMessage("Üres csevegés"), "Copied to clipboard":
"Encryption algorithm" : MessageLookupByLibrary.simpleMessage("Titkosítási algoritmus"), MessageLookupByLibrary.simpleMessage("Vágólapra másolva"),
"Encryption is not enabled" : MessageLookupByLibrary.simpleMessage("Titkosítás nincs engedélyezve"), "Copy": MessageLookupByLibrary.simpleMessage("Másolás"),
"End to end encryption is currently in Beta! Use at your own risk!" : MessageLookupByLibrary.simpleMessage("Végpontól-végpontig titkosítás egyelőre béta! Csak saját felelősségre!"), "Could not set avatar": MessageLookupByLibrary.simpleMessage(
"End-to-end encryption settings" : MessageLookupByLibrary.simpleMessage("Végpontól-végpontig titkosítás beállításai"), "Nem sikerült beállítani a képet"),
"Enter a group name" : MessageLookupByLibrary.simpleMessage("Adj meg egy csoport nevet"), "Could not set displayname": MessageLookupByLibrary.simpleMessage(
"Enter a username" : MessageLookupByLibrary.simpleMessage("Adj meg egy felhasználónevet"), "Nem sikerült beállítani a megjelenítési nevet"),
"Enter your homeserver" : MessageLookupByLibrary.simpleMessage("Add meg a Matrix szervered nevét"), "Create": MessageLookupByLibrary.simpleMessage("Létrehozás"),
"File name" : MessageLookupByLibrary.simpleMessage("Fájl név"), "Create account now":
"File size" : MessageLookupByLibrary.simpleMessage("Fájl méret"), MessageLookupByLibrary.simpleMessage("Új fiók létrehozása"),
"FluffyChat" : MessageLookupByLibrary.simpleMessage("FluffyChat"), "Create new group":
"Forward" : MessageLookupByLibrary.simpleMessage("Továbbítás"), MessageLookupByLibrary.simpleMessage("Új csoport létrehozása"),
"Friday" : MessageLookupByLibrary.simpleMessage("Péntek"), "Dark": MessageLookupByLibrary.simpleMessage("Sötét"),
"From joining" : MessageLookupByLibrary.simpleMessage("Belépés óta"), "Delete": MessageLookupByLibrary.simpleMessage("Törlés"),
"From the invitation" : MessageLookupByLibrary.simpleMessage("Meghívás óta"), "Delete message":
"Group" : MessageLookupByLibrary.simpleMessage("Csoport"), MessageLookupByLibrary.simpleMessage("Üzenet törlése"),
"Group description" : MessageLookupByLibrary.simpleMessage("Csoport leírás"), "Deny": MessageLookupByLibrary.simpleMessage("Elutasítás"),
"Group description has been changed" : MessageLookupByLibrary.simpleMessage("Csoport leírása megváltozott"), "Device": MessageLookupByLibrary.simpleMessage("Eszköz"),
"Group is public" : MessageLookupByLibrary.simpleMessage("A csoport publikus"), "Devices": MessageLookupByLibrary.simpleMessage("Eszközök"),
"Guests are forbidden" : MessageLookupByLibrary.simpleMessage("Vendégeknek tilos a belépés"), "Discard picture": MessageLookupByLibrary.simpleMessage("Kép elvetése"),
"Guests can join" : MessageLookupByLibrary.simpleMessage("Vendégek csatlakozhatnak"), "Displayname has been changed": MessageLookupByLibrary.simpleMessage(
"Help" : MessageLookupByLibrary.simpleMessage("Segítség"), "Megjelenítési név megváltozott"),
"Homeserver is not compatible" : MessageLookupByLibrary.simpleMessage("Ez a Matrix szerver nem kompatibilis"), "Donate": MessageLookupByLibrary.simpleMessage("Támogatom"),
"How are you today?" : MessageLookupByLibrary.simpleMessage("Hogy vagy?"), "Download file": MessageLookupByLibrary.simpleMessage("File letöltése"),
"ID" : MessageLookupByLibrary.simpleMessage("ID"), "Edit Jitsi instance":
"Identity" : MessageLookupByLibrary.simpleMessage("Azonosság"), MessageLookupByLibrary.simpleMessage("Jitsi példány módosítása"),
"Invite contact" : MessageLookupByLibrary.simpleMessage("Ismerős meghívása"), "Edit displayname": MessageLookupByLibrary.simpleMessage(
"Invited" : MessageLookupByLibrary.simpleMessage("Meghívott"), "Megjelenítési név módosítása"),
"Invited users only" : MessageLookupByLibrary.simpleMessage("Csak meghívottak"), "Emote Settings":
"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("Úgy tűnik ügyelsz a magánszférádra és nincsenek google szolgáltatások telepítve. Hogy így is kapj azonnali értesítéseket javasoljuk a microG-t: https://microg.org/"), MessageLookupByLibrary.simpleMessage("Hangulatjel beállíŧások"),
"Kick from chat" : MessageLookupByLibrary.simpleMessage("Csevegésből kirúgás"), "Emote shortcode":
"Last seen IP" : MessageLookupByLibrary.simpleMessage("Utoljára látott IP"), MessageLookupByLibrary.simpleMessage("Rövid kód a hangulatjelhez"),
"Leave" : MessageLookupByLibrary.simpleMessage("Csevegés elhagyása"), "Empty chat": MessageLookupByLibrary.simpleMessage("Üres csevegés"),
"Left the chat" : MessageLookupByLibrary.simpleMessage("Elhagyta a csevegést"), "Encryption algorithm":
"License" : MessageLookupByLibrary.simpleMessage("Licenc"), MessageLookupByLibrary.simpleMessage("Titkosítási algoritmus"),
"Light" : MessageLookupByLibrary.simpleMessage("Világos"), "Encryption is not enabled": MessageLookupByLibrary.simpleMessage(
"Load more..." : MessageLookupByLibrary.simpleMessage("Továbbiak betöltése..."), "Titkosítás nincs engedélyezve"),
"Loading... Please wait" : MessageLookupByLibrary.simpleMessage("Betöltés... Kérlek várj"), "End to end encryption is currently in Beta! Use at your own risk!":
"Login" : MessageLookupByLibrary.simpleMessage("Bejelentkezés"), MessageLookupByLibrary.simpleMessage(
"Logout" : MessageLookupByLibrary.simpleMessage("Kijelentkezés"), "Végpontól-végpontig titkosítás egyelőre béta! Csak saját felelősségre!"),
"Make a moderator" : MessageLookupByLibrary.simpleMessage("Kinevezés moderátorrá"), "End-to-end encryption settings": MessageLookupByLibrary.simpleMessage(
"Make an admin" : MessageLookupByLibrary.simpleMessage("Kinevezés adminná"), "Végpontól-végpontig titkosítás beállításai"),
"Make sure the identifier is valid" : MessageLookupByLibrary.simpleMessage("Bizonyosodj meg az azonosító helyességéről"), "Enter a group name":
"Message will be removed for all participants" : MessageLookupByLibrary.simpleMessage("Az üzenet minden résztvevő számára törlődni fog"), MessageLookupByLibrary.simpleMessage("Adj meg egy csoport nevet"),
"Moderator" : MessageLookupByLibrary.simpleMessage("Moderátor"), "Enter a username": MessageLookupByLibrary.simpleMessage(
"Monday" : MessageLookupByLibrary.simpleMessage("Hétfő"), "Adj meg egy felhasználónevet"),
"Mute chat" : MessageLookupByLibrary.simpleMessage("Csevegés némítása"), "Enter your homeserver": MessageLookupByLibrary.simpleMessage(
"New message in FluffyChat" : MessageLookupByLibrary.simpleMessage("Új üzenet a FluffyChaten"), "Add meg a Matrix szervered nevét"),
"New private chat" : MessageLookupByLibrary.simpleMessage("Új privát csevegés"), "File name": MessageLookupByLibrary.simpleMessage("Fájl név"),
"No emotes found. 😕" : MessageLookupByLibrary.simpleMessage("Nincsenek hangulatjelek. 😕"), "File size": MessageLookupByLibrary.simpleMessage("Fájl méret"),
"No permission" : MessageLookupByLibrary.simpleMessage("Nincsenek engedélyek"), "FluffyChat": MessageLookupByLibrary.simpleMessage("FluffyChat"),
"No rooms found..." : MessageLookupByLibrary.simpleMessage("Nem találtam szobákat..."), "Forward": MessageLookupByLibrary.simpleMessage("Továbbítás"),
"None" : MessageLookupByLibrary.simpleMessage("Nincs"), "Friday": MessageLookupByLibrary.simpleMessage("Péntek"),
"Not supported in web" : MessageLookupByLibrary.simpleMessage("Nem támogatott a weben"), "From joining": MessageLookupByLibrary.simpleMessage("Belépés óta"),
"Oops something went wrong..." : MessageLookupByLibrary.simpleMessage("Hoppá, valami baj történt..."), "From the invitation":
"Open app to read messages" : MessageLookupByLibrary.simpleMessage("App megnyitása az üzenetek elolvasásához"), MessageLookupByLibrary.simpleMessage("Meghívás óta"),
"Open camera" : MessageLookupByLibrary.simpleMessage("Kamera megnyitása"), "Group": MessageLookupByLibrary.simpleMessage("Csoport"),
"Participating user devices" : MessageLookupByLibrary.simpleMessage("Résztvevő felhasználók eszközei"), "Group description":
"Password" : MessageLookupByLibrary.simpleMessage("Jelszó"), MessageLookupByLibrary.simpleMessage("Csoport leírás"),
"Pick image" : MessageLookupByLibrary.simpleMessage("Válassz egy képet"), "Group description has been changed":
"Please be aware that you need Pantalaimon to use end-to-end encryption for now." : MessageLookupByLibrary.simpleMessage("Tájékoztatlak, hogy egyelőre szükséged van a Pantalaimon-ra, hogy a végponttól-végpontig titkosítást hasnzáld."), MessageLookupByLibrary.simpleMessage(
"Please choose a username" : MessageLookupByLibrary.simpleMessage("Válassz egy felhasználónevet"), "Csoport leírása megváltozott"),
"Please enter a matrix identifier" : MessageLookupByLibrary.simpleMessage("Írj be egy Matrix azonosítót"), "Group is public":
"Please enter your password" : MessageLookupByLibrary.simpleMessage("Add meg a jelszavad"), MessageLookupByLibrary.simpleMessage("A csoport publikus"),
"Please enter your username" : MessageLookupByLibrary.simpleMessage("Add meg a felhasználónevedet"), "Guests are forbidden":
"Public Rooms" : MessageLookupByLibrary.simpleMessage("Publikus szoba"), MessageLookupByLibrary.simpleMessage("Vendégeknek tilos a belépés"),
"Recording" : MessageLookupByLibrary.simpleMessage("Felvétel"), "Guests can join":
"Rejoin" : MessageLookupByLibrary.simpleMessage("Újracsatlakozás"), MessageLookupByLibrary.simpleMessage("Vendégek csatlakozhatnak"),
"Remove" : MessageLookupByLibrary.simpleMessage("Eltávolítás"), "Help": MessageLookupByLibrary.simpleMessage("Segítség"),
"Remove all other devices" : MessageLookupByLibrary.simpleMessage("Minden más eszköz eltávolítása"), "Homeserver is not compatible": MessageLookupByLibrary.simpleMessage(
"Remove device" : MessageLookupByLibrary.simpleMessage("Eszköz eltávolítása"), "Ez a Matrix szerver nem kompatibilis"),
"Remove exile" : MessageLookupByLibrary.simpleMessage("Kitiltás feloldása"), "How are you today?":
"Remove message" : MessageLookupByLibrary.simpleMessage("Üzenet eltávolítása"), MessageLookupByLibrary.simpleMessage("Hogy vagy?"),
"Render rich message content" : MessageLookupByLibrary.simpleMessage("Formázott üzenetek megjelenítése"), "ID": MessageLookupByLibrary.simpleMessage("ID"),
"Reply" : MessageLookupByLibrary.simpleMessage("Válasz"), "Identity": MessageLookupByLibrary.simpleMessage("Azonosság"),
"Request permission" : MessageLookupByLibrary.simpleMessage("Jogosultság igénylése"), "Invite contact":
"Request to read older messages" : MessageLookupByLibrary.simpleMessage("Korábbi üzenetekhez való hozzáférés igénylése"), MessageLookupByLibrary.simpleMessage("Ismerős meghívása"),
"Revoke all permissions" : MessageLookupByLibrary.simpleMessage("Minden jogosultság megvonása"), "Invited": MessageLookupByLibrary.simpleMessage("Meghívott"),
"Saturday" : MessageLookupByLibrary.simpleMessage("Szombat"), "Invited users only":
"Search for a chat" : MessageLookupByLibrary.simpleMessage("Csevegés keresése"), MessageLookupByLibrary.simpleMessage("Csak meghívottak"),
"Send" : MessageLookupByLibrary.simpleMessage("Küldés"), "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/":
"Send a message" : MessageLookupByLibrary.simpleMessage("Üzenet küldése"), MessageLookupByLibrary.simpleMessage(
"Send file" : MessageLookupByLibrary.simpleMessage("Fájl küldése"), "Úgy tűnik ügyelsz a magánszférádra és nincsenek google szolgáltatások telepítve. Hogy így is kapj azonnali értesítéseket javasoljuk a microG-t: https://microg.org/"),
"Send image" : MessageLookupByLibrary.simpleMessage("Kép küldése"), "Kick from chat":
"Set a profile picture" : MessageLookupByLibrary.simpleMessage("Profilkép beállítása"), MessageLookupByLibrary.simpleMessage("Csevegésből kirúgás"),
"Set group description" : MessageLookupByLibrary.simpleMessage("Csoport leírás beállítása"), "Last seen IP":
"Set invitation link" : MessageLookupByLibrary.simpleMessage("Meghívó link beállítása"), MessageLookupByLibrary.simpleMessage("Utoljára látott IP"),
"Set status" : MessageLookupByLibrary.simpleMessage("Állapot beállítása"), "Leave": MessageLookupByLibrary.simpleMessage("Csevegés elhagyása"),
"Settings" : MessageLookupByLibrary.simpleMessage("Beállítások"), "Left the chat":
"Share" : MessageLookupByLibrary.simpleMessage("Megosztás"), MessageLookupByLibrary.simpleMessage("Elhagyta a csevegést"),
"Sign up" : MessageLookupByLibrary.simpleMessage("Felíratkozás"), "License": MessageLookupByLibrary.simpleMessage("Licenc"),
"Source code" : MessageLookupByLibrary.simpleMessage("Forráskód"), "Light": MessageLookupByLibrary.simpleMessage("Világos"),
"Start your first chat :-)" : MessageLookupByLibrary.simpleMessage("Kezdj el csevegni :-)"), "Load more...":
"Sunday" : MessageLookupByLibrary.simpleMessage("Vasárnap"), MessageLookupByLibrary.simpleMessage("Továbbiak betöltése..."),
"System" : MessageLookupByLibrary.simpleMessage("Rendszer"), "Loading... Please wait":
"Tap to show menu" : MessageLookupByLibrary.simpleMessage("Érintsd meg a menü megnyitásához"), MessageLookupByLibrary.simpleMessage("Betöltés... Kérlek várj"),
"The encryption has been corrupted" : MessageLookupByLibrary.simpleMessage("A titkosítás sérült és megbízhatatlan"), "Login": MessageLookupByLibrary.simpleMessage("Bejelentkezés"),
"This room has been archived." : MessageLookupByLibrary.simpleMessage("Ez a szoba archiválva lett."), "Logout": MessageLookupByLibrary.simpleMessage("Kijelentkezés"),
"Thursday" : MessageLookupByLibrary.simpleMessage("Csütörtök"), "Make a moderator":
"Try to send again" : MessageLookupByLibrary.simpleMessage("Próbáld újraküldeni"), MessageLookupByLibrary.simpleMessage("Kinevezés moderátorrá"),
"Tuesday" : MessageLookupByLibrary.simpleMessage("Kedd"), "Make an admin":
"Unknown device" : MessageLookupByLibrary.simpleMessage("Ismeretlen eszköz"), MessageLookupByLibrary.simpleMessage("Kinevezés adminná"),
"Unknown encryption algorithm" : MessageLookupByLibrary.simpleMessage("Ismeretlen titkosítási algoritmus"), "Make sure the identifier is valid":
"Unmute chat" : MessageLookupByLibrary.simpleMessage("Csevegés felhangosítása"), MessageLookupByLibrary.simpleMessage(
"Use Amoled compatible colors?" : MessageLookupByLibrary.simpleMessage("AmoLED kompatibilis színek használata?"), "Bizonyosodj meg az azonosító helyességéről"),
"Username" : MessageLookupByLibrary.simpleMessage("Felhasználónév"), "Message will be removed for all participants":
"Verify" : MessageLookupByLibrary.simpleMessage("Igazol"), MessageLookupByLibrary.simpleMessage(
"Video call" : MessageLookupByLibrary.simpleMessage("Videó hívás"), "Az üzenet minden résztvevő számára törlődni fog"),
"Visibility of the chat history" : MessageLookupByLibrary.simpleMessage("Csevegési előzmény láthatósága"), "Moderator": MessageLookupByLibrary.simpleMessage("Moderátor"),
"Visible for all participants" : MessageLookupByLibrary.simpleMessage("Minden résztvevő számára látható"), "Monday": MessageLookupByLibrary.simpleMessage("Hétfő"),
"Visible for everyone" : MessageLookupByLibrary.simpleMessage("Bárki számára látható"), "Mute chat": MessageLookupByLibrary.simpleMessage("Csevegés némítása"),
"Voice message" : MessageLookupByLibrary.simpleMessage("Hang üzenet"), "New message in FluffyChat":
"Wallpaper" : MessageLookupByLibrary.simpleMessage("Háttér"), MessageLookupByLibrary.simpleMessage("Új üzenet a FluffyChaten"),
"Wednesday" : MessageLookupByLibrary.simpleMessage("Szerda"), "New private chat":
"Welcome to the cutest instant messenger in the matrix network." : MessageLookupByLibrary.simpleMessage("Üdv a legcukibb üzenetküldő alkalmazásban az egész Matrixon!"), MessageLookupByLibrary.simpleMessage("Új privát csevegés"),
"Who is allowed to join this group" : MessageLookupByLibrary.simpleMessage("Ki csatlakozhat a csoporthoz"), "No emotes found. 😕":
"Write a message..." : MessageLookupByLibrary.simpleMessage("Írj egy üzenetet..."), MessageLookupByLibrary.simpleMessage("Nincsenek hangulatjelek. 😕"),
"Yes" : MessageLookupByLibrary.simpleMessage("Igen"), "No permission":
"You" : MessageLookupByLibrary.simpleMessage("Te"), MessageLookupByLibrary.simpleMessage("Nincsenek engedélyek"),
"You are invited to this chat" : MessageLookupByLibrary.simpleMessage("Meghívtak ebbe a csevegésbe"), "No rooms found...":
"You are no longer participating in this chat" : MessageLookupByLibrary.simpleMessage("Nem veszel részt ebben a csevegésben"), MessageLookupByLibrary.simpleMessage("Nem találtam szobákat..."),
"You cannot invite yourself" : MessageLookupByLibrary.simpleMessage("Nem tudod meghívni magadat"), "None": MessageLookupByLibrary.simpleMessage("Nincs"),
"You have been banned from this chat" : MessageLookupByLibrary.simpleMessage("Kitiltottak ebből a csevegésből"), "Not supported in web":
"You won\'t be able to disable the encryption anymore. Are you sure?" : MessageLookupByLibrary.simpleMessage("Többé nem tudod kikapcsolni a titkosítás. Biztosan folytatod?"), MessageLookupByLibrary.simpleMessage("Nem támogatott a weben"),
"Your own username" : MessageLookupByLibrary.simpleMessage("A saját felhasználóneved"), "Oops something went wrong...": MessageLookupByLibrary.simpleMessage(
"acceptedTheInvitation" : m0, "Hoppá, valami baj történt..."),
"activatedEndToEndEncryption" : m1, "Open app to read messages": MessageLookupByLibrary.simpleMessage(
"alias" : MessageLookupByLibrary.simpleMessage("álnév"), "App megnyitása az üzenetek elolvasásához"),
"bannedUser" : m2, "Open camera":
"byDefaultYouWillBeConnectedTo" : m3, MessageLookupByLibrary.simpleMessage("Kamera megnyitása"),
"changedTheChatAvatar" : m4, "Participating user devices": MessageLookupByLibrary.simpleMessage(
"changedTheChatDescriptionTo" : m5, "Résztvevő felhasználók eszközei"),
"changedTheChatNameTo" : m6, "Password": MessageLookupByLibrary.simpleMessage("Jelszó"),
"changedTheChatPermissions" : m7, "Pick image": MessageLookupByLibrary.simpleMessage("Válassz egy képet"),
"changedTheDisplaynameTo" : m8, "Please be aware that you need Pantalaimon to use end-to-end encryption for now.":
"changedTheGuestAccessRules" : m9, MessageLookupByLibrary.simpleMessage(
"changedTheGuestAccessRulesTo" : m10, "Tájékoztatlak, hogy egyelőre szükséged van a Pantalaimon-ra, hogy a végponttól-végpontig titkosítást hasnzáld."),
"changedTheHistoryVisibility" : m11, "Please choose a username": MessageLookupByLibrary.simpleMessage(
"changedTheHistoryVisibilityTo" : m12, "Válassz egy felhasználónevet"),
"changedTheJoinRules" : m13, "Please enter a matrix identifier":
"changedTheJoinRulesTo" : m14, MessageLookupByLibrary.simpleMessage(
"changedTheProfileAvatar" : m15, "Írj be egy Matrix azonosítót"),
"changedTheRoomAliases" : m16, "Please enter your password":
"changedTheRoomInvitationLink" : m17, MessageLookupByLibrary.simpleMessage("Add meg a jelszavad"),
"countParticipants" : m19, "Please enter your username": MessageLookupByLibrary.simpleMessage(
"createdTheChat" : m20, "Add meg a felhasználónevedet"),
"dateAndTimeOfDay" : m21, "Public Rooms": MessageLookupByLibrary.simpleMessage("Publikus szoba"),
"dateWithYear" : m22, "Recording": MessageLookupByLibrary.simpleMessage("Felvétel"),
"dateWithoutYear" : m23, "Rejoin": MessageLookupByLibrary.simpleMessage("Újracsatlakozás"),
"emoteExists" : MessageLookupByLibrary.simpleMessage("A hangulatjel már létezik!"), "Remove": MessageLookupByLibrary.simpleMessage("Eltávolítás"),
"emoteInvalid" : MessageLookupByLibrary.simpleMessage("Érvénytelen rövid kód!"), "Remove all other devices": MessageLookupByLibrary.simpleMessage(
"emoteWarnNeedToPick" : MessageLookupByLibrary.simpleMessage("A hangulatjelhez válassz egy képet és egy rövid kód"), "Minden más eszköz eltávolítása"),
"groupWith" : m24, "Remove device":
"hasWithdrawnTheInvitationFor" : m25, MessageLookupByLibrary.simpleMessage("Eszköz eltávolítása"),
"inviteContactToGroup" : m26, "Remove exile":
"inviteText" : m27, MessageLookupByLibrary.simpleMessage("Kitiltás feloldása"),
"invitedUser" : m28, "Remove message":
"is typing..." : MessageLookupByLibrary.simpleMessage("gépel..."), MessageLookupByLibrary.simpleMessage("Üzenet eltávolítása"),
"joinedTheChat" : m29, "Render rich message content": MessageLookupByLibrary.simpleMessage(
"kicked" : m30, "Formázott üzenetek megjelenítése"),
"kickedAndBanned" : m31, "Reply": MessageLookupByLibrary.simpleMessage("Válasz"),
"lastActiveAgo" : m32, "Request permission":
"loadCountMoreParticipants" : m33, MessageLookupByLibrary.simpleMessage("Jogosultság igénylése"),
"logInTo" : m34, "Request to read older messages": MessageLookupByLibrary.simpleMessage(
"numberSelected" : m35, "Korábbi üzenetekhez való hozzáférés igénylése"),
"ok" : MessageLookupByLibrary.simpleMessage("ok"), "Revoke all permissions": MessageLookupByLibrary.simpleMessage(
"play" : m36, "Minden jogosultság megvonása"),
"redactedAnEvent" : m37, "Saturday": MessageLookupByLibrary.simpleMessage("Szombat"),
"rejectedTheInvitation" : m38, "Search for a chat":
"removedBy" : m39, MessageLookupByLibrary.simpleMessage("Csevegés keresése"),
"seenByUser" : m40, "Send": MessageLookupByLibrary.simpleMessage("Küldés"),
"seenByUserAndCountOthers" : m41, "Send a message":
"seenByUserAndUser" : m42, MessageLookupByLibrary.simpleMessage("Üzenet küldése"),
"sentAFile" : m43, "Send file": MessageLookupByLibrary.simpleMessage("Fájl küldése"),
"sentAPicture" : m44, "Send image": MessageLookupByLibrary.simpleMessage("Kép küldése"),
"sentASticker" : m45, "Set a profile picture":
"sentAVideo" : m46, MessageLookupByLibrary.simpleMessage("Profilkép beállítása"),
"sentAnAudio" : m47, "Set group description":
"sharedTheLocation" : m48, MessageLookupByLibrary.simpleMessage("Csoport leírás beállítása"),
"timeOfDay" : m49, "Set invitation link":
"title" : MessageLookupByLibrary.simpleMessage("FluffyChat"), MessageLookupByLibrary.simpleMessage("Meghívó link beállítása"),
"unbannedUser" : m50, "Set status":
"unknownEvent" : m51, MessageLookupByLibrary.simpleMessage("Állapot beállítása"),
"unreadChats" : m52, "Settings": MessageLookupByLibrary.simpleMessage("Beállítások"),
"unreadMessages" : m53, "Share": MessageLookupByLibrary.simpleMessage("Megosztás"),
"unreadMessagesInChats" : m54, "Sign up": MessageLookupByLibrary.simpleMessage("Felíratkozás"),
"userAndOthersAreTyping" : m55, "Source code": MessageLookupByLibrary.simpleMessage("Forráskód"),
"userAndUserAreTyping" : m56, "Start your first chat :-)":
"userIsTyping" : m57, MessageLookupByLibrary.simpleMessage("Kezdj el csevegni :-)"),
"userLeftTheChat" : m58, "Sunday": MessageLookupByLibrary.simpleMessage("Vasárnap"),
"userSentUnknownEvent" : m59 "System": MessageLookupByLibrary.simpleMessage("Rendszer"),
}; "Tap to show menu": MessageLookupByLibrary.simpleMessage(
"Érintsd meg a menü megnyitásához"),
"The encryption has been corrupted":
MessageLookupByLibrary.simpleMessage(
"A titkosítás sérült és megbízhatatlan"),
"This room has been archived.":
MessageLookupByLibrary.simpleMessage("Ez a szoba archiválva lett."),
"Thursday": MessageLookupByLibrary.simpleMessage("Csütörtök"),
"Try to send again":
MessageLookupByLibrary.simpleMessage("Próbáld újraküldeni"),
"Tuesday": MessageLookupByLibrary.simpleMessage("Kedd"),
"Unknown device":
MessageLookupByLibrary.simpleMessage("Ismeretlen eszköz"),
"Unknown encryption algorithm": MessageLookupByLibrary.simpleMessage(
"Ismeretlen titkosítási algoritmus"),
"Unmute chat":
MessageLookupByLibrary.simpleMessage("Csevegés felhangosítása"),
"Use Amoled compatible colors?": MessageLookupByLibrary.simpleMessage(
"AmoLED kompatibilis színek használata?"),
"Username": MessageLookupByLibrary.simpleMessage("Felhasználónév"),
"Verify": MessageLookupByLibrary.simpleMessage("Igazol"),
"Video call": MessageLookupByLibrary.simpleMessage("Videó hívás"),
"Visibility of the chat history": MessageLookupByLibrary.simpleMessage(
"Csevegési előzmény láthatósága"),
"Visible for all participants": MessageLookupByLibrary.simpleMessage(
"Minden résztvevő számára látható"),
"Visible for everyone":
MessageLookupByLibrary.simpleMessage("Bárki számára látható"),
"Voice message": MessageLookupByLibrary.simpleMessage("Hang üzenet"),
"Wallpaper": MessageLookupByLibrary.simpleMessage("Háttér"),
"Wednesday": MessageLookupByLibrary.simpleMessage("Szerda"),
"Welcome to the cutest instant messenger in the matrix network.":
MessageLookupByLibrary.simpleMessage(
"Üdv a legcukibb üzenetküldő alkalmazásban az egész Matrixon!"),
"Who is allowed to join this group":
MessageLookupByLibrary.simpleMessage(
"Ki csatlakozhat a csoporthoz"),
"Write a message...":
MessageLookupByLibrary.simpleMessage("Írj egy üzenetet..."),
"Yes": MessageLookupByLibrary.simpleMessage("Igen"),
"You": MessageLookupByLibrary.simpleMessage("Te"),
"You are invited to this chat":
MessageLookupByLibrary.simpleMessage("Meghívtak ebbe a csevegésbe"),
"You are no longer participating in this chat":
MessageLookupByLibrary.simpleMessage(
"Nem veszel részt ebben a csevegésben"),
"You cannot invite yourself":
MessageLookupByLibrary.simpleMessage("Nem tudod meghívni magadat"),
"You have been banned from this chat":
MessageLookupByLibrary.simpleMessage(
"Kitiltottak ebből a csevegésből"),
"You won\'t be able to disable the encryption anymore. Are you sure?":
MessageLookupByLibrary.simpleMessage(
"Többé nem tudod kikapcsolni a titkosítás. Biztosan folytatod?"),
"Your own username":
MessageLookupByLibrary.simpleMessage("A saját felhasználóneved"),
"acceptedTheInvitation": m0,
"activatedEndToEndEncryption": m1,
"alias": MessageLookupByLibrary.simpleMessage("álnév"),
"bannedUser": m2,
"byDefaultYouWillBeConnectedTo": m3,
"changedTheChatAvatar": m4,
"changedTheChatDescriptionTo": m5,
"changedTheChatNameTo": m6,
"changedTheChatPermissions": m7,
"changedTheDisplaynameTo": m8,
"changedTheGuestAccessRules": m9,
"changedTheGuestAccessRulesTo": m10,
"changedTheHistoryVisibility": m11,
"changedTheHistoryVisibilityTo": m12,
"changedTheJoinRules": m13,
"changedTheJoinRulesTo": m14,
"changedTheProfileAvatar": m15,
"changedTheRoomAliases": m16,
"changedTheRoomInvitationLink": m17,
"countParticipants": m19,
"createdTheChat": m20,
"dateAndTimeOfDay": m21,
"dateWithYear": m22,
"dateWithoutYear": m23,
"emoteExists":
MessageLookupByLibrary.simpleMessage("A hangulatjel már létezik!"),
"emoteInvalid":
MessageLookupByLibrary.simpleMessage("Érvénytelen rövid kód!"),
"emoteWarnNeedToPick": MessageLookupByLibrary.simpleMessage(
"A hangulatjelhez válassz egy képet és egy rövid kód"),
"groupWith": m24,
"hasWithdrawnTheInvitationFor": m25,
"inviteContactToGroup": m26,
"inviteText": m27,
"invitedUser": m28,
"is typing...": MessageLookupByLibrary.simpleMessage("gépel..."),
"joinedTheChat": m29,
"kicked": m30,
"kickedAndBanned": m31,
"lastActiveAgo": m32,
"loadCountMoreParticipants": m33,
"logInTo": m34,
"numberSelected": m35,
"ok": MessageLookupByLibrary.simpleMessage("ok"),
"play": m36,
"redactedAnEvent": m37,
"rejectedTheInvitation": m38,
"removedBy": m39,
"seenByUser": m40,
"seenByUserAndCountOthers": m41,
"seenByUserAndUser": m42,
"sentAFile": m43,
"sentAPicture": m44,
"sentASticker": m45,
"sentAVideo": m46,
"sentAnAudio": m47,
"sharedTheLocation": m48,
"timeOfDay": m49,
"title": MessageLookupByLibrary.simpleMessage("FluffyChat"),
"unbannedUser": m50,
"unknownEvent": m51,
"unreadChats": m52,
"unreadMessages": m53,
"unreadMessagesInChats": m54,
"userAndOthersAreTyping": m55,
"userAndUserAreTyping": m56,
"userIsTyping": m57,
"userLeftTheChat": m58,
"userSentUnknownEvent": m59
};
} }

View File

@ -29,25 +29,31 @@ class MessageLookup extends MessageLookupByLibrary {
static m4(username) => "${username} changed the chat avatar"; static m4(username) => "${username} changed the chat avatar";
static m5(username, description) => "${username} changed the chat description to: \'${description}\'"; static m5(username, description) =>
"${username} changed the chat description to: \'${description}\'";
static m6(username, chatname) => "${username} changed the chat name to: \'${chatname}\'"; static m6(username, chatname) =>
"${username} changed the chat name to: \'${chatname}\'";
static m7(username) => "${username} changed the chat permissions"; static m7(username) => "${username} changed the chat permissions";
static m8(username, displayname) => "${username} changed the displayname to: ${displayname}"; static m8(username, displayname) =>
"${username} changed the displayname to: ${displayname}";
static m9(username) => "${username} changed the guest access rules"; static m9(username) => "${username} changed the guest access rules";
static m10(username, rules) => "${username} changed the guest access rules to: ${rules}"; static m10(username, rules) =>
"${username} changed the guest access rules to: ${rules}";
static m11(username) => "${username} changed the history visibility"; static m11(username) => "${username} changed the history visibility";
static m12(username, rules) => "${username} changed the history visibility to: ${rules}"; static m12(username, rules) =>
"${username} changed the history visibility to: ${rules}";
static m13(username) => "${username} changed the join rules"; static m13(username) => "${username} changed the join rules";
static m14(username, joinRules) => "${username} changed the join rules to: ${joinRules}"; static m14(username, joinRules) =>
"${username} changed the join rules to: ${joinRules}";
static m15(username) => "${username} changed the profile avatar"; static m15(username) => "${username} changed the profile avatar";
@ -69,11 +75,13 @@ class MessageLookup extends MessageLookupByLibrary {
static m24(displayname) => "Group with ${displayname}"; static m24(displayname) => "Group with ${displayname}";
static m25(username, targetName) => "${username} has withdrawn the invitation for ${targetName}"; static m25(username, targetName) =>
"${username} has withdrawn the invitation for ${targetName}";
static m26(groupName) => "Invite contact to ${groupName}"; static m26(groupName) => "Invite contact to ${groupName}";
static m27(username, link) => "${username} invited you to FluffyChat. \n1. Install FluffyChat: http://fluffy.chat \n2. Sign up or sign in \n3. Open the invite link: ${link}"; static m27(username, link) =>
"${username} invited you to FluffyChat. \n1. Install FluffyChat: http://fluffy.chat \n2. Sign up or sign in \n3. Open the invite link: ${link}";
static m28(username, targetName) => "${username} invited ${targetName}"; static m28(username, targetName) => "${username} invited ${targetName}";
@ -81,7 +89,8 @@ class MessageLookup extends MessageLookupByLibrary {
static m30(username, targetName) => "${username} kicked ${targetName}"; static m30(username, targetName) => "${username} kicked ${targetName}";
static m31(username, targetName) => "${username} kicked and banned ${targetName}"; static m31(username, targetName) =>
"${username} kicked and banned ${targetName}";
static m32(localizedTimeShort) => "Last active: ${localizedTimeShort}"; static m32(localizedTimeShort) => "Last active: ${localizedTimeShort}";
@ -117,7 +126,8 @@ class MessageLookup extends MessageLookupByLibrary {
static m48(username) => "${username} shared the location"; static m48(username) => "${username} shared the location";
static m49(hours12, hours24, minutes, suffix) => "${hours12}:${minutes} ${suffix}"; static m49(hours12, hours24, minutes, suffix) =>
"${hours12}:${minutes} ${suffix}";
static m50(username, targetName) => "${username} unbanned ${targetName}"; static m50(username, targetName) => "${username} unbanned ${targetName}";
@ -127,11 +137,14 @@ class MessageLookup extends MessageLookupByLibrary {
static m53(unreadEvents) => "${unreadEvents} unread messages"; static m53(unreadEvents) => "${unreadEvents} unread messages";
static m54(unreadEvents, unreadChats) => "${unreadEvents} unread messages in ${unreadChats} chats"; static m54(unreadEvents, unreadChats) =>
"${unreadEvents} unread messages in ${unreadChats} chats";
static m55(username, count) => "${username} and ${count} others are typing..."; static m55(username, count) =>
"${username} and ${count} others are typing...";
static m56(username, username2) => "${username} and ${username2} are typing..."; static m56(username, username2) =>
"${username} and ${username2} are typing...";
static m57(username) => "${username} is typing..."; static m57(username) => "${username} is typing...";
@ -140,254 +153,370 @@ class MessageLookup extends MessageLookupByLibrary {
static m59(username, type) => "${username} sent a ${type} event"; static m59(username, type) => "${username} sent a ${type} event";
final messages = _notInlinedMessages(_notInlinedMessages); final messages = _notInlinedMessages(_notInlinedMessages);
static _notInlinedMessages(_) => <String, Function> { static _notInlinedMessages(_) => <String, Function>{
"(Optional) Group name" : MessageLookupByLibrary.simpleMessage("(Optional) Group name"), "(Optional) Group name":
"About" : MessageLookupByLibrary.simpleMessage("About"), MessageLookupByLibrary.simpleMessage("(Optional) Group name"),
"Account" : MessageLookupByLibrary.simpleMessage("Account"), "About": MessageLookupByLibrary.simpleMessage("About"),
"Account informations" : MessageLookupByLibrary.simpleMessage("Account informations"), "Account": MessageLookupByLibrary.simpleMessage("Account"),
"Add a group description" : MessageLookupByLibrary.simpleMessage("Add a group description"), "Account informations":
"Admin" : MessageLookupByLibrary.simpleMessage("Admin"), MessageLookupByLibrary.simpleMessage("Account informations"),
"Already have an account?" : MessageLookupByLibrary.simpleMessage("Already have an account?"), "Add a group description":
"Anyone can join" : MessageLookupByLibrary.simpleMessage("Anyone can join"), MessageLookupByLibrary.simpleMessage("Add a group description"),
"Archive" : MessageLookupByLibrary.simpleMessage("Archive"), "Admin": MessageLookupByLibrary.simpleMessage("Admin"),
"Archived Room" : MessageLookupByLibrary.simpleMessage("Archived Room"), "Already have an account?":
"Are guest users allowed to join" : MessageLookupByLibrary.simpleMessage("Are guest users allowed to join"), MessageLookupByLibrary.simpleMessage("Already have an account?"),
"Are you sure?" : MessageLookupByLibrary.simpleMessage("Are you sure?"), "Anyone can join":
"Authentication" : MessageLookupByLibrary.simpleMessage("Authentication"), MessageLookupByLibrary.simpleMessage("Anyone can join"),
"Avatar has been changed" : MessageLookupByLibrary.simpleMessage("Avatar has been changed"), "Archive": MessageLookupByLibrary.simpleMessage("Archive"),
"Ban from chat" : MessageLookupByLibrary.simpleMessage("Ban from chat"), "Archived Room": MessageLookupByLibrary.simpleMessage("Archived Room"),
"Banned" : MessageLookupByLibrary.simpleMessage("Banned"), "Are guest users allowed to join": MessageLookupByLibrary.simpleMessage(
"Cancel" : MessageLookupByLibrary.simpleMessage("Cancel"), "Are guest users allowed to join"),
"Change the homeserver" : MessageLookupByLibrary.simpleMessage("Change the homeserver"), "Are you sure?": MessageLookupByLibrary.simpleMessage("Are you sure?"),
"Change the name of the group" : MessageLookupByLibrary.simpleMessage("Change the name of the group"), "Authentication":
"Change the server" : MessageLookupByLibrary.simpleMessage("Change the server"), MessageLookupByLibrary.simpleMessage("Authentication"),
"Change wallpaper" : MessageLookupByLibrary.simpleMessage("Change wallpaper"), "Avatar has been changed":
"Change your style" : MessageLookupByLibrary.simpleMessage("Change your style"), MessageLookupByLibrary.simpleMessage("Avatar has been changed"),
"Changelog" : MessageLookupByLibrary.simpleMessage("Changelog"), "Ban from chat": MessageLookupByLibrary.simpleMessage("Ban from chat"),
"Chat" : MessageLookupByLibrary.simpleMessage("Chat"), "Banned": MessageLookupByLibrary.simpleMessage("Banned"),
"Chat details" : MessageLookupByLibrary.simpleMessage("Chat details"), "Cancel": MessageLookupByLibrary.simpleMessage("Cancel"),
"Choose a strong password" : MessageLookupByLibrary.simpleMessage("Choose a strong password"), "Change the homeserver":
"Choose a username" : MessageLookupByLibrary.simpleMessage("Choose a username"), MessageLookupByLibrary.simpleMessage("Change the homeserver"),
"Close" : MessageLookupByLibrary.simpleMessage("Close"), "Change the name of the group": MessageLookupByLibrary.simpleMessage(
"Confirm" : MessageLookupByLibrary.simpleMessage("Confirm"), "Change the name of the group"),
"Connect" : MessageLookupByLibrary.simpleMessage("Connect"), "Change the server":
"Connection attempt failed" : MessageLookupByLibrary.simpleMessage("Connection attempt failed"), MessageLookupByLibrary.simpleMessage("Change the server"),
"Contact has been invited to the group" : MessageLookupByLibrary.simpleMessage("Contact has been invited to the group"), "Change wallpaper":
"Content viewer" : MessageLookupByLibrary.simpleMessage("Content viewer"), MessageLookupByLibrary.simpleMessage("Change wallpaper"),
"Copied to clipboard" : MessageLookupByLibrary.simpleMessage("Copied to clipboard"), "Change your style":
"Copy" : MessageLookupByLibrary.simpleMessage("Copy"), MessageLookupByLibrary.simpleMessage("Change your style"),
"Could not set avatar" : MessageLookupByLibrary.simpleMessage("Could not set avatar"), "Changelog": MessageLookupByLibrary.simpleMessage("Changelog"),
"Could not set displayname" : MessageLookupByLibrary.simpleMessage("Could not set displayname"), "Chat": MessageLookupByLibrary.simpleMessage("Chat"),
"Create" : MessageLookupByLibrary.simpleMessage("Create"), "Chat details": MessageLookupByLibrary.simpleMessage("Chat details"),
"Create account now" : MessageLookupByLibrary.simpleMessage("Create account now"), "Choose a strong password":
"Create new group" : MessageLookupByLibrary.simpleMessage("Create new group"), MessageLookupByLibrary.simpleMessage("Choose a strong password"),
"Currenlty active" : MessageLookupByLibrary.simpleMessage("Currenlty active"), "Choose a username":
"Dark" : MessageLookupByLibrary.simpleMessage("Dark"), MessageLookupByLibrary.simpleMessage("Choose a username"),
"Delete" : MessageLookupByLibrary.simpleMessage("Delete"), "Close": MessageLookupByLibrary.simpleMessage("Close"),
"Delete message" : MessageLookupByLibrary.simpleMessage("Delete message"), "Confirm": MessageLookupByLibrary.simpleMessage("Confirm"),
"Deny" : MessageLookupByLibrary.simpleMessage("Deny"), "Connect": MessageLookupByLibrary.simpleMessage("Connect"),
"Device" : MessageLookupByLibrary.simpleMessage("Device"), "Connection attempt failed":
"Devices" : MessageLookupByLibrary.simpleMessage("Devices"), MessageLookupByLibrary.simpleMessage("Connection attempt failed"),
"Discard picture" : MessageLookupByLibrary.simpleMessage("Discard picture"), "Contact has been invited to the group":
"Displayname has been changed" : MessageLookupByLibrary.simpleMessage("Displayname has been changed"), MessageLookupByLibrary.simpleMessage(
"Donate" : MessageLookupByLibrary.simpleMessage("Donate"), "Contact has been invited to the group"),
"Download file" : MessageLookupByLibrary.simpleMessage("Download file"), "Content viewer":
"Edit Jitsi instance" : MessageLookupByLibrary.simpleMessage("Edit Jitsi instance"), MessageLookupByLibrary.simpleMessage("Content viewer"),
"Edit displayname" : MessageLookupByLibrary.simpleMessage("Edit displayname"), "Copied to clipboard":
"Emote Settings" : MessageLookupByLibrary.simpleMessage("Emote Settings"), MessageLookupByLibrary.simpleMessage("Copied to clipboard"),
"Emote shortcode" : MessageLookupByLibrary.simpleMessage("Emote shortcode"), "Copy": MessageLookupByLibrary.simpleMessage("Copy"),
"Empty chat" : MessageLookupByLibrary.simpleMessage("Empty chat"), "Could not set avatar":
"Encryption algorithm" : MessageLookupByLibrary.simpleMessage("Encryption algorithm"), MessageLookupByLibrary.simpleMessage("Could not set avatar"),
"Encryption is not enabled" : MessageLookupByLibrary.simpleMessage("Encryption is not enabled"), "Could not set displayname":
"End to end encryption is currently in Beta! Use at your own risk!" : MessageLookupByLibrary.simpleMessage("End to end encryption is currently in Beta! Use at your own risk!"), MessageLookupByLibrary.simpleMessage("Could not set displayname"),
"End-to-end encryption settings" : MessageLookupByLibrary.simpleMessage("End-to-end encryption settings"), "Create": MessageLookupByLibrary.simpleMessage("Create"),
"Enter a group name" : MessageLookupByLibrary.simpleMessage("Enter a group name"), "Create account now":
"Enter a username" : MessageLookupByLibrary.simpleMessage("Enter a username"), MessageLookupByLibrary.simpleMessage("Create account now"),
"Enter your homeserver" : MessageLookupByLibrary.simpleMessage("Enter your homeserver"), "Create new group":
"File name" : MessageLookupByLibrary.simpleMessage("File name"), MessageLookupByLibrary.simpleMessage("Create new group"),
"File size" : MessageLookupByLibrary.simpleMessage("File size"), "Currenlty active":
"FluffyChat" : MessageLookupByLibrary.simpleMessage("FluffyChat"), MessageLookupByLibrary.simpleMessage("Currenlty active"),
"Forward" : MessageLookupByLibrary.simpleMessage("Forward"), "Dark": MessageLookupByLibrary.simpleMessage("Dark"),
"Friday" : MessageLookupByLibrary.simpleMessage("Friday"), "Delete": MessageLookupByLibrary.simpleMessage("Delete"),
"From joining" : MessageLookupByLibrary.simpleMessage("From joining"), "Delete message":
"From the invitation" : MessageLookupByLibrary.simpleMessage("From the invitation"), MessageLookupByLibrary.simpleMessage("Delete message"),
"Group" : MessageLookupByLibrary.simpleMessage("Group"), "Deny": MessageLookupByLibrary.simpleMessage("Deny"),
"Group description" : MessageLookupByLibrary.simpleMessage("Group description"), "Device": MessageLookupByLibrary.simpleMessage("Device"),
"Group description has been changed" : MessageLookupByLibrary.simpleMessage("Group description has been changed"), "Devices": MessageLookupByLibrary.simpleMessage("Devices"),
"Group is public" : MessageLookupByLibrary.simpleMessage("Group is public"), "Discard picture":
"Guests are forbidden" : MessageLookupByLibrary.simpleMessage("Guests are forbidden"), MessageLookupByLibrary.simpleMessage("Discard picture"),
"Guests can join" : MessageLookupByLibrary.simpleMessage("Guests can join"), "Displayname has been changed": MessageLookupByLibrary.simpleMessage(
"Help" : MessageLookupByLibrary.simpleMessage("Help"), "Displayname has been changed"),
"Homeserver is not compatible" : MessageLookupByLibrary.simpleMessage("Homeserver is not compatible"), "Donate": MessageLookupByLibrary.simpleMessage("Donate"),
"How are you today?" : MessageLookupByLibrary.simpleMessage("How are you today?"), "Download file": MessageLookupByLibrary.simpleMessage("Download file"),
"ID" : MessageLookupByLibrary.simpleMessage("ID"), "Edit Jitsi instance":
"Identity" : MessageLookupByLibrary.simpleMessage("Identity"), MessageLookupByLibrary.simpleMessage("Edit Jitsi instance"),
"Invite contact" : MessageLookupByLibrary.simpleMessage("Invite contact"), "Edit displayname":
"Invited" : MessageLookupByLibrary.simpleMessage("Invited"), MessageLookupByLibrary.simpleMessage("Edit displayname"),
"Invited users only" : MessageLookupByLibrary.simpleMessage("Invited users only"), "Emote Settings":
"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/"), MessageLookupByLibrary.simpleMessage("Emote Settings"),
"Kick from chat" : MessageLookupByLibrary.simpleMessage("Kick from chat"), "Emote shortcode":
"Last seen IP" : MessageLookupByLibrary.simpleMessage("Last seen IP"), MessageLookupByLibrary.simpleMessage("Emote shortcode"),
"Leave" : MessageLookupByLibrary.simpleMessage("Leave"), "Empty chat": MessageLookupByLibrary.simpleMessage("Empty chat"),
"Left the chat" : MessageLookupByLibrary.simpleMessage("Left the chat"), "Encryption algorithm":
"License" : MessageLookupByLibrary.simpleMessage("License"), MessageLookupByLibrary.simpleMessage("Encryption algorithm"),
"Light" : MessageLookupByLibrary.simpleMessage("Light"), "Encryption is not enabled":
"Load more..." : MessageLookupByLibrary.simpleMessage("Load more..."), MessageLookupByLibrary.simpleMessage("Encryption is not enabled"),
"Loading... Please wait" : MessageLookupByLibrary.simpleMessage("Loading... Please wait"), "End to end encryption is currently in Beta! Use at your own risk!":
"Login" : MessageLookupByLibrary.simpleMessage("Login"), MessageLookupByLibrary.simpleMessage(
"Logout" : MessageLookupByLibrary.simpleMessage("Logout"), "End to end encryption is currently in Beta! Use at your own risk!"),
"Make a moderator" : MessageLookupByLibrary.simpleMessage("Make a moderator"), "End-to-end encryption settings": MessageLookupByLibrary.simpleMessage(
"Make an admin" : MessageLookupByLibrary.simpleMessage("Make an admin"), "End-to-end encryption settings"),
"Make sure the identifier is valid" : MessageLookupByLibrary.simpleMessage("Make sure the identifier is valid"), "Enter a group name":
"Message will be removed for all participants" : MessageLookupByLibrary.simpleMessage("Message will be removed for all participants"), MessageLookupByLibrary.simpleMessage("Enter a group name"),
"Moderator" : MessageLookupByLibrary.simpleMessage("Moderator"), "Enter a username":
"Monday" : MessageLookupByLibrary.simpleMessage("Monday"), MessageLookupByLibrary.simpleMessage("Enter a username"),
"Mute chat" : MessageLookupByLibrary.simpleMessage("Mute chat"), "Enter your homeserver":
"New message in FluffyChat" : MessageLookupByLibrary.simpleMessage("New message in FluffyChat"), MessageLookupByLibrary.simpleMessage("Enter your homeserver"),
"New private chat" : MessageLookupByLibrary.simpleMessage("New private chat"), "File name": MessageLookupByLibrary.simpleMessage("File name"),
"No emotes found. 😕" : MessageLookupByLibrary.simpleMessage("No emotes found. 😕"), "File size": MessageLookupByLibrary.simpleMessage("File size"),
"No permission" : MessageLookupByLibrary.simpleMessage("No permission"), "FluffyChat": MessageLookupByLibrary.simpleMessage("FluffyChat"),
"No rooms found..." : MessageLookupByLibrary.simpleMessage("No rooms found..."), "Forward": MessageLookupByLibrary.simpleMessage("Forward"),
"None" : MessageLookupByLibrary.simpleMessage("None"), "Friday": MessageLookupByLibrary.simpleMessage("Friday"),
"Not supported in web" : MessageLookupByLibrary.simpleMessage("Not supported in web"), "From joining": MessageLookupByLibrary.simpleMessage("From joining"),
"Oops something went wrong..." : MessageLookupByLibrary.simpleMessage("Oops something went wrong..."), "From the invitation":
"Open app to read messages" : MessageLookupByLibrary.simpleMessage("Open app to read messages"), MessageLookupByLibrary.simpleMessage("From the invitation"),
"Open camera" : MessageLookupByLibrary.simpleMessage("Open camera"), "Group": MessageLookupByLibrary.simpleMessage("Group"),
"Participating user devices" : MessageLookupByLibrary.simpleMessage("Participating user devices"), "Group description":
"Password" : MessageLookupByLibrary.simpleMessage("Password"), MessageLookupByLibrary.simpleMessage("Group description"),
"Pick image" : MessageLookupByLibrary.simpleMessage("Pick image"), "Group description has been changed":
"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."), MessageLookupByLibrary.simpleMessage(
"Please choose a username" : MessageLookupByLibrary.simpleMessage("Please choose a username"), "Group description has been changed"),
"Please enter a matrix identifier" : MessageLookupByLibrary.simpleMessage("Please enter a matrix identifier"), "Group is public":
"Please enter your password" : MessageLookupByLibrary.simpleMessage("Please enter your password"), MessageLookupByLibrary.simpleMessage("Group is public"),
"Please enter your username" : MessageLookupByLibrary.simpleMessage("Please enter your username"), "Guests are forbidden":
"Public Rooms" : MessageLookupByLibrary.simpleMessage("Public Rooms"), MessageLookupByLibrary.simpleMessage("Guests are forbidden"),
"Recording" : MessageLookupByLibrary.simpleMessage("Recording"), "Guests can join":
"Rejoin" : MessageLookupByLibrary.simpleMessage("Rejoin"), MessageLookupByLibrary.simpleMessage("Guests can join"),
"Remove" : MessageLookupByLibrary.simpleMessage("Remove"), "Help": MessageLookupByLibrary.simpleMessage("Help"),
"Remove all other devices" : MessageLookupByLibrary.simpleMessage("Remove all other devices"), "Homeserver is not compatible": MessageLookupByLibrary.simpleMessage(
"Remove device" : MessageLookupByLibrary.simpleMessage("Remove device"), "Homeserver is not compatible"),
"Remove exile" : MessageLookupByLibrary.simpleMessage("Remove exile"), "How are you today?":
"Remove message" : MessageLookupByLibrary.simpleMessage("Remove message"), MessageLookupByLibrary.simpleMessage("How are you today?"),
"Render rich message content" : MessageLookupByLibrary.simpleMessage("Render rich message content"), "ID": MessageLookupByLibrary.simpleMessage("ID"),
"Reply" : MessageLookupByLibrary.simpleMessage("Reply"), "Identity": MessageLookupByLibrary.simpleMessage("Identity"),
"Request permission" : MessageLookupByLibrary.simpleMessage("Request permission"), "Invite contact":
"Request to read older messages" : MessageLookupByLibrary.simpleMessage("Request to read older messages"), MessageLookupByLibrary.simpleMessage("Invite contact"),
"Revoke all permissions" : MessageLookupByLibrary.simpleMessage("Revoke all permissions"), "Invited": MessageLookupByLibrary.simpleMessage("Invited"),
"Saturday" : MessageLookupByLibrary.simpleMessage("Saturday"), "Invited users only":
"Search for a chat" : MessageLookupByLibrary.simpleMessage("Search for a chat"), MessageLookupByLibrary.simpleMessage("Invited users only"),
"Seen a long time ago" : MessageLookupByLibrary.simpleMessage("Seen a long time ago"), "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/":
"Send" : MessageLookupByLibrary.simpleMessage("Send"), MessageLookupByLibrary.simpleMessage(
"Send a message" : MessageLookupByLibrary.simpleMessage("Send a message"), "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/"),
"Send file" : MessageLookupByLibrary.simpleMessage("Send file"), "Kick from chat":
"Send image" : MessageLookupByLibrary.simpleMessage("Send image"), MessageLookupByLibrary.simpleMessage("Kick from chat"),
"Set a profile picture" : MessageLookupByLibrary.simpleMessage("Set a profile picture"), "Last seen IP": MessageLookupByLibrary.simpleMessage("Last seen IP"),
"Set group description" : MessageLookupByLibrary.simpleMessage("Set group description"), "Leave": MessageLookupByLibrary.simpleMessage("Leave"),
"Set invitation link" : MessageLookupByLibrary.simpleMessage("Set invitation link"), "Left the chat": MessageLookupByLibrary.simpleMessage("Left the chat"),
"Set status" : MessageLookupByLibrary.simpleMessage("Set status"), "License": MessageLookupByLibrary.simpleMessage("License"),
"Settings" : MessageLookupByLibrary.simpleMessage("Settings"), "Light": MessageLookupByLibrary.simpleMessage("Light"),
"Share" : MessageLookupByLibrary.simpleMessage("Share"), "Load more...": MessageLookupByLibrary.simpleMessage("Load more..."),
"Sign up" : MessageLookupByLibrary.simpleMessage("Sign up"), "Loading... Please wait":
"Source code" : MessageLookupByLibrary.simpleMessage("Source code"), MessageLookupByLibrary.simpleMessage("Loading... Please wait"),
"Start your first chat :-)" : MessageLookupByLibrary.simpleMessage("Start your first chat :-)"), "Login": MessageLookupByLibrary.simpleMessage("Login"),
"Sunday" : MessageLookupByLibrary.simpleMessage("Sunday"), "Logout": MessageLookupByLibrary.simpleMessage("Logout"),
"System" : MessageLookupByLibrary.simpleMessage("System"), "Make a moderator":
"Tap to show menu" : MessageLookupByLibrary.simpleMessage("Tap to show menu"), MessageLookupByLibrary.simpleMessage("Make a moderator"),
"The encryption has been corrupted" : MessageLookupByLibrary.simpleMessage("The encryption has been corrupted"), "Make an admin": MessageLookupByLibrary.simpleMessage("Make an admin"),
"This room has been archived." : MessageLookupByLibrary.simpleMessage("This room has been archived."), "Make sure the identifier is valid":
"Thursday" : MessageLookupByLibrary.simpleMessage("Thursday"), MessageLookupByLibrary.simpleMessage(
"Try to send again" : MessageLookupByLibrary.simpleMessage("Try to send again"), "Make sure the identifier is valid"),
"Tuesday" : MessageLookupByLibrary.simpleMessage("Tuesday"), "Message will be removed for all participants":
"Unknown device" : MessageLookupByLibrary.simpleMessage("Unknown device"), MessageLookupByLibrary.simpleMessage(
"Unknown encryption algorithm" : MessageLookupByLibrary.simpleMessage("Unknown encryption algorithm"), "Message will be removed for all participants"),
"Unmute chat" : MessageLookupByLibrary.simpleMessage("Unmute chat"), "Moderator": MessageLookupByLibrary.simpleMessage("Moderator"),
"Use Amoled compatible colors?" : MessageLookupByLibrary.simpleMessage("Use Amoled compatible colors?"), "Monday": MessageLookupByLibrary.simpleMessage("Monday"),
"Username" : MessageLookupByLibrary.simpleMessage("Username"), "Mute chat": MessageLookupByLibrary.simpleMessage("Mute chat"),
"Verify" : MessageLookupByLibrary.simpleMessage("Verify"), "New message in FluffyChat":
"Video call" : MessageLookupByLibrary.simpleMessage("Video call"), MessageLookupByLibrary.simpleMessage("New message in FluffyChat"),
"Visibility of the chat history" : MessageLookupByLibrary.simpleMessage("Visibility of the chat history"), "New private chat":
"Visible for all participants" : MessageLookupByLibrary.simpleMessage("Visible for all participants"), MessageLookupByLibrary.simpleMessage("New private chat"),
"Visible for everyone" : MessageLookupByLibrary.simpleMessage("Visible for everyone"), "No emotes found. 😕":
"Voice message" : MessageLookupByLibrary.simpleMessage("Voice message"), MessageLookupByLibrary.simpleMessage("No emotes found. 😕"),
"Wallpaper" : MessageLookupByLibrary.simpleMessage("Wallpaper"), "No permission": MessageLookupByLibrary.simpleMessage("No permission"),
"Wednesday" : MessageLookupByLibrary.simpleMessage("Wednesday"), "No rooms found...":
"Welcome to the cutest instant messenger in the matrix network." : MessageLookupByLibrary.simpleMessage("Welcome to the cutest instant messenger in the matrix network."), MessageLookupByLibrary.simpleMessage("No rooms found..."),
"Who is allowed to join this group" : MessageLookupByLibrary.simpleMessage("Who is allowed to join this group"), "None": MessageLookupByLibrary.simpleMessage("None"),
"Write a message..." : MessageLookupByLibrary.simpleMessage("Write a message..."), "Not supported in web":
"Yes" : MessageLookupByLibrary.simpleMessage("Yes"), MessageLookupByLibrary.simpleMessage("Not supported in web"),
"You" : MessageLookupByLibrary.simpleMessage("You"), "Oops something went wrong...": MessageLookupByLibrary.simpleMessage(
"You are invited to this chat" : MessageLookupByLibrary.simpleMessage("You are invited to this chat"), "Oops something went wrong..."),
"You are no longer participating in this chat" : MessageLookupByLibrary.simpleMessage("You are no longer participating in this chat"), "Open app to read messages":
"You cannot invite yourself" : MessageLookupByLibrary.simpleMessage("You cannot invite yourself"), MessageLookupByLibrary.simpleMessage("Open app to read messages"),
"You have been banned from this chat" : MessageLookupByLibrary.simpleMessage("You have been banned from this chat"), "Open camera": MessageLookupByLibrary.simpleMessage("Open camera"),
"You won\'t be able to disable the encryption anymore. Are you sure?" : MessageLookupByLibrary.simpleMessage("You won\'t be able to disable the encryption anymore. Are you sure?"), "Participating user devices":
"Your own username" : MessageLookupByLibrary.simpleMessage("Your own username"), MessageLookupByLibrary.simpleMessage("Participating user devices"),
"acceptedTheInvitation" : m0, "Password": MessageLookupByLibrary.simpleMessage("Password"),
"activatedEndToEndEncryption" : m1, "Pick image": MessageLookupByLibrary.simpleMessage("Pick image"),
"alias" : MessageLookupByLibrary.simpleMessage("alias"), "Please be aware that you need Pantalaimon to use end-to-end encryption for now.":
"bannedUser" : m2, MessageLookupByLibrary.simpleMessage(
"byDefaultYouWillBeConnectedTo" : m3, "Please be aware that you need Pantalaimon to use end-to-end encryption for now."),
"changedTheChatAvatar" : m4, "Please choose a username":
"changedTheChatDescriptionTo" : m5, MessageLookupByLibrary.simpleMessage("Please choose a username"),
"changedTheChatNameTo" : m6, "Please enter a matrix identifier":
"changedTheChatPermissions" : m7, MessageLookupByLibrary.simpleMessage(
"changedTheDisplaynameTo" : m8, "Please enter a matrix identifier"),
"changedTheGuestAccessRules" : m9, "Please enter your password":
"changedTheGuestAccessRulesTo" : m10, MessageLookupByLibrary.simpleMessage("Please enter your password"),
"changedTheHistoryVisibility" : m11, "Please enter your username":
"changedTheHistoryVisibilityTo" : m12, MessageLookupByLibrary.simpleMessage("Please enter your username"),
"changedTheJoinRules" : m13, "Public Rooms": MessageLookupByLibrary.simpleMessage("Public Rooms"),
"changedTheJoinRulesTo" : m14, "Recording": MessageLookupByLibrary.simpleMessage("Recording"),
"changedTheProfileAvatar" : m15, "Rejoin": MessageLookupByLibrary.simpleMessage("Rejoin"),
"changedTheRoomAliases" : m16, "Remove": MessageLookupByLibrary.simpleMessage("Remove"),
"changedTheRoomInvitationLink" : m17, "Remove all other devices":
"couldNotDecryptMessage" : m18, MessageLookupByLibrary.simpleMessage("Remove all other devices"),
"countParticipants" : m19, "Remove device": MessageLookupByLibrary.simpleMessage("Remove device"),
"createdTheChat" : m20, "Remove exile": MessageLookupByLibrary.simpleMessage("Remove exile"),
"dateAndTimeOfDay" : m21, "Remove message":
"dateWithYear" : m22, MessageLookupByLibrary.simpleMessage("Remove message"),
"dateWithoutYear" : m23, "Render rich message content":
"emoteExists" : MessageLookupByLibrary.simpleMessage("Emote already exists!"), MessageLookupByLibrary.simpleMessage("Render rich message content"),
"emoteInvalid" : MessageLookupByLibrary.simpleMessage("Invalid emote shortcode!"), "Reply": MessageLookupByLibrary.simpleMessage("Reply"),
"emoteWarnNeedToPick" : MessageLookupByLibrary.simpleMessage("You need to pick an emote shortcode and an image!"), "Request permission":
"groupWith" : m24, MessageLookupByLibrary.simpleMessage("Request permission"),
"hasWithdrawnTheInvitationFor" : m25, "Request to read older messages": MessageLookupByLibrary.simpleMessage(
"inviteContactToGroup" : m26, "Request to read older messages"),
"inviteText" : m27, "Revoke all permissions":
"invitedUser" : m28, MessageLookupByLibrary.simpleMessage("Revoke all permissions"),
"is typing..." : MessageLookupByLibrary.simpleMessage("is typing..."), "Saturday": MessageLookupByLibrary.simpleMessage("Saturday"),
"joinedTheChat" : m29, "Search for a chat":
"kicked" : m30, MessageLookupByLibrary.simpleMessage("Search for a chat"),
"kickedAndBanned" : m31, "Seen a long time ago":
"lastActiveAgo" : m32, MessageLookupByLibrary.simpleMessage("Seen a long time ago"),
"loadCountMoreParticipants" : m33, "Send": MessageLookupByLibrary.simpleMessage("Send"),
"logInTo" : m34, "Send a message":
"numberSelected" : m35, MessageLookupByLibrary.simpleMessage("Send a message"),
"ok" : MessageLookupByLibrary.simpleMessage("ok"), "Send file": MessageLookupByLibrary.simpleMessage("Send file"),
"play" : m36, "Send image": MessageLookupByLibrary.simpleMessage("Send image"),
"redactedAnEvent" : m37, "Set a profile picture":
"rejectedTheInvitation" : m38, MessageLookupByLibrary.simpleMessage("Set a profile picture"),
"removedBy" : m39, "Set group description":
"seenByUser" : m40, MessageLookupByLibrary.simpleMessage("Set group description"),
"seenByUserAndCountOthers" : m41, "Set invitation link":
"seenByUserAndUser" : m42, MessageLookupByLibrary.simpleMessage("Set invitation link"),
"sentAFile" : m43, "Set status": MessageLookupByLibrary.simpleMessage("Set status"),
"sentAPicture" : m44, "Settings": MessageLookupByLibrary.simpleMessage("Settings"),
"sentASticker" : m45, "Share": MessageLookupByLibrary.simpleMessage("Share"),
"sentAVideo" : m46, "Sign up": MessageLookupByLibrary.simpleMessage("Sign up"),
"sentAnAudio" : m47, "Source code": MessageLookupByLibrary.simpleMessage("Source code"),
"sharedTheLocation" : m48, "Start your first chat :-)":
"timeOfDay" : m49, MessageLookupByLibrary.simpleMessage("Start your first chat :-)"),
"title" : MessageLookupByLibrary.simpleMessage("FluffyChat"), "Sunday": MessageLookupByLibrary.simpleMessage("Sunday"),
"unbannedUser" : m50, "System": MessageLookupByLibrary.simpleMessage("System"),
"unknownEvent" : m51, "Tap to show menu":
"unreadChats" : m52, MessageLookupByLibrary.simpleMessage("Tap to show menu"),
"unreadMessages" : m53, "The encryption has been corrupted":
"unreadMessagesInChats" : m54, MessageLookupByLibrary.simpleMessage(
"userAndOthersAreTyping" : m55, "The encryption has been corrupted"),
"userAndUserAreTyping" : m56, "This room has been archived.": MessageLookupByLibrary.simpleMessage(
"userIsTyping" : m57, "This room has been archived."),
"userLeftTheChat" : m58, "Thursday": MessageLookupByLibrary.simpleMessage("Thursday"),
"userSentUnknownEvent" : m59 "Try to send again":
}; MessageLookupByLibrary.simpleMessage("Try to send again"),
"Tuesday": MessageLookupByLibrary.simpleMessage("Tuesday"),
"Unknown device":
MessageLookupByLibrary.simpleMessage("Unknown device"),
"Unknown encryption algorithm": MessageLookupByLibrary.simpleMessage(
"Unknown encryption algorithm"),
"Unmute chat": MessageLookupByLibrary.simpleMessage("Unmute chat"),
"Use Amoled compatible colors?": MessageLookupByLibrary.simpleMessage(
"Use Amoled compatible colors?"),
"Username": MessageLookupByLibrary.simpleMessage("Username"),
"Verify": MessageLookupByLibrary.simpleMessage("Verify"),
"Video call": MessageLookupByLibrary.simpleMessage("Video call"),
"Visibility of the chat history": MessageLookupByLibrary.simpleMessage(
"Visibility of the chat history"),
"Visible for all participants": MessageLookupByLibrary.simpleMessage(
"Visible for all participants"),
"Visible for everyone":
MessageLookupByLibrary.simpleMessage("Visible for everyone"),
"Voice message": MessageLookupByLibrary.simpleMessage("Voice message"),
"Wallpaper": MessageLookupByLibrary.simpleMessage("Wallpaper"),
"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."),
"Who is allowed to join this group":
MessageLookupByLibrary.simpleMessage(
"Who is allowed to join this group"),
"Write a message...":
MessageLookupByLibrary.simpleMessage("Write a message..."),
"Yes": MessageLookupByLibrary.simpleMessage("Yes"),
"You": MessageLookupByLibrary.simpleMessage("You"),
"You are invited to this chat": MessageLookupByLibrary.simpleMessage(
"You are invited to this chat"),
"You are no longer participating in this chat":
MessageLookupByLibrary.simpleMessage(
"You are no longer participating in this chat"),
"You cannot invite yourself":
MessageLookupByLibrary.simpleMessage("You cannot invite yourself"),
"You have been banned from this chat":
MessageLookupByLibrary.simpleMessage(
"You have been banned from this chat"),
"You won\'t be able to disable the encryption anymore. Are you sure?":
MessageLookupByLibrary.simpleMessage(
"You won\'t be able to disable the encryption anymore. Are you sure?"),
"Your own username":
MessageLookupByLibrary.simpleMessage("Your own username"),
"acceptedTheInvitation": m0,
"activatedEndToEndEncryption": m1,
"alias": MessageLookupByLibrary.simpleMessage("alias"),
"bannedUser": m2,
"byDefaultYouWillBeConnectedTo": m3,
"changedTheChatAvatar": m4,
"changedTheChatDescriptionTo": m5,
"changedTheChatNameTo": m6,
"changedTheChatPermissions": m7,
"changedTheDisplaynameTo": m8,
"changedTheGuestAccessRules": m9,
"changedTheGuestAccessRulesTo": m10,
"changedTheHistoryVisibility": m11,
"changedTheHistoryVisibilityTo": m12,
"changedTheJoinRules": m13,
"changedTheJoinRulesTo": m14,
"changedTheProfileAvatar": m15,
"changedTheRoomAliases": m16,
"changedTheRoomInvitationLink": m17,
"couldNotDecryptMessage": m18,
"countParticipants": m19,
"createdTheChat": m20,
"dateAndTimeOfDay": m21,
"dateWithYear": m22,
"dateWithoutYear": m23,
"emoteExists":
MessageLookupByLibrary.simpleMessage("Emote already exists!"),
"emoteInvalid":
MessageLookupByLibrary.simpleMessage("Invalid emote shortcode!"),
"emoteWarnNeedToPick": MessageLookupByLibrary.simpleMessage(
"You need to pick an emote shortcode and an image!"),
"groupWith": m24,
"hasWithdrawnTheInvitationFor": m25,
"inviteContactToGroup": m26,
"inviteText": m27,
"invitedUser": m28,
"is typing...": MessageLookupByLibrary.simpleMessage("is typing..."),
"joinedTheChat": m29,
"kicked": m30,
"kickedAndBanned": m31,
"lastActiveAgo": m32,
"loadCountMoreParticipants": m33,
"logInTo": m34,
"numberSelected": m35,
"ok": MessageLookupByLibrary.simpleMessage("ok"),
"play": m36,
"redactedAnEvent": m37,
"rejectedTheInvitation": m38,
"removedBy": m39,
"seenByUser": m40,
"seenByUserAndCountOthers": m41,
"seenByUserAndUser": m42,
"sentAFile": m43,
"sentAPicture": m44,
"sentASticker": m45,
"sentAVideo": m46,
"sentAnAudio": m47,
"sharedTheLocation": m48,
"timeOfDay": m49,
"title": MessageLookupByLibrary.simpleMessage("FluffyChat"),
"unbannedUser": m50,
"unknownEvent": m51,
"unreadChats": m52,
"unreadMessages": m53,
"unreadMessagesInChats": m54,
"userAndOthersAreTyping": m55,
"userAndUserAreTyping": m56,
"userIsTyping": m57,
"userLeftTheChat": m58,
"userSentUnknownEvent": m59
};
} }

View File

@ -29,31 +29,38 @@ class MessageLookup extends MessageLookupByLibrary {
static m4(username) => "${username} zmienił/-a zdjęcie profilowe"; static m4(username) => "${username} zmienił/-a zdjęcie profilowe";
static m5(username, description) => "${username} zmienił/-a opis czatu na: \'${description}\'"; static m5(username, description) =>
"${username} zmienił/-a opis czatu na: \'${description}\'";
static m6(username, chatname) => "${username} zmienił/-a nick na: \'${chatname}\'"; static m6(username, chatname) =>
"${username} zmienił/-a nick na: \'${chatname}\'";
static m7(username) => "${username} zmienił/-a uprawnienia czatu"; static m7(username) => "${username} zmienił/-a uprawnienia czatu";
static m8(username, displayname) => "${username} zmienił/-a wyświetlany nick na: ${displayname}"; static m8(username, displayname) =>
"${username} zmienił/-a wyświetlany nick na: ${displayname}";
static m9(username) => "${username} zmienił/-a zasady dostępu dla gości"; static m9(username) => "${username} zmienił/-a zasady dostępu dla gości";
static m10(username, rules) => "${username} zmienił/-a zasady dostępu dla gości na: ${rules}"; static m10(username, rules) =>
"${username} zmienił/-a zasady dostępu dla gości na: ${rules}";
static m11(username) => "${username} zmienił/-a widoczność historii"; static m11(username) => "${username} zmienił/-a widoczność historii";
static m12(username, rules) => "${username} zmienił/-a widoczność historii na: ${rules}"; static m12(username, rules) =>
"${username} zmienił/-a widoczność historii na: ${rules}";
static m13(username) => "${username} zmienił/-a zasady wejścia"; static m13(username) => "${username} zmienił/-a zasady wejścia";
static m14(username, joinRules) => "${username} zmienił/-a zasady wejścia na: ${joinRules}"; static m14(username, joinRules) =>
"${username} zmienił/-a zasady wejścia na: ${joinRules}";
static m15(username) => "${username} zmienił/-a zdjęcie profilowe"; static m15(username) => "${username} zmienił/-a zdjęcie profilowe";
static m16(username) => "${username} zmienił/-a skrót pokoju"; static m16(username) => "${username} zmienił/-a skrót pokoju";
static m17(username) => "${username} zmienił/-a link do zaproszenia do pokoju"; static m17(username) =>
"${username} zmienił/-a link do zaproszenia do pokoju";
static m18(error) => "Nie można odszyfrować wiadomości: ${error}"; static m18(error) => "Nie można odszyfrować wiadomości: ${error}";
@ -69,11 +76,13 @@ class MessageLookup extends MessageLookupByLibrary {
static m24(displayname) => "Grupa z ${displayname}"; static m24(displayname) => "Grupa z ${displayname}";
static m25(username, targetName) => "${username} wycofał/-a zaproszenie dla ${targetName}"; static m25(username, targetName) =>
"${username} wycofał/-a zaproszenie dla ${targetName}";
static m26(groupName) => "Zaproś kontakty do ${groupName}"; static m26(groupName) => "Zaproś kontakty do ${groupName}";
static m27(username, link) => "${username} zaprosił/-a cię do FluffyChat. \n1. Zainstaluj FluffyChat: http://fluffy.chat \n2. Zarejestuj się lub zaloguj \n3. Otwórz link zaproszenia: ${link}"; static m27(username, link) =>
"${username} zaprosił/-a cię do FluffyChat. \n1. Zainstaluj FluffyChat: http://fluffy.chat \n2. Zarejestuj się lub zaloguj \n3. Otwórz link zaproszenia: ${link}";
static m28(username, targetName) => "${username} zaprosił/-a ${targetName}"; static m28(username, targetName) => "${username} zaprosił/-a ${targetName}";
@ -81,7 +90,8 @@ class MessageLookup extends MessageLookupByLibrary {
static m30(username, targetName) => "${username} wyrzucił/-a ${targetName}"; static m30(username, targetName) => "${username} wyrzucił/-a ${targetName}";
static m31(username, targetName) => "${username} wyrzucił/-a i zbanował/-a ${targetName}"; static m31(username, targetName) =>
"${username} wyrzucił/-a i zbanował/-a ${targetName}";
static m32(localizedTimeShort) => "Ostatnio widziano: ${localizedTimeShort}"; static m32(localizedTimeShort) => "Ostatnio widziano: ${localizedTimeShort}";
@ -101,9 +111,11 @@ class MessageLookup extends MessageLookupByLibrary {
static m40(username) => "Zobaczone przez ${username}"; static m40(username) => "Zobaczone przez ${username}";
static m41(username, count) => "Zobaczone przez ${username} oraz ${count} innych"; static m41(username, count) =>
"Zobaczone przez ${username} oraz ${count} innych";
static m42(username, username2) => "Zobaczone przez ${username} oraz ${username2}"; static m42(username, username2) =>
"Zobaczone przez ${username} oraz ${username2}";
static m43(username) => "${username} wysłał/-a plik"; static m43(username) => "${username} wysłał/-a plik";
@ -127,7 +139,8 @@ class MessageLookup extends MessageLookupByLibrary {
static m53(unreadEvents) => "${unreadEvents} nieprzeczytanych wiadomości"; static m53(unreadEvents) => "${unreadEvents} nieprzeczytanych wiadomości";
static m54(unreadEvents, unreadChats) => "${unreadEvents} nieprzeczytanych wiadomości w ${unreadChats} czatach"; static m54(unreadEvents, unreadChats) =>
"${unreadEvents} nieprzeczytanych wiadomości w ${unreadChats} czatach";
static m55(username, count) => "${username} oraz ${count} innych pisze..."; static m55(username, count) => "${username} oraz ${count} innych pisze...";
@ -140,241 +153,351 @@ class MessageLookup extends MessageLookupByLibrary {
static m59(username, type) => "${username} wysłał/-a wydarzenie ${type}"; static m59(username, type) => "${username} wysłał/-a wydarzenie ${type}";
final messages = _notInlinedMessages(_notInlinedMessages); final messages = _notInlinedMessages(_notInlinedMessages);
static _notInlinedMessages(_) => <String, Function> { static _notInlinedMessages(_) => <String, Function>{
"(Optional) Group name" : MessageLookupByLibrary.simpleMessage("(Opcjonalnie) Nazwa grupy"), "(Optional) Group name":
"About" : MessageLookupByLibrary.simpleMessage("O nas"), MessageLookupByLibrary.simpleMessage("(Opcjonalnie) Nazwa grupy"),
"Account" : MessageLookupByLibrary.simpleMessage("Konto"), "About": MessageLookupByLibrary.simpleMessage("O nas"),
"Account informations" : MessageLookupByLibrary.simpleMessage("Informacje o koncie"), "Account": MessageLookupByLibrary.simpleMessage("Konto"),
"Add a group description" : MessageLookupByLibrary.simpleMessage("Dodaj opis grupy"), "Account informations":
"Admin" : MessageLookupByLibrary.simpleMessage("Admin"), MessageLookupByLibrary.simpleMessage("Informacje o koncie"),
"Already have an account?" : MessageLookupByLibrary.simpleMessage("Masz już konto?"), "Add a group description":
"Anyone can join" : MessageLookupByLibrary.simpleMessage("Każdy może dołączyć"), MessageLookupByLibrary.simpleMessage("Dodaj opis grupy"),
"Archive" : MessageLookupByLibrary.simpleMessage("Archiwum"), "Admin": MessageLookupByLibrary.simpleMessage("Admin"),
"Archived Room" : MessageLookupByLibrary.simpleMessage("Zarchiwizowane pokoje"), "Already have an account?":
"Are guest users allowed to join" : MessageLookupByLibrary.simpleMessage("Czy użytkownicy-goście mogą dołączyć"), MessageLookupByLibrary.simpleMessage("Masz już konto?"),
"Are you sure?" : MessageLookupByLibrary.simpleMessage("Jesteś pewny/-a?"), "Anyone can join":
"Authentication" : MessageLookupByLibrary.simpleMessage("Autoryzacja"), MessageLookupByLibrary.simpleMessage("Każdy może dołączyć"),
"Avatar has been changed" : MessageLookupByLibrary.simpleMessage("Zdjęcie profilowe zostało zmienione"), "Archive": MessageLookupByLibrary.simpleMessage("Archiwum"),
"Ban from chat" : MessageLookupByLibrary.simpleMessage("Ban na czacie"), "Archived Room":
"Banned" : MessageLookupByLibrary.simpleMessage("Zbanowany/-a"), MessageLookupByLibrary.simpleMessage("Zarchiwizowane pokoje"),
"Cancel" : MessageLookupByLibrary.simpleMessage("Anuluj"), "Are guest users allowed to join": MessageLookupByLibrary.simpleMessage(
"Change the homeserver" : MessageLookupByLibrary.simpleMessage("Zmień serwer domyślny"), "Czy użytkownicy-goście mogą dołączyć"),
"Change the name of the group" : MessageLookupByLibrary.simpleMessage("Zmień nazwę grupy"), "Are you sure?":
"Change the server" : MessageLookupByLibrary.simpleMessage("Zmień tapetę"), MessageLookupByLibrary.simpleMessage("Jesteś pewny/-a?"),
"Change wallpaper" : MessageLookupByLibrary.simpleMessage("Zmień tapetę"), "Authentication": MessageLookupByLibrary.simpleMessage("Autoryzacja"),
"Change your style" : MessageLookupByLibrary.simpleMessage("Zmień swój styl"), "Avatar has been changed": MessageLookupByLibrary.simpleMessage(
"Changelog" : MessageLookupByLibrary.simpleMessage("Dziennik zmian"), "Zdjęcie profilowe zostało zmienione"),
"Chat details" : MessageLookupByLibrary.simpleMessage("Szczegóły czatu"), "Ban from chat": MessageLookupByLibrary.simpleMessage("Ban na czacie"),
"Choose a strong password" : MessageLookupByLibrary.simpleMessage("Wybierz silne hasło"), "Banned": MessageLookupByLibrary.simpleMessage("Zbanowany/-a"),
"Choose a username" : MessageLookupByLibrary.simpleMessage("Wybierz nick"), "Cancel": MessageLookupByLibrary.simpleMessage("Anuluj"),
"Close" : MessageLookupByLibrary.simpleMessage("Zamknij"), "Change the homeserver":
"Confirm" : MessageLookupByLibrary.simpleMessage("Potwierdź"), MessageLookupByLibrary.simpleMessage("Zmień serwer domyślny"),
"Connect" : MessageLookupByLibrary.simpleMessage("Połącz"), "Change the name of the group":
"Connection attempt failed" : MessageLookupByLibrary.simpleMessage("Próba połączenia nie powiodła się"), MessageLookupByLibrary.simpleMessage("Zmień nazwę grupy"),
"Contact has been invited to the group" : MessageLookupByLibrary.simpleMessage("Kontakt został zaproszony do grupy"), "Change the server":
"Content viewer" : MessageLookupByLibrary.simpleMessage("Przeglądarka treści"), MessageLookupByLibrary.simpleMessage("Zmień tapetę"),
"Copied to clipboard" : MessageLookupByLibrary.simpleMessage("Skopiowano do schowka"), "Change wallpaper":
"Copy" : MessageLookupByLibrary.simpleMessage("Kopiuj"), MessageLookupByLibrary.simpleMessage("Zmień tapetę"),
"Could not set avatar" : MessageLookupByLibrary.simpleMessage("Nie można ustawić zdjęcia profilowego"), "Change your style":
"Could not set displayname" : MessageLookupByLibrary.simpleMessage("Nie można ustawić wyświetlanego nicku"), MessageLookupByLibrary.simpleMessage("Zmień swój styl"),
"Create" : MessageLookupByLibrary.simpleMessage("Stwórz"), "Changelog": MessageLookupByLibrary.simpleMessage("Dziennik zmian"),
"Create account now" : MessageLookupByLibrary.simpleMessage("Stwórz konto teraz"), "Chat details": MessageLookupByLibrary.simpleMessage("Szczegóły czatu"),
"Create new group" : MessageLookupByLibrary.simpleMessage("Stwórz nową grupę"), "Choose a strong password":
"Dark" : MessageLookupByLibrary.simpleMessage("Ciemny"), MessageLookupByLibrary.simpleMessage("Wybierz silne hasło"),
"Delete" : MessageLookupByLibrary.simpleMessage("Usuń"), "Choose a username":
"Delete message" : MessageLookupByLibrary.simpleMessage("Usuń wiadomość"), MessageLookupByLibrary.simpleMessage("Wybierz nick"),
"Deny" : MessageLookupByLibrary.simpleMessage("Odrzuć"), "Close": MessageLookupByLibrary.simpleMessage("Zamknij"),
"Device" : MessageLookupByLibrary.simpleMessage("Urządzenie"), "Confirm": MessageLookupByLibrary.simpleMessage("Potwierdź"),
"Devices" : MessageLookupByLibrary.simpleMessage("Urządzenia"), "Connect": MessageLookupByLibrary.simpleMessage("Połącz"),
"Discard picture" : MessageLookupByLibrary.simpleMessage("Odrzuć zdjęcie"), "Connection attempt failed": MessageLookupByLibrary.simpleMessage(
"Displayname has been changed" : MessageLookupByLibrary.simpleMessage("Wyświetlany nick został zmieniony"), "Próba połączenia nie powiodła się"),
"Donate" : MessageLookupByLibrary.simpleMessage("Wsparcie"), "Contact has been invited to the group":
"Download file" : MessageLookupByLibrary.simpleMessage("Pobierz plik"), MessageLookupByLibrary.simpleMessage(
"Edit Jitsi instance" : MessageLookupByLibrary.simpleMessage("Edytuj instancje Jitsi"), "Kontakt został zaproszony do grupy"),
"Edit displayname" : MessageLookupByLibrary.simpleMessage("Edytuj wyświetlany nick"), "Content viewer":
"Empty chat" : MessageLookupByLibrary.simpleMessage("Pusty czat"), MessageLookupByLibrary.simpleMessage("Przeglądarka treści"),
"Encryption algorithm" : MessageLookupByLibrary.simpleMessage("Algorytm szyfrowania"), "Copied to clipboard":
"Encryption is not enabled" : MessageLookupByLibrary.simpleMessage("Szyfrowanie nie jest włączone"), MessageLookupByLibrary.simpleMessage("Skopiowano do schowka"),
"End to end encryption is currently in Beta! Use at your own risk!" : MessageLookupByLibrary.simpleMessage("Szyfrowanie end-to-end jest obecnie w fazie beta! Używaj na własne ryzyko!"), "Copy": MessageLookupByLibrary.simpleMessage("Kopiuj"),
"End-to-end encryption settings" : MessageLookupByLibrary.simpleMessage("Ustawienia szyfrowania end-to-end"), "Could not set avatar": MessageLookupByLibrary.simpleMessage(
"Enter a group name" : MessageLookupByLibrary.simpleMessage("Wpisz nazwę grupy"), "Nie można ustawić zdjęcia profilowego"),
"Enter a username" : MessageLookupByLibrary.simpleMessage("Wpisz nick"), "Could not set displayname": MessageLookupByLibrary.simpleMessage(
"Enter your homeserver" : MessageLookupByLibrary.simpleMessage("Wpisz swój serwer domowy"), "Nie można ustawić wyświetlanego nicku"),
"File name" : MessageLookupByLibrary.simpleMessage("Nazwa pliku"), "Create": MessageLookupByLibrary.simpleMessage("Stwórz"),
"File size" : MessageLookupByLibrary.simpleMessage("Rozmiar pliku"), "Create account now":
"FluffyChat" : MessageLookupByLibrary.simpleMessage("FluffyChat"), MessageLookupByLibrary.simpleMessage("Stwórz konto teraz"),
"Forward" : MessageLookupByLibrary.simpleMessage("Przekaż"), "Create new group":
"Friday" : MessageLookupByLibrary.simpleMessage("Piątek"), MessageLookupByLibrary.simpleMessage("Stwórz nową grupę"),
"From joining" : MessageLookupByLibrary.simpleMessage("Od dołączenia"), "Dark": MessageLookupByLibrary.simpleMessage("Ciemny"),
"From the invitation" : MessageLookupByLibrary.simpleMessage("Od zaproszenia"), "Delete": MessageLookupByLibrary.simpleMessage("Usuń"),
"Group" : MessageLookupByLibrary.simpleMessage("Grupa"), "Delete message":
"Group description" : MessageLookupByLibrary.simpleMessage("Opis grupy"), MessageLookupByLibrary.simpleMessage("Usuń wiadomość"),
"Group description has been changed" : MessageLookupByLibrary.simpleMessage("Opis grupy został zmieniony"), "Deny": MessageLookupByLibrary.simpleMessage("Odrzuć"),
"Group is public" : MessageLookupByLibrary.simpleMessage("Grupa jest publiczna"), "Device": MessageLookupByLibrary.simpleMessage("Urządzenie"),
"Guests are forbidden" : MessageLookupByLibrary.simpleMessage("Goście są zabronieni"), "Devices": MessageLookupByLibrary.simpleMessage("Urządzenia"),
"Guests can join" : MessageLookupByLibrary.simpleMessage("Goście mogą dołączyć"), "Discard picture":
"Help" : MessageLookupByLibrary.simpleMessage("Pomoc"), MessageLookupByLibrary.simpleMessage("Odrzuć zdjęcie"),
"Homeserver is not compatible" : MessageLookupByLibrary.simpleMessage("Serwer domowy nie jest kompatybilny"), "Displayname has been changed": MessageLookupByLibrary.simpleMessage(
"How are you today?" : MessageLookupByLibrary.simpleMessage("Jak się masz dziś?"), "Wyświetlany nick został zmieniony"),
"ID" : MessageLookupByLibrary.simpleMessage("ID"), "Donate": MessageLookupByLibrary.simpleMessage("Wsparcie"),
"Identity" : MessageLookupByLibrary.simpleMessage("Tożsamość"), "Download file": MessageLookupByLibrary.simpleMessage("Pobierz plik"),
"Invite contact" : MessageLookupByLibrary.simpleMessage("Zaproś kontakty"), "Edit Jitsi instance":
"Invited" : MessageLookupByLibrary.simpleMessage("Zaproszono"), MessageLookupByLibrary.simpleMessage("Edytuj instancje Jitsi"),
"Invited users only" : MessageLookupByLibrary.simpleMessage("Tylko zaproszeni użytkownicy"), "Edit displayname":
"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("Wygląda na to, że nie masz usług Google w swoim telefonie. To dobra decyzja dla twojej prywatności! Aby otrzymywać powiadomienia wysyłane w FluffyChat, zalecamy korzystanie z microG: https://microg.org/"), MessageLookupByLibrary.simpleMessage("Edytuj wyświetlany nick"),
"Kick from chat" : MessageLookupByLibrary.simpleMessage("Wyrzuć z czatu"), "Empty chat": MessageLookupByLibrary.simpleMessage("Pusty czat"),
"Last seen IP" : MessageLookupByLibrary.simpleMessage("Ostatnie widziane IP"), "Encryption algorithm":
"Leave" : MessageLookupByLibrary.simpleMessage("wyjdź"), MessageLookupByLibrary.simpleMessage("Algorytm szyfrowania"),
"Left the chat" : MessageLookupByLibrary.simpleMessage("Opuścił/-a czat"), "Encryption is not enabled": MessageLookupByLibrary.simpleMessage(
"License" : MessageLookupByLibrary.simpleMessage("Licencja"), "Szyfrowanie nie jest włączone"),
"Light" : MessageLookupByLibrary.simpleMessage("Jasny"), "End to end encryption is currently in Beta! Use at your own risk!":
"Loading... Please wait" : MessageLookupByLibrary.simpleMessage("Ładowanie... Proszę czekąć"), MessageLookupByLibrary.simpleMessage(
"Login" : MessageLookupByLibrary.simpleMessage("Zaloguj"), "Szyfrowanie end-to-end jest obecnie w fazie beta! Używaj na własne ryzyko!"),
"Logout" : MessageLookupByLibrary.simpleMessage("Wyloguj"), "End-to-end encryption settings": MessageLookupByLibrary.simpleMessage(
"Make a moderator" : MessageLookupByLibrary.simpleMessage("Uczyń moderatorem"), "Ustawienia szyfrowania end-to-end"),
"Make an admin" : MessageLookupByLibrary.simpleMessage("Uczyń adminem"), "Enter a group name":
"Make sure the identifier is valid" : MessageLookupByLibrary.simpleMessage("Upewnij się, że identyfikator jest prawidłowy"), MessageLookupByLibrary.simpleMessage("Wpisz nazwę grupy"),
"Message will be removed for all participants" : MessageLookupByLibrary.simpleMessage("Wiadomość zostanie usunięta dla wszystkich użytkowników"), "Enter a username": MessageLookupByLibrary.simpleMessage("Wpisz nick"),
"Moderator" : MessageLookupByLibrary.simpleMessage("Moderator"), "Enter your homeserver":
"Monday" : MessageLookupByLibrary.simpleMessage("Poniedziałek"), MessageLookupByLibrary.simpleMessage("Wpisz swój serwer domowy"),
"Mute chat" : MessageLookupByLibrary.simpleMessage("Wycisz czat"), "File name": MessageLookupByLibrary.simpleMessage("Nazwa pliku"),
"New message in FluffyChat" : MessageLookupByLibrary.simpleMessage("Nowa wiadomość w FluffyChat"), "File size": MessageLookupByLibrary.simpleMessage("Rozmiar pliku"),
"New private chat" : MessageLookupByLibrary.simpleMessage("Nowy prywatny czat"), "FluffyChat": MessageLookupByLibrary.simpleMessage("FluffyChat"),
"No permission" : MessageLookupByLibrary.simpleMessage("Brak uprawnień"), "Forward": MessageLookupByLibrary.simpleMessage("Przekaż"),
"No rooms found..." : MessageLookupByLibrary.simpleMessage("Nie znaleziono pokoi..."), "Friday": MessageLookupByLibrary.simpleMessage("Piątek"),
"None" : MessageLookupByLibrary.simpleMessage("Brak"), "From joining": MessageLookupByLibrary.simpleMessage("Od dołączenia"),
"Not supported in web" : MessageLookupByLibrary.simpleMessage("Nie obsługiwane w sieci"), "From the invitation":
"Oops something went wrong..." : MessageLookupByLibrary.simpleMessage("Ups! Coś poszło nie tak..."), MessageLookupByLibrary.simpleMessage("Od zaproszenia"),
"Open app to read messages" : MessageLookupByLibrary.simpleMessage("Otwórz aplikację by odczytać wiadomości"), "Group": MessageLookupByLibrary.simpleMessage("Grupa"),
"Open camera" : MessageLookupByLibrary.simpleMessage("Otwarta kamera"), "Group description": MessageLookupByLibrary.simpleMessage("Opis grupy"),
"Participating user devices" : MessageLookupByLibrary.simpleMessage("Urządzenia użytkowników"), "Group description has been changed":
"Password" : MessageLookupByLibrary.simpleMessage("Hasło"), MessageLookupByLibrary.simpleMessage("Opis grupy został zmieniony"),
"Please be aware that you need Pantalaimon to use end-to-end encryption for now." : MessageLookupByLibrary.simpleMessage("Należy pamiętać, że Pantalaimon wymaga na razie szyfrowania end-to-end."), "Group is public":
"Please choose a username" : MessageLookupByLibrary.simpleMessage("Wybierz nick"), MessageLookupByLibrary.simpleMessage("Grupa jest publiczna"),
"Please enter a matrix identifier" : MessageLookupByLibrary.simpleMessage("Wprowadź proszę identyfikator matrix"), "Guests are forbidden":
"Please enter your password" : MessageLookupByLibrary.simpleMessage("Wpisz swoje hasło"), MessageLookupByLibrary.simpleMessage("Goście są zabronieni"),
"Please enter your username" : MessageLookupByLibrary.simpleMessage("Wpisz swój nick"), "Guests can join":
"Public Rooms" : MessageLookupByLibrary.simpleMessage("Publiczne pokoje"), MessageLookupByLibrary.simpleMessage("Goście mogą dołączyć"),
"Recording" : MessageLookupByLibrary.simpleMessage("Nagranie"), "Help": MessageLookupByLibrary.simpleMessage("Pomoc"),
"Rejoin" : MessageLookupByLibrary.simpleMessage("Dołącz ponownie"), "Homeserver is not compatible": MessageLookupByLibrary.simpleMessage(
"Remove" : MessageLookupByLibrary.simpleMessage("Usuń"), "Serwer domowy nie jest kompatybilny"),
"Remove all other devices" : MessageLookupByLibrary.simpleMessage("Usuń wszystkie inne urządzenia"), "How are you today?":
"Remove device" : MessageLookupByLibrary.simpleMessage("Usuń urządzenie"), MessageLookupByLibrary.simpleMessage("Jak się masz dziś?"),
"Remove exile" : MessageLookupByLibrary.simpleMessage("Usuń blokadę"), "ID": MessageLookupByLibrary.simpleMessage("ID"),
"Remove message" : MessageLookupByLibrary.simpleMessage("Usuń wiadomość"), "Identity": MessageLookupByLibrary.simpleMessage("Tożsamość"),
"Reply" : MessageLookupByLibrary.simpleMessage("Odpisz"), "Invite contact":
"Request permission" : MessageLookupByLibrary.simpleMessage("Prośba o pozwolenie"), MessageLookupByLibrary.simpleMessage("Zaproś kontakty"),
"Request to read older messages" : MessageLookupByLibrary.simpleMessage("Poproś o przeczytanie starszych wiadomości"), "Invited": MessageLookupByLibrary.simpleMessage("Zaproszono"),
"Revoke all permissions" : MessageLookupByLibrary.simpleMessage("Odwołaj wszystkie uprawnienia"), "Invited users only": MessageLookupByLibrary.simpleMessage(
"Saturday" : MessageLookupByLibrary.simpleMessage("Sobota"), "Tylko zaproszeni użytkownicy"),
"Search for a chat" : MessageLookupByLibrary.simpleMessage("Przeszukaj czat"), "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/":
"Send" : MessageLookupByLibrary.simpleMessage("Wyślij"), MessageLookupByLibrary.simpleMessage(
"Send a message" : MessageLookupByLibrary.simpleMessage("Wyślij wiadomość"), "Wygląda na to, że nie masz usług Google w swoim telefonie. To dobra decyzja dla twojej prywatności! Aby otrzymywać powiadomienia wysyłane w FluffyChat, zalecamy korzystanie z microG: https://microg.org/"),
"Send file" : MessageLookupByLibrary.simpleMessage("Wyślij plik"), "Kick from chat":
"Send image" : MessageLookupByLibrary.simpleMessage("Wyślij obraz"), MessageLookupByLibrary.simpleMessage("Wyrzuć z czatu"),
"Set a profile picture" : MessageLookupByLibrary.simpleMessage("Ustaw zdjęcie profilowe"), "Last seen IP":
"Set group description" : MessageLookupByLibrary.simpleMessage("Ustaw opis grupy"), MessageLookupByLibrary.simpleMessage("Ostatnie widziane IP"),
"Set invitation link" : MessageLookupByLibrary.simpleMessage("Ustaw link zaproszeniowy"), "Leave": MessageLookupByLibrary.simpleMessage("wyjdź"),
"Set status" : MessageLookupByLibrary.simpleMessage("Ustaw status"), "Left the chat":
"Settings" : MessageLookupByLibrary.simpleMessage("Ustawienia"), MessageLookupByLibrary.simpleMessage("Opuścił/-a czat"),
"Share" : MessageLookupByLibrary.simpleMessage("Udostępnij"), "License": MessageLookupByLibrary.simpleMessage("Licencja"),
"Sign up" : MessageLookupByLibrary.simpleMessage("Zarejesturuj się"), "Light": MessageLookupByLibrary.simpleMessage("Jasny"),
"Source code" : MessageLookupByLibrary.simpleMessage("Kod żródłowy"), "Loading... Please wait":
"Start your first chat :-)" : MessageLookupByLibrary.simpleMessage("Rozpocznij swój pierwszy czat :-)"), MessageLookupByLibrary.simpleMessage("Ładowanie... Proszę czekąć"),
"Sunday" : MessageLookupByLibrary.simpleMessage("Niedziela"), "Login": MessageLookupByLibrary.simpleMessage("Zaloguj"),
"System" : MessageLookupByLibrary.simpleMessage("System"), "Logout": MessageLookupByLibrary.simpleMessage("Wyloguj"),
"Tap to show menu" : MessageLookupByLibrary.simpleMessage("Kliknij by zobaczyć menu"), "Make a moderator":
"The encryption has been corrupted" : MessageLookupByLibrary.simpleMessage("Szyfrowanie zostało uszkodzone"), MessageLookupByLibrary.simpleMessage("Uczyń moderatorem"),
"This room has been archived." : MessageLookupByLibrary.simpleMessage("Ten pokój został przeniesiony do archiwum."), "Make an admin": MessageLookupByLibrary.simpleMessage("Uczyń adminem"),
"Thursday" : MessageLookupByLibrary.simpleMessage("Czwartek"), "Make sure the identifier is valid":
"Try to send again" : MessageLookupByLibrary.simpleMessage("Spróbuj wysłać ponownie"), MessageLookupByLibrary.simpleMessage(
"Tuesday" : MessageLookupByLibrary.simpleMessage("Wtorek"), "Upewnij się, że identyfikator jest prawidłowy"),
"Unknown device" : MessageLookupByLibrary.simpleMessage("Nieznane urządzenie"), "Message will be removed for all participants":
"Unknown encryption algorithm" : MessageLookupByLibrary.simpleMessage("Nieznany algorytm szyfrowania"), MessageLookupByLibrary.simpleMessage(
"Unmute chat" : MessageLookupByLibrary.simpleMessage("Wyłącz wyciszenie"), "Wiadomość zostanie usunięta dla wszystkich użytkowników"),
"Use Amoled compatible colors?" : MessageLookupByLibrary.simpleMessage("Użyć kolorów kompatybilnych z ekranami Amoled?"), "Moderator": MessageLookupByLibrary.simpleMessage("Moderator"),
"Username" : MessageLookupByLibrary.simpleMessage("Nick"), "Monday": MessageLookupByLibrary.simpleMessage("Poniedziałek"),
"Verify" : MessageLookupByLibrary.simpleMessage("zweryfikuj"), "Mute chat": MessageLookupByLibrary.simpleMessage("Wycisz czat"),
"Video call" : MessageLookupByLibrary.simpleMessage("Rozmowa wideo"), "New message in FluffyChat":
"Visibility of the chat history" : MessageLookupByLibrary.simpleMessage("Widoczność historii czatu"), MessageLookupByLibrary.simpleMessage("Nowa wiadomość w FluffyChat"),
"Visible for all participants" : MessageLookupByLibrary.simpleMessage("Widoczny dla wszystkich użytkowników"), "New private chat":
"Visible for everyone" : MessageLookupByLibrary.simpleMessage("Widoczny dla każdego"), MessageLookupByLibrary.simpleMessage("Nowy prywatny czat"),
"Voice message" : MessageLookupByLibrary.simpleMessage("Wiadomość głosowa"), "No permission": MessageLookupByLibrary.simpleMessage("Brak uprawnień"),
"Wallpaper" : MessageLookupByLibrary.simpleMessage("Tapeta"), "No rooms found...":
"Wednesday" : MessageLookupByLibrary.simpleMessage("Środa"), MessageLookupByLibrary.simpleMessage("Nie znaleziono pokoi..."),
"Welcome to the cutest instant messenger in the matrix network." : MessageLookupByLibrary.simpleMessage("Witamy w najładniejszym komunikatorze w sieci matrix."), "None": MessageLookupByLibrary.simpleMessage("Brak"),
"Who is allowed to join this group" : MessageLookupByLibrary.simpleMessage("Kto może dołączyć do tej grupy"), "Not supported in web":
"Write a message..." : MessageLookupByLibrary.simpleMessage("Pisze wiadomość..."), MessageLookupByLibrary.simpleMessage("Nie obsługiwane w sieci"),
"Yes" : MessageLookupByLibrary.simpleMessage("Tak"), "Oops something went wrong...":
"You" : MessageLookupByLibrary.simpleMessage("Ty"), MessageLookupByLibrary.simpleMessage("Ups! Coś poszło nie tak..."),
"You are invited to this chat" : MessageLookupByLibrary.simpleMessage("Dostałeś/-aś zaproszenie do tego czatu"), "Open app to read messages": MessageLookupByLibrary.simpleMessage(
"You are no longer participating in this chat" : MessageLookupByLibrary.simpleMessage("Nie uczestniczysz już w tym czacie"), "Otwórz aplikację by odczytać wiadomości"),
"You cannot invite yourself" : MessageLookupByLibrary.simpleMessage("Nie możesz zaprosić siebie"), "Open camera": MessageLookupByLibrary.simpleMessage("Otwarta kamera"),
"You have been banned from this chat" : MessageLookupByLibrary.simpleMessage("Zostałeś zbanowany na tym czacie"), "Participating user devices":
"You won\'t be able to disable the encryption anymore. Are you sure?" : MessageLookupByLibrary.simpleMessage("Nie będziesz już mógł wyłączyć szyfrowania. Jesteś pewny?"), MessageLookupByLibrary.simpleMessage("Urządzenia użytkowników"),
"Your own username" : MessageLookupByLibrary.simpleMessage("Twój nick"), "Password": MessageLookupByLibrary.simpleMessage("Hasło"),
"acceptedTheInvitation" : m0, "Please be aware that you need Pantalaimon to use end-to-end encryption for now.":
"activatedEndToEndEncryption" : m1, MessageLookupByLibrary.simpleMessage(
"alias" : MessageLookupByLibrary.simpleMessage("alias"), "Należy pamiętać, że Pantalaimon wymaga na razie szyfrowania end-to-end."),
"bannedUser" : m2, "Please choose a username":
"byDefaultYouWillBeConnectedTo" : m3, MessageLookupByLibrary.simpleMessage("Wybierz nick"),
"changedTheChatAvatar" : m4, "Please enter a matrix identifier":
"changedTheChatDescriptionTo" : m5, MessageLookupByLibrary.simpleMessage(
"changedTheChatNameTo" : m6, "Wprowadź proszę identyfikator matrix"),
"changedTheChatPermissions" : m7, "Please enter your password":
"changedTheDisplaynameTo" : m8, MessageLookupByLibrary.simpleMessage("Wpisz swoje hasło"),
"changedTheGuestAccessRules" : m9, "Please enter your username":
"changedTheGuestAccessRulesTo" : m10, MessageLookupByLibrary.simpleMessage("Wpisz swój nick"),
"changedTheHistoryVisibility" : m11, "Public Rooms":
"changedTheHistoryVisibilityTo" : m12, MessageLookupByLibrary.simpleMessage("Publiczne pokoje"),
"changedTheJoinRules" : m13, "Recording": MessageLookupByLibrary.simpleMessage("Nagranie"),
"changedTheJoinRulesTo" : m14, "Rejoin": MessageLookupByLibrary.simpleMessage("Dołącz ponownie"),
"changedTheProfileAvatar" : m15, "Remove": MessageLookupByLibrary.simpleMessage("Usuń"),
"changedTheRoomAliases" : m16, "Remove all other devices": MessageLookupByLibrary.simpleMessage(
"changedTheRoomInvitationLink" : m17, "Usuń wszystkie inne urządzenia"),
"couldNotDecryptMessage" : m18, "Remove device":
"countParticipants" : m19, MessageLookupByLibrary.simpleMessage("Usuń urządzenie"),
"createdTheChat" : m20, "Remove exile": MessageLookupByLibrary.simpleMessage("Usuń blokadę"),
"dateAndTimeOfDay" : m21, "Remove message":
"dateWithYear" : m22, MessageLookupByLibrary.simpleMessage("Usuń wiadomość"),
"dateWithoutYear" : m23, "Reply": MessageLookupByLibrary.simpleMessage("Odpisz"),
"groupWith" : m24, "Request permission":
"hasWithdrawnTheInvitationFor" : m25, MessageLookupByLibrary.simpleMessage("Prośba o pozwolenie"),
"inviteContactToGroup" : m26, "Request to read older messages": MessageLookupByLibrary.simpleMessage(
"inviteText" : m27, "Poproś o przeczytanie starszych wiadomości"),
"invitedUser" : m28, "Revoke all permissions": MessageLookupByLibrary.simpleMessage(
"is typing..." : MessageLookupByLibrary.simpleMessage("pisze..."), "Odwołaj wszystkie uprawnienia"),
"joinedTheChat" : m29, "Saturday": MessageLookupByLibrary.simpleMessage("Sobota"),
"kicked" : m30, "Search for a chat":
"kickedAndBanned" : m31, MessageLookupByLibrary.simpleMessage("Przeszukaj czat"),
"lastActiveAgo" : m32, "Send": MessageLookupByLibrary.simpleMessage("Wyślij"),
"loadCountMoreParticipants" : m33, "Send a message":
"logInTo" : m34, MessageLookupByLibrary.simpleMessage("Wyślij wiadomość"),
"numberSelected" : m35, "Send file": MessageLookupByLibrary.simpleMessage("Wyślij plik"),
"play" : m36, "Send image": MessageLookupByLibrary.simpleMessage("Wyślij obraz"),
"redactedAnEvent" : m37, "Set a profile picture":
"rejectedTheInvitation" : m38, MessageLookupByLibrary.simpleMessage("Ustaw zdjęcie profilowe"),
"removedBy" : m39, "Set group description":
"seenByUser" : m40, MessageLookupByLibrary.simpleMessage("Ustaw opis grupy"),
"seenByUserAndCountOthers" : m41, "Set invitation link":
"seenByUserAndUser" : m42, MessageLookupByLibrary.simpleMessage("Ustaw link zaproszeniowy"),
"sentAFile" : m43, "Set status": MessageLookupByLibrary.simpleMessage("Ustaw status"),
"sentAPicture" : m44, "Settings": MessageLookupByLibrary.simpleMessage("Ustawienia"),
"sentASticker" : m45, "Share": MessageLookupByLibrary.simpleMessage("Udostępnij"),
"sentAVideo" : m46, "Sign up": MessageLookupByLibrary.simpleMessage("Zarejesturuj się"),
"sentAnAudio" : m47, "Source code": MessageLookupByLibrary.simpleMessage("Kod żródłowy"),
"sharedTheLocation" : m48, "Start your first chat :-)": MessageLookupByLibrary.simpleMessage(
"timeOfDay" : m49, "Rozpocznij swój pierwszy czat :-)"),
"title" : MessageLookupByLibrary.simpleMessage("FluffyChat"), "Sunday": MessageLookupByLibrary.simpleMessage("Niedziela"),
"unbannedUser" : m50, "System": MessageLookupByLibrary.simpleMessage("System"),
"unknownEvent" : m51, "Tap to show menu":
"unreadChats" : m52, MessageLookupByLibrary.simpleMessage("Kliknij by zobaczyć menu"),
"unreadMessages" : m53, "The encryption has been corrupted":
"unreadMessagesInChats" : m54, MessageLookupByLibrary.simpleMessage(
"userAndOthersAreTyping" : m55, "Szyfrowanie zostało uszkodzone"),
"userAndUserAreTyping" : m56, "This room has been archived.": MessageLookupByLibrary.simpleMessage(
"userIsTyping" : m57, "Ten pokój został przeniesiony do archiwum."),
"userLeftTheChat" : m58, "Thursday": MessageLookupByLibrary.simpleMessage("Czwartek"),
"userSentUnknownEvent" : m59 "Try to send again":
}; MessageLookupByLibrary.simpleMessage("Spróbuj wysłać ponownie"),
"Tuesday": MessageLookupByLibrary.simpleMessage("Wtorek"),
"Unknown device":
MessageLookupByLibrary.simpleMessage("Nieznane urządzenie"),
"Unknown encryption algorithm": MessageLookupByLibrary.simpleMessage(
"Nieznany algorytm szyfrowania"),
"Unmute chat":
MessageLookupByLibrary.simpleMessage("Wyłącz wyciszenie"),
"Use Amoled compatible colors?": MessageLookupByLibrary.simpleMessage(
"Użyć kolorów kompatybilnych z ekranami Amoled?"),
"Username": MessageLookupByLibrary.simpleMessage("Nick"),
"Verify": MessageLookupByLibrary.simpleMessage("zweryfikuj"),
"Video call": MessageLookupByLibrary.simpleMessage("Rozmowa wideo"),
"Visibility of the chat history":
MessageLookupByLibrary.simpleMessage("Widoczność historii czatu"),
"Visible for all participants": MessageLookupByLibrary.simpleMessage(
"Widoczny dla wszystkich użytkowników"),
"Visible for everyone":
MessageLookupByLibrary.simpleMessage("Widoczny dla każdego"),
"Voice message":
MessageLookupByLibrary.simpleMessage("Wiadomość głosowa"),
"Wallpaper": MessageLookupByLibrary.simpleMessage("Tapeta"),
"Wednesday": MessageLookupByLibrary.simpleMessage("Środa"),
"Welcome to the cutest instant messenger in the matrix network.":
MessageLookupByLibrary.simpleMessage(
"Witamy w najładniejszym komunikatorze w sieci matrix."),
"Who is allowed to join this group":
MessageLookupByLibrary.simpleMessage(
"Kto może dołączyć do tej grupy"),
"Write a message...":
MessageLookupByLibrary.simpleMessage("Pisze wiadomość..."),
"Yes": MessageLookupByLibrary.simpleMessage("Tak"),
"You": MessageLookupByLibrary.simpleMessage("Ty"),
"You are invited to this chat": MessageLookupByLibrary.simpleMessage(
"Dostałeś/-aś zaproszenie do tego czatu"),
"You are no longer participating in this chat":
MessageLookupByLibrary.simpleMessage(
"Nie uczestniczysz już w tym czacie"),
"You cannot invite yourself":
MessageLookupByLibrary.simpleMessage("Nie możesz zaprosić siebie"),
"You have been banned from this chat":
MessageLookupByLibrary.simpleMessage(
"Zostałeś zbanowany na tym czacie"),
"You won\'t be able to disable the encryption anymore. Are you sure?":
MessageLookupByLibrary.simpleMessage(
"Nie będziesz już mógł wyłączyć szyfrowania. Jesteś pewny?"),
"Your own username": MessageLookupByLibrary.simpleMessage("Twój nick"),
"acceptedTheInvitation": m0,
"activatedEndToEndEncryption": m1,
"alias": MessageLookupByLibrary.simpleMessage("alias"),
"bannedUser": m2,
"byDefaultYouWillBeConnectedTo": m3,
"changedTheChatAvatar": m4,
"changedTheChatDescriptionTo": m5,
"changedTheChatNameTo": m6,
"changedTheChatPermissions": m7,
"changedTheDisplaynameTo": m8,
"changedTheGuestAccessRules": m9,
"changedTheGuestAccessRulesTo": m10,
"changedTheHistoryVisibility": m11,
"changedTheHistoryVisibilityTo": m12,
"changedTheJoinRules": m13,
"changedTheJoinRulesTo": m14,
"changedTheProfileAvatar": m15,
"changedTheRoomAliases": m16,
"changedTheRoomInvitationLink": m17,
"couldNotDecryptMessage": m18,
"countParticipants": m19,
"createdTheChat": m20,
"dateAndTimeOfDay": m21,
"dateWithYear": m22,
"dateWithoutYear": m23,
"groupWith": m24,
"hasWithdrawnTheInvitationFor": m25,
"inviteContactToGroup": m26,
"inviteText": m27,
"invitedUser": m28,
"is typing...": MessageLookupByLibrary.simpleMessage("pisze..."),
"joinedTheChat": m29,
"kicked": m30,
"kickedAndBanned": m31,
"lastActiveAgo": m32,
"loadCountMoreParticipants": m33,
"logInTo": m34,
"numberSelected": m35,
"play": m36,
"redactedAnEvent": m37,
"rejectedTheInvitation": m38,
"removedBy": m39,
"seenByUser": m40,
"seenByUserAndCountOthers": m41,
"seenByUserAndUser": m42,
"sentAFile": m43,
"sentAPicture": m44,
"sentASticker": m45,
"sentAVideo": m46,
"sentAnAudio": m47,
"sharedTheLocation": m48,
"timeOfDay": m49,
"title": MessageLookupByLibrary.simpleMessage("FluffyChat"),
"unbannedUser": m50,
"unknownEvent": m51,
"unreadChats": m52,
"unreadMessages": m53,
"unreadMessagesInChats": m54,
"userAndOthersAreTyping": m55,
"userAndUserAreTyping": m56,
"userIsTyping": m57,
"userLeftTheChat": m58,
"userSentUnknownEvent": m59
};
} }

View File

@ -2,9 +2,13 @@ import 'package:famedlysdk/famedlysdk.dart';
import 'package:encrypted_moor/encrypted_moor.dart'; import 'package:encrypted_moor/encrypted_moor.dart';
import 'package:flutter/material.dart'; import 'package:flutter/material.dart';
Database constructDb({bool logStatements = false, String filename = 'database.sqlite', String password = ''}) { Database constructDb(
{bool logStatements = false,
String filename = 'database.sqlite',
String password = ''}) {
debugPrint('[Moor] using encrypted moor'); debugPrint('[Moor] using encrypted moor');
return Database(EncryptedExecutor(path: filename, password: password, logStatements: logStatements)); return Database(EncryptedExecutor(
path: filename, password: password, logStatements: logStatements));
} }
Future<String> getLocalstorage(String key) async { Future<String> getLocalstorage(String key) async {

View File

@ -1,3 +1,3 @@
export 'unsupported.dart' export 'unsupported.dart'
if (dart.library.html) 'web.dart' if (dart.library.html) 'web.dart'
if (dart.library.io) 'mobile.dart'; if (dart.library.io) 'mobile.dart';

View File

@ -1,6 +1,9 @@
import 'package:famedlysdk/famedlysdk.dart'; import 'package:famedlysdk/famedlysdk.dart';
Database constructDb({bool logStatements = false, String filename = 'database.sqlite', String password = ''}) { Database constructDb(
{bool logStatements = false,
String filename = 'database.sqlite',
String password = ''}) {
throw 'Platform not supported'; throw 'Platform not supported';
} }

View File

@ -3,9 +3,14 @@ import 'package:moor/moor_web.dart';
import 'package:flutter/material.dart'; import 'package:flutter/material.dart';
import 'dart:html'; import 'dart:html';
Database constructDb({bool logStatements = false, String filename = 'database.sqlite', String password = ''}) { Database constructDb(
{bool logStatements = false,
String filename = 'database.sqlite',
String password = ''}) {
debugPrint('[Moor] Using moor web'); debugPrint('[Moor] Using moor web');
return Database(WebDatabase.withStorage(MoorWebStorage.indexedDbIfSupported(filename), logStatements: logStatements)); return Database(WebDatabase.withStorage(
MoorWebStorage.indexedDbIfSupported(filename),
logStatements: logStatements));
} }
Future<String> getLocalstorage(String key) async { Future<String> getLocalstorage(String key) async {