stream-chat-react-native-core 5.26.1-beta.1 → 5.26.1-beta.3
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 +399 -359
- package/lib/commonjs/components/Channel/Channel.js.map +1 -1
- package/lib/commonjs/components/Chat/Chat.js +12 -5
- package/lib/commonjs/components/Chat/Chat.js.map +1 -1
- package/lib/commonjs/components/Chat/hooks/useCreateChatContext.js +2 -0
- package/lib/commonjs/components/Chat/hooks/useCreateChatContext.js.map +1 -1
- package/lib/commonjs/contexts/chatContext/ChatContext.js +2 -2
- package/lib/commonjs/contexts/chatContext/ChatContext.js.map +1 -1
- package/lib/commonjs/i18n/es.json +12 -12
- package/lib/commonjs/i18n/fr.json +12 -12
- package/lib/commonjs/i18n/he.json +12 -12
- package/lib/commonjs/i18n/hi.json +12 -12
- package/lib/commonjs/i18n/it.json +12 -12
- package/lib/commonjs/i18n/ja.json +12 -12
- package/lib/commonjs/i18n/ko.json +12 -12
- package/lib/commonjs/i18n/nl.json +12 -12
- package/lib/commonjs/i18n/pt-BR.json +12 -12
- package/lib/commonjs/i18n/ru.json +12 -12
- package/lib/commonjs/i18n/tr.json +12 -12
- package/lib/commonjs/utils/StreamChatRN.js.map +1 -1
- package/lib/commonjs/version.json +1 -1
- package/lib/module/components/Channel/Channel.js +399 -359
- package/lib/module/components/Channel/Channel.js.map +1 -1
- package/lib/module/components/Chat/Chat.js +12 -5
- package/lib/module/components/Chat/Chat.js.map +1 -1
- package/lib/module/components/Chat/hooks/useCreateChatContext.js +2 -0
- package/lib/module/components/Chat/hooks/useCreateChatContext.js.map +1 -1
- package/lib/module/contexts/chatContext/ChatContext.js +2 -2
- package/lib/module/contexts/chatContext/ChatContext.js.map +1 -1
- package/lib/module/i18n/es.json +12 -12
- package/lib/module/i18n/fr.json +12 -12
- package/lib/module/i18n/he.json +12 -12
- package/lib/module/i18n/hi.json +12 -12
- package/lib/module/i18n/it.json +12 -12
- package/lib/module/i18n/ja.json +12 -12
- package/lib/module/i18n/ko.json +12 -12
- package/lib/module/i18n/nl.json +12 -12
- package/lib/module/i18n/pt-BR.json +12 -12
- package/lib/module/i18n/ru.json +12 -12
- package/lib/module/i18n/tr.json +12 -12
- package/lib/module/utils/StreamChatRN.js.map +1 -1
- package/lib/module/version.json +1 -1
- package/lib/typescript/components/Chat/Chat.d.ts +1 -1
- package/lib/typescript/components/Chat/hooks/useCreateChatContext.d.ts +1 -1
- package/lib/typescript/contexts/chatContext/ChatContext.d.ts +4 -0
- package/lib/typescript/i18n/es.json +12 -12
- package/lib/typescript/i18n/fr.json +12 -12
- package/lib/typescript/i18n/he.json +12 -12
- package/lib/typescript/i18n/hi.json +12 -12
- package/lib/typescript/i18n/it.json +12 -12
- package/lib/typescript/i18n/ja.json +12 -12
- package/lib/typescript/i18n/ko.json +12 -12
- package/lib/typescript/i18n/nl.json +12 -12
- package/lib/typescript/i18n/pt-BR.json +12 -12
- package/lib/typescript/i18n/ru.json +12 -12
- package/lib/typescript/i18n/tr.json +12 -12
- package/lib/typescript/utils/StreamChatRN.d.ts +2 -0
- package/package.json +1 -1
- package/src/components/Channel/Channel.tsx +52 -34
- package/src/components/Chat/Chat.tsx +7 -1
- package/src/components/Chat/hooks/useCreateChatContext.ts +2 -0
- package/src/contexts/chatContext/ChatContext.tsx +4 -0
- package/src/i18n/es.json +12 -12
- package/src/i18n/fr.json +12 -12
- package/src/i18n/he.json +12 -12
- package/src/i18n/hi.json +12 -12
- package/src/i18n/it.json +12 -12
- package/src/i18n/ja.json +12 -12
- package/src/i18n/ko.json +12 -12
- package/src/i18n/nl.json +12 -12
- package/src/i18n/pt-BR.json +12 -12
- package/src/i18n/ru.json +12 -12
- package/src/i18n/tr.json +12 -12
- package/src/utils/StreamChatRN.ts +2 -0
- package/src/version.json +1 -1
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "stream-chat-react-native-core",
|
|
3
3
|
"description": "The official React Native and Expo components for Stream Chat, a service for building chat applications",
|
|
4
|
-
"version": "5.26.1-beta.
|
|
4
|
+
"version": "5.26.1-beta.3",
|
|
5
5
|
"author": {
|
|
6
6
|
"company": "Stream.io Inc",
|
|
7
7
|
"name": "Stream.io Inc"
|
|
@@ -972,42 +972,60 @@ const ChannelWithContext = <
|
|
|
972
972
|
* @param messageId If undefined, channel will be loaded at most recent message.
|
|
973
973
|
*/
|
|
974
974
|
const loadChannelAroundMessage: ChannelContextValue<StreamChatGenerics>['loadChannelAroundMessage'] =
|
|
975
|
-
({ messageId: messageIdToLoadAround }) =>
|
|
976
|
-
|
|
977
|
-
|
|
978
|
-
|
|
979
|
-
|
|
980
|
-
|
|
981
|
-
|
|
982
|
-
|
|
983
|
-
if (currentMessageSet && !currentMessageSet?.isLatest) {
|
|
984
|
-
// if the current message set is not the latest, we will throw away the latest messages
|
|
985
|
-
// in order to attempt to not throw away, will attempt to merge it by loading 25 more messages
|
|
986
|
-
const recentCurrentSetMsgId =
|
|
987
|
-
currentMessageSet.messages[currentMessageSet.messages.length - 1].id;
|
|
988
|
-
await channel.query(
|
|
989
|
-
{
|
|
990
|
-
messages: {
|
|
991
|
-
id_gte: recentCurrentSetMsgId,
|
|
992
|
-
limit: 25,
|
|
993
|
-
},
|
|
994
|
-
},
|
|
995
|
-
'current',
|
|
996
|
-
);
|
|
997
|
-
// if the gap is more than 25, we will unfortunately have to throw away the latest messages
|
|
998
|
-
}
|
|
999
|
-
} else {
|
|
1000
|
-
await loadLatestMessagesRef.current();
|
|
1001
|
-
}
|
|
1002
|
-
},
|
|
1003
|
-
() => {
|
|
1004
|
-
if (messageIdToLoadAround) {
|
|
1005
|
-
clearInterval(mergeSetsIntervalRef.current); // do not merge sets as we will scroll/highlight to the message
|
|
975
|
+
async ({ messageId: messageIdToLoadAround }) => {
|
|
976
|
+
if (thread) {
|
|
977
|
+
if (messageIdToLoadAround) {
|
|
978
|
+
setThreadLoadingMore(true);
|
|
979
|
+
try {
|
|
980
|
+
await channel.state.loadMessageIntoState(messageIdToLoadAround, thread.id);
|
|
981
|
+
setThreadLoadingMore(false);
|
|
982
|
+
setThreadMessages(channel.state.threads[thread.id]);
|
|
1006
983
|
setTargetedMessage(messageIdToLoadAround);
|
|
984
|
+
} catch (err) {
|
|
985
|
+
if (err instanceof Error) {
|
|
986
|
+
setError(err);
|
|
987
|
+
} else {
|
|
988
|
+
setError(true);
|
|
989
|
+
}
|
|
990
|
+
setThreadLoadingMore(false);
|
|
1007
991
|
}
|
|
1008
|
-
}
|
|
1009
|
-
|
|
1010
|
-
|
|
992
|
+
}
|
|
993
|
+
} else {
|
|
994
|
+
await channelQueryCallRef.current(
|
|
995
|
+
async () => {
|
|
996
|
+
setLoading(true);
|
|
997
|
+
if (messageIdToLoadAround) {
|
|
998
|
+
setMessages([]);
|
|
999
|
+
await channel.state.loadMessageIntoState(messageIdToLoadAround);
|
|
1000
|
+
const currentMessageSet = channel.state.messageSets.find((set) => set.isCurrent);
|
|
1001
|
+
if (currentMessageSet && !currentMessageSet?.isLatest) {
|
|
1002
|
+
// if the current message set is not the latest, we will throw away the latest messages
|
|
1003
|
+
// in order to attempt to not throw away, will attempt to merge it by loading 25 more messages
|
|
1004
|
+
const recentCurrentSetMsgId =
|
|
1005
|
+
currentMessageSet.messages[currentMessageSet.messages.length - 1].id;
|
|
1006
|
+
await channel.query(
|
|
1007
|
+
{
|
|
1008
|
+
messages: {
|
|
1009
|
+
id_gte: recentCurrentSetMsgId,
|
|
1010
|
+
limit: 25,
|
|
1011
|
+
},
|
|
1012
|
+
},
|
|
1013
|
+
'current',
|
|
1014
|
+
);
|
|
1015
|
+
// if the gap is more than 25, we will unfortunately have to throw away the latest messages
|
|
1016
|
+
}
|
|
1017
|
+
}
|
|
1018
|
+
},
|
|
1019
|
+
() => {
|
|
1020
|
+
if (messageIdToLoadAround) {
|
|
1021
|
+
clearInterval(mergeSetsIntervalRef.current); // do not merge sets as we will scroll/highlight to the message
|
|
1022
|
+
setTargetedMessage(messageIdToLoadAround);
|
|
1023
|
+
}
|
|
1024
|
+
},
|
|
1025
|
+
messageIdToLoadAround,
|
|
1026
|
+
);
|
|
1027
|
+
}
|
|
1028
|
+
};
|
|
1011
1029
|
|
|
1012
1030
|
useEffect(() => {
|
|
1013
1031
|
if (!targetedMessage && prevTargetedMessage) {
|
|
@@ -27,6 +27,7 @@ import { SDK } from '../../native';
|
|
|
27
27
|
import { QuickSqliteClient } from '../../store/QuickSqliteClient';
|
|
28
28
|
import type { DefaultStreamChatGenerics } from '../../types/types';
|
|
29
29
|
import { DBSyncManager } from '../../utils/DBSyncManager';
|
|
30
|
+
import { StreamChatRN } from '../../utils/StreamChatRN';
|
|
30
31
|
import type { Streami18n } from '../../utils/Streami18n';
|
|
31
32
|
import { version } from '../../version.json';
|
|
32
33
|
|
|
@@ -35,7 +36,7 @@ init();
|
|
|
35
36
|
export type ChatProps<
|
|
36
37
|
StreamChatGenerics extends DefaultStreamChatGenerics = DefaultStreamChatGenerics,
|
|
37
38
|
> = Pick<ChatContextValue<StreamChatGenerics>, 'client'> &
|
|
38
|
-
Partial<Pick<ChatContextValue<StreamChatGenerics>, 'ImageComponent'>> & {
|
|
39
|
+
Partial<Pick<ChatContextValue<StreamChatGenerics>, 'ImageComponent' | 'resizableCDNHosts'>> & {
|
|
39
40
|
/**
|
|
40
41
|
* When false, ws connection won't be disconnection upon backgrounding the app.
|
|
41
42
|
* To receive push notifications, its necessary that user doesn't have active
|
|
@@ -142,6 +143,7 @@ const ChatWithContext = <
|
|
|
142
143
|
enableOfflineSupport = false,
|
|
143
144
|
i18nInstance,
|
|
144
145
|
ImageComponent = Image,
|
|
146
|
+
resizableCDNHosts = ['.stream-io-cdn.com'],
|
|
145
147
|
style,
|
|
146
148
|
} = props;
|
|
147
149
|
|
|
@@ -169,6 +171,9 @@ const ChatWithContext = <
|
|
|
169
171
|
const debugRef = useDebugContext();
|
|
170
172
|
const isDebugModeEnabled = __DEV__ && debugRef && debugRef.current;
|
|
171
173
|
|
|
174
|
+
// Set the `resizableCDNHosts` as per the prop.
|
|
175
|
+
StreamChatRN.setConfig({ resizableCDNHosts });
|
|
176
|
+
|
|
172
177
|
useEffect(() => {
|
|
173
178
|
if (client) {
|
|
174
179
|
client.setUserAgent(`${SDK}-${Platform.OS}-${version}`);
|
|
@@ -209,6 +214,7 @@ const ChatWithContext = <
|
|
|
209
214
|
ImageComponent,
|
|
210
215
|
isOnline,
|
|
211
216
|
mutedUsers,
|
|
217
|
+
resizableCDNHosts,
|
|
212
218
|
setActiveChannel,
|
|
213
219
|
});
|
|
214
220
|
|
|
@@ -14,6 +14,7 @@ export const useCreateChatContext = <
|
|
|
14
14
|
ImageComponent,
|
|
15
15
|
isOnline,
|
|
16
16
|
mutedUsers,
|
|
17
|
+
resizableCDNHosts,
|
|
17
18
|
setActiveChannel,
|
|
18
19
|
}: ChatContextValue<StreamChatGenerics>) => {
|
|
19
20
|
const channelId = channel?.id;
|
|
@@ -34,6 +35,7 @@ export const useCreateChatContext = <
|
|
|
34
35
|
ImageComponent,
|
|
35
36
|
isOnline,
|
|
36
37
|
mutedUsers,
|
|
38
|
+
resizableCDNHosts,
|
|
37
39
|
setActiveChannel,
|
|
38
40
|
}),
|
|
39
41
|
[channelId, clientValues, connectionRecovering, isOnline, mutedUsersLength],
|
|
@@ -65,6 +65,10 @@ export type ChatContextValue<
|
|
|
65
65
|
* @overrideType Channel
|
|
66
66
|
*/
|
|
67
67
|
channel?: Channel<StreamChatGenerics>;
|
|
68
|
+
/**
|
|
69
|
+
* This option allows you to specify a list of CDNs that offer image resizing.
|
|
70
|
+
*/
|
|
71
|
+
resizableCDNHosts?: string[];
|
|
68
72
|
};
|
|
69
73
|
|
|
70
74
|
export const ChatContext = React.createContext(DEFAULT_BASE_CONTEXT_VALUE as ChatContextValue);
|
package/src/i18n/es.json
CHANGED
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
{
|
|
2
2
|
"1 Reply": "1 respuesta",
|
|
3
|
-
"1 Thread Reply": "",
|
|
3
|
+
"1 Thread Reply": "1 respuesta de hilo",
|
|
4
4
|
"Allow access to your Gallery": "Permitir acceso a tu galería",
|
|
5
5
|
"Allow camera access in device settings": "Permitir el acceso a la cámara en la configuración del dispositivo",
|
|
6
6
|
"Also send to channel": "",
|
|
7
7
|
"Are you sure you want to permanently delete this message?": "¿Estás seguro de que deseas eliminar permanentemente este mensaje?",
|
|
8
|
-
"Are you sure?": "
|
|
8
|
+
"Are you sure?": "",
|
|
9
9
|
"Block User": "Bloquear usuario",
|
|
10
10
|
"Cancel": "Cancelar",
|
|
11
11
|
"Cannot Flag Message": "No se puede reportar el mensaje",
|
|
12
|
-
"Consider how your comment might make others feel and be sure to follow our Community Guidelines": "
|
|
12
|
+
"Consider how your comment might make others feel and be sure to follow our Community Guidelines": "",
|
|
13
13
|
"Copy Message": "Copiar mensaje",
|
|
14
14
|
"Delete": "Eliminar",
|
|
15
15
|
"Delete Message": "Eliminar mensaje",
|
|
@@ -35,11 +35,11 @@
|
|
|
35
35
|
"Loading messages...": "",
|
|
36
36
|
"Loading...": "",
|
|
37
37
|
"Maximum file size upload limit reached. Please upload a file below {{MAX_FILE_SIZE_TO_UPLOAD_IN_MB}} MB.": "",
|
|
38
|
-
"Message Reactions": "",
|
|
38
|
+
"Message Reactions": "Reacciones al mensaje",
|
|
39
39
|
"Message deleted": "",
|
|
40
40
|
"Message flagged": "Mensaje reportado",
|
|
41
41
|
"Mute User": "Silenciar usuario",
|
|
42
|
-
"Not supported": "
|
|
42
|
+
"Not supported": "",
|
|
43
43
|
"Nothing yet...": "",
|
|
44
44
|
"Ok": "Aceptar",
|
|
45
45
|
"Only visible to you": "",
|
|
@@ -52,28 +52,28 @@
|
|
|
52
52
|
"Please select a channel first": "",
|
|
53
53
|
"Reconnecting...": "",
|
|
54
54
|
"Reply": "Responder",
|
|
55
|
-
"Reply to Message": "",
|
|
55
|
+
"Reply to Message": "Responder al mensaje",
|
|
56
56
|
"Resend": "Reenviar",
|
|
57
|
-
"Search GIFs": "",
|
|
57
|
+
"Search GIFs": "Buscar GIFs",
|
|
58
58
|
"Select More Photos": "Seleccionar más fotos",
|
|
59
|
-
"Send Anyway": "
|
|
60
|
-
"Send a message": "",
|
|
59
|
+
"Send Anyway": "",
|
|
60
|
+
"Send a message": "Enviar un mensaje",
|
|
61
61
|
"Sending links is not allowed in this conversation": "",
|
|
62
|
-
"Slow mode ON": "",
|
|
62
|
+
"Slow mode ON": "Modo lento ACTIVADO",
|
|
63
63
|
"The message has been reported to a moderator.": "El mensaje ha sido reportado a un moderador.",
|
|
64
64
|
"Thread Reply": "Respuesta de hilo",
|
|
65
65
|
"Unblock User": "Desbloquear usuario",
|
|
66
66
|
"Unknown User": "Usuario desconocido",
|
|
67
67
|
"Unmute User": "Activar sonido del usuario",
|
|
68
68
|
"Unpin from Conversation": "Desmarcar de la conversación",
|
|
69
|
-
"Unread Messages": "
|
|
69
|
+
"Unread Messages": "",
|
|
70
70
|
"Video": "",
|
|
71
71
|
"You": "",
|
|
72
72
|
"You can't send messages in this channel": "",
|
|
73
73
|
"{{ firstUser }} and {{ nonSelfUserLength }} more are typing": "",
|
|
74
74
|
"{{ index }} of {{ photoLength }}": "{{ index }} de {{ photoLength }}",
|
|
75
75
|
"{{ replyCount }} Replies": "{{ replyCount }} Respuestas",
|
|
76
|
-
"{{ replyCount }} Thread Replies": "",
|
|
76
|
+
"{{ replyCount }} Thread Replies": "{{ replyCount }} respuestas de hilo",
|
|
77
77
|
"{{ user }} is typing": "",
|
|
78
78
|
"🏙 Attachment...": ""
|
|
79
79
|
}
|
package/src/i18n/fr.json
CHANGED
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
{
|
|
2
2
|
"1 Reply": "1 Réponse",
|
|
3
|
-
"1 Thread Reply": "",
|
|
3
|
+
"1 Thread Reply": "Réponse à 1 fil",
|
|
4
4
|
"Allow access to your Gallery": "Autoriser l'accès à votre galerie",
|
|
5
5
|
"Allow camera access in device settings": "Autoriser l'accès à la caméra dans les paramètres de l'appareil",
|
|
6
6
|
"Also send to channel": "",
|
|
7
7
|
"Are you sure you want to permanently delete this message?": "Êtes-vous sûr de vouloir supprimer définitivement ce message?",
|
|
8
|
-
"Are you sure?": "
|
|
8
|
+
"Are you sure?": "",
|
|
9
9
|
"Block User": "Bloquer un utilisateur",
|
|
10
10
|
"Cancel": "Annuler",
|
|
11
11
|
"Cannot Flag Message": "Impossible de signaler le message",
|
|
12
|
-
"Consider how your comment might make others feel and be sure to follow our Community Guidelines": "
|
|
12
|
+
"Consider how your comment might make others feel and be sure to follow our Community Guidelines": "",
|
|
13
13
|
"Copy Message": "Copier le message",
|
|
14
14
|
"Delete": "Supprimer",
|
|
15
15
|
"Delete Message": "Supprimer un message",
|
|
@@ -35,11 +35,11 @@
|
|
|
35
35
|
"Loading messages...": "",
|
|
36
36
|
"Loading...": "",
|
|
37
37
|
"Maximum file size upload limit reached. Please upload a file below {{MAX_FILE_SIZE_TO_UPLOAD_IN_MB}} MB.": "",
|
|
38
|
-
"Message Reactions": "",
|
|
38
|
+
"Message Reactions": "Réactions aux messages",
|
|
39
39
|
"Message deleted": "",
|
|
40
40
|
"Message flagged": "Message signalé",
|
|
41
41
|
"Mute User": "Utilisateur muet",
|
|
42
|
-
"Not supported": "
|
|
42
|
+
"Not supported": "",
|
|
43
43
|
"Nothing yet...": "",
|
|
44
44
|
"Ok": "Ok",
|
|
45
45
|
"Only visible to you": "",
|
|
@@ -52,28 +52,28 @@
|
|
|
52
52
|
"Please select a channel first": "",
|
|
53
53
|
"Reconnecting...": "",
|
|
54
54
|
"Reply": "Répondre",
|
|
55
|
-
"Reply to Message": "",
|
|
55
|
+
"Reply to Message": "Répondre au message",
|
|
56
56
|
"Resend": "Renvoyer",
|
|
57
|
-
"Search GIFs": "",
|
|
57
|
+
"Search GIFs": "Rechercher des GIF",
|
|
58
58
|
"Select More Photos": "Sélectionner plus de photos",
|
|
59
|
-
"Send Anyway": "
|
|
60
|
-
"Send a message": "",
|
|
59
|
+
"Send Anyway": "",
|
|
60
|
+
"Send a message": "Envoyer un message",
|
|
61
61
|
"Sending links is not allowed in this conversation": "",
|
|
62
|
-
"Slow mode ON": "",
|
|
62
|
+
"Slow mode ON": "Mode lent activé",
|
|
63
63
|
"The message has been reported to a moderator.": "Le message a été signalé à un modérateur.",
|
|
64
64
|
"Thread Reply": "Réponse à la discussion",
|
|
65
65
|
"Unblock User": "Débloquer Utilisateur",
|
|
66
66
|
"Unknown User": "Utilisateur inconnu",
|
|
67
67
|
"Unmute User": "Activer le son de Utilisateur",
|
|
68
68
|
"Unpin from Conversation": "Décrocher de la conversation",
|
|
69
|
-
"Unread Messages": "
|
|
69
|
+
"Unread Messages": "",
|
|
70
70
|
"Video": "",
|
|
71
71
|
"You": "",
|
|
72
72
|
"You can't send messages in this channel": "",
|
|
73
73
|
"{{ firstUser }} and {{ nonSelfUserLength }} more are typing": "",
|
|
74
74
|
"{{ index }} of {{ photoLength }}": "{{ index }} sur {{ photoLength }}",
|
|
75
75
|
"{{ replyCount }} Replies": "{{ replyCount }} Réponses",
|
|
76
|
-
"{{ replyCount }} Thread Replies": "",
|
|
76
|
+
"{{ replyCount }} Thread Replies": "{{replyCount}} Réponses à la discussion",
|
|
77
77
|
"{{ user }} is typing": "",
|
|
78
78
|
"🏙 Attachment...": ""
|
|
79
79
|
}
|
package/src/i18n/he.json
CHANGED
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
{
|
|
2
2
|
"1 Reply": "תגובה אחת",
|
|
3
|
-
"1 Thread Reply": "",
|
|
3
|
+
"1 Thread Reply": "תגובה אחת לשרשור",
|
|
4
4
|
"Allow access to your Gallery": "אפשר גישה לגלריה שלך",
|
|
5
5
|
"Allow camera access in device settings": "אפשר גישה למצלמה בהגדרות המכשיר",
|
|
6
6
|
"Also send to channel": "",
|
|
7
7
|
"Are you sure you want to permanently delete this message?": "האם את/ה בטוח/ה שאת/ה רוצה למחוק את ההודעה הזו לצמיתות?",
|
|
8
|
-
"Are you sure?": "
|
|
8
|
+
"Are you sure?": "",
|
|
9
9
|
"Block User": "חסום משתמש",
|
|
10
10
|
"Cancel": "ביטול",
|
|
11
11
|
"Cannot Flag Message": "סימון הודעה לא אפשרי",
|
|
12
|
-
"Consider how your comment might make others feel and be sure to follow our Community Guidelines": "
|
|
12
|
+
"Consider how your comment might make others feel and be sure to follow our Community Guidelines": "",
|
|
13
13
|
"Copy Message": "העתק/י הודעה",
|
|
14
14
|
"Delete": "מחק",
|
|
15
15
|
"Delete Message": "מחק/י הודעה",
|
|
@@ -35,11 +35,11 @@
|
|
|
35
35
|
"Loading messages...": "",
|
|
36
36
|
"Loading...": "",
|
|
37
37
|
"Maximum file size upload limit reached. Please upload a file below {{MAX_FILE_SIZE_TO_UPLOAD_IN_MB}} MB.": "",
|
|
38
|
-
"Message Reactions": "",
|
|
38
|
+
"Message Reactions": "תגובות להודעה",
|
|
39
39
|
"Message deleted": "",
|
|
40
40
|
"Message flagged": "ההודעה סומנה",
|
|
41
41
|
"Mute User": "השתק/י משתמש",
|
|
42
|
-
"Not supported": "
|
|
42
|
+
"Not supported": "",
|
|
43
43
|
"Nothing yet...": "",
|
|
44
44
|
"Ok": "אוקיי",
|
|
45
45
|
"Only visible to you": "",
|
|
@@ -52,28 +52,28 @@
|
|
|
52
52
|
"Please select a channel first": "",
|
|
53
53
|
"Reconnecting...": "",
|
|
54
54
|
"Reply": "השב/י",
|
|
55
|
-
"Reply to Message": "",
|
|
55
|
+
"Reply to Message": "השב/י להודעה",
|
|
56
56
|
"Resend": "שלח/י שוב",
|
|
57
|
-
"Search GIFs": "",
|
|
57
|
+
"Search GIFs": "חפש/י GIFs",
|
|
58
58
|
"Select More Photos": "בחר עוד תמונות",
|
|
59
|
-
"Send Anyway": "
|
|
60
|
-
"Send a message": "",
|
|
59
|
+
"Send Anyway": "",
|
|
60
|
+
"Send a message": "שלח/י הודעה",
|
|
61
61
|
"Sending links is not allowed in this conversation": "",
|
|
62
|
-
"Slow mode ON": "",
|
|
62
|
+
"Slow mode ON": "מצב איטי מופעל",
|
|
63
63
|
"The message has been reported to a moderator.": "ההודעה דווחה למנהל",
|
|
64
64
|
"Thread Reply": "הגב/י בשרשור",
|
|
65
65
|
"Unblock User": "בטל/י חסימת משתמש",
|
|
66
66
|
"Unknown User": "משתמש לא ידוע",
|
|
67
67
|
"Unmute User": "בטל/י השתקת משתמש",
|
|
68
68
|
"Unpin from Conversation": "בטל/י הצמדה לשיחה",
|
|
69
|
-
"Unread Messages": "
|
|
69
|
+
"Unread Messages": "",
|
|
70
70
|
"Video": "",
|
|
71
71
|
"You": "",
|
|
72
72
|
"You can't send messages in this channel": "",
|
|
73
73
|
"{{ firstUser }} and {{ nonSelfUserLength }} more are typing": "",
|
|
74
74
|
"{{ index }} of {{ photoLength }}": "{{ index }} מתוך {{ photoLength }}",
|
|
75
75
|
"{{ replyCount }} Replies": "{{ replyCount }} תגובות",
|
|
76
|
-
"{{ replyCount }} Thread Replies": "",
|
|
76
|
+
"{{ replyCount }} Thread Replies": "{{ replyCount }} תגובות שרשור",
|
|
77
77
|
"{{ user }} is typing": "",
|
|
78
78
|
"🏙 Attachment...": ""
|
|
79
79
|
}
|
package/src/i18n/hi.json
CHANGED
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
{
|
|
2
2
|
"1 Reply": "1 रिप्लाई",
|
|
3
|
-
"1 Thread Reply": "",
|
|
3
|
+
"1 Thread Reply": "1 धागा उत्तर",
|
|
4
4
|
"Allow access to your Gallery": "अपनी गैलरी तक पहुँचने की अनुमति दें",
|
|
5
5
|
"Allow camera access in device settings": "डिवाइस सेटिंग्स में कैमरा एक्सेस की अनुमति दें",
|
|
6
6
|
"Also send to channel": "",
|
|
7
7
|
"Are you sure you want to permanently delete this message?": "क्या आप वाकई इस संदेश को स्थायी रूप से हटाना चाहते हैं?",
|
|
8
|
-
"Are you sure?": "
|
|
8
|
+
"Are you sure?": "",
|
|
9
9
|
"Block User": "उपयोगकर्ता को रोक देना, ब्लॉक यूजर",
|
|
10
10
|
"Cancel": "रद्द करें",
|
|
11
11
|
"Cannot Flag Message": "मैसेज फ्लैग नहीं किया जा सकता है",
|
|
12
|
-
"Consider how your comment might make others feel and be sure to follow our Community Guidelines": "
|
|
12
|
+
"Consider how your comment might make others feel and be sure to follow our Community Guidelines": "",
|
|
13
13
|
"Copy Message": "संदेश की प्रतिलिपि बनाएँ",
|
|
14
14
|
"Delete": "हटाएं",
|
|
15
15
|
"Delete Message": "मैसेज को डिलीट करे",
|
|
@@ -35,11 +35,11 @@
|
|
|
35
35
|
"Loading messages...": "",
|
|
36
36
|
"Loading...": "",
|
|
37
37
|
"Maximum file size upload limit reached. Please upload a file below {{MAX_FILE_SIZE_TO_UPLOAD_IN_MB}} MB.": "",
|
|
38
|
-
"Message Reactions": "",
|
|
38
|
+
"Message Reactions": "संदेश प्रतिक्रियाएँ",
|
|
39
39
|
"Message deleted": "",
|
|
40
40
|
"Message flagged": "संदेश को ध्वजांकित किया गया",
|
|
41
41
|
"Mute User": "उपयोगकर्ता को म्यूट करें",
|
|
42
|
-
"Not supported": "
|
|
42
|
+
"Not supported": "",
|
|
43
43
|
"Nothing yet...": "",
|
|
44
44
|
"Ok": "ठीक",
|
|
45
45
|
"Only visible to you": "",
|
|
@@ -52,28 +52,28 @@
|
|
|
52
52
|
"Please select a channel first": "",
|
|
53
53
|
"Reconnecting...": "",
|
|
54
54
|
"Reply": "मैसेज को रिप्लाई करे",
|
|
55
|
-
"Reply to Message": "",
|
|
55
|
+
"Reply to Message": "संदेश का जवाब दें",
|
|
56
56
|
"Resend": "पुन: भेजें",
|
|
57
|
-
"Search GIFs": "",
|
|
57
|
+
"Search GIFs": "GIF खोजें",
|
|
58
58
|
"Select More Photos": "अधिक फ़ोटो चुनें",
|
|
59
|
-
"Send Anyway": "
|
|
60
|
-
"Send a message": "",
|
|
59
|
+
"Send Anyway": "",
|
|
60
|
+
"Send a message": "एक संदेश भेजें",
|
|
61
61
|
"Sending links is not allowed in this conversation": "",
|
|
62
|
-
"Slow mode ON": "",
|
|
62
|
+
"Slow mode ON": "स्लो मोड चालू",
|
|
63
63
|
"The message has been reported to a moderator.": "संदेश एक मॉडरेटर को सूचित किया गया है।",
|
|
64
64
|
"Thread Reply": "धागा जवाब",
|
|
65
65
|
"Unblock User": "उपयोगकर्ता को अनब्लॉक करें",
|
|
66
66
|
"Unknown User": "अज्ञात उपयोगकर्ता",
|
|
67
67
|
"Unmute User": "उपयोगकर्ता को अनम्यूट करें",
|
|
68
68
|
"Unpin from Conversation": "बातचीत से अनपिन करें",
|
|
69
|
-
"Unread Messages": "
|
|
69
|
+
"Unread Messages": "",
|
|
70
70
|
"Video": "",
|
|
71
71
|
"You": "",
|
|
72
72
|
"You can't send messages in this channel": "",
|
|
73
73
|
"{{ firstUser }} and {{ nonSelfUserLength }} more are typing": "",
|
|
74
74
|
"{{ index }} of {{ photoLength }}": "{{ index }} / {{ photoLength }}",
|
|
75
75
|
"{{ replyCount }} Replies": "{{ replyCount }} रिप्लाई",
|
|
76
|
-
"{{ replyCount }} Thread Replies": "",
|
|
76
|
+
"{{ replyCount }} Thread Replies": "{{ replyCount }}} थ्रेड उत्तर",
|
|
77
77
|
"{{ user }} is typing": "",
|
|
78
78
|
"🏙 Attachment...": ""
|
|
79
79
|
}
|
package/src/i18n/it.json
CHANGED
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
{
|
|
2
2
|
"1 Reply": "1 Risposta",
|
|
3
|
-
"1 Thread Reply": "",
|
|
3
|
+
"1 Thread Reply": "1 Risposta alla Discussione",
|
|
4
4
|
"Allow access to your Gallery": "Consenti l'accesso alla tua galleria",
|
|
5
5
|
"Allow camera access in device settings": "Consenti l'accesso alla fotocamera nelle impostazioni del dispositivo",
|
|
6
6
|
"Also send to channel": "",
|
|
7
7
|
"Are you sure you want to permanently delete this message?": "Sei sicuro di voler eliminare definitivamente questo messaggio?",
|
|
8
|
-
"Are you sure?": "
|
|
8
|
+
"Are you sure?": "",
|
|
9
9
|
"Block User": "Blocca Utente",
|
|
10
10
|
"Cancel": "Annulla",
|
|
11
11
|
"Cannot Flag Message": "Impossibile Segnalare Messaggio",
|
|
12
|
-
"Consider how your comment might make others feel and be sure to follow our Community Guidelines": "
|
|
12
|
+
"Consider how your comment might make others feel and be sure to follow our Community Guidelines": "",
|
|
13
13
|
"Copy Message": "Copia Messaggio",
|
|
14
14
|
"Delete": "Elimina",
|
|
15
15
|
"Delete Message": "Cancella il Messaggio",
|
|
@@ -35,11 +35,11 @@
|
|
|
35
35
|
"Loading messages...": "",
|
|
36
36
|
"Loading...": "",
|
|
37
37
|
"Maximum file size upload limit reached. Please upload a file below {{MAX_FILE_SIZE_TO_UPLOAD_IN_MB}} MB.": "",
|
|
38
|
-
"Message Reactions": "",
|
|
38
|
+
"Message Reactions": "Reazioni ai Messaggi",
|
|
39
39
|
"Message deleted": "",
|
|
40
40
|
"Message flagged": "Messaggio contrassegnato",
|
|
41
41
|
"Mute User": "Utente Muto",
|
|
42
|
-
"Not supported": "
|
|
42
|
+
"Not supported": "",
|
|
43
43
|
"Nothing yet...": "",
|
|
44
44
|
"Ok": "Ok",
|
|
45
45
|
"Only visible to you": "",
|
|
@@ -52,28 +52,28 @@
|
|
|
52
52
|
"Please select a channel first": "",
|
|
53
53
|
"Reconnecting...": "",
|
|
54
54
|
"Reply": "Rispondi",
|
|
55
|
-
"Reply to Message": "",
|
|
55
|
+
"Reply to Message": "Rispondi al messaggio",
|
|
56
56
|
"Resend": "Invia di nuovo",
|
|
57
|
-
"Search GIFs": "",
|
|
57
|
+
"Search GIFs": "Cerca GIF",
|
|
58
58
|
"Select More Photos": "Seleziona Altre foto",
|
|
59
|
-
"Send Anyway": "
|
|
60
|
-
"Send a message": "",
|
|
59
|
+
"Send Anyway": "",
|
|
60
|
+
"Send a message": "Mandare un messaggio",
|
|
61
61
|
"Sending links is not allowed in this conversation": "",
|
|
62
|
-
"Slow mode ON": "",
|
|
62
|
+
"Slow mode ON": "Slowmode attiva",
|
|
63
63
|
"The message has been reported to a moderator.": "Il messaggio è stato segnalato a un moderatore.",
|
|
64
64
|
"Thread Reply": "Rispondi alla Discussione",
|
|
65
65
|
"Unblock User": "Sblocca utente",
|
|
66
66
|
"Unknown User": "Utente sconosciuto",
|
|
67
67
|
"Unmute User": "Riattiva utente",
|
|
68
68
|
"Unpin from Conversation": "Rimuovi dagli elementi in evidenza",
|
|
69
|
-
"Unread Messages": "
|
|
69
|
+
"Unread Messages": "",
|
|
70
70
|
"Video": "",
|
|
71
71
|
"You": "",
|
|
72
72
|
"You can't send messages in this channel": "",
|
|
73
73
|
"{{ firstUser }} and {{ nonSelfUserLength }} more are typing": "",
|
|
74
74
|
"{{ index }} of {{ photoLength }}": "{{ index }} di {{ photoLength }}",
|
|
75
75
|
"{{ replyCount }} Replies": "{{ replyCount }} Risposte",
|
|
76
|
-
"{{ replyCount }} Thread Replies": "",
|
|
76
|
+
"{{ replyCount }} Thread Replies": "{{replyCount}} Risposte alle Conversazione",
|
|
77
77
|
"{{ user }} is typing": "",
|
|
78
78
|
"🏙 Attachment...": ""
|
|
79
79
|
}
|
package/src/i18n/ja.json
CHANGED
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
{
|
|
2
2
|
"1 Reply": "1件の返信",
|
|
3
|
-
"1 Thread Reply": "",
|
|
3
|
+
"1 Thread Reply": "1件のスレッド返信",
|
|
4
4
|
"Allow access to your Gallery": "ギャラリーへのアクセスを許可する",
|
|
5
5
|
"Allow camera access in device settings": "デバイス設定でカメラへのアクセスを許可する",
|
|
6
6
|
"Also send to channel": "",
|
|
7
7
|
"Are you sure you want to permanently delete this message?": "このメッセージを完全に削除してもよろしいですか?",
|
|
8
|
-
"Are you sure?": "
|
|
8
|
+
"Are you sure?": "",
|
|
9
9
|
"Block User": "ユーザをブロックする",
|
|
10
10
|
"Cancel": "キャンセル",
|
|
11
11
|
"Cannot Flag Message": "メッセージをフラグできません",
|
|
12
|
-
"Consider how your comment might make others feel and be sure to follow our Community Guidelines": "
|
|
12
|
+
"Consider how your comment might make others feel and be sure to follow our Community Guidelines": "",
|
|
13
13
|
"Copy Message": "メッセージのコピー",
|
|
14
14
|
"Delete": "消去",
|
|
15
15
|
"Delete Message": "メッセージを削除",
|
|
@@ -35,11 +35,11 @@
|
|
|
35
35
|
"Loading messages...": "",
|
|
36
36
|
"Loading...": "",
|
|
37
37
|
"Maximum file size upload limit reached. Please upload a file below {{MAX_FILE_SIZE_TO_UPLOAD_IN_MB}} MB.": "",
|
|
38
|
-
"Message Reactions": "",
|
|
38
|
+
"Message Reactions": "メッセージのリアクション",
|
|
39
39
|
"Message deleted": "",
|
|
40
40
|
"Message flagged": "メッセージにフラグが付けられました",
|
|
41
41
|
"Mute User": "ユーザーをミュートする",
|
|
42
|
-
"Not supported": "
|
|
42
|
+
"Not supported": "",
|
|
43
43
|
"Nothing yet...": "",
|
|
44
44
|
"Ok": "確認",
|
|
45
45
|
"Only visible to you": "",
|
|
@@ -52,28 +52,28 @@
|
|
|
52
52
|
"Please select a channel first": "",
|
|
53
53
|
"Reconnecting...": "",
|
|
54
54
|
"Reply": "返事",
|
|
55
|
-
"Reply to Message": "",
|
|
55
|
+
"Reply to Message": "メッセージに返信",
|
|
56
56
|
"Resend": "再送",
|
|
57
|
-
"Search GIFs": "",
|
|
57
|
+
"Search GIFs": "GIFの探索",
|
|
58
58
|
"Select More Photos": "さらに写真を選択",
|
|
59
|
-
"Send Anyway": "
|
|
60
|
-
"Send a message": "",
|
|
59
|
+
"Send Anyway": "",
|
|
60
|
+
"Send a message": "メッセージを送る",
|
|
61
61
|
"Sending links is not allowed in this conversation": "",
|
|
62
|
-
"Slow mode ON": "",
|
|
62
|
+
"Slow mode ON": "スローモードオン",
|
|
63
63
|
"The message has been reported to a moderator.": "メッセージはモデレーターに報告されました。",
|
|
64
64
|
"Thread Reply": "スレッドの返信",
|
|
65
65
|
"Unblock User": "ユーザーのブロックを解除する",
|
|
66
66
|
"Unknown User": "不明なユーザー",
|
|
67
67
|
"Unmute User": "ユーザーのミュートを解除する",
|
|
68
68
|
"Unpin from Conversation": "会話のピンを外す",
|
|
69
|
-
"Unread Messages": "
|
|
69
|
+
"Unread Messages": "",
|
|
70
70
|
"Video": "",
|
|
71
71
|
"You": "",
|
|
72
72
|
"You can't send messages in this channel": "",
|
|
73
73
|
"{{ firstUser }} and {{ nonSelfUserLength }} more are typing": "",
|
|
74
74
|
"{{ index }} of {{ photoLength }}": "{{ index }} / {{ photoLength }}",
|
|
75
75
|
"{{ replyCount }} Replies": "{{ replyCount }}件の返信",
|
|
76
|
-
"{{ replyCount }} Thread Replies": "",
|
|
76
|
+
"{{ replyCount }} Thread Replies": "{{ replyCount }}件のスレッド返信",
|
|
77
77
|
"{{ user }} is typing": "",
|
|
78
78
|
"🏙 Attachment...": ""
|
|
79
79
|
}
|