stream-chat-react-native-core 5.25.0 → 5.25.1-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 +420 -391
- package/lib/commonjs/components/Channel/Channel.js.map +1 -1
- package/lib/commonjs/i18n/es.json +33 -33
- package/lib/commonjs/i18n/fr.json +33 -33
- package/lib/commonjs/i18n/he.json +33 -33
- package/lib/commonjs/i18n/hi.json +33 -33
- package/lib/commonjs/i18n/it.json +32 -32
- package/lib/commonjs/i18n/ja.json +32 -32
- package/lib/commonjs/i18n/ko.json +32 -32
- package/lib/commonjs/i18n/nl.json +32 -32
- package/lib/commonjs/i18n/ru.json +32 -32
- package/lib/commonjs/i18n/tr.json +32 -32
- package/lib/commonjs/version.json +1 -1
- package/lib/module/components/Channel/Channel.js +420 -391
- package/lib/module/components/Channel/Channel.js.map +1 -1
- package/lib/module/i18n/es.json +33 -33
- package/lib/module/i18n/fr.json +33 -33
- package/lib/module/i18n/he.json +33 -33
- package/lib/module/i18n/hi.json +33 -33
- package/lib/module/i18n/it.json +32 -32
- package/lib/module/i18n/ja.json +32 -32
- package/lib/module/i18n/ko.json +32 -32
- package/lib/module/i18n/nl.json +32 -32
- package/lib/module/i18n/ru.json +32 -32
- package/lib/module/i18n/tr.json +32 -32
- package/lib/module/version.json +1 -1
- package/lib/typescript/i18n/es.json +33 -33
- package/lib/typescript/i18n/fr.json +33 -33
- package/lib/typescript/i18n/he.json +33 -33
- package/lib/typescript/i18n/hi.json +33 -33
- package/lib/typescript/i18n/it.json +32 -32
- package/lib/typescript/i18n/ja.json +32 -32
- package/lib/typescript/i18n/ko.json +32 -32
- package/lib/typescript/i18n/nl.json +32 -32
- package/lib/typescript/i18n/ru.json +32 -32
- package/lib/typescript/i18n/tr.json +32 -32
- package/package.json +1 -1
- package/src/components/Channel/Channel.tsx +26 -19
- package/src/i18n/es.json +33 -33
- package/src/i18n/fr.json +33 -33
- package/src/i18n/he.json +33 -33
- package/src/i18n/hi.json +33 -33
- package/src/i18n/it.json +32 -32
- package/src/i18n/ja.json +32 -32
- package/src/i18n/ko.json +32 -32
- package/src/i18n/nl.json +32 -32
- package/src/i18n/ru.json +32 -32
- package/src/i18n/tr.json +32 -32
- package/src/version.json +1 -1
|
@@ -592,7 +592,7 @@ const ChannelWithContext = <
|
|
|
592
592
|
const [threadHasMore, setThreadHasMore] = useState(true);
|
|
593
593
|
const [threadLoadingMore, setThreadLoadingMore] = useState(false);
|
|
594
594
|
|
|
595
|
-
const
|
|
595
|
+
const syncingChannelRef = useRef(false);
|
|
596
596
|
|
|
597
597
|
/**
|
|
598
598
|
* Flag to track if we know for sure that there are no more recent messages to load.
|
|
@@ -618,7 +618,7 @@ const ChannelWithContext = <
|
|
|
618
618
|
const channelId = channel?.id || '';
|
|
619
619
|
|
|
620
620
|
useEffect(() => {
|
|
621
|
-
const initChannel = () => {
|
|
621
|
+
const initChannel = async () => {
|
|
622
622
|
if (!channel || !shouldSyncChannel || channel.offlineMode) return;
|
|
623
623
|
/**
|
|
624
624
|
* Loading channel at first unread message requires channel to be initialized in the first place,
|
|
@@ -626,22 +626,20 @@ const ChannelWithContext = <
|
|
|
626
626
|
* Also there is no use case from UX perspective, why one would need loading uninitialized channel at particular message.
|
|
627
627
|
* If the channel is not initiated, then we need to do channel.watch, which is more expensive for backend than channel.query.
|
|
628
628
|
*/
|
|
629
|
+
let channelLoaded = false;
|
|
629
630
|
if (!channel.initialized) {
|
|
630
|
-
loadChannel();
|
|
631
|
-
|
|
631
|
+
await loadChannel();
|
|
632
|
+
channelLoaded = true;
|
|
632
633
|
}
|
|
633
634
|
|
|
634
635
|
if (messageId) {
|
|
635
636
|
loadChannelAroundMessage({ messageId });
|
|
636
|
-
|
|
637
|
-
}
|
|
638
|
-
|
|
639
|
-
if (
|
|
637
|
+
} else if (
|
|
640
638
|
initialScrollToFirstUnreadMessage &&
|
|
641
639
|
channel.countUnread() > scrollToFirstUnreadThreshold
|
|
642
640
|
) {
|
|
643
641
|
loadChannelAtFirstUnreadMessage();
|
|
644
|
-
} else {
|
|
642
|
+
} else if (!channelLoaded) {
|
|
645
643
|
loadChannel();
|
|
646
644
|
}
|
|
647
645
|
};
|
|
@@ -858,9 +856,11 @@ const ChannelWithContext = <
|
|
|
858
856
|
if (typeof scrollToMessageId === 'function') {
|
|
859
857
|
scrollToMessageId = scrollToMessageId();
|
|
860
858
|
}
|
|
859
|
+
|
|
861
860
|
const scrollToMessageIndex = scrollToMessageId
|
|
862
861
|
? currentMessages.findIndex(({ id }) => id === scrollToMessageId)
|
|
863
862
|
: -1;
|
|
863
|
+
|
|
864
864
|
if (channel && scrollToMessageIndex !== -1) {
|
|
865
865
|
// We assume that on average user sees 5 messages on screen
|
|
866
866
|
// We dont want new renders to happen while scrolling to the targeted message
|
|
@@ -977,13 +977,15 @@ const ChannelWithContext = <
|
|
|
977
977
|
// in order to attempt to not throw away, will attempt to merge it by loading 25 more messages
|
|
978
978
|
const recentCurrentSetMsgId =
|
|
979
979
|
currentMessageSet.messages[currentMessageSet.messages.length - 1].id;
|
|
980
|
-
await channel.query(
|
|
981
|
-
|
|
982
|
-
|
|
983
|
-
|
|
980
|
+
await channel.query(
|
|
981
|
+
{
|
|
982
|
+
messages: {
|
|
983
|
+
id_gte: recentCurrentSetMsgId,
|
|
984
|
+
limit: 25,
|
|
985
|
+
},
|
|
984
986
|
},
|
|
985
|
-
|
|
986
|
-
|
|
987
|
+
'current',
|
|
988
|
+
);
|
|
987
989
|
// if the gap is more than 25, we will unfortunately have to throw away the latest messages
|
|
988
990
|
}
|
|
989
991
|
} else {
|
|
@@ -1153,10 +1155,11 @@ const ChannelWithContext = <
|
|
|
1153
1155
|
};
|
|
1154
1156
|
|
|
1155
1157
|
const resyncChannel = async () => {
|
|
1156
|
-
if (!channel ||
|
|
1158
|
+
if (!channel || syncingChannelRef.current) return;
|
|
1159
|
+
if (!channel.initialized) return;
|
|
1157
1160
|
hasOverlappingRecentMessagesRef.current = false;
|
|
1158
1161
|
clearInterval(mergeSetsIntervalRef.current);
|
|
1159
|
-
|
|
1162
|
+
syncingChannelRef.current = true;
|
|
1160
1163
|
|
|
1161
1164
|
setError(false);
|
|
1162
1165
|
try {
|
|
@@ -1263,7 +1266,7 @@ const ChannelWithContext = <
|
|
|
1263
1266
|
setLoading(false);
|
|
1264
1267
|
}
|
|
1265
1268
|
|
|
1266
|
-
|
|
1269
|
+
syncingChannelRef.current = false;
|
|
1267
1270
|
};
|
|
1268
1271
|
|
|
1269
1272
|
// resync channel is added to ref so that it can be used in useEffect without adding it as a dependency
|
|
@@ -1279,7 +1282,11 @@ const ChannelWithContext = <
|
|
|
1279
1282
|
let connectionChangedSubscription: ReturnType<ChannelType['on']>;
|
|
1280
1283
|
|
|
1281
1284
|
if (enableOfflineSupport) {
|
|
1282
|
-
connectionChangedSubscription = DBSyncManager.onSyncStatusChange(
|
|
1285
|
+
connectionChangedSubscription = DBSyncManager.onSyncStatusChange((statusChanged) => {
|
|
1286
|
+
if (statusChanged) {
|
|
1287
|
+
connectionChangedHandler();
|
|
1288
|
+
}
|
|
1289
|
+
});
|
|
1283
1290
|
} else {
|
|
1284
1291
|
connectionChangedSubscription = client.on('connection.changed', (event) => {
|
|
1285
1292
|
if (event.online) {
|
package/src/i18n/es.json
CHANGED
|
@@ -5,11 +5,11 @@
|
|
|
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": "También enviar al canal",
|
|
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",
|
|
@@ -18,62 +18,62 @@
|
|
|
18
18
|
"Edit Message": "Editar mensaje",
|
|
19
19
|
"Editing Message": "Editando mensaje",
|
|
20
20
|
"Emoji matching": "Coincidencia de emoji",
|
|
21
|
-
"Empty message...": "
|
|
22
|
-
"Error loading": "
|
|
23
|
-
"Error loading channel list...": "
|
|
24
|
-
"Error loading messages for this channel...": "
|
|
25
|
-
"Error while loading, please reload/refresh": "
|
|
26
|
-
"File type not supported": "
|
|
21
|
+
"Empty message...": "",
|
|
22
|
+
"Error loading": "",
|
|
23
|
+
"Error loading channel list...": "",
|
|
24
|
+
"Error loading messages for this channel...": "",
|
|
25
|
+
"Error while loading, please reload/refresh": "",
|
|
26
|
+
"File type not supported": "",
|
|
27
27
|
"Flag": "Reportar",
|
|
28
28
|
"Flag Message": "Reportar mensaje",
|
|
29
29
|
"Flag action failed either due to a network issue or the message is already flagged": "El reporte falló debido a un problema de red o el mensaje ya fue reportado.",
|
|
30
|
-
"How about sending your first message to a friend?": "
|
|
30
|
+
"How about sending your first message to a friend?": "",
|
|
31
31
|
"Instant Commands": "Comandos instantáneos",
|
|
32
|
-
"Let's start chatting!": "
|
|
33
|
-
"Links are disabled": "
|
|
34
|
-
"Loading channels...": "
|
|
35
|
-
"Loading messages...": "
|
|
36
|
-
"Loading...": "
|
|
37
|
-
"Maximum file size upload limit reached. Please upload a file below {{MAX_FILE_SIZE_TO_UPLOAD_IN_MB}} MB.": "
|
|
38
|
-
"Message Reactions": "
|
|
39
|
-
"Message deleted": "
|
|
32
|
+
"Let's start chatting!": "",
|
|
33
|
+
"Links are disabled": "",
|
|
34
|
+
"Loading channels...": "",
|
|
35
|
+
"Loading messages...": "",
|
|
36
|
+
"Loading...": "",
|
|
37
|
+
"Maximum file size upload limit reached. Please upload a file below {{MAX_FILE_SIZE_TO_UPLOAD_IN_MB}} MB.": "",
|
|
38
|
+
"Message Reactions": "",
|
|
39
|
+
"Message deleted": "",
|
|
40
40
|
"Message flagged": "Mensaje reportado",
|
|
41
41
|
"Mute User": "Silenciar usuario",
|
|
42
|
-
"Not supported": "
|
|
43
|
-
"Nothing yet...": "
|
|
42
|
+
"Not supported": "",
|
|
43
|
+
"Nothing yet...": "",
|
|
44
44
|
"Ok": "Aceptar",
|
|
45
45
|
"Only visible to you": "Solo visible para ti",
|
|
46
46
|
"Open Settings": "Configuración abierta",
|
|
47
|
-
"Photo": "
|
|
47
|
+
"Photo": "",
|
|
48
48
|
"Photos and Videos": "Fotos y videos",
|
|
49
49
|
"Pin to Conversation": "Fijar a la conversación",
|
|
50
50
|
"Pinned by": "Fijado por",
|
|
51
51
|
"Please enable access to your photos and videos so you can share them.": "Por favor, habilita el acceso a tus fotos y videos para poder compartirlos.",
|
|
52
|
-
"Please select a channel first": "
|
|
53
|
-
"Reconnecting...": "
|
|
52
|
+
"Please select a channel first": "",
|
|
53
|
+
"Reconnecting...": "",
|
|
54
54
|
"Reply": "Responder",
|
|
55
|
-
"Reply to Message": "
|
|
55
|
+
"Reply to Message": "",
|
|
56
56
|
"Resend": "Reenviar",
|
|
57
|
-
"Search GIFs": "
|
|
57
|
+
"Search GIFs": "",
|
|
58
58
|
"Select More Photos": "Seleccionar más fotos",
|
|
59
|
-
"Send Anyway": "
|
|
60
|
-
"Send a message": "
|
|
61
|
-
"Sending links is not allowed in this conversation": "
|
|
62
|
-
"Slow mode ON": "
|
|
59
|
+
"Send Anyway": "",
|
|
60
|
+
"Send a message": "",
|
|
61
|
+
"Sending links is not allowed in this conversation": "",
|
|
62
|
+
"Slow mode ON": "",
|
|
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": "
|
|
70
|
-
"Video": "
|
|
71
|
-
"You": "
|
|
72
|
-
"You can't send messages in this channel": "
|
|
69
|
+
"Unread Messages": "",
|
|
70
|
+
"Video": "",
|
|
71
|
+
"You": "",
|
|
72
|
+
"You can't send messages in this channel": "",
|
|
73
73
|
"{{ firstUser }} and {{ nonSelfUserLength }} more are typing": "{{ firstUser }} y {{ nonSelfUserLength }} más están escribiendo",
|
|
74
74
|
"{{ index }} of {{ photoLength }}": "{{ index }} de {{ photoLength }}",
|
|
75
75
|
"{{ replyCount }} Replies": "{{ replyCount }} Respuestas",
|
|
76
76
|
"{{ replyCount }} Thread Replies": "{{ replyCount }} respuestas de hilo",
|
|
77
77
|
"{{ user }} is typing": "{{ user }} está escribiendo",
|
|
78
|
-
"🏙 Attachment...": "
|
|
78
|
+
"🏙 Attachment...": ""
|
|
79
79
|
}
|
package/src/i18n/fr.json
CHANGED
|
@@ -5,11 +5,11 @@
|
|
|
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": "Envoyer également à la chaîne",
|
|
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",
|
|
@@ -18,62 +18,62 @@
|
|
|
18
18
|
"Edit Message": "Éditer un message",
|
|
19
19
|
"Editing Message": "Édite un message",
|
|
20
20
|
"Emoji matching": "Correspondance Emoji",
|
|
21
|
-
"Empty message...": "
|
|
22
|
-
"Error loading": "
|
|
23
|
-
"Error loading channel list...": "
|
|
24
|
-
"Error loading messages for this channel...": "
|
|
25
|
-
"Error while loading, please reload/refresh": "
|
|
26
|
-
"File type not supported": "
|
|
21
|
+
"Empty message...": "",
|
|
22
|
+
"Error loading": "",
|
|
23
|
+
"Error loading channel list...": "",
|
|
24
|
+
"Error loading messages for this channel...": "",
|
|
25
|
+
"Error while loading, please reload/refresh": "",
|
|
26
|
+
"File type not supported": "",
|
|
27
27
|
"Flag": "Signaler",
|
|
28
28
|
"Flag Message": "Signaler le message",
|
|
29
29
|
"Flag action failed either due to a network issue or the message is already flagged": "L'action de signalisation a échoué en raison d'un problème de réseau ou le message est déjà signalé.",
|
|
30
|
-
"How about sending your first message to a friend?": "
|
|
30
|
+
"How about sending your first message to a friend?": "",
|
|
31
31
|
"Instant Commands": "Commandes Instantanées",
|
|
32
|
-
"Let's start chatting!": "
|
|
33
|
-
"Links are disabled": "
|
|
34
|
-
"Loading channels...": "
|
|
35
|
-
"Loading messages...": "
|
|
36
|
-
"Loading...": "
|
|
37
|
-
"Maximum file size upload limit reached. Please upload a file below {{MAX_FILE_SIZE_TO_UPLOAD_IN_MB}} MB.": "
|
|
38
|
-
"Message Reactions": "
|
|
39
|
-
"Message deleted": "
|
|
32
|
+
"Let's start chatting!": "",
|
|
33
|
+
"Links are disabled": "",
|
|
34
|
+
"Loading channels...": "",
|
|
35
|
+
"Loading messages...": "",
|
|
36
|
+
"Loading...": "",
|
|
37
|
+
"Maximum file size upload limit reached. Please upload a file below {{MAX_FILE_SIZE_TO_UPLOAD_IN_MB}} MB.": "",
|
|
38
|
+
"Message Reactions": "",
|
|
39
|
+
"Message deleted": "",
|
|
40
40
|
"Message flagged": "Message signalé",
|
|
41
41
|
"Mute User": "Utilisateur muet",
|
|
42
|
-
"Not supported": "
|
|
43
|
-
"Nothing yet...": "
|
|
42
|
+
"Not supported": "",
|
|
43
|
+
"Nothing yet...": "",
|
|
44
44
|
"Ok": "Ok",
|
|
45
45
|
"Only visible to you": "Seulement visible par vous",
|
|
46
46
|
"Open Settings": "Ouvrir les paramètres",
|
|
47
|
-
"Photo": "
|
|
47
|
+
"Photo": "",
|
|
48
48
|
"Photos and Videos": "Photos et vidéos",
|
|
49
49
|
"Pin to Conversation": "Épingler à la conversation",
|
|
50
50
|
"Pinned by": "Épinglé par",
|
|
51
51
|
"Please enable access to your photos and videos so you can share them.": "Veuillez autoriser l'accès à vos photos et vidéos afin de pouvoir les partager.",
|
|
52
|
-
"Please select a channel first": "
|
|
53
|
-
"Reconnecting...": "
|
|
52
|
+
"Please select a channel first": "",
|
|
53
|
+
"Reconnecting...": "",
|
|
54
54
|
"Reply": "Répondre",
|
|
55
|
-
"Reply to Message": "
|
|
55
|
+
"Reply to Message": "",
|
|
56
56
|
"Resend": "Renvoyer",
|
|
57
|
-
"Search GIFs": "
|
|
57
|
+
"Search GIFs": "",
|
|
58
58
|
"Select More Photos": "Sélectionner plus de photos",
|
|
59
|
-
"Send Anyway": "
|
|
60
|
-
"Send a message": "
|
|
61
|
-
"Sending links is not allowed in this conversation": "
|
|
62
|
-
"Slow mode ON": "
|
|
59
|
+
"Send Anyway": "",
|
|
60
|
+
"Send a message": "",
|
|
61
|
+
"Sending links is not allowed in this conversation": "",
|
|
62
|
+
"Slow mode ON": "",
|
|
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": "
|
|
70
|
-
"Video": "
|
|
71
|
-
"You": "
|
|
72
|
-
"You can't send messages in this channel": "
|
|
69
|
+
"Unread Messages": "",
|
|
70
|
+
"Video": "",
|
|
71
|
+
"You": "",
|
|
72
|
+
"You can't send messages in this channel": "",
|
|
73
73
|
"{{ firstUser }} and {{ nonSelfUserLength }} more are typing": "{{ firstUser }} et {{ nonSelfUserLength }} autres sont en train d'écrire",
|
|
74
74
|
"{{ index }} of {{ photoLength }}": "{{ index }} sur {{ photoLength }}",
|
|
75
75
|
"{{ replyCount }} Replies": "{{ replyCount }} Réponses",
|
|
76
76
|
"{{ replyCount }} Thread Replies": "{{replyCount}} Réponses à la discussion",
|
|
77
77
|
"{{ user }} is typing": "{{ user }} est en train d'écrire",
|
|
78
|
-
"🏙 Attachment...": "
|
|
78
|
+
"🏙 Attachment...": ""
|
|
79
79
|
}
|
package/src/i18n/he.json
CHANGED
|
@@ -5,11 +5,11 @@
|
|
|
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": "מחק/י הודעה",
|
|
@@ -18,62 +18,62 @@
|
|
|
18
18
|
"Edit Message": "ערוך הודעה",
|
|
19
19
|
"Editing Message": "הודעה בעריכה",
|
|
20
20
|
"Emoji matching": "התאמת אמוג'י",
|
|
21
|
-
"Empty message...": "
|
|
22
|
-
"Error loading": "
|
|
23
|
-
"Error loading channel list...": "
|
|
24
|
-
"Error loading messages for this channel...": "
|
|
25
|
-
"Error while loading, please reload/refresh": "
|
|
26
|
-
"File type not supported": "
|
|
21
|
+
"Empty message...": "",
|
|
22
|
+
"Error loading": "",
|
|
23
|
+
"Error loading channel list...": "",
|
|
24
|
+
"Error loading messages for this channel...": "",
|
|
25
|
+
"Error while loading, please reload/refresh": "",
|
|
26
|
+
"File type not supported": "",
|
|
27
27
|
"Flag": "סמן",
|
|
28
28
|
"Flag Message": "סמן הודעה",
|
|
29
29
|
"Flag action failed either due to a network issue or the message is already flagged": "פעולת הסימון נכשלה בגלל בעיית רשת או שההודעה כבר סומנה.",
|
|
30
|
-
"How about sending your first message to a friend?": "
|
|
30
|
+
"How about sending your first message to a friend?": "",
|
|
31
31
|
"Instant Commands": "פעולות מיידיות",
|
|
32
|
-
"Let's start chatting!": "
|
|
33
|
-
"Links are disabled": "
|
|
34
|
-
"Loading channels...": "
|
|
35
|
-
"Loading messages...": "
|
|
36
|
-
"Loading...": "
|
|
37
|
-
"Maximum file size upload limit reached. Please upload a file below {{MAX_FILE_SIZE_TO_UPLOAD_IN_MB}} MB.": "
|
|
38
|
-
"Message Reactions": "
|
|
39
|
-
"Message deleted": "
|
|
32
|
+
"Let's start chatting!": "",
|
|
33
|
+
"Links are disabled": "",
|
|
34
|
+
"Loading channels...": "",
|
|
35
|
+
"Loading messages...": "",
|
|
36
|
+
"Loading...": "",
|
|
37
|
+
"Maximum file size upload limit reached. Please upload a file below {{MAX_FILE_SIZE_TO_UPLOAD_IN_MB}} MB.": "",
|
|
38
|
+
"Message Reactions": "",
|
|
39
|
+
"Message deleted": "",
|
|
40
40
|
"Message flagged": "ההודעה סומנה",
|
|
41
41
|
"Mute User": "השתק/י משתמש",
|
|
42
|
-
"Not supported": "
|
|
43
|
-
"Nothing yet...": "
|
|
42
|
+
"Not supported": "",
|
|
43
|
+
"Nothing yet...": "",
|
|
44
44
|
"Ok": "אוקיי",
|
|
45
45
|
"Only visible to you": "גלוי רק לך",
|
|
46
46
|
"Open Settings": "פתח את ההגדרות",
|
|
47
|
-
"Photo": "
|
|
47
|
+
"Photo": "",
|
|
48
48
|
"Photos and Videos": "תמונות ווידאו",
|
|
49
49
|
"Pin to Conversation": "הצמד/י לשיחה",
|
|
50
50
|
"Pinned by": " - הוצמד לשיחה",
|
|
51
51
|
"Please enable access to your photos and videos so you can share them.": "אפשר/י גישה לתמונות ולסרטונים שלך כדי שתוכל/י לשתף אותם.",
|
|
52
|
-
"Please select a channel first": "
|
|
53
|
-
"Reconnecting...": "
|
|
52
|
+
"Please select a channel first": "",
|
|
53
|
+
"Reconnecting...": "",
|
|
54
54
|
"Reply": "השב/י",
|
|
55
|
-
"Reply to Message": "
|
|
55
|
+
"Reply to Message": "",
|
|
56
56
|
"Resend": "שלח/י שוב",
|
|
57
|
-
"Search GIFs": "
|
|
57
|
+
"Search GIFs": "",
|
|
58
58
|
"Select More Photos": "בחר עוד תמונות",
|
|
59
|
-
"Send Anyway": "
|
|
60
|
-
"Send a message": "
|
|
61
|
-
"Sending links is not allowed in this conversation": "
|
|
62
|
-
"Slow mode ON": "
|
|
59
|
+
"Send Anyway": "",
|
|
60
|
+
"Send a message": "",
|
|
61
|
+
"Sending links is not allowed in this conversation": "",
|
|
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": "
|
|
70
|
-
"Video": "
|
|
71
|
-
"You": "
|
|
72
|
-
"You can't send messages in this channel": "
|
|
69
|
+
"Unread Messages": "",
|
|
70
|
+
"Video": "",
|
|
71
|
+
"You": "",
|
|
72
|
+
"You can't send messages in this channel": "",
|
|
73
73
|
"{{ firstUser }} and {{ nonSelfUserLength }} more are typing": "{{ firstUser }} ו-{{ nonSelfUserLength }} משתמש/ים אחר/ים מקלידים",
|
|
74
74
|
"{{ index }} of {{ photoLength }}": "{{ index }} מתוך {{ photoLength }}",
|
|
75
75
|
"{{ replyCount }} Replies": "{{ replyCount }} תגובות",
|
|
76
76
|
"{{ replyCount }} Thread Replies": "{{ replyCount }} תגובות שרשור",
|
|
77
77
|
"{{ user }} is typing": "{{ user }} מקליד/ה",
|
|
78
|
-
"🏙 Attachment...": "
|
|
78
|
+
"🏙 Attachment...": ""
|
|
79
79
|
}
|
package/src/i18n/hi.json
CHANGED
|
@@ -5,11 +5,11 @@
|
|
|
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": "मैसेज को डिलीट करे",
|
|
@@ -18,62 +18,62 @@
|
|
|
18
18
|
"Edit Message": "मैसेज में बदलाव करे",
|
|
19
19
|
"Editing Message": "मैसेज बदला जा रहा है",
|
|
20
20
|
"Emoji matching": "इमोजी मिलान",
|
|
21
|
-
"Empty message...": "
|
|
22
|
-
"Error loading": "
|
|
23
|
-
"Error loading channel list...": "
|
|
24
|
-
"Error loading messages for this channel...": "
|
|
25
|
-
"Error while loading, please reload/refresh": "
|
|
26
|
-
"File type not supported": "
|
|
21
|
+
"Empty message...": "",
|
|
22
|
+
"Error loading": "",
|
|
23
|
+
"Error loading channel list...": "",
|
|
24
|
+
"Error loading messages for this channel...": "",
|
|
25
|
+
"Error while loading, please reload/refresh": "",
|
|
26
|
+
"File type not supported": "",
|
|
27
27
|
"Flag": "झंडा",
|
|
28
28
|
"Flag Message": "झंडा संदेश",
|
|
29
29
|
"Flag action failed either due to a network issue or the message is already flagged": "फ़्लैग कार्रवाई या तो नेटवर्क समस्या के कारण विफल हो गई या संदेश पहले से फ़्लैग किया गया है।",
|
|
30
|
-
"How about sending your first message to a friend?": "
|
|
30
|
+
"How about sending your first message to a friend?": "",
|
|
31
31
|
"Instant Commands": "त्वरित कमांड",
|
|
32
|
-
"Let's start chatting!": "
|
|
33
|
-
"Links are disabled": "
|
|
34
|
-
"Loading channels...": "
|
|
35
|
-
"Loading messages...": "
|
|
36
|
-
"Loading...": "
|
|
37
|
-
"Maximum file size upload limit reached. Please upload a file below {{MAX_FILE_SIZE_TO_UPLOAD_IN_MB}} MB.": "
|
|
38
|
-
"Message Reactions": "
|
|
39
|
-
"Message deleted": "
|
|
32
|
+
"Let's start chatting!": "",
|
|
33
|
+
"Links are disabled": "",
|
|
34
|
+
"Loading channels...": "",
|
|
35
|
+
"Loading messages...": "",
|
|
36
|
+
"Loading...": "",
|
|
37
|
+
"Maximum file size upload limit reached. Please upload a file below {{MAX_FILE_SIZE_TO_UPLOAD_IN_MB}} MB.": "",
|
|
38
|
+
"Message Reactions": "",
|
|
39
|
+
"Message deleted": "",
|
|
40
40
|
"Message flagged": "संदेश को ध्वजांकित किया गया",
|
|
41
41
|
"Mute User": "उपयोगकर्ता को म्यूट करें",
|
|
42
|
-
"Not supported": "
|
|
43
|
-
"Nothing yet...": "
|
|
42
|
+
"Not supported": "",
|
|
43
|
+
"Nothing yet...": "",
|
|
44
44
|
"Ok": "ठीक",
|
|
45
45
|
"Only visible to you": "केवल आपको दिखाई दे रहा है",
|
|
46
46
|
"Open Settings": "सेटिंग्स खोलें",
|
|
47
|
-
"Photo": "
|
|
47
|
+
"Photo": "",
|
|
48
48
|
"Photos and Videos": "तस्वीरें और वीडियों",
|
|
49
49
|
"Pin to Conversation": "बातचीत में पिन करें",
|
|
50
50
|
"Pinned by": "द्वारा पिन किया गया",
|
|
51
51
|
"Please enable access to your photos and videos so you can share them.": "कृपया अपनी फ़ोटो और वीडियो तक पहुंच सक्षम करें ताकि आप उन्हें साझा कर सकें।",
|
|
52
|
-
"Please select a channel first": "
|
|
53
|
-
"Reconnecting...": "
|
|
52
|
+
"Please select a channel first": "",
|
|
53
|
+
"Reconnecting...": "",
|
|
54
54
|
"Reply": "मैसेज को रिप्लाई करे",
|
|
55
|
-
"Reply to Message": "
|
|
55
|
+
"Reply to Message": "",
|
|
56
56
|
"Resend": "पुन: भेजें",
|
|
57
|
-
"Search GIFs": "
|
|
57
|
+
"Search GIFs": "",
|
|
58
58
|
"Select More Photos": "अधिक फ़ोटो चुनें",
|
|
59
|
-
"Send Anyway": "
|
|
60
|
-
"Send a message": "
|
|
61
|
-
"Sending links is not allowed in this conversation": "
|
|
62
|
-
"Slow mode ON": "
|
|
59
|
+
"Send Anyway": "",
|
|
60
|
+
"Send a message": "",
|
|
61
|
+
"Sending links is not allowed in this conversation": "",
|
|
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": "
|
|
70
|
-
"Video": "
|
|
71
|
-
"You": "
|
|
72
|
-
"You can't send messages in this channel": "
|
|
69
|
+
"Unread Messages": "",
|
|
70
|
+
"Video": "",
|
|
71
|
+
"You": "",
|
|
72
|
+
"You can't send messages in this channel": "",
|
|
73
73
|
"{{ firstUser }} and {{ nonSelfUserLength }} more are typing": "{{ firstUser }} और {{ nonSelfUserLength }} अधिक टाइप कर रहे हैं",
|
|
74
74
|
"{{ index }} of {{ photoLength }}": "{{ index }} / {{ photoLength }}",
|
|
75
75
|
"{{ replyCount }} Replies": "{{ replyCount }} रिप्लाई",
|
|
76
76
|
"{{ replyCount }} Thread Replies": "{{ replyCount }}} थ्रेड उत्तर",
|
|
77
77
|
"{{ user }} is typing": "{{ user }} टाइप कर रहा है",
|
|
78
|
-
"🏙 Attachment...": "
|
|
78
|
+
"🏙 Attachment...": ""
|
|
79
79
|
}
|