Merge branch 'soru/add-ukrainian' into 'master'
add ukrainian and update translation outputs See merge request ChristianPauly/fluffychat-flutter!117
This commit is contained in:
commit
cce0455423
|
@ -21,6 +21,7 @@ class AppLocalizationsDelegate extends LocalizationsDelegate<L10n> {
|
|||
'hr',
|
||||
'ja',
|
||||
'ru',
|
||||
'uk',
|
||||
].contains(locale.languageCode);
|
||||
}
|
||||
|
||||
|
|
|
@ -27,6 +27,7 @@ import 'messages_messages.dart' as messages_messages;
|
|||
import 'messages_pl.dart' as messages_pl;
|
||||
import 'messages_ru.dart' as messages_ru;
|
||||
import 'messages_sk.dart' as messages_sk;
|
||||
import 'messages_uk.dart' as messages_uk;
|
||||
|
||||
typedef Future<dynamic> LibraryLoader();
|
||||
Map<String, LibraryLoader> _deferredLibraries = {
|
||||
|
@ -42,6 +43,7 @@ Map<String, LibraryLoader> _deferredLibraries = {
|
|||
'pl': () => new Future.value(null),
|
||||
'ru': () => new Future.value(null),
|
||||
'sk': () => new Future.value(null),
|
||||
'uk': () => new Future.value(null),
|
||||
};
|
||||
|
||||
MessageLookupByLibrary _findExact(String localeName) {
|
||||
|
@ -70,6 +72,8 @@ MessageLookupByLibrary _findExact(String localeName) {
|
|||
return messages_ru.messages;
|
||||
case 'sk':
|
||||
return messages_sk.messages;
|
||||
case 'uk':
|
||||
return messages_uk.messages;
|
||||
default:
|
||||
return null;
|
||||
}
|
||||
|
|
|
@ -23,134 +23,137 @@ class MessageLookup extends MessageLookupByLibrary {
|
|||
|
||||
static m1(username) => "${username} aktivoval koncové šifrování";
|
||||
|
||||
static m2(username, targetName) => "${username} zabanoval ${targetName}";
|
||||
static m2(username) => "Přijmout žádost o ověření od (username)?";
|
||||
|
||||
static m3(homeserver) =>
|
||||
static m3(username, targetName) => "${username} zabanoval ${targetName}";
|
||||
|
||||
static m4(homeserver) =>
|
||||
"V základním nastavení budete připojeni do ${homeserver}";
|
||||
|
||||
static m4(username) => "${username} změnili svůj avatar";
|
||||
static m5(username) => "${username} změnili svůj avatar";
|
||||
|
||||
static m5(username, description) =>
|
||||
static m6(username, description) =>
|
||||
"${username} změnili popis diskuze na: „${description}“";
|
||||
|
||||
static m6(username, chatname) =>
|
||||
static m7(username, chatname) =>
|
||||
"${username} změnili jméno diskuze na: „${chatname}“";
|
||||
|
||||
static m7(username) => "${username} změnili nastavení oprávnění v diskuzi";
|
||||
static m8(username) => "${username} změnili nastavení oprávnění v diskuzi";
|
||||
|
||||
static m8(username, displayname) =>
|
||||
static m9(username, displayname) =>
|
||||
"${username} změnili přezdívku na: ${displayname}";
|
||||
|
||||
static m9(username) => "${username} změnili přístupová práva pro hosty";
|
||||
static m10(username) => "${username} změnili přístupová práva pro hosty";
|
||||
|
||||
static m10(username, rules) =>
|
||||
static m11(username, rules) =>
|
||||
"${username} změnili přístupová práva pro hosty na: ${rules}";
|
||||
|
||||
static m11(username) =>
|
||||
static m12(username) =>
|
||||
"${username} změnili nastavení viditelnosti historie diskuze";
|
||||
|
||||
static m12(username, rules) =>
|
||||
static m13(username, rules) =>
|
||||
"${username} změnili nastavení viditelnosti historie diskuze na: ${rules}";
|
||||
|
||||
static m13(username) => "${username} změnili nastavení pravidel připojení";
|
||||
static m14(username) => "${username} změnili nastavení pravidel připojení";
|
||||
|
||||
static m14(username, joinRules) =>
|
||||
static m15(username, joinRules) =>
|
||||
"${username} změnili nastavení pravidel připojení na: ${joinRules}";
|
||||
|
||||
static m15(username) => "${username} změnili nastavení profilového avataru";
|
||||
static m16(username) => "${username} změnili svůj avatar";
|
||||
|
||||
static m16(username) => "${username} změnili nastavení aliasů místnosti";
|
||||
static m17(username) => "${username} změnili nastavení aliasů místnosti";
|
||||
|
||||
static m17(username) => "${username} změnili odkaz k pozvání do místnosti";
|
||||
static m18(username) => "${username} změnili odkaz k pozvání do místnosti";
|
||||
|
||||
static m18(error) => "Nebylo možné dešifrovat zprávu: ${error}";
|
||||
static m19(error) => "Nebylo možné dešifrovat zprávu: ${error}";
|
||||
|
||||
static m19(count) => "${count} účastníků";
|
||||
static m20(count) => "${count} účastníků";
|
||||
|
||||
static m20(username) => "${username} založil diskuzi";
|
||||
static m21(username) => "${username} založil diskuzi";
|
||||
|
||||
static m21(date, timeOfDay) => "${date}, ${timeOfDay}";
|
||||
static m22(date, timeOfDay) => "${date}, ${timeOfDay}";
|
||||
|
||||
static m22(year, month, day) => "${day}. ${month}. ${year}";
|
||||
static m23(year, month, day) => "${day}. ${month}. ${year}";
|
||||
|
||||
static m23(month, day) => "${day}.${month}";
|
||||
static m24(month, day) => "${day}.${month}";
|
||||
|
||||
static m24(displayname) => "Skupina s ${displayname}";
|
||||
static m25(displayname) => "Skupina s ${displayname}";
|
||||
|
||||
static m25(username, targetName) =>
|
||||
static m26(username, targetName) =>
|
||||
"${username} vzal zpět pozvání pro ${targetName}";
|
||||
|
||||
static m26(groupName) => "Pozvat kontakt do ${groupName}";
|
||||
static m27(groupName) => "Pozvat kontakt do ${groupName}";
|
||||
|
||||
static m27(username, link) => "";
|
||||
static m28(username, link) =>
|
||||
"${username} vás pozval na FluffyChat.\n1. Nainstalujte si FluffyChat: http://fluffy.chat\n2. Zaregistrujte se anebo se přihlašte\n3. Otevřete odkaz na pozvánce: ${link}";
|
||||
|
||||
static m28(username, targetName) => "${username} pozvali ${targetName}";
|
||||
static m29(username, targetName) => "${username} pozvali ${targetName}";
|
||||
|
||||
static m29(username) => "${username} se připojili do diskuze";
|
||||
static m30(username) => "${username} se připojili do diskuze";
|
||||
|
||||
static m30(username, targetName) => "${username} vyhodil ${targetName}";
|
||||
static m31(username, targetName) => "${username} vyhodil ${targetName}";
|
||||
|
||||
static m31(username, targetName) =>
|
||||
static m32(username, targetName) =>
|
||||
"${username} vyhodil a zabanoval ${targetName}";
|
||||
|
||||
static m32(localizedTimeShort) => "Naposledy aktivní: ${localizedTimeShort}";
|
||||
static m33(localizedTimeShort) => "Naposledy aktivní: ${localizedTimeShort}";
|
||||
|
||||
static m33(count) => "Načíst dalších ${count} účastníků";
|
||||
static m34(count) => "Načíst dalších ${count} účastníků";
|
||||
|
||||
static m34(homeserver) => "Přihlášení k ${homeserver}";
|
||||
static m35(homeserver) => "Přihlášení k ${homeserver}";
|
||||
|
||||
static m35(number) => "${number} vybráno";
|
||||
static m36(number) => "${number} vybráno";
|
||||
|
||||
static m36(fileName) => "Přehrát (fileName}";
|
||||
static m37(fileName) => "Přehrát (fileName}";
|
||||
|
||||
static m37(username) => "${username} odstranili událost";
|
||||
static m38(username) => "${username} odstranili událost";
|
||||
|
||||
static m38(username) => "${username} odmítli pozvání";
|
||||
static m39(username) => "${username} odmítli pozvání";
|
||||
|
||||
static m39(username) => "Odstraněno ${username}";
|
||||
static m40(username) => "Odstraněno ${username}";
|
||||
|
||||
static m40(username) => "Viděno uživatelem ${username}";
|
||||
static m41(username) => "Viděno uživatelem ${username}";
|
||||
|
||||
static m41(username, count) =>
|
||||
static m42(username, count) =>
|
||||
"Viděno uživateli ${username} a ${count} dalšími";
|
||||
|
||||
static m42(username, username2) =>
|
||||
static m43(username, username2) =>
|
||||
"Viděno uživateli ${username} a ${username2}";
|
||||
|
||||
static m43(username) => "${username} poslali soubor";
|
||||
static m44(username) => "${username} poslali soubor";
|
||||
|
||||
static m44(username) => "${username} poslali obrázek";
|
||||
static m45(username) => "${username} poslali obrázek";
|
||||
|
||||
static m45(username) => "${username} poslali samolepku";
|
||||
static m46(username) => "${username} poslali samolepku";
|
||||
|
||||
static m46(username) => "${username} poslali video";
|
||||
static m47(username) => "${username} poslali video";
|
||||
|
||||
static m47(username) => "${username} poslali zvukovou nahrávku";
|
||||
static m48(username) => "${username} poslali zvukovou nahrávku";
|
||||
|
||||
static m48(username) => "${username} nasdíleli lokaci";
|
||||
static m49(username) => "${username} nasdíleli lokaci";
|
||||
|
||||
static m49(hours12, hours24, minutes, suffix) => "${hours24}:${minutes}";
|
||||
static m50(hours12, hours24, minutes, suffix) => "${hours24}:${minutes}";
|
||||
|
||||
static m50(username, targetName) => "";
|
||||
static m51(username, targetName) => "";
|
||||
|
||||
static m51(type) => "Neznámá událost „${type}“";
|
||||
static m52(type) => "Neznámá událost „${type}“";
|
||||
|
||||
static m52(unreadCount) => "${unreadCount} nepřečtených diskuzí";
|
||||
static m53(unreadCount) => "${unreadCount} nepřečtených diskuzí";
|
||||
|
||||
static m53(unreadEvents) => "${unreadEvents} nepřečtených zpráv";
|
||||
static m54(unreadEvents) => "${unreadEvents} nepřečtených zpráv";
|
||||
|
||||
static m54(unreadEvents, unreadChats) =>
|
||||
static m55(unreadEvents, unreadChats) =>
|
||||
"${unreadEvents} nepřečtených zpráv v ${unreadChats}";
|
||||
|
||||
static m55(username, count) => "${username} a ${count} dalších píší…";
|
||||
static m56(username, count) => "${username} a ${count} dalších píší…";
|
||||
|
||||
static m56(username, username2) => "${username} a ${username2} píší…";
|
||||
static m57(username, username2) => "${username} a ${username2} píší…";
|
||||
|
||||
static m57(username) => "${username} píše…";
|
||||
static m58(username) => "${username} píše…";
|
||||
|
||||
static m58(username) => "${username} opustili diskuzi";
|
||||
static m59(username) => "${username} opustili diskuzi";
|
||||
|
||||
static m59(username, type) => "${username} poslal událost ${type}";
|
||||
static m60(username, type) => "${username} poslal událost ${type}";
|
||||
|
||||
final messages = _notInlinedMessages(_notInlinedMessages);
|
||||
static _notInlinedMessages(_) => <String, Function>{
|
||||
|
@ -180,6 +183,8 @@ class MessageLookup extends MessageLookupByLibrary {
|
|||
"Ban from chat":
|
||||
MessageLookupByLibrary.simpleMessage("Zabanovat z diskuze"),
|
||||
"Banned": MessageLookupByLibrary.simpleMessage("Zabanován"),
|
||||
"Block Device":
|
||||
MessageLookupByLibrary.simpleMessage("Blokovat zařízení"),
|
||||
"Cancel": MessageLookupByLibrary.simpleMessage("Zrušit"),
|
||||
"Change the homeserver":
|
||||
MessageLookupByLibrary.simpleMessage("Změnit použitý server"),
|
||||
|
@ -244,6 +249,7 @@ class MessageLookup extends MessageLookupByLibrary {
|
|||
"Emote shortcode":
|
||||
MessageLookupByLibrary.simpleMessage("Označení emotikony"),
|
||||
"Empty chat": MessageLookupByLibrary.simpleMessage("Prázdná diskuze"),
|
||||
"Encryption": MessageLookupByLibrary.simpleMessage("Šifrování"),
|
||||
"Encryption algorithm":
|
||||
MessageLookupByLibrary.simpleMessage("Šifrovací algoritmus"),
|
||||
"Encryption is not enabled":
|
||||
|
@ -343,7 +349,7 @@ class MessageLookup extends MessageLookupByLibrary {
|
|||
"Password": MessageLookupByLibrary.simpleMessage("Heslo"),
|
||||
"Pick image": MessageLookupByLibrary.simpleMessage("Zvolit obrázek"),
|
||||
"Please be aware that you need Pantalaimon to use end-to-end encryption for now.":
|
||||
MessageLookupByLibrary.simpleMessage(""),
|
||||
MessageLookupByLibrary.simpleMessage("Vezmět na vědomí,"),
|
||||
"Please choose a username": MessageLookupByLibrary.simpleMessage(
|
||||
"Prosíme zvolte si uživatelské jméno"),
|
||||
"Please enter a matrix identifier":
|
||||
|
@ -454,72 +460,96 @@ class MessageLookup extends MessageLookupByLibrary {
|
|||
"acceptedTheInvitation": m0,
|
||||
"activatedEndToEndEncryption": m1,
|
||||
"alias": MessageLookupByLibrary.simpleMessage("alias"),
|
||||
"bannedUser": m2,
|
||||
"byDefaultYouWillBeConnectedTo": m3,
|
||||
"changedTheChatAvatar": m4,
|
||||
"changedTheChatDescriptionTo": m5,
|
||||
"changedTheChatNameTo": m6,
|
||||
"changedTheChatPermissions": m7,
|
||||
"changedTheDisplaynameTo": m8,
|
||||
"changedTheGuestAccessRules": m9,
|
||||
"changedTheGuestAccessRulesTo": m10,
|
||||
"changedTheHistoryVisibility": m11,
|
||||
"changedTheHistoryVisibilityTo": m12,
|
||||
"changedTheJoinRules": m13,
|
||||
"changedTheJoinRulesTo": m14,
|
||||
"changedTheProfileAvatar": m15,
|
||||
"changedTheRoomAliases": m16,
|
||||
"changedTheRoomInvitationLink": m17,
|
||||
"couldNotDecryptMessage": m18,
|
||||
"countParticipants": m19,
|
||||
"createdTheChat": m20,
|
||||
"dateAndTimeOfDay": m21,
|
||||
"dateWithYear": m22,
|
||||
"dateWithoutYear": m23,
|
||||
"askSSSSCache": MessageLookupByLibrary.simpleMessage(
|
||||
"Prosím zadajte vaší prístupovu frázI k \"bezpečému úložišti\" anebo \"klíč na obnovu\" pro uložení klíčů."),
|
||||
"askSSSSSign": MessageLookupByLibrary.simpleMessage(
|
||||
"Pro ověření této osoby, zadejte prosím přístupovou frází k “bezpečnému úložišti” anebo “klíč pro obnovu”."),
|
||||
"askSSSSVerify": MessageLookupByLibrary.simpleMessage(
|
||||
"Zadejte prosím vaší přístupovou frází k “bezpečnému úložišti” anebo “klíč pro obnovu” pro ověření vaší relace."),
|
||||
"askVerificationRequest": m2,
|
||||
"bannedUser": m3,
|
||||
"byDefaultYouWillBeConnectedTo": m4,
|
||||
"cachedKeys":
|
||||
MessageLookupByLibrary.simpleMessage("Klíče byly úspěšně uloženy!"),
|
||||
"changedTheChatAvatar": m5,
|
||||
"changedTheChatDescriptionTo": m6,
|
||||
"changedTheChatNameTo": m7,
|
||||
"changedTheChatPermissions": m8,
|
||||
"changedTheDisplaynameTo": m9,
|
||||
"changedTheGuestAccessRules": m10,
|
||||
"changedTheGuestAccessRulesTo": m11,
|
||||
"changedTheHistoryVisibility": m12,
|
||||
"changedTheHistoryVisibilityTo": m13,
|
||||
"changedTheJoinRules": m14,
|
||||
"changedTheJoinRulesTo": m15,
|
||||
"changedTheProfileAvatar": m16,
|
||||
"changedTheRoomAliases": m17,
|
||||
"changedTheRoomInvitationLink": m18,
|
||||
"compareEmojiMatch": MessageLookupByLibrary.simpleMessage(
|
||||
"Porovnejte a přesvědčete se, že následující emotikony se shodují na obou zařízeních:"),
|
||||
"compareNumbersMatch": MessageLookupByLibrary.simpleMessage(
|
||||
"Porovnejte a přesvědčete se, že následující čísla se shodují na obou zařízeních:"),
|
||||
"couldNotDecryptMessage": m19,
|
||||
"countParticipants": m20,
|
||||
"createdTheChat": m21,
|
||||
"crossSigningDisabled":
|
||||
MessageLookupByLibrary.simpleMessage("Vzájemné ověření je vypnuté"),
|
||||
"crossSigningEnabled":
|
||||
MessageLookupByLibrary.simpleMessage("Vzájemné ověření je zapnuté"),
|
||||
"dateAndTimeOfDay": m22,
|
||||
"dateWithYear": m23,
|
||||
"dateWithoutYear": m24,
|
||||
"emoteExists":
|
||||
MessageLookupByLibrary.simpleMessage("Emotikona již existuje"),
|
||||
"emoteInvalid": MessageLookupByLibrary.simpleMessage(
|
||||
"Nesprávné označení emotikony"),
|
||||
"emoteWarnNeedToPick": MessageLookupByLibrary.simpleMessage(
|
||||
"Musíte zvolit označení emotikony a obrázek"),
|
||||
"groupWith": m24,
|
||||
"hasWithdrawnTheInvitationFor": m25,
|
||||
"inviteContactToGroup": m26,
|
||||
"inviteText": m27,
|
||||
"invitedUser": m28,
|
||||
"groupWith": m25,
|
||||
"hasWithdrawnTheInvitationFor": m26,
|
||||
"incorrectPassphraseOrKey": MessageLookupByLibrary.simpleMessage(
|
||||
"Nesprávné přístupové heslo anebo klíč pro obnovu"),
|
||||
"inviteContactToGroup": m27,
|
||||
"inviteText": m28,
|
||||
"invitedUser": m29,
|
||||
"is typing...": MessageLookupByLibrary.simpleMessage("píše…"),
|
||||
"joinedTheChat": m29,
|
||||
"kicked": m30,
|
||||
"kickedAndBanned": m31,
|
||||
"lastActiveAgo": m32,
|
||||
"loadCountMoreParticipants": m33,
|
||||
"logInTo": m34,
|
||||
"numberSelected": m35,
|
||||
"isDeviceKeyCorrect": MessageLookupByLibrary.simpleMessage(
|
||||
"Je následjící kód zařízení správný?"),
|
||||
"joinedTheChat": m30,
|
||||
"keysCached": MessageLookupByLibrary.simpleMessage(
|
||||
"Klíče jsou uloženy v mezipaměti"),
|
||||
"keysMissing": MessageLookupByLibrary.simpleMessage("Chybí klíče"),
|
||||
"kicked": m31,
|
||||
"kickedAndBanned": m32,
|
||||
"lastActiveAgo": m33,
|
||||
"loadCountMoreParticipants": m34,
|
||||
"logInTo": m35,
|
||||
"numberSelected": m36,
|
||||
"ok": MessageLookupByLibrary.simpleMessage("ok"),
|
||||
"play": m36,
|
||||
"redactedAnEvent": m37,
|
||||
"rejectedTheInvitation": m38,
|
||||
"removedBy": m39,
|
||||
"seenByUser": m40,
|
||||
"seenByUserAndCountOthers": m41,
|
||||
"seenByUserAndUser": m42,
|
||||
"sentAFile": m43,
|
||||
"sentAPicture": m44,
|
||||
"sentASticker": m45,
|
||||
"sentAVideo": m46,
|
||||
"sentAnAudio": m47,
|
||||
"sharedTheLocation": m48,
|
||||
"timeOfDay": m49,
|
||||
"play": m37,
|
||||
"redactedAnEvent": m38,
|
||||
"rejectedTheInvitation": m39,
|
||||
"removedBy": m40,
|
||||
"seenByUser": m41,
|
||||
"seenByUserAndCountOthers": m42,
|
||||
"seenByUserAndUser": m43,
|
||||
"sentAFile": m44,
|
||||
"sentAPicture": m45,
|
||||
"sentASticker": m46,
|
||||
"sentAVideo": m47,
|
||||
"sentAnAudio": m48,
|
||||
"sharedTheLocation": m49,
|
||||
"timeOfDay": m50,
|
||||
"title": MessageLookupByLibrary.simpleMessage("FluffyChat"),
|
||||
"unbannedUser": m50,
|
||||
"unknownEvent": m51,
|
||||
"unreadChats": m52,
|
||||
"unreadMessages": m53,
|
||||
"unreadMessagesInChats": m54,
|
||||
"userAndOthersAreTyping": m55,
|
||||
"userAndUserAreTyping": m56,
|
||||
"userIsTyping": m57,
|
||||
"userLeftTheChat": m58,
|
||||
"userSentUnknownEvent": m59
|
||||
"unbannedUser": m51,
|
||||
"unknownEvent": m52,
|
||||
"unreadChats": m53,
|
||||
"unreadMessages": m54,
|
||||
"unreadMessagesInChats": m55,
|
||||
"userAndOthersAreTyping": m56,
|
||||
"userAndUserAreTyping": m57,
|
||||
"userIsTyping": m58,
|
||||
"userLeftTheChat": m59,
|
||||
"userSentUnknownEvent": m60
|
||||
};
|
||||
}
|
||||
|
|
|
@ -24,139 +24,139 @@ 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) => "Diese Bestätigungsanfrage von ${username} annehmen?";
|
||||
|
||||
static m2(username, targetName) => "${username} hat ${targetName} verbannt";
|
||||
static m3(username, targetName) => "${username} hat ${targetName} verbannt";
|
||||
|
||||
static m3(homeserver) => "Standardmäßig wirst Du mit ${homeserver} verbunden";
|
||||
static m4(homeserver) => "Standardmäßig wirst Du mit ${homeserver} verbunden";
|
||||
|
||||
static m4(username) => "${username} hat den Chat-Avatar geändert";
|
||||
static m5(username) => "${username} hat den Chat-Avatar geändert";
|
||||
|
||||
static m5(username, description) =>
|
||||
static m6(username, description) =>
|
||||
"${username} hat die Beschreibung vom Chat geändert zu: \'${description}\'";
|
||||
|
||||
static m6(username, chatname) =>
|
||||
static m7(username, chatname) =>
|
||||
"${username} hat den Chat-Namen geändert zu: \'${chatname}\'";
|
||||
|
||||
static m7(username) => "${username} hat die Berechtigungen vom Chat geändert";
|
||||
static m8(username) => "${username} hat die Berechtigungen vom Chat geändert";
|
||||
|
||||
static m8(username, displayname) =>
|
||||
static m9(username, displayname) =>
|
||||
"${username} hat den Nicknamen geändert zu: ${displayname}";
|
||||
|
||||
static m9(username) => "${username} hat Gast-Zugangsregeln geändert";
|
||||
static m10(username) => "${username} hat Gast-Zugangsregeln geändert";
|
||||
|
||||
static m10(username, rules) =>
|
||||
static m11(username, rules) =>
|
||||
"${username} hat Gast-Zugangsregeln geändert zu: ${rules}";
|
||||
|
||||
static m11(username) =>
|
||||
static m12(username) =>
|
||||
"${username} hat die Sichtbarkeit des Chat-Verlaufs geändert";
|
||||
|
||||
static m12(username, rules) =>
|
||||
static m13(username, rules) =>
|
||||
"${username} hat die Sichtbarkeit des Chat-Verlaufs geändert zu: ${rules}";
|
||||
|
||||
static m13(username) => "${username} hat die Zugangsregeln geändert";
|
||||
static m14(username) => "${username} hat die Zugangsregeln geändert";
|
||||
|
||||
static m14(username, joinRules) =>
|
||||
static m15(username, joinRules) =>
|
||||
"${username} hat die Zugangsregeln geändert zu: ${joinRules}";
|
||||
|
||||
static m15(username) => "${username} hat das Profilbild geändert";
|
||||
static m16(username) => "${username} hat das Profilbild geändert";
|
||||
|
||||
static m16(username) => "${username} hat die Raum-Aliase geändert";
|
||||
static m17(username) => "${username} hat die Raum-Aliase geändert";
|
||||
|
||||
static m17(username) => "${username} hat den Einladungslink geändert";
|
||||
static m18(username) => "${username} hat den Einladungslink geändert";
|
||||
|
||||
static m18(error) => "Nachricht konnte nicht entschlüsselt werden: ${error}";
|
||||
static m19(error) => "Nachricht konnte nicht entschlüsselt werden: ${error}";
|
||||
|
||||
static m19(count) => "${count} Teilnehmer*innen";
|
||||
static m20(count) => "${count} Teilnehmer*innen";
|
||||
|
||||
static m20(username) => "${username} hat den Chat erstellt";
|
||||
static m21(username) => "${username} hat den Chat erstellt";
|
||||
|
||||
static m21(date, timeOfDay) => "${date}, ${timeOfDay}";
|
||||
static m22(date, timeOfDay) => "${date}, ${timeOfDay}";
|
||||
|
||||
static m22(year, month, day) => "${day}. ${month}. ${year}";
|
||||
static m23(year, month, day) => "${day}. ${month}. ${year}";
|
||||
|
||||
static m23(month, day) => "${day}. ${month}";
|
||||
static m24(month, day) => "${day}. ${month}";
|
||||
|
||||
static m24(displayname) => "Gruppe mit ${displayname}";
|
||||
static m25(displayname) => "Gruppe mit ${displayname}";
|
||||
|
||||
static m25(username, targetName) =>
|
||||
static m26(username, targetName) =>
|
||||
"${username} hat die Einladung für ${targetName} zurückgezogen";
|
||||
|
||||
static m26(groupName) => "Kontakt in die Gruppe ${groupName} einladen";
|
||||
static m27(groupName) => "Kontakt in die Gruppe ${groupName} einladen";
|
||||
|
||||
static m27(username, link) =>
|
||||
static m28(username, link) =>
|
||||
"${username} hat Dich zu FluffyChat eingeladen. \n1. Installiere FluffyChat: http://fluffy.chat \n2. Melde Dich in der App an \n3. Öffne den Einladungslink: ${link}";
|
||||
|
||||
static m28(username, targetName) =>
|
||||
static m29(username, targetName) =>
|
||||
"${username} hat ${targetName} eingeladen";
|
||||
|
||||
static m29(username) => "${username} ist dem Chat beigetreten";
|
||||
|
||||
static m30(username, targetName) =>
|
||||
"${username} hat ${targetName} hinausgeworfen";
|
||||
static m30(username) => "${username} ist dem Chat beigetreten";
|
||||
|
||||
static m31(username, targetName) =>
|
||||
"${username} hat ${targetName} hinausgeworfen";
|
||||
|
||||
static m32(username, targetName) =>
|
||||
"${username} hat ${targetName} hinausgeworfen und verbannt";
|
||||
|
||||
static m32(localizedTimeShort) => "Zuletzt aktiv: ${localizedTimeShort}";
|
||||
static m33(localizedTimeShort) => "Zuletzt aktiv: ${localizedTimeShort}";
|
||||
|
||||
static m33(count) => "${count} weitere Teilnehmer*innen laden";
|
||||
static m34(count) => "${count} weitere Teilnehmer*innen laden";
|
||||
|
||||
static m34(homeserver) => "Bei ${homeserver} anmelden";
|
||||
static m35(homeserver) => "Bei ${homeserver} anmelden";
|
||||
|
||||
static m35(number) => "${number} ausgewählt";
|
||||
static m36(number) => "${number} ausgewählt";
|
||||
|
||||
static m36(fileName) => "${fileName} abspielen";
|
||||
static m37(fileName) => "${fileName} abspielen";
|
||||
|
||||
static m37(username) => "${username} hat ein Event enternt";
|
||||
static m38(username) => "${username} hat ein Event enternt";
|
||||
|
||||
static m38(username) => "${username} hat die Einladung abgelehnt";
|
||||
static m39(username) => "${username} hat die Einladung abgelehnt";
|
||||
|
||||
static m39(username) => "Entfernt von ${username}";
|
||||
static m40(username) => "Entfernt von ${username}";
|
||||
|
||||
static m40(username) => "Gelesen von ${username}";
|
||||
static m41(username) => "Gelesen von ${username}";
|
||||
|
||||
static m41(username, count) => "Gelesen von ${username} und ${count} anderen";
|
||||
static m42(username, count) => "Gelesen von ${username} und ${count} anderen";
|
||||
|
||||
static m42(username, username2) => "Gelesen von ${username} und ${username2}";
|
||||
static m43(username, username2) => "Gelesen von ${username} und ${username2}";
|
||||
|
||||
static m43(username) => "${username} hat eine Datei gesendet";
|
||||
static m44(username) => "${username} hat eine Datei gesendet";
|
||||
|
||||
static m44(username) => "${username} hat ein Bild gesendet";
|
||||
static m45(username) => "${username} hat ein Bild gesendet";
|
||||
|
||||
static m45(username) => "${username} hat einen Sticker gesendet";
|
||||
static m46(username) => "${username} hat einen Sticker gesendet";
|
||||
|
||||
static m46(username) => "${username} hat ein Video gesendet";
|
||||
static m47(username) => "${username} hat ein Video gesendet";
|
||||
|
||||
static m47(username) => "${username} hat eine Audio-Datei gesendet";
|
||||
static m48(username) => "${username} hat eine Audio-Datei gesendet";
|
||||
|
||||
static m48(username) => "${username} hat den Standort geteilt";
|
||||
static m49(username) => "${username} hat den Standort geteilt";
|
||||
|
||||
static m49(hours12, hours24, minutes, suffix) => "${hours24}:${minutes}";
|
||||
static m50(hours12, hours24, minutes, suffix) => "${hours24}:${minutes}";
|
||||
|
||||
static m50(username, targetName) =>
|
||||
static m51(username, targetName) =>
|
||||
"${username} hat die Verbannung von ${targetName} aufgehoben";
|
||||
|
||||
static m51(type) => "Unbekanntes Ereignis \'${type}\'";
|
||||
static m52(type) => "Unbekanntes Ereignis \'${type}\'";
|
||||
|
||||
static m52(unreadCount) => "${unreadCount} ungelesene Unterhaltungen";
|
||||
static m53(unreadCount) => "${unreadCount} ungelesene Unterhaltungen";
|
||||
|
||||
static m53(unreadEvents) => "${unreadEvents} ungelesene Nachrichten";
|
||||
static m54(unreadEvents) => "${unreadEvents} ungelesene Nachrichten";
|
||||
|
||||
static m54(unreadEvents, unreadChats) =>
|
||||
static m55(unreadEvents, unreadChats) =>
|
||||
"${unreadEvents} ungelesene Nachrichten in ${unreadChats} Chats";
|
||||
|
||||
static m55(username, count) =>
|
||||
static m56(username, count) =>
|
||||
"${username} und ${count} andere schreiben ...";
|
||||
|
||||
static m56(username, username2) =>
|
||||
static m57(username, username2) =>
|
||||
"${username} und ${username2} schreiben ...";
|
||||
|
||||
static m57(username) => "${username} schreibt ...";
|
||||
static m58(username) => "${username} schreibt ...";
|
||||
|
||||
static m58(username) => "${username} hat den Chat verlassen";
|
||||
static m59(username) => "${username} hat den Chat verlassen";
|
||||
|
||||
static m59(username, type) => "${username} hat ${type} Event gesendet";
|
||||
static m60(username, type) => "${username} hat ${type} Event gesendet";
|
||||
|
||||
final messages = _notInlinedMessages(_notInlinedMessages);
|
||||
static _notInlinedMessages(_) => <String, Function>{
|
||||
|
@ -489,71 +489,71 @@ class MessageLookup extends MessageLookupByLibrary {
|
|||
"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,
|
||||
"askVerificationRequest": m2,
|
||||
"bannedUser": m3,
|
||||
"byDefaultYouWillBeConnectedTo": m4,
|
||||
"cachedKeys":
|
||||
MessageLookupByLibrary.simpleMessage("Keys erfolgreich gecached!"),
|
||||
"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,
|
||||
"changedTheChatAvatar": m5,
|
||||
"changedTheChatDescriptionTo": m6,
|
||||
"changedTheChatNameTo": m7,
|
||||
"changedTheChatPermissions": m8,
|
||||
"changedTheDisplaynameTo": m9,
|
||||
"changedTheGuestAccessRules": m10,
|
||||
"changedTheGuestAccessRulesTo": m11,
|
||||
"changedTheHistoryVisibility": m12,
|
||||
"changedTheHistoryVisibilityTo": m13,
|
||||
"changedTheJoinRules": m14,
|
||||
"changedTheJoinRulesTo": m15,
|
||||
"changedTheProfileAvatar": m16,
|
||||
"changedTheRoomAliases": m17,
|
||||
"changedTheRoomInvitationLink": m18,
|
||||
"compareEmojiMatch": MessageLookupByLibrary.simpleMessage(
|
||||
"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,
|
||||
"couldNotDecryptMessage": m19,
|
||||
"countParticipants": m20,
|
||||
"createdTheChat": m21,
|
||||
"crossSigningDisabled": MessageLookupByLibrary.simpleMessage(
|
||||
"Cross-Signing ist deaktiviert"),
|
||||
"crossSigningEnabled":
|
||||
MessageLookupByLibrary.simpleMessage("Cross-Signing ist aktiviert"),
|
||||
"dateAndTimeOfDay": m21,
|
||||
"dateWithYear": m22,
|
||||
"dateWithoutYear": m23,
|
||||
"dateAndTimeOfDay": m22,
|
||||
"dateWithYear": m23,
|
||||
"dateWithoutYear": m24,
|
||||
"emoteExists":
|
||||
MessageLookupByLibrary.simpleMessage("Emote existiert bereits!"),
|
||||
"emoteInvalid":
|
||||
MessageLookupByLibrary.simpleMessage("Ungültiges Emote-kürzel!"),
|
||||
"emoteWarnNeedToPick": MessageLookupByLibrary.simpleMessage(
|
||||
"Wähle ein Emote-kürzel und ein Bild!"),
|
||||
"groupWith": m24,
|
||||
"hasWithdrawnTheInvitationFor": m25,
|
||||
"groupWith": m25,
|
||||
"hasWithdrawnTheInvitationFor": m26,
|
||||
"incorrectPassphraseOrKey": MessageLookupByLibrary.simpleMessage(
|
||||
"Falsches Passwort oder Wiederherstellungsschlüssel"),
|
||||
"inviteContactToGroup": m26,
|
||||
"inviteText": m27,
|
||||
"invitedUser": m28,
|
||||
"inviteContactToGroup": m27,
|
||||
"inviteText": m28,
|
||||
"invitedUser": m29,
|
||||
"is typing...": MessageLookupByLibrary.simpleMessage("schreibt..."),
|
||||
"isDeviceKeyCorrect": MessageLookupByLibrary.simpleMessage(
|
||||
"Ist der folgende Geräteschlüssel korrekt?"),
|
||||
"joinedTheChat": m29,
|
||||
"joinedTheChat": m30,
|
||||
"keysCached":
|
||||
MessageLookupByLibrary.simpleMessage("Keys sind gecached"),
|
||||
"keysMissing": MessageLookupByLibrary.simpleMessage("Keys fehlen"),
|
||||
"kicked": m30,
|
||||
"kickedAndBanned": m31,
|
||||
"lastActiveAgo": m32,
|
||||
"loadCountMoreParticipants": m33,
|
||||
"logInTo": m34,
|
||||
"kicked": m31,
|
||||
"kickedAndBanned": m32,
|
||||
"lastActiveAgo": m33,
|
||||
"loadCountMoreParticipants": m34,
|
||||
"logInTo": m35,
|
||||
"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,
|
||||
"numberSelected": m36,
|
||||
"ok": MessageLookupByLibrary.simpleMessage("ok"),
|
||||
"onlineKeyBackupDisabled": MessageLookupByLibrary.simpleMessage(
|
||||
"Online Key Backup ist deaktiviert"),
|
||||
|
@ -561,35 +561,35 @@ class MessageLookup extends MessageLookupByLibrary {
|
|||
"Online Key Backup ist aktiviert"),
|
||||
"passphraseOrKey": MessageLookupByLibrary.simpleMessage(
|
||||
"Passwort oder Wiederherstellungsschlüssel"),
|
||||
"play": m36,
|
||||
"redactedAnEvent": m37,
|
||||
"rejectedTheInvitation": m38,
|
||||
"removedBy": m39,
|
||||
"seenByUser": m40,
|
||||
"seenByUserAndCountOthers": m41,
|
||||
"seenByUserAndUser": m42,
|
||||
"sentAFile": m43,
|
||||
"sentAPicture": m44,
|
||||
"sentASticker": m45,
|
||||
"sentAVideo": m46,
|
||||
"sentAnAudio": m47,
|
||||
"play": m37,
|
||||
"redactedAnEvent": m38,
|
||||
"rejectedTheInvitation": m39,
|
||||
"removedBy": m40,
|
||||
"seenByUser": m41,
|
||||
"seenByUserAndCountOthers": m42,
|
||||
"seenByUserAndUser": m43,
|
||||
"sentAFile": m44,
|
||||
"sentAPicture": m45,
|
||||
"sentASticker": m46,
|
||||
"sentAVideo": m47,
|
||||
"sentAnAudio": m48,
|
||||
"sessionVerified":
|
||||
MessageLookupByLibrary.simpleMessage("Sitzung ist verifiziert"),
|
||||
"sharedTheLocation": m48,
|
||||
"timeOfDay": m49,
|
||||
"sharedTheLocation": m49,
|
||||
"timeOfDay": m50,
|
||||
"title": MessageLookupByLibrary.simpleMessage("FluffyChat"),
|
||||
"unbannedUser": m50,
|
||||
"unknownEvent": m51,
|
||||
"unbannedUser": m51,
|
||||
"unknownEvent": m52,
|
||||
"unknownSessionVerify": MessageLookupByLibrary.simpleMessage(
|
||||
"Unbekannte Sitzung, bitte verifiziere diese"),
|
||||
"unreadChats": m52,
|
||||
"unreadMessages": m53,
|
||||
"unreadMessagesInChats": m54,
|
||||
"userAndOthersAreTyping": m55,
|
||||
"userAndUserAreTyping": m56,
|
||||
"userIsTyping": m57,
|
||||
"userLeftTheChat": m58,
|
||||
"userSentUnknownEvent": m59,
|
||||
"unreadChats": m53,
|
||||
"unreadMessages": m54,
|
||||
"unreadMessagesInChats": m55,
|
||||
"userAndOthersAreTyping": m56,
|
||||
"userAndUserAreTyping": m57,
|
||||
"userIsTyping": m58,
|
||||
"userLeftTheChat": m59,
|
||||
"userSentUnknownEvent": m60,
|
||||
"verifiedSession": MessageLookupByLibrary.simpleMessage(
|
||||
"Sitzung erfolgreich verifiziert!"),
|
||||
"verifyManual":
|
||||
|
|
|
@ -23,138 +23,138 @@ class MessageLookup extends MessageLookupByLibrary {
|
|||
|
||||
static m1(username) => "${username} activó el cifrado de extremo a extremo";
|
||||
|
||||
static m60(username) =>
|
||||
static m2(username) =>
|
||||
"¿Aceptar esta solicitud de verificación de ${username}?";
|
||||
|
||||
static m2(username, targetName) => "${username} vetó a ${targetName}";
|
||||
static m3(username, targetName) => "${username} vetó a ${targetName}";
|
||||
|
||||
static m3(homeserver) =>
|
||||
static m4(homeserver) =>
|
||||
"De forma predeterminada estará conectado a ${homeserver}";
|
||||
|
||||
static m4(username) => "${username} cambió el icono del chat";
|
||||
static m5(username) => "${username} cambió el icono del chat";
|
||||
|
||||
static m5(username, description) =>
|
||||
static m6(username, description) =>
|
||||
"${username} cambió la descripción del chat a: \'${description}\'";
|
||||
|
||||
static m6(username, chatname) =>
|
||||
static m7(username, chatname) =>
|
||||
"${username} cambió el nombre del chat a: \'${chatname}\'";
|
||||
|
||||
static m7(username) => "${username} cambió los permisos del chat";
|
||||
static m8(username) => "${username} cambió los permisos del chat";
|
||||
|
||||
static m8(username, displayname) =>
|
||||
static m9(username, displayname) =>
|
||||
"${username} cambió su nombre visible a: ${displayname}";
|
||||
|
||||
static m9(username) =>
|
||||
static m10(username) =>
|
||||
"${username} cambió las reglas de acceso de visitantes";
|
||||
|
||||
static m10(username, rules) =>
|
||||
static m11(username, rules) =>
|
||||
"${username} cambió las reglas de acceso de visitantes a: ${rules}";
|
||||
|
||||
static m11(username) => "${username} cambió la visibilidad del historial";
|
||||
static m12(username) => "${username} cambió la visibilidad del historial";
|
||||
|
||||
static m12(username, rules) =>
|
||||
static m13(username, rules) =>
|
||||
"${username} cambió la visibilidad del historial a: ${rules}";
|
||||
|
||||
static m13(username) => "${username} cambió las reglas de ingreso";
|
||||
static m14(username) => "${username} cambió las reglas de ingreso";
|
||||
|
||||
static m14(username, joinRules) =>
|
||||
static m15(username, joinRules) =>
|
||||
"${username} cambió las reglas de ingreso a ${joinRules}";
|
||||
|
||||
static m15(username) => "${username} cambió su imagen de perfil";
|
||||
static m16(username) => "${username} cambió su imagen de perfil";
|
||||
|
||||
static m16(username) => "${username} cambió el alias de la sala";
|
||||
static m17(username) => "${username} cambió el alias de la sala";
|
||||
|
||||
static m17(username) => "${username} cambió el enlace de invitación";
|
||||
static m18(username) => "${username} cambió el enlace de invitación";
|
||||
|
||||
static m18(error) => "No se pudo descifrar el mensaje: ${error}";
|
||||
static m19(error) => "No se pudo descifrar el mensaje: ${error}";
|
||||
|
||||
static m19(count) => "${count} participantes";
|
||||
static m20(count) => "${count} participantes";
|
||||
|
||||
static m20(username) => "${username} creó el chat";
|
||||
static m21(username) => "${username} creó el chat";
|
||||
|
||||
static m21(date, timeOfDay) => "${date}, ${timeOfDay}";
|
||||
static m22(date, timeOfDay) => "${date}, ${timeOfDay}";
|
||||
|
||||
static m22(year, month, day) => "${day}/${month}/${year}";
|
||||
static m23(year, month, day) => "${day}/${month}/${year}";
|
||||
|
||||
static m23(month, day) => "${day}/${month}";
|
||||
static m24(month, day) => "${day}/${month}";
|
||||
|
||||
static m24(displayname) => "Grupo con ${displayname}";
|
||||
static m25(displayname) => "Grupo con ${displayname}";
|
||||
|
||||
static m25(username, targetName) =>
|
||||
static m26(username, targetName) =>
|
||||
"${username} ha retirado la invitación para ${targetName}";
|
||||
|
||||
static m26(groupName) => "Invitar contacto a ${groupName}";
|
||||
static m27(groupName) => "Invitar contacto a ${groupName}";
|
||||
|
||||
static m27(username, link) =>
|
||||
static m28(username, link) =>
|
||||
"${username} te invitó a FluffyChat.\n1. Instale FluffyChat: http://fluffy.chat\n2. Regístrate o inicia sesión \n3. Abra el enlace de invitación: ${link}";
|
||||
|
||||
static m28(username, targetName) => "${username} invitó a ${targetName}";
|
||||
static m29(username, targetName) => "${username} invitó a ${targetName}";
|
||||
|
||||
static m29(username) => "${username} se unió al chat";
|
||||
static m30(username) => "${username} se unió al chat";
|
||||
|
||||
static m30(username, targetName) => "${username} echó a ${targetName}";
|
||||
static m31(username, targetName) => "${username} echó a ${targetName}";
|
||||
|
||||
static m31(username, targetName) => "${username} echó y vetó a ${targetName}";
|
||||
static m32(username, targetName) => "${username} echó y vetó a ${targetName}";
|
||||
|
||||
static m32(localizedTimeShort) => "Última vez activo: ${localizedTimeShort}";
|
||||
static m33(localizedTimeShort) => "Última vez activo: ${localizedTimeShort}";
|
||||
|
||||
static m33(count) => "Mostrar ${count} participantes más";
|
||||
static m34(count) => "Mostrar ${count} participantes más";
|
||||
|
||||
static m34(homeserver) => "Iniciar sesión en ${homeserver}";
|
||||
static m35(homeserver) => "Iniciar sesión en ${homeserver}";
|
||||
|
||||
static m35(number) => "${number} seleccionado(s)";
|
||||
static m36(number) => "${number} seleccionado(s)";
|
||||
|
||||
static m36(fileName) => "Reproducir ${fileName}";
|
||||
static m37(fileName) => "Reproducir ${fileName}";
|
||||
|
||||
static m37(username) => "${username} redactó un evento";
|
||||
static m38(username) => "${username} redactó un evento";
|
||||
|
||||
static m38(username) => "${username} rechazó la invitación";
|
||||
static m39(username) => "${username} rechazó la invitación";
|
||||
|
||||
static m39(username) => "Eliminado por ${username}";
|
||||
static m40(username) => "Eliminado por ${username}";
|
||||
|
||||
static m40(username) => "Visto por ${username}";
|
||||
static m41(username) => "Visto por ${username}";
|
||||
|
||||
static m41(username, count) => "Visto por ${username} y ${count} más";
|
||||
static m42(username, count) => "Visto por ${username} y ${count} más";
|
||||
|
||||
static m42(username, username2) => "Visto por ${username} y ${username2}";
|
||||
static m43(username, username2) => "Visto por ${username} y ${username2}";
|
||||
|
||||
static m43(username) => "${username} envió un archivo";
|
||||
static m44(username) => "${username} envió un archivo";
|
||||
|
||||
static m44(username) => "${username} envió una imagen";
|
||||
static m45(username) => "${username} envió una imagen";
|
||||
|
||||
static m45(username) => "${username} envió un sticker";
|
||||
static m46(username) => "${username} envió un sticker";
|
||||
|
||||
static m46(username) => "${username} envió un video";
|
||||
static m47(username) => "${username} envió un video";
|
||||
|
||||
static m47(username) => "${username} envió un audio";
|
||||
static m48(username) => "${username} envió un audio";
|
||||
|
||||
static m48(username) => "${username} compartió la ubicación";
|
||||
static m49(username) => "${username} compartió la ubicación";
|
||||
|
||||
static m49(hours12, hours24, minutes, suffix) => "${hours24}:${minutes}";
|
||||
static m50(hours12, hours24, minutes, suffix) => "${hours24}:${minutes}";
|
||||
|
||||
static m50(username, targetName) =>
|
||||
static m51(username, targetName) =>
|
||||
"${username} admitió a ${targetName} nuevamente";
|
||||
|
||||
static m51(type) => "Evento desconocido \'${type}\'";
|
||||
static m52(type) => "Evento desconocido \'${type}\'";
|
||||
|
||||
static m52(unreadCount) => "${unreadCount} chats no leídos";
|
||||
static m53(unreadCount) => "${unreadCount} chats no leídos";
|
||||
|
||||
static m53(unreadEvents) => "${unreadEvents} mensajes no leídos";
|
||||
static m54(unreadEvents) => "${unreadEvents} mensajes no leídos";
|
||||
|
||||
static m54(unreadEvents, unreadChats) =>
|
||||
static m55(unreadEvents, unreadChats) =>
|
||||
"${unreadEvents} mensajes no leídos en ${unreadChats} chats";
|
||||
|
||||
static m55(username, count) =>
|
||||
static m56(username, count) =>
|
||||
"${username} y ${count} más están escribiendo...";
|
||||
|
||||
static m56(username, username2) =>
|
||||
static m57(username, username2) =>
|
||||
"${username} y ${username2} están escribiendo...";
|
||||
|
||||
static m57(username) => "${username} está escribiendo...";
|
||||
static m58(username) => "${username} está escribiendo...";
|
||||
|
||||
static m58(username) => "${username} abandonó el chat";
|
||||
static m59(username) => "${username} abandonó el chat";
|
||||
|
||||
static m59(username, type) => "${username} envió un evento ${type}";
|
||||
static m60(username, type) => "${username} envió un evento ${type}";
|
||||
|
||||
final messages = _notInlinedMessages(_notInlinedMessages);
|
||||
static _notInlinedMessages(_) => <String, Function>{
|
||||
|
@ -486,73 +486,73 @@ class MessageLookup extends MessageLookupByLibrary {
|
|||
"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,
|
||||
"bannedUser": m2,
|
||||
"byDefaultYouWillBeConnectedTo": m3,
|
||||
"askVerificationRequest": m2,
|
||||
"bannedUser": m3,
|
||||
"byDefaultYouWillBeConnectedTo": m4,
|
||||
"cachedKeys": MessageLookupByLibrary.simpleMessage(
|
||||
"¡Las claves se han almacenado exitosamente!"),
|
||||
"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,
|
||||
"changedTheChatAvatar": m5,
|
||||
"changedTheChatDescriptionTo": m6,
|
||||
"changedTheChatNameTo": m7,
|
||||
"changedTheChatPermissions": m8,
|
||||
"changedTheDisplaynameTo": m9,
|
||||
"changedTheGuestAccessRules": m10,
|
||||
"changedTheGuestAccessRulesTo": m11,
|
||||
"changedTheHistoryVisibility": m12,
|
||||
"changedTheHistoryVisibilityTo": m13,
|
||||
"changedTheJoinRules": m14,
|
||||
"changedTheJoinRulesTo": m15,
|
||||
"changedTheProfileAvatar": m16,
|
||||
"changedTheRoomAliases": m17,
|
||||
"changedTheRoomInvitationLink": m18,
|
||||
"compareEmojiMatch": MessageLookupByLibrary.simpleMessage(
|
||||
"Compare y asegúrese de que los siguientes emoji coincidan con los del otro dispositivo:"),
|
||||
"compareNumbersMatch": MessageLookupByLibrary.simpleMessage(
|
||||
"Compare y asegúrese de que los siguientes números coincidan con los del otro dispositivo:"),
|
||||
"couldNotDecryptMessage": m18,
|
||||
"countParticipants": m19,
|
||||
"createdTheChat": m20,
|
||||
"couldNotDecryptMessage": m19,
|
||||
"countParticipants": m20,
|
||||
"createdTheChat": m21,
|
||||
"crossSigningDisabled": MessageLookupByLibrary.simpleMessage(
|
||||
"La confirmación cruzada está deshabilitada"),
|
||||
"crossSigningEnabled": MessageLookupByLibrary.simpleMessage(
|
||||
"La confirmación cruzada está habilitada"),
|
||||
"dateAndTimeOfDay": m21,
|
||||
"dateWithYear": m22,
|
||||
"dateWithoutYear": m23,
|
||||
"dateAndTimeOfDay": m22,
|
||||
"dateWithYear": m23,
|
||||
"dateWithoutYear": m24,
|
||||
"emoteExists":
|
||||
MessageLookupByLibrary.simpleMessage("¡El emote ya existe!"),
|
||||
"emoteInvalid": MessageLookupByLibrary.simpleMessage(
|
||||
"¡El atajo del emote es inválido!"),
|
||||
"emoteWarnNeedToPick": MessageLookupByLibrary.simpleMessage(
|
||||
"¡Debes elegir un atajo de emote y una imagen!"),
|
||||
"groupWith": m24,
|
||||
"hasWithdrawnTheInvitationFor": m25,
|
||||
"groupWith": m25,
|
||||
"hasWithdrawnTheInvitationFor": m26,
|
||||
"incorrectPassphraseOrKey": MessageLookupByLibrary.simpleMessage(
|
||||
"Frase de contraseña o clave de recuperación incorrecta"),
|
||||
"inviteContactToGroup": m26,
|
||||
"inviteText": m27,
|
||||
"invitedUser": m28,
|
||||
"inviteContactToGroup": m27,
|
||||
"inviteText": m28,
|
||||
"invitedUser": m29,
|
||||
"is typing...":
|
||||
MessageLookupByLibrary.simpleMessage("está escribiendo..."),
|
||||
"isDeviceKeyCorrect": MessageLookupByLibrary.simpleMessage(
|
||||
"¿Es correcta la siguiente clave de dispositivo?"),
|
||||
"joinedTheChat": m29,
|
||||
"joinedTheChat": m30,
|
||||
"keysCached":
|
||||
MessageLookupByLibrary.simpleMessage("Las claves están en caché"),
|
||||
"keysMissing":
|
||||
MessageLookupByLibrary.simpleMessage("Faltan las claves"),
|
||||
"kicked": m30,
|
||||
"kickedAndBanned": m31,
|
||||
"lastActiveAgo": m32,
|
||||
"loadCountMoreParticipants": m33,
|
||||
"logInTo": m34,
|
||||
"kicked": m31,
|
||||
"kickedAndBanned": m32,
|
||||
"lastActiveAgo": m33,
|
||||
"loadCountMoreParticipants": m34,
|
||||
"logInTo": m35,
|
||||
"newVerificationRequest": MessageLookupByLibrary.simpleMessage(
|
||||
"¡Nueva solicitud de verificación!"),
|
||||
"noCrossSignBootstrap": MessageLookupByLibrary.simpleMessage(
|
||||
"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 Element."),
|
||||
"numberSelected": m35,
|
||||
"numberSelected": m36,
|
||||
"ok": MessageLookupByLibrary.simpleMessage("ok"),
|
||||
"onlineKeyBackupDisabled": MessageLookupByLibrary.simpleMessage(
|
||||
"La copia de seguridad de la clave en línea está deshabilitada"),
|
||||
|
@ -560,35 +560,35 @@ class MessageLookup extends MessageLookupByLibrary {
|
|||
"La copia de seguridad de la clave en línea está habilitada"),
|
||||
"passphraseOrKey": MessageLookupByLibrary.simpleMessage(
|
||||
"contraseña o clave 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,
|
||||
"play": m37,
|
||||
"redactedAnEvent": m38,
|
||||
"rejectedTheInvitation": m39,
|
||||
"removedBy": m40,
|
||||
"seenByUser": m41,
|
||||
"seenByUserAndCountOthers": m42,
|
||||
"seenByUserAndUser": m43,
|
||||
"sentAFile": m44,
|
||||
"sentAPicture": m45,
|
||||
"sentASticker": m46,
|
||||
"sentAVideo": m47,
|
||||
"sentAnAudio": m48,
|
||||
"sessionVerified":
|
||||
MessageLookupByLibrary.simpleMessage("La sesión está verificada"),
|
||||
"sharedTheLocation": m48,
|
||||
"timeOfDay": m49,
|
||||
"sharedTheLocation": m49,
|
||||
"timeOfDay": m50,
|
||||
"title": MessageLookupByLibrary.simpleMessage("FluffyChat"),
|
||||
"unbannedUser": m50,
|
||||
"unknownEvent": m51,
|
||||
"unbannedUser": m51,
|
||||
"unknownEvent": m52,
|
||||
"unknownSessionVerify": MessageLookupByLibrary.simpleMessage(
|
||||
"Sesión desconocida, por favor verifíquela"),
|
||||
"unreadChats": m52,
|
||||
"unreadMessages": m53,
|
||||
"unreadMessagesInChats": m54,
|
||||
"userAndOthersAreTyping": m55,
|
||||
"userAndUserAreTyping": m56,
|
||||
"userIsTyping": m57,
|
||||
"userLeftTheChat": m58,
|
||||
"userSentUnknownEvent": m59,
|
||||
"unreadChats": m53,
|
||||
"unreadMessages": m54,
|
||||
"unreadMessagesInChats": m55,
|
||||
"userAndOthersAreTyping": m56,
|
||||
"userAndUserAreTyping": m57,
|
||||
"userIsTyping": m58,
|
||||
"userLeftTheChat": m59,
|
||||
"userSentUnknownEvent": m60,
|
||||
"verifiedSession": MessageLookupByLibrary.simpleMessage(
|
||||
"¡Sesión verificada exitosamente!"),
|
||||
"verifyManual":
|
||||
|
|
|
@ -23,141 +23,141 @@ class MessageLookup extends MessageLookupByLibrary {
|
|||
|
||||
static m1(username) => "${username} a activé le chiffrement de bout en bout";
|
||||
|
||||
static m60(username) =>
|
||||
static m2(username) =>
|
||||
"Accepter cette demande de vérification de ${username} ?";
|
||||
|
||||
static m2(username, targetName) => "${username} a banni ${targetName}";
|
||||
static m3(username, targetName) => "${username} a banni ${targetName}";
|
||||
|
||||
static m3(homeserver) => "Par défaut, vous serez connecté à ${homeserver}";
|
||||
static m4(homeserver) => "Par défaut, vous serez connecté à ${homeserver}";
|
||||
|
||||
static m4(username) => "${username} a changé l\'image de la discussion";
|
||||
static m5(username) => "${username} a changé l\'image de la discussion";
|
||||
|
||||
static m5(username, description) =>
|
||||
static m6(username, description) =>
|
||||
"${username} a changé la description de la discussion en : \'${description}\'";
|
||||
|
||||
static m6(username, chatname) =>
|
||||
static m7(username, chatname) =>
|
||||
"${username} a renommé la discussion en : \'${chatname}\'";
|
||||
|
||||
static m7(username) =>
|
||||
static m8(username) =>
|
||||
"${username} a changé les permissions de la discussion";
|
||||
|
||||
static m8(username, displayname) =>
|
||||
static m9(username, displayname) =>
|
||||
"${username} s\'est renommé en : ${displayname}";
|
||||
|
||||
static m9(username) =>
|
||||
static m10(username) =>
|
||||
"${username} a changé les règles d\'accès à la discussion pour les invités";
|
||||
|
||||
static m10(username, rules) =>
|
||||
static m11(username, rules) =>
|
||||
"${username} a changé les règles d\'accès à la discussion pour les invités en : ${rules}";
|
||||
|
||||
static m11(username) =>
|
||||
static m12(username) =>
|
||||
"${username} a changé la visibilité de l\'historique de la discussion";
|
||||
|
||||
static m12(username, rules) =>
|
||||
static m13(username, rules) =>
|
||||
"${username} a changé la visibilité de l\'historique de la discussion en : ${rules}";
|
||||
|
||||
static m13(username) =>
|
||||
static m14(username) =>
|
||||
"${username} a changé les règles d\'accès à la discussion";
|
||||
|
||||
static m14(username, joinRules) =>
|
||||
static m15(username, joinRules) =>
|
||||
"${username} a changé les règles d\'accès à la discussion en : ${joinRules}";
|
||||
|
||||
static m15(username) => "${username} a changé son image de profil";
|
||||
static m16(username) => "${username} a changé son image de profil";
|
||||
|
||||
static m16(username) => "${username} a changé les adresses du salon";
|
||||
static m17(username) => "${username} a changé les adresses du salon";
|
||||
|
||||
static m17(username) => "${username} a changé le lien d\'invitation";
|
||||
static m18(username) => "${username} a changé le lien d\'invitation";
|
||||
|
||||
static m18(error) => "Impossible de déchiffrer le message : ${error}";
|
||||
static m19(error) => "Impossible de déchiffrer le message : ${error}";
|
||||
|
||||
static m19(count) => "${count} participant(s)";
|
||||
static m20(count) => "${count} participant(s)";
|
||||
|
||||
static m20(username) => "${username} a créé la discussion";
|
||||
static m21(username) => "${username} a créé la discussion";
|
||||
|
||||
static m21(date, timeOfDay) => "${date}, ${timeOfDay}";
|
||||
static m22(date, timeOfDay) => "${date}, ${timeOfDay}";
|
||||
|
||||
static m22(year, month, day) => "${day}/${month}/${year}";
|
||||
static m23(year, month, day) => "${day}/${month}/${year}";
|
||||
|
||||
static m23(month, day) => "${day}/${month}";
|
||||
static m24(month, day) => "${day}/${month}";
|
||||
|
||||
static m24(displayname) => "Groupe avec ${displayname}";
|
||||
static m25(displayname) => "Groupe avec ${displayname}";
|
||||
|
||||
static m25(username, targetName) =>
|
||||
static m26(username, targetName) =>
|
||||
"${username} a retiré l\'invitation de ${targetName}";
|
||||
|
||||
static m26(groupName) => "Inviter un contact dans ${groupName}";
|
||||
static m27(groupName) => "Inviter un contact dans ${groupName}";
|
||||
|
||||
static m27(username, link) =>
|
||||
static m28(username, link) =>
|
||||
"${username} vous a invité sur FluffyChat. \n1. Installez FluffyChat : http://fluffy.chat \n2. Inscrivez-vous ou connectez-vous \n3. Ouvrez le lien d\'invitation : ${link}";
|
||||
|
||||
static m28(username, targetName) => "${username} a invité ${targetName}";
|
||||
static m29(username, targetName) => "${username} a invité ${targetName}";
|
||||
|
||||
static m29(username) => "${username} a rejoint la discussion";
|
||||
static m30(username) => "${username} a rejoint la discussion";
|
||||
|
||||
static m30(username, targetName) => "${username} a expulsé ${targetName}";
|
||||
static m31(username, targetName) => "${username} a expulsé ${targetName}";
|
||||
|
||||
static m31(username, targetName) =>
|
||||
static m32(username, targetName) =>
|
||||
"${username} a expulsé et banni ${targetName}";
|
||||
|
||||
static m32(localizedTimeShort) =>
|
||||
static m33(localizedTimeShort) =>
|
||||
"Vu pour la dernière fois : ${localizedTimeShort}";
|
||||
|
||||
static m33(count) => "Charger ${count} participants de plus";
|
||||
static m34(count) => "Charger ${count} participants de plus";
|
||||
|
||||
static m34(homeserver) => "Se connecter à ${homeserver}";
|
||||
static m35(homeserver) => "Se connecter à ${homeserver}";
|
||||
|
||||
static m35(number) => "${number} selectionné(s)";
|
||||
static m36(number) => "${number} selectionné(s)";
|
||||
|
||||
static m36(fileName) => "Lire ${fileName}";
|
||||
static m37(fileName) => "Lire ${fileName}";
|
||||
|
||||
static m37(username) => "${username} a supprimé un message";
|
||||
static m38(username) => "${username} a supprimé un message";
|
||||
|
||||
static m38(username) => "${username} a refusé l\'invitation";
|
||||
static m39(username) => "${username} a refusé l\'invitation";
|
||||
|
||||
static m39(username) => "Supprimé par ${username}";
|
||||
static m40(username) => "Supprimé par ${username}";
|
||||
|
||||
static m40(username) => "Vu par ${username}";
|
||||
static m41(username) => "Vu par ${username}";
|
||||
|
||||
static m41(username, count) => "Vu par ${username} et ${count} autres";
|
||||
static m42(username, count) => "Vu par ${username} et ${count} autres";
|
||||
|
||||
static m42(username, username2) => "Vu par ${username} et ${username2}";
|
||||
static m43(username, username2) => "Vu par ${username} et ${username2}";
|
||||
|
||||
static m43(username) => "${username} a envoyé un fichier";
|
||||
static m44(username) => "${username} a envoyé un fichier";
|
||||
|
||||
static m44(username) => "${username} a envoyé une image";
|
||||
static m45(username) => "${username} a envoyé une image";
|
||||
|
||||
static m45(username) => "${username} a envoyé un sticker";
|
||||
static m46(username) => "${username} a envoyé un sticker";
|
||||
|
||||
static m46(username) => "${username} a envoyé une vidéo";
|
||||
static m47(username) => "${username} a envoyé une vidéo";
|
||||
|
||||
static m47(username) => "${username} a envoyé un fichier audio";
|
||||
static m48(username) => "${username} a envoyé un fichier audio";
|
||||
|
||||
static m48(username) => "${username} a partagé une localisation";
|
||||
static m49(username) => "${username} a partagé une localisation";
|
||||
|
||||
static m49(hours12, hours24, minutes, suffix) => "${hours24}:${minutes}";
|
||||
static m50(hours12, hours24, minutes, suffix) => "${hours24}:${minutes}";
|
||||
|
||||
static m50(username, targetName) => "${username} a dé-banni ${targetName}";
|
||||
static m51(username, targetName) => "${username} a dé-banni ${targetName}";
|
||||
|
||||
static m51(type) => "Événement de type inconnu \'${type}\'";
|
||||
static m52(type) => "Événement de type inconnu \'${type}\'";
|
||||
|
||||
static m52(unreadCount) => "${unreadCount} discussions non lues";
|
||||
static m53(unreadCount) => "${unreadCount} discussions non lues";
|
||||
|
||||
static m53(unreadEvents) => "${unreadEvents} messages non lus";
|
||||
static m54(unreadEvents) => "${unreadEvents} messages non lus";
|
||||
|
||||
static m54(unreadEvents, unreadChats) =>
|
||||
static m55(unreadEvents, unreadChats) =>
|
||||
"${unreadEvents} messages non lus dans ${unreadChats} discussions";
|
||||
|
||||
static m55(username, count) =>
|
||||
static m56(username, count) =>
|
||||
"${username} et ${count} autres sont en train d\'écrire...";
|
||||
|
||||
static m56(username, username2) =>
|
||||
static m57(username, username2) =>
|
||||
"${username} et ${username2} sont en train d\'écrire...";
|
||||
|
||||
static m57(username) => "${username} est en train d\'écrire...";
|
||||
static m58(username) => "${username} est en train d\'écrire...";
|
||||
|
||||
static m58(username) => "${username} a quitté la discussion";
|
||||
static m59(username) => "${username} a quitté la discussion";
|
||||
|
||||
static m59(username, type) =>
|
||||
static m60(username, type) =>
|
||||
"${username} a envoyé un événement de type ${type}";
|
||||
|
||||
final messages = _notInlinedMessages(_notInlinedMessages);
|
||||
|
@ -497,73 +497,73 @@ class MessageLookup extends MessageLookupByLibrary {
|
|||
"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,
|
||||
"askVerificationRequest": m2,
|
||||
"bannedUser": m3,
|
||||
"byDefaultYouWillBeConnectedTo": m4,
|
||||
"cachedKeys": MessageLookupByLibrary.simpleMessage(
|
||||
"Clés mises en cache avec succès !"),
|
||||
"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,
|
||||
"changedTheChatAvatar": m5,
|
||||
"changedTheChatDescriptionTo": m6,
|
||||
"changedTheChatNameTo": m7,
|
||||
"changedTheChatPermissions": m8,
|
||||
"changedTheDisplaynameTo": m9,
|
||||
"changedTheGuestAccessRules": m10,
|
||||
"changedTheGuestAccessRulesTo": m11,
|
||||
"changedTheHistoryVisibility": m12,
|
||||
"changedTheHistoryVisibilityTo": m13,
|
||||
"changedTheJoinRules": m14,
|
||||
"changedTheJoinRulesTo": m15,
|
||||
"changedTheProfileAvatar": m16,
|
||||
"changedTheRoomAliases": m17,
|
||||
"changedTheRoomInvitationLink": m18,
|
||||
"compareEmojiMatch": MessageLookupByLibrary.simpleMessage(
|
||||
"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,
|
||||
"couldNotDecryptMessage": m19,
|
||||
"countParticipants": m20,
|
||||
"createdTheChat": m21,
|
||||
"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,
|
||||
"dateAndTimeOfDay": m22,
|
||||
"dateWithYear": m23,
|
||||
"dateWithoutYear": m24,
|
||||
"emoteExists": MessageLookupByLibrary.simpleMessage(
|
||||
"Cette émoticône existe déjà !"),
|
||||
"emoteInvalid": MessageLookupByLibrary.simpleMessage(
|
||||
"Raccourci d\'émoticône invalide !"),
|
||||
"emoteWarnNeedToPick": MessageLookupByLibrary.simpleMessage(
|
||||
"Vous devez sélectionner un raccourci d\'émoticône et une image !"),
|
||||
"groupWith": m24,
|
||||
"hasWithdrawnTheInvitationFor": m25,
|
||||
"groupWith": m25,
|
||||
"hasWithdrawnTheInvitationFor": m26,
|
||||
"incorrectPassphraseOrKey": MessageLookupByLibrary.simpleMessage(
|
||||
"Phrase de passe ou clé de récupération incorrecte"),
|
||||
"inviteContactToGroup": m26,
|
||||
"inviteText": m27,
|
||||
"invitedUser": m28,
|
||||
"inviteContactToGroup": m27,
|
||||
"inviteText": m28,
|
||||
"invitedUser": m29,
|
||||
"is typing...":
|
||||
MessageLookupByLibrary.simpleMessage("est en train d\'écrire..."),
|
||||
"isDeviceKeyCorrect": MessageLookupByLibrary.simpleMessage(
|
||||
"La clé de l\'appareil ci-dessous est-elle correcte ?"),
|
||||
"joinedTheChat": m29,
|
||||
"joinedTheChat": m30,
|
||||
"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,
|
||||
"kicked": m31,
|
||||
"kickedAndBanned": m32,
|
||||
"lastActiveAgo": m33,
|
||||
"loadCountMoreParticipants": m34,
|
||||
"logInTo": m35,
|
||||
"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,
|
||||
"numberSelected": m36,
|
||||
"ok": MessageLookupByLibrary.simpleMessage("ok"),
|
||||
"onlineKeyBackupDisabled": MessageLookupByLibrary.simpleMessage(
|
||||
"La sauvegarde en ligne des clés est désactivée"),
|
||||
|
@ -571,35 +571,35 @@ class MessageLookup extends MessageLookupByLibrary {
|
|||
"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,
|
||||
"removedBy": m39,
|
||||
"seenByUser": m40,
|
||||
"seenByUserAndCountOthers": m41,
|
||||
"seenByUserAndUser": m42,
|
||||
"sentAFile": m43,
|
||||
"sentAPicture": m44,
|
||||
"sentASticker": m45,
|
||||
"sentAVideo": m46,
|
||||
"sentAnAudio": m47,
|
||||
"play": m37,
|
||||
"redactedAnEvent": m38,
|
||||
"rejectedTheInvitation": m39,
|
||||
"removedBy": m40,
|
||||
"seenByUser": m41,
|
||||
"seenByUserAndCountOthers": m42,
|
||||
"seenByUserAndUser": m43,
|
||||
"sentAFile": m44,
|
||||
"sentAPicture": m45,
|
||||
"sentASticker": m46,
|
||||
"sentAVideo": m47,
|
||||
"sentAnAudio": m48,
|
||||
"sessionVerified":
|
||||
MessageLookupByLibrary.simpleMessage("La session est vérifiée"),
|
||||
"sharedTheLocation": m48,
|
||||
"timeOfDay": m49,
|
||||
"sharedTheLocation": m49,
|
||||
"timeOfDay": m50,
|
||||
"title": MessageLookupByLibrary.simpleMessage("FluffyChat"),
|
||||
"unbannedUser": m50,
|
||||
"unknownEvent": m51,
|
||||
"unbannedUser": m51,
|
||||
"unknownEvent": m52,
|
||||
"unknownSessionVerify": MessageLookupByLibrary.simpleMessage(
|
||||
"Session inconnue, veuillez vérifier"),
|
||||
"unreadChats": m52,
|
||||
"unreadMessages": m53,
|
||||
"unreadMessagesInChats": m54,
|
||||
"userAndOthersAreTyping": m55,
|
||||
"userAndUserAreTyping": m56,
|
||||
"userIsTyping": m57,
|
||||
"userLeftTheChat": m58,
|
||||
"userSentUnknownEvent": m59,
|
||||
"unreadChats": m53,
|
||||
"unreadMessages": m54,
|
||||
"unreadMessagesInChats": m55,
|
||||
"userAndOthersAreTyping": m56,
|
||||
"userAndUserAreTyping": m57,
|
||||
"userIsTyping": m58,
|
||||
"userLeftTheChat": m59,
|
||||
"userSentUnknownEvent": m60,
|
||||
"verifiedSession": MessageLookupByLibrary.simpleMessage(
|
||||
"Session vérifiée avec succès !"),
|
||||
"verifyManual":
|
||||
|
|
|
@ -23,139 +23,139 @@ class MessageLookup extends MessageLookupByLibrary {
|
|||
|
||||
static m1(username) => "${username} activou o cifrado extremo-a-extremo";
|
||||
|
||||
static m60(username) =>
|
||||
static m2(username) =>
|
||||
"¿Aceptar a solicitude de verificación de ${username}?";
|
||||
|
||||
static m2(username, targetName) => "${username} vetou a ${targetName}";
|
||||
static m3(username, targetName) => "${username} vetou a ${targetName}";
|
||||
|
||||
static m3(homeserver) => "Por omisión vas conectar con ${homeserver}";
|
||||
static m4(homeserver) => "Por omisión vas conectar con ${homeserver}";
|
||||
|
||||
static m4(username) => "${username} cambiou o avatar do chat";
|
||||
static m5(username) => "${username} cambiou o avatar do chat";
|
||||
|
||||
static m5(username, description) =>
|
||||
static m6(username, description) =>
|
||||
"${username} mudou a descrición da conversa a: \'${description}\'";
|
||||
|
||||
static m6(username, chatname) =>
|
||||
static m7(username, chatname) =>
|
||||
"${username} mudou o nome da conversa a: \'${chatname}\'";
|
||||
|
||||
static m7(username) => "${username} mudou os permisos da conversa";
|
||||
static m8(username) => "${username} mudou os permisos da conversa";
|
||||
|
||||
static m8(username, displayname) =>
|
||||
static m9(username, displayname) =>
|
||||
"${username} cambiou o nome público a: ${displayname}";
|
||||
|
||||
static m9(username) =>
|
||||
static m10(username) =>
|
||||
"${username} mudou as regras de acceso para convidadas";
|
||||
|
||||
static m10(username, rules) =>
|
||||
static m11(username, rules) =>
|
||||
"${username} mudou as regras de acceso para convidadas a: ${rules}";
|
||||
|
||||
static m11(username) => "${username} mudou a visibilidade do historial";
|
||||
static m12(username) => "${username} mudou a visibilidade do historial";
|
||||
|
||||
static m12(username, rules) =>
|
||||
static m13(username, rules) =>
|
||||
"${username} mudou a visibilidade do historial a: ${rules}";
|
||||
|
||||
static m13(username) => "${username} mudou as regras de acceso";
|
||||
static m14(username) => "${username} mudou as regras de acceso";
|
||||
|
||||
static m14(username, joinRules) =>
|
||||
static m15(username, joinRules) =>
|
||||
"${username} mudou as regras de acceso a: ${joinRules}";
|
||||
|
||||
static m15(username) => "${username} mudou o avatar do perfil";
|
||||
static m16(username) => "${username} mudou o avatar do perfil";
|
||||
|
||||
static m16(username) => "${username} mudou os alias da sala";
|
||||
static m17(username) => "${username} mudou os alias da sala";
|
||||
|
||||
static m17(username) => "${username} mudou a ligazón de convite";
|
||||
static m18(username) => "${username} mudou a ligazón de convite";
|
||||
|
||||
static m18(error) => "Non se descifrou a mensaxe: ${error}";
|
||||
static m19(error) => "Non se descifrou a mensaxe: ${error}";
|
||||
|
||||
static m19(count) => "${count} participantes";
|
||||
static m20(count) => "${count} participantes";
|
||||
|
||||
static m20(username) => "${username} creou a conversa";
|
||||
static m21(username) => "${username} creou a conversa";
|
||||
|
||||
static m21(date, timeOfDay) => "${date}, ${timeOfDay}";
|
||||
static m22(date, timeOfDay) => "${date}, ${timeOfDay}";
|
||||
|
||||
static m22(year, month, day) => "${day}-${month}-${year}";
|
||||
static m23(year, month, day) => "${day}-${month}-${year}";
|
||||
|
||||
static m23(month, day) => "${day}-${month}";
|
||||
static m24(month, day) => "${day}-${month}";
|
||||
|
||||
static m24(displayname) => "Grupo con ${displayname}";
|
||||
static m25(displayname) => "Grupo con ${displayname}";
|
||||
|
||||
static m25(username, targetName) =>
|
||||
static m26(username, targetName) =>
|
||||
"${username} retirou o convite para ${targetName}";
|
||||
|
||||
static m26(groupName) => "Convidar contacto a ${groupName}";
|
||||
static m27(groupName) => "Convidar contacto a ${groupName}";
|
||||
|
||||
static m27(username, link) =>
|
||||
static m28(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, targetName) => "${username} convidou a ${targetName}";
|
||||
|
||||
static m29(username) => "${username} uníuse ó chat";
|
||||
static m30(username) => "${username} uníuse ó chat";
|
||||
|
||||
static m30(username, targetName) => "${username} expulsou a ${targetName}";
|
||||
static m31(username, targetName) => "${username} expulsou a ${targetName}";
|
||||
|
||||
static m31(username, targetName) =>
|
||||
static m32(username, targetName) =>
|
||||
"${username} expulsou e vetou a ${targetName}";
|
||||
|
||||
static m32(localizedTimeShort) => "Última actividade: ${localizedTimeShort}";
|
||||
static m33(localizedTimeShort) => "Última actividade: ${localizedTimeShort}";
|
||||
|
||||
static m33(count) => "Cargar ${count} participantes máis";
|
||||
static m34(count) => "Cargar ${count} participantes máis";
|
||||
|
||||
static m34(homeserver) => "Conectar con ${homeserver}";
|
||||
static m35(homeserver) => "Conectar con ${homeserver}";
|
||||
|
||||
static m35(number) => "${number} seleccionados";
|
||||
static m36(number) => "${number} seleccionados";
|
||||
|
||||
static m36(fileName) => "Reproducir ${fileName}";
|
||||
static m37(fileName) => "Reproducir ${fileName}";
|
||||
|
||||
static m37(username) => "${username} publicou un evento";
|
||||
static m38(username) => "${username} publicou un evento";
|
||||
|
||||
static m38(username) => "${username} rexeitou o convite";
|
||||
static m39(username) => "${username} rexeitou o convite";
|
||||
|
||||
static m39(username) => "Eliminado por ${username}";
|
||||
static m40(username) => "Eliminado por ${username}";
|
||||
|
||||
static m40(username) => "Visto por ${username}";
|
||||
static m41(username) => "Visto por ${username}";
|
||||
|
||||
static m41(username, count) => "Visto por ${username} e ${count} outras";
|
||||
static m42(username, count) => "Visto por ${username} e ${count} outras";
|
||||
|
||||
static m42(username, username2) => "Visto por ${username} e ${username2}";
|
||||
static m43(username, username2) => "Visto por ${username} e ${username2}";
|
||||
|
||||
static m43(username) => "${username} enviou un ficheiro";
|
||||
static m44(username) => "${username} enviou un ficheiro";
|
||||
|
||||
static m44(username) => "${username} enviou unha imaxe";
|
||||
static m45(username) => "${username} enviou unha imaxe";
|
||||
|
||||
static m45(username) => "${username} enviou un adhesivo";
|
||||
static m46(username) => "${username} enviou un adhesivo";
|
||||
|
||||
static m46(username) => "${username} enviou un vídeo";
|
||||
static m47(username) => "${username} enviou un vídeo";
|
||||
|
||||
static m47(username) => "${username} enviou un audio";
|
||||
static m48(username) => "${username} enviou un audio";
|
||||
|
||||
static m48(username) => "${username} compartiu a localización";
|
||||
static m49(username) => "${username} compartiu a localización";
|
||||
|
||||
static m49(hours12, hours24, minutes, suffix) =>
|
||||
static m50(hours12, hours24, minutes, suffix) =>
|
||||
"${hours12}:${minutes} ${suffix}";
|
||||
|
||||
static m50(username, targetName) =>
|
||||
static m51(username, targetName) =>
|
||||
"${username} retirou o veto a ${targetName}";
|
||||
|
||||
static m51(type) => "Evento descoñecido \'${type}\'";
|
||||
static m52(type) => "Evento descoñecido \'${type}\'";
|
||||
|
||||
static m52(unreadCount) => "${unreadCount} chats non lidos";
|
||||
static m53(unreadCount) => "${unreadCount} chats non lidos";
|
||||
|
||||
static m53(unreadEvents) => "${unreadEvents} mensaxes non lidas";
|
||||
static m54(unreadEvents) => "${unreadEvents} mensaxes non lidas";
|
||||
|
||||
static m54(unreadEvents, unreadChats) =>
|
||||
static m55(unreadEvents, unreadChats) =>
|
||||
"${unreadEvents} mensaxes non lidas en ${unreadChats} conversas";
|
||||
|
||||
static m55(username, count) =>
|
||||
static m56(username, count) =>
|
||||
"${username} e ${count} máis están escribindo...";
|
||||
|
||||
static m56(username, username2) =>
|
||||
static m57(username, username2) =>
|
||||
"${username} e ${username2} están escribindo...";
|
||||
|
||||
static m57(username) => "${username} está escribindo...";
|
||||
static m58(username) => "${username} está escribindo...";
|
||||
|
||||
static m58(username) => "${username} deixou a conversa";
|
||||
static m59(username) => "${username} deixou a conversa";
|
||||
|
||||
static m59(username, type) => "${username} enviou un evento {type]";
|
||||
static m60(username, type) => "${username} enviou un evento {type]";
|
||||
|
||||
final messages = _notInlinedMessages(_notInlinedMessages);
|
||||
static _notInlinedMessages(_) => <String, Function>{
|
||||
|
@ -484,72 +484,72 @@ class MessageLookup extends MessageLookupByLibrary {
|
|||
"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,
|
||||
"askVerificationRequest": m2,
|
||||
"bannedUser": m3,
|
||||
"byDefaultYouWillBeConnectedTo": m4,
|
||||
"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,
|
||||
"changedTheChatAvatar": m5,
|
||||
"changedTheChatDescriptionTo": m6,
|
||||
"changedTheChatNameTo": m7,
|
||||
"changedTheChatPermissions": m8,
|
||||
"changedTheDisplaynameTo": m9,
|
||||
"changedTheGuestAccessRules": m10,
|
||||
"changedTheGuestAccessRulesTo": m11,
|
||||
"changedTheHistoryVisibility": m12,
|
||||
"changedTheHistoryVisibilityTo": m13,
|
||||
"changedTheJoinRules": m14,
|
||||
"changedTheJoinRulesTo": m15,
|
||||
"changedTheProfileAvatar": m16,
|
||||
"changedTheRoomAliases": m17,
|
||||
"changedTheRoomInvitationLink": m18,
|
||||
"compareEmojiMatch": MessageLookupByLibrary.simpleMessage(
|
||||
"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,
|
||||
"couldNotDecryptMessage": m19,
|
||||
"countParticipants": m20,
|
||||
"createdTheChat": m21,
|
||||
"crossSigningDisabled": MessageLookupByLibrary.simpleMessage(
|
||||
"A Sinatura-Cruzada está desactivada"),
|
||||
"crossSigningEnabled":
|
||||
MessageLookupByLibrary.simpleMessage("Sinatura-Cruzada activada"),
|
||||
"dateAndTimeOfDay": m21,
|
||||
"dateWithYear": m22,
|
||||
"dateWithoutYear": m23,
|
||||
"dateAndTimeOfDay": m22,
|
||||
"dateWithYear": m23,
|
||||
"dateWithoutYear": m24,
|
||||
"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,
|
||||
"groupWith": m25,
|
||||
"hasWithdrawnTheInvitationFor": m26,
|
||||
"incorrectPassphraseOrKey": MessageLookupByLibrary.simpleMessage(
|
||||
"Frase de paso ou chave de recuperación incorrecta"),
|
||||
"inviteContactToGroup": m26,
|
||||
"inviteText": m27,
|
||||
"invitedUser": m28,
|
||||
"inviteContactToGroup": m27,
|
||||
"inviteText": m28,
|
||||
"invitedUser": m29,
|
||||
"is typing...":
|
||||
MessageLookupByLibrary.simpleMessage("está escribindo..."),
|
||||
"isDeviceKeyCorrect": MessageLookupByLibrary.simpleMessage(
|
||||
"¿É correcta esta chave do dispositivo?"),
|
||||
"joinedTheChat": m29,
|
||||
"joinedTheChat": m30,
|
||||
"keysCached":
|
||||
MessageLookupByLibrary.simpleMessage("Chaves almacenadas"),
|
||||
"keysMissing": MessageLookupByLibrary.simpleMessage("Faltan as chaves"),
|
||||
"kicked": m30,
|
||||
"kickedAndBanned": m31,
|
||||
"lastActiveAgo": m32,
|
||||
"loadCountMoreParticipants": m33,
|
||||
"logInTo": m34,
|
||||
"kicked": m31,
|
||||
"kickedAndBanned": m32,
|
||||
"lastActiveAgo": m33,
|
||||
"loadCountMoreParticipants": m34,
|
||||
"logInTo": m35,
|
||||
"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,
|
||||
"numberSelected": m36,
|
||||
"ok": MessageLookupByLibrary.simpleMessage("OK"),
|
||||
"onlineKeyBackupDisabled": MessageLookupByLibrary.simpleMessage(
|
||||
"Copia de apoio En liña das Chaves desactivada"),
|
||||
|
@ -557,35 +557,35 @@ class MessageLookup extends MessageLookupByLibrary {
|
|||
"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,
|
||||
"play": m37,
|
||||
"redactedAnEvent": m38,
|
||||
"rejectedTheInvitation": m39,
|
||||
"removedBy": m40,
|
||||
"seenByUser": m41,
|
||||
"seenByUserAndCountOthers": m42,
|
||||
"seenByUserAndUser": m43,
|
||||
"sentAFile": m44,
|
||||
"sentAPicture": m45,
|
||||
"sentASticker": m46,
|
||||
"sentAVideo": m47,
|
||||
"sentAnAudio": m48,
|
||||
"sessionVerified":
|
||||
MessageLookupByLibrary.simpleMessage("Sesión verificada"),
|
||||
"sharedTheLocation": m48,
|
||||
"timeOfDay": m49,
|
||||
"sharedTheLocation": m49,
|
||||
"timeOfDay": m50,
|
||||
"title": MessageLookupByLibrary.simpleMessage("FluffyChat"),
|
||||
"unbannedUser": m50,
|
||||
"unknownEvent": m51,
|
||||
"unbannedUser": m51,
|
||||
"unknownEvent": m52,
|
||||
"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,
|
||||
"unreadChats": m53,
|
||||
"unreadMessages": m54,
|
||||
"unreadMessagesInChats": m55,
|
||||
"userAndOthersAreTyping": m56,
|
||||
"userAndUserAreTyping": m57,
|
||||
"userIsTyping": m58,
|
||||
"userLeftTheChat": m59,
|
||||
"userSentUnknownEvent": m60,
|
||||
"verifiedSession": MessageLookupByLibrary.simpleMessage(
|
||||
"Sesión verificada correctamente!"),
|
||||
"verifyManual":
|
||||
|
|
|
@ -23,138 +23,138 @@ class MessageLookup extends MessageLookupByLibrary {
|
|||
|
||||
static m1(username) => "${username} je aktivirao/la obostrano šifriranje";
|
||||
|
||||
static m60(username) =>
|
||||
static m2(username) =>
|
||||
"Prihvatiti ovaj zahtjev za potvrđivanje od ${username}?";
|
||||
|
||||
static m2(username, targetName) =>
|
||||
static m3(username, targetName) =>
|
||||
"${username} je isključio/la ${targetName}";
|
||||
|
||||
static m3(homeserver) => "Standardno ćeš biti povezan/a s ${homeserver}";
|
||||
static m4(homeserver) => "Standardno ćeš biti povezan/a s ${homeserver}";
|
||||
|
||||
static m4(username) => "${username} je promijenio/la avatar chata";
|
||||
static m5(username) => "${username} je promijenio/la avatar chata";
|
||||
|
||||
static m5(username, description) =>
|
||||
static m6(username, description) =>
|
||||
"${username} je promijenio/la opis chata u: „${description}”";
|
||||
|
||||
static m6(username, chatname) =>
|
||||
static m7(username, chatname) =>
|
||||
"${username} je promijenio/la ime chata u: „${chatname}”";
|
||||
|
||||
static m7(username) => "${username} je promijenio/la dozvole chata";
|
||||
static m8(username) => "${username} je promijenio/la dozvole chata";
|
||||
|
||||
static m8(username, displayname) =>
|
||||
static m9(username, displayname) =>
|
||||
"${username} je promijenio/la prikazano ime u: ${displayname}";
|
||||
|
||||
static m9(username) =>
|
||||
static m10(username) =>
|
||||
"${username} je promijenio/la pravila pristupa za goste";
|
||||
|
||||
static m10(username, rules) =>
|
||||
static m11(username, rules) =>
|
||||
"${username} je promijenio/la pravila pristupa za goste u: ${rules}";
|
||||
|
||||
static m11(username) => "${username} je promijenio/la vidljivost kronologije";
|
||||
static m12(username) => "${username} je promijenio/la vidljivost kronologije";
|
||||
|
||||
static m12(username, rules) =>
|
||||
static m13(username, rules) =>
|
||||
"${username} je promijenio/la vidljivost kronologije u: ${rules}";
|
||||
|
||||
static m13(username) => "${username} je promijenio/la pravila pridruživanja";
|
||||
static m14(username) => "${username} je promijenio/la pravila pridruživanja";
|
||||
|
||||
static m14(username, joinRules) =>
|
||||
static m15(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 avatar profila";
|
||||
|
||||
static m16(username) => "${username} je promijenio/la pseudonime soba";
|
||||
static m17(username) => "${username} je promijenio/la pseudonime soba";
|
||||
|
||||
static m17(username) => "${username} je promijenio/la poveznicu poziva";
|
||||
static m18(username) => "${username} je promijenio/la poveznicu poziva";
|
||||
|
||||
static m18(error) => "Neuspjelo dešifriranje poruke: ${error}";
|
||||
static m19(error) => "Neuspjelo dešifriranje poruke: ${error}";
|
||||
|
||||
static m19(count) => "${count} sudionika";
|
||||
static m20(count) => "${count} sudionika";
|
||||
|
||||
static m20(username) => "${username} je stvorio/la chat";
|
||||
static m21(username) => "${username} je stvorio/la chat";
|
||||
|
||||
static m21(date, timeOfDay) => "${date}, ${timeOfDay}";
|
||||
static m22(date, timeOfDay) => "${date}, ${timeOfDay}";
|
||||
|
||||
static m22(year, month, day) => "${day}. ${month}. ${year}.";
|
||||
static m23(year, month, day) => "${day}. ${month}. ${year}.";
|
||||
|
||||
static m23(month, day) => "${day}. ${month}.";
|
||||
static m24(month, day) => "${day}. ${month}.";
|
||||
|
||||
static m24(displayname) => "Grupa s ${displayname}";
|
||||
static m25(displayname) => "Grupa s ${displayname}";
|
||||
|
||||
static m25(username, targetName) =>
|
||||
static m26(username, targetName) =>
|
||||
"${username} je povukao/la poziv za ${targetName}";
|
||||
|
||||
static m26(groupName) => "Pozovi kontakt u ${groupName}";
|
||||
static m27(groupName) => "Pozovi kontakt u ${groupName}";
|
||||
|
||||
static m27(username, link) =>
|
||||
static m28(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, targetName) => "${username} je pozvao/la ${targetName}";
|
||||
|
||||
static m29(username) => "${username} se pridružio/la chatu";
|
||||
static m30(username) => "${username} se pridružio/la chatu";
|
||||
|
||||
static m30(username, targetName) => "${username} je izbacio/la ${targetName}";
|
||||
static m31(username, targetName) => "${username} je izbacio/la ${targetName}";
|
||||
|
||||
static m31(username, targetName) =>
|
||||
static m32(username, targetName) =>
|
||||
"${username} je izbacio/la i isključio/la ${targetName}";
|
||||
|
||||
static m32(localizedTimeShort) => "Zadnja aktivnost: ${localizedTimeShort}";
|
||||
static m33(localizedTimeShort) => "Zadnja aktivnost: ${localizedTimeShort}";
|
||||
|
||||
static m33(count) => "Učitaj još ${count} sudionika";
|
||||
static m34(count) => "Učitaj još ${count} sudionika";
|
||||
|
||||
static m34(homeserver) => "Prijavi se na ${homeserver}";
|
||||
static m35(homeserver) => "Prijavi se na ${homeserver}";
|
||||
|
||||
static m35(number) => "${number} odabrano";
|
||||
static m36(number) => "${number} odabrano";
|
||||
|
||||
static m36(fileName) => "Sviraj ${fileName}";
|
||||
static m37(fileName) => "Sviraj ${fileName}";
|
||||
|
||||
static m37(username) => "${username} je preuredio/la događaj";
|
||||
static m38(username) => "${username} je preuredio/la događaj";
|
||||
|
||||
static m38(username) => "${username} je odbio/la poziv";
|
||||
static m39(username) => "${username} je odbio/la poziv";
|
||||
|
||||
static m39(username) => "Uklonjeno od ${username}";
|
||||
static m40(username) => "Uklonjeno od ${username}";
|
||||
|
||||
static m40(username) => "Viđeno od ${username}";
|
||||
static m41(username) => "Viđeno od ${username}";
|
||||
|
||||
static m41(username, count) =>
|
||||
static m42(username, count) =>
|
||||
"Viđeno od ${username} i još ${count} korisnika";
|
||||
|
||||
static m42(username, username2) => "Viđeno od ${username} i ${username2}";
|
||||
static m43(username, username2) => "Viđeno od ${username} i ${username2}";
|
||||
|
||||
static m43(username) => "${username} ja poslao/la datoteku";
|
||||
static m44(username) => "${username} ja poslao/la datoteku";
|
||||
|
||||
static m44(username) => "${username} ja poslao/la sliku";
|
||||
static m45(username) => "${username} ja poslao/la sliku";
|
||||
|
||||
static m45(username) => "${username} je poslao/la naljepnicu";
|
||||
static m46(username) => "${username} je poslao/la naljepnicu";
|
||||
|
||||
static m46(username) => "${username} ja poslao/la video";
|
||||
static m47(username) => "${username} ja poslao/la video";
|
||||
|
||||
static m47(username) => "${username} ja poslao/la audio";
|
||||
static m48(username) => "${username} ja poslao/la audio";
|
||||
|
||||
static m48(username) => "${username} je dijelio/la mjesto";
|
||||
static m49(username) => "${username} je dijelio/la mjesto";
|
||||
|
||||
static m49(hours12, hours24, minutes, suffix) => "${hours24}:${minutes}";
|
||||
static m50(hours12, hours24, minutes, suffix) => "${hours24}:${minutes}";
|
||||
|
||||
static m50(username, targetName) =>
|
||||
static m51(username, targetName) =>
|
||||
"${username} je ponovo uključio/la ${targetName}";
|
||||
|
||||
static m51(type) => "Nepoznata vrsta događaja „${type}”";
|
||||
static m52(type) => "Nepoznata vrsta događaja „${type}”";
|
||||
|
||||
static m52(unreadCount) => "${unreadCount} nepročitana chata";
|
||||
static m53(unreadCount) => "${unreadCount} nepročitana chata";
|
||||
|
||||
static m53(unreadEvents) => "${unreadEvents} nepročitane poruke";
|
||||
static m54(unreadEvents) => "${unreadEvents} nepročitane poruke";
|
||||
|
||||
static m54(unreadEvents, unreadChats) =>
|
||||
static m55(unreadEvents, unreadChats) =>
|
||||
"${unreadEvents} nepročitane poruke u ${unreadChats} chata";
|
||||
|
||||
static m55(username, count) => "${username} i još ${count} korisnika pišu …";
|
||||
static m56(username, count) => "${username} i još ${count} korisnika pišu …";
|
||||
|
||||
static m56(username, username2) => "${username} i ${username2} pišu …";
|
||||
static m57(username, username2) => "${username} i ${username2} pišu …";
|
||||
|
||||
static m57(username) => "${username} piše …";
|
||||
static m58(username) => "${username} piše …";
|
||||
|
||||
static m58(username) => "${username} je napustio/la chat";
|
||||
static m59(username) => "${username} je napustio/la chat";
|
||||
|
||||
static m59(username, type) => "${username} ja poslao/la ${type} događaj";
|
||||
static m60(username, type) => "${username} ja poslao/la ${type} događaj";
|
||||
|
||||
final messages = _notInlinedMessages(_notInlinedMessages);
|
||||
static _notInlinedMessages(_) => <String, Function>{
|
||||
|
@ -479,72 +479,72 @@ class MessageLookup extends MessageLookupByLibrary {
|
|||
"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,
|
||||
"askVerificationRequest": m2,
|
||||
"bannedUser": m3,
|
||||
"byDefaultYouWillBeConnectedTo": m4,
|
||||
"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,
|
||||
"changedTheChatAvatar": m5,
|
||||
"changedTheChatDescriptionTo": m6,
|
||||
"changedTheChatNameTo": m7,
|
||||
"changedTheChatPermissions": m8,
|
||||
"changedTheDisplaynameTo": m9,
|
||||
"changedTheGuestAccessRules": m10,
|
||||
"changedTheGuestAccessRulesTo": m11,
|
||||
"changedTheHistoryVisibility": m12,
|
||||
"changedTheHistoryVisibilityTo": m13,
|
||||
"changedTheJoinRules": m14,
|
||||
"changedTheJoinRulesTo": m15,
|
||||
"changedTheProfileAvatar": m16,
|
||||
"changedTheRoomAliases": m17,
|
||||
"changedTheRoomInvitationLink": m18,
|
||||
"compareEmojiMatch": MessageLookupByLibrary.simpleMessage(
|
||||
"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,
|
||||
"couldNotDecryptMessage": m19,
|
||||
"countParticipants": m20,
|
||||
"createdTheChat": m21,
|
||||
"crossSigningDisabled": MessageLookupByLibrary.simpleMessage(
|
||||
"Unakrsno potpisivanje je deaktivirano"),
|
||||
"crossSigningEnabled": MessageLookupByLibrary.simpleMessage(
|
||||
"Unakrsno potpisivanje je aktivirano"),
|
||||
"dateAndTimeOfDay": m21,
|
||||
"dateWithYear": m22,
|
||||
"dateWithoutYear": m23,
|
||||
"dateAndTimeOfDay": m22,
|
||||
"dateWithYear": m23,
|
||||
"dateWithoutYear": m24,
|
||||
"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,
|
||||
"groupWith": m25,
|
||||
"hasWithdrawnTheInvitationFor": m26,
|
||||
"incorrectPassphraseOrKey": MessageLookupByLibrary.simpleMessage(
|
||||
"Neispravna lozinka ili ključ za obnavljanje"),
|
||||
"inviteContactToGroup": m26,
|
||||
"inviteText": m27,
|
||||
"invitedUser": m28,
|
||||
"inviteContactToGroup": m27,
|
||||
"inviteText": m28,
|
||||
"invitedUser": m29,
|
||||
"is typing...": MessageLookupByLibrary.simpleMessage("piše …"),
|
||||
"isDeviceKeyCorrect": MessageLookupByLibrary.simpleMessage(
|
||||
"Je li sljedeći ključ uređaja ispravan?"),
|
||||
"joinedTheChat": m29,
|
||||
"joinedTheChat": m30,
|
||||
"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,
|
||||
"kicked": m31,
|
||||
"kickedAndBanned": m32,
|
||||
"lastActiveAgo": m33,
|
||||
"loadCountMoreParticipants": m34,
|
||||
"logInTo": m35,
|
||||
"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,
|
||||
"numberSelected": m36,
|
||||
"ok": MessageLookupByLibrary.simpleMessage("u redu"),
|
||||
"onlineKeyBackupDisabled": MessageLookupByLibrary.simpleMessage(
|
||||
"Online sigurnosna kopija ključeva je deaktivirana"),
|
||||
|
@ -552,35 +552,35 @@ class MessageLookup extends MessageLookupByLibrary {
|
|||
"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,
|
||||
"play": m37,
|
||||
"redactedAnEvent": m38,
|
||||
"rejectedTheInvitation": m39,
|
||||
"removedBy": m40,
|
||||
"seenByUser": m41,
|
||||
"seenByUserAndCountOthers": m42,
|
||||
"seenByUserAndUser": m43,
|
||||
"sentAFile": m44,
|
||||
"sentAPicture": m45,
|
||||
"sentASticker": m46,
|
||||
"sentAVideo": m47,
|
||||
"sentAnAudio": m48,
|
||||
"sessionVerified":
|
||||
MessageLookupByLibrary.simpleMessage("Sesija je provjerena"),
|
||||
"sharedTheLocation": m48,
|
||||
"timeOfDay": m49,
|
||||
"sharedTheLocation": m49,
|
||||
"timeOfDay": m50,
|
||||
"title": MessageLookupByLibrary.simpleMessage("FluffyChat"),
|
||||
"unbannedUser": m50,
|
||||
"unknownEvent": m51,
|
||||
"unbannedUser": m51,
|
||||
"unknownEvent": m52,
|
||||
"unknownSessionVerify":
|
||||
MessageLookupByLibrary.simpleMessage("Nepoznata sesija, provjeri"),
|
||||
"unreadChats": m52,
|
||||
"unreadMessages": m53,
|
||||
"unreadMessagesInChats": m54,
|
||||
"userAndOthersAreTyping": m55,
|
||||
"userAndUserAreTyping": m56,
|
||||
"userIsTyping": m57,
|
||||
"userLeftTheChat": m58,
|
||||
"userSentUnknownEvent": m59,
|
||||
"unreadChats": m53,
|
||||
"unreadMessages": m54,
|
||||
"unreadMessagesInChats": m55,
|
||||
"userAndOthersAreTyping": m56,
|
||||
"userAndUserAreTyping": m57,
|
||||
"userIsTyping": m58,
|
||||
"userLeftTheChat": m59,
|
||||
"userSentUnknownEvent": m60,
|
||||
"verifiedSession":
|
||||
MessageLookupByLibrary.simpleMessage("Uspješno provjerena sesija!"),
|
||||
"verifyManual": MessageLookupByLibrary.simpleMessage("Provjeri ručno"),
|
||||
|
|
|
@ -24,139 +24,139 @@ 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) => "Elfogadod ${username} hitelesítési kérelmét?";
|
||||
|
||||
static m2(username, targetName) => "${username} kitiltotta ${targetName}-t";
|
||||
static m3(username, targetName) => "${username} kitiltotta ${targetName}-t";
|
||||
|
||||
static m3(homeserver) => "Alapértelmezésben ${homeserver}-hoz csatlakozol";
|
||||
static m4(homeserver) => "Alapértelmezésben ${homeserver}-hoz csatlakozol";
|
||||
|
||||
static m4(username) => "${username} módosította a csevegés képét";
|
||||
static m5(username) => "${username} módosította a csevegés képét";
|
||||
|
||||
static m5(username, description) =>
|
||||
static m6(username, description) =>
|
||||
"${username} módosította a csevegés leírását erre: \'${description}\'";
|
||||
|
||||
static m6(username, chatname) =>
|
||||
static m7(username, chatname) =>
|
||||
"${username} módosította a csevegés nevét erre: \'${chatname}\'";
|
||||
|
||||
static m7(username) => "${username} módosította a csevegési enegedélyeket";
|
||||
static m8(username) => "${username} módosította a csevegési enegedélyeket";
|
||||
|
||||
static m8(username, displayname) =>
|
||||
static m9(username, displayname) =>
|
||||
"${username} módosította a megjenelítési nevét erre: ${displayname}";
|
||||
|
||||
static m9(username) =>
|
||||
static m10(username) =>
|
||||
"${username} módosította a vendégek hozzáférési jogait";
|
||||
|
||||
static m10(username, rules) =>
|
||||
static m11(username, rules) =>
|
||||
"${username} módosította a vendégek hozzáférési jogait, így: ${rules}";
|
||||
|
||||
static m11(username) =>
|
||||
static m12(username) =>
|
||||
"${username} módosította a múltbéli események láthatóságát";
|
||||
|
||||
static m12(username, rules) =>
|
||||
static m13(username, rules) =>
|
||||
"${username} módosította a múltbéli események láthatóságát, így: ${rules}";
|
||||
|
||||
static m13(username) => "${username} módosított a csatlakozási szabályokat";
|
||||
static m14(username) => "${username} módosított a csatlakozási szabályokat";
|
||||
|
||||
static m14(username, joinRules) =>
|
||||
static m15(username, joinRules) =>
|
||||
"${username} módosította a csatlakozási szabályokat, így: ${joinRules}";
|
||||
|
||||
static m15(username) => "${username} módosította a profil képét";
|
||||
static m16(username) => "${username} módosította a profil képét";
|
||||
|
||||
static m16(username) => "${username} módosítottaa szoba álnevét";
|
||||
static m17(username) => "${username} módosítottaa szoba álnevét";
|
||||
|
||||
static m17(username) => "${username} módosította a meghívó linket";
|
||||
static m18(username) => "${username} módosította a meghívó linket";
|
||||
|
||||
static m18(error) =>
|
||||
static m19(error) =>
|
||||
"Nem sikerült visszafejteni a titkosított üzenetet: ${error}";
|
||||
|
||||
static m19(count) => "${count} résztvevő";
|
||||
static m20(count) => "${count} résztvevő";
|
||||
|
||||
static m20(username) => "${username} létrehozta a csevegést";
|
||||
static m21(username) => "${username} létrehozta a csevegést";
|
||||
|
||||
static m21(date, timeOfDay) => "${date}, ${timeOfDay}";
|
||||
static m22(date, timeOfDay) => "${date}, ${timeOfDay}";
|
||||
|
||||
static m22(year, month, day) => "${year}-${month}-${day}";
|
||||
static m23(year, month, day) => "${year}-${month}-${day}";
|
||||
|
||||
static m23(month, day) => "${month}-${day}";
|
||||
static m24(month, day) => "${month}-${day}";
|
||||
|
||||
static m24(displayname) => "Csoport ${displayname}-vel";
|
||||
static m25(displayname) => "Csoport ${displayname}-vel";
|
||||
|
||||
static m25(username, targetName) =>
|
||||
static m26(username, targetName) =>
|
||||
"${username} visszavonta ${targetName} meghívását";
|
||||
|
||||
static m26(groupName) => "Ismerős meghívása a ${groupName} csoportba";
|
||||
static m27(groupName) => "Ismerős meghívása a ${groupName} csoportba";
|
||||
|
||||
static m27(username, link) =>
|
||||
static m28(username, link) =>
|
||||
"${username} meghívott a FluffyChatre. \n1. FluffyChat telepítése: http://fluffy.chat \n2. Jelentkezz be vagy regisztrálj. \n3. Nyisd meg a meghívó linket: ${link}";
|
||||
|
||||
static m28(username, targetName) => "${username} meghívta ${targetName}-t";
|
||||
static m29(username, targetName) => "${username} meghívta ${targetName}-t";
|
||||
|
||||
static m29(username) => "${username} csatalakozott a csevegéshez";
|
||||
static m30(username) => "${username} csatalakozott a csevegéshez";
|
||||
|
||||
static m30(username, targetName) => "${username} kirúgta ${targetName}-t";
|
||||
static m31(username, targetName) => "${username} kirúgta ${targetName}-t";
|
||||
|
||||
static m31(username, targetName) =>
|
||||
static m32(username, targetName) =>
|
||||
"${username} kirúgta és kitiltotta ${targetName}-t";
|
||||
|
||||
static m32(localizedTimeShort) => "Utoljára aktív: ${localizedTimeShort}";
|
||||
static m33(localizedTimeShort) => "Utoljára aktív: ${localizedTimeShort}";
|
||||
|
||||
static m33(count) => "További ${count} résztvevő betöltése";
|
||||
static m34(count) => "További ${count} résztvevő betöltése";
|
||||
|
||||
static m34(homeserver) => "Bejelentkezés ${homeserver} Matrix szerverre";
|
||||
static m35(homeserver) => "Bejelentkezés ${homeserver} Matrix szerverre";
|
||||
|
||||
static m35(number) => "${number} kijelölve";
|
||||
static m36(number) => "${number} kijelölve";
|
||||
|
||||
static m36(fileName) => "${fileName} lejátszása";
|
||||
static m37(fileName) => "${fileName} lejátszása";
|
||||
|
||||
static m37(username) => "${username} visszavont egy eseményt";
|
||||
static m38(username) => "${username} visszavont egy eseményt";
|
||||
|
||||
static m38(username) => "${username} elutasította a meghívást";
|
||||
static m39(username) => "${username} elutasította a meghívást";
|
||||
|
||||
static m39(username) => "Törölve ${username} által";
|
||||
static m40(username) => "Törölve ${username} által";
|
||||
|
||||
static m40(username) => "${username} látta";
|
||||
static m41(username) => "${username} látta";
|
||||
|
||||
static m41(username, count) =>
|
||||
static m42(username, count) =>
|
||||
"${username} és ${count} másik résztvevő látta";
|
||||
|
||||
static m42(username, username2) => "${username} és ${username2} látta";
|
||||
static m43(username, username2) => "${username} és ${username2} látta";
|
||||
|
||||
static m43(username) => "${username} fájlt küldött";
|
||||
static m44(username) => "${username} fájlt küldött";
|
||||
|
||||
static m44(username) => "${username} képet küldött";
|
||||
static m45(username) => "${username} képet küldött";
|
||||
|
||||
static m45(username) => "${username} matricát küldött";
|
||||
static m46(username) => "${username} matricát küldött";
|
||||
|
||||
static m46(username) => "${username} videót küldött";
|
||||
static m47(username) => "${username} videót küldött";
|
||||
|
||||
static m47(username) => "${username} hangüzenetet küldött";
|
||||
static m48(username) => "${username} hangüzenetet küldött";
|
||||
|
||||
static m48(username) => "${username} megosztotta a pozícióját";
|
||||
static m49(username) => "${username} megosztotta a pozícióját";
|
||||
|
||||
static m49(hours12, hours24, minutes, suffix) => "${hours24}:${minutes}";
|
||||
static m50(hours12, hours24, minutes, suffix) => "${hours24}:${minutes}";
|
||||
|
||||
static m50(username, targetName) =>
|
||||
static m51(username, targetName) =>
|
||||
"${username} feloldotta ${targetName} kitiltását";
|
||||
|
||||
static m51(type) => "Ismeretlen esemény \'${type}\'";
|
||||
static m52(type) => "Ismeretlen esemény \'${type}\'";
|
||||
|
||||
static m52(unreadCount) => "${unreadCount} olvasatlan üzenet";
|
||||
static m53(unreadCount) => "${unreadCount} olvasatlan üzenet";
|
||||
|
||||
static m53(unreadEvents) => "${unreadEvents} olvasatlan üzenet";
|
||||
static m54(unreadEvents) => "${unreadEvents} olvasatlan üzenet";
|
||||
|
||||
static m54(unreadEvents, unreadChats) =>
|
||||
static m55(unreadEvents, unreadChats) =>
|
||||
"${unreadEvents} olvastlan üzenet van ${unreadChats}-ban";
|
||||
|
||||
static m55(username, count) =>
|
||||
static m56(username, count) =>
|
||||
"${username} és ${count} másik résztvevő gépel...";
|
||||
|
||||
static m56(username, username2) => "${username} és ${username2} gépel...";
|
||||
static m57(username, username2) => "${username} és ${username2} gépel...";
|
||||
|
||||
static m57(username) => "${username} gépel...";
|
||||
static m58(username) => "${username} gépel...";
|
||||
|
||||
static m58(username) => "${username} elhagyta a csevegést";
|
||||
static m59(username) => "${username} elhagyta a csevegést";
|
||||
|
||||
static m59(username, type) => "${username} ${type} eseményt küldött";
|
||||
static m60(username, type) => "${username} ${type} eseményt küldött";
|
||||
|
||||
final messages = _notInlinedMessages(_notInlinedMessages);
|
||||
static _notInlinedMessages(_) => <String, Function>{
|
||||
|
@ -490,71 +490,71 @@ class MessageLookup extends MessageLookupByLibrary {
|
|||
"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,
|
||||
"askVerificationRequest": m2,
|
||||
"bannedUser": m3,
|
||||
"byDefaultYouWillBeConnectedTo": m4,
|
||||
"cachedKeys": MessageLookupByLibrary.simpleMessage(
|
||||
"Sikeresen betöltöttük a kulcsokat!"),
|
||||
"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,
|
||||
"changedTheChatAvatar": m5,
|
||||
"changedTheChatDescriptionTo": m6,
|
||||
"changedTheChatNameTo": m7,
|
||||
"changedTheChatPermissions": m8,
|
||||
"changedTheDisplaynameTo": m9,
|
||||
"changedTheGuestAccessRules": m10,
|
||||
"changedTheGuestAccessRulesTo": m11,
|
||||
"changedTheHistoryVisibility": m12,
|
||||
"changedTheHistoryVisibilityTo": m13,
|
||||
"changedTheJoinRules": m14,
|
||||
"changedTheJoinRulesTo": m15,
|
||||
"changedTheProfileAvatar": m16,
|
||||
"changedTheRoomAliases": m17,
|
||||
"changedTheRoomInvitationLink": m18,
|
||||
"compareEmojiMatch": MessageLookupByLibrary.simpleMessage(
|
||||
"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,
|
||||
"couldNotDecryptMessage": m19,
|
||||
"countParticipants": m20,
|
||||
"createdTheChat": m21,
|
||||
"crossSigningDisabled":
|
||||
MessageLookupByLibrary.simpleMessage("Kereszt-Aláírás kikapcsolva"),
|
||||
"crossSigningEnabled":
|
||||
MessageLookupByLibrary.simpleMessage("Kereszt-Aláírás bekapcsolva"),
|
||||
"dateAndTimeOfDay": m21,
|
||||
"dateWithYear": m22,
|
||||
"dateWithoutYear": m23,
|
||||
"dateAndTimeOfDay": m22,
|
||||
"dateWithYear": m23,
|
||||
"dateWithoutYear": m24,
|
||||
"emoteExists":
|
||||
MessageLookupByLibrary.simpleMessage("A hangulatjel már létezik!"),
|
||||
"emoteInvalid":
|
||||
MessageLookupByLibrary.simpleMessage("Érvénytelen rövid kód!"),
|
||||
"emoteWarnNeedToPick": MessageLookupByLibrary.simpleMessage(
|
||||
"A hangulatjelhez válassz egy képet és egy rövid kód"),
|
||||
"groupWith": m24,
|
||||
"hasWithdrawnTheInvitationFor": m25,
|
||||
"groupWith": m25,
|
||||
"hasWithdrawnTheInvitationFor": m26,
|
||||
"incorrectPassphraseOrKey": MessageLookupByLibrary.simpleMessage(
|
||||
"Hibás jelszó vagy visszaállítási kulcs"),
|
||||
"inviteContactToGroup": m26,
|
||||
"inviteText": m27,
|
||||
"invitedUser": m28,
|
||||
"inviteContactToGroup": m27,
|
||||
"inviteText": m28,
|
||||
"invitedUser": m29,
|
||||
"is typing...": MessageLookupByLibrary.simpleMessage("gépel..."),
|
||||
"isDeviceKeyCorrect": MessageLookupByLibrary.simpleMessage(
|
||||
"Helyes az alábbi eszköz kulcs?"),
|
||||
"joinedTheChat": m29,
|
||||
"joinedTheChat": m30,
|
||||
"keysCached": MessageLookupByLibrary.simpleMessage("Kulcsok betöltve"),
|
||||
"keysMissing":
|
||||
MessageLookupByLibrary.simpleMessage("Kulcsok hiányoznak"),
|
||||
"kicked": m30,
|
||||
"kickedAndBanned": m31,
|
||||
"lastActiveAgo": m32,
|
||||
"loadCountMoreParticipants": m33,
|
||||
"logInTo": m34,
|
||||
"kicked": m31,
|
||||
"kickedAndBanned": m32,
|
||||
"lastActiveAgo": m33,
|
||||
"loadCountMoreParticipants": m34,
|
||||
"logInTo": m35,
|
||||
"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,
|
||||
"numberSelected": m36,
|
||||
"ok": MessageLookupByLibrary.simpleMessage("ok"),
|
||||
"onlineKeyBackupDisabled": MessageLookupByLibrary.simpleMessage(
|
||||
"Online Kulcs Archívum letiltva"),
|
||||
|
@ -562,35 +562,35 @@ class MessageLookup extends MessageLookupByLibrary {
|
|||
"Online Kulcs Archívum engedélyezve"),
|
||||
"passphraseOrKey": MessageLookupByLibrary.simpleMessage(
|
||||
"Jelszó vagy visszaállítási kulcs"),
|
||||
"play": m36,
|
||||
"redactedAnEvent": m37,
|
||||
"rejectedTheInvitation": m38,
|
||||
"removedBy": m39,
|
||||
"seenByUser": m40,
|
||||
"seenByUserAndCountOthers": m41,
|
||||
"seenByUserAndUser": m42,
|
||||
"sentAFile": m43,
|
||||
"sentAPicture": m44,
|
||||
"sentASticker": m45,
|
||||
"sentAVideo": m46,
|
||||
"sentAnAudio": m47,
|
||||
"play": m37,
|
||||
"redactedAnEvent": m38,
|
||||
"rejectedTheInvitation": m39,
|
||||
"removedBy": m40,
|
||||
"seenByUser": m41,
|
||||
"seenByUserAndCountOthers": m42,
|
||||
"seenByUserAndUser": m43,
|
||||
"sentAFile": m44,
|
||||
"sentAPicture": m45,
|
||||
"sentASticker": m46,
|
||||
"sentAVideo": m47,
|
||||
"sentAnAudio": m48,
|
||||
"sessionVerified":
|
||||
MessageLookupByLibrary.simpleMessage("Munkamenet hitelesítve"),
|
||||
"sharedTheLocation": m48,
|
||||
"timeOfDay": m49,
|
||||
"sharedTheLocation": m49,
|
||||
"timeOfDay": m50,
|
||||
"title": MessageLookupByLibrary.simpleMessage("FluffyChat"),
|
||||
"unbannedUser": m50,
|
||||
"unknownEvent": m51,
|
||||
"unbannedUser": m51,
|
||||
"unknownEvent": m52,
|
||||
"unknownSessionVerify": MessageLookupByLibrary.simpleMessage(
|
||||
"Ismeretlen munkamenet, kérlek hitelesítsd"),
|
||||
"unreadChats": m52,
|
||||
"unreadMessages": m53,
|
||||
"unreadMessagesInChats": m54,
|
||||
"userAndOthersAreTyping": m55,
|
||||
"userAndUserAreTyping": m56,
|
||||
"userIsTyping": m57,
|
||||
"userLeftTheChat": m58,
|
||||
"userSentUnknownEvent": m59,
|
||||
"unreadChats": m53,
|
||||
"unreadMessages": m54,
|
||||
"unreadMessagesInChats": m55,
|
||||
"userAndOthersAreTyping": m56,
|
||||
"userAndUserAreTyping": m57,
|
||||
"userIsTyping": m58,
|
||||
"userLeftTheChat": m59,
|
||||
"userSentUnknownEvent": m60,
|
||||
"verifiedSession": MessageLookupByLibrary.simpleMessage(
|
||||
"Sikeresen hitelesítetted a munkamenetedet!"),
|
||||
"verifyManual":
|
||||
|
|
|
@ -19,131 +19,131 @@ typedef String MessageIfAbsent(String messageStr, List<dynamic> args);
|
|||
class MessageLookup extends MessageLookupByLibrary {
|
||||
String get localeName => 'ja';
|
||||
|
||||
static m0(username) => "${username} が招待を承諾しました";
|
||||
static m0(username) => "${username}が招待を承諾しました";
|
||||
|
||||
static m1(username) => "${username} がエンドツーエンド暗号化を有効にしました";
|
||||
static m1(username) => "${username}がエンドツーエンド暗号化を有効にしました";
|
||||
|
||||
static m60(username) => "${username} の検証リクエストを承認しますか?";
|
||||
static m2(username) => "${username}の検証リクエストを承認しますか?";
|
||||
|
||||
static m2(username, targetName) => "${username}が${targetName}をBANしました";
|
||||
static m3(username, targetName) => "${username}が${targetName}をBANしました";
|
||||
|
||||
static m3(homeserver) => "デフォルトで${homeserver}に接続されます";
|
||||
static m4(homeserver) => "デフォルトで${homeserver}に接続されます";
|
||||
|
||||
static m4(username) => "${username}がチャットアバターを変更しました";
|
||||
static m5(username) => "${username}がチャットアバターを変更しました";
|
||||
|
||||
static m5(username, description) =>
|
||||
static m6(username, description) =>
|
||||
"${username}がチャットの説明を「${description}」に変更しました";
|
||||
|
||||
static m6(username, chatname) => "${username}がチャットの名前を「${chatname}」に変更しました";
|
||||
static m7(username, chatname) => "${username}がチャットの名前を「${chatname}」に変更しました";
|
||||
|
||||
static m7(username) => "${username}がチャットの権限を変更しました";
|
||||
static m8(username) => "${username}がチャットの権限を変更しました";
|
||||
|
||||
static m8(username, displayname) => "${username}が表示名を「${displayname}」に変更しました";
|
||||
static m9(username, displayname) => "${username}が表示名を「${displayname}」に変更しました";
|
||||
|
||||
static m9(username) => "${username}がゲストのアクセスルールを変更しました";
|
||||
static m10(username) => "${username}がゲストのアクセスルールを変更しました";
|
||||
|
||||
static m10(username, rules) => "${username}がゲストのアクセスルールを${rules}に変更しました";
|
||||
static m11(username, rules) => "${username}がゲストのアクセスルールを${rules}に変更しました";
|
||||
|
||||
static m11(username) => "${username}が履歴の表示設定を変更しました";
|
||||
static m12(username) => "${username}が履歴の表示設定を変更しました";
|
||||
|
||||
static m12(username, rules) => "${username}が履歴の表示設定を${rules}に変更しました";
|
||||
static m13(username, rules) => "${username}が履歴の表示設定を${rules}に変更しました";
|
||||
|
||||
static m13(username) => "${username}が参加ルールを変更しました";
|
||||
static m14(username) => "${username}が参加ルールを変更しました";
|
||||
|
||||
static m14(username, joinRules) => "${username}が参加ルールを${joinRules}に変更しました";
|
||||
static m15(username, joinRules) => "${username}が参加ルールを${joinRules}に変更しました";
|
||||
|
||||
static m15(username) => "${username}がプロフィールのアバターを変更しました";
|
||||
static m16(username) => "${username}がプロフィールのアバターを変更しました";
|
||||
|
||||
static m16(username) => "${username}が部屋のエイリアスを変更しました";
|
||||
static m17(username) => "${username}が部屋のエイリアスを変更しました";
|
||||
|
||||
static m17(username) => "${username}が招待リンクを変更しました";
|
||||
static m18(username) => "${username}が招待リンクを変更しました";
|
||||
|
||||
static m18(error) => "メッセージを解読できませんでした: ${error}";
|
||||
static m19(error) => "メッセージを解読できませんでした: ${error}";
|
||||
|
||||
static m19(count) => "${count}名の参加者";
|
||||
static m20(count) => "${count}名の参加者";
|
||||
|
||||
static m20(username) => "${username}がチャットを作成しました";
|
||||
static m21(username) => "${username}がチャットを作成しました";
|
||||
|
||||
static m21(date, timeOfDay) => "${date}, ${timeOfDay}";
|
||||
static m22(date, timeOfDay) => "${date}, ${timeOfDay}";
|
||||
|
||||
static m22(year, month, day) => "${year}-${month}-${day}";
|
||||
static m23(year, month, day) => "${year}-${month}-${day}";
|
||||
|
||||
static m23(month, day) => "${month}-${day}";
|
||||
static m24(month, day) => "${month}-${day}";
|
||||
|
||||
static m24(displayname) => "${displayname}とグループを作成する";
|
||||
static m25(displayname) => "${displayname}とグループを作成する";
|
||||
|
||||
static m25(username, targetName) => "${targetName}の招待を${username}が取り下げました";
|
||||
static m26(username, targetName) => "${targetName}の招待を${username}が取り下げました";
|
||||
|
||||
static m26(groupName) => "連絡先から${groupName}に招待する";
|
||||
static m27(groupName) => "連絡先から${groupName}に招待する";
|
||||
|
||||
static m27(username, link) =>
|
||||
static m28(username, link) =>
|
||||
"${username}がFluffyChatにあなたを招待しました. \n1. FluffyChatをインストールしてください: http://fluffy.chat \n2. 新しくアカウントを作成するかサインインしてください\n3. 招待リンクを開いてください: ${link}";
|
||||
|
||||
static m28(username, targetName) => "${username}が${targetName}を招待しました";
|
||||
static m29(username, targetName) => "${username}が${targetName}を招待しました";
|
||||
|
||||
static m29(username) => "${username}がチャットに参加しました";
|
||||
static m30(username) => "${username}がチャットに参加しました";
|
||||
|
||||
static m30(username, targetName) => "${username}は${targetName}をキックしました";
|
||||
static m31(username, targetName) => "${username}は${targetName}をキックしました";
|
||||
|
||||
static m31(username, targetName) => "${username}は${targetName}をキックしBANしました";
|
||||
static m32(username, targetName) => "${username}は${targetName}をキックしBANしました";
|
||||
|
||||
static m32(localizedTimeShort) => "最終アクティブ: ${localizedTimeShort}";
|
||||
static m33(localizedTimeShort) => "最終アクティブ: ${localizedTimeShort}";
|
||||
|
||||
static m33(count) => "あと${count}名参加者を読み込む";
|
||||
static m34(count) => "あと${count}名参加者を読み込む";
|
||||
|
||||
static m34(homeserver) => "${homeserver}にログインする";
|
||||
static m35(homeserver) => "${homeserver}にログインする";
|
||||
|
||||
static m35(number) => "${number}選択されています";
|
||||
static m36(number) => "${number}選択されています";
|
||||
|
||||
static m36(fileName) => "${fileName}を再生する";
|
||||
static m37(fileName) => "${fileName}を再生する";
|
||||
|
||||
static m37(username) => "${username}がイベントを編集しました";
|
||||
static m38(username) => "${username}がイベントを編集しました";
|
||||
|
||||
static m38(username) => "${username}は招待を拒否しました";
|
||||
static m39(username) => "${username}は招待を拒否しました";
|
||||
|
||||
static m39(username) => "${username}によって削除されました";
|
||||
static m40(username) => "${username}によって削除されました";
|
||||
|
||||
static m40(username) => "${username}が既読";
|
||||
static m41(username) => "${username}が既読";
|
||||
|
||||
static m41(username, count) => "${username}と他${count}名が既読";
|
||||
static m42(username, count) => "${username}と他${count}名が既読";
|
||||
|
||||
static m42(username, username2) => "${username}と${username2}が既読";
|
||||
static m43(username, username2) => "${username}と${username2}が既読";
|
||||
|
||||
static m43(username) => "${username}はファイルを送信しました";
|
||||
static m44(username) => "${username}はファイルを送信しました";
|
||||
|
||||
static m44(username) => "${username}は画像を送信しました";
|
||||
static m45(username) => "${username}は画像を送信しました";
|
||||
|
||||
static m45(username) => "${username}はステッカーを送信しました";
|
||||
static m46(username) => "${username}はステッカーを送信しました";
|
||||
|
||||
static m46(username) => "${username}は動画を送信しました";
|
||||
static m47(username) => "${username}は動画を送信しました";
|
||||
|
||||
static m47(username) => "${username}は音声を送信しました";
|
||||
static m48(username) => "${username}は音声を送信しました";
|
||||
|
||||
static m48(username) => "${username}は現在地を共有しました";
|
||||
static m49(username) => "${username}は現在地を共有しました";
|
||||
|
||||
static m49(hours12, hours24, minutes, suffix) =>
|
||||
static m50(hours12, hours24, minutes, suffix) =>
|
||||
"${hours24}:${minutes} ${suffix}";
|
||||
|
||||
static m50(username, targetName) => "${username}が${targetName}のBANを解除しました";
|
||||
static m51(username, targetName) => "${username}が${targetName}のBANを解除しました";
|
||||
|
||||
static m51(type) => "未知のイベント\'${type}\'";
|
||||
static m52(type) => "未知のイベント\'${type}\'";
|
||||
|
||||
static m52(unreadCount) => "${unreadCount}の未読メッセージ";
|
||||
static m53(unreadCount) => "${unreadCount}の未読メッセージ";
|
||||
|
||||
static m53(unreadEvents) => "${unreadEvents}件の未読メッセージ";
|
||||
static m54(unreadEvents) => "${unreadEvents}件の未読メッセージ";
|
||||
|
||||
static m54(unreadEvents, unreadChats) =>
|
||||
static m55(unreadEvents, unreadChats) =>
|
||||
"${unreadChats}で${unreadEvents}件の未読メッセージ";
|
||||
|
||||
static m55(username, count) => "${username}と他${count}名が入力しています...";
|
||||
static m56(username, count) => "${username}と他${count}名が入力しています...";
|
||||
|
||||
static m56(username, username2) => "${username}と${username2}が入力しています...";
|
||||
static m57(username, username2) => "${username}と${username2}が入力しています...";
|
||||
|
||||
static m57(username) => "${username}が入力しています...";
|
||||
static m58(username) => "${username}が入力しています...";
|
||||
|
||||
static m58(username) => "${username}は退室しました";
|
||||
static m59(username) => "${username}は退室しました";
|
||||
|
||||
static m59(username, type) => "${username}は${type}イベントを送信しました";
|
||||
static m60(username, type) => "${username}は${type}イベントを送信しました";
|
||||
|
||||
final messages = _notInlinedMessages(_notInlinedMessages);
|
||||
static _notInlinedMessages(_) => <String, Function>{
|
||||
|
@ -158,7 +158,7 @@ class MessageLookup extends MessageLookupByLibrary {
|
|||
"Admin": MessageLookupByLibrary.simpleMessage("管理者"),
|
||||
"Already have an account?":
|
||||
MessageLookupByLibrary.simpleMessage("アカウントをすでにお持ちですか?"),
|
||||
"Anyone can join": MessageLookupByLibrary.simpleMessage("誰でも参加できます"),
|
||||
"Anyone can join": MessageLookupByLibrary.simpleMessage("誰でも参加できる"),
|
||||
"Archive": MessageLookupByLibrary.simpleMessage("アーカイブ"),
|
||||
"Archived Room": MessageLookupByLibrary.simpleMessage("アーカイブされた部屋"),
|
||||
"Are guest users allowed to join":
|
||||
|
@ -186,7 +186,7 @@ class MessageLookup extends MessageLookupByLibrary {
|
|||
"Choose a username":
|
||||
MessageLookupByLibrary.simpleMessage("ユーザー名を選択してください"),
|
||||
"Close": MessageLookupByLibrary.simpleMessage("閉じる"),
|
||||
"Confirm": MessageLookupByLibrary.simpleMessage("確認しました"),
|
||||
"Confirm": MessageLookupByLibrary.simpleMessage("確認"),
|
||||
"Connect": MessageLookupByLibrary.simpleMessage("接続"),
|
||||
"Connection attempt failed":
|
||||
MessageLookupByLibrary.simpleMessage("接続が失敗しました"),
|
||||
|
@ -244,8 +244,9 @@ class MessageLookup extends MessageLookupByLibrary {
|
|||
"FluffyChat": MessageLookupByLibrary.simpleMessage("FluffyChat"),
|
||||
"Forward": MessageLookupByLibrary.simpleMessage("進む"),
|
||||
"Friday": MessageLookupByLibrary.simpleMessage("金曜日"),
|
||||
"From joining": MessageLookupByLibrary.simpleMessage("参加から"),
|
||||
"From the invitation": MessageLookupByLibrary.simpleMessage("招待から"),
|
||||
"From joining": MessageLookupByLibrary.simpleMessage("参加時点から閲覧可能"),
|
||||
"From the invitation":
|
||||
MessageLookupByLibrary.simpleMessage("招待時点から閲覧可能"),
|
||||
"Group": MessageLookupByLibrary.simpleMessage("グループ"),
|
||||
"Group description": MessageLookupByLibrary.simpleMessage("グループの説明"),
|
||||
"Group description has been changed":
|
||||
|
@ -276,11 +277,11 @@ class MessageLookup extends MessageLookupByLibrary {
|
|||
"Light": MessageLookupByLibrary.simpleMessage("ライト"),
|
||||
"Load more...": MessageLookupByLibrary.simpleMessage("更に読み込む..."),
|
||||
"Loading... Please wait":
|
||||
MessageLookupByLibrary.simpleMessage("読み込み中...お待ちください。"),
|
||||
MessageLookupByLibrary.simpleMessage("読み込み中...お待ちください"),
|
||||
"Login": MessageLookupByLibrary.simpleMessage("ログイン"),
|
||||
"Logout": MessageLookupByLibrary.simpleMessage("ログアウト"),
|
||||
"Make a moderator": MessageLookupByLibrary.simpleMessage("モデレータを作成する"),
|
||||
"Make an admin": 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":
|
||||
|
@ -342,8 +343,7 @@ class MessageLookup extends MessageLookupByLibrary {
|
|||
MessageLookupByLibrary.simpleMessage("部屋はアップグレードされました"),
|
||||
"Saturday": MessageLookupByLibrary.simpleMessage("土曜日"),
|
||||
"Search for a chat": MessageLookupByLibrary.simpleMessage("チャットを検索する"),
|
||||
"Seen a long time ago":
|
||||
MessageLookupByLibrary.simpleMessage("ずいぶん前に既読"),
|
||||
"Seen a long time ago": MessageLookupByLibrary.simpleMessage("ずいぶん前"),
|
||||
"Send": MessageLookupByLibrary.simpleMessage("送信"),
|
||||
"Send a message": MessageLookupByLibrary.simpleMessage("メッセージを送信"),
|
||||
"Send file": MessageLookupByLibrary.simpleMessage("ファイルを送信"),
|
||||
|
@ -372,7 +372,7 @@ class MessageLookup extends MessageLookupByLibrary {
|
|||
"They Don\'t Match": MessageLookupByLibrary.simpleMessage("違います"),
|
||||
"They Match": MessageLookupByLibrary.simpleMessage("一致しています"),
|
||||
"This room has been archived.":
|
||||
MessageLookupByLibrary.simpleMessage("この部屋はアーカイブされています"),
|
||||
MessageLookupByLibrary.simpleMessage("この部屋はアーカイブされています。"),
|
||||
"Thursday": MessageLookupByLibrary.simpleMessage("木曜日"),
|
||||
"Try to send again": MessageLookupByLibrary.simpleMessage("送信し直してみる"),
|
||||
"Tuesday": MessageLookupByLibrary.simpleMessage("火曜日"),
|
||||
|
@ -390,15 +390,15 @@ class MessageLookup extends MessageLookupByLibrary {
|
|||
"Visibility of the chat history":
|
||||
MessageLookupByLibrary.simpleMessage("チャット履歴の表示"),
|
||||
"Visible for all participants":
|
||||
MessageLookupByLibrary.simpleMessage("すべての参加者が閲覧可能です"),
|
||||
MessageLookupByLibrary.simpleMessage("すべての参加者が閲覧可能"),
|
||||
"Visible for everyone":
|
||||
MessageLookupByLibrary.simpleMessage("すべての人が閲覧可能です"),
|
||||
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ネットワークで一番かわいいチャットアプリへようこそ!"),
|
||||
"Matrixネットワークで一番かわいいチャットアプリへようこそ。"),
|
||||
"Who is allowed to join this group":
|
||||
MessageLookupByLibrary.simpleMessage("誰がこのチャットに入れますか"),
|
||||
"Write a message...":
|
||||
|
@ -426,67 +426,68 @@ class MessageLookup extends MessageLookupByLibrary {
|
|||
"他の人を署名するためにはパスフレーズやリカバリーキーを入力してください。"),
|
||||
"askSSSSVerify": MessageLookupByLibrary.simpleMessage(
|
||||
"セッションを検証するためにはパスフレーズやリカバリーキーを入力してください。"),
|
||||
"askVerificationRequest": m60,
|
||||
"bannedUser": m2,
|
||||
"byDefaultYouWillBeConnectedTo": m3,
|
||||
"askVerificationRequest": m2,
|
||||
"bannedUser": m3,
|
||||
"byDefaultYouWillBeConnectedTo": m4,
|
||||
"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,
|
||||
"changedTheChatAvatar": m5,
|
||||
"changedTheChatDescriptionTo": m6,
|
||||
"changedTheChatNameTo": m7,
|
||||
"changedTheChatPermissions": m8,
|
||||
"changedTheDisplaynameTo": m9,
|
||||
"changedTheGuestAccessRules": m10,
|
||||
"changedTheGuestAccessRulesTo": m11,
|
||||
"changedTheHistoryVisibility": m12,
|
||||
"changedTheHistoryVisibilityTo": m13,
|
||||
"changedTheJoinRules": m14,
|
||||
"changedTheJoinRulesTo": m15,
|
||||
"changedTheProfileAvatar": m16,
|
||||
"changedTheRoomAliases": m17,
|
||||
"changedTheRoomInvitationLink": m18,
|
||||
"compareEmojiMatch": MessageLookupByLibrary.simpleMessage(
|
||||
"表示されている絵文字が他のデバイスで表示されているものと一致するか確認してください"),
|
||||
"表示されている絵文字が他のデバイスで表示されているものと一致するか確認してください:"),
|
||||
"compareNumbersMatch": MessageLookupByLibrary.simpleMessage(
|
||||
"表示されている数字が他のデバイスで表示されているものと一致するか確認してください"),
|
||||
"couldNotDecryptMessage": m18,
|
||||
"countParticipants": m19,
|
||||
"createdTheChat": m20,
|
||||
"表示されている数字が他のデバイスで表示されているものと一致するか確認してください:"),
|
||||
"couldNotDecryptMessage": m19,
|
||||
"countParticipants": m20,
|
||||
"createdTheChat": m21,
|
||||
"crossSigningDisabled":
|
||||
MessageLookupByLibrary.simpleMessage("相互署名は使えません"),
|
||||
"crossSigningEnabled":
|
||||
MessageLookupByLibrary.simpleMessage("相互署名が使えます"),
|
||||
"dateAndTimeOfDay": m21,
|
||||
"dateWithYear": m22,
|
||||
"dateWithoutYear": m23,
|
||||
"dateAndTimeOfDay": m22,
|
||||
"dateWithYear": m23,
|
||||
"dateWithoutYear": m24,
|
||||
"emoteExists": MessageLookupByLibrary.simpleMessage("Emoteはすでに存在します!"),
|
||||
"emoteInvalid": MessageLookupByLibrary.simpleMessage("不正なEmoteショートコード"),
|
||||
"emoteInvalid":
|
||||
MessageLookupByLibrary.simpleMessage("不正なEmoteショートコード!"),
|
||||
"emoteWarnNeedToPick":
|
||||
MessageLookupByLibrary.simpleMessage("Emoteショートコードと画像を選択してください!"),
|
||||
"groupWith": m24,
|
||||
"hasWithdrawnTheInvitationFor": m25,
|
||||
"groupWith": m25,
|
||||
"hasWithdrawnTheInvitationFor": m26,
|
||||
"incorrectPassphraseOrKey":
|
||||
MessageLookupByLibrary.simpleMessage("パスフレーズかリカバリーキーが間違っています"),
|
||||
"inviteContactToGroup": m26,
|
||||
"inviteText": m27,
|
||||
"invitedUser": m28,
|
||||
"is typing...": MessageLookupByLibrary.simpleMessage("が入力しています..."),
|
||||
"inviteContactToGroup": m27,
|
||||
"inviteText": m28,
|
||||
"invitedUser": m29,
|
||||
"is typing...": MessageLookupByLibrary.simpleMessage("入力しています..."),
|
||||
"isDeviceKeyCorrect":
|
||||
MessageLookupByLibrary.simpleMessage("このデバイスキーは正しいですか?"),
|
||||
"joinedTheChat": m29,
|
||||
"joinedTheChat": m30,
|
||||
"keysCached": MessageLookupByLibrary.simpleMessage("鍵はキャッシュされたいます"),
|
||||
"keysMissing": MessageLookupByLibrary.simpleMessage("鍵がありません"),
|
||||
"kicked": m30,
|
||||
"kickedAndBanned": m31,
|
||||
"lastActiveAgo": m32,
|
||||
"loadCountMoreParticipants": m33,
|
||||
"logInTo": m34,
|
||||
"kicked": m31,
|
||||
"kickedAndBanned": m32,
|
||||
"lastActiveAgo": m33,
|
||||
"loadCountMoreParticipants": m34,
|
||||
"logInTo": m35,
|
||||
"newVerificationRequest":
|
||||
MessageLookupByLibrary.simpleMessage("新しい認証リクエスト"),
|
||||
MessageLookupByLibrary.simpleMessage("新しい認証リクエスト!"),
|
||||
"noCrossSignBootstrap": MessageLookupByLibrary.simpleMessage(
|
||||
"FluffyChatは現在相互署名機能をサポートしていません。Elementから有効化してください。"),
|
||||
"noMegolmBootstrap": MessageLookupByLibrary.simpleMessage(
|
||||
"FluffyChatは現在鍵のオンラインバックアップの有効化をサポートしていません。Elementから有効化してください。"),
|
||||
"numberSelected": m35,
|
||||
"numberSelected": m36,
|
||||
"ok": MessageLookupByLibrary.simpleMessage("OK"),
|
||||
"onlineKeyBackupDisabled":
|
||||
MessageLookupByLibrary.simpleMessage("オンライン鍵バックアップは使用されていません"),
|
||||
|
@ -494,34 +495,34 @@ class MessageLookup extends MessageLookupByLibrary {
|
|||
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,
|
||||
"play": m37,
|
||||
"redactedAnEvent": m38,
|
||||
"rejectedTheInvitation": m39,
|
||||
"removedBy": m40,
|
||||
"seenByUser": m41,
|
||||
"seenByUserAndCountOthers": m42,
|
||||
"seenByUserAndUser": m43,
|
||||
"sentAFile": m44,
|
||||
"sentAPicture": m45,
|
||||
"sentASticker": m46,
|
||||
"sentAVideo": m47,
|
||||
"sentAnAudio": m48,
|
||||
"sessionVerified": MessageLookupByLibrary.simpleMessage("セッションは確認済みです"),
|
||||
"sharedTheLocation": m48,
|
||||
"timeOfDay": m49,
|
||||
"sharedTheLocation": m49,
|
||||
"timeOfDay": m50,
|
||||
"title": MessageLookupByLibrary.simpleMessage("FluffyChat"),
|
||||
"unbannedUser": m50,
|
||||
"unknownEvent": m51,
|
||||
"unbannedUser": m51,
|
||||
"unknownEvent": m52,
|
||||
"unknownSessionVerify":
|
||||
MessageLookupByLibrary.simpleMessage("未知のセッションです。確認してください。"),
|
||||
"unreadChats": m52,
|
||||
"unreadMessages": m53,
|
||||
"unreadMessagesInChats": m54,
|
||||
"userAndOthersAreTyping": m55,
|
||||
"userAndUserAreTyping": m56,
|
||||
"userIsTyping": m57,
|
||||
"userLeftTheChat": m58,
|
||||
"userSentUnknownEvent": m59,
|
||||
"unreadChats": m53,
|
||||
"unreadMessages": m54,
|
||||
"unreadMessagesInChats": m55,
|
||||
"userAndOthersAreTyping": m56,
|
||||
"userAndUserAreTyping": m57,
|
||||
"userIsTyping": m58,
|
||||
"userLeftTheChat": m59,
|
||||
"userSentUnknownEvent": m60,
|
||||
"verifiedSession":
|
||||
MessageLookupByLibrary.simpleMessage("セッションの確認ができました!"),
|
||||
"verifyManual": MessageLookupByLibrary.simpleMessage("手動で確認"),
|
||||
|
@ -529,10 +530,10 @@ class MessageLookup extends MessageLookupByLibrary {
|
|||
"verifySuccess": MessageLookupByLibrary.simpleMessage("確認が完了しました!"),
|
||||
"verifyTitle": MessageLookupByLibrary.simpleMessage("他のアカウントを確認中"),
|
||||
"waitingPartnerAcceptRequest":
|
||||
MessageLookupByLibrary.simpleMessage("パートナーのリクエスト承諾待ちです"),
|
||||
MessageLookupByLibrary.simpleMessage("パートナーのリクエスト承諾待ちです..."),
|
||||
"waitingPartnerEmoji":
|
||||
MessageLookupByLibrary.simpleMessage("パートナーの絵文字承諾待ちです..."),
|
||||
"waitingPartnerNumbers":
|
||||
MessageLookupByLibrary.simpleMessage("パートナーの数字承諾待ちです")
|
||||
MessageLookupByLibrary.simpleMessage("パートナーの数字承諾待ちです...")
|
||||
};
|
||||
}
|
||||
|
|
|
@ -23,136 +23,136 @@ class MessageLookup extends MessageLookupByLibrary {
|
|||
|
||||
static m1(username) => "${username} activated end to end encryption";
|
||||
|
||||
static m60(username) => "Accept this verification request from ${username}?";
|
||||
static m2(username) => "Accept this verification request from ${username}?";
|
||||
|
||||
static m2(username, targetName) => "${username} banned ${targetName}";
|
||||
static m3(username, targetName) => "${username} banned ${targetName}";
|
||||
|
||||
static m3(homeserver) => "By default you will be connected to ${homeserver}";
|
||||
static m4(homeserver) => "By default you will be connected to ${homeserver}";
|
||||
|
||||
static m4(username) => "${username} changed the chat avatar";
|
||||
static m5(username) => "${username} changed the chat avatar";
|
||||
|
||||
static m5(username, description) =>
|
||||
static m6(username, description) =>
|
||||
"${username} changed the chat description to: \'${description}\'";
|
||||
|
||||
static m6(username, chatname) =>
|
||||
static m7(username, chatname) =>
|
||||
"${username} changed the chat name to: \'${chatname}\'";
|
||||
|
||||
static m7(username) => "${username} changed the chat permissions";
|
||||
static m8(username) => "${username} changed the chat permissions";
|
||||
|
||||
static m8(username, displayname) =>
|
||||
static m9(username, displayname) =>
|
||||
"${username} changed the displayname to: ${displayname}";
|
||||
|
||||
static m9(username) => "${username} changed the guest access rules";
|
||||
static m10(username) => "${username} changed the guest access rules";
|
||||
|
||||
static m10(username, rules) =>
|
||||
static m11(username, rules) =>
|
||||
"${username} changed the guest access rules to: ${rules}";
|
||||
|
||||
static m11(username) => "${username} changed the history visibility";
|
||||
static m12(username) => "${username} changed the history visibility";
|
||||
|
||||
static m12(username, rules) =>
|
||||
static m13(username, rules) =>
|
||||
"${username} changed the history visibility to: ${rules}";
|
||||
|
||||
static m13(username) => "${username} changed the join rules";
|
||||
static m14(username) => "${username} changed the join rules";
|
||||
|
||||
static m14(username, joinRules) =>
|
||||
static m15(username, joinRules) =>
|
||||
"${username} changed the join rules to: ${joinRules}";
|
||||
|
||||
static m15(username) => "${username} changed their avatar";
|
||||
static m16(username) => "${username} changed their avatar";
|
||||
|
||||
static m16(username) => "${username} changed the room aliases";
|
||||
static m17(username) => "${username} changed the room aliases";
|
||||
|
||||
static m17(username) => "${username} changed the invitation link";
|
||||
static m18(username) => "${username} changed the invitation link";
|
||||
|
||||
static m18(error) => "Could not decrypt message: ${error}";
|
||||
static m19(error) => "Could not decrypt message: ${error}";
|
||||
|
||||
static m19(count) => "${count} participants";
|
||||
static m20(count) => "${count} participants";
|
||||
|
||||
static m20(username) => "${username} created the chat";
|
||||
static m21(username) => "${username} created the chat";
|
||||
|
||||
static m21(date, timeOfDay) => "${date}, ${timeOfDay}";
|
||||
static m22(date, timeOfDay) => "${date}, ${timeOfDay}";
|
||||
|
||||
static m22(year, month, day) => "${year}-${month}-${day}";
|
||||
static m23(year, month, day) => "${year}-${month}-${day}";
|
||||
|
||||
static m23(month, day) => "${month}-${day}";
|
||||
static m24(month, day) => "${month}-${day}";
|
||||
|
||||
static m24(displayname) => "Group with ${displayname}";
|
||||
static m25(displayname) => "Group with ${displayname}";
|
||||
|
||||
static m25(username, targetName) =>
|
||||
static m26(username, targetName) =>
|
||||
"${username} has withdrawn the invitation for ${targetName}";
|
||||
|
||||
static m26(groupName) => "Invite contact to ${groupName}";
|
||||
static m27(groupName) => "Invite contact to ${groupName}";
|
||||
|
||||
static m27(username, link) =>
|
||||
static m28(username, link) =>
|
||||
"${username} invited you to FluffyChat. \n1. Install FluffyChat: http://fluffy.chat \n2. Sign up or sign in \n3. Open the invite link: ${link}";
|
||||
|
||||
static m28(username, targetName) => "${username} invited ${targetName}";
|
||||
static m29(username, targetName) => "${username} invited ${targetName}";
|
||||
|
||||
static m29(username) => "${username} joined the chat";
|
||||
static m30(username) => "${username} joined the chat";
|
||||
|
||||
static m30(username, targetName) => "${username} kicked ${targetName}";
|
||||
static m31(username, targetName) => "${username} kicked ${targetName}";
|
||||
|
||||
static m31(username, targetName) =>
|
||||
static m32(username, targetName) =>
|
||||
"${username} kicked and banned ${targetName}";
|
||||
|
||||
static m32(localizedTimeShort) => "Last active: ${localizedTimeShort}";
|
||||
static m33(localizedTimeShort) => "Last active: ${localizedTimeShort}";
|
||||
|
||||
static m33(count) => "Load ${count} more participants";
|
||||
static m34(count) => "Load ${count} more participants";
|
||||
|
||||
static m34(homeserver) => "Log in to ${homeserver}";
|
||||
static m35(homeserver) => "Log in to ${homeserver}";
|
||||
|
||||
static m35(number) => "${number} selected";
|
||||
static m36(number) => "${number} selected";
|
||||
|
||||
static m36(fileName) => "Play ${fileName}";
|
||||
static m37(fileName) => "Play ${fileName}";
|
||||
|
||||
static m37(username) => "${username} redacted an event";
|
||||
static m38(username) => "${username} redacted an event";
|
||||
|
||||
static m38(username) => "${username} rejected the invitation";
|
||||
static m39(username) => "${username} rejected the invitation";
|
||||
|
||||
static m39(username) => "Removed by ${username}";
|
||||
static m40(username) => "Removed by ${username}";
|
||||
|
||||
static m40(username) => "Seen by ${username}";
|
||||
static m41(username) => "Seen by ${username}";
|
||||
|
||||
static m41(username, count) => "Seen by ${username} and ${count} others";
|
||||
static m42(username, count) => "Seen by ${username} and ${count} others";
|
||||
|
||||
static m42(username, username2) => "Seen by ${username} and ${username2}";
|
||||
static m43(username, username2) => "Seen by ${username} and ${username2}";
|
||||
|
||||
static m43(username) => "${username} sent a file";
|
||||
static m44(username) => "${username} sent a file";
|
||||
|
||||
static m44(username) => "${username} sent a picture";
|
||||
static m45(username) => "${username} sent a picture";
|
||||
|
||||
static m45(username) => "${username} sent a sticker";
|
||||
static m46(username) => "${username} sent a sticker";
|
||||
|
||||
static m46(username) => "${username} sent a video";
|
||||
static m47(username) => "${username} sent a video";
|
||||
|
||||
static m47(username) => "${username} sent an audio";
|
||||
static m48(username) => "${username} sent an audio";
|
||||
|
||||
static m48(username) => "${username} shared the location";
|
||||
static m49(username) => "${username} shared the location";
|
||||
|
||||
static m49(hours12, hours24, minutes, suffix) =>
|
||||
static m50(hours12, hours24, minutes, suffix) =>
|
||||
"${hours12}:${minutes} ${suffix}";
|
||||
|
||||
static m50(username, targetName) => "${username} unbanned ${targetName}";
|
||||
static m51(username, targetName) => "${username} unbanned ${targetName}";
|
||||
|
||||
static m51(type) => "Unknown event \'${type}\'";
|
||||
static m52(type) => "Unknown event \'${type}\'";
|
||||
|
||||
static m52(unreadCount) => "${unreadCount} unread chats";
|
||||
static m53(unreadCount) => "${unreadCount} unread chats";
|
||||
|
||||
static m53(unreadEvents) => "${unreadEvents} unread messages";
|
||||
static m54(unreadEvents) => "${unreadEvents} unread messages";
|
||||
|
||||
static m54(unreadEvents, unreadChats) =>
|
||||
static m55(unreadEvents, unreadChats) =>
|
||||
"${unreadEvents} unread messages in ${unreadChats} chats";
|
||||
|
||||
static m55(username, count) =>
|
||||
static m56(username, count) =>
|
||||
"${username} and ${count} others are typing...";
|
||||
|
||||
static m56(username, username2) =>
|
||||
static m57(username, username2) =>
|
||||
"${username} and ${username2} are typing...";
|
||||
|
||||
static m57(username) => "${username} is typing...";
|
||||
static m58(username) => "${username} is typing...";
|
||||
|
||||
static m58(username) => "${username} left the chat";
|
||||
static m59(username) => "${username} left the chat";
|
||||
|
||||
static m59(username, type) => "${username} sent a ${type} event";
|
||||
static m60(username, type) => "${username} sent a ${type} event";
|
||||
|
||||
final messages = _notInlinedMessages(_notInlinedMessages);
|
||||
static _notInlinedMessages(_) => <String, Function>{
|
||||
|
@ -473,70 +473,70 @@ class MessageLookup extends MessageLookupByLibrary {
|
|||
"To be able to sign the other person, please enter your secure store passphrase or recovery key."),
|
||||
"askSSSSVerify": MessageLookupByLibrary.simpleMessage(
|
||||
"Please enter your secure store passphrase or recovery key to verify your session."),
|
||||
"askVerificationRequest": m60,
|
||||
"bannedUser": m2,
|
||||
"byDefaultYouWillBeConnectedTo": m3,
|
||||
"askVerificationRequest": m2,
|
||||
"bannedUser": m3,
|
||||
"byDefaultYouWillBeConnectedTo": m4,
|
||||
"cachedKeys":
|
||||
MessageLookupByLibrary.simpleMessage("Successfully cached keys!"),
|
||||
"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,
|
||||
"changedTheChatAvatar": m5,
|
||||
"changedTheChatDescriptionTo": m6,
|
||||
"changedTheChatNameTo": m7,
|
||||
"changedTheChatPermissions": m8,
|
||||
"changedTheDisplaynameTo": m9,
|
||||
"changedTheGuestAccessRules": m10,
|
||||
"changedTheGuestAccessRulesTo": m11,
|
||||
"changedTheHistoryVisibility": m12,
|
||||
"changedTheHistoryVisibilityTo": m13,
|
||||
"changedTheJoinRules": m14,
|
||||
"changedTheJoinRulesTo": m15,
|
||||
"changedTheProfileAvatar": m16,
|
||||
"changedTheRoomAliases": m17,
|
||||
"changedTheRoomInvitationLink": m18,
|
||||
"compareEmojiMatch": MessageLookupByLibrary.simpleMessage(
|
||||
"Compare and make sure the following emoji match those of the other device:"),
|
||||
"compareNumbersMatch": MessageLookupByLibrary.simpleMessage(
|
||||
"Compare and make sure the following numbers match those of the other device:"),
|
||||
"couldNotDecryptMessage": m18,
|
||||
"countParticipants": m19,
|
||||
"createdTheChat": m20,
|
||||
"couldNotDecryptMessage": m19,
|
||||
"countParticipants": m20,
|
||||
"createdTheChat": m21,
|
||||
"crossSigningDisabled":
|
||||
MessageLookupByLibrary.simpleMessage("Cross-Signing is disabled"),
|
||||
"crossSigningEnabled":
|
||||
MessageLookupByLibrary.simpleMessage("Cross-Signing is enabled"),
|
||||
"dateAndTimeOfDay": m21,
|
||||
"dateWithYear": m22,
|
||||
"dateWithoutYear": m23,
|
||||
"dateAndTimeOfDay": m22,
|
||||
"dateWithYear": m23,
|
||||
"dateWithoutYear": m24,
|
||||
"emoteExists":
|
||||
MessageLookupByLibrary.simpleMessage("Emote already exists!"),
|
||||
"emoteInvalid":
|
||||
MessageLookupByLibrary.simpleMessage("Invalid emote shortcode!"),
|
||||
"emoteWarnNeedToPick": MessageLookupByLibrary.simpleMessage(
|
||||
"You need to pick an emote shortcode and an image!"),
|
||||
"groupWith": m24,
|
||||
"hasWithdrawnTheInvitationFor": m25,
|
||||
"groupWith": m25,
|
||||
"hasWithdrawnTheInvitationFor": m26,
|
||||
"incorrectPassphraseOrKey": MessageLookupByLibrary.simpleMessage(
|
||||
"Incorrect passphrase or recovery key"),
|
||||
"inviteContactToGroup": m26,
|
||||
"inviteText": m27,
|
||||
"invitedUser": m28,
|
||||
"inviteContactToGroup": m27,
|
||||
"inviteText": m28,
|
||||
"invitedUser": m29,
|
||||
"is typing...": MessageLookupByLibrary.simpleMessage("is typing..."),
|
||||
"isDeviceKeyCorrect": MessageLookupByLibrary.simpleMessage(
|
||||
"Is the following device key correct?"),
|
||||
"joinedTheChat": m29,
|
||||
"joinedTheChat": m30,
|
||||
"keysCached": MessageLookupByLibrary.simpleMessage("Keys are cached"),
|
||||
"keysMissing": MessageLookupByLibrary.simpleMessage("Keys are missing"),
|
||||
"kicked": m30,
|
||||
"kickedAndBanned": m31,
|
||||
"lastActiveAgo": m32,
|
||||
"loadCountMoreParticipants": m33,
|
||||
"logInTo": m34,
|
||||
"kicked": m31,
|
||||
"kickedAndBanned": m32,
|
||||
"lastActiveAgo": m33,
|
||||
"loadCountMoreParticipants": m34,
|
||||
"logInTo": m35,
|
||||
"newVerificationRequest":
|
||||
MessageLookupByLibrary.simpleMessage("New verification request!"),
|
||||
"noCrossSignBootstrap": MessageLookupByLibrary.simpleMessage(
|
||||
"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 Element."),
|
||||
"numberSelected": m35,
|
||||
"numberSelected": m36,
|
||||
"ok": MessageLookupByLibrary.simpleMessage("ok"),
|
||||
"onlineKeyBackupDisabled": MessageLookupByLibrary.simpleMessage(
|
||||
"Online Key Backup is disabled"),
|
||||
|
@ -544,35 +544,35 @@ class MessageLookup extends MessageLookupByLibrary {
|
|||
"Online Key Backup is enabled"),
|
||||
"passphraseOrKey":
|
||||
MessageLookupByLibrary.simpleMessage("passphrase or recovery key"),
|
||||
"play": m36,
|
||||
"redactedAnEvent": m37,
|
||||
"rejectedTheInvitation": m38,
|
||||
"removedBy": m39,
|
||||
"seenByUser": m40,
|
||||
"seenByUserAndCountOthers": m41,
|
||||
"seenByUserAndUser": m42,
|
||||
"sentAFile": m43,
|
||||
"sentAPicture": m44,
|
||||
"sentASticker": m45,
|
||||
"sentAVideo": m46,
|
||||
"sentAnAudio": m47,
|
||||
"play": m37,
|
||||
"redactedAnEvent": m38,
|
||||
"rejectedTheInvitation": m39,
|
||||
"removedBy": m40,
|
||||
"seenByUser": m41,
|
||||
"seenByUserAndCountOthers": m42,
|
||||
"seenByUserAndUser": m43,
|
||||
"sentAFile": m44,
|
||||
"sentAPicture": m45,
|
||||
"sentASticker": m46,
|
||||
"sentAVideo": m47,
|
||||
"sentAnAudio": m48,
|
||||
"sessionVerified":
|
||||
MessageLookupByLibrary.simpleMessage("Session is verified"),
|
||||
"sharedTheLocation": m48,
|
||||
"timeOfDay": m49,
|
||||
"sharedTheLocation": m49,
|
||||
"timeOfDay": m50,
|
||||
"title": MessageLookupByLibrary.simpleMessage("FluffyChat"),
|
||||
"unbannedUser": m50,
|
||||
"unknownEvent": m51,
|
||||
"unbannedUser": m51,
|
||||
"unknownEvent": m52,
|
||||
"unknownSessionVerify": MessageLookupByLibrary.simpleMessage(
|
||||
"Unknown session, please verify"),
|
||||
"unreadChats": m52,
|
||||
"unreadMessages": m53,
|
||||
"unreadMessagesInChats": m54,
|
||||
"userAndOthersAreTyping": m55,
|
||||
"userAndUserAreTyping": m56,
|
||||
"userIsTyping": m57,
|
||||
"userLeftTheChat": m58,
|
||||
"userSentUnknownEvent": m59,
|
||||
"unreadChats": m53,
|
||||
"unreadMessages": m54,
|
||||
"unreadMessagesInChats": m55,
|
||||
"userAndOthersAreTyping": m56,
|
||||
"userAndUserAreTyping": m57,
|
||||
"userIsTyping": m58,
|
||||
"userLeftTheChat": m59,
|
||||
"userSentUnknownEvent": m60,
|
||||
"verifiedSession": MessageLookupByLibrary.simpleMessage(
|
||||
"Successfully verified session!"),
|
||||
"verifyManual": MessageLookupByLibrary.simpleMessage("Verify Manually"),
|
||||
|
|
|
@ -23,134 +23,134 @@ class MessageLookup extends MessageLookupByLibrary {
|
|||
|
||||
static m1(username) => "${username} aktywował/-a szyfrowanie end-to-end";
|
||||
|
||||
static m2(username, targetName) => "${username} zbanował/-a ${targetName}";
|
||||
static m3(username, targetName) => "${username} zbanował/-a ${targetName}";
|
||||
|
||||
static m3(homeserver) => "Domyślnie łączy się z ${homeserver}";
|
||||
static m4(homeserver) => "Domyślnie łączy się z ${homeserver}";
|
||||
|
||||
static m4(username) => "${username} zmienił/-a zdjęcie profilowe";
|
||||
static m5(username) => "${username} zmienił/-a zdjęcie profilowe";
|
||||
|
||||
static m5(username, description) =>
|
||||
static m6(username, description) =>
|
||||
"${username} zmienił/-a opis czatu na: \'${description}\'";
|
||||
|
||||
static m6(username, chatname) =>
|
||||
static m7(username, chatname) =>
|
||||
"${username} zmienił/-a nick na: \'${chatname}\'";
|
||||
|
||||
static m7(username) => "${username} zmienił/-a uprawnienia czatu";
|
||||
static m8(username) => "${username} zmienił/-a uprawnienia czatu";
|
||||
|
||||
static m8(username, displayname) =>
|
||||
static m9(username, displayname) =>
|
||||
"${username} zmienił/-a wyświetlany nick na: ${displayname}";
|
||||
|
||||
static m9(username) => "${username} zmienił/-a zasady dostępu dla gości";
|
||||
static m10(username) => "${username} zmienił/-a zasady dostępu dla gości";
|
||||
|
||||
static m10(username, rules) =>
|
||||
static m11(username, rules) =>
|
||||
"${username} zmienił/-a zasady dostępu dla gości na: ${rules}";
|
||||
|
||||
static m11(username) => "${username} zmienił/-a widoczność historii";
|
||||
static m12(username) => "${username} zmienił/-a widoczność historii";
|
||||
|
||||
static m12(username, rules) =>
|
||||
static m13(username, rules) =>
|
||||
"${username} zmienił/-a widoczność historii na: ${rules}";
|
||||
|
||||
static m13(username) => "${username} zmienił/-a zasady wejścia";
|
||||
static m14(username) => "${username} zmienił/-a zasady wejścia";
|
||||
|
||||
static m14(username, joinRules) =>
|
||||
static m15(username, joinRules) =>
|
||||
"${username} zmienił/-a zasady wejścia na: ${joinRules}";
|
||||
|
||||
static m15(username) => "${username} zmienił/-a zdjęcie profilowe";
|
||||
static m16(username) => "${username} zmienił/-a zdjęcie profilowe";
|
||||
|
||||
static m16(username) => "${username} zmienił/-a skrót pokoju";
|
||||
static m17(username) => "${username} zmienił/-a skrót pokoju";
|
||||
|
||||
static m17(username) =>
|
||||
static m18(username) =>
|
||||
"${username} zmienił/-a link do zaproszenia do pokoju";
|
||||
|
||||
static m18(error) => "Nie można odszyfrować wiadomości: ${error}";
|
||||
static m19(error) => "Nie można odszyfrować wiadomości: ${error}";
|
||||
|
||||
static m19(count) => "${count} uczestników";
|
||||
static m20(count) => "${count} uczestników";
|
||||
|
||||
static m20(username) => "${username} stworzył/-a czat";
|
||||
static m21(username) => "${username} stworzył/-a czat";
|
||||
|
||||
static m21(date, timeOfDay) => "${date}, ${timeOfDay}";
|
||||
static m22(date, timeOfDay) => "${date}, ${timeOfDay}";
|
||||
|
||||
static m22(year, month, day) => "${day}-${month}-${year}";
|
||||
static m23(year, month, day) => "${day}-${month}-${year}";
|
||||
|
||||
static m23(month, day) => "${month}-${day}";
|
||||
static m24(month, day) => "${month}-${day}";
|
||||
|
||||
static m24(displayname) => "Grupa z ${displayname}";
|
||||
static m25(displayname) => "Grupa z ${displayname}";
|
||||
|
||||
static m25(username, targetName) =>
|
||||
static m26(username, targetName) =>
|
||||
"${username} wycofał/-a zaproszenie dla ${targetName}";
|
||||
|
||||
static m26(groupName) => "Zaproś kontakty do ${groupName}";
|
||||
static m27(groupName) => "Zaproś kontakty do ${groupName}";
|
||||
|
||||
static m27(username, link) =>
|
||||
static m28(username, link) =>
|
||||
"${username} zaprosił/-a cię do FluffyChat. \n1. Zainstaluj FluffyChat: http://fluffy.chat \n2. Zarejestuj się lub zaloguj \n3. Otwórz link zaproszenia: ${link}";
|
||||
|
||||
static m28(username, targetName) => "${username} zaprosił/-a ${targetName}";
|
||||
static m29(username, targetName) => "${username} zaprosił/-a ${targetName}";
|
||||
|
||||
static m29(username) => "${username} dołączył/-a do czatu";
|
||||
static m30(username) => "${username} dołączył/-a do czatu";
|
||||
|
||||
static m30(username, targetName) => "${username} wyrzucił/-a ${targetName}";
|
||||
static m31(username, targetName) => "${username} wyrzucił/-a ${targetName}";
|
||||
|
||||
static m31(username, targetName) =>
|
||||
static m32(username, targetName) =>
|
||||
"${username} wyrzucił/-a i zbanował/-a ${targetName}";
|
||||
|
||||
static m32(localizedTimeShort) => "Ostatnio widziano: ${localizedTimeShort}";
|
||||
static m33(localizedTimeShort) => "Ostatnio widziano: ${localizedTimeShort}";
|
||||
|
||||
static m33(count) => "Załaduj ${count} uczestników więcej";
|
||||
static m34(count) => "Załaduj ${count} uczestników więcej";
|
||||
|
||||
static m34(homeserver) => "Zaloguj się do ${homeserver}";
|
||||
static m35(homeserver) => "Zaloguj się do ${homeserver}";
|
||||
|
||||
static m35(number) => "${number} wybrany";
|
||||
static m36(number) => "${number} wybrany";
|
||||
|
||||
static m36(fileName) => "Otwórz ${fileName}";
|
||||
static m37(fileName) => "Otwórz ${fileName}";
|
||||
|
||||
static m37(username) => "${username} stworzył/-a wydarzenie";
|
||||
static m38(username) => "${username} stworzył/-a wydarzenie";
|
||||
|
||||
static m38(username) => "${username} odrzucił/-a zaproszenie";
|
||||
static m39(username) => "${username} odrzucił/-a zaproszenie";
|
||||
|
||||
static m39(username) => "Usunięta przez ${username}";
|
||||
static m40(username) => "Usunięta przez ${username}";
|
||||
|
||||
static m40(username) => "Zobaczone przez ${username}";
|
||||
static m41(username) => "Zobaczone przez ${username}";
|
||||
|
||||
static m41(username, count) =>
|
||||
static m42(username, count) =>
|
||||
"Zobaczone przez ${username} oraz ${count} innych";
|
||||
|
||||
static m42(username, username2) =>
|
||||
static m43(username, username2) =>
|
||||
"Zobaczone przez ${username} oraz ${username2}";
|
||||
|
||||
static m43(username) => "${username} wysłał/-a plik";
|
||||
static m44(username) => "${username} wysłał/-a plik";
|
||||
|
||||
static m44(username) => "${username} wysłał/-a obraz";
|
||||
static m45(username) => "${username} wysłał/-a obraz";
|
||||
|
||||
static m45(username) => "${username} wysłał/-a naklejkę";
|
||||
static m46(username) => "${username} wysłał/-a naklejkę";
|
||||
|
||||
static m46(username) => "${username} wysłał/-a wideo";
|
||||
static m47(username) => "${username} wysłał/-a wideo";
|
||||
|
||||
static m47(username) => "${username} wysłał/-a plik audio";
|
||||
static m48(username) => "${username} wysłał/-a plik audio";
|
||||
|
||||
static m48(username) => "${username} udostępnił/-a lokalizacje";
|
||||
static m49(username) => "${username} udostępnił/-a lokalizacje";
|
||||
|
||||
static m49(hours12, hours24, minutes, suffix) => "${hours24}:${minutes}";
|
||||
static m50(hours12, hours24, minutes, suffix) => "${hours24}:${minutes}";
|
||||
|
||||
static m50(username, targetName) => "${username} odbanował/-a ${targetName}";
|
||||
static m51(username, targetName) => "${username} odbanował/-a ${targetName}";
|
||||
|
||||
static m51(type) => "Nieznane zdarzenie \'${type}\'";
|
||||
static m52(type) => "Nieznane zdarzenie \'${type}\'";
|
||||
|
||||
static m52(unreadCount) => "${unreadCount} nieprzeczytanych czatów";
|
||||
static m53(unreadCount) => "${unreadCount} nieprzeczytanych czatów";
|
||||
|
||||
static m53(unreadEvents) => "${unreadEvents} nieprzeczytanych wiadomości";
|
||||
static m54(unreadEvents) => "${unreadEvents} nieprzeczytanych wiadomości";
|
||||
|
||||
static m54(unreadEvents, unreadChats) =>
|
||||
static m55(unreadEvents, unreadChats) =>
|
||||
"${unreadEvents} nieprzeczytanych wiadomości w ${unreadChats} czatach";
|
||||
|
||||
static m55(username, count) => "${username} oraz ${count} innych pisze...";
|
||||
static m56(username, count) => "${username} oraz ${count} innych pisze...";
|
||||
|
||||
static m56(username, username2) => "${username} oraz ${username2} piszą...";
|
||||
static m57(username, username2) => "${username} oraz ${username2} piszą...";
|
||||
|
||||
static m57(username) => "${username} pisze...";
|
||||
static m58(username) => "${username} pisze...";
|
||||
|
||||
static m58(username) => "${username} opuścił/-a czat";
|
||||
static m59(username) => "${username} opuścił/-a czat";
|
||||
|
||||
static m59(username, type) => "${username} wysłał/-a wydarzenie ${type}";
|
||||
static m60(username, type) => "${username} wysłał/-a wydarzenie ${type}";
|
||||
|
||||
final messages = _notInlinedMessages(_notInlinedMessages);
|
||||
static _notInlinedMessages(_) => <String, Function>{
|
||||
|
@ -439,65 +439,65 @@ class MessageLookup extends MessageLookupByLibrary {
|
|||
"acceptedTheInvitation": m0,
|
||||
"activatedEndToEndEncryption": m1,
|
||||
"alias": MessageLookupByLibrary.simpleMessage("alias"),
|
||||
"bannedUser": m2,
|
||||
"byDefaultYouWillBeConnectedTo": m3,
|
||||
"changedTheChatAvatar": m4,
|
||||
"changedTheChatDescriptionTo": m5,
|
||||
"changedTheChatNameTo": m6,
|
||||
"changedTheChatPermissions": m7,
|
||||
"changedTheDisplaynameTo": m8,
|
||||
"changedTheGuestAccessRules": m9,
|
||||
"changedTheGuestAccessRulesTo": m10,
|
||||
"changedTheHistoryVisibility": m11,
|
||||
"changedTheHistoryVisibilityTo": m12,
|
||||
"changedTheJoinRules": m13,
|
||||
"changedTheJoinRulesTo": m14,
|
||||
"changedTheProfileAvatar": m15,
|
||||
"changedTheRoomAliases": m16,
|
||||
"changedTheRoomInvitationLink": m17,
|
||||
"couldNotDecryptMessage": m18,
|
||||
"countParticipants": m19,
|
||||
"createdTheChat": m20,
|
||||
"dateAndTimeOfDay": m21,
|
||||
"dateWithYear": m22,
|
||||
"dateWithoutYear": m23,
|
||||
"groupWith": m24,
|
||||
"hasWithdrawnTheInvitationFor": m25,
|
||||
"inviteContactToGroup": m26,
|
||||
"inviteText": m27,
|
||||
"invitedUser": m28,
|
||||
"bannedUser": m3,
|
||||
"byDefaultYouWillBeConnectedTo": m4,
|
||||
"changedTheChatAvatar": m5,
|
||||
"changedTheChatDescriptionTo": m6,
|
||||
"changedTheChatNameTo": m7,
|
||||
"changedTheChatPermissions": m8,
|
||||
"changedTheDisplaynameTo": m9,
|
||||
"changedTheGuestAccessRules": m10,
|
||||
"changedTheGuestAccessRulesTo": m11,
|
||||
"changedTheHistoryVisibility": m12,
|
||||
"changedTheHistoryVisibilityTo": m13,
|
||||
"changedTheJoinRules": m14,
|
||||
"changedTheJoinRulesTo": m15,
|
||||
"changedTheProfileAvatar": m16,
|
||||
"changedTheRoomAliases": m17,
|
||||
"changedTheRoomInvitationLink": m18,
|
||||
"couldNotDecryptMessage": m19,
|
||||
"countParticipants": m20,
|
||||
"createdTheChat": m21,
|
||||
"dateAndTimeOfDay": m22,
|
||||
"dateWithYear": m23,
|
||||
"dateWithoutYear": m24,
|
||||
"groupWith": m25,
|
||||
"hasWithdrawnTheInvitationFor": m26,
|
||||
"inviteContactToGroup": m27,
|
||||
"inviteText": m28,
|
||||
"invitedUser": m29,
|
||||
"is typing...": MessageLookupByLibrary.simpleMessage("pisze..."),
|
||||
"joinedTheChat": m29,
|
||||
"kicked": m30,
|
||||
"kickedAndBanned": m31,
|
||||
"lastActiveAgo": m32,
|
||||
"loadCountMoreParticipants": m33,
|
||||
"logInTo": m34,
|
||||
"numberSelected": m35,
|
||||
"play": m36,
|
||||
"redactedAnEvent": m37,
|
||||
"rejectedTheInvitation": m38,
|
||||
"removedBy": m39,
|
||||
"seenByUser": m40,
|
||||
"seenByUserAndCountOthers": m41,
|
||||
"seenByUserAndUser": m42,
|
||||
"sentAFile": m43,
|
||||
"sentAPicture": m44,
|
||||
"sentASticker": m45,
|
||||
"sentAVideo": m46,
|
||||
"sentAnAudio": m47,
|
||||
"sharedTheLocation": m48,
|
||||
"timeOfDay": m49,
|
||||
"joinedTheChat": m30,
|
||||
"kicked": m31,
|
||||
"kickedAndBanned": m32,
|
||||
"lastActiveAgo": m33,
|
||||
"loadCountMoreParticipants": m34,
|
||||
"logInTo": m35,
|
||||
"numberSelected": m36,
|
||||
"play": m37,
|
||||
"redactedAnEvent": m38,
|
||||
"rejectedTheInvitation": m39,
|
||||
"removedBy": m40,
|
||||
"seenByUser": m41,
|
||||
"seenByUserAndCountOthers": m42,
|
||||
"seenByUserAndUser": m43,
|
||||
"sentAFile": m44,
|
||||
"sentAPicture": m45,
|
||||
"sentASticker": m46,
|
||||
"sentAVideo": m47,
|
||||
"sentAnAudio": m48,
|
||||
"sharedTheLocation": m49,
|
||||
"timeOfDay": m50,
|
||||
"title": MessageLookupByLibrary.simpleMessage("FluffyChat"),
|
||||
"unbannedUser": m50,
|
||||
"unknownEvent": m51,
|
||||
"unreadChats": m52,
|
||||
"unreadMessages": m53,
|
||||
"unreadMessagesInChats": m54,
|
||||
"userAndOthersAreTyping": m55,
|
||||
"userAndUserAreTyping": m56,
|
||||
"userIsTyping": m57,
|
||||
"userLeftTheChat": m58,
|
||||
"userSentUnknownEvent": m59
|
||||
"unbannedUser": m51,
|
||||
"unknownEvent": m52,
|
||||
"unreadChats": m53,
|
||||
"unreadMessages": m54,
|
||||
"unreadMessagesInChats": m55,
|
||||
"userAndOthersAreTyping": m56,
|
||||
"userAndUserAreTyping": m57,
|
||||
"userIsTyping": m58,
|
||||
"userLeftTheChat": m59,
|
||||
"userSentUnknownEvent": m60
|
||||
};
|
||||
}
|
||||
|
|
|
@ -23,137 +23,137 @@ class MessageLookup extends MessageLookupByLibrary {
|
|||
|
||||
static m1(username) => "${username} активировал(а) сквозное шифрование";
|
||||
|
||||
static m60(username) => "Принять этот запрос подтверждения от ${username}?";
|
||||
static m2(username) => "Принять этот запрос подтверждения от ${username}?";
|
||||
|
||||
static m2(username, targetName) => "${username} забанил(а) ${targetName}";
|
||||
static m3(username, targetName) => "${username} забанил(а) ${targetName}";
|
||||
|
||||
static m3(homeserver) => "По умолчанию вы будете подключены к ${homeserver}";
|
||||
static m4(homeserver) => "По умолчанию вы будете подключены к ${homeserver}";
|
||||
|
||||
static m4(username) => "${username} изменил(а) аватар чата";
|
||||
static m5(username) => "${username} изменил(а) аватар чата";
|
||||
|
||||
static m5(username, description) =>
|
||||
static m6(username, description) =>
|
||||
"${username} изменил(а) описание чата на: \'${description}\'";
|
||||
|
||||
static m6(username, chatname) =>
|
||||
static m7(username, chatname) =>
|
||||
"${username} изменил(а) имя чата на: \'${chatname}\'";
|
||||
|
||||
static m7(username) => "${username} изменил(а) права чата";
|
||||
static m8(username) => "${username} изменил(а) права чата";
|
||||
|
||||
static m8(username, displayname) =>
|
||||
static m9(username, displayname) =>
|
||||
"${username} изменил(а) отображаемое имя на: ${displayname}";
|
||||
|
||||
static m9(username) => "${username} изменил(а) правила гостевого доступа";
|
||||
static m10(username) => "${username} изменил(а) правила гостевого доступа";
|
||||
|
||||
static m10(username, rules) =>
|
||||
static m11(username, rules) =>
|
||||
"${username} изменил(а) правила гостевого доступа на: ${rules}";
|
||||
|
||||
static m11(username) => "${username} изменил(а) видимость истории";
|
||||
static m12(username) => "${username} изменил(а) видимость истории";
|
||||
|
||||
static m12(username, rules) =>
|
||||
static m13(username, rules) =>
|
||||
"${username} изменил(а) видимость истории на: ${rules}";
|
||||
|
||||
static m13(username) => "${username} изменил(а) правила присоединения";
|
||||
static m14(username) => "${username} изменил(а) правила присоединения";
|
||||
|
||||
static m14(username, joinRules) =>
|
||||
static m15(username, joinRules) =>
|
||||
"${username} изменил(а) правила присоединения на: ${joinRules}";
|
||||
|
||||
static m15(username) => "${username} сменил(а) аватар профиля";
|
||||
static m16(username) => "${username} сменил(а) свой аватар";
|
||||
|
||||
static m16(username) => "${username} изменил(а) псевдонимы комнаты";
|
||||
static m17(username) => "${username} изменил(а) псевдонимы комнаты";
|
||||
|
||||
static m17(username) => "${username} изменил(а) ссылку приглашения";
|
||||
static m18(username) => "${username} изменил(а) ссылку приглашения";
|
||||
|
||||
static m18(error) => "Не удалось расшифровать сообщение: ${error}";
|
||||
static m19(error) => "Не удалось расшифровать сообщение: ${error}";
|
||||
|
||||
static m19(count) => "${count} участника(-ов)";
|
||||
static m20(count) => "${count} участника(-ов)";
|
||||
|
||||
static m20(username) => "${username} создал(а) чат";
|
||||
static m21(username) => "${username} создал(а) чат";
|
||||
|
||||
static m21(date, timeOfDay) => "${date}, ${timeOfDay}";
|
||||
static m22(date, timeOfDay) => "${date}, ${timeOfDay}";
|
||||
|
||||
static m22(year, month, day) => "${day}. ${month}. ${year}";
|
||||
static m23(year, month, day) => "${day}. ${month}. ${year}";
|
||||
|
||||
static m23(month, day) => "${day}. ${month}";
|
||||
static m24(month, day) => "${day}. ${month}";
|
||||
|
||||
static m24(displayname) => "Группа с ${displayname}";
|
||||
static m25(displayname) => "Группа с ${displayname}";
|
||||
|
||||
static m25(username, targetName) =>
|
||||
static m26(username, targetName) =>
|
||||
"${username} отозвал(а) приглашение для ${targetName}";
|
||||
|
||||
static m26(groupName) => "Пригласить контакт в ${groupName}";
|
||||
static m27(groupName) => "Пригласить контакт в ${groupName}";
|
||||
|
||||
static m27(username, link) =>
|
||||
static m28(username, link) =>
|
||||
"${username} пригласил(а) вас в FluffyChat. \n1. Установите FluffyChat: http://fluffy.chat \n2. Зарегистрируйтесь или войдите \n3. Откройте ссылку приглашения: ${link}";
|
||||
|
||||
static m28(username, targetName) => "${username} пригласил(а) ${targetName}";
|
||||
static m29(username, targetName) => "${username} пригласил(а) ${targetName}";
|
||||
|
||||
static m29(username) => "${username} присоединился(-ась) к чату";
|
||||
static m30(username) => "${username} присоединился(-ась) к чату";
|
||||
|
||||
static m30(username, targetName) => "${username} исключил(а) ${targetName}";
|
||||
static m31(username, targetName) => "${username} исключил(а) ${targetName}";
|
||||
|
||||
static m31(username, targetName) =>
|
||||
static m32(username, targetName) =>
|
||||
"${username} исключил(а) и забанил(а) ${targetName}";
|
||||
|
||||
static m32(localizedTimeShort) =>
|
||||
static m33(localizedTimeShort) =>
|
||||
"Последнее посещение: ${localizedTimeShort}";
|
||||
|
||||
static m33(count) => "Загрузить еще ${count} участников";
|
||||
static m34(count) => "Загрузить еще ${count} участников";
|
||||
|
||||
static m34(homeserver) => "Войти в ${homeserver}";
|
||||
static m35(homeserver) => "Войти в ${homeserver}";
|
||||
|
||||
static m35(number) => "${number} выбрано";
|
||||
static m36(number) => "${number} выбрано";
|
||||
|
||||
static m36(fileName) => "Играть ${fileName}";
|
||||
static m37(fileName) => "Играть ${fileName}";
|
||||
|
||||
static m37(username) => "${username} отредактировал(а) событие";
|
||||
static m38(username) => "${username} отредактировал(а) событие";
|
||||
|
||||
static m38(username) => "${username} отклонил(а) приглашение";
|
||||
static m39(username) => "${username} отклонил(а) приглашение";
|
||||
|
||||
static m39(username) => "Удалено пользователем ${username}";
|
||||
static m40(username) => "Удалено пользователем ${username}";
|
||||
|
||||
static m40(username) => "Просмотрено пользователем ${username}";
|
||||
static m41(username) => "Просмотрено пользователем ${username}";
|
||||
|
||||
static m41(username, count) =>
|
||||
static m42(username, count) =>
|
||||
"Просмотрено пользователями ${username} и ${count} другими";
|
||||
|
||||
static m42(username, username2) =>
|
||||
static m43(username, username2) =>
|
||||
"Просмотрено пользователями ${username} и ${username2}";
|
||||
|
||||
static m43(username) => "${username} отправил(а) файл";
|
||||
static m44(username) => "${username} отправил(а) файл";
|
||||
|
||||
static m44(username) => "${username} отправил(а) картинку";
|
||||
static m45(username) => "${username} отправил(а) картинку";
|
||||
|
||||
static m45(username) => "${username} отправил(а) стикер";
|
||||
static m46(username) => "${username} отправил(а) стикер";
|
||||
|
||||
static m46(username) => "${username} отправил(а) видео";
|
||||
static m47(username) => "${username} отправил(а) видео";
|
||||
|
||||
static m47(username) => "${username} отправил(а) аудио";
|
||||
static m48(username) => "${username} отправил(а) аудио";
|
||||
|
||||
static m48(username) => "${username} поделился(-ась) местоположением";
|
||||
static m49(username) => "${username} поделился(-ась) местоположением";
|
||||
|
||||
static m49(hours12, hours24, minutes, suffix) => "${hours24}:${minutes}";
|
||||
static m50(hours12, hours24, minutes, suffix) => "${hours24}:${minutes}";
|
||||
|
||||
static m50(username, targetName) => "${username} разбанил(а) ${targetName}";
|
||||
static m51(username, targetName) => "${username} разбанил(а) ${targetName}";
|
||||
|
||||
static m51(type) => "Неизвестное событие \'${type}\'";
|
||||
static m52(type) => "Неизвестное событие \'${type}\'";
|
||||
|
||||
static m52(unreadCount) => "${unreadCount} непрочитанных чатов";
|
||||
static m53(unreadCount) => "${unreadCount} непрочитанных чатов";
|
||||
|
||||
static m53(unreadEvents) => "${unreadEvents} непрочитанных сообщений";
|
||||
static m54(unreadEvents) => "${unreadEvents} непрочитанных сообщений";
|
||||
|
||||
static m54(unreadEvents, unreadChats) =>
|
||||
static m55(unreadEvents, unreadChats) =>
|
||||
"${unreadEvents} непрочитанных сообщений в ${unreadChats} чатах";
|
||||
|
||||
static m55(username, count) =>
|
||||
static m56(username, count) =>
|
||||
"${username} и ${count} других участников печатают...";
|
||||
|
||||
static m56(username, username2) => "${username} и ${username2} печатают...";
|
||||
static m57(username, username2) => "${username} и ${username2} печатают...";
|
||||
|
||||
static m57(username) => "${username} печатает...";
|
||||
static m58(username) => "${username} печатает...";
|
||||
|
||||
static m58(username) => "${username} покинул(а) чат";
|
||||
static m59(username) => "${username} покинул(а) чат";
|
||||
|
||||
static m59(username, type) => "${username} отправил(а) событие типа ${type}";
|
||||
static m60(username, type) => "${username} отправил(а) событие типа ${type}";
|
||||
|
||||
final messages = _notInlinedMessages(_notInlinedMessages);
|
||||
static _notInlinedMessages(_) => <String, Function>{
|
||||
|
@ -166,7 +166,7 @@ class MessageLookup extends MessageLookupByLibrary {
|
|||
MessageLookupByLibrary.simpleMessage("Сведения об учётной записи"),
|
||||
"Add a group description":
|
||||
MessageLookupByLibrary.simpleMessage("Добавить описание группы"),
|
||||
"Admin": MessageLookupByLibrary.simpleMessage("Админ"),
|
||||
"Admin": MessageLookupByLibrary.simpleMessage("Администратор"),
|
||||
"Already have an account?":
|
||||
MessageLookupByLibrary.simpleMessage("Уже есть учётная запись?"),
|
||||
"Anyone can join":
|
||||
|
@ -318,7 +318,7 @@ class MessageLookup extends MessageLookupByLibrary {
|
|||
"Make a moderator":
|
||||
MessageLookupByLibrary.simpleMessage("Сделать модератором"),
|
||||
"Make an admin":
|
||||
MessageLookupByLibrary.simpleMessage("Сделать админом"),
|
||||
MessageLookupByLibrary.simpleMessage("Сделать администратором"),
|
||||
"Make sure the identifier is valid":
|
||||
MessageLookupByLibrary.simpleMessage(
|
||||
"Убедитесь, что идентификатор действителен"),
|
||||
|
@ -327,7 +327,8 @@ class MessageLookup extends MessageLookupByLibrary {
|
|||
"Сообщение будет удалено для всех участников"),
|
||||
"Moderator": MessageLookupByLibrary.simpleMessage("Модератор"),
|
||||
"Monday": MessageLookupByLibrary.simpleMessage("Понедельник"),
|
||||
"Mute chat": MessageLookupByLibrary.simpleMessage("Замутить чат"),
|
||||
"Mute chat":
|
||||
MessageLookupByLibrary.simpleMessage("Отключить уведомления"),
|
||||
"New message in FluffyChat": MessageLookupByLibrary.simpleMessage(
|
||||
"Новое сообщение в FluffyChat"),
|
||||
"New private chat":
|
||||
|
@ -431,7 +432,8 @@ class MessageLookup extends MessageLookupByLibrary {
|
|||
MessageLookupByLibrary.simpleMessage("Неизвестное устройство"),
|
||||
"Unknown encryption algorithm": MessageLookupByLibrary.simpleMessage(
|
||||
"Неизвестный алгоритм шифрования"),
|
||||
"Unmute chat": MessageLookupByLibrary.simpleMessage("Размутить чат"),
|
||||
"Unmute chat":
|
||||
MessageLookupByLibrary.simpleMessage("Включить уведомления"),
|
||||
"Use Amoled compatible colors?": MessageLookupByLibrary.simpleMessage(
|
||||
"Использовать Amoled совместимые цвета?"),
|
||||
"Username": MessageLookupByLibrary.simpleMessage("Имя пользователя"),
|
||||
|
@ -451,7 +453,7 @@ class MessageLookup extends MessageLookupByLibrary {
|
|||
"Wednesday": MessageLookupByLibrary.simpleMessage("Среда"),
|
||||
"Welcome to the cutest instant messenger in the matrix network.":
|
||||
MessageLookupByLibrary.simpleMessage(
|
||||
"Добро пожаловать в самый симпатичный мессенджер в сети matrix."),
|
||||
"Добро пожаловать в самый симпатичный мессенджер в сети Matrix."),
|
||||
"Who is allowed to join this group":
|
||||
MessageLookupByLibrary.simpleMessage(
|
||||
"Кому разрешено вступать в эту группу"),
|
||||
|
@ -483,71 +485,71 @@ class MessageLookup extends MessageLookupByLibrary {
|
|||
"Чтобы иметь возможность подписать другое лицо, пожалуйста, введите пароль или ключ восстановления вашего безопасного хранилища."),
|
||||
"askSSSSVerify": MessageLookupByLibrary.simpleMessage(
|
||||
"Пожалуйста, введите вашу безопасную парольную фразу или ключ восстановления, чтобы подтвердить ваш сеанс."),
|
||||
"askVerificationRequest": m60,
|
||||
"bannedUser": m2,
|
||||
"byDefaultYouWillBeConnectedTo": m3,
|
||||
"askVerificationRequest": m2,
|
||||
"bannedUser": m3,
|
||||
"byDefaultYouWillBeConnectedTo": m4,
|
||||
"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,
|
||||
"changedTheChatAvatar": m5,
|
||||
"changedTheChatDescriptionTo": m6,
|
||||
"changedTheChatNameTo": m7,
|
||||
"changedTheChatPermissions": m8,
|
||||
"changedTheDisplaynameTo": m9,
|
||||
"changedTheGuestAccessRules": m10,
|
||||
"changedTheGuestAccessRulesTo": m11,
|
||||
"changedTheHistoryVisibility": m12,
|
||||
"changedTheHistoryVisibilityTo": m13,
|
||||
"changedTheJoinRules": m14,
|
||||
"changedTheJoinRulesTo": m15,
|
||||
"changedTheProfileAvatar": m16,
|
||||
"changedTheRoomAliases": m17,
|
||||
"changedTheRoomInvitationLink": m18,
|
||||
"compareEmojiMatch": MessageLookupByLibrary.simpleMessage(
|
||||
"Сравните и убедитесь, что следующие эмодзи соответствуют таковым на другом устройстве:"),
|
||||
"compareNumbersMatch": MessageLookupByLibrary.simpleMessage(
|
||||
"Сравните и убедитесь, что следующие числа соответствуют числам на другом устройстве:"),
|
||||
"couldNotDecryptMessage": m18,
|
||||
"countParticipants": m19,
|
||||
"createdTheChat": m20,
|
||||
"couldNotDecryptMessage": m19,
|
||||
"countParticipants": m20,
|
||||
"createdTheChat": m21,
|
||||
"crossSigningDisabled":
|
||||
MessageLookupByLibrary.simpleMessage("Кросс-подпись отключена"),
|
||||
"crossSigningEnabled":
|
||||
MessageLookupByLibrary.simpleMessage("Кросс-подпись включена"),
|
||||
"dateAndTimeOfDay": m21,
|
||||
"dateWithYear": m22,
|
||||
"dateWithoutYear": m23,
|
||||
"dateAndTimeOfDay": m22,
|
||||
"dateWithYear": m23,
|
||||
"dateWithoutYear": m24,
|
||||
"emoteExists":
|
||||
MessageLookupByLibrary.simpleMessage("Смайлик уже существует!"),
|
||||
"emoteInvalid": MessageLookupByLibrary.simpleMessage(
|
||||
"Недопустимый краткий код смайлика!"),
|
||||
"emoteWarnNeedToPick": MessageLookupByLibrary.simpleMessage(
|
||||
"Вам нужно выбрать краткий код смайлика и картинку!"),
|
||||
"groupWith": m24,
|
||||
"hasWithdrawnTheInvitationFor": m25,
|
||||
"groupWith": m25,
|
||||
"hasWithdrawnTheInvitationFor": m26,
|
||||
"incorrectPassphraseOrKey": MessageLookupByLibrary.simpleMessage(
|
||||
"Неверный пароль или ключ восстановления"),
|
||||
"inviteContactToGroup": m26,
|
||||
"inviteText": m27,
|
||||
"invitedUser": m28,
|
||||
"inviteContactToGroup": m27,
|
||||
"inviteText": m28,
|
||||
"invitedUser": m29,
|
||||
"is typing...": MessageLookupByLibrary.simpleMessage("Печатает..."),
|
||||
"isDeviceKeyCorrect": MessageLookupByLibrary.simpleMessage(
|
||||
"Правильно ли указан следующий ключ устройства?"),
|
||||
"joinedTheChat": m29,
|
||||
"joinedTheChat": m30,
|
||||
"keysCached": MessageLookupByLibrary.simpleMessage("Ключи кэшированы"),
|
||||
"keysMissing":
|
||||
MessageLookupByLibrary.simpleMessage("Ключи отсутствуют"),
|
||||
"kicked": m30,
|
||||
"kickedAndBanned": m31,
|
||||
"lastActiveAgo": m32,
|
||||
"loadCountMoreParticipants": m33,
|
||||
"logInTo": m34,
|
||||
"kicked": m31,
|
||||
"kickedAndBanned": m32,
|
||||
"lastActiveAgo": m33,
|
||||
"loadCountMoreParticipants": m34,
|
||||
"logInTo": m35,
|
||||
"newVerificationRequest": MessageLookupByLibrary.simpleMessage(
|
||||
"Новый запрос на подтверждение!"),
|
||||
"noCrossSignBootstrap": MessageLookupByLibrary.simpleMessage(
|
||||
"Fluffychat в настоящее время не поддерживает включение кросс-подписи. Пожалуйста, включите его в Element."),
|
||||
"noMegolmBootstrap": MessageLookupByLibrary.simpleMessage(
|
||||
"В настоящее время Fluffychat не поддерживает функцию резервного копирования онлайн-ключей. Пожалуйста, включите его из Element."),
|
||||
"numberSelected": m35,
|
||||
"numberSelected": m36,
|
||||
"ok": MessageLookupByLibrary.simpleMessage("ok"),
|
||||
"onlineKeyBackupDisabled": MessageLookupByLibrary.simpleMessage(
|
||||
"Резервное копирование онлайн-ключей отключено"),
|
||||
|
@ -555,35 +557,35 @@ class MessageLookup extends MessageLookupByLibrary {
|
|||
"Резервное копирование онлайн ключей включено"),
|
||||
"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,
|
||||
"play": m37,
|
||||
"redactedAnEvent": m38,
|
||||
"rejectedTheInvitation": m39,
|
||||
"removedBy": m40,
|
||||
"seenByUser": m41,
|
||||
"seenByUserAndCountOthers": m42,
|
||||
"seenByUserAndUser": m43,
|
||||
"sentAFile": m44,
|
||||
"sentAPicture": m45,
|
||||
"sentASticker": m46,
|
||||
"sentAVideo": m47,
|
||||
"sentAnAudio": m48,
|
||||
"sessionVerified":
|
||||
MessageLookupByLibrary.simpleMessage("Сессия подтверждена"),
|
||||
"sharedTheLocation": m48,
|
||||
"timeOfDay": m49,
|
||||
"sharedTheLocation": m49,
|
||||
"timeOfDay": m50,
|
||||
"title": MessageLookupByLibrary.simpleMessage("FluffyChat"),
|
||||
"unbannedUser": m50,
|
||||
"unknownEvent": m51,
|
||||
"unbannedUser": m51,
|
||||
"unknownEvent": m52,
|
||||
"unknownSessionVerify": MessageLookupByLibrary.simpleMessage(
|
||||
"Неизвестная сессия, пожалуйста, проверьте"),
|
||||
"unreadChats": m52,
|
||||
"unreadMessages": m53,
|
||||
"unreadMessagesInChats": m54,
|
||||
"userAndOthersAreTyping": m55,
|
||||
"userAndUserAreTyping": m56,
|
||||
"userIsTyping": m57,
|
||||
"userLeftTheChat": m58,
|
||||
"userSentUnknownEvent": m59,
|
||||
"unreadChats": m53,
|
||||
"unreadMessages": m54,
|
||||
"unreadMessagesInChats": m55,
|
||||
"userAndOthersAreTyping": m56,
|
||||
"userAndUserAreTyping": m57,
|
||||
"userIsTyping": m58,
|
||||
"userLeftTheChat": m59,
|
||||
"userSentUnknownEvent": m60,
|
||||
"verifiedSession":
|
||||
MessageLookupByLibrary.simpleMessage("Успешно проверенная сессия!"),
|
||||
"verifyManual":
|
||||
|
@ -594,10 +596,10 @@ class MessageLookup extends MessageLookupByLibrary {
|
|||
"verifyTitle": MessageLookupByLibrary.simpleMessage(
|
||||
"Проверка другой учётной записи"),
|
||||
"waitingPartnerAcceptRequest": MessageLookupByLibrary.simpleMessage(
|
||||
"В ожидании партнера, чтобы принять запрос..."),
|
||||
"В ожидании партнёра, чтобы принять запрос..."),
|
||||
"waitingPartnerEmoji": MessageLookupByLibrary.simpleMessage(
|
||||
"В ожидании партнера, чтобы принять смайлики..."),
|
||||
"В ожидании партнёра, чтобы принять смайлики..."),
|
||||
"waitingPartnerNumbers": MessageLookupByLibrary.simpleMessage(
|
||||
"В ожидании партнера, чтобы принять числа...")
|
||||
"В ожидании партнёра, чтобы принять числа...")
|
||||
};
|
||||
}
|
||||
|
|
|
@ -23,137 +23,137 @@ class MessageLookup extends MessageLookupByLibrary {
|
|||
|
||||
static m1(username) => "${username} aktivovali koncové šifrovanie";
|
||||
|
||||
static m60(username) => "Akcepovať žiadosť o verifikáciu od ${username}?";
|
||||
static m2(username) => "Akcepovať žiadosť o verifikáciu od ${username}?";
|
||||
|
||||
static m2(username, targetName) => "${username} zabanoval ${targetName}";
|
||||
static m3(username, targetName) => "${username} zabanoval ${targetName}";
|
||||
|
||||
static m3(homeserver) =>
|
||||
static m4(homeserver) =>
|
||||
"V základnom nastavení budete pripojený k ${homeserver}";
|
||||
|
||||
static m4(username) => "${username} si zmenili svôj avatar";
|
||||
static m5(username) => "${username} si zmenili svôj avatar";
|
||||
|
||||
static m5(username, description) =>
|
||||
static m6(username, description) =>
|
||||
"${username} zmenili popis chatu na: „${description}“";
|
||||
|
||||
static m6(username, chatname) =>
|
||||
static m7(username, chatname) =>
|
||||
"${username} zmenili meno chatu na: „${chatname}“";
|
||||
|
||||
static m7(username) => "${username} zmenili nastavenie oprávnení chatu";
|
||||
static m8(username) => "${username} zmenili nastavenie oprávnení chatu";
|
||||
|
||||
static m8(username, displayname) =>
|
||||
static m9(username, displayname) =>
|
||||
"${username} si zmenili prezývku na: ${displayname}";
|
||||
|
||||
static m9(username) => "${username} zmenili prístupové práva pre hosťov";
|
||||
static m10(username) => "${username} zmenili prístupové práva pre hosťov";
|
||||
|
||||
static m10(username, rules) =>
|
||||
static m11(username, rules) =>
|
||||
"${username} zmenili prístupové práva pro hosťov na: ${rules}";
|
||||
|
||||
static m11(username) =>
|
||||
static m12(username) =>
|
||||
"${username} zmenili nastavenie viditelnosti histórie chatu";
|
||||
|
||||
static m12(username, rules) =>
|
||||
static m13(username, rules) =>
|
||||
"${username} zmenili nastavenie viditelnosti histórie chatu na: ${rules}";
|
||||
|
||||
static m13(username) => "${username} zmenili nastavenie pravidiel pripojenia";
|
||||
static m14(username) => "${username} zmenili nastavenie pravidiel pripojenia";
|
||||
|
||||
static m14(username, joinRules) =>
|
||||
static m15(username, joinRules) =>
|
||||
"${username} zmenili nastavenie pravidiel pripojenia na: ${joinRules}";
|
||||
|
||||
static m15(username) => "${username} si zmenili profilový obrázok";
|
||||
static m16(username) => "${username} si zmenili profilový obrázok";
|
||||
|
||||
static m16(username) => "${username} zmenili nastavenie aliasov chatu";
|
||||
static m17(username) => "${username} zmenili nastavenie aliasov chatu";
|
||||
|
||||
static m17(username) => "${username} zmenili odkaz k pozvánke do miestnosti";
|
||||
static m18(username) => "${username} zmenili odkaz k pozvánke do miestnosti";
|
||||
|
||||
static m18(error) => "Nebolo možné dešifrovať správu: ${error}";
|
||||
static m19(error) => "Nebolo možné dešifrovať správu: ${error}";
|
||||
|
||||
static m19(count) => "${count} účastníkov";
|
||||
static m20(count) => "${count} účastníkov";
|
||||
|
||||
static m20(username) => "${username} založili chat";
|
||||
static m21(username) => "${username} založili chat";
|
||||
|
||||
static m21(date, timeOfDay) => "${date}, ${timeOfDay}";
|
||||
static m22(date, timeOfDay) => "${date}, ${timeOfDay}";
|
||||
|
||||
static m22(year, month, day) => "${day}.${month}.${year}";
|
||||
static m23(year, month, day) => "${day}.${month}.${year}";
|
||||
|
||||
static m23(month, day) => "${day}.${month}.";
|
||||
static m24(month, day) => "${day}.${month}.";
|
||||
|
||||
static m24(displayname) => "Skupina s ${displayname}";
|
||||
static m25(displayname) => "Skupina s ${displayname}";
|
||||
|
||||
static m25(username, targetName) =>
|
||||
static m26(username, targetName) =>
|
||||
"${username} vzal späť pozvánku pre ${targetName}";
|
||||
|
||||
static m26(groupName) => "Pozvať kontakt do ${groupName}";
|
||||
static m27(groupName) => "Pozvať kontakt do ${groupName}";
|
||||
|
||||
static m27(username, link) =>
|
||||
static m28(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}";
|
||||
static m29(username, targetName) => "${username} pozvali ${targetName}";
|
||||
|
||||
static m29(username) => "${username} sa pripojili do chatu";
|
||||
static m30(username) => "${username} sa pripojili do chatu";
|
||||
|
||||
static m30(username, targetName) => "${username} vyhodili ${targetName}";
|
||||
static m31(username, targetName) => "${username} vyhodili ${targetName}";
|
||||
|
||||
static m31(username, targetName) =>
|
||||
static m32(username, targetName) =>
|
||||
"${username} vyhodili a zabanovali ${targetName}";
|
||||
|
||||
static m32(localizedTimeShort) => "Naposledy prítomní: ${localizedTimeShort}";
|
||||
static m33(localizedTimeShort) => "Naposledy prítomní: ${localizedTimeShort}";
|
||||
|
||||
static m33(count) => "Načítať ďalších ${count} účastníkov";
|
||||
static m34(count) => "Načítať ďalších ${count} účastníkov";
|
||||
|
||||
static m34(homeserver) => "Prihlásenie k ${homeserver}";
|
||||
static m35(homeserver) => "Prihlásenie k ${homeserver}";
|
||||
|
||||
static m35(number) => "${number} označených správ";
|
||||
static m36(number) => "${number} označených správ";
|
||||
|
||||
static m36(fileName) => "Prehrať (fileName}";
|
||||
static m37(fileName) => "Prehrať (fileName}";
|
||||
|
||||
static m37(username) => "${username} odstránili udalosť";
|
||||
static m38(username) => "${username} odstránili udalosť";
|
||||
|
||||
static m38(username) => "${username} odmietli pozvánku";
|
||||
static m39(username) => "${username} odmietli pozvánku";
|
||||
|
||||
static m39(username) => "Odstánené užívateľom ${username}";
|
||||
static m40(username) => "Odstánené užívateľom ${username}";
|
||||
|
||||
static m40(username) => "Videné užívateľom ${username}";
|
||||
static m41(username) => "Videné užívateľom ${username}";
|
||||
|
||||
static m41(username, count) =>
|
||||
static m42(username, count) =>
|
||||
"Videné užívateľom ${username} a ${count} dalšími";
|
||||
|
||||
static m42(username, username2) =>
|
||||
static m43(username, username2) =>
|
||||
"Videné užívateľmi ${username} a ${username2}";
|
||||
|
||||
static m43(username) => "${username} poslali súbor";
|
||||
static m44(username) => "${username} poslali súbor";
|
||||
|
||||
static m44(username) => "${username} poslali obrázok";
|
||||
static m45(username) => "${username} poslali obrázok";
|
||||
|
||||
static m45(username) => "${username} poslali nálepku";
|
||||
static m46(username) => "${username} poslali nálepku";
|
||||
|
||||
static m46(username) => "${username} poslali video";
|
||||
static m47(username) => "${username} poslali video";
|
||||
|
||||
static m47(username) => "${username} poslali zvukovú nahrávku";
|
||||
static m48(username) => "${username} poslali zvukovú nahrávku";
|
||||
|
||||
static m48(username) => "${username} zdieľa lokáciu";
|
||||
static m49(username) => "${username} zdieľa lokáciu";
|
||||
|
||||
static m49(hours12, hours24, minutes, suffix) => "${hours24}:${minutes}";
|
||||
static m50(hours12, hours24, minutes, suffix) => "${hours24}:${minutes}";
|
||||
|
||||
static m50(username, targetName) => "${username} odbanovali ${targetName}";
|
||||
static m51(username, targetName) => "${username} odbanovali ${targetName}";
|
||||
|
||||
static m51(type) => "Neznáma udalosť „${type}“";
|
||||
static m52(type) => "Neznáma udalosť „${type}“";
|
||||
|
||||
static m52(unreadCount) => "${unreadCount} neprečítaných chatov";
|
||||
static m53(unreadCount) => "${unreadCount} neprečítaných chatov";
|
||||
|
||||
static m53(unreadEvents) => "${unreadEvents} neprečítaných správ";
|
||||
static m54(unreadEvents) => "${unreadEvents} neprečítaných správ";
|
||||
|
||||
static m54(unreadEvents, unreadChats) =>
|
||||
static m55(unreadEvents, unreadChats) =>
|
||||
"${unreadEvents} neprečítaných správ v ${unreadChats} chatoch";
|
||||
|
||||
static m55(username, count) => "${username} a ${count} dalších píšu…";
|
||||
static m56(username, count) => "${username} a ${count} dalších píšu…";
|
||||
|
||||
static m56(username, username2) => "${username} a ${username2} píšu…";
|
||||
static m57(username, username2) => "${username} a ${username2} píšu…";
|
||||
|
||||
static m57(username) => "${username} píše…";
|
||||
static m58(username) => "${username} píše…";
|
||||
|
||||
static m58(username) => "${username} opustili chat";
|
||||
static m59(username) => "${username} opustili chat";
|
||||
|
||||
static m59(username, type) => "${username} poslali udalosť ${type}";
|
||||
static m60(username, type) => "${username} poslali udalosť ${type}";
|
||||
|
||||
final messages = _notInlinedMessages(_notInlinedMessages);
|
||||
static _notInlinedMessages(_) => <String, Function>{
|
||||
|
@ -484,70 +484,70 @@ class MessageLookup extends MessageLookupByLibrary {
|
|||
"Na overenie tejto osoby, prosím zadajte prístupovu frázu k \"bezpečému úložisku\" alebo \"klúč na obnovu\"."),
|
||||
"askSSSSVerify": MessageLookupByLibrary.simpleMessage(
|
||||
"Prosím zadajte vašu prístupovú frázu k \"bezpečnému úložisku\" alebo \"kľúč na obnovu\" pre overenie vašej relácie."),
|
||||
"askVerificationRequest": m60,
|
||||
"bannedUser": m2,
|
||||
"byDefaultYouWillBeConnectedTo": m3,
|
||||
"askVerificationRequest": m2,
|
||||
"bannedUser": m3,
|
||||
"byDefaultYouWillBeConnectedTo": m4,
|
||||
"cachedKeys":
|
||||
MessageLookupByLibrary.simpleMessage("Klúče sa úspešne uložili!"),
|
||||
"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,
|
||||
"changedTheChatAvatar": m5,
|
||||
"changedTheChatDescriptionTo": m6,
|
||||
"changedTheChatNameTo": m7,
|
||||
"changedTheChatPermissions": m8,
|
||||
"changedTheDisplaynameTo": m9,
|
||||
"changedTheGuestAccessRules": m10,
|
||||
"changedTheGuestAccessRulesTo": m11,
|
||||
"changedTheHistoryVisibility": m12,
|
||||
"changedTheHistoryVisibilityTo": m13,
|
||||
"changedTheJoinRules": m14,
|
||||
"changedTheJoinRulesTo": m15,
|
||||
"changedTheProfileAvatar": m16,
|
||||
"changedTheRoomAliases": m17,
|
||||
"changedTheRoomInvitationLink": m18,
|
||||
"compareEmojiMatch": MessageLookupByLibrary.simpleMessage(
|
||||
"Porovnajte a uistite sa, že nasledujúce emotikony sa zhodujú na oboch zariadeniach:"),
|
||||
"compareNumbersMatch": MessageLookupByLibrary.simpleMessage(
|
||||
"Porovnajte a uistite sa, že nasledujúce čísla sa zhodujú na oboch zariadeniach:"),
|
||||
"couldNotDecryptMessage": m18,
|
||||
"countParticipants": m19,
|
||||
"createdTheChat": m20,
|
||||
"couldNotDecryptMessage": m19,
|
||||
"countParticipants": m20,
|
||||
"createdTheChat": m21,
|
||||
"crossSigningDisabled": MessageLookupByLibrary.simpleMessage(
|
||||
"Vzájomné overenie je vypnuté"),
|
||||
"crossSigningEnabled": MessageLookupByLibrary.simpleMessage(
|
||||
"Vzájomné overenie je zapnuté"),
|
||||
"dateAndTimeOfDay": m21,
|
||||
"dateWithYear": m22,
|
||||
"dateWithoutYear": m23,
|
||||
"dateAndTimeOfDay": m22,
|
||||
"dateWithYear": m23,
|
||||
"dateWithoutYear": m24,
|
||||
"emoteExists":
|
||||
MessageLookupByLibrary.simpleMessage("Emotikon už existuje"),
|
||||
"emoteInvalid": MessageLookupByLibrary.simpleMessage(
|
||||
"Nesprávné označenie emotikonu"),
|
||||
"emoteWarnNeedToPick": MessageLookupByLibrary.simpleMessage(
|
||||
"Musíte zvoliť kód emotikonu a obrázok"),
|
||||
"groupWith": m24,
|
||||
"hasWithdrawnTheInvitationFor": m25,
|
||||
"groupWith": m25,
|
||||
"hasWithdrawnTheInvitationFor": m26,
|
||||
"incorrectPassphraseOrKey": MessageLookupByLibrary.simpleMessage(
|
||||
"Nesprávna prístupová fráza alebo kľúč na obnovenie"),
|
||||
"inviteContactToGroup": m26,
|
||||
"inviteText": m27,
|
||||
"invitedUser": m28,
|
||||
"inviteContactToGroup": m27,
|
||||
"inviteText": m28,
|
||||
"invitedUser": m29,
|
||||
"is typing...": MessageLookupByLibrary.simpleMessage("píše..."),
|
||||
"isDeviceKeyCorrect": MessageLookupByLibrary.simpleMessage(
|
||||
"Je nasledujúci kód zariadenia správny?"),
|
||||
"joinedTheChat": m29,
|
||||
"joinedTheChat": m30,
|
||||
"keysCached": MessageLookupByLibrary.simpleMessage("Kľúče sú uložené"),
|
||||
"keysMissing": MessageLookupByLibrary.simpleMessage("Kľúče chýbaju"),
|
||||
"kicked": m30,
|
||||
"kickedAndBanned": m31,
|
||||
"lastActiveAgo": m32,
|
||||
"loadCountMoreParticipants": m33,
|
||||
"logInTo": m34,
|
||||
"kicked": m31,
|
||||
"kickedAndBanned": m32,
|
||||
"lastActiveAgo": m33,
|
||||
"loadCountMoreParticipants": m34,
|
||||
"logInTo": m35,
|
||||
"newVerificationRequest":
|
||||
MessageLookupByLibrary.simpleMessage("Nová žiadosť o verifikáciu!"),
|
||||
"noCrossSignBootstrap": MessageLookupByLibrary.simpleMessage(
|
||||
"Fluffychat v súčasnosti nepodporuje povolenie krížového podpisu. Prosím, povoľte ho z Riot.im."),
|
||||
"noMegolmBootstrap": MessageLookupByLibrary.simpleMessage(
|
||||
"Fluffychat v súčasnosti nepodporuje povolenie online zálohu klúčov. Prosím, povoľte ho z Riot.im."),
|
||||
"numberSelected": m35,
|
||||
"numberSelected": m36,
|
||||
"ok": MessageLookupByLibrary.simpleMessage("ok"),
|
||||
"onlineKeyBackupDisabled": MessageLookupByLibrary.simpleMessage(
|
||||
"Online záloha kľúčov je vypnutá"),
|
||||
|
@ -555,35 +555,35 @@ class MessageLookup extends MessageLookupByLibrary {
|
|||
"Online záloha kľúčov je zapnutá"),
|
||||
"passphraseOrKey": MessageLookupByLibrary.simpleMessage(
|
||||
"prístupová fráza alebo kľúč na obnovenie"),
|
||||
"play": m36,
|
||||
"redactedAnEvent": m37,
|
||||
"rejectedTheInvitation": m38,
|
||||
"removedBy": m39,
|
||||
"seenByUser": m40,
|
||||
"seenByUserAndCountOthers": m41,
|
||||
"seenByUserAndUser": m42,
|
||||
"sentAFile": m43,
|
||||
"sentAPicture": m44,
|
||||
"sentASticker": m45,
|
||||
"sentAVideo": m46,
|
||||
"sentAnAudio": m47,
|
||||
"play": m37,
|
||||
"redactedAnEvent": m38,
|
||||
"rejectedTheInvitation": m39,
|
||||
"removedBy": m40,
|
||||
"seenByUser": m41,
|
||||
"seenByUserAndCountOthers": m42,
|
||||
"seenByUserAndUser": m43,
|
||||
"sentAFile": m44,
|
||||
"sentAPicture": m45,
|
||||
"sentASticker": m46,
|
||||
"sentAVideo": m47,
|
||||
"sentAnAudio": m48,
|
||||
"sessionVerified":
|
||||
MessageLookupByLibrary.simpleMessage("Relácia je overená"),
|
||||
"sharedTheLocation": m48,
|
||||
"timeOfDay": m49,
|
||||
"sharedTheLocation": m49,
|
||||
"timeOfDay": m50,
|
||||
"title": MessageLookupByLibrary.simpleMessage("FluffyChat"),
|
||||
"unbannedUser": m50,
|
||||
"unknownEvent": m51,
|
||||
"unbannedUser": m51,
|
||||
"unknownEvent": m52,
|
||||
"unknownSessionVerify": MessageLookupByLibrary.simpleMessage(
|
||||
"Neznáma relácia, prosím verifikujte ju"),
|
||||
"unreadChats": m52,
|
||||
"unreadMessages": m53,
|
||||
"unreadMessagesInChats": m54,
|
||||
"userAndOthersAreTyping": m55,
|
||||
"userAndUserAreTyping": m56,
|
||||
"userIsTyping": m57,
|
||||
"userLeftTheChat": m58,
|
||||
"userSentUnknownEvent": m59,
|
||||
"unreadChats": m53,
|
||||
"unreadMessages": m54,
|
||||
"unreadMessagesInChats": m55,
|
||||
"userAndOthersAreTyping": m56,
|
||||
"userAndUserAreTyping": m57,
|
||||
"userIsTyping": m58,
|
||||
"userLeftTheChat": m59,
|
||||
"userSentUnknownEvent": m60,
|
||||
"verifiedSession":
|
||||
MessageLookupByLibrary.simpleMessage("Úspešne overenie relácie!"),
|
||||
"verifyManual":
|
||||
|
|
462
lib/l10n/messages_uk.dart
Normal file
462
lib/l10n/messages_uk.dart
Normal file
|
@ -0,0 +1,462 @@
|
|||
// DO NOT EDIT. This is code generated via package:intl/generate_localized.dart
|
||||
// This is a library that provides messages for a uk 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 => 'uk';
|
||||
|
||||
static m0(username) => "";
|
||||
|
||||
static m1(username) => "";
|
||||
|
||||
static m2(username) => "";
|
||||
|
||||
static m3(username, targetName) => "";
|
||||
|
||||
static m4(homeserver) => "";
|
||||
|
||||
static m5(username) => "";
|
||||
|
||||
static m6(username, description) => "";
|
||||
|
||||
static m7(username, chatname) => "";
|
||||
|
||||
static m8(username) => "";
|
||||
|
||||
static m9(username, displayname) => "";
|
||||
|
||||
static m10(username) => "";
|
||||
|
||||
static m11(username, rules) => "";
|
||||
|
||||
static m12(username) => "";
|
||||
|
||||
static m13(username, rules) => "";
|
||||
|
||||
static m14(username) => "";
|
||||
|
||||
static m15(username, joinRules) => "";
|
||||
|
||||
static m16(username) => "";
|
||||
|
||||
static m17(username) => "";
|
||||
|
||||
static m18(username) => "";
|
||||
|
||||
static m19(error) => "";
|
||||
|
||||
static m20(count) => "";
|
||||
|
||||
static m21(username) => "";
|
||||
|
||||
static m22(date, timeOfDay) => "";
|
||||
|
||||
static m23(year, month, day) => "";
|
||||
|
||||
static m24(month, day) => "";
|
||||
|
||||
static m25(displayname) => "";
|
||||
|
||||
static m26(username, targetName) => "";
|
||||
|
||||
static m27(groupName) => "";
|
||||
|
||||
static m28(username, link) => "";
|
||||
|
||||
static m29(username, targetName) => "";
|
||||
|
||||
static m30(username) => "";
|
||||
|
||||
static m31(username, targetName) => "";
|
||||
|
||||
static m32(username, targetName) => "";
|
||||
|
||||
static m33(localizedTimeShort) => "";
|
||||
|
||||
static m34(count) => "";
|
||||
|
||||
static m35(homeserver) => "";
|
||||
|
||||
static m36(number) => "";
|
||||
|
||||
static m37(fileName) => "";
|
||||
|
||||
static m38(username) => "";
|
||||
|
||||
static m39(username) => "";
|
||||
|
||||
static m40(username) => "";
|
||||
|
||||
static m41(username) => "";
|
||||
|
||||
static m42(username, count) => "";
|
||||
|
||||
static m43(username, username2) => "";
|
||||
|
||||
static m44(username) => "";
|
||||
|
||||
static m45(username) => "";
|
||||
|
||||
static m46(username) => "";
|
||||
|
||||
static m47(username) => "";
|
||||
|
||||
static m48(username) => "";
|
||||
|
||||
static m49(username) => "";
|
||||
|
||||
static m50(hours12, hours24, minutes, suffix) => "";
|
||||
|
||||
static m51(username, targetName) => "";
|
||||
|
||||
static m52(type) => "";
|
||||
|
||||
static m53(unreadCount) => "";
|
||||
|
||||
static m54(unreadEvents) => "";
|
||||
|
||||
static m55(unreadEvents, unreadChats) => "";
|
||||
|
||||
static m56(username, count) => "";
|
||||
|
||||
static m57(username, username2) => "";
|
||||
|
||||
static m58(username) => "";
|
||||
|
||||
static m59(username) => "";
|
||||
|
||||
static m60(username, type) => "";
|
||||
|
||||
final messages = _notInlinedMessages(_notInlinedMessages);
|
||||
static _notInlinedMessages(_) => <String, Function>{
|
||||
"(Optional) Group name": MessageLookupByLibrary.simpleMessage(""),
|
||||
"About": MessageLookupByLibrary.simpleMessage(""),
|
||||
"Accept": MessageLookupByLibrary.simpleMessage(""),
|
||||
"Account": MessageLookupByLibrary.simpleMessage(""),
|
||||
"Account informations": MessageLookupByLibrary.simpleMessage(""),
|
||||
"Add a group description": MessageLookupByLibrary.simpleMessage(""),
|
||||
"Admin": MessageLookupByLibrary.simpleMessage(""),
|
||||
"Already have an account?": MessageLookupByLibrary.simpleMessage(""),
|
||||
"Anyone can join": MessageLookupByLibrary.simpleMessage(""),
|
||||
"Archive": MessageLookupByLibrary.simpleMessage(""),
|
||||
"Archived Room": MessageLookupByLibrary.simpleMessage(""),
|
||||
"Are guest users allowed to join":
|
||||
MessageLookupByLibrary.simpleMessage(""),
|
||||
"Are you sure?": MessageLookupByLibrary.simpleMessage(""),
|
||||
"Authentication": MessageLookupByLibrary.simpleMessage(""),
|
||||
"Avatar has been changed": MessageLookupByLibrary.simpleMessage(""),
|
||||
"Ban from chat": MessageLookupByLibrary.simpleMessage(""),
|
||||
"Banned": MessageLookupByLibrary.simpleMessage(""),
|
||||
"Block Device": MessageLookupByLibrary.simpleMessage(""),
|
||||
"Cancel": MessageLookupByLibrary.simpleMessage(""),
|
||||
"Change the homeserver": MessageLookupByLibrary.simpleMessage(""),
|
||||
"Change the name of the group":
|
||||
MessageLookupByLibrary.simpleMessage(""),
|
||||
"Change the server": MessageLookupByLibrary.simpleMessage(""),
|
||||
"Change wallpaper": MessageLookupByLibrary.simpleMessage(""),
|
||||
"Change your style": MessageLookupByLibrary.simpleMessage(""),
|
||||
"Changelog": MessageLookupByLibrary.simpleMessage(""),
|
||||
"Chat": MessageLookupByLibrary.simpleMessage(""),
|
||||
"Chat details": MessageLookupByLibrary.simpleMessage(""),
|
||||
"Choose a strong password": MessageLookupByLibrary.simpleMessage(""),
|
||||
"Choose a username": MessageLookupByLibrary.simpleMessage(""),
|
||||
"Close": MessageLookupByLibrary.simpleMessage(""),
|
||||
"Confirm": MessageLookupByLibrary.simpleMessage(""),
|
||||
"Connect": MessageLookupByLibrary.simpleMessage(""),
|
||||
"Connection attempt failed": MessageLookupByLibrary.simpleMessage(""),
|
||||
"Contact has been invited to the group":
|
||||
MessageLookupByLibrary.simpleMessage(""),
|
||||
"Content viewer": MessageLookupByLibrary.simpleMessage(""),
|
||||
"Copied to clipboard": MessageLookupByLibrary.simpleMessage(""),
|
||||
"Copy": MessageLookupByLibrary.simpleMessage(""),
|
||||
"Could not set avatar": MessageLookupByLibrary.simpleMessage(""),
|
||||
"Could not set displayname": MessageLookupByLibrary.simpleMessage(""),
|
||||
"Create": MessageLookupByLibrary.simpleMessage(""),
|
||||
"Create account now": MessageLookupByLibrary.simpleMessage(""),
|
||||
"Create new group": MessageLookupByLibrary.simpleMessage(""),
|
||||
"Currently active": MessageLookupByLibrary.simpleMessage(""),
|
||||
"Dark": MessageLookupByLibrary.simpleMessage(""),
|
||||
"Delete": MessageLookupByLibrary.simpleMessage(""),
|
||||
"Delete message": MessageLookupByLibrary.simpleMessage(""),
|
||||
"Deny": MessageLookupByLibrary.simpleMessage(""),
|
||||
"Device": MessageLookupByLibrary.simpleMessage(""),
|
||||
"Devices": MessageLookupByLibrary.simpleMessage(""),
|
||||
"Discard picture": MessageLookupByLibrary.simpleMessage(""),
|
||||
"Displayname has been changed":
|
||||
MessageLookupByLibrary.simpleMessage(""),
|
||||
"Donate": MessageLookupByLibrary.simpleMessage(""),
|
||||
"Download file": MessageLookupByLibrary.simpleMessage(""),
|
||||
"Edit Jitsi instance": MessageLookupByLibrary.simpleMessage(""),
|
||||
"Edit displayname": MessageLookupByLibrary.simpleMessage(""),
|
||||
"Emote Settings": MessageLookupByLibrary.simpleMessage(""),
|
||||
"Emote shortcode": MessageLookupByLibrary.simpleMessage(""),
|
||||
"Empty chat": MessageLookupByLibrary.simpleMessage(""),
|
||||
"Encryption": MessageLookupByLibrary.simpleMessage(""),
|
||||
"Encryption algorithm": MessageLookupByLibrary.simpleMessage(""),
|
||||
"Encryption is not enabled": MessageLookupByLibrary.simpleMessage(""),
|
||||
"End to end encryption is currently in Beta! Use at your own risk!":
|
||||
MessageLookupByLibrary.simpleMessage(""),
|
||||
"End-to-end encryption settings":
|
||||
MessageLookupByLibrary.simpleMessage(""),
|
||||
"Enter a group name": MessageLookupByLibrary.simpleMessage(""),
|
||||
"Enter a username": MessageLookupByLibrary.simpleMessage(""),
|
||||
"Enter your homeserver": MessageLookupByLibrary.simpleMessage(""),
|
||||
"File name": MessageLookupByLibrary.simpleMessage(""),
|
||||
"File size": MessageLookupByLibrary.simpleMessage(""),
|
||||
"FluffyChat": MessageLookupByLibrary.simpleMessage(""),
|
||||
"Forward": MessageLookupByLibrary.simpleMessage(""),
|
||||
"Friday": MessageLookupByLibrary.simpleMessage(""),
|
||||
"From joining": MessageLookupByLibrary.simpleMessage(""),
|
||||
"From the invitation": MessageLookupByLibrary.simpleMessage(""),
|
||||
"Group": MessageLookupByLibrary.simpleMessage(""),
|
||||
"Group description": MessageLookupByLibrary.simpleMessage(""),
|
||||
"Group description has been changed":
|
||||
MessageLookupByLibrary.simpleMessage(""),
|
||||
"Group is public": MessageLookupByLibrary.simpleMessage(""),
|
||||
"Guests are forbidden": MessageLookupByLibrary.simpleMessage(""),
|
||||
"Guests can join": MessageLookupByLibrary.simpleMessage(""),
|
||||
"Help": MessageLookupByLibrary.simpleMessage(""),
|
||||
"Homeserver is not compatible":
|
||||
MessageLookupByLibrary.simpleMessage(""),
|
||||
"How are you today?": MessageLookupByLibrary.simpleMessage(""),
|
||||
"ID": MessageLookupByLibrary.simpleMessage(""),
|
||||
"Identity": MessageLookupByLibrary.simpleMessage(""),
|
||||
"Invite contact": MessageLookupByLibrary.simpleMessage(""),
|
||||
"Invited": MessageLookupByLibrary.simpleMessage(""),
|
||||
"Invited users only": MessageLookupByLibrary.simpleMessage(""),
|
||||
"It seems that you have no google services on your phone. That\'s a good decision for your privacy! To receive push notifications in FluffyChat we recommend using microG: https://microg.org/":
|
||||
MessageLookupByLibrary.simpleMessage(""),
|
||||
"Kick from chat": MessageLookupByLibrary.simpleMessage(""),
|
||||
"Last seen IP": MessageLookupByLibrary.simpleMessage(""),
|
||||
"Leave": MessageLookupByLibrary.simpleMessage(""),
|
||||
"Left the chat": MessageLookupByLibrary.simpleMessage(""),
|
||||
"License": MessageLookupByLibrary.simpleMessage(""),
|
||||
"Light": MessageLookupByLibrary.simpleMessage(""),
|
||||
"Load more...": MessageLookupByLibrary.simpleMessage(""),
|
||||
"Loading... Please wait": MessageLookupByLibrary.simpleMessage(""),
|
||||
"Login": MessageLookupByLibrary.simpleMessage(""),
|
||||
"Logout": MessageLookupByLibrary.simpleMessage(""),
|
||||
"Make a moderator": MessageLookupByLibrary.simpleMessage(""),
|
||||
"Make an admin": MessageLookupByLibrary.simpleMessage(""),
|
||||
"Make sure the identifier is valid":
|
||||
MessageLookupByLibrary.simpleMessage(""),
|
||||
"Message will be removed for all participants":
|
||||
MessageLookupByLibrary.simpleMessage(""),
|
||||
"Moderator": MessageLookupByLibrary.simpleMessage(""),
|
||||
"Monday": MessageLookupByLibrary.simpleMessage(""),
|
||||
"Mute chat": MessageLookupByLibrary.simpleMessage(""),
|
||||
"New message in FluffyChat": MessageLookupByLibrary.simpleMessage(""),
|
||||
"New private chat": MessageLookupByLibrary.simpleMessage(""),
|
||||
"No emotes found. 😕": MessageLookupByLibrary.simpleMessage(""),
|
||||
"No permission": MessageLookupByLibrary.simpleMessage(""),
|
||||
"No rooms found...": MessageLookupByLibrary.simpleMessage(""),
|
||||
"None": MessageLookupByLibrary.simpleMessage(""),
|
||||
"Not supported in web": MessageLookupByLibrary.simpleMessage(""),
|
||||
"Oops something went wrong...":
|
||||
MessageLookupByLibrary.simpleMessage(""),
|
||||
"Open app to read messages": MessageLookupByLibrary.simpleMessage(""),
|
||||
"Open camera": MessageLookupByLibrary.simpleMessage(""),
|
||||
"Participating user devices": MessageLookupByLibrary.simpleMessage(""),
|
||||
"Password": MessageLookupByLibrary.simpleMessage(""),
|
||||
"Pick image": MessageLookupByLibrary.simpleMessage(""),
|
||||
"Please be aware that you need Pantalaimon to use end-to-end encryption for now.":
|
||||
MessageLookupByLibrary.simpleMessage(""),
|
||||
"Please choose a username": MessageLookupByLibrary.simpleMessage(""),
|
||||
"Please enter a matrix identifier":
|
||||
MessageLookupByLibrary.simpleMessage(""),
|
||||
"Please enter your password": MessageLookupByLibrary.simpleMessage(""),
|
||||
"Please enter your username": MessageLookupByLibrary.simpleMessage(""),
|
||||
"Public Rooms": MessageLookupByLibrary.simpleMessage(""),
|
||||
"Recording": MessageLookupByLibrary.simpleMessage(""),
|
||||
"Reject": MessageLookupByLibrary.simpleMessage(""),
|
||||
"Rejoin": MessageLookupByLibrary.simpleMessage(""),
|
||||
"Remove": MessageLookupByLibrary.simpleMessage(""),
|
||||
"Remove all other devices": MessageLookupByLibrary.simpleMessage(""),
|
||||
"Remove device": MessageLookupByLibrary.simpleMessage(""),
|
||||
"Remove exile": MessageLookupByLibrary.simpleMessage(""),
|
||||
"Remove message": MessageLookupByLibrary.simpleMessage(""),
|
||||
"Render rich message content": MessageLookupByLibrary.simpleMessage(""),
|
||||
"Reply": MessageLookupByLibrary.simpleMessage(""),
|
||||
"Request permission": MessageLookupByLibrary.simpleMessage(""),
|
||||
"Request to read older messages":
|
||||
MessageLookupByLibrary.simpleMessage(""),
|
||||
"Revoke all permissions": MessageLookupByLibrary.simpleMessage(""),
|
||||
"Room has been upgraded": MessageLookupByLibrary.simpleMessage(""),
|
||||
"Saturday": MessageLookupByLibrary.simpleMessage(""),
|
||||
"Search for a chat": MessageLookupByLibrary.simpleMessage(""),
|
||||
"Seen a long time ago": MessageLookupByLibrary.simpleMessage(""),
|
||||
"Send": MessageLookupByLibrary.simpleMessage(""),
|
||||
"Send a message": MessageLookupByLibrary.simpleMessage(""),
|
||||
"Send file": MessageLookupByLibrary.simpleMessage(""),
|
||||
"Send image": MessageLookupByLibrary.simpleMessage(""),
|
||||
"Set a profile picture": MessageLookupByLibrary.simpleMessage(""),
|
||||
"Set group description": MessageLookupByLibrary.simpleMessage(""),
|
||||
"Set invitation link": MessageLookupByLibrary.simpleMessage(""),
|
||||
"Set status": MessageLookupByLibrary.simpleMessage(""),
|
||||
"Settings": MessageLookupByLibrary.simpleMessage(""),
|
||||
"Share": MessageLookupByLibrary.simpleMessage(""),
|
||||
"Sign up": MessageLookupByLibrary.simpleMessage(""),
|
||||
"Skip": MessageLookupByLibrary.simpleMessage(""),
|
||||
"Source code": MessageLookupByLibrary.simpleMessage(""),
|
||||
"Start your first chat :-)": MessageLookupByLibrary.simpleMessage(""),
|
||||
"Submit": MessageLookupByLibrary.simpleMessage(""),
|
||||
"Sunday": MessageLookupByLibrary.simpleMessage(""),
|
||||
"System": MessageLookupByLibrary.simpleMessage(""),
|
||||
"Tap to show menu": MessageLookupByLibrary.simpleMessage(""),
|
||||
"The encryption has been corrupted":
|
||||
MessageLookupByLibrary.simpleMessage(""),
|
||||
"They Don\'t Match": MessageLookupByLibrary.simpleMessage(""),
|
||||
"They Match": MessageLookupByLibrary.simpleMessage(""),
|
||||
"This room has been archived.":
|
||||
MessageLookupByLibrary.simpleMessage(""),
|
||||
"Thursday": MessageLookupByLibrary.simpleMessage(""),
|
||||
"Try to send again": MessageLookupByLibrary.simpleMessage(""),
|
||||
"Tuesday": MessageLookupByLibrary.simpleMessage(""),
|
||||
"Unblock Device": MessageLookupByLibrary.simpleMessage(""),
|
||||
"Unknown device": MessageLookupByLibrary.simpleMessage(""),
|
||||
"Unknown encryption algorithm":
|
||||
MessageLookupByLibrary.simpleMessage(""),
|
||||
"Unmute chat": MessageLookupByLibrary.simpleMessage(""),
|
||||
"Use Amoled compatible colors?":
|
||||
MessageLookupByLibrary.simpleMessage(""),
|
||||
"Username": MessageLookupByLibrary.simpleMessage(""),
|
||||
"Verify": MessageLookupByLibrary.simpleMessage(""),
|
||||
"Verify User": MessageLookupByLibrary.simpleMessage(""),
|
||||
"Video call": MessageLookupByLibrary.simpleMessage(""),
|
||||
"Visibility of the chat history":
|
||||
MessageLookupByLibrary.simpleMessage(""),
|
||||
"Visible for all participants":
|
||||
MessageLookupByLibrary.simpleMessage(""),
|
||||
"Visible for everyone": MessageLookupByLibrary.simpleMessage(""),
|
||||
"Voice message": MessageLookupByLibrary.simpleMessage(""),
|
||||
"Wallpaper": MessageLookupByLibrary.simpleMessage(""),
|
||||
"Wednesday": MessageLookupByLibrary.simpleMessage(""),
|
||||
"Welcome to the cutest instant messenger in the matrix network.":
|
||||
MessageLookupByLibrary.simpleMessage(""),
|
||||
"Who is allowed to join this group":
|
||||
MessageLookupByLibrary.simpleMessage(""),
|
||||
"Write a message...": MessageLookupByLibrary.simpleMessage(""),
|
||||
"Yes": MessageLookupByLibrary.simpleMessage(""),
|
||||
"You": MessageLookupByLibrary.simpleMessage(""),
|
||||
"You are invited to this chat":
|
||||
MessageLookupByLibrary.simpleMessage(""),
|
||||
"You are no longer participating in this chat":
|
||||
MessageLookupByLibrary.simpleMessage(""),
|
||||
"You cannot invite yourself": MessageLookupByLibrary.simpleMessage(""),
|
||||
"You have been banned from this chat":
|
||||
MessageLookupByLibrary.simpleMessage(""),
|
||||
"You won\'t be able to disable the encryption anymore. Are you sure?":
|
||||
MessageLookupByLibrary.simpleMessage(""),
|
||||
"Your own username": MessageLookupByLibrary.simpleMessage(""),
|
||||
"acceptedTheInvitation": m0,
|
||||
"activatedEndToEndEncryption": m1,
|
||||
"alias": MessageLookupByLibrary.simpleMessage(""),
|
||||
"askSSSSCache": MessageLookupByLibrary.simpleMessage(""),
|
||||
"askSSSSSign": MessageLookupByLibrary.simpleMessage(""),
|
||||
"askSSSSVerify": MessageLookupByLibrary.simpleMessage(""),
|
||||
"askVerificationRequest": m2,
|
||||
"bannedUser": m3,
|
||||
"byDefaultYouWillBeConnectedTo": m4,
|
||||
"cachedKeys": MessageLookupByLibrary.simpleMessage(""),
|
||||
"changedTheChatAvatar": m5,
|
||||
"changedTheChatDescriptionTo": m6,
|
||||
"changedTheChatNameTo": m7,
|
||||
"changedTheChatPermissions": m8,
|
||||
"changedTheDisplaynameTo": m9,
|
||||
"changedTheGuestAccessRules": m10,
|
||||
"changedTheGuestAccessRulesTo": m11,
|
||||
"changedTheHistoryVisibility": m12,
|
||||
"changedTheHistoryVisibilityTo": m13,
|
||||
"changedTheJoinRules": m14,
|
||||
"changedTheJoinRulesTo": m15,
|
||||
"changedTheProfileAvatar": m16,
|
||||
"changedTheRoomAliases": m17,
|
||||
"changedTheRoomInvitationLink": m18,
|
||||
"compareEmojiMatch": MessageLookupByLibrary.simpleMessage(""),
|
||||
"compareNumbersMatch": MessageLookupByLibrary.simpleMessage(""),
|
||||
"couldNotDecryptMessage": m19,
|
||||
"countParticipants": m20,
|
||||
"createdTheChat": m21,
|
||||
"crossSigningDisabled": MessageLookupByLibrary.simpleMessage(""),
|
||||
"crossSigningEnabled": MessageLookupByLibrary.simpleMessage(""),
|
||||
"dateAndTimeOfDay": m22,
|
||||
"dateWithYear": m23,
|
||||
"dateWithoutYear": m24,
|
||||
"emoteExists": MessageLookupByLibrary.simpleMessage(""),
|
||||
"emoteInvalid": MessageLookupByLibrary.simpleMessage(""),
|
||||
"emoteWarnNeedToPick": MessageLookupByLibrary.simpleMessage(""),
|
||||
"groupWith": m25,
|
||||
"hasWithdrawnTheInvitationFor": m26,
|
||||
"incorrectPassphraseOrKey": MessageLookupByLibrary.simpleMessage(""),
|
||||
"inviteContactToGroup": m27,
|
||||
"inviteText": m28,
|
||||
"invitedUser": m29,
|
||||
"is typing...": MessageLookupByLibrary.simpleMessage(""),
|
||||
"isDeviceKeyCorrect": MessageLookupByLibrary.simpleMessage(""),
|
||||
"joinedTheChat": m30,
|
||||
"keysCached": MessageLookupByLibrary.simpleMessage(""),
|
||||
"keysMissing": MessageLookupByLibrary.simpleMessage(""),
|
||||
"kicked": m31,
|
||||
"kickedAndBanned": m32,
|
||||
"lastActiveAgo": m33,
|
||||
"loadCountMoreParticipants": m34,
|
||||
"logInTo": m35,
|
||||
"newVerificationRequest": MessageLookupByLibrary.simpleMessage(""),
|
||||
"noCrossSignBootstrap": MessageLookupByLibrary.simpleMessage(""),
|
||||
"noMegolmBootstrap": MessageLookupByLibrary.simpleMessage(""),
|
||||
"numberSelected": m36,
|
||||
"ok": MessageLookupByLibrary.simpleMessage(""),
|
||||
"onlineKeyBackupDisabled": MessageLookupByLibrary.simpleMessage(""),
|
||||
"onlineKeyBackupEnabled": MessageLookupByLibrary.simpleMessage(""),
|
||||
"passphraseOrKey": MessageLookupByLibrary.simpleMessage(""),
|
||||
"play": m37,
|
||||
"redactedAnEvent": m38,
|
||||
"rejectedTheInvitation": m39,
|
||||
"removedBy": m40,
|
||||
"seenByUser": m41,
|
||||
"seenByUserAndCountOthers": m42,
|
||||
"seenByUserAndUser": m43,
|
||||
"sentAFile": m44,
|
||||
"sentAPicture": m45,
|
||||
"sentASticker": m46,
|
||||
"sentAVideo": m47,
|
||||
"sentAnAudio": m48,
|
||||
"sessionVerified": MessageLookupByLibrary.simpleMessage(""),
|
||||
"sharedTheLocation": m49,
|
||||
"timeOfDay": m50,
|
||||
"title": MessageLookupByLibrary.simpleMessage(""),
|
||||
"unbannedUser": m51,
|
||||
"unknownEvent": m52,
|
||||
"unknownSessionVerify": MessageLookupByLibrary.simpleMessage(""),
|
||||
"unreadChats": m53,
|
||||
"unreadMessages": m54,
|
||||
"unreadMessagesInChats": m55,
|
||||
"userAndOthersAreTyping": m56,
|
||||
"userAndUserAreTyping": m57,
|
||||
"userIsTyping": m58,
|
||||
"userLeftTheChat": m59,
|
||||
"userSentUnknownEvent": m60,
|
||||
"verifiedSession": MessageLookupByLibrary.simpleMessage(""),
|
||||
"verifyManual": MessageLookupByLibrary.simpleMessage(""),
|
||||
"verifyStart": MessageLookupByLibrary.simpleMessage(""),
|
||||
"verifySuccess": MessageLookupByLibrary.simpleMessage(""),
|
||||
"verifyTitle": MessageLookupByLibrary.simpleMessage(""),
|
||||
"waitingPartnerAcceptRequest": MessageLookupByLibrary.simpleMessage(""),
|
||||
"waitingPartnerEmoji": MessageLookupByLibrary.simpleMessage(""),
|
||||
"waitingPartnerNumbers": MessageLookupByLibrary.simpleMessage("")
|
||||
};
|
||||
}
|
|
@ -53,6 +53,7 @@ class App extends StatelessWidget {
|
|||
const Locale('hr'), // Croatian
|
||||
const Locale('ja'), // Japanese
|
||||
const Locale('ru'), // Russian
|
||||
const Locale('uk'), // Ukrainian
|
||||
],
|
||||
locale: kIsWeb
|
||||
? Locale(html.window.navigator.language.split('-').first)
|
||||
|
|
Loading…
Reference in a new issue