fluffychat merge

pull/1186/head
ggurdin 1 year ago
commit abfde8b150

@ -185,7 +185,9 @@
}, },
"sendTypingNotifications": "Send typing notifications", "sendTypingNotifications": "Send typing notifications",
"@sendTypingNotifications": {}, "@sendTypingNotifications": {},
"sendOnEnter": "Always send on enter", "swipeRightToLeftToReply": "Swipe right to left to reply",
"@swipeRightToLeftToReply": {},
"sendOnEnter": "Send on enter",
"@sendOnEnter": {}, "@sendOnEnter": {},
"badServerVersionsException": "The homeserver supports the Spec versions:\n{serverVersions}\nBut this app supports only {supportedVersions}", "badServerVersionsException": "The homeserver supports the Spec versions:\n{serverVersions}\nBut this app supports only {supportedVersions}",
"@badServerVersionsException": { "@badServerVersionsException": {

@ -26,6 +26,8 @@ abstract class SettingKeys {
static const String sendPublicReadReceipts = static const String sendPublicReadReceipts =
'chat.fluffy.send_public_read_receipts'; 'chat.fluffy.send_public_read_receipts';
static const String sendOnEnter = 'chat.fluffy.send_on_enter'; static const String sendOnEnter = 'chat.fluffy.send_on_enter';
static const String swipeRightToLeftToReply =
'chat.fluffy.swipeRightToLeftToReply';
static const String experimentalVoip = 'chat.fluffy.experimental_voip'; static const String experimentalVoip = 'chat.fluffy.experimental_voip';
static const String showPresences = 'chat.fluffy.show_presences'; static const String showPresences = 'chat.fluffy.show_presences';
static const String displayChatDetailsColumn = static const String displayChatDetailsColumn =

@ -28,14 +28,14 @@ class SettingsChatView extends StatelessWidget {
// storeKey: SettingKeys.renderHtml, // storeKey: SettingKeys.renderHtml,
// defaultValue: AppConfig.renderHtml, // defaultValue: AppConfig.renderHtml,
// ), // ),
// SettingsSwitchListTile.adaptive(
// title: L10n.of(context)!.hideMemberChangesInPublicChats,
// subtitle: L10n.of(context)!.hideMemberChangesInPublicChatsBody,
// onChanged: (b) => AppConfig.hideUnimportantStateEvents = b,
// storeKey: SettingKeys.hideUnimportantStateEvents,
// defaultValue: AppConfig.hideUnimportantStateEvents,
// ),
// Pangea# // Pangea#
SettingsSwitchListTile.adaptive(
title: L10n.of(context)!.hideMemberChangesInPublicChats,
subtitle: L10n.of(context)!.hideMemberChangesInPublicChatsBody,
onChanged: (b) => AppConfig.hideUnimportantStateEvents = b,
storeKey: SettingKeys.hideUnimportantStateEvents,
defaultValue: AppConfig.hideUnimportantStateEvents,
),
SettingsSwitchListTile.adaptive( SettingsSwitchListTile.adaptive(
title: L10n.of(context)!.hideRedactedMessages, title: L10n.of(context)!.hideRedactedMessages,
subtitle: L10n.of(context)!.hideRedactedMessagesBody, subtitle: L10n.of(context)!.hideRedactedMessagesBody,
@ -49,7 +49,7 @@ class SettingsChatView extends StatelessWidget {
storeKey: SettingKeys.hideUnknownEvents, storeKey: SettingKeys.hideUnknownEvents,
defaultValue: AppConfig.hideUnknownEvents, defaultValue: AppConfig.hideUnknownEvents,
), ),
// Pangea# // #Pangea
// if (PlatformInfos.isMobile) // if (PlatformInfos.isMobile)
// SettingsSwitchListTile.adaptive( // SettingsSwitchListTile.adaptive(
// title: L10n.of(context)!.autoplayImages, // title: L10n.of(context)!.autoplayImages,
@ -57,14 +57,20 @@ class SettingsChatView extends StatelessWidget {
// storeKey: SettingKeys.autoplayImages, // storeKey: SettingKeys.autoplayImages,
// defaultValue: AppConfig.autoplayImages, // defaultValue: AppConfig.autoplayImages,
// ), // ),
// Pangea#
// #Pangea
// SettingsSwitchListTile.adaptive( // SettingsSwitchListTile.adaptive(
// title: L10n.of(context)!.sendOnEnter, // title: L10n.of(context)!.sendOnEnter,
// onChanged: (b) => AppConfig.sendOnEnter = b, // onChanged: (b) => AppConfig.sendOnEnter = b,
// storeKey: SettingKeys.sendOnEnter, // storeKey: SettingKeys.sendOnEnter,
// defaultValue: AppConfig.sendOnEnter ?? !PlatformInfos.isMobile, // defaultValue: AppConfig.sendOnEnter ?? !PlatformInfos.isMobile,
// ), // ),
// Pangea#
SettingsSwitchListTile.adaptive(
title: L10n.of(context)!.swipeRightToLeftToReply,
onChanged: (b) => AppConfig.swipeRightToLeftToReply = b,
storeKey: SettingKeys.swipeRightToLeftToReply,
defaultValue: AppConfig.swipeRightToLeftToReply,
),
// #Pangea
// Divider( // Divider(
// height: 1, // height: 1,
// color: Theme.of(context).dividerColor, // color: Theme.of(context).dividerColor,

@ -466,6 +466,10 @@ class MatrixState extends State<Matrix> with WidgetsBindingObserver {
AppConfig.renderHtml = AppConfig.renderHtml =
store.getBool(SettingKeys.renderHtml) ?? AppConfig.renderHtml; store.getBool(SettingKeys.renderHtml) ?? AppConfig.renderHtml;
AppConfig.swipeRightToLeftToReply =
store.getBool(SettingKeys.swipeRightToLeftToReply) ??
AppConfig.swipeRightToLeftToReply;
AppConfig.hideRedactedEvents = AppConfig.hideRedactedEvents =
store.getBool(SettingKeys.hideRedactedEvents) ?? store.getBool(SettingKeys.hideRedactedEvents) ??
AppConfig.hideRedactedEvents; AppConfig.hideRedactedEvents;

@ -4,6 +4,7 @@
"addGroupDescription", "addGroupDescription",
"addNewFriend", "addNewFriend",
"alreadyHaveAnAccount", "alreadyHaveAnAccount",
"swipeRightToLeftToReply",
"classes", "classes",
"createNewGroup", "createNewGroup",
"editChatPermissions", "editChatPermissions",
@ -904,6 +905,7 @@
"autoplayImages", "autoplayImages",
"badServerLoginTypesException", "badServerLoginTypesException",
"sendTypingNotifications", "sendTypingNotifications",
"swipeRightToLeftToReply",
"sendOnEnter", "sendOnEnter",
"badServerVersionsException", "badServerVersionsException",
"banFromChat", "banFromChat",
@ -2393,6 +2395,7 @@
"autoplayImages", "autoplayImages",
"badServerLoginTypesException", "badServerLoginTypesException",
"sendTypingNotifications", "sendTypingNotifications",
"swipeRightToLeftToReply",
"sendOnEnter", "sendOnEnter",
"badServerVersionsException", "badServerVersionsException",
"banFromChat", "banFromChat",
@ -3886,6 +3889,7 @@
"autoplayImages", "autoplayImages",
"badServerLoginTypesException", "badServerLoginTypesException",
"sendTypingNotifications", "sendTypingNotifications",
"swipeRightToLeftToReply",
"sendOnEnter", "sendOnEnter",
"badServerVersionsException", "badServerVersionsException",
"banFromChat", "banFromChat",
@ -5340,6 +5344,7 @@
"addNewFriend", "addNewFriend",
"alreadyHaveAnAccount", "alreadyHaveAnAccount",
"appLockDescription", "appLockDescription",
"swipeRightToLeftToReply",
"classes", "classes",
"createNewGroup", "createNewGroup",
"editChatPermissions", "editChatPermissions",
@ -6234,6 +6239,7 @@
"addGroupDescription", "addGroupDescription",
"addNewFriend", "addNewFriend",
"alreadyHaveAnAccount", "alreadyHaveAnAccount",
"swipeRightToLeftToReply",
"classes", "classes",
"createNewGroup", "createNewGroup",
"editChatPermissions", "editChatPermissions",
@ -7211,6 +7217,7 @@
"addGroupDescription", "addGroupDescription",
"addNewFriend", "addNewFriend",
"alreadyHaveAnAccount", "alreadyHaveAnAccount",
"swipeRightToLeftToReply",
"classes", "classes",
"createNewGroup", "createNewGroup",
"editChatPermissions", "editChatPermissions",
@ -8072,6 +8079,7 @@
"addNewFriend", "addNewFriend",
"alreadyHaveAnAccount", "alreadyHaveAnAccount",
"appLockDescription", "appLockDescription",
"swipeRightToLeftToReply",
"changeDeviceName", "changeDeviceName",
"changedTheChatAvatar", "changedTheChatAvatar",
"changedTheChatDescriptionTo", "changedTheChatDescriptionTo",
@ -9532,6 +9540,7 @@
"hugContent", "hugContent",
"appLockDescription", "appLockDescription",
"sendTypingNotifications", "sendTypingNotifications",
"swipeRightToLeftToReply",
"yourChatBackupHasBeenSetUp", "yourChatBackupHasBeenSetUp",
"classes", "classes",
"commandHint_markasdm", "commandHint_markasdm",
@ -10654,6 +10663,7 @@
"es": [ "es": [
"appLockDescription", "appLockDescription",
"swipeRightToLeftToReply",
"globalChatId", "globalChatId",
"accessAndVisibility", "accessAndVisibility",
"accessAndVisibilityDescription", "accessAndVisibilityDescription",
@ -10694,6 +10704,7 @@
"addGroupDescription", "addGroupDescription",
"addNewFriend", "addNewFriend",
"alreadyHaveAnAccount", "alreadyHaveAnAccount",
"swipeRightToLeftToReply",
"classes", "classes",
"createNewGroup", "createNewGroup",
"editChatPermissions", "editChatPermissions",
@ -11459,8 +11470,6 @@
"clickToManageSubscription", "clickToManageSubscription",
"emptyInviteWarning", "emptyInviteWarning",
"errorGettingAudio", "errorGettingAudio",
"gallery",
"files",
"signUp", "signUp",
"pleaseChooseAtLeastChars", "pleaseChooseAtLeastChars",
"noEmailWarning", "noEmailWarning",
@ -11556,6 +11565,7 @@
"addGroupDescription", "addGroupDescription",
"addNewFriend", "addNewFriend",
"alreadyHaveAnAccount", "alreadyHaveAnAccount",
"swipeRightToLeftToReply",
"classes", "classes",
"createNewGroup", "createNewGroup",
"editChatPermissions", "editChatPermissions",
@ -12425,6 +12435,7 @@
"alreadyHaveAnAccount", "alreadyHaveAnAccount",
"appLockDescription", "appLockDescription",
"sendTypingNotifications", "sendTypingNotifications",
"swipeRightToLeftToReply",
"classes", "classes",
"createGroup", "createGroup",
"createNewGroup", "createNewGroup",
@ -13418,6 +13429,7 @@
"addNewFriend", "addNewFriend",
"alreadyHaveAnAccount", "alreadyHaveAnAccount",
"appLockDescription", "appLockDescription",
"swipeRightToLeftToReply",
"classes", "classes",
"createNewGroup", "createNewGroup",
"editChatPermissions", "editChatPermissions",
@ -14380,6 +14392,7 @@
"addGroupDescription", "addGroupDescription",
"addNewFriend", "addNewFriend",
"alreadyHaveAnAccount", "alreadyHaveAnAccount",
"swipeRightToLeftToReply",
"classes", "classes",
"createNewGroup", "createNewGroup",
"editChatPermissions", "editChatPermissions",
@ -15703,6 +15716,7 @@
"alreadyHaveAnAccount", "alreadyHaveAnAccount",
"appLockDescription", "appLockDescription",
"sendTypingNotifications", "sendTypingNotifications",
"swipeRightToLeftToReply",
"classes", "classes",
"createNewGroup", "createNewGroup",
"editChatPermissions", "editChatPermissions",
@ -16713,6 +16727,7 @@
"hugContent", "hugContent",
"appLockDescription", "appLockDescription",
"sendTypingNotifications", "sendTypingNotifications",
"swipeRightToLeftToReply",
"classes", "classes",
"commandHint_markasdm", "commandHint_markasdm",
"commandHint_markasgroup", "commandHint_markasgroup",
@ -17824,6 +17839,7 @@
"addGroupDescription", "addGroupDescription",
"addNewFriend", "addNewFriend",
"alreadyHaveAnAccount", "alreadyHaveAnAccount",
"swipeRightToLeftToReply",
"classes", "classes",
"createNewGroup", "createNewGroup",
"editChatPermissions", "editChatPermissions",
@ -18676,9 +18692,7 @@
"capacitySetTooLow", "capacitySetTooLow",
"roomCapacityExplanation", "roomCapacityExplanation",
"enterNumber", "enterNumber",
"buildTranslation", "buildTranslation"
"restricted",
"knockRestricted"
], ],
"he": [ "he": [
@ -18703,6 +18717,7 @@
"hugContent", "hugContent",
"appLockDescription", "appLockDescription",
"sendTypingNotifications", "sendTypingNotifications",
"swipeRightToLeftToReply",
"classes", "classes",
"commandHint_markasdm", "commandHint_markasdm",
"commandHint_markasgroup", "commandHint_markasgroup",
@ -19965,6 +19980,7 @@
"autoplayImages", "autoplayImages",
"badServerLoginTypesException", "badServerLoginTypesException",
"sendTypingNotifications", "sendTypingNotifications",
"swipeRightToLeftToReply",
"sendOnEnter", "sendOnEnter",
"badServerVersionsException", "badServerVersionsException",
"banFromChat", "banFromChat",
@ -21419,6 +21435,7 @@
"addNewFriend", "addNewFriend",
"alreadyHaveAnAccount", "alreadyHaveAnAccount",
"appLockDescription", "appLockDescription",
"swipeRightToLeftToReply",
"classes", "classes",
"createNewGroup", "createNewGroup",
"editChatPermissions", "editChatPermissions",
@ -22357,6 +22374,7 @@
"addGroupDescription", "addGroupDescription",
"addNewFriend", "addNewFriend",
"alreadyHaveAnAccount", "alreadyHaveAnAccount",
"swipeRightToLeftToReply",
"classes", "classes",
"createNewGroup", "createNewGroup",
"editChatPermissions", "editChatPermissions",
@ -23259,6 +23277,7 @@
"autoplayImages", "autoplayImages",
"badServerLoginTypesException", "badServerLoginTypesException",
"sendTypingNotifications", "sendTypingNotifications",
"swipeRightToLeftToReply",
"sendOnEnter", "sendOnEnter",
"badServerVersionsException", "badServerVersionsException",
"banFromChat", "banFromChat",
@ -24712,6 +24731,7 @@
"addGroupDescription", "addGroupDescription",
"addNewFriend", "addNewFriend",
"alreadyHaveAnAccount", "alreadyHaveAnAccount",
"swipeRightToLeftToReply",
"classes", "classes",
"createNewGroup", "createNewGroup",
"editChatPermissions", "editChatPermissions",
@ -25597,6 +25617,7 @@
"areGuestsAllowedToJoin", "areGuestsAllowedToJoin",
"askSSSSSign", "askSSSSSign",
"sendTypingNotifications", "sendTypingNotifications",
"swipeRightToLeftToReply",
"changedTheChatAvatar", "changedTheChatAvatar",
"changedTheChatDescriptionTo", "changedTheChatDescriptionTo",
"changedTheChatNameTo", "changedTheChatNameTo",
@ -26829,6 +26850,7 @@
"addNewFriend", "addNewFriend",
"alreadyHaveAnAccount", "alreadyHaveAnAccount",
"appLockDescription", "appLockDescription",
"swipeRightToLeftToReply",
"classes", "classes",
"createNewGroup", "createNewGroup",
"editChatPermissions", "editChatPermissions",
@ -27758,6 +27780,7 @@
"hugContent", "hugContent",
"appLockDescription", "appLockDescription",
"sendTypingNotifications", "sendTypingNotifications",
"swipeRightToLeftToReply",
"classes", "classes",
"commandHint_kick", "commandHint_kick",
"commandHint_me", "commandHint_me",
@ -28773,6 +28796,7 @@
"addGroupDescription", "addGroupDescription",
"addNewFriend", "addNewFriend",
"alreadyHaveAnAccount", "alreadyHaveAnAccount",
"swipeRightToLeftToReply",
"badServerVersionsException", "badServerVersionsException",
"classes", "classes",
"commandHint_markasdm", "commandHint_markasdm",
@ -30120,6 +30144,7 @@
"addGroupDescription", "addGroupDescription",
"addNewFriend", "addNewFriend",
"alreadyHaveAnAccount", "alreadyHaveAnAccount",
"swipeRightToLeftToReply",
"classes", "classes",
"createNewGroup", "createNewGroup",
"editChatPermissions", "editChatPermissions",
@ -30996,6 +31021,7 @@
"hugContent", "hugContent",
"appLockDescription", "appLockDescription",
"sendTypingNotifications", "sendTypingNotifications",
"swipeRightToLeftToReply",
"classes", "classes",
"createGroup", "createGroup",
"createNewGroup", "createNewGroup",
@ -32010,6 +32036,7 @@
"addGroupDescription", "addGroupDescription",
"addNewFriend", "addNewFriend",
"alreadyHaveAnAccount", "alreadyHaveAnAccount",
"swipeRightToLeftToReply",
"classes", "classes",
"createNewGroup", "createNewGroup",
"editChatPermissions", "editChatPermissions",
@ -32893,6 +32920,7 @@
"hugContent", "hugContent",
"appLockDescription", "appLockDescription",
"sendTypingNotifications", "sendTypingNotifications",
"swipeRightToLeftToReply",
"yourChatBackupHasBeenSetUp", "yourChatBackupHasBeenSetUp",
"chatHasBeenAddedToThisSpace", "chatHasBeenAddedToThisSpace",
"chats", "chats",
@ -34071,6 +34099,7 @@
"addNewFriend", "addNewFriend",
"alreadyHaveAnAccount", "alreadyHaveAnAccount",
"appLockDescription", "appLockDescription",
"swipeRightToLeftToReply",
"classes", "classes",
"createNewGroup", "createNewGroup",
"editChatPermissions", "editChatPermissions",
@ -35027,6 +35056,7 @@
"addNewFriend", "addNewFriend",
"alreadyHaveAnAccount", "alreadyHaveAnAccount",
"appLockDescription", "appLockDescription",
"swipeRightToLeftToReply",
"classes", "classes",
"createNewGroup", "createNewGroup",
"editChatPermissions", "editChatPermissions",
@ -36027,6 +36057,7 @@
"autoplayImages", "autoplayImages",
"badServerLoginTypesException", "badServerLoginTypesException",
"sendTypingNotifications", "sendTypingNotifications",
"swipeRightToLeftToReply",
"sendOnEnter", "sendOnEnter",
"badServerVersionsException", "badServerVersionsException",
"banFromChat", "banFromChat",
@ -37462,6 +37493,7 @@
"addGroupDescription", "addGroupDescription",
"addNewFriend", "addNewFriend",
"alreadyHaveAnAccount", "alreadyHaveAnAccount",
"swipeRightToLeftToReply",
"classes", "classes",
"createNewGroup", "createNewGroup",
"editChatPermissions", "editChatPermissions",
@ -38344,6 +38376,7 @@
"hugContent", "hugContent",
"appLockDescription", "appLockDescription",
"sendTypingNotifications", "sendTypingNotifications",
"swipeRightToLeftToReply",
"classes", "classes",
"commandHint_markasdm", "commandHint_markasdm",
"commandHint_markasgroup", "commandHint_markasgroup",
@ -39529,6 +39562,7 @@
"alreadyHaveAnAccount", "alreadyHaveAnAccount",
"appLockDescription", "appLockDescription",
"sendTypingNotifications", "sendTypingNotifications",
"swipeRightToLeftToReply",
"classes", "classes",
"createGroup", "createGroup",
"createNewGroup", "createNewGroup",
@ -40521,6 +40555,7 @@
"addGroupDescription", "addGroupDescription",
"addNewFriend", "addNewFriend",
"alreadyHaveAnAccount", "alreadyHaveAnAccount",
"swipeRightToLeftToReply",
"classes", "classes",
"createNewGroup", "createNewGroup",
"editChatPermissions", "editChatPermissions",
@ -41403,6 +41438,7 @@
"appLockDescription", "appLockDescription",
"autoplayImages", "autoplayImages",
"sendTypingNotifications", "sendTypingNotifications",
"swipeRightToLeftToReply",
"blocked", "blocked",
"botMessages", "botMessages",
"changeYourAvatar", "changeYourAvatar",
@ -42663,6 +42699,7 @@
"hugContent", "hugContent",
"appLockDescription", "appLockDescription",
"sendTypingNotifications", "sendTypingNotifications",
"swipeRightToLeftToReply",
"classes", "classes",
"commandHint_markasdm", "commandHint_markasdm",
"commandHint_markasgroup", "commandHint_markasgroup",
@ -44055,6 +44092,7 @@
"appLockDescription", "appLockDescription",
"autoplayImages", "autoplayImages",
"sendTypingNotifications", "sendTypingNotifications",
"swipeRightToLeftToReply",
"sendOnEnter", "sendOnEnter",
"cantOpenUri", "cantOpenUri",
"yourChatBackupHasBeenSetUp", "yourChatBackupHasBeenSetUp",
@ -45199,6 +45237,7 @@
"addNewFriend", "addNewFriend",
"alreadyHaveAnAccount", "alreadyHaveAnAccount",
"appLockDescription", "appLockDescription",
"swipeRightToLeftToReply",
"classes", "classes",
"createNewGroup", "createNewGroup",
"editChatPermissions", "editChatPermissions",
@ -46132,6 +46171,7 @@
"autoplayImages", "autoplayImages",
"badServerLoginTypesException", "badServerLoginTypesException",
"sendTypingNotifications", "sendTypingNotifications",
"swipeRightToLeftToReply",
"sendOnEnter", "sendOnEnter",
"badServerVersionsException", "badServerVersionsException",
"banFromChat", "banFromChat",
@ -47586,6 +47626,7 @@
"addNewFriend", "addNewFriend",
"alreadyHaveAnAccount", "alreadyHaveAnAccount",
"appLockDescription", "appLockDescription",
"swipeRightToLeftToReply",
"badServerVersionsException", "badServerVersionsException",
"banFromChat", "banFromChat",
"banned", "banned",
@ -49029,6 +49070,7 @@
"addGroupDescription", "addGroupDescription",
"addNewFriend", "addNewFriend",
"alreadyHaveAnAccount", "alreadyHaveAnAccount",
"swipeRightToLeftToReply",
"classes", "classes",
"createNewGroup", "createNewGroup",
"editChatPermissions", "editChatPermissions",
@ -49881,9 +49923,7 @@
"capacitySetTooLow", "capacitySetTooLow",
"roomCapacityExplanation", "roomCapacityExplanation",
"enterNumber", "enterNumber",
"buildTranslation", "buildTranslation"
"restricted",
"knockRestricted"
], ],
"uk": [ "uk": [
@ -49892,6 +49932,7 @@
"addNewFriend", "addNewFriend",
"alreadyHaveAnAccount", "alreadyHaveAnAccount",
"appLockDescription", "appLockDescription",
"swipeRightToLeftToReply",
"classes", "classes",
"createNewGroup", "createNewGroup",
"editChatPermissions", "editChatPermissions",
@ -50784,22 +50825,9 @@
], ],
"vi": [ "vi": [
"repeatPassword",
"notAnImage",
"remove",
"importNow",
"importEmojis",
"importFromZipFile",
"exportEmotePack",
"replace",
"accountInformation", "accountInformation",
"confirmMatrixId",
"supposedMxid",
"addGroupDescription", "addGroupDescription",
"addNewFriend", "addNewFriend",
"addToSpace",
"all",
"allChats",
"alreadyHaveAnAccount", "alreadyHaveAnAccount",
"commandHint_googly", "commandHint_googly",
"commandHint_cuddle", "commandHint_cuddle",
@ -50807,11 +50835,10 @@
"googlyEyesContent", "googlyEyesContent",
"cuddleContent", "cuddleContent",
"hugContent", "hugContent",
"appLock",
"appLockDescription",
"askSSSSSign", "askSSSSSign",
"autoplayImages", "autoplayImages",
"sendTypingNotifications", "sendTypingNotifications",
"swipeRightToLeftToReply",
"sendOnEnter", "sendOnEnter",
"botMessages", "botMessages",
"cantOpenUri", "cantOpenUri",
@ -50993,7 +51020,6 @@
"noPasswordRecoveryDescription", "noPasswordRecoveryDescription",
"noPermission", "noPermission",
"noRoomsFound", "noRoomsFound",
"notifications",
"notificationsEnabledForThisAccount", "notificationsEnabledForThisAccount",
"numUsersTyping", "numUsersTyping",
"obtainingLocation", "obtainingLocation",
@ -51027,7 +51053,6 @@
"hideMemberChangesInPublicChats", "hideMemberChangesInPublicChats",
"hideMemberChangesInPublicChatsBody", "hideMemberChangesInPublicChatsBody",
"overview", "overview",
"notifyMeFor",
"passwordRecoverySettings", "passwordRecoverySettings",
"passwordRecovery", "passwordRecovery",
"people", "people",
@ -51081,7 +51106,6 @@
"sendImage", "sendImage",
"sendMessages", "sendMessages",
"sendOriginal", "sendOriginal",
"sendSticker",
"sendVideo", "sendVideo",
"sentAFile", "sentAFile",
"sentAnAudio", "sentAnAudio",
@ -51096,7 +51120,6 @@
"setInvitationLink", "setInvitationLink",
"setPermissionsLevel", "setPermissionsLevel",
"setStatus", "setStatus",
"settings",
"share", "share",
"sharedTheLocation", "sharedTheLocation",
"shareLocation", "shareLocation",
@ -51235,52 +51258,14 @@
"foregroundServiceRunning", "foregroundServiceRunning",
"screenSharingTitle", "screenSharingTitle",
"screenSharingDetail", "screenSharingDetail",
"callingPermissions",
"callingAccount",
"callingAccountDetails", "callingAccountDetails",
"appearOnTop", "appearOnTop",
"appearOnTopDetails", "appearOnTopDetails",
"otherCallingPermissions", "otherCallingPermissions",
"whyIsThisMessageEncrypted", "whyIsThisMessageEncrypted",
"noKeyForThisMessage", "noKeyForThisMessage",
"newGroup",
"newSpace",
"enterSpace",
"enterRoom",
"allSpaces",
"numChats",
"hideUnimportantStateEvents",
"hidePresences",
"doNotShowAgain",
"wasDirectChatDisplayName",
"newSpaceDescription",
"encryptThisChat",
"disableEncryptionWarning",
"sorryThatsNotPossible",
"deviceKeys", "deviceKeys",
"reopenChat",
"noBackupWarning",
"noOtherDevicesFound",
"fileIsTooBigForServer",
"fileHasBeenSavedAt",
"jumpToLastReadMessage",
"readUpToHere",
"jump",
"openLinkInBrowser",
"reportErrorDescription",
"report",
"signInWithPassword",
"pleaseTryAgainLaterOrChooseDifferentServer",
"signInWith",
"profileNotFound",
"setTheme",
"setColorTheme",
"invite",
"requests", "requests",
"inviteGroupChat",
"invitePrivateChat",
"invalidInput",
"wrongPinEntered",
"allCorrect", "allCorrect",
"newWayAllGood", "newWayAllGood",
"othersAreBetter", "othersAreBetter",
@ -52023,18 +52008,7 @@
"reportMessageTitle", "reportMessageTitle",
"reportMessageBody", "reportMessageBody",
"noTeachersFound", "noTeachersFound",
"pleaseEnterANumber",
"archiveRoomDescription",
"roomUpgradeDescription",
"removeDevicesDescription",
"banUserDescription",
"unbanUserDescription",
"kickUserDescription",
"makeAdminDescription",
"pushNotificationsNotAvailable",
"learnMore",
"yourGlobalUserIdIs", "yourGlobalUserIdIs",
"noUsersFoundWithQuery",
"knocking", "knocking",
"chatCanBeDiscoveredViaSearchOnServer", "chatCanBeDiscoveredViaSearchOnServer",
"searchChatsRooms", "searchChatsRooms",
@ -52142,11 +52116,6 @@
"autoPlayTitle", "autoPlayTitle",
"autoPlayDesc", "autoPlayDesc",
"transparent", "transparent",
"incomingMessages",
"stickers",
"discover",
"commandHint_ignore",
"commandHint_unignore",
"unreadChatsInApp", "unreadChatsInApp",
"messageAnalytics", "messageAnalytics",
"words", "words",
@ -52198,7 +52167,6 @@
"buildTranslation", "buildTranslation",
"noDatabaseEncryption", "noDatabaseEncryption",
"thereAreCountUsersBlocked", "thereAreCountUsersBlocked",
"restricted",
"knockRestricted" "knockRestricted"
], ],
@ -52207,6 +52175,7 @@
"addGroupDescription", "addGroupDescription",
"addNewFriend", "addNewFriend",
"alreadyHaveAnAccount", "alreadyHaveAnAccount",
"swipeRightToLeftToReply",
"classes", "classes",
"createNewGroup", "createNewGroup",
"editChatPermissions", "editChatPermissions",
@ -53059,9 +53028,7 @@
"capacitySetTooLow", "capacitySetTooLow",
"roomCapacityExplanation", "roomCapacityExplanation",
"enterNumber", "enterNumber",
"buildTranslation", "buildTranslation"
"restricted",
"knockRestricted"
], ],
"zh_Hant": [ "zh_Hant": [
@ -53070,6 +53037,7 @@
"addNewFriend", "addNewFriend",
"alreadyHaveAnAccount", "alreadyHaveAnAccount",
"appLockDescription", "appLockDescription",
"swipeRightToLeftToReply",
"classes", "classes",
"commandHint_markasdm", "commandHint_markasdm",
"commandHint_markasgroup", "commandHint_markasgroup",

Loading…
Cancel
Save