Fix #53
This commit is contained in:
parent
02675911db
commit
6d294fe576
|
@ -1,5 +1,5 @@
|
||||||
{
|
{
|
||||||
"@@last_modified": "2020-05-07T11:13:43.051811",
|
"@@last_modified": "2020-05-09T11:48:21.714805",
|
||||||
"About": "About",
|
"About": "About",
|
||||||
"@About": {
|
"@About": {
|
||||||
"type": "text",
|
"type": "text",
|
||||||
|
@ -679,6 +679,11 @@
|
||||||
"type": "text",
|
"type": "text",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
|
"Load more...": "Load more...",
|
||||||
|
"@Load more...": {
|
||||||
|
"type": "text",
|
||||||
|
"placeholders": {}
|
||||||
|
},
|
||||||
"loadCountMoreParticipants": "Load {count} more participants",
|
"loadCountMoreParticipants": "Load {count} more participants",
|
||||||
"@loadCountMoreParticipants": {
|
"@loadCountMoreParticipants": {
|
||||||
"type": "text",
|
"type": "text",
|
||||||
|
|
|
@ -15,17 +15,25 @@ import 'package:intl/intl.dart';
|
||||||
import 'package:intl/message_lookup_by_library.dart';
|
import 'package:intl/message_lookup_by_library.dart';
|
||||||
import 'package:intl/src/intl_helpers.dart';
|
import 'package:intl/src/intl_helpers.dart';
|
||||||
|
|
||||||
|
import 'messages_de.dart' as messages_de;
|
||||||
import 'messages_hu.dart' as messages_hu;
|
import 'messages_hu.dart' as messages_hu;
|
||||||
|
import 'messages_messages.dart' as messages_messages;
|
||||||
|
|
||||||
typedef Future<dynamic> LibraryLoader();
|
typedef Future<dynamic> LibraryLoader();
|
||||||
Map<String, LibraryLoader> _deferredLibraries = {
|
Map<String, LibraryLoader> _deferredLibraries = {
|
||||||
|
'de': () => new Future.value(null),
|
||||||
'hu': () => new Future.value(null),
|
'hu': () => new Future.value(null),
|
||||||
|
'messages': () => new Future.value(null),
|
||||||
};
|
};
|
||||||
|
|
||||||
MessageLookupByLibrary _findExact(String localeName) {
|
MessageLookupByLibrary _findExact(String localeName) {
|
||||||
switch (localeName) {
|
switch (localeName) {
|
||||||
|
case 'de':
|
||||||
|
return messages_de.messages;
|
||||||
case 'hu':
|
case 'hu':
|
||||||
return messages_hu.messages;
|
return messages_hu.messages;
|
||||||
|
case 'messages':
|
||||||
|
return messages_messages.messages;
|
||||||
default:
|
default:
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
|
|
|
@ -55,83 +55,83 @@ class MessageLookup extends MessageLookupByLibrary {
|
||||||
|
|
||||||
static m17(username) => "${username} módosította a meghívó linket";
|
static m17(username) => "${username} módosította a meghívó linket";
|
||||||
|
|
||||||
static m18(count) => "${count} résztvevő";
|
static m19(count) => "${count} résztvevő";
|
||||||
|
|
||||||
static m19(username) => "${username} létrehozta a csevegést";
|
static m20(username) => "${username} létrehozta a csevegést";
|
||||||
|
|
||||||
static m20(date, timeOfDay) => "${date}, ${timeOfDay}";
|
static m21(date, timeOfDay) => "${date}, ${timeOfDay}";
|
||||||
|
|
||||||
static m21(year, month, day) => "${year}-${month}-${day}";
|
static m22(year, month, day) => "${year}-${month}-${day}";
|
||||||
|
|
||||||
static m22(month, day) => "${month}-${day}";
|
static m23(month, day) => "${month}-${day}";
|
||||||
|
|
||||||
static m23(displayname) => "Csoport ${displayname}-vel";
|
static m24(displayname) => "Csoport ${displayname}-vel";
|
||||||
|
|
||||||
static m24(username, targetName) => "${username} visszavonta ${targetName} meghívását";
|
static m25(username, targetName) => "${username} visszavonta ${targetName} meghívását";
|
||||||
|
|
||||||
static m25(groupName) => "Ismerős meghívása a ${groupName} csoportba";
|
static m26(groupName) => "Ismerős meghívása a ${groupName} csoportba";
|
||||||
|
|
||||||
static m26(username, link) => "${username} meghívott a FluffyChatre. \n1. FluffyChat telepítése: http://fluffy.chat \n2. Jelentkezz be vagy regisztrálj. \n3. Nyisd meg a meghívó linket: ${link}";
|
static m27(username, link) => "${username} meghívott a FluffyChatre. \n1. FluffyChat telepítése: http://fluffy.chat \n2. Jelentkezz be vagy regisztrálj. \n3. Nyisd meg a meghívó linket: ${link}";
|
||||||
|
|
||||||
static m27(username, targetName) => "${username} meghívta ${targetName}-t";
|
static m28(username, targetName) => "${username} meghívta ${targetName}-t";
|
||||||
|
|
||||||
static m28(username) => "${username} csatalakozott a csevegéshez";
|
static m29(username) => "${username} csatalakozott a csevegéshez";
|
||||||
|
|
||||||
static m29(username, targetName) => "${username} kirúgta ${targetName}-t";
|
static m30(username, targetName) => "${username} kirúgta ${targetName}-t";
|
||||||
|
|
||||||
static m30(username, targetName) => "${username} kirúgta és kitiltotta ${targetName}-t";
|
static m31(username, targetName) => "${username} kirúgta és kitiltotta ${targetName}-t";
|
||||||
|
|
||||||
static m31(count) => "További ${count} résztvevő betöltése";
|
static m33(count) => "További ${count} résztvevő betöltése";
|
||||||
|
|
||||||
static m32(homeserver) => "Bejelentkezés ${homeserver} Matrix szerverre";
|
static m34(homeserver) => "Bejelentkezés ${homeserver} Matrix szerverre";
|
||||||
|
|
||||||
static m33(number) => "${number} kijelölve";
|
static m35(number) => "${number} kijelölve";
|
||||||
|
|
||||||
static m34(fileName) => "${fileName} lejátszása";
|
static m36(fileName) => "${fileName} lejátszása";
|
||||||
|
|
||||||
static m35(username) => "${username} visszavont egy eseményt";
|
static m37(username) => "${username} visszavont egy eseményt";
|
||||||
|
|
||||||
static m36(username) => "${username} elutasította a meghívást";
|
static m38(username) => "${username} elutasította a meghívást";
|
||||||
|
|
||||||
static m37(username) => "Törölve ${username} által";
|
static m39(username) => "Törölve ${username} által";
|
||||||
|
|
||||||
static m38(username) => "${username} látta";
|
static m40(username) => "${username} látta";
|
||||||
|
|
||||||
static m39(username, count) => "${username} és ${count} másik résztvevő látta";
|
static m41(username, count) => "${username} és ${count} másik résztvevő látta";
|
||||||
|
|
||||||
static m40(username, username2) => "${username} és ${username2} látta";
|
static m42(username, username2) => "${username} és ${username2} látta";
|
||||||
|
|
||||||
static m41(username) => "${username} fájlt küldött";
|
static m43(username) => "${username} fájlt küldött";
|
||||||
|
|
||||||
static m42(username) => "${username} képet küldött";
|
static m44(username) => "${username} képet küldött";
|
||||||
|
|
||||||
static m43(username) => "${username} matricát küldött";
|
static m45(username) => "${username} matricát küldött";
|
||||||
|
|
||||||
static m44(username) => "${username} videót küldött";
|
static m46(username) => "${username} videót küldött";
|
||||||
|
|
||||||
static m45(username) => "${username} hangüzenetet küldött";
|
static m47(username) => "${username} hangüzenetet küldött";
|
||||||
|
|
||||||
static m46(username) => "${username} megosztotta a pozícióját";
|
static m48(username) => "${username} megosztotta a pozícióját";
|
||||||
|
|
||||||
static m47(hours12, hours24, minutes, suffix) => "${hours24}:${minutes}";
|
static m49(hours12, hours24, minutes, suffix) => "${hours24}:${minutes}";
|
||||||
|
|
||||||
static m48(username, targetName) => "${username} feloldotta ${targetName} kitiltását";
|
static m50(username, targetName) => "${username} feloldotta ${targetName} kitiltását";
|
||||||
|
|
||||||
static m49(type) => "Ismeretlen esemény \'${type}\'";
|
static m51(type) => "Ismeretlen esemény \'${type}\'";
|
||||||
|
|
||||||
static m50(unreadEvents) => "${unreadEvents} olvasatlan üzenet";
|
static m53(unreadEvents) => "${unreadEvents} olvasatlan üzenet";
|
||||||
|
|
||||||
static m51(unreadEvents, unreadChats) => "${unreadEvents} olvastlan üzenet van ${unreadChats}-ban";
|
static m54(unreadEvents, unreadChats) => "${unreadEvents} olvastlan üzenet van ${unreadChats}-ban";
|
||||||
|
|
||||||
static m52(username, count) => "${username} és ${count} másik résztvevő gépel...";
|
static m55(username, count) => "${username} és ${count} másik résztvevő gépel...";
|
||||||
|
|
||||||
static m53(username, username2) => "${username} és ${username2} gépel...";
|
static m56(username, username2) => "${username} és ${username2} gépel...";
|
||||||
|
|
||||||
static m54(username) => "${username} gépel...";
|
static m57(username) => "${username} gépel...";
|
||||||
|
|
||||||
static m55(username) => "${username} elhagyta a csevegést";
|
static m58(username) => "${username} elhagyta a csevegést";
|
||||||
|
|
||||||
static m56(username, type) => "${username} ${type} eseményt küldött";
|
static m59(username, type) => "${username} ${type} eseményt küldött";
|
||||||
|
|
||||||
final messages = _notInlinedMessages(_notInlinedMessages);
|
final messages = _notInlinedMessages(_notInlinedMessages);
|
||||||
static _notInlinedMessages(_) => <String, Function> {
|
static _notInlinedMessages(_) => <String, Function> {
|
||||||
|
@ -323,46 +323,46 @@ class MessageLookup extends MessageLookupByLibrary {
|
||||||
"changedTheProfileAvatar" : m15,
|
"changedTheProfileAvatar" : m15,
|
||||||
"changedTheRoomAliases" : m16,
|
"changedTheRoomAliases" : m16,
|
||||||
"changedTheRoomInvitationLink" : m17,
|
"changedTheRoomInvitationLink" : m17,
|
||||||
"countParticipants" : m18,
|
"countParticipants" : m19,
|
||||||
"createdTheChat" : m19,
|
"createdTheChat" : m20,
|
||||||
"dateAndTimeOfDay" : m20,
|
"dateAndTimeOfDay" : m21,
|
||||||
"dateWithYear" : m21,
|
"dateWithYear" : m22,
|
||||||
"dateWithoutYear" : m22,
|
"dateWithoutYear" : m23,
|
||||||
"groupWith" : m23,
|
"groupWith" : m24,
|
||||||
"hasWithdrawnTheInvitationFor" : m24,
|
"hasWithdrawnTheInvitationFor" : m25,
|
||||||
"inviteContactToGroup" : m25,
|
"inviteContactToGroup" : m26,
|
||||||
"inviteText" : m26,
|
"inviteText" : m27,
|
||||||
"invitedUser" : m27,
|
"invitedUser" : m28,
|
||||||
"is typing..." : MessageLookupByLibrary.simpleMessage("gépel..."),
|
"is typing..." : MessageLookupByLibrary.simpleMessage("gépel..."),
|
||||||
"joinedTheChat" : m28,
|
"joinedTheChat" : m29,
|
||||||
"kicked" : m29,
|
"kicked" : m30,
|
||||||
"kickedAndBanned" : m30,
|
"kickedAndBanned" : m31,
|
||||||
"loadCountMoreParticipants" : m31,
|
"loadCountMoreParticipants" : m33,
|
||||||
"logInTo" : m32,
|
"logInTo" : m34,
|
||||||
"numberSelected" : m33,
|
"numberSelected" : m35,
|
||||||
"play" : m34,
|
"play" : m36,
|
||||||
"redactedAnEvent" : m35,
|
"redactedAnEvent" : m37,
|
||||||
"rejectedTheInvitation" : m36,
|
"rejectedTheInvitation" : m38,
|
||||||
"removedBy" : m37,
|
"removedBy" : m39,
|
||||||
"seenByUser" : m38,
|
"seenByUser" : m40,
|
||||||
"seenByUserAndCountOthers" : m39,
|
"seenByUserAndCountOthers" : m41,
|
||||||
"seenByUserAndUser" : m40,
|
"seenByUserAndUser" : m42,
|
||||||
"sentAFile" : m41,
|
"sentAFile" : m43,
|
||||||
"sentAPicture" : m42,
|
"sentAPicture" : m44,
|
||||||
"sentASticker" : m43,
|
"sentASticker" : m45,
|
||||||
"sentAVideo" : m44,
|
"sentAVideo" : m46,
|
||||||
"sentAnAudio" : m45,
|
"sentAnAudio" : m47,
|
||||||
"sharedTheLocation" : m46,
|
"sharedTheLocation" : m48,
|
||||||
"timeOfDay" : m47,
|
"timeOfDay" : m49,
|
||||||
"title" : MessageLookupByLibrary.simpleMessage("FluffyChat"),
|
"title" : MessageLookupByLibrary.simpleMessage("FluffyChat"),
|
||||||
"unbannedUser" : m48,
|
"unbannedUser" : m50,
|
||||||
"unknownEvent" : m49,
|
"unknownEvent" : m51,
|
||||||
"unreadMessages" : m50,
|
"unreadMessages" : m53,
|
||||||
"unreadMessagesInChats" : m51,
|
"unreadMessagesInChats" : m54,
|
||||||
"userAndOthersAreTyping" : m52,
|
"userAndOthersAreTyping" : m55,
|
||||||
"userAndUserAreTyping" : m53,
|
"userAndUserAreTyping" : m56,
|
||||||
"userIsTyping" : m54,
|
"userIsTyping" : m57,
|
||||||
"userLeftTheChat" : m55,
|
"userLeftTheChat" : m58,
|
||||||
"userSentUnknownEvent" : m56
|
"userSentUnknownEvent" : m59
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -228,6 +228,7 @@ class MessageLookup extends MessageLookupByLibrary {
|
||||||
"Left the chat" : MessageLookupByLibrary.simpleMessage("Left the chat"),
|
"Left the chat" : MessageLookupByLibrary.simpleMessage("Left the chat"),
|
||||||
"License" : MessageLookupByLibrary.simpleMessage("License"),
|
"License" : MessageLookupByLibrary.simpleMessage("License"),
|
||||||
"Light" : MessageLookupByLibrary.simpleMessage("Light"),
|
"Light" : MessageLookupByLibrary.simpleMessage("Light"),
|
||||||
|
"Load more..." : MessageLookupByLibrary.simpleMessage("Load more..."),
|
||||||
"Loading... Please wait" : MessageLookupByLibrary.simpleMessage("Loading... Please wait"),
|
"Loading... Please wait" : MessageLookupByLibrary.simpleMessage("Loading... Please wait"),
|
||||||
"Login" : MessageLookupByLibrary.simpleMessage("Login"),
|
"Login" : MessageLookupByLibrary.simpleMessage("Login"),
|
||||||
"Logout" : MessageLookupByLibrary.simpleMessage("Logout"),
|
"Logout" : MessageLookupByLibrary.simpleMessage("Logout"),
|
||||||
|
|
Loading…
Reference in a new issue