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