stream-chat-react-native-core 5.31.2-beta.3 → 5.32.0-beta.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/commonjs/components/Channel/Channel.js +21 -20
- package/lib/commonjs/components/Channel/Channel.js.map +1 -1
- package/lib/commonjs/components/Chat/hooks/handleEventToSyncDB.js.map +1 -1
- package/lib/commonjs/components/Message/Message.js +9 -19
- package/lib/commonjs/components/Message/Message.js.map +1 -1
- package/lib/commonjs/components/Message/MessageSimple/MessageFooter.js +1 -2
- package/lib/commonjs/components/Message/MessageSimple/MessageFooter.js.map +1 -1
- package/lib/commonjs/components/Message/MessageSimple/ReactionList.js +54 -37
- package/lib/commonjs/components/Message/MessageSimple/ReactionList.js.map +1 -1
- package/lib/commonjs/components/Message/hooks/useCreateMessageContext.js +6 -11
- package/lib/commonjs/components/Message/hooks/useCreateMessageContext.js.map +1 -1
- package/lib/commonjs/components/Message/hooks/useProcessReactions.js +90 -0
- package/lib/commonjs/components/Message/hooks/useProcessReactions.js.map +1 -0
- package/lib/commonjs/components/MessageOverlay/MessageOverlay.js +3 -12
- package/lib/commonjs/components/MessageOverlay/MessageOverlay.js.map +1 -1
- package/lib/commonjs/components/MessageOverlay/OverlayReactions.js +47 -143
- package/lib/commonjs/components/MessageOverlay/OverlayReactions.js.map +1 -1
- package/lib/commonjs/components/MessageOverlay/OverlayReactionsItem.js +166 -0
- package/lib/commonjs/components/MessageOverlay/OverlayReactionsItem.js.map +1 -0
- package/lib/commonjs/components/MessageOverlay/hooks/useFetchReactions.js +144 -0
- package/lib/commonjs/components/MessageOverlay/hooks/useFetchReactions.js.map +1 -0
- package/lib/commonjs/contexts/messageContext/MessageContext.js.map +1 -1
- package/lib/commonjs/contexts/themeContext/utils/theme.js +0 -1
- package/lib/commonjs/contexts/themeContext/utils/theme.js.map +1 -1
- package/lib/commonjs/i18n/es.json +13 -13
- package/lib/commonjs/i18n/fr.json +13 -13
- package/lib/commonjs/i18n/he.json +13 -13
- package/lib/commonjs/i18n/hi.json +13 -13
- package/lib/commonjs/i18n/it.json +13 -13
- package/lib/commonjs/i18n/ja.json +13 -13
- package/lib/commonjs/i18n/ko.json +13 -13
- package/lib/commonjs/i18n/nl.json +13 -13
- package/lib/commonjs/i18n/pt-BR.json +13 -13
- package/lib/commonjs/i18n/ru.json +13 -13
- package/lib/commonjs/i18n/tr.json +13 -13
- package/lib/commonjs/mock-builders/generator/message.js +2 -0
- package/lib/commonjs/mock-builders/generator/message.js.map +1 -1
- package/lib/commonjs/store/QuickSqliteClient.js +1 -1
- package/lib/commonjs/store/apis/getReactions.js +17 -0
- package/lib/commonjs/store/apis/getReactions.js.map +1 -0
- package/lib/commonjs/store/apis/getReactionsforFilterSort.js +30 -0
- package/lib/commonjs/store/apis/getReactionsforFilterSort.js.map +1 -0
- package/lib/commonjs/store/apis/insertReaction.js +8 -1
- package/lib/commonjs/store/apis/insertReaction.js.map +1 -1
- package/lib/commonjs/store/apis/queries/selectReactionsForMessages.js +1 -1
- package/lib/commonjs/store/apis/queries/selectReactionsForMessages.js.map +1 -1
- package/lib/commonjs/store/apis/updateReaction.js +6 -6
- package/lib/commonjs/store/apis/updateReaction.js.map +1 -1
- package/lib/commonjs/store/mappers/mapMessageToStorable.js +5 -3
- package/lib/commonjs/store/mappers/mapMessageToStorable.js.map +1 -1
- package/lib/commonjs/store/mappers/mapStorableToMessage.js +5 -3
- package/lib/commonjs/store/mappers/mapStorableToMessage.js.map +1 -1
- package/lib/commonjs/store/schema.js +2 -1
- package/lib/commonjs/store/schema.js.map +1 -1
- package/lib/commonjs/utils/addReactionToLocalState.js +25 -13
- package/lib/commonjs/utils/addReactionToLocalState.js.map +1 -1
- package/lib/commonjs/utils/removeReactionFromLocalState.js +11 -3
- package/lib/commonjs/utils/removeReactionFromLocalState.js.map +1 -1
- package/lib/commonjs/utils/removeReservedFields.js +1 -1
- package/lib/commonjs/utils/removeReservedFields.js.map +1 -1
- package/lib/commonjs/utils/utils.js +19 -5
- package/lib/commonjs/utils/utils.js.map +1 -1
- package/lib/commonjs/version.json +1 -1
- package/lib/module/components/Channel/Channel.js +21 -20
- package/lib/module/components/Channel/Channel.js.map +1 -1
- package/lib/module/components/Chat/hooks/handleEventToSyncDB.js.map +1 -1
- package/lib/module/components/Message/Message.js +9 -19
- package/lib/module/components/Message/Message.js.map +1 -1
- package/lib/module/components/Message/MessageSimple/MessageFooter.js +1 -2
- package/lib/module/components/Message/MessageSimple/MessageFooter.js.map +1 -1
- package/lib/module/components/Message/MessageSimple/ReactionList.js +54 -37
- package/lib/module/components/Message/MessageSimple/ReactionList.js.map +1 -1
- package/lib/module/components/Message/hooks/useCreateMessageContext.js +6 -11
- package/lib/module/components/Message/hooks/useCreateMessageContext.js.map +1 -1
- package/lib/module/components/Message/hooks/useProcessReactions.js +90 -0
- package/lib/module/components/Message/hooks/useProcessReactions.js.map +1 -0
- package/lib/module/components/MessageOverlay/MessageOverlay.js +3 -12
- package/lib/module/components/MessageOverlay/MessageOverlay.js.map +1 -1
- package/lib/module/components/MessageOverlay/OverlayReactions.js +47 -143
- package/lib/module/components/MessageOverlay/OverlayReactions.js.map +1 -1
- package/lib/module/components/MessageOverlay/OverlayReactionsItem.js +166 -0
- package/lib/module/components/MessageOverlay/OverlayReactionsItem.js.map +1 -0
- package/lib/module/components/MessageOverlay/hooks/useFetchReactions.js +144 -0
- package/lib/module/components/MessageOverlay/hooks/useFetchReactions.js.map +1 -0
- package/lib/module/contexts/messageContext/MessageContext.js.map +1 -1
- package/lib/module/contexts/themeContext/utils/theme.js +0 -1
- package/lib/module/contexts/themeContext/utils/theme.js.map +1 -1
- package/lib/module/i18n/es.json +13 -13
- package/lib/module/i18n/fr.json +13 -13
- package/lib/module/i18n/he.json +13 -13
- package/lib/module/i18n/hi.json +13 -13
- package/lib/module/i18n/it.json +13 -13
- package/lib/module/i18n/ja.json +13 -13
- package/lib/module/i18n/ko.json +13 -13
- package/lib/module/i18n/nl.json +13 -13
- package/lib/module/i18n/pt-BR.json +13 -13
- package/lib/module/i18n/ru.json +13 -13
- package/lib/module/i18n/tr.json +13 -13
- package/lib/module/mock-builders/generator/message.js +2 -0
- package/lib/module/mock-builders/generator/message.js.map +1 -1
- package/lib/module/store/QuickSqliteClient.js +1 -1
- package/lib/module/store/apis/getReactions.js +17 -0
- package/lib/module/store/apis/getReactions.js.map +1 -0
- package/lib/module/store/apis/getReactionsforFilterSort.js +30 -0
- package/lib/module/store/apis/getReactionsforFilterSort.js.map +1 -0
- package/lib/module/store/apis/insertReaction.js +8 -1
- package/lib/module/store/apis/insertReaction.js.map +1 -1
- package/lib/module/store/apis/queries/selectReactionsForMessages.js +1 -1
- package/lib/module/store/apis/queries/selectReactionsForMessages.js.map +1 -1
- package/lib/module/store/apis/updateReaction.js +6 -6
- package/lib/module/store/apis/updateReaction.js.map +1 -1
- package/lib/module/store/mappers/mapMessageToStorable.js +5 -3
- package/lib/module/store/mappers/mapMessageToStorable.js.map +1 -1
- package/lib/module/store/mappers/mapStorableToMessage.js +5 -3
- package/lib/module/store/mappers/mapStorableToMessage.js.map +1 -1
- package/lib/module/store/schema.js +2 -1
- package/lib/module/store/schema.js.map +1 -1
- package/lib/module/utils/addReactionToLocalState.js +25 -13
- package/lib/module/utils/addReactionToLocalState.js.map +1 -1
- package/lib/module/utils/removeReactionFromLocalState.js +11 -3
- package/lib/module/utils/removeReactionFromLocalState.js.map +1 -1
- package/lib/module/utils/removeReservedFields.js +1 -1
- package/lib/module/utils/removeReservedFields.js.map +1 -1
- package/lib/module/utils/utils.js +19 -5
- package/lib/module/utils/utils.js.map +1 -1
- package/lib/module/version.json +1 -1
- package/lib/typescript/components/Channel/Channel.d.ts.map +1 -1
- package/lib/typescript/components/Channel/hooks/useCreateInputMessageInputContext.d.ts +2 -2
- package/lib/typescript/components/Chat/hooks/handleEventToSyncDB.d.ts.map +1 -1
- package/lib/typescript/components/Message/Message.d.ts.map +1 -1
- package/lib/typescript/components/Message/MessageSimple/ReactionList.d.ts +11 -3
- package/lib/typescript/components/Message/MessageSimple/ReactionList.d.ts.map +1 -1
- package/lib/typescript/components/Message/hooks/useCreateMessageContext.d.ts.map +1 -1
- package/lib/typescript/components/Message/hooks/useMessageActionHandlers.d.ts +1 -1
- package/lib/typescript/components/Message/hooks/useMessageActions.d.ts +1 -1
- package/lib/typescript/components/Message/hooks/useProcessReactions.d.ts +38 -0
- package/lib/typescript/components/Message/hooks/useProcessReactions.d.ts.map +1 -0
- package/lib/typescript/components/MessageOverlay/MessageOverlay.d.ts.map +1 -1
- package/lib/typescript/components/MessageOverlay/OverlayReactions.d.ts +2 -1
- package/lib/typescript/components/MessageOverlay/OverlayReactions.d.ts.map +1 -1
- package/lib/typescript/components/MessageOverlay/OverlayReactionsItem.d.ts +11 -0
- package/lib/typescript/components/MessageOverlay/OverlayReactionsItem.d.ts.map +1 -0
- package/lib/typescript/components/MessageOverlay/hooks/useFetchReactions.d.ts +14 -0
- package/lib/typescript/components/MessageOverlay/hooks/useFetchReactions.d.ts.map +1 -0
- package/lib/typescript/contexts/messageContext/MessageContext.d.ts +3 -6
- package/lib/typescript/contexts/messageContext/MessageContext.d.ts.map +1 -1
- package/lib/typescript/contexts/messageInputContext/MessageInputContext.d.ts +1 -1
- package/lib/typescript/contexts/themeContext/utils/theme.d.ts +0 -1
- package/lib/typescript/contexts/themeContext/utils/theme.d.ts.map +1 -1
- package/lib/typescript/i18n/es.json +13 -13
- package/lib/typescript/i18n/fr.json +13 -13
- package/lib/typescript/i18n/he.json +13 -13
- package/lib/typescript/i18n/hi.json +13 -13
- package/lib/typescript/i18n/it.json +13 -13
- package/lib/typescript/i18n/ja.json +13 -13
- package/lib/typescript/i18n/ko.json +13 -13
- package/lib/typescript/i18n/nl.json +13 -13
- package/lib/typescript/i18n/pt-BR.json +13 -13
- package/lib/typescript/i18n/ru.json +13 -13
- package/lib/typescript/i18n/tr.json +13 -13
- package/lib/typescript/store/apis/getReactions.d.ts +7 -0
- package/lib/typescript/store/apis/getReactions.d.ts.map +1 -0
- package/lib/typescript/store/apis/getReactionsforFilterSort.d.ts +14 -0
- package/lib/typescript/store/apis/getReactionsforFilterSort.d.ts.map +1 -0
- package/lib/typescript/store/apis/insertReaction.d.ts +3 -2
- package/lib/typescript/store/apis/insertReaction.d.ts.map +1 -1
- package/lib/typescript/store/apis/queries/selectReactionsForMessages.d.ts +4 -0
- package/lib/typescript/store/apis/queries/selectReactionsForMessages.d.ts.map +1 -1
- package/lib/typescript/store/apis/updateReaction.d.ts.map +1 -1
- package/lib/typescript/store/mappers/mapMessageToStorable.d.ts.map +1 -1
- package/lib/typescript/store/mappers/mapStorableToMessage.d.ts.map +1 -1
- package/lib/typescript/store/schema.d.ts +2 -1
- package/lib/typescript/store/schema.d.ts.map +1 -1
- package/lib/typescript/utils/addReactionToLocalState.d.ts.map +1 -1
- package/lib/typescript/utils/removeReactionFromLocalState.d.ts.map +1 -1
- package/lib/typescript/utils/removeReservedFields.d.ts.map +1 -1
- package/lib/typescript/utils/utils.d.ts +9 -3
- package/lib/typescript/utils/utils.d.ts.map +1 -1
- package/package.json +1 -1
- package/src/components/Channel/Channel.tsx +24 -34
- package/src/components/Chat/hooks/handleEventToSyncDB.ts +1 -2
- package/src/components/Message/Message.tsx +8 -26
- package/src/components/Message/MessageSimple/MessageFooter.tsx +1 -1
- package/src/components/Message/MessageSimple/ReactionList.tsx +72 -47
- package/src/components/Message/MessageSimple/__tests__/MessageContent.test.js +1 -1
- package/src/components/Message/hooks/useCreateMessageContext.ts +5 -10
- package/src/components/Message/hooks/useProcessReactions.ts +116 -0
- package/src/components/MessageOverlay/MessageOverlay.tsx +4 -17
- package/src/components/MessageOverlay/OverlayReactions.tsx +75 -176
- package/src/components/MessageOverlay/OverlayReactionsItem.tsx +188 -0
- package/src/components/MessageOverlay/hooks/useFetchReactions.ts +85 -0
- package/src/components/Thread/__tests__/__snapshots__/Thread.test.js.snap +139 -0
- package/src/contexts/messageContext/MessageContext.tsx +2 -6
- package/src/contexts/themeContext/utils/theme.ts +0 -2
- package/src/i18n/es.json +13 -13
- package/src/i18n/fr.json +13 -13
- package/src/i18n/he.json +13 -13
- package/src/i18n/hi.json +13 -13
- package/src/i18n/it.json +13 -13
- package/src/i18n/ja.json +13 -13
- package/src/i18n/ko.json +13 -13
- package/src/i18n/nl.json +13 -13
- package/src/i18n/pt-BR.json +13 -13
- package/src/i18n/ru.json +13 -13
- package/src/i18n/tr.json +13 -13
- package/src/mock-builders/generator/message.js +2 -0
- package/src/store/QuickSqliteClient.ts +1 -1
- package/src/store/apis/getReactions.ts +21 -0
- package/src/store/apis/getReactionsforFilterSort.ts +43 -0
- package/src/store/apis/insertReaction.ts +15 -5
- package/src/store/apis/queries/selectReactionsForMessages.ts +5 -1
- package/src/store/apis/updateReaction.ts +6 -18
- package/src/store/mappers/mapMessageToStorable.ts +4 -2
- package/src/store/mappers/mapStorableToMessage.ts +12 -2
- package/src/store/schema.ts +4 -2
- package/src/utils/addReactionToLocalState.ts +33 -17
- package/src/utils/removeReactionFromLocalState.ts +22 -2
- package/src/utils/removeReservedFields.ts +2 -0
- package/src/utils/utils.ts +19 -7
- package/src/version.json +1 -1
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
{
|
|
2
|
-
"1 Reply": "
|
|
2
|
+
"1 Reply": "",
|
|
3
3
|
"1 Thread Reply": "1 respuesta de hilo",
|
|
4
4
|
"Allow access to your Gallery": "",
|
|
5
5
|
"Allow camera access in device settings": "",
|
|
6
|
-
"Also send to channel": "
|
|
6
|
+
"Also send to channel": "",
|
|
7
7
|
"Are you sure you want to permanently delete this message?": "",
|
|
8
8
|
"Are you sure?": "",
|
|
9
9
|
"Block User": "",
|
|
@@ -19,13 +19,13 @@
|
|
|
19
19
|
"Edited": "",
|
|
20
20
|
"Editing Message": "Editando mensaje",
|
|
21
21
|
"Emoji matching": "",
|
|
22
|
-
"Empty message...": "
|
|
22
|
+
"Empty message...": "",
|
|
23
23
|
"Error loading": "",
|
|
24
24
|
"Error loading channel list...": "",
|
|
25
25
|
"Error loading messages for this channel...": "",
|
|
26
|
-
"Error while loading, please reload/refresh": "
|
|
26
|
+
"Error while loading, please reload/refresh": "",
|
|
27
27
|
"File is too large: {{ size }}, maximum upload size is {{ limit }}": "",
|
|
28
|
-
"File type not supported": "
|
|
28
|
+
"File type not supported": "",
|
|
29
29
|
"Flag": "",
|
|
30
30
|
"Flag Message": "",
|
|
31
31
|
"Flag action failed either due to a network issue or the message is already flagged": "",
|
|
@@ -42,12 +42,12 @@
|
|
|
42
42
|
"Message flagged": "",
|
|
43
43
|
"Mute User": "",
|
|
44
44
|
"No chats here yet…": "",
|
|
45
|
-
"Not supported": "
|
|
46
|
-
"Nothing yet...": "
|
|
45
|
+
"Not supported": "",
|
|
46
|
+
"Nothing yet...": "",
|
|
47
47
|
"Ok": "",
|
|
48
48
|
"Only visible to you": "Solo visible para ti",
|
|
49
49
|
"Open Settings": "",
|
|
50
|
-
"Photo": "",
|
|
50
|
+
"Photo": "Foto",
|
|
51
51
|
"Photos and Videos": "",
|
|
52
52
|
"Pin to Conversation": "",
|
|
53
53
|
"Pinned by": "Fijado por",
|
|
@@ -56,7 +56,7 @@
|
|
|
56
56
|
"Please select a channel first": "",
|
|
57
57
|
"Reconnecting...": "Reconectando...",
|
|
58
58
|
"Reply": "",
|
|
59
|
-
"Reply to Message": "
|
|
59
|
+
"Reply to Message": "",
|
|
60
60
|
"Resend": "",
|
|
61
61
|
"Search GIFs": "Buscar GIFs",
|
|
62
62
|
"Select More Photos": "",
|
|
@@ -71,13 +71,13 @@
|
|
|
71
71
|
"Unmute User": "",
|
|
72
72
|
"Unpin from Conversation": "",
|
|
73
73
|
"Unread Messages": "",
|
|
74
|
-
"Video": "",
|
|
74
|
+
"Video": "Video",
|
|
75
75
|
"You": "Tú",
|
|
76
|
-
"You can't send messages in this channel": "
|
|
76
|
+
"You can't send messages in this channel": "",
|
|
77
77
|
"{{ firstUser }} and {{ nonSelfUserLength }} more are typing": "{{ firstUser }} y {{ nonSelfUserLength }} más están escribiendo",
|
|
78
78
|
"{{ index }} of {{ photoLength }}": "",
|
|
79
|
-
"{{ replyCount }} Replies": "
|
|
79
|
+
"{{ replyCount }} Replies": "",
|
|
80
80
|
"{{ replyCount }} Thread Replies": "{{ replyCount }} respuestas de hilo",
|
|
81
81
|
"{{ user }} is typing": "{{ user }} está escribiendo",
|
|
82
|
-
"🏙 Attachment...": "
|
|
82
|
+
"🏙 Attachment...": ""
|
|
83
83
|
}
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
{
|
|
2
|
-
"1 Reply": "
|
|
2
|
+
"1 Reply": "",
|
|
3
3
|
"1 Thread Reply": "Réponse à 1 fil",
|
|
4
4
|
"Allow access to your Gallery": "",
|
|
5
5
|
"Allow camera access in device settings": "",
|
|
6
|
-
"Also send to channel": "
|
|
6
|
+
"Also send to channel": "",
|
|
7
7
|
"Are you sure you want to permanently delete this message?": "",
|
|
8
8
|
"Are you sure?": "",
|
|
9
9
|
"Block User": "",
|
|
@@ -19,13 +19,13 @@
|
|
|
19
19
|
"Edited": "",
|
|
20
20
|
"Editing Message": "Édite un message",
|
|
21
21
|
"Emoji matching": "",
|
|
22
|
-
"Empty message...": "
|
|
22
|
+
"Empty message...": "",
|
|
23
23
|
"Error loading": "",
|
|
24
24
|
"Error loading channel list...": "",
|
|
25
25
|
"Error loading messages for this channel...": "",
|
|
26
|
-
"Error while loading, please reload/refresh": "
|
|
26
|
+
"Error while loading, please reload/refresh": "",
|
|
27
27
|
"File is too large: {{ size }}, maximum upload size is {{ limit }}": "",
|
|
28
|
-
"File type not supported": "
|
|
28
|
+
"File type not supported": "",
|
|
29
29
|
"Flag": "",
|
|
30
30
|
"Flag Message": "",
|
|
31
31
|
"Flag action failed either due to a network issue or the message is already flagged": "",
|
|
@@ -42,12 +42,12 @@
|
|
|
42
42
|
"Message flagged": "",
|
|
43
43
|
"Mute User": "",
|
|
44
44
|
"No chats here yet…": "",
|
|
45
|
-
"Not supported": "
|
|
46
|
-
"Nothing yet...": "
|
|
45
|
+
"Not supported": "",
|
|
46
|
+
"Nothing yet...": "",
|
|
47
47
|
"Ok": "",
|
|
48
48
|
"Only visible to you": "Seulement visible par vous",
|
|
49
49
|
"Open Settings": "",
|
|
50
|
-
"Photo": "",
|
|
50
|
+
"Photo": "Photo",
|
|
51
51
|
"Photos and Videos": "",
|
|
52
52
|
"Pin to Conversation": "",
|
|
53
53
|
"Pinned by": "Épinglé par",
|
|
@@ -56,7 +56,7 @@
|
|
|
56
56
|
"Please select a channel first": "",
|
|
57
57
|
"Reconnecting...": "Se Reconnecter...",
|
|
58
58
|
"Reply": "",
|
|
59
|
-
"Reply to Message": "
|
|
59
|
+
"Reply to Message": "",
|
|
60
60
|
"Resend": "",
|
|
61
61
|
"Search GIFs": "Rechercher des GIF",
|
|
62
62
|
"Select More Photos": "",
|
|
@@ -71,13 +71,13 @@
|
|
|
71
71
|
"Unmute User": "",
|
|
72
72
|
"Unpin from Conversation": "",
|
|
73
73
|
"Unread Messages": "",
|
|
74
|
-
"Video": "",
|
|
74
|
+
"Video": "Vidéo",
|
|
75
75
|
"You": "Toi",
|
|
76
|
-
"You can't send messages in this channel": "
|
|
76
|
+
"You can't send messages in this channel": "",
|
|
77
77
|
"{{ firstUser }} and {{ nonSelfUserLength }} more are typing": "{{ firstUser }} et {{ nonSelfUserLength }} autres sont en train d'écrire",
|
|
78
78
|
"{{ index }} of {{ photoLength }}": "",
|
|
79
|
-
"{{ replyCount }} Replies": "
|
|
79
|
+
"{{ replyCount }} Replies": "",
|
|
80
80
|
"{{ replyCount }} Thread Replies": "{{replyCount}} Réponses à la discussion",
|
|
81
81
|
"{{ user }} is typing": "{{ user }} est en train d'écrire",
|
|
82
|
-
"🏙 Attachment...": "
|
|
82
|
+
"🏙 Attachment...": ""
|
|
83
83
|
}
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
{
|
|
2
|
-
"1 Reply": "
|
|
2
|
+
"1 Reply": "",
|
|
3
3
|
"1 Thread Reply": "תגובה אחת לשרשור",
|
|
4
4
|
"Allow access to your Gallery": "",
|
|
5
5
|
"Allow camera access in device settings": "",
|
|
6
|
-
"Also send to channel": "
|
|
6
|
+
"Also send to channel": "",
|
|
7
7
|
"Are you sure you want to permanently delete this message?": "",
|
|
8
8
|
"Are you sure?": "",
|
|
9
9
|
"Block User": "",
|
|
@@ -19,13 +19,13 @@
|
|
|
19
19
|
"Edited": "",
|
|
20
20
|
"Editing Message": "הודעה בעריכה",
|
|
21
21
|
"Emoji matching": "",
|
|
22
|
-
"Empty message...": "
|
|
22
|
+
"Empty message...": "",
|
|
23
23
|
"Error loading": "",
|
|
24
24
|
"Error loading channel list...": "",
|
|
25
25
|
"Error loading messages for this channel...": "",
|
|
26
|
-
"Error while loading, please reload/refresh": "
|
|
26
|
+
"Error while loading, please reload/refresh": "",
|
|
27
27
|
"File is too large: {{ size }}, maximum upload size is {{ limit }}": "",
|
|
28
|
-
"File type not supported": "
|
|
28
|
+
"File type not supported": "",
|
|
29
29
|
"Flag": "",
|
|
30
30
|
"Flag Message": "",
|
|
31
31
|
"Flag action failed either due to a network issue or the message is already flagged": "",
|
|
@@ -42,12 +42,12 @@
|
|
|
42
42
|
"Message flagged": "",
|
|
43
43
|
"Mute User": "",
|
|
44
44
|
"No chats here yet…": "",
|
|
45
|
-
"Not supported": "
|
|
46
|
-
"Nothing yet...": "
|
|
45
|
+
"Not supported": "",
|
|
46
|
+
"Nothing yet...": "",
|
|
47
47
|
"Ok": "",
|
|
48
48
|
"Only visible to you": "גלוי רק לך",
|
|
49
49
|
"Open Settings": "",
|
|
50
|
-
"Photo": "",
|
|
50
|
+
"Photo": "תמונה",
|
|
51
51
|
"Photos and Videos": "",
|
|
52
52
|
"Pin to Conversation": "",
|
|
53
53
|
"Pinned by": " - הוצמד לשיחה",
|
|
@@ -56,7 +56,7 @@
|
|
|
56
56
|
"Please select a channel first": "",
|
|
57
57
|
"Reconnecting...": "מתחבר מחדש...",
|
|
58
58
|
"Reply": "",
|
|
59
|
-
"Reply to Message": "
|
|
59
|
+
"Reply to Message": "",
|
|
60
60
|
"Resend": "",
|
|
61
61
|
"Search GIFs": "חפש/י GIFs",
|
|
62
62
|
"Select More Photos": "",
|
|
@@ -71,13 +71,13 @@
|
|
|
71
71
|
"Unmute User": "",
|
|
72
72
|
"Unpin from Conversation": "",
|
|
73
73
|
"Unread Messages": "",
|
|
74
|
-
"Video": "",
|
|
74
|
+
"Video": "וִידֵאוֹ",
|
|
75
75
|
"You": "את/ה",
|
|
76
|
-
"You can't send messages in this channel": "
|
|
76
|
+
"You can't send messages in this channel": "",
|
|
77
77
|
"{{ firstUser }} and {{ nonSelfUserLength }} more are typing": "{{ firstUser }} ו-{{ nonSelfUserLength }} משתמש/ים אחר/ים מקלידים",
|
|
78
78
|
"{{ index }} of {{ photoLength }}": "",
|
|
79
|
-
"{{ replyCount }} Replies": "
|
|
79
|
+
"{{ replyCount }} Replies": "",
|
|
80
80
|
"{{ replyCount }} Thread Replies": "{{ replyCount }} תגובות שרשור",
|
|
81
81
|
"{{ user }} is typing": "{{ user }} מקליד/ה",
|
|
82
|
-
"🏙 Attachment...": "
|
|
82
|
+
"🏙 Attachment...": ""
|
|
83
83
|
}
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
{
|
|
2
|
-
"1 Reply": "
|
|
2
|
+
"1 Reply": "",
|
|
3
3
|
"1 Thread Reply": "1 धागा उत्तर",
|
|
4
4
|
"Allow access to your Gallery": "",
|
|
5
5
|
"Allow camera access in device settings": "",
|
|
6
|
-
"Also send to channel": "
|
|
6
|
+
"Also send to channel": "",
|
|
7
7
|
"Are you sure you want to permanently delete this message?": "",
|
|
8
8
|
"Are you sure?": "",
|
|
9
9
|
"Block User": "",
|
|
@@ -19,13 +19,13 @@
|
|
|
19
19
|
"Edited": "",
|
|
20
20
|
"Editing Message": "मैसेज बदला जा रहा है",
|
|
21
21
|
"Emoji matching": "",
|
|
22
|
-
"Empty message...": "
|
|
22
|
+
"Empty message...": "",
|
|
23
23
|
"Error loading": "",
|
|
24
24
|
"Error loading channel list...": "",
|
|
25
25
|
"Error loading messages for this channel...": "",
|
|
26
|
-
"Error while loading, please reload/refresh": "
|
|
26
|
+
"Error while loading, please reload/refresh": "",
|
|
27
27
|
"File is too large: {{ size }}, maximum upload size is {{ limit }}": "",
|
|
28
|
-
"File type not supported": "
|
|
28
|
+
"File type not supported": "",
|
|
29
29
|
"Flag": "",
|
|
30
30
|
"Flag Message": "",
|
|
31
31
|
"Flag action failed either due to a network issue or the message is already flagged": "",
|
|
@@ -42,12 +42,12 @@
|
|
|
42
42
|
"Message flagged": "",
|
|
43
43
|
"Mute User": "",
|
|
44
44
|
"No chats here yet…": "",
|
|
45
|
-
"Not supported": "
|
|
46
|
-
"Nothing yet...": "
|
|
45
|
+
"Not supported": "",
|
|
46
|
+
"Nothing yet...": "",
|
|
47
47
|
"Ok": "",
|
|
48
48
|
"Only visible to you": "केवल आपको दिखाई दे रहा है",
|
|
49
49
|
"Open Settings": "",
|
|
50
|
-
"Photo": "",
|
|
50
|
+
"Photo": "तस्वीर",
|
|
51
51
|
"Photos and Videos": "",
|
|
52
52
|
"Pin to Conversation": "",
|
|
53
53
|
"Pinned by": "द्वारा पिन किया गया",
|
|
@@ -56,7 +56,7 @@
|
|
|
56
56
|
"Please select a channel first": "",
|
|
57
57
|
"Reconnecting...": "पुनः कनेक्ट हो...",
|
|
58
58
|
"Reply": "",
|
|
59
|
-
"Reply to Message": "
|
|
59
|
+
"Reply to Message": "",
|
|
60
60
|
"Resend": "",
|
|
61
61
|
"Search GIFs": "GIF खोजें",
|
|
62
62
|
"Select More Photos": "",
|
|
@@ -71,13 +71,13 @@
|
|
|
71
71
|
"Unmute User": "",
|
|
72
72
|
"Unpin from Conversation": "",
|
|
73
73
|
"Unread Messages": "",
|
|
74
|
-
"Video": "",
|
|
74
|
+
"Video": "वीडियो",
|
|
75
75
|
"You": "आप",
|
|
76
|
-
"You can't send messages in this channel": "
|
|
76
|
+
"You can't send messages in this channel": "",
|
|
77
77
|
"{{ firstUser }} and {{ nonSelfUserLength }} more are typing": "{{ firstUser }} और {{ nonSelfUserLength }} अधिक टाइप कर रहे हैं",
|
|
78
78
|
"{{ index }} of {{ photoLength }}": "",
|
|
79
|
-
"{{ replyCount }} Replies": "
|
|
79
|
+
"{{ replyCount }} Replies": "",
|
|
80
80
|
"{{ replyCount }} Thread Replies": "{{ replyCount }}} थ्रेड उत्तर",
|
|
81
81
|
"{{ user }} is typing": "{{ user }} टाइप कर रहा है",
|
|
82
|
-
"🏙 Attachment...": "
|
|
82
|
+
"🏙 Attachment...": ""
|
|
83
83
|
}
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
{
|
|
2
|
-
"1 Reply": "
|
|
2
|
+
"1 Reply": "",
|
|
3
3
|
"1 Thread Reply": "1 Risposta alla Discussione",
|
|
4
4
|
"Allow access to your Gallery": "",
|
|
5
5
|
"Allow camera access in device settings": "",
|
|
6
|
-
"Also send to channel": "
|
|
6
|
+
"Also send to channel": "",
|
|
7
7
|
"Are you sure you want to permanently delete this message?": "",
|
|
8
8
|
"Are you sure?": "",
|
|
9
9
|
"Block User": "",
|
|
@@ -19,13 +19,13 @@
|
|
|
19
19
|
"Edited": "",
|
|
20
20
|
"Editing Message": "Modificando il Messaggio",
|
|
21
21
|
"Emoji matching": "",
|
|
22
|
-
"Empty message...": "
|
|
22
|
+
"Empty message...": "",
|
|
23
23
|
"Error loading": "",
|
|
24
24
|
"Error loading channel list...": "",
|
|
25
25
|
"Error loading messages for this channel...": "",
|
|
26
|
-
"Error while loading, please reload/refresh": "
|
|
26
|
+
"Error while loading, please reload/refresh": "",
|
|
27
27
|
"File is too large: {{ size }}, maximum upload size is {{ limit }}": "",
|
|
28
|
-
"File type not supported": "
|
|
28
|
+
"File type not supported": "",
|
|
29
29
|
"Flag": "",
|
|
30
30
|
"Flag Message": "",
|
|
31
31
|
"Flag action failed either due to a network issue or the message is already flagged": "",
|
|
@@ -42,12 +42,12 @@
|
|
|
42
42
|
"Message flagged": "",
|
|
43
43
|
"Mute User": "",
|
|
44
44
|
"No chats here yet…": "",
|
|
45
|
-
"Not supported": "
|
|
46
|
-
"Nothing yet...": "
|
|
45
|
+
"Not supported": "",
|
|
46
|
+
"Nothing yet...": "",
|
|
47
47
|
"Ok": "",
|
|
48
48
|
"Only visible to you": "Visibile solo a te",
|
|
49
49
|
"Open Settings": "",
|
|
50
|
-
"Photo": "",
|
|
50
|
+
"Photo": "Foto",
|
|
51
51
|
"Photos and Videos": "",
|
|
52
52
|
"Pin to Conversation": "",
|
|
53
53
|
"Pinned by": "Fissato da",
|
|
@@ -56,7 +56,7 @@
|
|
|
56
56
|
"Please select a channel first": "",
|
|
57
57
|
"Reconnecting...": "Ricollegarsi...",
|
|
58
58
|
"Reply": "",
|
|
59
|
-
"Reply to Message": "
|
|
59
|
+
"Reply to Message": "",
|
|
60
60
|
"Resend": "",
|
|
61
61
|
"Search GIFs": "Cerca GIF",
|
|
62
62
|
"Select More Photos": "",
|
|
@@ -71,13 +71,13 @@
|
|
|
71
71
|
"Unmute User": "",
|
|
72
72
|
"Unpin from Conversation": "",
|
|
73
73
|
"Unread Messages": "",
|
|
74
|
-
"Video": "",
|
|
74
|
+
"Video": "Video",
|
|
75
75
|
"You": "Tu",
|
|
76
|
-
"You can't send messages in this channel": "
|
|
76
|
+
"You can't send messages in this channel": "",
|
|
77
77
|
"{{ firstUser }} and {{ nonSelfUserLength }} more are typing": "{{ firstUser }} e altri {{ nonSelfUserLength }} stanno scrivendo",
|
|
78
78
|
"{{ index }} of {{ photoLength }}": "",
|
|
79
|
-
"{{ replyCount }} Replies": "
|
|
79
|
+
"{{ replyCount }} Replies": "",
|
|
80
80
|
"{{ replyCount }} Thread Replies": "{{replyCount}} Risposte alle Conversazione",
|
|
81
81
|
"{{ user }} is typing": "{{ user }} sta scrivendo",
|
|
82
|
-
"🏙 Attachment...": "
|
|
82
|
+
"🏙 Attachment...": ""
|
|
83
83
|
}
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
{
|
|
2
|
-
"1 Reply": "
|
|
2
|
+
"1 Reply": "",
|
|
3
3
|
"1 Thread Reply": "1件のスレッド返信",
|
|
4
4
|
"Allow access to your Gallery": "",
|
|
5
5
|
"Allow camera access in device settings": "",
|
|
6
|
-
"Also send to channel": "
|
|
6
|
+
"Also send to channel": "",
|
|
7
7
|
"Are you sure you want to permanently delete this message?": "",
|
|
8
8
|
"Are you sure?": "",
|
|
9
9
|
"Block User": "",
|
|
@@ -19,13 +19,13 @@
|
|
|
19
19
|
"Edited": "",
|
|
20
20
|
"Editing Message": "メッセージを編集中",
|
|
21
21
|
"Emoji matching": "",
|
|
22
|
-
"Empty message...": "
|
|
22
|
+
"Empty message...": "",
|
|
23
23
|
"Error loading": "",
|
|
24
24
|
"Error loading channel list...": "",
|
|
25
25
|
"Error loading messages for this channel...": "",
|
|
26
|
-
"Error while loading, please reload/refresh": "
|
|
26
|
+
"Error while loading, please reload/refresh": "",
|
|
27
27
|
"File is too large: {{ size }}, maximum upload size is {{ limit }}": "",
|
|
28
|
-
"File type not supported": "
|
|
28
|
+
"File type not supported": "",
|
|
29
29
|
"Flag": "",
|
|
30
30
|
"Flag Message": "",
|
|
31
31
|
"Flag action failed either due to a network issue or the message is already flagged": "",
|
|
@@ -42,12 +42,12 @@
|
|
|
42
42
|
"Message flagged": "",
|
|
43
43
|
"Mute User": "",
|
|
44
44
|
"No chats here yet…": "",
|
|
45
|
-
"Not supported": "
|
|
46
|
-
"Nothing yet...": "
|
|
45
|
+
"Not supported": "",
|
|
46
|
+
"Nothing yet...": "",
|
|
47
47
|
"Ok": "",
|
|
48
48
|
"Only visible to you": "あなただけに見える",
|
|
49
49
|
"Open Settings": "",
|
|
50
|
-
"Photo": "",
|
|
50
|
+
"Photo": "写真",
|
|
51
51
|
"Photos and Videos": "",
|
|
52
52
|
"Pin to Conversation": "",
|
|
53
53
|
"Pinned by": "ピン留めしたユーザー",
|
|
@@ -56,7 +56,7 @@
|
|
|
56
56
|
"Please select a channel first": "",
|
|
57
57
|
"Reconnecting...": "再接続中。。。",
|
|
58
58
|
"Reply": "",
|
|
59
|
-
"Reply to Message": "
|
|
59
|
+
"Reply to Message": "",
|
|
60
60
|
"Resend": "",
|
|
61
61
|
"Search GIFs": "GIFの探索",
|
|
62
62
|
"Select More Photos": "",
|
|
@@ -71,13 +71,13 @@
|
|
|
71
71
|
"Unmute User": "",
|
|
72
72
|
"Unpin from Conversation": "",
|
|
73
73
|
"Unread Messages": "",
|
|
74
|
-
"Video": "",
|
|
74
|
+
"Video": "ビデオ",
|
|
75
75
|
"You": "あなた",
|
|
76
|
-
"You can't send messages in this channel": "
|
|
76
|
+
"You can't send messages in this channel": "",
|
|
77
77
|
"{{ firstUser }} and {{ nonSelfUserLength }} more are typing": "{{ firstUser }}と{{ nonSelfUserLength }}人がタイピングしています",
|
|
78
78
|
"{{ index }} of {{ photoLength }}": "",
|
|
79
|
-
"{{ replyCount }} Replies": "
|
|
79
|
+
"{{ replyCount }} Replies": "",
|
|
80
80
|
"{{ replyCount }} Thread Replies": "{{ replyCount }}件のスレッド返信",
|
|
81
81
|
"{{ user }} is typing": "{{ user }}はタイピング中",
|
|
82
|
-
"🏙 Attachment...": "
|
|
82
|
+
"🏙 Attachment...": ""
|
|
83
83
|
}
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
{
|
|
2
|
-
"1 Reply": "
|
|
2
|
+
"1 Reply": "",
|
|
3
3
|
"1 Thread Reply": "1개의 스레드 답글",
|
|
4
4
|
"Allow access to your Gallery": "",
|
|
5
5
|
"Allow camera access in device settings": "",
|
|
6
|
-
"Also send to channel": "
|
|
6
|
+
"Also send to channel": "",
|
|
7
7
|
"Are you sure you want to permanently delete this message?": "",
|
|
8
8
|
"Are you sure?": "",
|
|
9
9
|
"Block User": "",
|
|
@@ -19,13 +19,13 @@
|
|
|
19
19
|
"Edited": "",
|
|
20
20
|
"Editing Message": "메시지 편집중",
|
|
21
21
|
"Emoji matching": "",
|
|
22
|
-
"Empty message...": "
|
|
22
|
+
"Empty message...": "",
|
|
23
23
|
"Error loading": "",
|
|
24
24
|
"Error loading channel list...": "",
|
|
25
25
|
"Error loading messages for this channel...": "",
|
|
26
|
-
"Error while loading, please reload/refresh": "
|
|
26
|
+
"Error while loading, please reload/refresh": "",
|
|
27
27
|
"File is too large: {{ size }}, maximum upload size is {{ limit }}": "",
|
|
28
|
-
"File type not supported": "
|
|
28
|
+
"File type not supported": "",
|
|
29
29
|
"Flag": "",
|
|
30
30
|
"Flag Message": "",
|
|
31
31
|
"Flag action failed either due to a network issue or the message is already flagged": "",
|
|
@@ -42,12 +42,12 @@
|
|
|
42
42
|
"Message flagged": "",
|
|
43
43
|
"Mute User": "",
|
|
44
44
|
"No chats here yet…": "",
|
|
45
|
-
"Not supported": "
|
|
46
|
-
"Nothing yet...": "
|
|
45
|
+
"Not supported": "",
|
|
46
|
+
"Nothing yet...": "",
|
|
47
47
|
"Ok": "",
|
|
48
48
|
"Only visible to you": "당신만 볼 수 있습니다",
|
|
49
49
|
"Open Settings": "",
|
|
50
|
-
"Photo": "",
|
|
50
|
+
"Photo": "사진",
|
|
51
51
|
"Photos and Videos": "",
|
|
52
52
|
"Pin to Conversation": "",
|
|
53
53
|
"Pinned by": "고정된 사용자",
|
|
@@ -56,7 +56,7 @@
|
|
|
56
56
|
"Please select a channel first": "",
|
|
57
57
|
"Reconnecting...": "다시 연결 중...",
|
|
58
58
|
"Reply": "",
|
|
59
|
-
"Reply to Message": "
|
|
59
|
+
"Reply to Message": "",
|
|
60
60
|
"Resend": "",
|
|
61
61
|
"Search GIFs": "GIF의 검색",
|
|
62
62
|
"Select More Photos": "",
|
|
@@ -71,13 +71,13 @@
|
|
|
71
71
|
"Unmute User": "",
|
|
72
72
|
"Unpin from Conversation": "",
|
|
73
73
|
"Unread Messages": "",
|
|
74
|
-
"Video": "",
|
|
74
|
+
"Video": "동영상",
|
|
75
75
|
"You": "당신",
|
|
76
|
-
"You can't send messages in this channel": "
|
|
76
|
+
"You can't send messages in this channel": "",
|
|
77
77
|
"{{ firstUser }} and {{ nonSelfUserLength }} more are typing": "{{ firstUser }} 외 {{ nonSelfUserLength }}명이 입력 중입니다",
|
|
78
78
|
"{{ index }} of {{ photoLength }}": "",
|
|
79
|
-
"{{ replyCount }} Replies": "
|
|
79
|
+
"{{ replyCount }} Replies": "",
|
|
80
80
|
"{{ replyCount }} Thread Replies": "{{ replyCount }} 스레드 답글",
|
|
81
81
|
"{{ user }} is typing": "{{ user }} 타이핑 중",
|
|
82
|
-
"🏙 Attachment...": "
|
|
82
|
+
"🏙 Attachment...": ""
|
|
83
83
|
}
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
{
|
|
2
|
-
"1 Reply": "
|
|
2
|
+
"1 Reply": "",
|
|
3
3
|
"1 Thread Reply": "1 thread antwoord",
|
|
4
4
|
"Allow access to your Gallery": "",
|
|
5
5
|
"Allow camera access in device settings": "",
|
|
6
|
-
"Also send to channel": "
|
|
6
|
+
"Also send to channel": "",
|
|
7
7
|
"Are you sure you want to permanently delete this message?": "",
|
|
8
8
|
"Are you sure?": "",
|
|
9
9
|
"Block User": "",
|
|
@@ -19,13 +19,13 @@
|
|
|
19
19
|
"Edited": "",
|
|
20
20
|
"Editing Message": "Bericht aanpassen",
|
|
21
21
|
"Emoji matching": "",
|
|
22
|
-
"Empty message...": "
|
|
22
|
+
"Empty message...": "",
|
|
23
23
|
"Error loading": "",
|
|
24
24
|
"Error loading channel list...": "",
|
|
25
25
|
"Error loading messages for this channel...": "",
|
|
26
|
-
"Error while loading, please reload/refresh": "
|
|
26
|
+
"Error while loading, please reload/refresh": "",
|
|
27
27
|
"File is too large: {{ size }}, maximum upload size is {{ limit }}": "",
|
|
28
|
-
"File type not supported": "
|
|
28
|
+
"File type not supported": "",
|
|
29
29
|
"Flag": "",
|
|
30
30
|
"Flag Message": "",
|
|
31
31
|
"Flag action failed either due to a network issue or the message is already flagged": "",
|
|
@@ -42,12 +42,12 @@
|
|
|
42
42
|
"Message flagged": "",
|
|
43
43
|
"Mute User": "",
|
|
44
44
|
"No chats here yet…": "",
|
|
45
|
-
"Not supported": "
|
|
46
|
-
"Nothing yet...": "
|
|
45
|
+
"Not supported": "",
|
|
46
|
+
"Nothing yet...": "",
|
|
47
47
|
"Ok": "",
|
|
48
48
|
"Only visible to you": "Alleen zichtbaar voor jou",
|
|
49
49
|
"Open Settings": "",
|
|
50
|
-
"Photo": "",
|
|
50
|
+
"Photo": "Foto",
|
|
51
51
|
"Photos and Videos": "",
|
|
52
52
|
"Pin to Conversation": "",
|
|
53
53
|
"Pinned by": "Vastgemaakt door",
|
|
@@ -56,7 +56,7 @@
|
|
|
56
56
|
"Please select a channel first": "",
|
|
57
57
|
"Reconnecting...": "Opnieuw Verbinding Maken...",
|
|
58
58
|
"Reply": "",
|
|
59
|
-
"Reply to Message": "
|
|
59
|
+
"Reply to Message": "",
|
|
60
60
|
"Resend": "",
|
|
61
61
|
"Search GIFs": "Zoek GIF's",
|
|
62
62
|
"Select More Photos": "",
|
|
@@ -71,13 +71,13 @@
|
|
|
71
71
|
"Unmute User": "",
|
|
72
72
|
"Unpin from Conversation": "",
|
|
73
73
|
"Unread Messages": "",
|
|
74
|
-
"Video": "",
|
|
74
|
+
"Video": "Video",
|
|
75
75
|
"You": "U",
|
|
76
|
-
"You can't send messages in this channel": "
|
|
76
|
+
"You can't send messages in this channel": "",
|
|
77
77
|
"{{ firstUser }} and {{ nonSelfUserLength }} more are typing": "{{ firstUser }} en {{ nonSelfUserLength }} anderen zijn aan het typen",
|
|
78
78
|
"{{ index }} of {{ photoLength }}": "",
|
|
79
|
-
"{{ replyCount }} Replies": "
|
|
79
|
+
"{{ replyCount }} Replies": "",
|
|
80
80
|
"{{ replyCount }} Thread Replies": "{{replyCount}} Discussiereacties",
|
|
81
81
|
"{{ user }} is typing": "{{ user }} is aan het typen",
|
|
82
|
-
"🏙 Attachment...": "
|
|
82
|
+
"🏙 Attachment...": ""
|
|
83
83
|
}
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
{
|
|
2
|
-
"1 Reply": "
|
|
2
|
+
"1 Reply": "",
|
|
3
3
|
"1 Thread Reply": "1 Resposta de Thread",
|
|
4
4
|
"Allow access to your Gallery": "",
|
|
5
5
|
"Allow camera access in device settings": "",
|
|
6
|
-
"Also send to channel": "
|
|
6
|
+
"Also send to channel": "",
|
|
7
7
|
"Are you sure you want to permanently delete this message?": "",
|
|
8
8
|
"Are you sure?": "",
|
|
9
9
|
"Block User": "",
|
|
@@ -19,13 +19,13 @@
|
|
|
19
19
|
"Edited": "",
|
|
20
20
|
"Editing Message": "Editando Mensagem",
|
|
21
21
|
"Emoji matching": "",
|
|
22
|
-
"Empty message...": "
|
|
22
|
+
"Empty message...": "",
|
|
23
23
|
"Error loading": "",
|
|
24
24
|
"Error loading channel list...": "",
|
|
25
25
|
"Error loading messages for this channel...": "",
|
|
26
|
-
"Error while loading, please reload/refresh": "
|
|
26
|
+
"Error while loading, please reload/refresh": "",
|
|
27
27
|
"File is too large: {{ size }}, maximum upload size is {{ limit }}": "",
|
|
28
|
-
"File type not supported": "
|
|
28
|
+
"File type not supported": "",
|
|
29
29
|
"Flag": "",
|
|
30
30
|
"Flag Message": "",
|
|
31
31
|
"Flag action failed either due to a network issue or the message is already flagged": "",
|
|
@@ -42,12 +42,12 @@
|
|
|
42
42
|
"Message flagged": "",
|
|
43
43
|
"Mute User": "",
|
|
44
44
|
"No chats here yet…": "",
|
|
45
|
-
"Not supported": "
|
|
46
|
-
"Nothing yet...": "
|
|
45
|
+
"Not supported": "",
|
|
46
|
+
"Nothing yet...": "",
|
|
47
47
|
"Ok": "",
|
|
48
48
|
"Only visible to you": "Apenas visível para você",
|
|
49
49
|
"Open Settings": "",
|
|
50
|
-
"Photo": "",
|
|
50
|
+
"Photo": "Foto",
|
|
51
51
|
"Photos and Videos": "",
|
|
52
52
|
"Pin to Conversation": "",
|
|
53
53
|
"Pinned by": "Fixado por",
|
|
@@ -56,7 +56,7 @@
|
|
|
56
56
|
"Please select a channel first": "",
|
|
57
57
|
"Reconnecting...": "Reconectando...",
|
|
58
58
|
"Reply": "",
|
|
59
|
-
"Reply to Message": "
|
|
59
|
+
"Reply to Message": "",
|
|
60
60
|
"Resend": "",
|
|
61
61
|
"Search GIFs": "Pesquisar GIFs",
|
|
62
62
|
"Select More Photos": "",
|
|
@@ -71,13 +71,13 @@
|
|
|
71
71
|
"Unmute User": "",
|
|
72
72
|
"Unpin from Conversation": "",
|
|
73
73
|
"Unread Messages": "",
|
|
74
|
-
"Video": "",
|
|
74
|
+
"Video": "Vídeo",
|
|
75
75
|
"You": "Você",
|
|
76
|
-
"You can't send messages in this channel": "
|
|
76
|
+
"You can't send messages in this channel": "",
|
|
77
77
|
"{{ firstUser }} and {{ nonSelfUserLength }} more are typing": "{{ firstUser }} e mais {{ nonSelfUserLength }} pessoa(s) estão digitando",
|
|
78
78
|
"{{ index }} of {{ photoLength }}": "",
|
|
79
|
-
"{{ replyCount }} Replies": "
|
|
79
|
+
"{{ replyCount }} Replies": "",
|
|
80
80
|
"{{ replyCount }} Thread Replies": "{{ replyCount }} Respostas de Thread",
|
|
81
81
|
"{{ user }} is typing": "{{ user }} está digitando",
|
|
82
|
-
"🏙 Attachment...": "
|
|
82
|
+
"🏙 Attachment...": ""
|
|
83
83
|
}
|