Merge branch 'soru/avatar-change-grammar' into 'master'

Changes "<name> changed the profile avatar" to "<name> changed their avatar

Closes #120

See merge request ChristianPauly/fluffychat-flutter!112
This commit is contained in:
Christian Pauly 2020-07-21 08:53:21 +00:00
commit eeb820564c
14 changed files with 2714 additions and 109 deletions

View File

@ -239,7 +239,7 @@
"joinRules": {}
}
},
"changedTheProfileAvatar": "{username} changed the profile avatar",
"changedTheProfileAvatar": "{username} changed their avatar",
"@changedTheProfileAvatar": {
"type": "text",
"placeholders": {

View File

@ -213,7 +213,7 @@ class L10n extends MatrixLocalizations {
);
String changedTheProfileAvatar(String username) => Intl.message(
"$username changed the profile avatar",
"$username changed their avatar",
name: "changedTheProfileAvatar",
args: [username],
);

View File

@ -19,9 +19,13 @@ import 'messages_cs.dart' as messages_cs;
import 'messages_de.dart' as messages_de;
import 'messages_es.dart' as messages_es;
import 'messages_fr.dart' as messages_fr;
import 'messages_gl.dart' as messages_gl;
import 'messages_hr.dart' as messages_hr;
import 'messages_hu.dart' as messages_hu;
import 'messages_ja.dart' as messages_ja;
import 'messages_messages.dart' as messages_messages;
import 'messages_pl.dart' as messages_pl;
import 'messages_ru.dart' as messages_ru;
import 'messages_sk.dart' as messages_sk;
typedef Future<dynamic> LibraryLoader();
@ -30,9 +34,13 @@ Map<String, LibraryLoader> _deferredLibraries = {
'de': () => new Future.value(null),
'es': () => new Future.value(null),
'fr': () => new Future.value(null),
'gl': () => new Future.value(null),
'hr': () => new Future.value(null),
'hu': () => new Future.value(null),
'ja': () => new Future.value(null),
'messages': () => new Future.value(null),
'pl': () => new Future.value(null),
'ru': () => new Future.value(null),
'sk': () => new Future.value(null),
};
@ -46,12 +54,20 @@ MessageLookupByLibrary _findExact(String localeName) {
return messages_es.messages;
case 'fr':
return messages_fr.messages;
case 'gl':
return messages_gl.messages;
case 'hr':
return messages_hr.messages;
case 'hu':
return messages_hu.messages;
case 'ja':
return messages_ja.messages;
case 'messages':
return messages_messages.messages;
case 'pl':
return messages_pl.messages;
case 'ru':
return messages_ru.messages;
case 'sk':
return messages_sk.messages;
default:

View File

@ -157,6 +157,7 @@ class MessageLookup extends MessageLookupByLibrary {
"(Optional) Group name":
MessageLookupByLibrary.simpleMessage("(Volitelné) Název skupiny"),
"About": MessageLookupByLibrary.simpleMessage("O aplikaci"),
"Accept": MessageLookupByLibrary.simpleMessage("Přijmout"),
"Account": MessageLookupByLibrary.simpleMessage("Účet"),
"Account informations":
MessageLookupByLibrary.simpleMessage("Informace o účtu"),

View File

@ -24,6 +24,8 @@ class MessageLookup extends MessageLookupByLibrary {
static m1(username) =>
"${username} hat Ende-zu-Ende Verschlüsselung aktiviert";
static m60(username) => "Diese Bestätigungsanfrage von ${username} annehmen?";
static m2(username, targetName) => "${username} hat ${targetName} verbannt";
static m3(homeserver) => "Standardmäßig wirst Du mit ${homeserver} verbunden";
@ -71,16 +73,16 @@ class MessageLookup extends MessageLookupByLibrary {
static m21(date, timeOfDay) => "${date}, ${timeOfDay}";
static m22(year, month, day) => "${day}.${month}.${year}";
static m22(year, month, day) => "${day}. ${month}. ${year}";
static m23(month, day) => "${day}.${month}";
static m23(month, day) => "${day}. ${month}";
static m24(displayname) => "Gruppe mit ${displayname}";
static m25(username, targetName) =>
"${username} hat die Einladung für ${targetName} zurückgezogen";
static m26(groupName) => "Kontakt zu ${groupName} einladen";
static m26(groupName) => "Kontakt in die Gruppe ${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}";
@ -96,7 +98,7 @@ class MessageLookup extends MessageLookupByLibrary {
static m31(username, targetName) =>
"${username} hat ${targetName} hinausgeworfen und verbannt";
static m32(localizedTimeShort) => "Zuletzt gesehen: ${localizedTimeShort}";
static m32(localizedTimeShort) => "Zuletzt aktiv: ${localizedTimeShort}";
static m33(count) => "${count} weitere Teilnehmer*innen laden";
@ -104,7 +106,7 @@ class MessageLookup extends MessageLookupByLibrary {
static m35(number) => "${number} ausgewählt";
static m36(fileName) => "Play ${fileName}";
static m36(fileName) => "${fileName} abspielen";
static m37(username) => "${username} hat ein Event enternt";
@ -135,7 +137,7 @@ class MessageLookup extends MessageLookupByLibrary {
static m50(username, targetName) =>
"${username} hat die Verbannung von ${targetName} aufgehoben";
static m51(type) => "Unbekanntes Event \'${type}\'";
static m51(type) => "Unbekanntes Ereignis \'${type}\'";
static m52(unreadCount) => "${unreadCount} ungelesene Unterhaltungen";
@ -161,6 +163,7 @@ class MessageLookup extends MessageLookupByLibrary {
"(Optional) Group name": MessageLookupByLibrary.simpleMessage(
"(Optional) Name für die Gruppe"),
"About": MessageLookupByLibrary.simpleMessage("Über"),
"Accept": MessageLookupByLibrary.simpleMessage("Annehmen"),
"Account": MessageLookupByLibrary.simpleMessage("Konto"),
"Account informations":
MessageLookupByLibrary.simpleMessage("Kontoinformationen"),
@ -184,7 +187,8 @@ class MessageLookup extends MessageLookupByLibrary {
MessageLookupByLibrary.simpleMessage("Avatar wurde geändert"),
"Ban from chat":
MessageLookupByLibrary.simpleMessage("Aus dem Chat verbannen"),
"Banned": MessageLookupByLibrary.simpleMessage("Banned"),
"Banned": MessageLookupByLibrary.simpleMessage("Verbannt"),
"Block Device": MessageLookupByLibrary.simpleMessage("Blockiere Gerät"),
"Cancel": MessageLookupByLibrary.simpleMessage("Abbrechen"),
"Change the homeserver": MessageLookupByLibrary.simpleMessage(
"Anderen Homeserver verwenden"),
@ -196,7 +200,8 @@ class MessageLookup extends MessageLookupByLibrary {
MessageLookupByLibrary.simpleMessage("Hintergrund ändern"),
"Change your style":
MessageLookupByLibrary.simpleMessage("Ändere Deinen Style"),
"Changelog": MessageLookupByLibrary.simpleMessage("Changelog"),
"Changelog":
MessageLookupByLibrary.simpleMessage("Protokoll der Änderungen"),
"Chat": MessageLookupByLibrary.simpleMessage("Chat"),
"Chat details": MessageLookupByLibrary.simpleMessage("Gruppeninfo"),
"Choose a strong password":
@ -220,7 +225,7 @@ class MessageLookup extends MessageLookupByLibrary {
"Profilbild konnte nicht gesetzt werden"),
"Could not set displayname": MessageLookupByLibrary.simpleMessage(
"Anzeigename konnte nicht gesetzt werden"),
"Create": MessageLookupByLibrary.simpleMessage("Create"),
"Create": MessageLookupByLibrary.simpleMessage("Erstellen"),
"Create account now":
MessageLookupByLibrary.simpleMessage("Account jetzt erstellen"),
"Create new group": MessageLookupByLibrary.simpleMessage("Neue Gruppe"),
@ -248,6 +253,7 @@ class MessageLookup extends MessageLookupByLibrary {
MessageLookupByLibrary.simpleMessage("Emote Einstellungen"),
"Emote shortcode": MessageLookupByLibrary.simpleMessage("Emote kürzel"),
"Empty chat": MessageLookupByLibrary.simpleMessage("Leerer Chat"),
"Encryption": MessageLookupByLibrary.simpleMessage("Verschlüsselung"),
"Encryption algorithm":
MessageLookupByLibrary.simpleMessage("Verschlüsselungsalgorithmus"),
"Encryption is not enabled": MessageLookupByLibrary.simpleMessage(
@ -286,6 +292,8 @@ class MessageLookup extends MessageLookupByLibrary {
"Help": MessageLookupByLibrary.simpleMessage("Hilfe"),
"Homeserver is not compatible": MessageLookupByLibrary.simpleMessage(
"Homeserver ist nicht kompatibel"),
"How are you today?":
MessageLookupByLibrary.simpleMessage("Wie geht es dir heute?"),
"ID": MessageLookupByLibrary.simpleMessage("ID"),
"Identity": MessageLookupByLibrary.simpleMessage("Identität"),
"Invite contact":
@ -309,7 +317,7 @@ class MessageLookup extends MessageLookupByLibrary {
"Loading... Please wait":
MessageLookupByLibrary.simpleMessage("Lade ... Bitte warten"),
"Login": MessageLookupByLibrary.simpleMessage("Login"),
"Logout": MessageLookupByLibrary.simpleMessage("Logout"),
"Logout": MessageLookupByLibrary.simpleMessage("Abmelden"),
"Make a moderator":
MessageLookupByLibrary.simpleMessage("Zum Moderator ernennen"),
"Make an admin":
@ -338,6 +346,8 @@ class MessageLookup extends MessageLookupByLibrary {
"Wird in der Web-Version nicht unterstützt"),
"Oops something went wrong...": MessageLookupByLibrary.simpleMessage(
"Hoppla! Da ist etwas schief gelaufen ..."),
"Open app to read messages": MessageLookupByLibrary.simpleMessage(
"Öffne app, um Nachrichten zu lesen"),
"Open camera": MessageLookupByLibrary.simpleMessage("Kamera öffnen"),
"Participating user devices":
MessageLookupByLibrary.simpleMessage("Teilnehmende Geräte"),
@ -358,6 +368,7 @@ class MessageLookup extends MessageLookupByLibrary {
"Public Rooms":
MessageLookupByLibrary.simpleMessage("Öffentliche Räume"),
"Recording": MessageLookupByLibrary.simpleMessage("Aufnahme"),
"Reject": MessageLookupByLibrary.simpleMessage("Ablehnen"),
"Rejoin": MessageLookupByLibrary.simpleMessage("Wieder beitreten"),
"Remove": MessageLookupByLibrary.simpleMessage("Entfernen"),
"Remove all other devices": MessageLookupByLibrary.simpleMessage(
@ -377,9 +388,11 @@ class MessageLookup extends MessageLookupByLibrary {
"Anfrage um ältere Nachrichten zu lesen"),
"Revoke all permissions": MessageLookupByLibrary.simpleMessage(
"Alle Berechtigungen zurücknehmen"),
"Room has been upgraded":
MessageLookupByLibrary.simpleMessage("Der Raum wurde ge-upgraded"),
"Saturday": MessageLookupByLibrary.simpleMessage("Samstag"),
"Search for a chat":
MessageLookupByLibrary.simpleMessage("Chats durchsuchen"),
MessageLookupByLibrary.simpleMessage("Chat suchen"),
"Seen a long time ago": MessageLookupByLibrary.simpleMessage(
"Vor sehr langer Zeit gesehen"),
"Send": MessageLookupByLibrary.simpleMessage("Senden"),
@ -397,9 +410,11 @@ class MessageLookup extends MessageLookupByLibrary {
"Settings": MessageLookupByLibrary.simpleMessage("Einstellungen"),
"Share": MessageLookupByLibrary.simpleMessage("Teilen"),
"Sign up": MessageLookupByLibrary.simpleMessage("Registrieren"),
"Skip": MessageLookupByLibrary.simpleMessage("Überspringe"),
"Source code": MessageLookupByLibrary.simpleMessage("Quellcode"),
"Start your first chat :-)": MessageLookupByLibrary.simpleMessage(
"Starte deinen ersten Chat :-)"),
"Submit": MessageLookupByLibrary.simpleMessage("Absenden"),
"Sunday": MessageLookupByLibrary.simpleMessage("Sonntag"),
"System": MessageLookupByLibrary.simpleMessage("System"),
"Tap to show menu": MessageLookupByLibrary.simpleMessage(
@ -407,12 +422,17 @@ class MessageLookup extends MessageLookupByLibrary {
"The encryption has been corrupted":
MessageLookupByLibrary.simpleMessage(
"Die Verschlüsselung wurde korrumpiert"),
"They Don\'t Match":
MessageLookupByLibrary.simpleMessage("Stimmen nicht überein"),
"They Match": MessageLookupByLibrary.simpleMessage("Stimmen überein"),
"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"),
"Unblock Device":
MessageLookupByLibrary.simpleMessage("Geräteblockierung aufheben"),
"Unknown device":
MessageLookupByLibrary.simpleMessage("Unbekanntes Gerät"),
"Unknown encryption algorithm": MessageLookupByLibrary.simpleMessage(
@ -422,6 +442,8 @@ class MessageLookup extends MessageLookupByLibrary {
"Amoled optimierte Farben verwenden?"),
"Username": MessageLookupByLibrary.simpleMessage("Benutzername"),
"Verify": MessageLookupByLibrary.simpleMessage("Bestätigen"),
"Verify User":
MessageLookupByLibrary.simpleMessage("Verifiziere Benutzer"),
"Video call": MessageLookupByLibrary.simpleMessage("Videoanruf"),
"Visibility of the chat history": MessageLookupByLibrary.simpleMessage(
"Sichtbarkeit des Chat-Verlaufs"),
@ -461,8 +483,17 @@ class MessageLookup extends MessageLookupByLibrary {
"acceptedTheInvitation": m0,
"activatedEndToEndEncryption": m1,
"alias": MessageLookupByLibrary.simpleMessage("Alias"),
"askSSSSCache": MessageLookupByLibrary.simpleMessage(
"Bitte gib dein Secure-Store Passwort oder Wiederherstellungsschlüssel ein, um die Keys zu cachen."),
"askSSSSSign": MessageLookupByLibrary.simpleMessage(
"Bitte gebe um die andere Person signieren zu können dein Secure-Store Passwort oder Wiederherstellungsschlüssel ein."),
"askSSSSVerify": MessageLookupByLibrary.simpleMessage(
"Bitte gebe um deine Session zu verifizieren dein Secure-Store Passwort oder Wiederherstellungsschlüssel ein."),
"askVerificationRequest": m60,
"bannedUser": m2,
"byDefaultYouWillBeConnectedTo": m3,
"cachedKeys":
MessageLookupByLibrary.simpleMessage("Keys erfolgreich gecached!"),
"changedTheChatAvatar": m4,
"changedTheChatDescriptionTo": m5,
"changedTheChatNameTo": m6,
@ -477,9 +508,17 @@ class MessageLookup extends MessageLookupByLibrary {
"changedTheProfileAvatar": m15,
"changedTheRoomAliases": m16,
"changedTheRoomInvitationLink": m17,
"compareEmojiMatch": MessageLookupByLibrary.simpleMessage(
"Vergleiche und stelle sicher, dass die folgenden Emoji mit denen des anderen Gerätes übereinstimmen:"),
"compareNumbersMatch": MessageLookupByLibrary.simpleMessage(
"Vergleiche und stelle sicher, dass die folgenden Zahlen mit denen des anderen Gerätes übereinstimmen:"),
"couldNotDecryptMessage": m18,
"countParticipants": m19,
"createdTheChat": m20,
"crossSigningDisabled": MessageLookupByLibrary.simpleMessage(
"Cross-Signing ist deaktiviert"),
"crossSigningEnabled":
MessageLookupByLibrary.simpleMessage("Cross-Signing ist aktiviert"),
"dateAndTimeOfDay": m21,
"dateWithYear": m22,
"dateWithoutYear": m23,
@ -491,18 +530,37 @@ class MessageLookup extends MessageLookupByLibrary {
"Wähle ein Emote-kürzel und ein Bild!"),
"groupWith": m24,
"hasWithdrawnTheInvitationFor": m25,
"incorrectPassphraseOrKey": MessageLookupByLibrary.simpleMessage(
"Falsches Passwort oder Wiederherstellungsschlüssel"),
"inviteContactToGroup": m26,
"inviteText": m27,
"invitedUser": m28,
"is typing...": MessageLookupByLibrary.simpleMessage("schreibt..."),
"isDeviceKeyCorrect": MessageLookupByLibrary.simpleMessage(
"Ist der folgende Geräteschlüssel korrekt?"),
"joinedTheChat": m29,
"keysCached":
MessageLookupByLibrary.simpleMessage("Keys sind gecached"),
"keysMissing": MessageLookupByLibrary.simpleMessage("Keys fehlen"),
"kicked": m30,
"kickedAndBanned": m31,
"lastActiveAgo": m32,
"loadCountMoreParticipants": m33,
"logInTo": m34,
"newVerificationRequest":
MessageLookupByLibrary.simpleMessage("Neue Verifikationsanfrage!"),
"noCrossSignBootstrap": MessageLookupByLibrary.simpleMessage(
"Fluffychat unterstützt noch nicht das Einschalten von Cross-Signing. Bitte schalte es innerhalb Riot an."),
"noMegolmBootstrap": MessageLookupByLibrary.simpleMessage(
"Fluffychat unterstützt noch nicht das Einschalten vom Online Key Backup. Bitte schalte es innerhalb Riot an."),
"numberSelected": m35,
"ok": MessageLookupByLibrary.simpleMessage("ok"),
"onlineKeyBackupDisabled": MessageLookupByLibrary.simpleMessage(
"Online Key Backup ist deaktiviert"),
"onlineKeyBackupEnabled": MessageLookupByLibrary.simpleMessage(
"Online Key Backup ist aktiviert"),
"passphraseOrKey": MessageLookupByLibrary.simpleMessage(
"Passwort oder Wiederherstellungsschlüssel"),
"play": m36,
"redactedAnEvent": m37,
"rejectedTheInvitation": m38,
@ -515,11 +573,15 @@ class MessageLookup extends MessageLookupByLibrary {
"sentASticker": m45,
"sentAVideo": m46,
"sentAnAudio": m47,
"sessionVerified":
MessageLookupByLibrary.simpleMessage("Sitzung ist verifiziert"),
"sharedTheLocation": m48,
"timeOfDay": m49,
"title": MessageLookupByLibrary.simpleMessage("FluffyChat"),
"unbannedUser": m50,
"unknownEvent": m51,
"unknownSessionVerify": MessageLookupByLibrary.simpleMessage(
"Unbekannte Sitzung, bitte verifiziere diese"),
"unreadChats": m52,
"unreadMessages": m53,
"unreadMessagesInChats": m54,
@ -527,6 +589,22 @@ class MessageLookup extends MessageLookupByLibrary {
"userAndUserAreTyping": m56,
"userIsTyping": m57,
"userLeftTheChat": m58,
"userSentUnknownEvent": m59
"userSentUnknownEvent": m59,
"verifiedSession": MessageLookupByLibrary.simpleMessage(
"Sitzung erfolgreich verifiziert!"),
"verifyManual":
MessageLookupByLibrary.simpleMessage("Verifiziere manuell"),
"verifyStart":
MessageLookupByLibrary.simpleMessage("Starte Verifikation"),
"verifySuccess":
MessageLookupByLibrary.simpleMessage("Erfolgreich verifiziert!"),
"verifyTitle": MessageLookupByLibrary.simpleMessage(
"Verifiziere anderen Benutzer"),
"waitingPartnerAcceptRequest": MessageLookupByLibrary.simpleMessage(
"Warte darauf, dass der Partner die Verifikationsanfrage annimmt..."),
"waitingPartnerEmoji": MessageLookupByLibrary.simpleMessage(
"Warte darauf, dass der Partner die Emoji annimmt..."),
"waitingPartnerNumbers": MessageLookupByLibrary.simpleMessage(
"Warte darauf, dass der Partner die Zahlen annimmt...")
};
}

View File

@ -21,8 +21,7 @@ class MessageLookup extends MessageLookupByLibrary {
static m0(username) => "${username} aceptó la invitación";
static m1(username) =>
"${username} activó la encriptación de extremo a extremo";
static m1(username) => "${username} activó el cifrado de extremo a extremo";
static m60(username) =>
"¿Aceptar esta solicitud de verificación de ${username}?";
@ -30,9 +29,9 @@ class MessageLookup extends MessageLookupByLibrary {
static m2(username, targetName) => "${username} vetó a ${targetName}";
static m3(homeserver) =>
"De forma predeterminada, estará conectado a ${homeserver}";
"De forma predeterminada estará conectado a ${homeserver}";
static m4(username) => "${username} cambió el avatar del chat";
static m4(username) => "${username} cambió el icono del chat";
static m5(username, description) =>
"${username} cambió la descripción del chat a: \'${description}\'";
@ -43,24 +42,25 @@ class MessageLookup extends MessageLookupByLibrary {
static m7(username) => "${username} cambió los permisos del chat";
static m8(username, displayname) =>
"${username} cambió el nombre para mostrar a: ${displayname}";
"${username} cambió su nombre visible a: ${displayname}";
static m9(username) => "${username} cambió las reglas de acceso de invitado";
static m9(username) =>
"${username} cambió las reglas de acceso de visitantes";
static m10(username, rules) =>
"${username} cambió las reglas de acceso de invitado a: ${rules}";
"${username} cambió las reglas de acceso de visitantes a: ${rules}";
static m11(username) => "${username} cambió la visibilidad del historial";
static m12(username, rules) =>
"${username} cambió la visibilidad del historial a: ${rules}";
static m13(username) => "${username} cambió las reglas de unión";
static m13(username) => "${username} cambió las reglas de ingreso";
static m14(username, joinRules) =>
"${username} cambió las reglas de unión a ${joinRules}";
"${username} cambió las reglas de ingreso a ${joinRules}";
static m15(username) => "${username} cambió el avatar de su perfil";
static m15(username) => "${username} cambió su imagen de perfil";
static m16(username) => "${username} cambió el alias de la sala";
@ -86,11 +86,11 @@ class MessageLookup extends MessageLookupByLibrary {
static m26(groupName) => "Invitar contacto a ${groupName}";
static m27(username, link) =>
"${username} te invitó a FluffyChat.\n1. Instale FluffyChat: http://fluffy.chat\n2. Regístrate o inicia";
"${username} te invitó a FluffyChat.\n1. Instale FluffyChat: http://fluffy.chat\n2. Regístrate o inicia sesión \n3. Abra el enlace de invitación: ${link}";
static m28(username, targetName) => "${username} invitó a ${targetName}";
static m29(username) => "${username} see unió al chat";
static m29(username) => "${username} se unió al chat";
static m30(username, targetName) => "${username} echó a ${targetName}";
@ -114,7 +114,7 @@ class MessageLookup extends MessageLookupByLibrary {
static m40(username) => "Visto por ${username}";
static m41(username, count) => "Visto por ${username} y ${count} otros";
static m41(username, count) => "Visto por ${username} y ${count} s";
static m42(username, username2) => "Visto por ${username} y ${username2}";
@ -145,22 +145,22 @@ class MessageLookup extends MessageLookupByLibrary {
"${unreadEvents} mensajes no leídos en ${unreadChats} chats";
static m55(username, count) =>
"${username} y ${count} otros están escribiendo...";
"${username} y ${count} s están escribiendo...";
static m56(username, username2) =>
"${username} y ${username2} están escribiendo...";
static m57(username) => "${username} está escribiendo..";
static m57(username) => "${username} está escribiendo...";
static m58(username) => "${username} abandonó el chat";
static m59(username, type) => "${username} envió un evento de tipo ${type}";
static m59(username, type) => "${username} envió un evento ${type}";
final messages = _notInlinedMessages(_notInlinedMessages);
static _notInlinedMessages(_) => <String, Function>{
"(Optional) Group name":
MessageLookupByLibrary.simpleMessage("(Opcional) Nombre del grupo"),
"About": MessageLookupByLibrary.simpleMessage("Acerca"),
"About": MessageLookupByLibrary.simpleMessage("Acerca de"),
"Accept": MessageLookupByLibrary.simpleMessage("Aceptar"),
"Account": MessageLookupByLibrary.simpleMessage("Cuenta"),
"Account informations":
@ -175,11 +175,11 @@ class MessageLookup extends MessageLookupByLibrary {
"Archive": MessageLookupByLibrary.simpleMessage("Archivo"),
"Archived Room": MessageLookupByLibrary.simpleMessage("Sala archivada"),
"Are guest users allowed to join": MessageLookupByLibrary.simpleMessage(
"¿Los usuarios invitados pueden unirse?"),
"¿Pueden unirse los usuarios visitantes?"),
"Are you sure?": MessageLookupByLibrary.simpleMessage("¿Estás seguro?"),
"Authentication": MessageLookupByLibrary.simpleMessage("Autenticación"),
"Avatar has been changed":
MessageLookupByLibrary.simpleMessage("El avatar ha sido cambiado"),
"Avatar has been changed": MessageLookupByLibrary.simpleMessage(
"La imagen de perfil ha sido cambiada"),
"Ban from chat": MessageLookupByLibrary.simpleMessage("Vetar del chat"),
"Banned": MessageLookupByLibrary.simpleMessage("Vetado"),
"Block Device":
@ -207,8 +207,8 @@ class MessageLookup extends MessageLookupByLibrary {
"Close": MessageLookupByLibrary.simpleMessage("Cerrar"),
"Confirm": MessageLookupByLibrary.simpleMessage("Confirmar"),
"Connect": MessageLookupByLibrary.simpleMessage("Conectar"),
"Connection attempt failed":
MessageLookupByLibrary.simpleMessage("Intento de conexión fallido"),
"Connection attempt failed": MessageLookupByLibrary.simpleMessage(
"Falló el intento de conexión"),
"Contact has been invited to the group":
MessageLookupByLibrary.simpleMessage(
"El contacto ha sido invitado al grupo"),
@ -218,38 +218,38 @@ class MessageLookup extends MessageLookupByLibrary {
MessageLookupByLibrary.simpleMessage("Copiado al portapapeles"),
"Copy": MessageLookupByLibrary.simpleMessage("Copiar"),
"Could not set avatar": MessageLookupByLibrary.simpleMessage(
"No se pudo establecer el avatar"),
"No se pudo establecer la imagen de perfil"),
"Could not set displayname": MessageLookupByLibrary.simpleMessage(
"No se pudo establecer el nombre para mostrar"),
"No se pudo establecer el nombre visible"),
"Create": MessageLookupByLibrary.simpleMessage("Crear"),
"Create account now":
MessageLookupByLibrary.simpleMessage("Crear cuenta ahora"),
"Create new group":
MessageLookupByLibrary.simpleMessage("Crear nuevo grupo"),
MessageLookupByLibrary.simpleMessage("Crear grupo nuevo"),
"Currently active":
MessageLookupByLibrary.simpleMessage("Actualmente activo"),
"Dark": MessageLookupByLibrary.simpleMessage("Oscuro"),
"Delete": MessageLookupByLibrary.simpleMessage("Eliminar"),
"Delete message":
MessageLookupByLibrary.simpleMessage("Eliminar mensaje"),
"Deny": MessageLookupByLibrary.simpleMessage("Negar"),
"Deny": MessageLookupByLibrary.simpleMessage("Rechazar"),
"Device": MessageLookupByLibrary.simpleMessage("Dispositivo"),
"Devices": MessageLookupByLibrary.simpleMessage("Dispositivos"),
"Discard picture":
MessageLookupByLibrary.simpleMessage("Descartar imagen"),
"Displayname has been changed": MessageLookupByLibrary.simpleMessage(
"El nombre para mostrar ha cambiado"),
"El nombre visible ha cambiado"),
"Donate": MessageLookupByLibrary.simpleMessage("Donar"),
"Download file":
MessageLookupByLibrary.simpleMessage("Descargar archivo"),
"Edit Jitsi instance":
MessageLookupByLibrary.simpleMessage("Editar instancia de Jitsi"),
"Edit Jitsi instance": MessageLookupByLibrary.simpleMessage(
"Cambiar la instancia de Jitsi"),
"Edit displayname":
MessageLookupByLibrary.simpleMessage("Editar nombre para mostrar"),
MessageLookupByLibrary.simpleMessage("Editar nombre visible"),
"Emote Settings":
MessageLookupByLibrary.simpleMessage("Configuración de emotes"),
"Emote shortcode":
MessageLookupByLibrary.simpleMessage("Código corto de emote"),
MessageLookupByLibrary.simpleMessage("Atajo de emote"),
"Empty chat": MessageLookupByLibrary.simpleMessage("Chat vacío"),
"Encryption": MessageLookupByLibrary.simpleMessage("Cifrado"),
"Encryption algorithm":
@ -272,9 +272,10 @@ class MessageLookup extends MessageLookupByLibrary {
"FluffyChat": MessageLookupByLibrary.simpleMessage("FluffyChat"),
"Forward": MessageLookupByLibrary.simpleMessage("Reenviar"),
"Friday": MessageLookupByLibrary.simpleMessage("Viernes"),
"From joining": MessageLookupByLibrary.simpleMessage("De unirse"),
"From joining":
MessageLookupByLibrary.simpleMessage("Desde que se unió"),
"From the invitation":
MessageLookupByLibrary.simpleMessage("De la invitación"),
MessageLookupByLibrary.simpleMessage("Desde la invitación"),
"Group": MessageLookupByLibrary.simpleMessage("Grupo"),
"Group description":
MessageLookupByLibrary.simpleMessage("Descripción del grupo"),
@ -302,7 +303,8 @@ class MessageLookup extends MessageLookupByLibrary {
"It seems that you have no google services on your phone. That\'s a good decision for your privacy! To receive push notifications in FluffyChat we recommend using microG: https://microg.org/":
MessageLookupByLibrary.simpleMessage(
"Parece que no tienes servicios de Google en tu teléfono. ¡Esa es una buena decisión para tu privacidad! Para recibir notificaciones instantáneas en FluffyChat, recomendamos usar microG: https://microg.org/"),
"Kick from chat": MessageLookupByLibrary.simpleMessage("Echar el chat"),
"Kick from chat":
MessageLookupByLibrary.simpleMessage("Echar del chat"),
"Last seen IP":
MessageLookupByLibrary.simpleMessage("Última dirección IP vista"),
"Leave": MessageLookupByLibrary.simpleMessage("Abandonar"),
@ -312,7 +314,7 @@ class MessageLookup extends MessageLookupByLibrary {
"Light": MessageLookupByLibrary.simpleMessage("Claro"),
"Load more...": MessageLookupByLibrary.simpleMessage("Mostrar más..."),
"Loading... Please wait": MessageLookupByLibrary.simpleMessage(
"Cargando... Por favor, espere"),
"Cargando... Por favor espere"),
"Login": MessageLookupByLibrary.simpleMessage("Iniciar sesión"),
"Logout": MessageLookupByLibrary.simpleMessage("Cerrar sesión"),
"Make a moderator":
@ -321,7 +323,7 @@ class MessageLookup extends MessageLookupByLibrary {
MessageLookupByLibrary.simpleMessage("Hacer un administrador/a"),
"Make sure the identifier is valid":
MessageLookupByLibrary.simpleMessage(
"Asegúrese de que el identificador sea válido"),
"Asegúrese de que el identificador es válido"),
"Message will be removed for all participants":
MessageLookupByLibrary.simpleMessage(
"El mensaje será eliminado para todos los participantes"),
@ -359,7 +361,7 @@ class MessageLookup extends MessageLookupByLibrary {
MessageLookupByLibrary.simpleMessage(
"Por favor, ingrese un identificador matrix"),
"Please enter your password": MessageLookupByLibrary.simpleMessage(
"Por favor, ingrese su contraseña"),
"Por favor ingrese su contraseña"),
"Please enter your username": MessageLookupByLibrary.simpleMessage(
"Por favor ingrese su nombre de usuario"),
"Public Rooms": MessageLookupByLibrary.simpleMessage("Salas públicas"),
@ -376,12 +378,12 @@ class MessageLookup extends MessageLookupByLibrary {
"Remove message":
MessageLookupByLibrary.simpleMessage("Eliminar mensaje"),
"Render rich message content": MessageLookupByLibrary.simpleMessage(
"Renderizar el contenido de mensajes enriquecidos"),
"Mostrar el contenido con mensajes enriquecidos"),
"Reply": MessageLookupByLibrary.simpleMessage("Responder"),
"Request permission":
MessageLookupByLibrary.simpleMessage("Solicitar permiso"),
"Request to read older messages": MessageLookupByLibrary.simpleMessage(
"Solicitud para leer mensajes antiguos"),
"Solicitar poder leer mensajes antiguos"),
"Revoke all permissions":
MessageLookupByLibrary.simpleMessage("Revocar todos los permisos"),
"Room has been upgraded": MessageLookupByLibrary.simpleMessage(
@ -416,7 +418,7 @@ class MessageLookup extends MessageLookupByLibrary {
"Tap to show menu":
MessageLookupByLibrary.simpleMessage("Toca para mostrar el menú"),
"The encryption has been corrupted":
MessageLookupByLibrary.simpleMessage("El cifrado ha sido dañado"),
MessageLookupByLibrary.simpleMessage("El cifrado se ha corrompido"),
"They Don\'t Match":
MessageLookupByLibrary.simpleMessage("No coinciden"),
"They Match": MessageLookupByLibrary.simpleMessage("Coinciden"),
@ -435,7 +437,7 @@ class MessageLookup extends MessageLookupByLibrary {
"Unmute chat":
MessageLookupByLibrary.simpleMessage("Dejar de silenciar el chat"),
"Use Amoled compatible colors?": MessageLookupByLibrary.simpleMessage(
"¿Usar colores compatible con AMOLED?"),
"¿Usar colores compatibles con AMOLED?"),
"Username": MessageLookupByLibrary.simpleMessage("Nombre de usuario"),
"Verify": MessageLookupByLibrary.simpleMessage("Verificar"),
"Verify User":
@ -452,7 +454,7 @@ class MessageLookup extends MessageLookupByLibrary {
"Wednesday": MessageLookupByLibrary.simpleMessage("Miércoles"),
"Welcome to the cutest instant messenger in the matrix network.":
MessageLookupByLibrary.simpleMessage(
"Bienvenido a la mensajería instantánea más tierna de la red Matrix."),
"Bienvenido al mensajero instantáneo más tierno de la red Matrix."),
"Who is allowed to join this group":
MessageLookupByLibrary.simpleMessage(
"Quién tiene permitido unirse al grupo"),
@ -472,16 +474,16 @@ class MessageLookup extends MessageLookupByLibrary {
"Has sido vetado de este chat"),
"You won\'t be able to disable the encryption anymore. Are you sure?":
MessageLookupByLibrary.simpleMessage(
"Ya no podrá deshabilitar el cifrado. ¿Está seguro?"),
"Ya no podrá deshabilitar el cifrado. ¿Estás seguro?"),
"Your own username":
MessageLookupByLibrary.simpleMessage("Tu propio nombre de usuario"),
MessageLookupByLibrary.simpleMessage("Tu nombre de usuario"),
"acceptedTheInvitation": m0,
"activatedEndToEndEncryption": m1,
"alias": MessageLookupByLibrary.simpleMessage("alias"),
"askSSSSCache": MessageLookupByLibrary.simpleMessage(
"Ingrese su contraseña de almacenamiento segura (SSSS) o la clave de recuperación para almacenar en caché las claves."),
"askSSSSSign": MessageLookupByLibrary.simpleMessage(
"Para poder firmar a la otra persona, ingrese su contraseña de almacenamiento segura o la clave de recuperación"),
"Para poder confirmar a la otra persona, ingrese su contraseña de almacenamiento segura o la clave de recuperación."),
"askSSSSVerify": MessageLookupByLibrary.simpleMessage(
"Por favor, ingrese su contraseña de almacenamiento seguro (SSSS) o la clave de recuperación para verificar su sesión."),
"askVerificationRequest": m60,
@ -511,18 +513,18 @@ class MessageLookup extends MessageLookupByLibrary {
"countParticipants": m19,
"createdTheChat": m20,
"crossSigningDisabled": MessageLookupByLibrary.simpleMessage(
"La firma cruzada está deshabilitada"),
"La confirmación cruzada está deshabilitada"),
"crossSigningEnabled": MessageLookupByLibrary.simpleMessage(
"La firma cruzada está habilitada"),
"La confirmación cruzada está habilitada"),
"dateAndTimeOfDay": m21,
"dateWithYear": m22,
"dateWithoutYear": m23,
"emoteExists":
MessageLookupByLibrary.simpleMessage("¡El emote ya existe!"),
"emoteInvalid": MessageLookupByLibrary.simpleMessage(
"¡El código corto del emote es inválido!"),
"¡El atajo del emote es inválido!"),
"emoteWarnNeedToPick": MessageLookupByLibrary.simpleMessage(
"¡Debes elegir un código abreviado de emote y una imagen!"),
"¡Debes elegir un atajo de emote y una imagen!"),
"groupWith": m24,
"hasWithdrawnTheInvitationFor": m25,
"incorrectPassphraseOrKey": MessageLookupByLibrary.simpleMessage(
@ -533,7 +535,7 @@ class MessageLookup extends MessageLookupByLibrary {
"is typing...":
MessageLookupByLibrary.simpleMessage("está escribiendo..."),
"isDeviceKeyCorrect": MessageLookupByLibrary.simpleMessage(
"¿Es correcta la siguiente clave del dispositivo?"),
"¿Es correcta la siguiente clave de dispositivo?"),
"joinedTheChat": m29,
"keysCached":
MessageLookupByLibrary.simpleMessage("Las claves están en caché"),
@ -547,9 +549,9 @@ class MessageLookup extends MessageLookupByLibrary {
"newVerificationRequest": MessageLookupByLibrary.simpleMessage(
"¡Nueva solicitud de verificación!"),
"noCrossSignBootstrap": MessageLookupByLibrary.simpleMessage(
"Fluffychat actualmente no admite la habilitación de firma cruzada. Por favor habilítela desde Riot."),
"Fluffychat actualmente no admite habilitar confirmación cruzada. Por favor habilítela desde Element."),
"noMegolmBootstrap": MessageLookupByLibrary.simpleMessage(
"Fluffychat actualmente no admite habilitar la Copia de seguridad de clave en línea. Por favor habilítela desde Riot."),
"Fluffychat actualmente no admite habilitar la Copia de seguridad de clave en línea. Por favor habilítela desde Element."),
"numberSelected": m35,
"ok": MessageLookupByLibrary.simpleMessage("ok"),
"onlineKeyBackupDisabled": MessageLookupByLibrary.simpleMessage(
@ -570,8 +572,8 @@ class MessageLookup extends MessageLookupByLibrary {
"sentASticker": m45,
"sentAVideo": m46,
"sentAnAudio": m47,
"sessionVerified": MessageLookupByLibrary.simpleMessage(
"La sesión ha sido verificada"),
"sessionVerified":
MessageLookupByLibrary.simpleMessage("La sesión está verificada"),
"sharedTheLocation": m48,
"timeOfDay": m49,
"title": MessageLookupByLibrary.simpleMessage("FluffyChat"),
@ -598,7 +600,7 @@ class MessageLookup extends MessageLookupByLibrary {
"verifyTitle":
MessageLookupByLibrary.simpleMessage("Verificando la otra cuenta"),
"waitingPartnerAcceptRequest": MessageLookupByLibrary.simpleMessage(
"Esperando a que el compañero acepte la solicitud..."),
"Esperando a que el socio acepte la solicitud..."),
"waitingPartnerEmoji": MessageLookupByLibrary.simpleMessage(
"Esperando a que el socio acepte los emojis..."),
"waitingPartnerNumbers": MessageLookupByLibrary.simpleMessage(

View File

@ -23,6 +23,9 @@ class MessageLookup extends MessageLookupByLibrary {
static m1(username) => "${username} a activé le chiffrement de bout en bout";
static m60(username) =>
"Accepter cette demande de vérification de ${username} ?";
static m2(username, targetName) => "${username} a banni ${targetName}";
static m3(homeserver) => "Par défaut, vous serez connecté à ${homeserver}";
@ -45,7 +48,7 @@ class MessageLookup extends MessageLookupByLibrary {
"${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}";
"${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";
@ -97,7 +100,7 @@ class MessageLookup extends MessageLookupByLibrary {
"${username} a expulsé et banni ${targetName}";
static m32(localizedTimeShort) =>
"Vu pour la dernière fois: ${localizedTimeShort}";
"Vu pour la dernière fois: ${localizedTimeShort}";
static m33(count) => "Charger ${count} participants de plus";
@ -161,7 +164,8 @@ class MessageLookup extends MessageLookupByLibrary {
static _notInlinedMessages(_) => <String, Function>{
"(Optional) Group name":
MessageLookupByLibrary.simpleMessage("(Optionnel) Nom du groupe"),
"About": MessageLookupByLibrary.simpleMessage("About"),
"About": MessageLookupByLibrary.simpleMessage("À propos"),
"Accept": MessageLookupByLibrary.simpleMessage("Accepter"),
"Account": MessageLookupByLibrary.simpleMessage("Compte"),
"Account informations":
MessageLookupByLibrary.simpleMessage("Informations du compte"),
@ -184,7 +188,9 @@ class MessageLookup extends MessageLookupByLibrary {
"L\'image de profil a été changée"),
"Ban from chat":
MessageLookupByLibrary.simpleMessage("Bannir de la discussion"),
"Banned": MessageLookupByLibrary.simpleMessage("Banned"),
"Banned": MessageLookupByLibrary.simpleMessage("Banni"),
"Block Device":
MessageLookupByLibrary.simpleMessage("Bloquer l\'appareil"),
"Cancel": MessageLookupByLibrary.simpleMessage("Annuler"),
"Change the homeserver": MessageLookupByLibrary.simpleMessage(
"Changer le serveur d\'accueil"),
@ -252,13 +258,14 @@ class MessageLookup extends MessageLookupByLibrary {
"Emote shortcode":
MessageLookupByLibrary.simpleMessage("Raccourci d\'émoticône"),
"Empty chat": MessageLookupByLibrary.simpleMessage("Discussion vide"),
"Encryption": MessageLookupByLibrary.simpleMessage("Chiffrement"),
"Encryption algorithm":
MessageLookupByLibrary.simpleMessage("Algorithme de chiffrement"),
"Encryption is not enabled": MessageLookupByLibrary.simpleMessage(
"Le chiffrement n\'est pas actif"),
"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 !!"),
"Le chiffrement de bout en bout est actuellement en béta! Utilisez cette fonctionnalité à vos propres risques!"),
"End-to-end encryption settings": MessageLookupByLibrary.simpleMessage(
"Paramètres du chiffrement de bout en bout"),
"Enter a group name":
@ -307,16 +314,16 @@ class MessageLookup extends MessageLookupByLibrary {
MessageLookupByLibrary.simpleMessage("Expulser de la discussion"),
"Last seen IP": MessageLookupByLibrary.simpleMessage(
"Dernière addresse IP utilisée"),
"Leave": MessageLookupByLibrary.simpleMessage("Leave"),
"Leave": MessageLookupByLibrary.simpleMessage("Partir"),
"Left the chat":
MessageLookupByLibrary.simpleMessage("Discussion quittée"),
MessageLookupByLibrary.simpleMessage("A quitté la discussion"),
"License": MessageLookupByLibrary.simpleMessage("Licence"),
"Light": MessageLookupByLibrary.simpleMessage("Clair"),
"Load more...": MessageLookupByLibrary.simpleMessage("Charger plus..."),
"Loading... Please wait": MessageLookupByLibrary.simpleMessage(
"Chargement... Merci de patienter"),
"Login": MessageLookupByLibrary.simpleMessage("Connexion"),
"Logout": MessageLookupByLibrary.simpleMessage("Logout"),
"Logout": MessageLookupByLibrary.simpleMessage("Se déconnecter"),
"Make a moderator":
MessageLookupByLibrary.simpleMessage("Promouvoir comme modérateur"),
"Make an admin": MessageLookupByLibrary.simpleMessage(
@ -368,6 +375,7 @@ class MessageLookup extends MessageLookupByLibrary {
"Renseignez votre nom d\'utilisateur"),
"Public Rooms": MessageLookupByLibrary.simpleMessage("Salons publics"),
"Recording": MessageLookupByLibrary.simpleMessage("Enregistrement"),
"Reject": MessageLookupByLibrary.simpleMessage("Refuser"),
"Rejoin": MessageLookupByLibrary.simpleMessage("Rejoindre de nouveau"),
"Remove": MessageLookupByLibrary.simpleMessage("Supprimer"),
"Remove all other devices": MessageLookupByLibrary.simpleMessage(
@ -387,6 +395,8 @@ class MessageLookup extends MessageLookupByLibrary {
"Demander à lire les anciens messages"),
"Revoke all permissions": MessageLookupByLibrary.simpleMessage(
"Révoquer toutes les permissions"),
"Room has been upgraded":
MessageLookupByLibrary.simpleMessage("Le salon a été mis à niveau"),
"Saturday": MessageLookupByLibrary.simpleMessage("Samedi"),
"Search for a chat":
MessageLookupByLibrary.simpleMessage("Rechercher une discussion"),
@ -407,9 +417,11 @@ class MessageLookup extends MessageLookupByLibrary {
"Settings": MessageLookupByLibrary.simpleMessage("Paramètres"),
"Share": MessageLookupByLibrary.simpleMessage("Partager"),
"Sign up": MessageLookupByLibrary.simpleMessage("S\'inscrire"),
"Skip": MessageLookupByLibrary.simpleMessage("Ignorer"),
"Source code": MessageLookupByLibrary.simpleMessage("Code source"),
"Start your first chat :-)": MessageLookupByLibrary.simpleMessage(
"Démarrez votre première discussion :-)"),
"Submit": MessageLookupByLibrary.simpleMessage("Soumettre"),
"Sunday": MessageLookupByLibrary.simpleMessage("Dimanche"),
"System": MessageLookupByLibrary.simpleMessage("Système"),
"Tap to show menu": MessageLookupByLibrary.simpleMessage(
@ -417,12 +429,18 @@ class MessageLookup extends MessageLookupByLibrary {
"The encryption has been corrupted":
MessageLookupByLibrary.simpleMessage(
"Le chiffrement a été corrompu"),
"They Don\'t Match":
MessageLookupByLibrary.simpleMessage("Elles ne correspondent pas"),
"They Match":
MessageLookupByLibrary.simpleMessage("Elles correspondent"),
"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"),
"Unblock Device":
MessageLookupByLibrary.simpleMessage("Débloquer l\'appareil"),
"Unknown device":
MessageLookupByLibrary.simpleMessage("Périphérique inconnu"),
"Unknown encryption algorithm": MessageLookupByLibrary.simpleMessage(
@ -433,6 +451,8 @@ class MessageLookup extends MessageLookupByLibrary {
"Utiliser des couleurs compatibles Amoled ?"),
"Username": MessageLookupByLibrary.simpleMessage("Nom d\'utilisateur"),
"Verify": MessageLookupByLibrary.simpleMessage("Vérifier"),
"Verify User": MessageLookupByLibrary.simpleMessage(
"Vérifier l\'utilisateur/trice"),
"Video call": MessageLookupByLibrary.simpleMessage("Appel vidéo"),
"Visibility of the chat history": MessageLookupByLibrary.simpleMessage(
"Visibilité de l\'historique de la discussion"),
@ -471,8 +491,17 @@ class MessageLookup extends MessageLookupByLibrary {
"acceptedTheInvitation": m0,
"activatedEndToEndEncryption": m1,
"alias": MessageLookupByLibrary.simpleMessage("adresse"),
"askSSSSCache": MessageLookupByLibrary.simpleMessage(
"Veuillez saisir votre phrase de passe stockée de manière sécurisée ou votre clé de récupération pour mettre les clés en cache."),
"askSSSSSign": MessageLookupByLibrary.simpleMessage(
"Pour pouvoir faire signer l\'autre personne, veuillez entrer votre phrase de passe stockée de manière sécurisée ou votre clé de récupération."),
"askSSSSVerify": MessageLookupByLibrary.simpleMessage(
"Veuillez saisir votre phrase de passe stockée de manière sécurisée ou votre clé de récupération pour vérifier votre session."),
"askVerificationRequest": m60,
"bannedUser": m2,
"byDefaultYouWillBeConnectedTo": m3,
"cachedKeys": MessageLookupByLibrary.simpleMessage(
"Clés mises en cache avec succès !"),
"changedTheChatAvatar": m4,
"changedTheChatDescriptionTo": m5,
"changedTheChatNameTo": m6,
@ -487,9 +516,17 @@ class MessageLookup extends MessageLookupByLibrary {
"changedTheProfileAvatar": m15,
"changedTheRoomAliases": m16,
"changedTheRoomInvitationLink": m17,
"compareEmojiMatch": MessageLookupByLibrary.simpleMessage(
"Comparez et assurez-vous que les emojis suivants correspondent à ceux de l\'autre appareil :"),
"compareNumbersMatch": MessageLookupByLibrary.simpleMessage(
"Comparez et assurez-vous que les chiffres suivants correspondent à ceux de l\'autre appareil :"),
"couldNotDecryptMessage": m18,
"countParticipants": m19,
"createdTheChat": m20,
"crossSigningDisabled": MessageLookupByLibrary.simpleMessage(
"La signature croisée est désactivée"),
"crossSigningEnabled": MessageLookupByLibrary.simpleMessage(
"La signature croisée est activée"),
"dateAndTimeOfDay": m21,
"dateWithYear": m22,
"dateWithoutYear": m23,
@ -501,18 +538,39 @@ class MessageLookup extends MessageLookupByLibrary {
"Vous devez sélectionner un raccourci d\'émoticône et une image !"),
"groupWith": m24,
"hasWithdrawnTheInvitationFor": m25,
"incorrectPassphraseOrKey": MessageLookupByLibrary.simpleMessage(
"Phrase de passe ou clé de récupération incorrecte"),
"inviteContactToGroup": m26,
"inviteText": m27,
"invitedUser": m28,
"is typing...": MessageLookupByLibrary.simpleMessage("is typing..."),
"is typing...":
MessageLookupByLibrary.simpleMessage("est en train d\'écrire..."),
"isDeviceKeyCorrect": MessageLookupByLibrary.simpleMessage(
"La clé de l\'appareil ci-dessous est-elle correcte ?"),
"joinedTheChat": m29,
"keysCached": MessageLookupByLibrary.simpleMessage(
"Les clés sont mises en cache"),
"keysMissing":
MessageLookupByLibrary.simpleMessage("Les clés sont manquantes"),
"kicked": m30,
"kickedAndBanned": m31,
"lastActiveAgo": m32,
"loadCountMoreParticipants": m33,
"logInTo": m34,
"newVerificationRequest": MessageLookupByLibrary.simpleMessage(
"Nouvelle demande de vérification !"),
"noCrossSignBootstrap": MessageLookupByLibrary.simpleMessage(
"Fluffychat ne permet pas actuellement d\'activer la signature croisée. Veuillez l\'activer à partir de Element."),
"noMegolmBootstrap": MessageLookupByLibrary.simpleMessage(
"Fluffychat ne prend pas actuellement en charge l\'activation de la sauvegarde des clés en ligne. Veuillez l\'activer à partir de Element."),
"numberSelected": m35,
"ok": MessageLookupByLibrary.simpleMessage("ok"),
"onlineKeyBackupDisabled": MessageLookupByLibrary.simpleMessage(
"La sauvegarde en ligne des clés est désactivée"),
"onlineKeyBackupEnabled": MessageLookupByLibrary.simpleMessage(
"La sauvegarde en ligne des clés est activée"),
"passphraseOrKey": MessageLookupByLibrary.simpleMessage(
"Phrase de passe ou clé de récupération"),
"play": m36,
"redactedAnEvent": m37,
"rejectedTheInvitation": m38,
@ -525,11 +583,15 @@ class MessageLookup extends MessageLookupByLibrary {
"sentASticker": m45,
"sentAVideo": m46,
"sentAnAudio": m47,
"sessionVerified":
MessageLookupByLibrary.simpleMessage("La session est vérifiée"),
"sharedTheLocation": m48,
"timeOfDay": m49,
"title": MessageLookupByLibrary.simpleMessage("FluffyChat"),
"unbannedUser": m50,
"unknownEvent": m51,
"unknownSessionVerify": MessageLookupByLibrary.simpleMessage(
"Session inconnue, veuillez vérifier"),
"unreadChats": m52,
"unreadMessages": m53,
"unreadMessagesInChats": m54,
@ -537,6 +599,22 @@ class MessageLookup extends MessageLookupByLibrary {
"userAndUserAreTyping": m56,
"userIsTyping": m57,
"userLeftTheChat": m58,
"userSentUnknownEvent": m59
"userSentUnknownEvent": m59,
"verifiedSession": MessageLookupByLibrary.simpleMessage(
"Session vérifiée avec succès !"),
"verifyManual":
MessageLookupByLibrary.simpleMessage("Vérifier manuellement"),
"verifyStart":
MessageLookupByLibrary.simpleMessage("Commencer la vérification"),
"verifySuccess": MessageLookupByLibrary.simpleMessage(
"Vous avez vérifié avec succès !"),
"verifyTitle": MessageLookupByLibrary.simpleMessage(
"Vérification de l\'autre compte"),
"waitingPartnerAcceptRequest": MessageLookupByLibrary.simpleMessage(
"En attente de la vérification de la demande par le partenaire..."),
"waitingPartnerEmoji": MessageLookupByLibrary.simpleMessage(
"En attente de l\'acceptation de l\'émoji par le partenaire..."),
"waitingPartnerNumbers": MessageLookupByLibrary.simpleMessage(
"En attente de l\'acceptation des nombres par le partenaire...")
};
}

606
lib/l10n/messages_gl.dart Normal file
View File

@ -0,0 +1,606 @@
// DO NOT EDIT. This is code generated via package:intl/generate_localized.dart
// This is a library that provides messages for a gl locale. All the
// messages from the main program should be duplicated here with the same
// function name.
// Ignore issues from commonly used lints in this file.
// ignore_for_file:unnecessary_brace_in_string_interps, unnecessary_new
// ignore_for_file:prefer_single_quotes,comment_references, directives_ordering
// ignore_for_file:annotate_overrides,prefer_generic_function_type_aliases
// ignore_for_file:unused_import, file_names
import 'package:intl/intl.dart';
import 'package:intl/message_lookup_by_library.dart';
final messages = new MessageLookup();
typedef String MessageIfAbsent(String messageStr, List<dynamic> args);
class MessageLookup extends MessageLookupByLibrary {
String get localeName => 'gl';
static m0(username) => "${username} aceptou o convite";
static m1(username) => "${username} activou o cifrado extremo-a-extremo";
static m60(username) =>
"¿Aceptar a solicitude de verificación de ${username}?";
static m2(username, targetName) => "${username} vetou a ${targetName}";
static m3(homeserver) => "Por omisión vas conectar con ${homeserver}";
static m4(username) => "${username} cambiou o avatar do chat";
static m5(username, description) =>
"${username} mudou a descrición da conversa a: \'${description}\'";
static m6(username, chatname) =>
"${username} mudou o nome da conversa a: \'${chatname}\'";
static m7(username) => "${username} mudou os permisos da conversa";
static m8(username, displayname) =>
"${username} cambiou o nome público a: ${displayname}";
static m9(username) =>
"${username} mudou as regras de acceso para convidadas";
static m10(username, rules) =>
"${username} mudou as regras de acceso para convidadas a: ${rules}";
static m11(username) => "${username} mudou a visibilidade do historial";
static m12(username, rules) =>
"${username} mudou a visibilidade do historial a: ${rules}";
static m13(username) => "${username} mudou as regras de acceso";
static m14(username, joinRules) =>
"${username} mudou as regras de acceso a: ${joinRules}";
static m15(username) => "${username} mudou o avatar do perfil";
static m16(username) => "${username} mudou os alias da sala";
static m17(username) => "${username} mudou a ligazón de convite";
static m18(error) => "Non se descifrou a mensaxe: ${error}";
static m19(count) => "${count} participantes";
static m20(username) => "${username} creou a conversa";
static m21(date, timeOfDay) => "${date}, ${timeOfDay}";
static m22(year, month, day) => "${day}-${month}-${year}";
static m23(month, day) => "${day}-${month}";
static m24(displayname) => "Grupo con ${displayname}";
static m25(username, targetName) =>
"${username} retirou o convite para ${targetName}";
static m26(groupName) => "Convidar contacto a ${groupName}";
static m27(username, link) =>
"${username} convidoute a FluffyChat.\n1. instala FluffyChat: http://fluffy.chat \n2. Rexístrate ou conéctate\n3. Abre a ligazón do convite: ${link}";
static m28(username, targetName) => "${username} convidou a ${targetName}";
static m29(username) => "${username} uníuse ó chat";
static m30(username, targetName) => "${username} expulsou a ${targetName}";
static m31(username, targetName) =>
"${username} expulsou e vetou a ${targetName}";
static m32(localizedTimeShort) => "Última actividade: ${localizedTimeShort}";
static m33(count) => "Cargar ${count} participantes máis";
static m34(homeserver) => "Conectar con ${homeserver}";
static m35(number) => "${number} seleccionados";
static m36(fileName) => "Reproducir ${fileName}";
static m37(username) => "${username} publicou un evento";
static m38(username) => "${username} rexeitou o convite";
static m39(username) => "Eliminado por ${username}";
static m40(username) => "Visto por ${username}";
static m41(username, count) => "Visto por ${username} e ${count} outras";
static m42(username, username2) => "Visto por ${username} e ${username2}";
static m43(username) => "${username} enviou un ficheiro";
static m44(username) => "${username} enviou unha imaxe";
static m45(username) => "${username} enviou un adhesivo";
static m46(username) => "${username} enviou un vídeo";
static m47(username) => "${username} enviou un audio";
static m48(username) => "${username} compartiu a localización";
static m49(hours12, hours24, minutes, suffix) =>
"${hours12}:${minutes} ${suffix}";
static m50(username, targetName) =>
"${username} retirou o veto a ${targetName}";
static m51(type) => "Evento descoñecido \'${type}\'";
static m52(unreadCount) => "${unreadCount} chats non lidos";
static m53(unreadEvents) => "${unreadEvents} mensaxes non lidas";
static m54(unreadEvents, unreadChats) =>
"${unreadEvents} mensaxes non lidas en ${unreadChats} conversas";
static m55(username, count) =>
"${username} e ${count} máis están escribindo...";
static m56(username, username2) =>
"${username} e ${username2} están escribindo...";
static m57(username) => "${username} está escribindo...";
static m58(username) => "${username} deixou a conversa";
static m59(username, type) => "${username} enviou un evento {type]";
final messages = _notInlinedMessages(_notInlinedMessages);
static _notInlinedMessages(_) => <String, Function>{
"(Optional) Group name":
MessageLookupByLibrary.simpleMessage("(Optativo) Nome do grupo"),
"About": MessageLookupByLibrary.simpleMessage("Acerca de"),
"Accept": MessageLookupByLibrary.simpleMessage("Aceptar"),
"Account": MessageLookupByLibrary.simpleMessage("Conta"),
"Account informations":
MessageLookupByLibrary.simpleMessage("Información da conta"),
"Add a group description": MessageLookupByLibrary.simpleMessage(
"Engade a descrición do grupo"),
"Admin": MessageLookupByLibrary.simpleMessage("Admin"),
"Already have an account?":
MessageLookupByLibrary.simpleMessage("¿xa tes unha conta?"),
"Anyone can join":
MessageLookupByLibrary.simpleMessage("Calquera pode unirse"),
"Archive": MessageLookupByLibrary.simpleMessage("Arquivo"),
"Archived Room": MessageLookupByLibrary.simpleMessage("Sala arquivada"),
"Are guest users allowed to join": MessageLookupByLibrary.simpleMessage(
"Teñen permitido as convidadas o acceso"),
"Are you sure?": MessageLookupByLibrary.simpleMessage("¿estás certo?"),
"Authentication": MessageLookupByLibrary.simpleMessage("Autenticación"),
"Avatar has been changed":
MessageLookupByLibrary.simpleMessage("O avatar cambiou"),
"Ban from chat":
MessageLookupByLibrary.simpleMessage("Expulsar da conversa"),
"Banned": MessageLookupByLibrary.simpleMessage("Vetada"),
"Block Device":
MessageLookupByLibrary.simpleMessage("Bloquear dispositivo"),
"Cancel": MessageLookupByLibrary.simpleMessage("Cancelar"),
"Change the homeserver":
MessageLookupByLibrary.simpleMessage("Mudar de servidor de inicio"),
"Change the name of the group":
MessageLookupByLibrary.simpleMessage("Mudar o nome do grupo"),
"Change the server":
MessageLookupByLibrary.simpleMessage("Mudar de servidor"),
"Change wallpaper":
MessageLookupByLibrary.simpleMessage("Mudar fondo do chat"),
"Change your style":
MessageLookupByLibrary.simpleMessage("Cambiar o estilo"),
"Changelog":
MessageLookupByLibrary.simpleMessage("Rexistro de cambios"),
"Chat": MessageLookupByLibrary.simpleMessage("Chat"),
"Chat details":
MessageLookupByLibrary.simpleMessage("Detalles do chat"),
"Choose a strong password": MessageLookupByLibrary.simpleMessage(
"Escolle un contrasinal forte"),
"Choose a username":
MessageLookupByLibrary.simpleMessage("Escolle un nome de usuaria"),
"Close": MessageLookupByLibrary.simpleMessage("Pechar"),
"Confirm": MessageLookupByLibrary.simpleMessage("Confirmar"),
"Connect": MessageLookupByLibrary.simpleMessage("Conectar"),
"Connection attempt failed": MessageLookupByLibrary.simpleMessage(
"Fallou o intento de conexión"),
"Contact has been invited to the group":
MessageLookupByLibrary.simpleMessage(
"O contacto foi convidado ó grupo"),
"Content viewer":
MessageLookupByLibrary.simpleMessage("Visor de contido"),
"Copied to clipboard":
MessageLookupByLibrary.simpleMessage("Copiado ó portapapeis"),
"Copy": MessageLookupByLibrary.simpleMessage("Copiar"),
"Could not set avatar":
MessageLookupByLibrary.simpleMessage("Non se estableceu o avatar"),
"Could not set displayname": MessageLookupByLibrary.simpleMessage(
"Non se estableceu o nome público"),
"Create": MessageLookupByLibrary.simpleMessage("Crear"),
"Create account now":
MessageLookupByLibrary.simpleMessage("Crear unha conta"),
"Create new group":
MessageLookupByLibrary.simpleMessage("Crear novo grupo"),
"Currently active":
MessageLookupByLibrary.simpleMessage("Actualmente activo"),
"Dark": MessageLookupByLibrary.simpleMessage("Escuro"),
"Delete": MessageLookupByLibrary.simpleMessage("Eliminar"),
"Delete message":
MessageLookupByLibrary.simpleMessage("Eliminar mensaxe"),
"Deny": MessageLookupByLibrary.simpleMessage("Denegar"),
"Device": MessageLookupByLibrary.simpleMessage("Dispositivo"),
"Devices": MessageLookupByLibrary.simpleMessage("Dispositivos"),
"Discard picture":
MessageLookupByLibrary.simpleMessage("Desbotar imaxe"),
"Displayname has been changed":
MessageLookupByLibrary.simpleMessage("O nome público mudou"),
"Donate": MessageLookupByLibrary.simpleMessage("Doar"),
"Download file":
MessageLookupByLibrary.simpleMessage("Descargar ficheiro"),
"Edit Jitsi instance":
MessageLookupByLibrary.simpleMessage("Editar instancia Jitsi"),
"Edit displayname":
MessageLookupByLibrary.simpleMessage("Editar nome público"),
"Emote Settings":
MessageLookupByLibrary.simpleMessage("Axustes de Emote"),
"Emote shortcode":
MessageLookupByLibrary.simpleMessage("Atallo de Emote"),
"Empty chat": MessageLookupByLibrary.simpleMessage("Chat baleiro"),
"Encryption": MessageLookupByLibrary.simpleMessage("Cifrado"),
"Encryption algorithm":
MessageLookupByLibrary.simpleMessage("Algoritmo do cifrado"),
"Encryption is not enabled":
MessageLookupByLibrary.simpleMessage("Cifrado desactivado"),
"End to end encryption is currently in Beta! Use at your own risk!":
MessageLookupByLibrary.simpleMessage(
"O cifrado extremo-a-extremo está en Beta! Úsao baixo a túa responsabilidade!"),
"End-to-end encryption settings": MessageLookupByLibrary.simpleMessage(
"Axustes do cifrado extremo-a-extremo"),
"Enter a group name": MessageLookupByLibrary.simpleMessage(
"Escribe un nome para o grupo"),
"Enter a username":
MessageLookupByLibrary.simpleMessage("Escribe un nome de usuaria"),
"Enter your homeserver": MessageLookupByLibrary.simpleMessage(
"Escribe o teu servidor de inicio"),
"File name": MessageLookupByLibrary.simpleMessage("Nome do ficheiro"),
"File size": MessageLookupByLibrary.simpleMessage("Tamaño do ficheiro"),
"FluffyChat": MessageLookupByLibrary.simpleMessage("FluffyChat"),
"Forward": MessageLookupByLibrary.simpleMessage("Reenviar"),
"Friday": MessageLookupByLibrary.simpleMessage("Venres"),
"From joining":
MessageLookupByLibrary.simpleMessage("Desde que se una"),
"From the invitation":
MessageLookupByLibrary.simpleMessage("Desde o convite"),
"Group": MessageLookupByLibrary.simpleMessage("Grupo"),
"Group description":
MessageLookupByLibrary.simpleMessage("Descrición do grupo"),
"Group description has been changed":
MessageLookupByLibrary.simpleMessage("Mudou a descrición do grupo"),
"Group is public":
MessageLookupByLibrary.simpleMessage("O grupo é público"),
"Guests are forbidden":
MessageLookupByLibrary.simpleMessage("Non se permiten convidadas"),
"Guests can join":
MessageLookupByLibrary.simpleMessage("Permítense convidadas"),
"Help": MessageLookupByLibrary.simpleMessage("Axuda"),
"Homeserver is not compatible": MessageLookupByLibrary.simpleMessage(
"Servidor de inicio non compatible"),
"How are you today?":
MessageLookupByLibrary.simpleMessage("¿Que tal estás hoxe?"),
"ID": MessageLookupByLibrary.simpleMessage("ID"),
"Identity": MessageLookupByLibrary.simpleMessage("Identidade"),
"Invite contact":
MessageLookupByLibrary.simpleMessage("Convidar contacto"),
"Invited": MessageLookupByLibrary.simpleMessage("Convidado"),
"Invited users only":
MessageLookupByLibrary.simpleMessage("Só usuarias convidadas"),
"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(
"Semella que non tes os servizos de google no teu dispositivo. Ben feito! a túa privacidade agradécecho! Para recibir notificacións push en FluffyChat recomendamos usar microG: https://microg.org/"),
"Kick from chat":
MessageLookupByLibrary.simpleMessage("Expulsar da conversa"),
"Last seen IP": MessageLookupByLibrary.simpleMessage("Última IP vista"),
"Leave": MessageLookupByLibrary.simpleMessage("Saír"),
"Left the chat":
MessageLookupByLibrary.simpleMessage("Deixar a conversa"),
"License": MessageLookupByLibrary.simpleMessage("Licenza"),
"Light": MessageLookupByLibrary.simpleMessage("Claro"),
"Load more...": MessageLookupByLibrary.simpleMessage("Cargar máis..."),
"Loading... Please wait":
MessageLookupByLibrary.simpleMessage("Cargando... Agarda"),
"Login": MessageLookupByLibrary.simpleMessage("Conexión"),
"Logout": MessageLookupByLibrary.simpleMessage("Desconectar"),
"Make a moderator":
MessageLookupByLibrary.simpleMessage("Converter en moderadora"),
"Make an admin":
MessageLookupByLibrary.simpleMessage("Converter en administradora"),
"Make sure the identifier is valid":
MessageLookupByLibrary.simpleMessage(
"Asegúrate de que o identificador é válido"),
"Message will be removed for all participants":
MessageLookupByLibrary.simpleMessage(
"A mensaxe eliminarase para todas as participantes"),
"Moderator": MessageLookupByLibrary.simpleMessage("Moderadora"),
"Monday": MessageLookupByLibrary.simpleMessage("Luns"),
"Mute chat": MessageLookupByLibrary.simpleMessage("Acalar conversa"),
"New message in FluffyChat":
MessageLookupByLibrary.simpleMessage("Nova mensaxe en FluffyChat"),
"New private chat":
MessageLookupByLibrary.simpleMessage("Nova conversa privada"),
"No emotes found. 😕":
MessageLookupByLibrary.simpleMessage("Non hai emotes. 😕"),
"No permission": MessageLookupByLibrary.simpleMessage("Sen permiso"),
"No rooms found...":
MessageLookupByLibrary.simpleMessage("Non se atoparon salas..."),
"None": MessageLookupByLibrary.simpleMessage("Ningún"),
"Not supported in web":
MessageLookupByLibrary.simpleMessage("Non soportado na web"),
"Oops something went wrong...":
MessageLookupByLibrary.simpleMessage("Ooooi, algo fallou..."),
"Open app to read messages":
MessageLookupByLibrary.simpleMessage("Abrir a app e ler mensaxes"),
"Open camera": MessageLookupByLibrary.simpleMessage("Abrir cámara"),
"Participating user devices": MessageLookupByLibrary.simpleMessage(
"Dispositivos das usuarias participantes"),
"Password": MessageLookupByLibrary.simpleMessage("Contrasinal"),
"Pick image":
MessageLookupByLibrary.simpleMessage("Escolle unha imaxe"),
"Please be aware that you need Pantalaimon to use end-to-end encryption for now.":
MessageLookupByLibrary.simpleMessage(
"Ten en conta que polo de agora precisas Pantalaimon para o cifrado extremo-a-extremo."),
"Please choose a username":
MessageLookupByLibrary.simpleMessage("Escolle un nome de usuaria"),
"Please enter a matrix identifier":
MessageLookupByLibrary.simpleMessage(
"Escribe un identificador matrix"),
"Please enter your password":
MessageLookupByLibrary.simpleMessage("Escribe o teu contrasinal"),
"Please enter your username": MessageLookupByLibrary.simpleMessage(
"Escribe o teu nome de usuaria"),
"Public Rooms": MessageLookupByLibrary.simpleMessage("Salas públicas"),
"Recording": MessageLookupByLibrary.simpleMessage("Gravando"),
"Reject": MessageLookupByLibrary.simpleMessage("Rexeitar"),
"Rejoin": MessageLookupByLibrary.simpleMessage("Volta a unirte"),
"Remove": MessageLookupByLibrary.simpleMessage("Eliminar"),
"Remove all other devices": MessageLookupByLibrary.simpleMessage(
"Quitar todos os outros dispositivos"),
"Remove device":
MessageLookupByLibrary.simpleMessage("Quitar dispositivo"),
"Remove exile": MessageLookupByLibrary.simpleMessage("Quitar o veto"),
"Remove message":
MessageLookupByLibrary.simpleMessage("Eliminar mensaxe"),
"Render rich message content": MessageLookupByLibrary.simpleMessage(
"Mostrar contido enriquecido da mensaxe"),
"Reply": MessageLookupByLibrary.simpleMessage("Responder"),
"Request permission":
MessageLookupByLibrary.simpleMessage("Solicitar permiso"),
"Request to read older messages": MessageLookupByLibrary.simpleMessage(
"Solicitar ler mensaxes antigas"),
"Revoke all permissions":
MessageLookupByLibrary.simpleMessage("Revogar tódolos permisos"),
"Room has been upgraded":
MessageLookupByLibrary.simpleMessage("A sala foi actualizada"),
"Saturday": MessageLookupByLibrary.simpleMessage("Sábado"),
"Search for a chat":
MessageLookupByLibrary.simpleMessage("Buscar un chat"),
"Seen a long time ago":
MessageLookupByLibrary.simpleMessage("Hai moito que non aparece"),
"Send": MessageLookupByLibrary.simpleMessage("Enviar"),
"Send a message":
MessageLookupByLibrary.simpleMessage("Enviar unha mensaxe"),
"Send file": MessageLookupByLibrary.simpleMessage("Enviar ficheiro"),
"Send image": MessageLookupByLibrary.simpleMessage("Enviar imaxe"),
"Set a profile picture":
MessageLookupByLibrary.simpleMessage("Establecer foto do perfil"),
"Set group description": MessageLookupByLibrary.simpleMessage(
"Establecer descrición do grupo"),
"Set invitation link": MessageLookupByLibrary.simpleMessage(
"Establecer ligazón do convite"),
"Set status": MessageLookupByLibrary.simpleMessage("Establecer estado"),
"Settings": MessageLookupByLibrary.simpleMessage("Axustes"),
"Share": MessageLookupByLibrary.simpleMessage("Compartir"),
"Sign up": MessageLookupByLibrary.simpleMessage("Rexistro"),
"Skip": MessageLookupByLibrary.simpleMessage("Saltar"),
"Source code": MessageLookupByLibrary.simpleMessage("Código fonte"),
"Start your first chat :-)": MessageLookupByLibrary.simpleMessage(
"Abre a primeira conversa :-)"),
"Submit": MessageLookupByLibrary.simpleMessage("Enviar"),
"Sunday": MessageLookupByLibrary.simpleMessage("Domingo"),
"System": MessageLookupByLibrary.simpleMessage("Sistema"),
"Tap to show menu":
MessageLookupByLibrary.simpleMessage("Toca para mostrar menú"),
"The encryption has been corrupted":
MessageLookupByLibrary.simpleMessage("O cifrado está corrompido"),
"They Don\'t Match":
MessageLookupByLibrary.simpleMessage("Non concordan"),
"They Match": MessageLookupByLibrary.simpleMessage("Concordan"),
"This room has been archived.":
MessageLookupByLibrary.simpleMessage("A sala foi arquivada."),
"Thursday": MessageLookupByLibrary.simpleMessage("Xoves"),
"Try to send again":
MessageLookupByLibrary.simpleMessage("Inténtao outra vez"),
"Tuesday": MessageLookupByLibrary.simpleMessage("Martes"),
"Unblock Device":
MessageLookupByLibrary.simpleMessage("Desbloquear dispositivo"),
"Unknown device":
MessageLookupByLibrary.simpleMessage("Dispositivo descoñecido"),
"Unknown encryption algorithm": MessageLookupByLibrary.simpleMessage(
"Algoritmo de cifrado descoñecido"),
"Unmute chat": MessageLookupByLibrary.simpleMessage("Reactivar chat"),
"Use Amoled compatible colors?": MessageLookupByLibrary.simpleMessage(
"¿Usar cores compatibles con Amoled?"),
"Username": MessageLookupByLibrary.simpleMessage("Nome de usuaria"),
"Verify": MessageLookupByLibrary.simpleMessage("Verificar"),
"Verify User":
MessageLookupByLibrary.simpleMessage("Verificar usuaria"),
"Video call": MessageLookupByLibrary.simpleMessage("Chamada de vídeo"),
"Visibility of the chat history": MessageLookupByLibrary.simpleMessage(
"Visibilidade do historial da conversa"),
"Visible for all participants": MessageLookupByLibrary.simpleMessage(
"Visible para todas as participantes"),
"Visible for everyone":
MessageLookupByLibrary.simpleMessage("Visible para todas"),
"Voice message": MessageLookupByLibrary.simpleMessage("Mensaxe de voz"),
"Wallpaper": MessageLookupByLibrary.simpleMessage("Fondo da conversa"),
"Wednesday": MessageLookupByLibrary.simpleMessage("Mércores"),
"Welcome to the cutest instant messenger in the matrix network.":
MessageLookupByLibrary.simpleMessage(
"Benvida a mensaxería instantánea más cuquiña da rede matrix."),
"Who is allowed to join this group":
MessageLookupByLibrary.simpleMessage(
"Quen se pode unir a este grupo"),
"Write a message...":
MessageLookupByLibrary.simpleMessage("Escribe unha mensaxe..."),
"Yes": MessageLookupByLibrary.simpleMessage("Si"),
"You": MessageLookupByLibrary.simpleMessage("Ti"),
"You are invited to this chat":
MessageLookupByLibrary.simpleMessage("Estás convidada a este chat"),
"You are no longer participating in this chat":
MessageLookupByLibrary.simpleMessage(
"Xa non participas desta conversa"),
"You cannot invite yourself":
MessageLookupByLibrary.simpleMessage("Non podes autoconvidarte"),
"You have been banned from this chat":
MessageLookupByLibrary.simpleMessage(
"Foches vetada nesta conversa"),
"You won\'t be able to disable the encryption anymore. Are you sure?":
MessageLookupByLibrary.simpleMessage(
"Non poderás desactivar o cifrado posteriormente, ¿estás certo?"),
"Your own username":
MessageLookupByLibrary.simpleMessage("O teu nome de usuaria"),
"acceptedTheInvitation": m0,
"activatedEndToEndEncryption": m1,
"alias": MessageLookupByLibrary.simpleMessage("alias"),
"askSSSSCache": MessageLookupByLibrary.simpleMessage(
"Escribe a frase de paso de seguridade ou chave de recuperación para almacenar as chaves."),
"askSSSSSign": MessageLookupByLibrary.simpleMessage(
"Para poder conectar a outra persoa, escribe a túa frase de paso ou chave de recuperación."),
"askSSSSVerify": MessageLookupByLibrary.simpleMessage(
"Escribe frase de paso de almacenaxe segura ou chave de recuperación para verificar a túa sesión."),
"askVerificationRequest": m60,
"bannedUser": m2,
"byDefaultYouWillBeConnectedTo": m3,
"cachedKeys": MessageLookupByLibrary.simpleMessage(
"Almacenaches as chaves correctamente!"),
"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,
"compareEmojiMatch": MessageLookupByLibrary.simpleMessage(
"Comparar e asegurarse de que estas emoticonas concordan no outro dispositivo:"),
"compareNumbersMatch": MessageLookupByLibrary.simpleMessage(
"Compara e asegúrate de que os seguintes números concordan cos do outro dispositivo:"),
"couldNotDecryptMessage": m18,
"countParticipants": m19,
"createdTheChat": m20,
"crossSigningDisabled": MessageLookupByLibrary.simpleMessage(
"A Sinatura-Cruzada está desactivada"),
"crossSigningEnabled":
MessageLookupByLibrary.simpleMessage("Sinatura-Cruzada activada"),
"dateAndTimeOfDay": m21,
"dateWithYear": m22,
"dateWithoutYear": m23,
"emoteExists":
MessageLookupByLibrary.simpleMessage("Xa existe ese emote!"),
"emoteInvalid": MessageLookupByLibrary.simpleMessage(
"Atallo do emote non é válido!"),
"emoteWarnNeedToPick": MessageLookupByLibrary.simpleMessage(
"Escribe un atallo e asocialle unha imaxe!"),
"groupWith": m24,
"hasWithdrawnTheInvitationFor": m25,
"incorrectPassphraseOrKey": MessageLookupByLibrary.simpleMessage(
"Frase de paso ou chave de recuperación incorrecta"),
"inviteContactToGroup": m26,
"inviteText": m27,
"invitedUser": m28,
"is typing...":
MessageLookupByLibrary.simpleMessage("está escribindo..."),
"isDeviceKeyCorrect": MessageLookupByLibrary.simpleMessage(
"¿É correcta esta chave do dispositivo?"),
"joinedTheChat": m29,
"keysCached":
MessageLookupByLibrary.simpleMessage("Chaves almacenadas"),
"keysMissing": MessageLookupByLibrary.simpleMessage("Faltan as chaves"),
"kicked": m30,
"kickedAndBanned": m31,
"lastActiveAgo": m32,
"loadCountMoreParticipants": m33,
"logInTo": m34,
"newVerificationRequest": MessageLookupByLibrary.simpleMessage(
"Nova solicitude de verificación!"),
"noCrossSignBootstrap": MessageLookupByLibrary.simpleMessage(
"Polo momento FluffyChat non soporta a activación da Sinatura-Cruzada. Actívaa desde Element."),
"noMegolmBootstrap": MessageLookupByLibrary.simpleMessage(
"Actualmente Fluffychat non soporta a activación da Copia En Liña das Chaves. Actívaa desde Element."),
"numberSelected": m35,
"ok": MessageLookupByLibrary.simpleMessage("OK"),
"onlineKeyBackupDisabled": MessageLookupByLibrary.simpleMessage(
"Copia de apoio En liña das Chaves desactivada"),
"onlineKeyBackupEnabled": MessageLookupByLibrary.simpleMessage(
"Copia de Apoio das Chaves activada"),
"passphraseOrKey": MessageLookupByLibrary.simpleMessage(
"frase de paso ou chave de recuperación"),
"play": m36,
"redactedAnEvent": m37,
"rejectedTheInvitation": m38,
"removedBy": m39,
"seenByUser": m40,
"seenByUserAndCountOthers": m41,
"seenByUserAndUser": m42,
"sentAFile": m43,
"sentAPicture": m44,
"sentASticker": m45,
"sentAVideo": m46,
"sentAnAudio": m47,
"sessionVerified":
MessageLookupByLibrary.simpleMessage("Sesión verificada"),
"sharedTheLocation": m48,
"timeOfDay": m49,
"title": MessageLookupByLibrary.simpleMessage("FluffyChat"),
"unbannedUser": m50,
"unknownEvent": m51,
"unknownSessionVerify": MessageLookupByLibrary.simpleMessage(
"Sesión descoñecida, por favor verifícaa"),
"unreadChats": m52,
"unreadMessages": m53,
"unreadMessagesInChats": m54,
"userAndOthersAreTyping": m55,
"userAndUserAreTyping": m56,
"userIsTyping": m57,
"userLeftTheChat": m58,
"userSentUnknownEvent": m59,
"verifiedSession": MessageLookupByLibrary.simpleMessage(
"Sesión verificada correctamente!"),
"verifyManual":
MessageLookupByLibrary.simpleMessage("Verificar manualmente"),
"verifyStart":
MessageLookupByLibrary.simpleMessage("Comezar verificación"),
"verifySuccess":
MessageLookupByLibrary.simpleMessage("Verificaches correctamente!"),
"verifyTitle":
MessageLookupByLibrary.simpleMessage("Verificando a outra conta"),
"waitingPartnerAcceptRequest": MessageLookupByLibrary.simpleMessage(
"Agardando a que a outra parte acepte a solicitude..."),
"waitingPartnerEmoji": MessageLookupByLibrary.simpleMessage(
"Agardando a que a outra parte acepte as emoticonas..."),
"waitingPartnerNumbers": MessageLookupByLibrary.simpleMessage(
"Agardando a que a outra parte acepte os números...")
};
}

599
lib/l10n/messages_hr.dart Normal file
View File

@ -0,0 +1,599 @@
// DO NOT EDIT. This is code generated via package:intl/generate_localized.dart
// This is a library that provides messages for a hr locale. All the
// messages from the main program should be duplicated here with the same
// function name.
// Ignore issues from commonly used lints in this file.
// ignore_for_file:unnecessary_brace_in_string_interps, unnecessary_new
// ignore_for_file:prefer_single_quotes,comment_references, directives_ordering
// ignore_for_file:annotate_overrides,prefer_generic_function_type_aliases
// ignore_for_file:unused_import, file_names
import 'package:intl/intl.dart';
import 'package:intl/message_lookup_by_library.dart';
final messages = new MessageLookup();
typedef String MessageIfAbsent(String messageStr, List<dynamic> args);
class MessageLookup extends MessageLookupByLibrary {
String get localeName => 'hr';
static m0(username) => "${username} je prihvatio/la poziv";
static m1(username) => "${username} je aktivirao/la obostrano šifriranje";
static m60(username) =>
"Prihvatiti ovaj zahtjev za potvrđivanje od ${username}?";
static m2(username, targetName) =>
"${username} je isključio/la ${targetName}";
static m3(homeserver) => "Standardno ćeš biti povezan/a s ${homeserver}";
static m4(username) => "${username} je promijenio/la avatar chata";
static m5(username, description) =>
"${username} je promijenio/la opis chata u: „${description}";
static m6(username, chatname) =>
"${username} je promijenio/la ime chata u: „${chatname}";
static m7(username) => "${username} je promijenio/la dozvole chata";
static m8(username, displayname) =>
"${username} je promijenio/la prikazano ime u: ${displayname}";
static m9(username) =>
"${username} je promijenio/la pravila pristupa za goste";
static m10(username, rules) =>
"${username} je promijenio/la pravila pristupa za goste u: ${rules}";
static m11(username) => "${username} je promijenio/la vidljivost kronologije";
static m12(username, rules) =>
"${username} je promijenio/la vidljivost kronologije u: ${rules}";
static m13(username) => "${username} je promijenio/la pravila pridruživanja";
static m14(username, joinRules) =>
"${username} je promijenio/la pravila pridruživanja u: ${joinRules}";
static m15(username) => "${username} je promijenio/la avatar profila";
static m16(username) => "${username} je promijenio/la pseudonime soba";
static m17(username) => "${username} je promijenio/la poveznicu poziva";
static m18(error) => "Neuspjelo dešifriranje poruke: ${error}";
static m19(count) => "${count} sudionika";
static m20(username) => "${username} je stvorio/la chat";
static m21(date, timeOfDay) => "${date}, ${timeOfDay}";
static m22(year, month, day) => "${day}. ${month}. ${year}.";
static m23(month, day) => "${day}. ${month}.";
static m24(displayname) => "Grupa s ${displayname}";
static m25(username, targetName) =>
"${username} je povukao/la poziv za ${targetName}";
static m26(groupName) => "Pozovi kontakt u ${groupName}";
static m27(username, link) =>
"${username} te je pozvao/la u FluffyChat. \n1. Instaliraj FluffyChat: http://fluffy.chat \n2. Registriraj ili prijavi se \n3. Otvori poveznicu poziva: ${link}";
static m28(username, targetName) => "${username} je pozvao/la ${targetName}";
static m29(username) => "${username} se pridružio/la chatu";
static m30(username, targetName) => "${username} je izbacio/la ${targetName}";
static m31(username, targetName) =>
"${username} je izbacio/la i isključio/la ${targetName}";
static m32(localizedTimeShort) => "Zadnja aktivnost: ${localizedTimeShort}";
static m33(count) => "Učitaj još ${count} sudionika";
static m34(homeserver) => "Prijavi se na ${homeserver}";
static m35(number) => "${number} odabrano";
static m36(fileName) => "Sviraj ${fileName}";
static m37(username) => "${username} je preuredio/la događaj";
static m38(username) => "${username} je odbio/la poziv";
static m39(username) => "Uklonjeno od ${username}";
static m40(username) => "Viđeno od ${username}";
static m41(username, count) =>
"Viđeno od ${username} i još ${count} korisnika";
static m42(username, username2) => "Viđeno od ${username} i ${username2}";
static m43(username) => "${username} ja poslao/la datoteku";
static m44(username) => "${username} ja poslao/la sliku";
static m45(username) => "${username} je poslao/la naljepnicu";
static m46(username) => "${username} ja poslao/la video";
static m47(username) => "${username} ja poslao/la audio";
static m48(username) => "${username} je dijelio/la mjesto";
static m49(hours12, hours24, minutes, suffix) => "${hours24}:${minutes}";
static m50(username, targetName) =>
"${username} je ponovo uključio/la ${targetName}";
static m51(type) => "Nepoznata vrsta događaja „${type}";
static m52(unreadCount) => "${unreadCount} nepročitana chata";
static m53(unreadEvents) => "${unreadEvents} nepročitane poruke";
static m54(unreadEvents, unreadChats) =>
"${unreadEvents} nepročitane poruke u ${unreadChats} chata";
static m55(username, count) => "${username} i još ${count} korisnika pišu …";
static m56(username, username2) => "${username} i ${username2} pišu …";
static m57(username) => "${username} piše …";
static m58(username) => "${username} je napustio/la chat";
static m59(username, type) => "${username} ja poslao/la ${type} događaj";
final messages = _notInlinedMessages(_notInlinedMessages);
static _notInlinedMessages(_) => <String, Function>{
"(Optional) Group name":
MessageLookupByLibrary.simpleMessage("(Opcionalno) Ime grupe"),
"About": MessageLookupByLibrary.simpleMessage("Informacije"),
"Accept": MessageLookupByLibrary.simpleMessage("Prihvati"),
"Account": MessageLookupByLibrary.simpleMessage("Račun"),
"Account informations":
MessageLookupByLibrary.simpleMessage("Podaci računa"),
"Add a group description":
MessageLookupByLibrary.simpleMessage("Dodaj opis grupe"),
"Admin": MessageLookupByLibrary.simpleMessage("Administrator"),
"Already have an account?":
MessageLookupByLibrary.simpleMessage("Već imaš račun?"),
"Anyone can join":
MessageLookupByLibrary.simpleMessage("Svatko se može pridružiti"),
"Archive": MessageLookupByLibrary.simpleMessage("Arhiva"),
"Archived Room":
MessageLookupByLibrary.simpleMessage("Arhivirana soba"),
"Are guest users allowed to join": MessageLookupByLibrary.simpleMessage(
"Smiju li se gosti pridružiti grupi"),
"Are you sure?": MessageLookupByLibrary.simpleMessage("Sigurno?"),
"Authentication":
MessageLookupByLibrary.simpleMessage("Autentifikacija"),
"Avatar has been changed":
MessageLookupByLibrary.simpleMessage("Avatar je promijenjen"),
"Ban from chat":
MessageLookupByLibrary.simpleMessage("Isključi iz chata"),
"Banned": MessageLookupByLibrary.simpleMessage("Isključen"),
"Block Device": MessageLookupByLibrary.simpleMessage("Blokiraj uređaj"),
"Cancel": MessageLookupByLibrary.simpleMessage("Odustani"),
"Change the homeserver": MessageLookupByLibrary.simpleMessage(
"Promijeni domaćeg poslužitelja"),
"Change the name of the group":
MessageLookupByLibrary.simpleMessage("Promijeni ime grupe"),
"Change the server":
MessageLookupByLibrary.simpleMessage("Promijeni poslužitelja"),
"Change wallpaper":
MessageLookupByLibrary.simpleMessage("Promijeni sliku pozadine"),
"Change your style":
MessageLookupByLibrary.simpleMessage("Promijeni svoj stil"),
"Changelog": MessageLookupByLibrary.simpleMessage("Zapis promjena"),
"Chat": MessageLookupByLibrary.simpleMessage("Chat"),
"Chat details": MessageLookupByLibrary.simpleMessage("Detalji chata"),
"Choose a strong password":
MessageLookupByLibrary.simpleMessage("Odaberi snažnu lozinku"),
"Choose a username":
MessageLookupByLibrary.simpleMessage("Odaberi korisničko ime"),
"Close": MessageLookupByLibrary.simpleMessage("Zatvori"),
"Confirm": MessageLookupByLibrary.simpleMessage("Potvrdi"),
"Connect": MessageLookupByLibrary.simpleMessage("Spoji"),
"Connection attempt failed":
MessageLookupByLibrary.simpleMessage("Neuspio pokušaj povezivanja"),
"Contact has been invited to the group":
MessageLookupByLibrary.simpleMessage("Kontakt je pozvan u grupu"),
"Content viewer":
MessageLookupByLibrary.simpleMessage("Prikazivač sadržaja"),
"Copied to clipboard":
MessageLookupByLibrary.simpleMessage("Kopirano u međuspremnik"),
"Copy": MessageLookupByLibrary.simpleMessage("Kopiraj"),
"Could not set avatar": MessageLookupByLibrary.simpleMessage(
"Neuspjelo postavljanje avatara"),
"Could not set displayname": MessageLookupByLibrary.simpleMessage(
"Neuspjelo postavljanje prikaznog imena"),
"Create": MessageLookupByLibrary.simpleMessage("Stvori"),
"Create account now":
MessageLookupByLibrary.simpleMessage("Stvori račun sada"),
"Create new group":
MessageLookupByLibrary.simpleMessage("Stvori novu grupu"),
"Currently active":
MessageLookupByLibrary.simpleMessage("Trenutačno aktivni"),
"Dark": MessageLookupByLibrary.simpleMessage("Tamna"),
"Delete": MessageLookupByLibrary.simpleMessage("Izbriži"),
"Delete message":
MessageLookupByLibrary.simpleMessage("Izbriži poruku"),
"Deny": MessageLookupByLibrary.simpleMessage("Odbij"),
"Device": MessageLookupByLibrary.simpleMessage("Uređaj"),
"Devices": MessageLookupByLibrary.simpleMessage("Uređaji"),
"Discard picture": MessageLookupByLibrary.simpleMessage("Odbaci sliku"),
"Displayname has been changed": MessageLookupByLibrary.simpleMessage(
"Prikazno ime je promijenjeno"),
"Donate": MessageLookupByLibrary.simpleMessage("Doniraj"),
"Download file":
MessageLookupByLibrary.simpleMessage("Preuzmi datoteku"),
"Edit Jitsi instance":
MessageLookupByLibrary.simpleMessage("Uredi Jitsi primjerak"),
"Edit displayname":
MessageLookupByLibrary.simpleMessage("Uredi prikazano ime"),
"Emote Settings":
MessageLookupByLibrary.simpleMessage("Postavke emojija"),
"Emote shortcode":
MessageLookupByLibrary.simpleMessage("Kratica emota"),
"Empty chat": MessageLookupByLibrary.simpleMessage("Prazan chat"),
"Encryption": MessageLookupByLibrary.simpleMessage("Šifriranje"),
"Encryption algorithm":
MessageLookupByLibrary.simpleMessage("Algoritam šifriranja"),
"Encryption is not enabled":
MessageLookupByLibrary.simpleMessage("Šifriranje nije aktivirano"),
"End to end encryption is currently in Beta! Use at your own risk!":
MessageLookupByLibrary.simpleMessage(
"Obostrano šifriranje je trenutačno u beta stanju! Koriti na vlastitu odgovornost!"),
"End-to-end encryption settings": MessageLookupByLibrary.simpleMessage(
"Postavke obostranog šifriranja"),
"Enter a group name":
MessageLookupByLibrary.simpleMessage("Upiši ime grupe"),
"Enter a username":
MessageLookupByLibrary.simpleMessage("Upiši korisničko ime"),
"Enter your homeserver": MessageLookupByLibrary.simpleMessage(
"Upiši svog domaćeg poslužitelja"),
"File name": MessageLookupByLibrary.simpleMessage("Ime datoteke"),
"File size": MessageLookupByLibrary.simpleMessage("Veličina datoteke"),
"FluffyChat": MessageLookupByLibrary.simpleMessage("FluffyChat"),
"Forward": MessageLookupByLibrary.simpleMessage("Proslijedi"),
"Friday": MessageLookupByLibrary.simpleMessage("Petak"),
"From joining":
MessageLookupByLibrary.simpleMessage("Od pridruživanja"),
"From the invitation":
MessageLookupByLibrary.simpleMessage("Od poziva"),
"Group": MessageLookupByLibrary.simpleMessage("Grupiraj"),
"Group description": MessageLookupByLibrary.simpleMessage("Opis grupe"),
"Group description has been changed":
MessageLookupByLibrary.simpleMessage("Opis grupe je promijenjen"),
"Group is public":
MessageLookupByLibrary.simpleMessage("Grupa je javna"),
"Guests are forbidden":
MessageLookupByLibrary.simpleMessage("Gosti su zabranjeni"),
"Guests can join":
MessageLookupByLibrary.simpleMessage("Gosti se mogu pridružiti"),
"Help": MessageLookupByLibrary.simpleMessage("Pomoć"),
"Homeserver is not compatible": MessageLookupByLibrary.simpleMessage(
"Domaći poslužitelj nije kompatibilan"),
"How are you today?":
MessageLookupByLibrary.simpleMessage("Kako si danas?"),
"ID": MessageLookupByLibrary.simpleMessage("ID"),
"Identity": MessageLookupByLibrary.simpleMessage("Identitet"),
"Invite contact":
MessageLookupByLibrary.simpleMessage("Pozovi kontakt"),
"Invited": MessageLookupByLibrary.simpleMessage("Pozvan/a"),
"Invited users only":
MessageLookupByLibrary.simpleMessage("Samo pozvani korisnici"),
"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(
"Čini se da na mobitelu nemaš google usluge. To je dobra odluka za tvoju privatnost! Za primanje push obavijesti u FluffyChatu preporučujemo upotrebu microG-a: https://microg.org/"),
"Kick from chat":
MessageLookupByLibrary.simpleMessage("Izbaci iz chata"),
"Last seen IP":
MessageLookupByLibrary.simpleMessage("Zadnji viđeni IP"),
"Leave": MessageLookupByLibrary.simpleMessage("Napusti"),
"Left the chat":
MessageLookupByLibrary.simpleMessage("Napustio/la je chat"),
"License": MessageLookupByLibrary.simpleMessage("Licenca"),
"Light": MessageLookupByLibrary.simpleMessage("Svjetla"),
"Load more...": MessageLookupByLibrary.simpleMessage("Učitaj više …"),
"Loading... Please wait":
MessageLookupByLibrary.simpleMessage("Učitava se … Pričekaj"),
"Login": MessageLookupByLibrary.simpleMessage("Prijava"),
"Logout": MessageLookupByLibrary.simpleMessage("Odjava"),
"Make a moderator":
MessageLookupByLibrary.simpleMessage("Postavi kao voditelja"),
"Make an admin":
MessageLookupByLibrary.simpleMessage("Postavi kao administratora"),
"Make sure the identifier is valid":
MessageLookupByLibrary.simpleMessage(
"Provjeri je li identifikator ispravan"),
"Message will be removed for all participants":
MessageLookupByLibrary.simpleMessage(
"Poruke će se ukloniti za sve sudionike"),
"Moderator": MessageLookupByLibrary.simpleMessage("Voditelj"),
"Monday": MessageLookupByLibrary.simpleMessage("Ponedjeljak"),
"Mute chat":
MessageLookupByLibrary.simpleMessage("Isključi zvuk chata"),
"New message in FluffyChat":
MessageLookupByLibrary.simpleMessage("Nova poruka u FluffyChatu"),
"New private chat":
MessageLookupByLibrary.simpleMessage("Novi privatni chat"),
"No emotes found. 😕":
MessageLookupByLibrary.simpleMessage("Nema emota. 😕"),
"No permission": MessageLookupByLibrary.simpleMessage("Bez dozvole"),
"No rooms found...":
MessageLookupByLibrary.simpleMessage("Nema pronađenih soba …"),
"None": MessageLookupByLibrary.simpleMessage("Ništa"),
"Not supported in web":
MessageLookupByLibrary.simpleMessage("Nije podržano u internetu"),
"Oops something went wrong...": MessageLookupByLibrary.simpleMessage(
"Ups, došlo je do neke greške …"),
"Open app to read messages": MessageLookupByLibrary.simpleMessage(
"Za čitanje poruka, otvori program"),
"Open camera": MessageLookupByLibrary.simpleMessage("Otvori kameru"),
"Participating user devices": MessageLookupByLibrary.simpleMessage(
"Sudjelujući korisnički uređaji"),
"Password": MessageLookupByLibrary.simpleMessage("Lozinka"),
"Pick image": MessageLookupByLibrary.simpleMessage("Odaberi sliku"),
"Please be aware that you need Pantalaimon to use end-to-end encryption for now.":
MessageLookupByLibrary.simpleMessage(
"Za sada trebaš Pantalaimon za obostrano šifriranje."),
"Please choose a username":
MessageLookupByLibrary.simpleMessage("Odaberi korisničko ime"),
"Please enter a matrix identifier":
MessageLookupByLibrary.simpleMessage("Upiši identifikator matrice"),
"Please enter your password":
MessageLookupByLibrary.simpleMessage("Upiši svoju lozinku"),
"Please enter your username":
MessageLookupByLibrary.simpleMessage("Upiši svoje korisničko ime"),
"Public Rooms": MessageLookupByLibrary.simpleMessage("Javne sobe"),
"Recording": MessageLookupByLibrary.simpleMessage("Snimanje"),
"Reject": MessageLookupByLibrary.simpleMessage("Odbij"),
"Rejoin": MessageLookupByLibrary.simpleMessage("Ponovo se pridruži"),
"Remove": MessageLookupByLibrary.simpleMessage("Ukloni"),
"Remove all other devices":
MessageLookupByLibrary.simpleMessage("Ukloni sve druge uređaje"),
"Remove device": MessageLookupByLibrary.simpleMessage("Ukloni uređaj"),
"Remove exile":
MessageLookupByLibrary.simpleMessage("Ukloni izbacivanje"),
"Remove message": MessageLookupByLibrary.simpleMessage("Ukloni poruku"),
"Render rich message content": MessageLookupByLibrary.simpleMessage(
"Prikaži formatirani sadržaj poruke"),
"Reply": MessageLookupByLibrary.simpleMessage("Odgovori"),
"Request permission":
MessageLookupByLibrary.simpleMessage("Zatraži dozvolu"),
"Request to read older messages": MessageLookupByLibrary.simpleMessage(
"Zahtjev za čitanje starijih poruka"),
"Revoke all permissions":
MessageLookupByLibrary.simpleMessage("Opozovi sve dozvole"),
"Room has been upgraded":
MessageLookupByLibrary.simpleMessage("Ova soba je nadograđena"),
"Saturday": MessageLookupByLibrary.simpleMessage("Subota"),
"Search for a chat": MessageLookupByLibrary.simpleMessage("Traži chat"),
"Seen a long time ago":
MessageLookupByLibrary.simpleMessage("Viđeno prije dugo vremena"),
"Send": MessageLookupByLibrary.simpleMessage("Pošalji"),
"Send a message":
MessageLookupByLibrary.simpleMessage("Pošalji poruku"),
"Send file": MessageLookupByLibrary.simpleMessage("Pošalji datoteku"),
"Send image": MessageLookupByLibrary.simpleMessage("Pošalji sliku"),
"Set a profile picture":
MessageLookupByLibrary.simpleMessage("Postavi sliku profila"),
"Set group description":
MessageLookupByLibrary.simpleMessage("Postavi opis grupe"),
"Set invitation link": MessageLookupByLibrary.simpleMessage(
"Pošalji poveznicu za pozivnicu"),
"Set status": MessageLookupByLibrary.simpleMessage("Postavi stanje"),
"Settings": MessageLookupByLibrary.simpleMessage("Postavke"),
"Share": MessageLookupByLibrary.simpleMessage("Dijeli"),
"Sign up": MessageLookupByLibrary.simpleMessage("Prijavi se"),
"Skip": MessageLookupByLibrary.simpleMessage("Preskoči"),
"Source code": MessageLookupByLibrary.simpleMessage("Izvorni kȏd"),
"Start your first chat :-)":
MessageLookupByLibrary.simpleMessage("Počni svoj prvi chat :-)"),
"Submit": MessageLookupByLibrary.simpleMessage("Pošalji"),
"Sunday": MessageLookupByLibrary.simpleMessage("Nedjelja"),
"System": MessageLookupByLibrary.simpleMessage("Sustav"),
"Tap to show menu":
MessageLookupByLibrary.simpleMessage("Dodirni za prikaz izbornika"),
"The encryption has been corrupted":
MessageLookupByLibrary.simpleMessage("Šifriranje je oštećeno"),
"They Don\'t Match":
MessageLookupByLibrary.simpleMessage("Ne poklapaju se"),
"They Match": MessageLookupByLibrary.simpleMessage("Poklapaju se"),
"This room has been archived.":
MessageLookupByLibrary.simpleMessage("Ova soba je arhivirana."),
"Thursday": MessageLookupByLibrary.simpleMessage("Četvrtak"),
"Try to send again":
MessageLookupByLibrary.simpleMessage("Pokušaj ponovo poslati"),
"Tuesday": MessageLookupByLibrary.simpleMessage("Utorak"),
"Unblock Device":
MessageLookupByLibrary.simpleMessage("Deblokiraj uređaj"),
"Unknown device":
MessageLookupByLibrary.simpleMessage("Nepoznat uređaj"),
"Unknown encryption algorithm": MessageLookupByLibrary.simpleMessage(
"Nepoznat algoritam šifriranja"),
"Unmute chat":
MessageLookupByLibrary.simpleMessage("Uključi zvuk chata"),
"Use Amoled compatible colors?": MessageLookupByLibrary.simpleMessage(
"Koristiti Amoled kompatibilne boje?"),
"Username": MessageLookupByLibrary.simpleMessage("Korisničko ime"),
"Verify": MessageLookupByLibrary.simpleMessage("Provjeri"),
"Verify User":
MessageLookupByLibrary.simpleMessage("Provjeri korisnika"),
"Video call": MessageLookupByLibrary.simpleMessage("Video poziv"),
"Visibility of the chat history": MessageLookupByLibrary.simpleMessage(
"Vidljivost kronologije chata"),
"Visible for all participants":
MessageLookupByLibrary.simpleMessage("Vidljivo za sve sudionike"),
"Visible for everyone":
MessageLookupByLibrary.simpleMessage("Vidljivo za sve"),
"Voice message":
MessageLookupByLibrary.simpleMessage("Glasovna poruka"),
"Wallpaper": MessageLookupByLibrary.simpleMessage("Slika pozadine"),
"Wednesday": MessageLookupByLibrary.simpleMessage("Srijeda"),
"Welcome to the cutest instant messenger in the matrix network.":
MessageLookupByLibrary.simpleMessage(
"Lijep pozdrav u najslađi program za čavrljanje u matrix-mreži."),
"Who is allowed to join this group":
MessageLookupByLibrary.simpleMessage(
"Tko se smije pridružiti grupi"),
"Write a message...":
MessageLookupByLibrary.simpleMessage("Napiši poruku …"),
"Yes": MessageLookupByLibrary.simpleMessage("Da"),
"You": MessageLookupByLibrary.simpleMessage("Ti"),
"You are invited to this chat":
MessageLookupByLibrary.simpleMessage("Pozvan/a si u ovaj chat"),
"You are no longer participating in this chat":
MessageLookupByLibrary.simpleMessage(
"Više ne sudjeluješ u ovom chatu"),
"You cannot invite yourself":
MessageLookupByLibrary.simpleMessage("Sebe ne možeš pozvati"),
"You have been banned from this chat":
MessageLookupByLibrary.simpleMessage(
"Isključen/a si iz ovog chata"),
"You won\'t be able to disable the encryption anymore. Are you sure?":
MessageLookupByLibrary.simpleMessage(
"Više nećeš moći deaktivirati šifriranje. Sigurno?"),
"Your own username":
MessageLookupByLibrary.simpleMessage("Tvoje korisničko ime"),
"acceptedTheInvitation": m0,
"activatedEndToEndEncryption": m1,
"alias": MessageLookupByLibrary.simpleMessage("pseudonim"),
"askSSSSCache": MessageLookupByLibrary.simpleMessage(
"Upiši svoju sigurnosnu lozinku ili ključ za obnavljanje, kako bi se ključevi spremili u predmemoriju."),
"askSSSSSign": MessageLookupByLibrary.simpleMessage(
"Za potpisivanje druge osobe, upiši svoju sigurnosnu lozinku ili ključ za obnavljanje."),
"askSSSSVerify": MessageLookupByLibrary.simpleMessage(
"Za potvrđivanje tvoje sesije, upiši svoju sigurnosnu lozinku ili ključ za obnavljanje."),
"askVerificationRequest": m60,
"bannedUser": m2,
"byDefaultYouWillBeConnectedTo": m3,
"cachedKeys": MessageLookupByLibrary.simpleMessage(
"Uspješno međuspremljeni ključevi!"),
"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,
"compareEmojiMatch": MessageLookupByLibrary.simpleMessage(
"Usporedi i provjeri, poklapaju li se sljedeći emojiji s onima drugog uređaja:"),
"compareNumbersMatch": MessageLookupByLibrary.simpleMessage(
"Usporedi i provjeri, poklapaju li se sljedeći brojevi s onima drugog uređaja:"),
"couldNotDecryptMessage": m18,
"countParticipants": m19,
"createdTheChat": m20,
"crossSigningDisabled": MessageLookupByLibrary.simpleMessage(
"Unakrsno potpisivanje je deaktivirano"),
"crossSigningEnabled": MessageLookupByLibrary.simpleMessage(
"Unakrsno potpisivanje je aktivirano"),
"dateAndTimeOfDay": m21,
"dateWithYear": m22,
"dateWithoutYear": m23,
"emoteExists":
MessageLookupByLibrary.simpleMessage("Emot već postoji!"),
"emoteInvalid":
MessageLookupByLibrary.simpleMessage("Neispravna kratica emota!"),
"emoteWarnNeedToPick": MessageLookupByLibrary.simpleMessage(
"Moraš odabrati jednu kraticu emota i sliku!"),
"groupWith": m24,
"hasWithdrawnTheInvitationFor": m25,
"incorrectPassphraseOrKey": MessageLookupByLibrary.simpleMessage(
"Neispravna lozinka ili ključ za obnavljanje"),
"inviteContactToGroup": m26,
"inviteText": m27,
"invitedUser": m28,
"is typing...": MessageLookupByLibrary.simpleMessage("piše …"),
"isDeviceKeyCorrect": MessageLookupByLibrary.simpleMessage(
"Je li sljedeći ključ uređaja ispravan?"),
"joinedTheChat": m29,
"keysCached": MessageLookupByLibrary.simpleMessage(
"Ključevi su spremljeni u predmemoriji"),
"keysMissing":
MessageLookupByLibrary.simpleMessage("Nedostaju ključevi"),
"kicked": m30,
"kickedAndBanned": m31,
"lastActiveAgo": m32,
"loadCountMoreParticipants": m33,
"logInTo": m34,
"newVerificationRequest":
MessageLookupByLibrary.simpleMessage("Novi zahtjev za provjeru!"),
"noCrossSignBootstrap": MessageLookupByLibrary.simpleMessage(
"Fluffychat trenutačno ne podržava unakrsno potpisivanje. Aktiviraj je pomoću Element-a."),
"noMegolmBootstrap": MessageLookupByLibrary.simpleMessage(
"Fluffychat trenutačno ne podržava online sigurnosnu kopiju ključeva. Aktiviraj je pomoću Element-a."),
"numberSelected": m35,
"ok": MessageLookupByLibrary.simpleMessage("u redu"),
"onlineKeyBackupDisabled": MessageLookupByLibrary.simpleMessage(
"Online sigurnosna kopija ključeva je deaktivirana"),
"onlineKeyBackupEnabled": MessageLookupByLibrary.simpleMessage(
"Online sigurnosna kopija ključeva je aktivirana"),
"passphraseOrKey": MessageLookupByLibrary.simpleMessage(
"Lozinka ili ključ za obnavljanje"),
"play": m36,
"redactedAnEvent": m37,
"rejectedTheInvitation": m38,
"removedBy": m39,
"seenByUser": m40,
"seenByUserAndCountOthers": m41,
"seenByUserAndUser": m42,
"sentAFile": m43,
"sentAPicture": m44,
"sentASticker": m45,
"sentAVideo": m46,
"sentAnAudio": m47,
"sessionVerified":
MessageLookupByLibrary.simpleMessage("Sesija je provjerena"),
"sharedTheLocation": m48,
"timeOfDay": m49,
"title": MessageLookupByLibrary.simpleMessage("FluffyChat"),
"unbannedUser": m50,
"unknownEvent": m51,
"unknownSessionVerify":
MessageLookupByLibrary.simpleMessage("Nepoznata sesija, provjeri"),
"unreadChats": m52,
"unreadMessages": m53,
"unreadMessagesInChats": m54,
"userAndOthersAreTyping": m55,
"userAndUserAreTyping": m56,
"userIsTyping": m57,
"userLeftTheChat": m58,
"userSentUnknownEvent": m59,
"verifiedSession":
MessageLookupByLibrary.simpleMessage("Uspješno provjerena sesija!"),
"verifyManual": MessageLookupByLibrary.simpleMessage("Provjeri ručno"),
"verifyStart": MessageLookupByLibrary.simpleMessage("Pokreni provjeru"),
"verifySuccess":
MessageLookupByLibrary.simpleMessage("Uspješno si provjerio/la!"),
"verifyTitle":
MessageLookupByLibrary.simpleMessage("Provjeravanje drugog računa"),
"waitingPartnerAcceptRequest": MessageLookupByLibrary.simpleMessage(
"Čekanje na partnera, da prihvati zahtjeva …"),
"waitingPartnerEmoji": MessageLookupByLibrary.simpleMessage(
"Čekanje na partnera, da prihvati emoji …"),
"waitingPartnerNumbers": MessageLookupByLibrary.simpleMessage(
"Čekanje na partnera, da prihvati brojeve …")
};
}

View File

@ -24,6 +24,8 @@ class MessageLookup extends MessageLookupByLibrary {
static m1(username) =>
"${username} aktiválta a végpontól-végpontig titkosítást";
static m60(username) => "Elfogadod ${username} hitelesítési kérelmét?";
static m2(username, targetName) => "${username} kitiltotta ${targetName}-t";
static m3(homeserver) => "Alapértelmezésben ${homeserver}-hoz csatlakozol";
@ -64,6 +66,9 @@ class MessageLookup extends MessageLookupByLibrary {
static m17(username) => "${username} módosította a meghívó linket";
static m18(error) =>
"Nem sikerült visszafejteni a titkosított üzenetet: ${error}";
static m19(count) => "${count} résztvevő";
static m20(username) => "${username} létrehozta a csevegést";
@ -158,6 +163,7 @@ class MessageLookup extends MessageLookupByLibrary {
"(Optional) Group name":
MessageLookupByLibrary.simpleMessage("(Nem kötelező) Csoport név"),
"About": MessageLookupByLibrary.simpleMessage("Névjegy"),
"Accept": MessageLookupByLibrary.simpleMessage("Elfogad"),
"Account": MessageLookupByLibrary.simpleMessage("Fiók"),
"Account informations":
MessageLookupByLibrary.simpleMessage("Fiók információk"),
@ -172,7 +178,7 @@ class MessageLookup extends MessageLookupByLibrary {
"Archived Room":
MessageLookupByLibrary.simpleMessage("Archivált szoba"),
"Are guest users allowed to join": MessageLookupByLibrary.simpleMessage(
"Csatlakozhatnak-e vendég felhasználók"),
"Csatlakozhatnak vendég felhasználók"),
"Are you sure?": MessageLookupByLibrary.simpleMessage("Biztos?"),
"Authentication": MessageLookupByLibrary.simpleMessage("Hitelesítés"),
"Avatar has been changed":
@ -180,6 +186,8 @@ class MessageLookup extends MessageLookupByLibrary {
"Ban from chat":
MessageLookupByLibrary.simpleMessage("Csevegésből kitiltás"),
"Banned": MessageLookupByLibrary.simpleMessage("Kitiltva"),
"Block Device":
MessageLookupByLibrary.simpleMessage("Eszköz blokkolása"),
"Cancel": MessageLookupByLibrary.simpleMessage("Mégsem"),
"Change the homeserver":
MessageLookupByLibrary.simpleMessage("Matrix szerver váltás"),
@ -221,6 +229,8 @@ class MessageLookup extends MessageLookupByLibrary {
MessageLookupByLibrary.simpleMessage("Új fiók létrehozása"),
"Create new group":
MessageLookupByLibrary.simpleMessage("Új csoport létrehozása"),
"Currently active":
MessageLookupByLibrary.simpleMessage("Jelenleg aktív"),
"Dark": MessageLookupByLibrary.simpleMessage("Sötét"),
"Delete": MessageLookupByLibrary.simpleMessage("Törlés"),
"Delete message":
@ -238,10 +248,11 @@ class MessageLookup extends MessageLookupByLibrary {
"Edit displayname": MessageLookupByLibrary.simpleMessage(
"Megjelenítési név módosítása"),
"Emote Settings":
MessageLookupByLibrary.simpleMessage("Hangulatjel beállíŧások"),
MessageLookupByLibrary.simpleMessage("Hangulatjel beállítások"),
"Emote shortcode":
MessageLookupByLibrary.simpleMessage("Rövid kód a hangulatjelhez"),
"Empty chat": MessageLookupByLibrary.simpleMessage("Üres csevegés"),
"Encryption": MessageLookupByLibrary.simpleMessage("Titkosítás"),
"Encryption algorithm":
MessageLookupByLibrary.simpleMessage("Titkosítási algoritmus"),
"Encryption is not enabled": MessageLookupByLibrary.simpleMessage(
@ -357,6 +368,7 @@ class MessageLookup extends MessageLookupByLibrary {
"Add meg a felhasználónevedet"),
"Public Rooms": MessageLookupByLibrary.simpleMessage("Publikus szoba"),
"Recording": MessageLookupByLibrary.simpleMessage("Felvétel"),
"Reject": MessageLookupByLibrary.simpleMessage("Visszautasít"),
"Rejoin": MessageLookupByLibrary.simpleMessage("Újracsatlakozás"),
"Remove": MessageLookupByLibrary.simpleMessage("Eltávolítás"),
"Remove all other devices": MessageLookupByLibrary.simpleMessage(
@ -376,9 +388,13 @@ class MessageLookup extends MessageLookupByLibrary {
"Korábbi üzenetekhez való hozzáférés igénylése"),
"Revoke all permissions": MessageLookupByLibrary.simpleMessage(
"Minden jogosultság megvonása"),
"Room has been upgraded":
MessageLookupByLibrary.simpleMessage("Szoba frissítve lett"),
"Saturday": MessageLookupByLibrary.simpleMessage("Szombat"),
"Search for a chat":
MessageLookupByLibrary.simpleMessage("Csevegés keresése"),
"Seen a long time ago":
MessageLookupByLibrary.simpleMessage("Már régen látta"),
"Send": MessageLookupByLibrary.simpleMessage("Küldés"),
"Send a message":
MessageLookupByLibrary.simpleMessage("Üzenet küldése"),
@ -395,9 +411,11 @@ class MessageLookup extends MessageLookupByLibrary {
"Settings": MessageLookupByLibrary.simpleMessage("Beállítások"),
"Share": MessageLookupByLibrary.simpleMessage("Megosztás"),
"Sign up": MessageLookupByLibrary.simpleMessage("Felíratkozás"),
"Skip": MessageLookupByLibrary.simpleMessage("Kihagy"),
"Source code": MessageLookupByLibrary.simpleMessage("Forráskód"),
"Start your first chat :-)":
MessageLookupByLibrary.simpleMessage("Kezdj el csevegni :-)"),
"Submit": MessageLookupByLibrary.simpleMessage("Mehet"),
"Sunday": MessageLookupByLibrary.simpleMessage("Vasárnap"),
"System": MessageLookupByLibrary.simpleMessage("Rendszer"),
"Tap to show menu": MessageLookupByLibrary.simpleMessage(
@ -405,12 +423,17 @@ class MessageLookup extends MessageLookupByLibrary {
"The encryption has been corrupted":
MessageLookupByLibrary.simpleMessage(
"A titkosítás sérült és megbízhatatlan"),
"They Don\'t Match":
MessageLookupByLibrary.simpleMessage("Nem egyeznek"),
"They Match": MessageLookupByLibrary.simpleMessage("Megegyeznek"),
"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"),
"Unblock Device": MessageLookupByLibrary.simpleMessage(
"Eszköz blokkolásának megszüntetése"),
"Unknown device":
MessageLookupByLibrary.simpleMessage("Ismeretlen eszköz"),
"Unknown encryption algorithm": MessageLookupByLibrary.simpleMessage(
@ -420,7 +443,9 @@ class MessageLookup extends MessageLookupByLibrary {
"Use Amoled compatible colors?": MessageLookupByLibrary.simpleMessage(
"AmoLED kompatibilis színek használata?"),
"Username": MessageLookupByLibrary.simpleMessage("Felhasználónév"),
"Verify": MessageLookupByLibrary.simpleMessage("Igazol"),
"Verify": MessageLookupByLibrary.simpleMessage("Hitelesít"),
"Verify User":
MessageLookupByLibrary.simpleMessage("Felhasználó hitelesítése"),
"Video call": MessageLookupByLibrary.simpleMessage("Videó hívás"),
"Visibility of the chat history": MessageLookupByLibrary.simpleMessage(
"Csevegési előzmény láthatósága"),
@ -459,8 +484,17 @@ class MessageLookup extends MessageLookupByLibrary {
"acceptedTheInvitation": m0,
"activatedEndToEndEncryption": m1,
"alias": MessageLookupByLibrary.simpleMessage("álnév"),
"askSSSSCache": MessageLookupByLibrary.simpleMessage(
"Add meg a biztonságos tárolóhoz tartozó vagy a visszaállítási jelszavadat, hogy betöltsük a kulcsaidat."),
"askSSSSSign": MessageLookupByLibrary.simpleMessage(
"A másik személy igazolásához, kérlek add meg jelszavadat vagy visszaállítási kulcsodat."),
"askSSSSVerify": MessageLookupByLibrary.simpleMessage(
"Add meg a biztonságos tárolóhoz tartozó vagy a visszaállítási jelszavadat, a munkamenet hitelesítéséhez."),
"askVerificationRequest": m60,
"bannedUser": m2,
"byDefaultYouWillBeConnectedTo": m3,
"cachedKeys": MessageLookupByLibrary.simpleMessage(
"Sikeresen betöltöttük a kulcsokat!"),
"changedTheChatAvatar": m4,
"changedTheChatDescriptionTo": m5,
"changedTheChatNameTo": m6,
@ -475,8 +509,17 @@ class MessageLookup extends MessageLookupByLibrary {
"changedTheProfileAvatar": m15,
"changedTheRoomAliases": m16,
"changedTheRoomInvitationLink": m17,
"compareEmojiMatch": MessageLookupByLibrary.simpleMessage(
"Hasonlítsd össze a hangulatjeleket a másik eszközön lévőkkel:"),
"compareNumbersMatch": MessageLookupByLibrary.simpleMessage(
"Hasonlítsd össze a számokat a másik eszközön lévőkkel:"),
"couldNotDecryptMessage": m18,
"countParticipants": m19,
"createdTheChat": m20,
"crossSigningDisabled":
MessageLookupByLibrary.simpleMessage("Kereszt-Aláírás kikapcsolva"),
"crossSigningEnabled":
MessageLookupByLibrary.simpleMessage("Kereszt-Aláírás bekapcsolva"),
"dateAndTimeOfDay": m21,
"dateWithYear": m22,
"dateWithoutYear": m23,
@ -488,18 +531,37 @@ class MessageLookup extends MessageLookupByLibrary {
"A hangulatjelhez válassz egy képet és egy rövid kód"),
"groupWith": m24,
"hasWithdrawnTheInvitationFor": m25,
"incorrectPassphraseOrKey": MessageLookupByLibrary.simpleMessage(
"Hibás jelszó vagy visszaállítási kulcs"),
"inviteContactToGroup": m26,
"inviteText": m27,
"invitedUser": m28,
"is typing...": MessageLookupByLibrary.simpleMessage("gépel..."),
"isDeviceKeyCorrect": MessageLookupByLibrary.simpleMessage(
"Helyes az alábbi eszköz kulcs?"),
"joinedTheChat": m29,
"keysCached": MessageLookupByLibrary.simpleMessage("Kulcsok betöltve"),
"keysMissing":
MessageLookupByLibrary.simpleMessage("Kulcsok hiányoznak"),
"kicked": m30,
"kickedAndBanned": m31,
"lastActiveAgo": m32,
"loadCountMoreParticipants": m33,
"logInTo": m34,
"newVerificationRequest":
MessageLookupByLibrary.simpleMessage("Új hitelesítési kérelem!"),
"noCrossSignBootstrap": MessageLookupByLibrary.simpleMessage(
"FluffyChat jelenleg nem támogatja a Kereszt-Aláírás bekapcsolását. Kérlek engedélyezd Riot-ból."),
"noMegolmBootstrap": MessageLookupByLibrary.simpleMessage(
"FluffyChat jelenleg nem támogatja az Online Kulcs Archívumot (backup). Kérlek engedélyezd Riot-ból."),
"numberSelected": m35,
"ok": MessageLookupByLibrary.simpleMessage("ok"),
"onlineKeyBackupDisabled": MessageLookupByLibrary.simpleMessage(
"Online Kulcs Archívum letiltva"),
"onlineKeyBackupEnabled": MessageLookupByLibrary.simpleMessage(
"Online Kulcs Archívum engedélyezve"),
"passphraseOrKey": MessageLookupByLibrary.simpleMessage(
"Jelszó vagy visszaállítási kulcs"),
"play": m36,
"redactedAnEvent": m37,
"rejectedTheInvitation": m38,
@ -512,11 +574,15 @@ class MessageLookup extends MessageLookupByLibrary {
"sentASticker": m45,
"sentAVideo": m46,
"sentAnAudio": m47,
"sessionVerified":
MessageLookupByLibrary.simpleMessage("Munkamenet hitelesítve"),
"sharedTheLocation": m48,
"timeOfDay": m49,
"title": MessageLookupByLibrary.simpleMessage("FluffyChat"),
"unbannedUser": m50,
"unknownEvent": m51,
"unknownSessionVerify": MessageLookupByLibrary.simpleMessage(
"Ismeretlen munkamenet, kérlek hitelesítsd"),
"unreadChats": m52,
"unreadMessages": m53,
"unreadMessagesInChats": m54,
@ -524,6 +590,22 @@ class MessageLookup extends MessageLookupByLibrary {
"userAndUserAreTyping": m56,
"userIsTyping": m57,
"userLeftTheChat": m58,
"userSentUnknownEvent": m59
"userSentUnknownEvent": m59,
"verifiedSession": MessageLookupByLibrary.simpleMessage(
"Sikeresen hitelesítetted a munkamenetedet!"),
"verifyManual":
MessageLookupByLibrary.simpleMessage("Kézi hitelesítés"),
"verifyStart":
MessageLookupByLibrary.simpleMessage("Hitelesítés megkezdése"),
"verifySuccess":
MessageLookupByLibrary.simpleMessage("Sikeresen hitelesítettél!"),
"verifyTitle":
MessageLookupByLibrary.simpleMessage("Másik fiók hitelesítése"),
"waitingPartnerAcceptRequest": MessageLookupByLibrary.simpleMessage(
"Várakozás partnerre, amíg elfogadja a kérést..."),
"waitingPartnerEmoji": MessageLookupByLibrary.simpleMessage(
"Várakozás partnere, amíg elfogadja a hangulatjeleket..."),
"waitingPartnerNumbers": MessageLookupByLibrary.simpleMessage(
"Várakozás partnere, amíg elfogadja a számokat...")
};
}

538
lib/l10n/messages_ja.dart Normal file
View File

@ -0,0 +1,538 @@
// DO NOT EDIT. This is code generated via package:intl/generate_localized.dart
// This is a library that provides messages for a ja locale. All the
// messages from the main program should be duplicated here with the same
// function name.
// Ignore issues from commonly used lints in this file.
// ignore_for_file:unnecessary_brace_in_string_interps, unnecessary_new
// ignore_for_file:prefer_single_quotes,comment_references, directives_ordering
// ignore_for_file:annotate_overrides,prefer_generic_function_type_aliases
// ignore_for_file:unused_import, file_names
import 'package:intl/intl.dart';
import 'package:intl/message_lookup_by_library.dart';
final messages = new MessageLookup();
typedef String MessageIfAbsent(String messageStr, List<dynamic> args);
class MessageLookup extends MessageLookupByLibrary {
String get localeName => 'ja';
static m0(username) => "${username} が招待を承諾しました";
static m1(username) => "${username} がエンドツーエンド暗号化を有効にしました";
static m60(username) => "${username} の検証リクエストを承認しますか?";
static m2(username, targetName) => "${username}${targetName}をBANしました";
static m3(homeserver) => "デフォルトで${homeserver}に接続されます";
static m4(username) => "${username}がチャットアバターを変更しました";
static m5(username, description) =>
"${username}がチャットの説明を「${description}」に変更しました";
static m6(username, chatname) => "${username}がチャットの名前を「${chatname}」に変更しました";
static m7(username) => "${username}がチャットの権限を変更しました";
static m8(username, displayname) => "${username}が表示名を「${displayname}」に変更しました";
static m9(username) => "${username}がゲストのアクセスルールを変更しました";
static m10(username, rules) => "${username}がゲストのアクセスルールを${rules}に変更しました";
static m11(username) => "${username}が履歴の表示設定を変更しました";
static m12(username, rules) => "${username}が履歴の表示設定を${rules}に変更しました";
static m13(username) => "${username}が参加ルールを変更しました";
static m14(username, joinRules) => "${username}が参加ルールを${joinRules}に変更しました";
static m15(username) => "${username}がプロフィールのアバターを変更しました";
static m16(username) => "${username}が部屋のエイリアスを変更しました";
static m17(username) => "${username}が招待リンクを変更しました";
static m18(error) => "メッセージを解読できませんでした: ${error}";
static m19(count) => "${count}名の参加者";
static m20(username) => "${username}がチャットを作成しました";
static m21(date, timeOfDay) => "${date}, ${timeOfDay}";
static m22(year, month, day) => "${year}-${month}-${day}";
static m23(month, day) => "${month}-${day}";
static m24(displayname) => "${displayname}とグループを作成する";
static m25(username, targetName) => "${targetName}の招待を${username}が取り下げました";
static m26(groupName) => "連絡先から${groupName}に招待する";
static m27(username, link) =>
"${username}がFluffyChatにあなたを招待しました. \n1. FluffyChatをインストールしてください: http://fluffy.chat \n2. 新しくアカウントを作成するかサインインしてください\n3. 招待リンクを開いてください: ${link}";
static m28(username, targetName) => "${username}${targetName}を招待しました";
static m29(username) => "${username}がチャットに参加しました";
static m30(username, targetName) => "${username}${targetName}をキックしました";
static m31(username, targetName) => "${username}${targetName}をキックしBANしました";
static m32(localizedTimeShort) => "最終アクティブ: ${localizedTimeShort}";
static m33(count) => "あと${count}名参加者を読み込む";
static m34(homeserver) => "${homeserver}にログインする";
static m35(number) => "${number}選択されています";
static m36(fileName) => "${fileName}を再生する";
static m37(username) => "${username}がイベントを編集しました";
static m38(username) => "${username}は招待を拒否しました";
static m39(username) => "${username}によって削除されました";
static m40(username) => "${username}が既読";
static m41(username, count) => "${username}と他${count}名が既読";
static m42(username, username2) => "${username}${username2}が既読";
static m43(username) => "${username}はファイルを送信しました";
static m44(username) => "${username}は画像を送信しました";
static m45(username) => "${username}はステッカーを送信しました";
static m46(username) => "${username}は動画を送信しました";
static m47(username) => "${username}は音声を送信しました";
static m48(username) => "${username}は現在地を共有しました";
static m49(hours12, hours24, minutes, suffix) =>
"${hours24}:${minutes} ${suffix}";
static m50(username, targetName) => "${username}${targetName}のBANを解除しました";
static m51(type) => "未知のイベント\'${type}\'";
static m52(unreadCount) => "${unreadCount}の未読メッセージ";
static m53(unreadEvents) => "${unreadEvents}件の未読メッセージ";
static m54(unreadEvents, unreadChats) =>
"${unreadChats}${unreadEvents}件の未読メッセージ";
static m55(username, count) => "${username}と他${count}名が入力しています...";
static m56(username, username2) => "${username}${username2}が入力しています...";
static m57(username) => "${username}が入力しています...";
static m58(username) => "${username}は退室しました";
static m59(username, type) => "${username}${type}イベントを送信しました";
final messages = _notInlinedMessages(_notInlinedMessages);
static _notInlinedMessages(_) => <String, Function>{
"(Optional) Group name":
MessageLookupByLibrary.simpleMessage("(任意)グループ名"),
"About": MessageLookupByLibrary.simpleMessage("このアプリについて"),
"Accept": MessageLookupByLibrary.simpleMessage("承諾する"),
"Account": MessageLookupByLibrary.simpleMessage("アカウント"),
"Account informations": MessageLookupByLibrary.simpleMessage("アカウント情報"),
"Add a group description":
MessageLookupByLibrary.simpleMessage("グループの説明を追加する"),
"Admin": MessageLookupByLibrary.simpleMessage("管理者"),
"Already have an account?":
MessageLookupByLibrary.simpleMessage("アカウントをすでにお持ちですか?"),
"Anyone can join": MessageLookupByLibrary.simpleMessage("誰でも参加できます"),
"Archive": MessageLookupByLibrary.simpleMessage("アーカイブ"),
"Archived Room": MessageLookupByLibrary.simpleMessage("アーカイブされた部屋"),
"Are guest users allowed to join":
MessageLookupByLibrary.simpleMessage("ゲストユーザーの参加を許可する"),
"Are you sure?": MessageLookupByLibrary.simpleMessage("これでよろしいですか?"),
"Authentication": MessageLookupByLibrary.simpleMessage("認証"),
"Avatar has been changed":
MessageLookupByLibrary.simpleMessage("アバターが変更されました"),
"Ban from chat": MessageLookupByLibrary.simpleMessage("チャットからBANする"),
"Banned": MessageLookupByLibrary.simpleMessage("BANされています"),
"Block Device": MessageLookupByLibrary.simpleMessage("デバイスをブロックする"),
"Cancel": MessageLookupByLibrary.simpleMessage("キャンセル"),
"Change the homeserver":
MessageLookupByLibrary.simpleMessage("ホームサーバーの変更"),
"Change the name of the group":
MessageLookupByLibrary.simpleMessage("グループの名前を変更する"),
"Change the server": MessageLookupByLibrary.simpleMessage("サーバーを変更する"),
"Change wallpaper": MessageLookupByLibrary.simpleMessage("壁紙を変更する"),
"Change your style": MessageLookupByLibrary.simpleMessage("スタイルを変更する"),
"Changelog": MessageLookupByLibrary.simpleMessage("変更履歴"),
"Chat": MessageLookupByLibrary.simpleMessage("チャット"),
"Chat details": MessageLookupByLibrary.simpleMessage("チャットの詳細"),
"Choose a strong password":
MessageLookupByLibrary.simpleMessage("強いパスワードを選択してください"),
"Choose a username":
MessageLookupByLibrary.simpleMessage("ユーザー名を選択してください"),
"Close": MessageLookupByLibrary.simpleMessage("閉じる"),
"Confirm": MessageLookupByLibrary.simpleMessage("確認しました"),
"Connect": MessageLookupByLibrary.simpleMessage("接続"),
"Connection attempt failed":
MessageLookupByLibrary.simpleMessage("接続が失敗しました"),
"Contact has been invited to the group":
MessageLookupByLibrary.simpleMessage("連絡先に登録された人が招待されました"),
"Content viewer": MessageLookupByLibrary.simpleMessage("コンテンツビューアー"),
"Copied to clipboard":
MessageLookupByLibrary.simpleMessage("クリップボードにコピーされました"),
"Copy": MessageLookupByLibrary.simpleMessage("コピー"),
"Could not set avatar":
MessageLookupByLibrary.simpleMessage("アバターをセットできませんでした"),
"Could not set displayname":
MessageLookupByLibrary.simpleMessage("表示名をセットできませんでした"),
"Create": MessageLookupByLibrary.simpleMessage("作成"),
"Create account now":
MessageLookupByLibrary.simpleMessage("アカウントを作成する"),
"Create new group":
MessageLookupByLibrary.simpleMessage("新しいグループを作成する"),
"Currently active": MessageLookupByLibrary.simpleMessage("現在アクティブです"),
"Dark": MessageLookupByLibrary.simpleMessage("ダーク"),
"Delete": MessageLookupByLibrary.simpleMessage("削除"),
"Delete message": MessageLookupByLibrary.simpleMessage("メッセージの削除"),
"Deny": MessageLookupByLibrary.simpleMessage("拒否"),
"Device": MessageLookupByLibrary.simpleMessage("デバイス"),
"Devices": MessageLookupByLibrary.simpleMessage("デバイス"),
"Discard picture": MessageLookupByLibrary.simpleMessage("画像を無視する"),
"Displayname has been changed":
MessageLookupByLibrary.simpleMessage("表示名が変更されました"),
"Donate": MessageLookupByLibrary.simpleMessage("寄付する"),
"Download file": MessageLookupByLibrary.simpleMessage("ファイルのダウンロード"),
"Edit Jitsi instance":
MessageLookupByLibrary.simpleMessage("Jitsiインスタンスを編集する"),
"Edit displayname": MessageLookupByLibrary.simpleMessage("表示名を編集"),
"Emote Settings": MessageLookupByLibrary.simpleMessage("Emote設定"),
"Emote shortcode": MessageLookupByLibrary.simpleMessage("Emoteショートコード"),
"Empty chat": MessageLookupByLibrary.simpleMessage("空のチャット"),
"Encryption": MessageLookupByLibrary.simpleMessage("暗号化"),
"Encryption algorithm":
MessageLookupByLibrary.simpleMessage("暗号化アルゴリズム"),
"Encryption is not enabled":
MessageLookupByLibrary.simpleMessage("暗号化されていません"),
"End to end encryption is currently in Beta! Use at your own risk!":
MessageLookupByLibrary.simpleMessage(
"エンドツーエンド暗号化は現在ベータ版です!これは自分自身の責任で行ってください!"),
"End-to-end encryption settings":
MessageLookupByLibrary.simpleMessage("エンドツーエンド暗号化設定"),
"Enter a group name":
MessageLookupByLibrary.simpleMessage("グループ名を入力してください"),
"Enter a username":
MessageLookupByLibrary.simpleMessage("ユーザー名を入力してください"),
"Enter your homeserver":
MessageLookupByLibrary.simpleMessage("ホームサーバーを入力してください"),
"File name": MessageLookupByLibrary.simpleMessage("ファイル名"),
"File size": MessageLookupByLibrary.simpleMessage("ファイルサイズ"),
"FluffyChat": MessageLookupByLibrary.simpleMessage("FluffyChat"),
"Forward": MessageLookupByLibrary.simpleMessage("進む"),
"Friday": MessageLookupByLibrary.simpleMessage("金曜日"),
"From joining": MessageLookupByLibrary.simpleMessage("参加から"),
"From the invitation": MessageLookupByLibrary.simpleMessage("招待から"),
"Group": MessageLookupByLibrary.simpleMessage("グループ"),
"Group description": MessageLookupByLibrary.simpleMessage("グループの説明"),
"Group description has been changed":
MessageLookupByLibrary.simpleMessage("グループの説明が変更されました"),
"Group is public":
MessageLookupByLibrary.simpleMessage("グループは公開されています"),
"Guests are forbidden":
MessageLookupByLibrary.simpleMessage("ゲストは許可されていません"),
"Guests can join": MessageLookupByLibrary.simpleMessage("ゲストが許可されています"),
"Help": MessageLookupByLibrary.simpleMessage("ヘルプ"),
"Homeserver is not compatible":
MessageLookupByLibrary.simpleMessage("このホームサーバーは互換性がありません"),
"How are you today?": MessageLookupByLibrary.simpleMessage("お元気ですか?"),
"ID": MessageLookupByLibrary.simpleMessage("ID"),
"Identity": MessageLookupByLibrary.simpleMessage("アイデンティティ"),
"Invite contact": MessageLookupByLibrary.simpleMessage("連絡先から招待する"),
"Invited": MessageLookupByLibrary.simpleMessage("招待されました"),
"Invited users only":
MessageLookupByLibrary.simpleMessage("招待されたユーザーのみ"),
"It seems that you have no google services on your phone. That\'s a good decision for your privacy! To receive push notifications in FluffyChat we recommend using microG: https://microg.org/":
MessageLookupByLibrary.simpleMessage(
"あなたのスマホにはグーグルサービスがないようですね。プライバシーを保護するための良い選択ですPush通知を受け取るにはmicroGを使うことを推奨しています: https://microg.org/"),
"Kick from chat": MessageLookupByLibrary.simpleMessage("チャットからキックする"),
"Last seen IP": MessageLookupByLibrary.simpleMessage("最終IP"),
"Leave": MessageLookupByLibrary.simpleMessage("退室する"),
"Left the chat": MessageLookupByLibrary.simpleMessage("退室しました"),
"License": MessageLookupByLibrary.simpleMessage("ライセンス"),
"Light": MessageLookupByLibrary.simpleMessage("ライト"),
"Load more...": MessageLookupByLibrary.simpleMessage("更に読み込む..."),
"Loading... Please wait":
MessageLookupByLibrary.simpleMessage("読み込み中...お待ちください。"),
"Login": MessageLookupByLibrary.simpleMessage("ログイン"),
"Logout": MessageLookupByLibrary.simpleMessage("ログアウト"),
"Make a moderator": MessageLookupByLibrary.simpleMessage("モデレータを作成する"),
"Make an admin": MessageLookupByLibrary.simpleMessage("管理者を作成する"),
"Make sure the identifier is valid":
MessageLookupByLibrary.simpleMessage("識別子が正しいか確認してください"),
"Message will be removed for all participants":
MessageLookupByLibrary.simpleMessage("メッセージはすべての参加者から消去されます"),
"Moderator": MessageLookupByLibrary.simpleMessage("モデレータ"),
"Monday": MessageLookupByLibrary.simpleMessage("月曜日"),
"Mute chat": MessageLookupByLibrary.simpleMessage("チャットのミュート"),
"New message in FluffyChat":
MessageLookupByLibrary.simpleMessage("FluffyChatに新しいメッセージがあります"),
"New private chat":
MessageLookupByLibrary.simpleMessage("新しいプライベートチャット"),
"No emotes found. 😕":
MessageLookupByLibrary.simpleMessage("Emoteは見つかりませんでした😕"),
"No permission": MessageLookupByLibrary.simpleMessage("権限がありません"),
"No rooms found...":
MessageLookupByLibrary.simpleMessage("部屋は見つかりませんでした..."),
"None": MessageLookupByLibrary.simpleMessage("なし"),
"Not supported in web":
MessageLookupByLibrary.simpleMessage("ウェブではサポートされていません"),
"Oops something went wrong...":
MessageLookupByLibrary.simpleMessage("おっと、何かがうまくいきませんでした..."),
"Open app to read messages":
MessageLookupByLibrary.simpleMessage("アプリを開いてメッセージを確認してください"),
"Open camera": MessageLookupByLibrary.simpleMessage("カメラを開く"),
"Participating user devices":
MessageLookupByLibrary.simpleMessage("ユーザーの使用しているデバイス"),
"Password": MessageLookupByLibrary.simpleMessage("パスワード"),
"Pick image": MessageLookupByLibrary.simpleMessage("画像を選択してください"),
"Please be aware that you need Pantalaimon to use end-to-end encryption for now.":
MessageLookupByLibrary.simpleMessage(
"現時点では、エンドツーエンドの暗号化を使用するにはPantalaimonが必要であることに注意してください。"),
"Please choose a username":
MessageLookupByLibrary.simpleMessage("ユーザー名を選択してください"),
"Please enter a matrix identifier":
MessageLookupByLibrary.simpleMessage("Matrix識別子を入力してください"),
"Please enter your password":
MessageLookupByLibrary.simpleMessage("パスワードを入力してください"),
"Please enter your username":
MessageLookupByLibrary.simpleMessage("ユーザー名を入力してください"),
"Public Rooms": MessageLookupByLibrary.simpleMessage("公開された部屋"),
"Recording": MessageLookupByLibrary.simpleMessage("録音中"),
"Reject": MessageLookupByLibrary.simpleMessage("拒否"),
"Rejoin": MessageLookupByLibrary.simpleMessage("再参加"),
"Remove": MessageLookupByLibrary.simpleMessage("消去"),
"Remove all other devices":
MessageLookupByLibrary.simpleMessage("他のデバイスをすべて削除"),
"Remove device": MessageLookupByLibrary.simpleMessage("デバイスの削除"),
"Remove exile": MessageLookupByLibrary.simpleMessage("追放を取り消し"),
"Remove message": MessageLookupByLibrary.simpleMessage("メッセージを削除"),
"Render rich message content":
MessageLookupByLibrary.simpleMessage("リッチメッセージをレンダリングする"),
"Reply": MessageLookupByLibrary.simpleMessage("返信"),
"Request permission": MessageLookupByLibrary.simpleMessage("権限を要求する"),
"Request to read older messages":
MessageLookupByLibrary.simpleMessage("過去のメッセージを読む権限を要求する"),
"Revoke all permissions":
MessageLookupByLibrary.simpleMessage("すべての権限を取り消す"),
"Room has been upgraded":
MessageLookupByLibrary.simpleMessage("部屋はアップグレードされました"),
"Saturday": MessageLookupByLibrary.simpleMessage("土曜日"),
"Search for a chat": MessageLookupByLibrary.simpleMessage("チャットを検索する"),
"Seen a long time ago":
MessageLookupByLibrary.simpleMessage("ずいぶん前に既読"),
"Send": MessageLookupByLibrary.simpleMessage("送信"),
"Send a message": MessageLookupByLibrary.simpleMessage("メッセージを送信"),
"Send file": MessageLookupByLibrary.simpleMessage("ファイルを送信"),
"Send image": MessageLookupByLibrary.simpleMessage("画像の送信"),
"Set a profile picture":
MessageLookupByLibrary.simpleMessage("プロフィール画像を設定する"),
"Set group description":
MessageLookupByLibrary.simpleMessage("グループの説明を設定する"),
"Set invitation link":
MessageLookupByLibrary.simpleMessage("招待リンクを設定する"),
"Set status": MessageLookupByLibrary.simpleMessage("ステータスの設定"),
"Settings": MessageLookupByLibrary.simpleMessage("設定"),
"Share": MessageLookupByLibrary.simpleMessage("共有"),
"Sign up": MessageLookupByLibrary.simpleMessage("サインアップ"),
"Skip": MessageLookupByLibrary.simpleMessage("スキップ"),
"Source code": MessageLookupByLibrary.simpleMessage("ソースコード"),
"Start your first chat :-)":
MessageLookupByLibrary.simpleMessage("初めてのチャットを開始してください(^_^)"),
"Submit": MessageLookupByLibrary.simpleMessage("送信"),
"Sunday": MessageLookupByLibrary.simpleMessage("日曜日"),
"System": MessageLookupByLibrary.simpleMessage("システム"),
"Tap to show menu":
MessageLookupByLibrary.simpleMessage("メニューを表示するにはタップしてください"),
"The encryption has been corrupted":
MessageLookupByLibrary.simpleMessage("暗号が破損しています"),
"They Don\'t Match": MessageLookupByLibrary.simpleMessage("違います"),
"They Match": MessageLookupByLibrary.simpleMessage("一致しています"),
"This room has been archived.":
MessageLookupByLibrary.simpleMessage("この部屋はアーカイブされています"),
"Thursday": MessageLookupByLibrary.simpleMessage("木曜日"),
"Try to send again": MessageLookupByLibrary.simpleMessage("送信し直してみる"),
"Tuesday": MessageLookupByLibrary.simpleMessage("火曜日"),
"Unblock Device": MessageLookupByLibrary.simpleMessage("デバイスをブロック解除する"),
"Unknown device": MessageLookupByLibrary.simpleMessage("未知デバイス"),
"Unknown encryption algorithm":
MessageLookupByLibrary.simpleMessage("未知の暗号化アルゴリズム"),
"Unmute chat": MessageLookupByLibrary.simpleMessage("チャットをミュート解除する"),
"Use Amoled compatible colors?":
MessageLookupByLibrary.simpleMessage("有機EL(Amoled)対応の色にしますか?"),
"Username": MessageLookupByLibrary.simpleMessage("ユーザー名"),
"Verify": MessageLookupByLibrary.simpleMessage("確認"),
"Verify User": MessageLookupByLibrary.simpleMessage("ユーザーの認証"),
"Video call": MessageLookupByLibrary.simpleMessage("音声通話"),
"Visibility of the chat history":
MessageLookupByLibrary.simpleMessage("チャット履歴の表示"),
"Visible for all participants":
MessageLookupByLibrary.simpleMessage("すべての参加者が閲覧可能です"),
"Visible for everyone":
MessageLookupByLibrary.simpleMessage("すべての人が閲覧可能です"),
"Voice message": MessageLookupByLibrary.simpleMessage("ボイスメッセージ"),
"Wallpaper": MessageLookupByLibrary.simpleMessage("壁紙"),
"Wednesday": MessageLookupByLibrary.simpleMessage("水曜日"),
"Welcome to the cutest instant messenger in the matrix network.":
MessageLookupByLibrary.simpleMessage(
"Matrixネットワークで一番かわいいチャットアプリへようこそ"),
"Who is allowed to join this group":
MessageLookupByLibrary.simpleMessage("誰がこのチャットに入れますか"),
"Write a message...":
MessageLookupByLibrary.simpleMessage("メッセージを入力してください..."),
"Yes": MessageLookupByLibrary.simpleMessage("はい"),
"You": MessageLookupByLibrary.simpleMessage("あなた"),
"You are invited to this chat":
MessageLookupByLibrary.simpleMessage("チャットに招待されています"),
"You are no longer participating in this chat":
MessageLookupByLibrary.simpleMessage("あなたはもうこのチャットの参加者ではありません"),
"You cannot invite yourself":
MessageLookupByLibrary.simpleMessage("自分自身を招待することはできません"),
"You have been banned from this chat":
MessageLookupByLibrary.simpleMessage("チャットからBANされてしまいました"),
"You won\'t be able to disable the encryption anymore. Are you sure?":
MessageLookupByLibrary.simpleMessage(
"一度暗号化を有効にするともとに戻せません。よろしいですか?"),
"Your own username": MessageLookupByLibrary.simpleMessage("あなたのユーザー名"),
"acceptedTheInvitation": m0,
"activatedEndToEndEncryption": m1,
"alias": MessageLookupByLibrary.simpleMessage("エイリアス"),
"askSSSSCache": MessageLookupByLibrary.simpleMessage(
"鍵をキャッシュするためにはパスフレーズやリカバリーキーを入力してください。"),
"askSSSSSign": MessageLookupByLibrary.simpleMessage(
"他の人を署名するためにはパスフレーズやリカバリーキーを入力してください。"),
"askSSSSVerify": MessageLookupByLibrary.simpleMessage(
"セッションを検証するためにはパスフレーズやリカバリーキーを入力してください。"),
"askVerificationRequest": m60,
"bannedUser": m2,
"byDefaultYouWillBeConnectedTo": m3,
"cachedKeys": MessageLookupByLibrary.simpleMessage("鍵のキャッシュに成功しました!"),
"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,
"compareEmojiMatch": MessageLookupByLibrary.simpleMessage(
"表示されている絵文字が他のデバイスで表示されているものと一致するか確認してください"),
"compareNumbersMatch": MessageLookupByLibrary.simpleMessage(
"表示されている数字が他のデバイスで表示されているものと一致するか確認してください"),
"couldNotDecryptMessage": m18,
"countParticipants": m19,
"createdTheChat": m20,
"crossSigningDisabled":
MessageLookupByLibrary.simpleMessage("相互署名は使えません"),
"crossSigningEnabled":
MessageLookupByLibrary.simpleMessage("相互署名が使えます"),
"dateAndTimeOfDay": m21,
"dateWithYear": m22,
"dateWithoutYear": m23,
"emoteExists": MessageLookupByLibrary.simpleMessage("Emoteはすでに存在します"),
"emoteInvalid": MessageLookupByLibrary.simpleMessage("不正なEmoteショートコード"),
"emoteWarnNeedToPick":
MessageLookupByLibrary.simpleMessage("Emoteショートコードと画像を選択してください"),
"groupWith": m24,
"hasWithdrawnTheInvitationFor": m25,
"incorrectPassphraseOrKey":
MessageLookupByLibrary.simpleMessage("パスフレーズかリカバリーキーが間違っています"),
"inviteContactToGroup": m26,
"inviteText": m27,
"invitedUser": m28,
"is typing...": MessageLookupByLibrary.simpleMessage("が入力しています..."),
"isDeviceKeyCorrect":
MessageLookupByLibrary.simpleMessage("このデバイスキーは正しいですか?"),
"joinedTheChat": m29,
"keysCached": MessageLookupByLibrary.simpleMessage("鍵はキャッシュされたいます"),
"keysMissing": MessageLookupByLibrary.simpleMessage("鍵がありません"),
"kicked": m30,
"kickedAndBanned": m31,
"lastActiveAgo": m32,
"loadCountMoreParticipants": m33,
"logInTo": m34,
"newVerificationRequest":
MessageLookupByLibrary.simpleMessage("新しい認証リクエスト"),
"noCrossSignBootstrap": MessageLookupByLibrary.simpleMessage(
"FluffyChatは現在相互署名機能をサポートしていません。Elementから有効化してください。"),
"noMegolmBootstrap": MessageLookupByLibrary.simpleMessage(
"FluffyChatは現在鍵のオンラインバックアップの有効化をサポートしていません。Elementから有効化してください。"),
"numberSelected": m35,
"ok": MessageLookupByLibrary.simpleMessage("OK"),
"onlineKeyBackupDisabled":
MessageLookupByLibrary.simpleMessage("オンライン鍵バックアップは使用されていません"),
"onlineKeyBackupEnabled":
MessageLookupByLibrary.simpleMessage("オンライン鍵バックアップは使用されています"),
"passphraseOrKey":
MessageLookupByLibrary.simpleMessage("パスフレーズかリカバリーキー"),
"play": m36,
"redactedAnEvent": m37,
"rejectedTheInvitation": m38,
"removedBy": m39,
"seenByUser": m40,
"seenByUserAndCountOthers": m41,
"seenByUserAndUser": m42,
"sentAFile": m43,
"sentAPicture": m44,
"sentASticker": m45,
"sentAVideo": m46,
"sentAnAudio": m47,
"sessionVerified": MessageLookupByLibrary.simpleMessage("セッションは確認済みです"),
"sharedTheLocation": m48,
"timeOfDay": m49,
"title": MessageLookupByLibrary.simpleMessage("FluffyChat"),
"unbannedUser": m50,
"unknownEvent": m51,
"unknownSessionVerify":
MessageLookupByLibrary.simpleMessage("未知のセッションです。確認してください。"),
"unreadChats": m52,
"unreadMessages": m53,
"unreadMessagesInChats": m54,
"userAndOthersAreTyping": m55,
"userAndUserAreTyping": m56,
"userIsTyping": m57,
"userLeftTheChat": m58,
"userSentUnknownEvent": m59,
"verifiedSession":
MessageLookupByLibrary.simpleMessage("セッションの確認ができました!"),
"verifyManual": MessageLookupByLibrary.simpleMessage("手動で確認"),
"verifyStart": MessageLookupByLibrary.simpleMessage("確認を始める"),
"verifySuccess": MessageLookupByLibrary.simpleMessage("確認が完了しました!"),
"verifyTitle": MessageLookupByLibrary.simpleMessage("他のアカウントを確認中"),
"waitingPartnerAcceptRequest":
MessageLookupByLibrary.simpleMessage("パートナーのリクエスト承諾待ちです"),
"waitingPartnerEmoji":
MessageLookupByLibrary.simpleMessage("パートナーの絵文字承諾待ちです..."),
"waitingPartnerNumbers":
MessageLookupByLibrary.simpleMessage("パートナーの数字承諾待ちです")
};
}

View File

@ -57,7 +57,7 @@ class MessageLookup extends MessageLookupByLibrary {
static m14(username, joinRules) =>
"${username} changed the join rules to: ${joinRules}";
static m15(username) => "${username} changed the profile avatar";
static m15(username) => "${username} changed their avatar";
static m16(username) => "${username} changed the room aliases";
@ -533,9 +533,9 @@ class MessageLookup extends MessageLookupByLibrary {
"newVerificationRequest":
MessageLookupByLibrary.simpleMessage("New verification request!"),
"noCrossSignBootstrap": MessageLookupByLibrary.simpleMessage(
"Fluffychat currently does not support enabling Cross-Signing. Please enable it from within Riot."),
"Fluffychat currently does not support enabling Cross-Signing. Please enable it from within Element."),
"noMegolmBootstrap": MessageLookupByLibrary.simpleMessage(
"Fluffychat currently does not support enabling Online Key Backup. Please enable it from within Riot."),
"Fluffychat currently does not support enabling Online Key Backup. Please enable it from within Element."),
"numberSelected": m35,
"ok": MessageLookupByLibrary.simpleMessage("ok"),
"onlineKeyBackupDisabled": MessageLookupByLibrary.simpleMessage(

603
lib/l10n/messages_ru.dart Normal file
View File

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

View File

@ -19,9 +19,9 @@ typedef String MessageIfAbsent(String messageStr, List<dynamic> args);
class MessageLookup extends MessageLookupByLibrary {
String get localeName => 'sk';
static m0(username) => "${username} prijali pozvanie";
static m0(username) => "${username} prijali pozvánku";
static m1(username) => "${username} aktivoval koncové šifrovanie";
static m1(username) => "${username} aktivovali koncové šifrovanie";
static m60(username) => "Akcepovať žiadosť o verifikáciu od ${username}?";
@ -30,7 +30,7 @@ class MessageLookup extends MessageLookupByLibrary {
static m3(homeserver) =>
"V základnom nastavení budete pripojený k ${homeserver}";
static m4(username) => "${username} zmenili svôj avatar";
static m4(username) => "${username} si zmenili svôj avatar";
static m5(username, description) =>
"${username} zmenili popis chatu na: „${description}";
@ -41,7 +41,7 @@ class MessageLookup extends MessageLookupByLibrary {
static m7(username) => "${username} zmenili nastavenie oprávnení chatu";
static m8(username, displayname) =>
"${username} zmenili prezývku na: ${displayname}";
"${username} si zmenili prezývku na: ${displayname}";
static m9(username) => "${username} zmenili prístupové práva pre hosťov";
@ -49,17 +49,17 @@ class MessageLookup extends MessageLookupByLibrary {
"${username} zmenili prístupové práva pro hosťov na: ${rules}";
static m11(username) =>
"${username} zmenili nastavenie viditelnosti histórie diskusie";
"${username} zmenili nastavenie viditelnosti histórie chatu";
static m12(username, rules) =>
"${username} zmenili nastavenie viditelnosti histórie diskusie na: ${rules}";
"${username} zmenili nastavenie viditelnosti histórie chatu na: ${rules}";
static m13(username) => "${username} zmenili nastavenie pravidiel pripojenia";
static m14(username, joinRules) =>
"${username} zmenili nastavenie pravidiel pripojenia na: ${joinRules}";
static m15(username) => "${username} zmenil profilový obrázok";
static m15(username) => "${username} si zmenili profilový obrázok";
static m16(username) => "${username} zmenili nastavenie aliasov chatu";
@ -84,7 +84,8 @@ class MessageLookup extends MessageLookupByLibrary {
static m26(groupName) => "Pozvať kontakt do ${groupName}";
static m27(username, link) => "";
static m27(username, link) =>
"${username} vás pozval na FluffyChat.\n1. Nainštalujte si FluffyChat: http://fluffy.chat\n2. Zaregistrujte sa alebo sa prihláste\n3. Otvorte odkaz na pozvánku: ${link}";
static m28(username, targetName) => "${username} pozvali ${targetName}";
@ -93,15 +94,15 @@ class MessageLookup extends MessageLookupByLibrary {
static m30(username, targetName) => "${username} vyhodili ${targetName}";
static m31(username, targetName) =>
"${username} vyhodil a zabanoval ${targetName}";
"${username} vyhodili a zabanovali ${targetName}";
static m32(localizedTimeShort) => "Naposledy aktívny: ${localizedTimeShort}";
static m32(localizedTimeShort) => "Naposledy prítomní: ${localizedTimeShort}";
static m33(count) => "Načítať ďalších ${count} účastníkov";
static m34(homeserver) => "Prihlásenie k ${homeserver}";
static m35(number) => "${number} vybraných";
static m35(number) => "${number} označených správ";
static m36(fileName) => "Prehrať (fileName}";
@ -142,7 +143,7 @@ class MessageLookup extends MessageLookupByLibrary {
static m53(unreadEvents) => "${unreadEvents} neprečítaných správ";
static m54(unreadEvents, unreadChats) =>
"${unreadEvents} neprečítaných správ v ${unreadChats}";
"${unreadEvents} neprečítaných správ v ${unreadChats} chatoch";
static m55(username, count) => "${username} a ${count} dalších píšu…";
@ -152,17 +153,17 @@ class MessageLookup extends MessageLookupByLibrary {
static m58(username) => "${username} opustili chat";
static m59(username, type) => "${username} poslal udalosť ${type}";
static m59(username, type) => "${username} poslali udalosť ${type}";
final messages = _notInlinedMessages(_notInlinedMessages);
static _notInlinedMessages(_) => <String, Function>{
"(Optional) Group name":
MessageLookupByLibrary.simpleMessage("(Voliteľné) Názov skupiny"),
"About": MessageLookupByLibrary.simpleMessage("O aplikacií"),
"About": MessageLookupByLibrary.simpleMessage("O aplikácii"),
"Accept": MessageLookupByLibrary.simpleMessage("Prijať"),
"Account": MessageLookupByLibrary.simpleMessage("Účet"),
"Account informations":
MessageLookupByLibrary.simpleMessage("Informácie o účtu"),
MessageLookupByLibrary.simpleMessage("Informácie o účte"),
"Add a group description":
MessageLookupByLibrary.simpleMessage("Pridať popis skupiny"),
"Admin": MessageLookupByLibrary.simpleMessage("Administrátor"),
@ -196,7 +197,7 @@ class MessageLookup extends MessageLookupByLibrary {
MessageLookupByLibrary.simpleMessage("Zmeniť pozadie"),
"Change your style":
MessageLookupByLibrary.simpleMessage("Zmena štýlu"),
"Changelog": MessageLookupByLibrary.simpleMessage("Changelog"),
"Changelog": MessageLookupByLibrary.simpleMessage("História zmien"),
"Chat": MessageLookupByLibrary.simpleMessage("Chat"),
"Chat details":
MessageLookupByLibrary.simpleMessage("Podrobnosti o chate"),
@ -227,7 +228,7 @@ class MessageLookup extends MessageLookupByLibrary {
"Create new group":
MessageLookupByLibrary.simpleMessage("Vytvoriť novú skupinu"),
"Currently active":
MessageLookupByLibrary.simpleMessage("Momentálne aktívny"),
MessageLookupByLibrary.simpleMessage("Momentálne prítomní"),
"Dark": MessageLookupByLibrary.simpleMessage("Tmavá"),
"Delete": MessageLookupByLibrary.simpleMessage("Odstrániť"),
"Delete message":
@ -257,7 +258,7 @@ class MessageLookup extends MessageLookupByLibrary {
MessageLookupByLibrary.simpleMessage("Šifrovanie nie je aktívne"),
"End to end encryption is currently in Beta! Use at your own risk!":
MessageLookupByLibrary.simpleMessage(
"Konečné šifrovanie je momentalné v Beta verzii! Používajte na vlastné riziko!"),
"Konečné šifrovanie je momentálne v Beta verzii! Používajte na vlastné riziko!"),
"End-to-end encryption settings": MessageLookupByLibrary.simpleMessage(
"Nastavenie koncového šifrovania"),
"Enter a group name":
@ -302,8 +303,8 @@ class MessageLookup extends MessageLookupByLibrary {
"Zdá sa, že nemáte žiadne služby Googlu v telefóne. To je dobré rozhodnutie pre vaše súkromie! Ak chcete dostávať push notifikácie vo FluffyChat, odporúčame používať microG: https://microg.org/"),
"Kick from chat":
MessageLookupByLibrary.simpleMessage("Vyhodiť z chatu"),
"Last seen IP":
MessageLookupByLibrary.simpleMessage("Naposledy videná IP adresa"),
"Last seen IP": MessageLookupByLibrary.simpleMessage(
"Naposledy zaznamenaná IP adresa"),
"Leave": MessageLookupByLibrary.simpleMessage("Opustiť"),
"Left the chat": MessageLookupByLibrary.simpleMessage("Opustili chat"),
"License": MessageLookupByLibrary.simpleMessage("Licencia"),
@ -332,7 +333,8 @@ class MessageLookup extends MessageLookupByLibrary {
MessageLookupByLibrary.simpleMessage("Nový súkromný chat"),
"No emotes found. 😕": MessageLookupByLibrary.simpleMessage(
"Nenašli sa žiadne emotikony. 😕"),
"No permission": MessageLookupByLibrary.simpleMessage("Bez povolenia"),
"No permission":
MessageLookupByLibrary.simpleMessage("Chýba povolenie"),
"No rooms found...": MessageLookupByLibrary.simpleMessage(
"Nenašli sa žiadne miestnosti..."),
"None": MessageLookupByLibrary.simpleMessage("Žiadne"),
@ -350,7 +352,7 @@ class MessageLookup extends MessageLookupByLibrary {
"Pick image": MessageLookupByLibrary.simpleMessage("Vybrať obrázok"),
"Please be aware that you need Pantalaimon to use end-to-end encryption for now.":
MessageLookupByLibrary.simpleMessage(
"Budte si vedomí, že na koncové šifrovanie zatiaľ potrebujete Pantalaimon."),
"Prosím berte na vedomie, že na koncové šifrovanie zatiaľ potrebujete Pantalaimon."),
"Please choose a username": MessageLookupByLibrary.simpleMessage(
"Vyberte si používateľské meno"),
"Please enter a matrix identifier":
@ -470,7 +472,7 @@ class MessageLookup extends MessageLookupByLibrary {
"Máte zablokovaný prístup k tomuto chatu"),
"You won\'t be able to disable the encryption anymore. Are you sure?":
MessageLookupByLibrary.simpleMessage(
"Šifrovanie už nebude možné vypnúť. Ste si tým istý?"),
"Šifrovanie už nebude možné vypnúť. Ste si tým istí?"),
"Your own username":
MessageLookupByLibrary.simpleMessage("Vaša vlastná prezývka"),
"acceptedTheInvitation": m0,