stream-chat-react-native-core 5.22.2-beta.4 → 5.22.2-beta.6
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 +112 -84
- package/lib/commonjs/components/Channel/Channel.js.map +1 -1
- package/lib/commonjs/components/MessageList/MessageList.js +58 -40
- package/lib/commonjs/components/MessageList/MessageList.js.map +1 -1
- package/lib/commonjs/components/MessageOverlay/MessageActionListItem.js +2 -2
- package/lib/commonjs/components/MessageOverlay/MessageActionListItem.js.map +1 -1
- package/lib/commonjs/i18n/en.json +1 -1
- package/lib/commonjs/i18n/fr.json +49 -49
- package/lib/commonjs/i18n/hi.json +49 -49
- package/lib/commonjs/i18n/it.json +49 -49
- package/lib/commonjs/i18n/nl.json +49 -49
- package/lib/commonjs/i18n/ru.json +49 -49
- package/lib/commonjs/i18n/tr.json +49 -49
- package/lib/commonjs/version.json +1 -1
- package/lib/module/components/Channel/Channel.js +112 -84
- package/lib/module/components/Channel/Channel.js.map +1 -1
- package/lib/module/components/MessageList/MessageList.js +58 -40
- package/lib/module/components/MessageList/MessageList.js.map +1 -1
- package/lib/module/components/MessageOverlay/MessageActionListItem.js +2 -2
- package/lib/module/components/MessageOverlay/MessageActionListItem.js.map +1 -1
- package/lib/module/i18n/en.json +1 -1
- package/lib/module/i18n/fr.json +49 -49
- package/lib/module/i18n/hi.json +49 -49
- package/lib/module/i18n/it.json +49 -49
- package/lib/module/i18n/nl.json +49 -49
- package/lib/module/i18n/ru.json +49 -49
- package/lib/module/i18n/tr.json +49 -49
- package/lib/module/version.json +1 -1
- package/lib/typescript/i18n/en.json +1 -1
- package/lib/typescript/i18n/fr.json +49 -49
- package/lib/typescript/i18n/hi.json +49 -49
- package/lib/typescript/i18n/it.json +49 -49
- package/lib/typescript/i18n/nl.json +49 -49
- package/lib/typescript/i18n/ru.json +49 -49
- package/lib/typescript/i18n/tr.json +49 -49
- package/package.json +1 -1
- package/src/components/Channel/Channel.tsx +32 -6
- package/src/components/MessageList/MessageList.tsx +44 -9
- package/src/components/MessageOverlay/MessageActionListItem.tsx +1 -1
- package/src/i18n/en.json +1 -1
- package/src/i18n/fr.json +49 -49
- package/src/i18n/hi.json +49 -49
- package/src/i18n/it.json +49 -49
- package/src/i18n/nl.json +49 -49
- package/src/i18n/ru.json +49 -49
- package/src/i18n/tr.json +49 -49
- package/src/version.json +1 -1
|
@@ -344,6 +344,11 @@ const MessageListWithContext = <
|
|
|
344
344
|
*/
|
|
345
345
|
const initialScrollSettingTimeoutRef = useRef<NodeJS.Timeout>();
|
|
346
346
|
|
|
347
|
+
/**
|
|
348
|
+
* The timeout id used to temporarily load the initial scroll set flag
|
|
349
|
+
*/
|
|
350
|
+
const tempDisablePaginationTrackersTimeoutRef = useRef<NodeJS.Timeout>();
|
|
351
|
+
|
|
347
352
|
/**
|
|
348
353
|
* If a messageId was requested to scroll to but was unloaded,
|
|
349
354
|
* this flag keeps track of it to scroll to it after loading the message
|
|
@@ -421,6 +426,22 @@ const MessageListWithContext = <
|
|
|
421
426
|
onEndReachedTracker.current = {};
|
|
422
427
|
});
|
|
423
428
|
|
|
429
|
+
/**
|
|
430
|
+
* Disables the pagination trackers for a second
|
|
431
|
+
* This is used to prevent the onEndReached and onStartReached from firing
|
|
432
|
+
* when we scroll to the bottom or top of the list automatically without user interaction
|
|
433
|
+
* Ex: for targeted message scroll
|
|
434
|
+
*/
|
|
435
|
+
const tempDisablePaginationTrackersRef = useRef((messageListLength: number) => {
|
|
436
|
+
clearTimeout(tempDisablePaginationTrackersTimeoutRef.current);
|
|
437
|
+
onStartReachedTracker.current[messageListLength] = true;
|
|
438
|
+
onEndReachedTracker.current[messageListLength] = true;
|
|
439
|
+
tempDisablePaginationTrackersTimeoutRef.current = setTimeout(() => {
|
|
440
|
+
onStartReachedTracker.current[messageListLength] = false;
|
|
441
|
+
onEndReachedTracker.current[messageListLength] = false;
|
|
442
|
+
}, 1000);
|
|
443
|
+
});
|
|
444
|
+
|
|
424
445
|
useEffect(() => {
|
|
425
446
|
setScrollToBottomButtonVisible(false);
|
|
426
447
|
}, [disabled]);
|
|
@@ -809,29 +830,32 @@ const MessageListWithContext = <
|
|
|
809
830
|
>((info) => {
|
|
810
831
|
// We got a failure as we tried to scroll to an item that was outside the render length
|
|
811
832
|
if (!flatListRef.current) return;
|
|
833
|
+
const dataLength = flatListRef.current.props?.data?.length;
|
|
834
|
+
if (dataLength) {
|
|
835
|
+
tempDisablePaginationTrackersRef.current(dataLength);
|
|
836
|
+
}
|
|
812
837
|
// we don't know the actual size of all items but we can see the average, so scroll to the closest offset
|
|
813
838
|
flatListRef.current.scrollToOffset({
|
|
814
839
|
animated: false,
|
|
815
840
|
offset: info.averageItemLength * info.index,
|
|
816
841
|
});
|
|
817
|
-
const targetAgain = () => {
|
|
818
|
-
// in case the target message was cleared out
|
|
819
|
-
// the state being set again will trigger the highlight again
|
|
820
|
-
if (messageIdLastScrolledToRef.current) {
|
|
821
|
-
setTargetedMessage(messageIdLastScrolledToRef.current);
|
|
822
|
-
}
|
|
823
|
-
};
|
|
824
|
-
targetAgain();
|
|
825
842
|
// since we used only an average offset... we won't go to the center of the item yet
|
|
826
843
|
// with a little delay to wait for scroll to offset to complete, we can then scroll to the index
|
|
827
844
|
failScrollTimeoutId.current = setTimeout(() => {
|
|
828
845
|
try {
|
|
846
|
+
if (dataLength) {
|
|
847
|
+
tempDisablePaginationTrackersRef.current(dataLength);
|
|
848
|
+
}
|
|
829
849
|
flatListRef.current?.scrollToIndex({
|
|
830
850
|
animated: false,
|
|
831
851
|
index: info.index,
|
|
832
852
|
viewPosition: 0.5, // try to place message in the center of the screen
|
|
833
853
|
});
|
|
834
|
-
|
|
854
|
+
// in case the target message was cleared out
|
|
855
|
+
// the state being set again will trigger the highlight again
|
|
856
|
+
if (messageIdLastScrolledToRef.current) {
|
|
857
|
+
setTargetedMessage(messageIdLastScrolledToRef.current);
|
|
858
|
+
}
|
|
835
859
|
scrollToIndexFailedRetryCountRef.current = 0;
|
|
836
860
|
} catch (e) {
|
|
837
861
|
if (
|
|
@@ -866,6 +890,10 @@ const MessageListWithContext = <
|
|
|
866
890
|
if (indexOfParentInMessageList !== -1 && flatListRef.current) {
|
|
867
891
|
clearTimeout(failScrollTimeoutId.current);
|
|
868
892
|
scrollToIndexFailedRetryCountRef.current = 0;
|
|
893
|
+
// we are scrolling automatically to the message instead of user initiating it,
|
|
894
|
+
// so we don't need to load more older messages
|
|
895
|
+
tempDisablePaginationTrackersRef.current(messageList.length);
|
|
896
|
+
// now scroll to it
|
|
869
897
|
flatListRef.current.scrollToIndex({
|
|
870
898
|
animated: true,
|
|
871
899
|
index: indexOfParentInMessageList,
|
|
@@ -890,6 +918,7 @@ const MessageListWithContext = <
|
|
|
890
918
|
useEffect(() => {
|
|
891
919
|
scrollToDebounceTimeoutRef.current = setTimeout(() => {
|
|
892
920
|
if (initialScrollToFirstUnreadMessage) {
|
|
921
|
+
clearTimeout(initialScrollSettingTimeoutRef.current);
|
|
893
922
|
initialScrollSettingTimeoutRef.current = setTimeout(() => {
|
|
894
923
|
// small timeout to ensure that handleScroll is called after scrollToIndex to set this flag
|
|
895
924
|
setInitialScrollDone(true);
|
|
@@ -908,8 +937,14 @@ const MessageListWithContext = <
|
|
|
908
937
|
);
|
|
909
938
|
if (indexOfParentInMessageList !== -1 && flatListRef.current) {
|
|
910
939
|
// By a fresh scroll we should clear the retries for the previous failed scroll
|
|
940
|
+
clearTimeout(scrollToDebounceTimeoutRef.current);
|
|
911
941
|
clearTimeout(failScrollTimeoutId.current);
|
|
942
|
+
// we are scrolling automatically to the message instead of user initiating it,
|
|
943
|
+
// so we don't need to load more older messages
|
|
944
|
+
tempDisablePaginationTrackersRef.current(messageList.length);
|
|
945
|
+
// reset the retry count
|
|
912
946
|
scrollToIndexFailedRetryCountRef.current = 0;
|
|
947
|
+
// now scroll to it
|
|
913
948
|
flatListRef.current.scrollToIndex({
|
|
914
949
|
animated: false,
|
|
915
950
|
index: indexOfParentInMessageList,
|
|
@@ -76,7 +76,7 @@ const MessageActionListItemWithContext = <
|
|
|
76
76
|
testID={`${actionType}-list-item`}
|
|
77
77
|
>
|
|
78
78
|
<View style={messageActions.icon}>{icon}</View>
|
|
79
|
-
<Text style={[styles.titleStyle,
|
|
79
|
+
<Text style={[styles.titleStyle, { color: black }, titleStyle, messageActions.title]}>
|
|
80
80
|
{title}
|
|
81
81
|
</Text>
|
|
82
82
|
</Animated.View>
|
package/src/i18n/en.json
CHANGED
|
@@ -24,7 +24,7 @@
|
|
|
24
24
|
"File type not supported": "File type not supported",
|
|
25
25
|
"Flag": "Flag",
|
|
26
26
|
"Flag Message": "Flag Message",
|
|
27
|
-
"Flag action failed either due to a network issue or the message is already flagged": "Flag action failed either due to a network issue or the message is already flagged
|
|
27
|
+
"Flag action failed either due to a network issue or the message is already flagged": "Flag action failed either due to a network issue or the message is already flagged",
|
|
28
28
|
"How about sending your first message to a friend?": "How about sending your first message to a friend?",
|
|
29
29
|
"Instant Commands": "Instant Commands",
|
|
30
30
|
"Let's start chatting!": "Let's start chatting!",
|
package/src/i18n/fr.json
CHANGED
|
@@ -1,20 +1,20 @@
|
|
|
1
1
|
{
|
|
2
|
-
"1 Reply": "",
|
|
3
|
-
"1 Thread Reply": "
|
|
4
|
-
"Allow access to your Gallery": "",
|
|
5
|
-
"Allow camera access in device settings": "",
|
|
6
|
-
"Also send to channel": "",
|
|
7
|
-
"Are you sure you want to permanently delete this message?": "
|
|
8
|
-
"Block User": "
|
|
9
|
-
"Cancel": "
|
|
10
|
-
"Cannot Flag Message": "
|
|
11
|
-
"Copy Message": "
|
|
12
|
-
"Delete": "
|
|
13
|
-
"Delete Message": "
|
|
14
|
-
"Device camera is used to take photos or videos.": "",
|
|
15
|
-
"Do you want to send a copy of this message to a moderator for further investigation?": "
|
|
16
|
-
"Edit Message": "
|
|
17
|
-
"Editing Message": "",
|
|
2
|
+
"1 Reply": "1 Réponse",
|
|
3
|
+
"1 Thread Reply": "",
|
|
4
|
+
"Allow access to your Gallery": "Autoriser l'accès à votre galerie",
|
|
5
|
+
"Allow camera access in device settings": "Autoriser l'accès à la caméra dans les paramètres de l'appareil",
|
|
6
|
+
"Also send to channel": "Envoyer également à la chaîne",
|
|
7
|
+
"Are you sure you want to permanently delete this message?": "",
|
|
8
|
+
"Block User": "",
|
|
9
|
+
"Cancel": "",
|
|
10
|
+
"Cannot Flag Message": "",
|
|
11
|
+
"Copy Message": "",
|
|
12
|
+
"Delete": "",
|
|
13
|
+
"Delete Message": "",
|
|
14
|
+
"Device camera is used to take photos or videos.": "L'appareil photo de l'appareil est utilisé pour prendre des photos ou des vidéos.",
|
|
15
|
+
"Do you want to send a copy of this message to a moderator for further investigation?": "",
|
|
16
|
+
"Edit Message": "",
|
|
17
|
+
"Editing Message": "Édite un message",
|
|
18
18
|
"Emoji matching": "",
|
|
19
19
|
"Empty message...": "",
|
|
20
20
|
"Error loading": "",
|
|
@@ -22,55 +22,55 @@
|
|
|
22
22
|
"Error loading messages for this channel...": "",
|
|
23
23
|
"Error while loading, please reload/refresh": "",
|
|
24
24
|
"File type not supported": "Le type de fichier n'est pas pris en charge",
|
|
25
|
-
"Flag": "
|
|
26
|
-
"Flag Message": "
|
|
27
|
-
"Flag action failed either due to a network issue or the message is already flagged": "
|
|
25
|
+
"Flag": "",
|
|
26
|
+
"Flag Message": "",
|
|
27
|
+
"Flag action failed either due to a network issue or the message is already flagged": "",
|
|
28
28
|
"How about sending your first message to a friend?": "",
|
|
29
29
|
"Instant Commands": "",
|
|
30
30
|
"Let's start chatting!": "",
|
|
31
31
|
"Links are disabled": "Links are disabled",
|
|
32
|
-
"Loading channels...": "",
|
|
33
|
-
"Loading messages...": "",
|
|
34
|
-
"Loading...": "",
|
|
32
|
+
"Loading channels...": "Chargement des canaux...",
|
|
33
|
+
"Loading messages...": "Chargement des messages...",
|
|
34
|
+
"Loading...": "Chargement...",
|
|
35
35
|
"Maximum file size upload limit reached. Please upload a file below {{MAX_FILE_SIZE_TO_UPLOAD_IN_MB}} MB.": "Taille maximale de téléchargement de fichier atteinte. Veuillez télécharger un fichier inférieur à {{MAX_FILE_SIZE_TO_UPLOAD_IN_MB}} Mo.",
|
|
36
|
-
"Message Reactions": "
|
|
36
|
+
"Message Reactions": "",
|
|
37
37
|
"Message deleted": "",
|
|
38
|
-
"Message flagged": "
|
|
39
|
-
"Mute User": "
|
|
38
|
+
"Message flagged": "",
|
|
39
|
+
"Mute User": "",
|
|
40
40
|
"Not supported": "Non pris en charge",
|
|
41
41
|
"Nothing yet...": "",
|
|
42
|
-
"Ok": "
|
|
43
|
-
"Only visible to you": "",
|
|
44
|
-
"Open Settings": "",
|
|
42
|
+
"Ok": "",
|
|
43
|
+
"Only visible to you": "Seulement visible par vous",
|
|
44
|
+
"Open Settings": "Ouvrir les paramètres",
|
|
45
45
|
"Photo": "",
|
|
46
|
-
"Photos and Videos": "",
|
|
47
|
-
"Pin to Conversation": "
|
|
46
|
+
"Photos and Videos": "Photos et vidéos",
|
|
47
|
+
"Pin to Conversation": "",
|
|
48
48
|
"Pinned by": "Épinglé par",
|
|
49
|
-
"Please enable access to your photos and videos so you can share them.": "",
|
|
49
|
+
"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.",
|
|
50
50
|
"Please select a channel first": "Veuillez d'abord selectionnez un canal",
|
|
51
51
|
"Reconnecting...": "",
|
|
52
|
-
"Reply": "
|
|
52
|
+
"Reply": "",
|
|
53
53
|
"Reply to Message": "",
|
|
54
|
-
"Resend": "
|
|
55
|
-
"Search GIFs": "
|
|
56
|
-
"Select More Photos": "",
|
|
57
|
-
"Send a message": "
|
|
54
|
+
"Resend": "",
|
|
55
|
+
"Search GIFs": "",
|
|
56
|
+
"Select More Photos": "Sélectionner plus de photos",
|
|
57
|
+
"Send a message": "",
|
|
58
58
|
"Sending links is not allowed in this conversation": "Sending links is not allowed in this conversation",
|
|
59
|
-
"Slow mode ON": "
|
|
60
|
-
"The message has been reported to a moderator.": "
|
|
61
|
-
"Thread Reply": "
|
|
62
|
-
"Unblock User": "
|
|
63
|
-
"Unknown User": "",
|
|
64
|
-
"Unmute User": "
|
|
65
|
-
"Unpin from Conversation": "
|
|
59
|
+
"Slow mode ON": "",
|
|
60
|
+
"The message has been reported to a moderator.": "",
|
|
61
|
+
"Thread Reply": "",
|
|
62
|
+
"Unblock User": "",
|
|
63
|
+
"Unknown User": "Utilisateur inconnu",
|
|
64
|
+
"Unmute User": "",
|
|
65
|
+
"Unpin from Conversation": "",
|
|
66
66
|
"Unread Messages": "",
|
|
67
67
|
"Video": "",
|
|
68
68
|
"You": "",
|
|
69
|
-
"You can't send messages in this channel": "",
|
|
70
|
-
"{{ firstUser }} and {{ nonSelfUserLength }} more are typing": "",
|
|
71
|
-
"{{ index }} of {{ photoLength }}": "",
|
|
72
|
-
"{{ replyCount }} Replies": "",
|
|
73
|
-
"{{ replyCount }} Thread Replies": "
|
|
74
|
-
"{{ user }} is typing": "",
|
|
69
|
+
"You can't send messages in this channel": "You can't send messages in this channel",
|
|
70
|
+
"{{ firstUser }} and {{ nonSelfUserLength }} more are typing": "{{ firstUser }} et {{ nonSelfUserLength }} autres sont en train d'écrire",
|
|
71
|
+
"{{ index }} of {{ photoLength }}": "{{ index }} sur {{ photoLength }}",
|
|
72
|
+
"{{ replyCount }} Replies": "{{ replyCount }} Réponses",
|
|
73
|
+
"{{ replyCount }} Thread Replies": "",
|
|
74
|
+
"{{ user }} is typing": "{{ user }} est en train d'écrire",
|
|
75
75
|
"🏙 Attachment...": ""
|
|
76
76
|
}
|
package/src/i18n/hi.json
CHANGED
|
@@ -1,20 +1,20 @@
|
|
|
1
1
|
{
|
|
2
|
-
"1 Reply": "",
|
|
3
|
-
"1 Thread Reply": "
|
|
4
|
-
"Allow access to your Gallery": "",
|
|
5
|
-
"Allow camera access in device settings": "",
|
|
6
|
-
"Also send to channel": "",
|
|
7
|
-
"Are you sure you want to permanently delete this message?": "
|
|
8
|
-
"Block User": "
|
|
9
|
-
"Cancel": "
|
|
10
|
-
"Cannot Flag Message": "
|
|
11
|
-
"Copy Message": "
|
|
12
|
-
"Delete": "
|
|
13
|
-
"Delete Message": "
|
|
14
|
-
"Device camera is used to take photos or videos.": "",
|
|
15
|
-
"Do you want to send a copy of this message to a moderator for further investigation?": "
|
|
16
|
-
"Edit Message": "
|
|
17
|
-
"Editing Message": "",
|
|
2
|
+
"1 Reply": "1 रिप्लाई",
|
|
3
|
+
"1 Thread Reply": "",
|
|
4
|
+
"Allow access to your Gallery": "अपनी गैलरी तक पहुँचने की अनुमति दें",
|
|
5
|
+
"Allow camera access in device settings": "डिवाइस सेटिंग्स में कैमरा एक्सेस की अनुमति दें",
|
|
6
|
+
"Also send to channel": "चैनल को भी भेजें",
|
|
7
|
+
"Are you sure you want to permanently delete this message?": "",
|
|
8
|
+
"Block User": "",
|
|
9
|
+
"Cancel": "",
|
|
10
|
+
"Cannot Flag Message": "",
|
|
11
|
+
"Copy Message": "",
|
|
12
|
+
"Delete": "",
|
|
13
|
+
"Delete Message": "",
|
|
14
|
+
"Device camera is used to take photos or videos.": "डिवाइस कैमरे का उपयोग फ़ोटो या वीडियो लेने के लिए किया जाता है।",
|
|
15
|
+
"Do you want to send a copy of this message to a moderator for further investigation?": "",
|
|
16
|
+
"Edit Message": "",
|
|
17
|
+
"Editing Message": "मैसेज बदला जा रहा है",
|
|
18
18
|
"Emoji matching": "",
|
|
19
19
|
"Empty message...": "",
|
|
20
20
|
"Error loading": "",
|
|
@@ -22,55 +22,55 @@
|
|
|
22
22
|
"Error loading messages for this channel...": "",
|
|
23
23
|
"Error while loading, please reload/refresh": "",
|
|
24
24
|
"File type not supported": "फ़ाइल प्रकार समर्थित नहीं है",
|
|
25
|
-
"Flag": "
|
|
26
|
-
"Flag Message": "
|
|
27
|
-
"Flag action failed either due to a network issue or the message is already flagged": "
|
|
25
|
+
"Flag": "",
|
|
26
|
+
"Flag Message": "",
|
|
27
|
+
"Flag action failed either due to a network issue or the message is already flagged": "",
|
|
28
28
|
"How about sending your first message to a friend?": "",
|
|
29
29
|
"Instant Commands": "",
|
|
30
30
|
"Let's start chatting!": "",
|
|
31
31
|
"Links are disabled": "लिंक अक्षम हैं",
|
|
32
|
-
"Loading channels...": "",
|
|
33
|
-
"Loading messages...": "",
|
|
34
|
-
"Loading...": "",
|
|
32
|
+
"Loading channels...": "चैनल लोड हो रहे हैं...",
|
|
33
|
+
"Loading messages...": "मेसेजस लोड हो रहे हैं...",
|
|
34
|
+
"Loading...": "लोड हो रहा है...",
|
|
35
35
|
"Maximum file size upload limit reached. Please upload a file below {{MAX_FILE_SIZE_TO_UPLOAD_IN_MB}} MB.": "अधिकतम फ़ाइल आकार अपलोड सीमा पूरी हो गई। कृपया {{MAX_FILE_SIZE_TO_UPLOAD_IN_MB}} एमबी से नीचे की फ़ाइल अपलोड करें।",
|
|
36
|
-
"Message Reactions": "
|
|
36
|
+
"Message Reactions": "",
|
|
37
37
|
"Message deleted": "",
|
|
38
|
-
"Message flagged": "
|
|
39
|
-
"Mute User": "
|
|
38
|
+
"Message flagged": "",
|
|
39
|
+
"Mute User": "",
|
|
40
40
|
"Not supported": "समर्थित नहीं",
|
|
41
41
|
"Nothing yet...": "",
|
|
42
|
-
"Ok": "
|
|
43
|
-
"Only visible to you": "",
|
|
44
|
-
"Open Settings": "",
|
|
42
|
+
"Ok": "",
|
|
43
|
+
"Only visible to you": "केवल आपको दिखाई दे रहा है",
|
|
44
|
+
"Open Settings": "सेटिंग्स खोलें",
|
|
45
45
|
"Photo": "",
|
|
46
|
-
"Photos and Videos": "",
|
|
47
|
-
"Pin to Conversation": "
|
|
46
|
+
"Photos and Videos": "तस्वीरें और वीडियों",
|
|
47
|
+
"Pin to Conversation": "",
|
|
48
48
|
"Pinned by": "द्वारा पिन किया गया",
|
|
49
|
-
"Please enable access to your photos and videos so you can share them.": "",
|
|
49
|
+
"Please enable access to your photos and videos so you can share them.": "कृपया अपनी फ़ोटो और वीडियो तक पहुंच सक्षम करें ताकि आप उन्हें साझा कर सकें।",
|
|
50
50
|
"Please select a channel first": "कृपया पहले एक चैनल चुनें",
|
|
51
51
|
"Reconnecting...": "",
|
|
52
|
-
"Reply": "
|
|
52
|
+
"Reply": "",
|
|
53
53
|
"Reply to Message": "",
|
|
54
|
-
"Resend": "
|
|
55
|
-
"Search GIFs": "
|
|
56
|
-
"Select More Photos": "",
|
|
57
|
-
"Send a message": "
|
|
54
|
+
"Resend": "",
|
|
55
|
+
"Search GIFs": "",
|
|
56
|
+
"Select More Photos": "अधिक फ़ोटो चुनें",
|
|
57
|
+
"Send a message": "",
|
|
58
58
|
"Sending links is not allowed in this conversation": "इस बातचीत में लिंक भेजने की अनुमति नहीं है",
|
|
59
|
-
"Slow mode ON": "
|
|
60
|
-
"The message has been reported to a moderator.": "
|
|
61
|
-
"Thread Reply": "
|
|
62
|
-
"Unblock User": "
|
|
63
|
-
"Unknown User": "",
|
|
64
|
-
"Unmute User": "
|
|
65
|
-
"Unpin from Conversation": "
|
|
59
|
+
"Slow mode ON": "",
|
|
60
|
+
"The message has been reported to a moderator.": "",
|
|
61
|
+
"Thread Reply": "",
|
|
62
|
+
"Unblock User": "",
|
|
63
|
+
"Unknown User": "अज्ञात उपयोगकर्ता",
|
|
64
|
+
"Unmute User": "",
|
|
65
|
+
"Unpin from Conversation": "",
|
|
66
66
|
"Unread Messages": "",
|
|
67
67
|
"Video": "",
|
|
68
68
|
"You": "",
|
|
69
|
-
"You can't send messages in this channel": "",
|
|
70
|
-
"{{ firstUser }} and {{ nonSelfUserLength }} more are typing": "",
|
|
71
|
-
"{{ index }} of {{ photoLength }}": "",
|
|
72
|
-
"{{ replyCount }} Replies": "",
|
|
73
|
-
"{{ replyCount }} Thread Replies": "
|
|
74
|
-
"{{ user }} is typing": "",
|
|
69
|
+
"You can't send messages in this channel": "आप इस चैनल में संदेश नहीं भेज सकते",
|
|
70
|
+
"{{ firstUser }} and {{ nonSelfUserLength }} more are typing": "{{ firstUser }} और {{ nonSelfUserLength }} अधिक टाइप कर रहे हैं",
|
|
71
|
+
"{{ index }} of {{ photoLength }}": "{{ index }} / {{ photoLength }}",
|
|
72
|
+
"{{ replyCount }} Replies": "{{ replyCount }} रिप्लाई",
|
|
73
|
+
"{{ replyCount }} Thread Replies": "",
|
|
74
|
+
"{{ user }} is typing": "{{ user }} टाइप कर रहा है",
|
|
75
75
|
"🏙 Attachment...": ""
|
|
76
76
|
}
|
package/src/i18n/it.json
CHANGED
|
@@ -1,20 +1,20 @@
|
|
|
1
1
|
{
|
|
2
|
-
"1 Reply": "",
|
|
3
|
-
"1 Thread Reply": "
|
|
4
|
-
"Allow access to your Gallery": "",
|
|
5
|
-
"Allow camera access in device settings": "",
|
|
6
|
-
"Also send to channel": "",
|
|
7
|
-
"Are you sure you want to permanently delete this message?": "
|
|
8
|
-
"Block User": "
|
|
9
|
-
"Cancel": "
|
|
10
|
-
"Cannot Flag Message": "
|
|
11
|
-
"Copy Message": "
|
|
12
|
-
"Delete": "
|
|
13
|
-
"Delete Message": "
|
|
14
|
-
"Device camera is used to take photos or videos.": "",
|
|
15
|
-
"Do you want to send a copy of this message to a moderator for further investigation?": "
|
|
16
|
-
"Edit Message": "
|
|
17
|
-
"Editing Message": "",
|
|
2
|
+
"1 Reply": "1 Risposta",
|
|
3
|
+
"1 Thread Reply": "",
|
|
4
|
+
"Allow access to your Gallery": "Consenti l'accesso alla tua galleria",
|
|
5
|
+
"Allow camera access in device settings": "Consenti l'accesso alla fotocamera nelle impostazioni del dispositivo",
|
|
6
|
+
"Also send to channel": "Invia anche al canale",
|
|
7
|
+
"Are you sure you want to permanently delete this message?": "",
|
|
8
|
+
"Block User": "",
|
|
9
|
+
"Cancel": "",
|
|
10
|
+
"Cannot Flag Message": "",
|
|
11
|
+
"Copy Message": "",
|
|
12
|
+
"Delete": "",
|
|
13
|
+
"Delete Message": "",
|
|
14
|
+
"Device camera is used to take photos or videos.": "La fotocamera del dispositivo viene utilizzata per scattare foto o video.",
|
|
15
|
+
"Do you want to send a copy of this message to a moderator for further investigation?": "",
|
|
16
|
+
"Edit Message": "",
|
|
17
|
+
"Editing Message": "Modificando il Messaggio",
|
|
18
18
|
"Emoji matching": "",
|
|
19
19
|
"Empty message...": "",
|
|
20
20
|
"Error loading": "",
|
|
@@ -22,55 +22,55 @@
|
|
|
22
22
|
"Error loading messages for this channel...": "",
|
|
23
23
|
"Error while loading, please reload/refresh": "",
|
|
24
24
|
"File type not supported": "Tipo di file non supportato",
|
|
25
|
-
"Flag": "
|
|
26
|
-
"Flag Message": "
|
|
27
|
-
"Flag action failed either due to a network issue or the message is already flagged": "
|
|
25
|
+
"Flag": "",
|
|
26
|
+
"Flag Message": "",
|
|
27
|
+
"Flag action failed either due to a network issue or the message is already flagged": "",
|
|
28
28
|
"How about sending your first message to a friend?": "",
|
|
29
29
|
"Instant Commands": "",
|
|
30
30
|
"Let's start chatting!": "",
|
|
31
31
|
"Links are disabled": "I link sono disabilitati",
|
|
32
|
-
"Loading channels...": "",
|
|
33
|
-
"Loading messages...": "",
|
|
34
|
-
"Loading...": "",
|
|
32
|
+
"Loading channels...": "Caricamento canali in corso...",
|
|
33
|
+
"Loading messages...": "Caricamento messaggi...",
|
|
34
|
+
"Loading...": "Caricamento...",
|
|
35
35
|
"Maximum file size upload limit reached. Please upload a file below {{MAX_FILE_SIZE_TO_UPLOAD_IN_MB}} MB.": "È stato raggiunto il limite massimo di caricamento delle dimensioni del file. Carica un file inferiore a {{MAX_FILE_SIZE_TO_UPLOAD_IN_MB}} MB.",
|
|
36
|
-
"Message Reactions": "
|
|
36
|
+
"Message Reactions": "",
|
|
37
37
|
"Message deleted": "",
|
|
38
|
-
"Message flagged": "
|
|
39
|
-
"Mute User": "
|
|
38
|
+
"Message flagged": "",
|
|
39
|
+
"Mute User": "",
|
|
40
40
|
"Not supported": "non supportato",
|
|
41
41
|
"Nothing yet...": "",
|
|
42
|
-
"Ok": "
|
|
43
|
-
"Only visible to you": "",
|
|
44
|
-
"Open Settings": "",
|
|
42
|
+
"Ok": "",
|
|
43
|
+
"Only visible to you": "Visibile solo a te",
|
|
44
|
+
"Open Settings": "Apri Impostazioni",
|
|
45
45
|
"Photo": "",
|
|
46
|
-
"Photos and Videos": "",
|
|
47
|
-
"Pin to Conversation": "
|
|
46
|
+
"Photos and Videos": "Foto e Video",
|
|
47
|
+
"Pin to Conversation": "",
|
|
48
48
|
"Pinned by": "Fissato da",
|
|
49
|
-
"Please enable access to your photos and videos so you can share them.": "",
|
|
49
|
+
"Please enable access to your photos and videos so you can share them.": "Abilita l'accesso alle tue foto e ai tuoi video in modo da poterli condividere.",
|
|
50
50
|
"Please select a channel first": "Seleziona un canale",
|
|
51
51
|
"Reconnecting...": "",
|
|
52
|
-
"Reply": "
|
|
52
|
+
"Reply": "",
|
|
53
53
|
"Reply to Message": "",
|
|
54
|
-
"Resend": "
|
|
55
|
-
"Search GIFs": "
|
|
56
|
-
"Select More Photos": "",
|
|
57
|
-
"Send a message": "
|
|
54
|
+
"Resend": "",
|
|
55
|
+
"Search GIFs": "",
|
|
56
|
+
"Select More Photos": "Seleziona Altre foto",
|
|
57
|
+
"Send a message": "",
|
|
58
58
|
"Sending links is not allowed in this conversation": "L'invio di link non è consentito in questa conversazione",
|
|
59
|
-
"Slow mode ON": "
|
|
60
|
-
"The message has been reported to a moderator.": "
|
|
61
|
-
"Thread Reply": "
|
|
62
|
-
"Unblock User": "
|
|
63
|
-
"Unknown User": "",
|
|
64
|
-
"Unmute User": "
|
|
65
|
-
"Unpin from Conversation": "
|
|
59
|
+
"Slow mode ON": "",
|
|
60
|
+
"The message has been reported to a moderator.": "",
|
|
61
|
+
"Thread Reply": "",
|
|
62
|
+
"Unblock User": "",
|
|
63
|
+
"Unknown User": "Utente sconosciuto",
|
|
64
|
+
"Unmute User": "",
|
|
65
|
+
"Unpin from Conversation": "",
|
|
66
66
|
"Unread Messages": "",
|
|
67
67
|
"Video": "",
|
|
68
68
|
"You": "",
|
|
69
|
-
"You can't send messages in this channel": "",
|
|
70
|
-
"{{ firstUser }} and {{ nonSelfUserLength }} more are typing": "",
|
|
71
|
-
"{{ index }} of {{ photoLength }}": "",
|
|
72
|
-
"{{ replyCount }} Replies": "",
|
|
73
|
-
"{{ replyCount }} Thread Replies": "
|
|
74
|
-
"{{ user }} is typing": "",
|
|
69
|
+
"You can't send messages in this channel": "Non puoi inviare messaggi in questo canale",
|
|
70
|
+
"{{ firstUser }} and {{ nonSelfUserLength }} more are typing": "{{ firstUser }} e altri {{ nonSelfUserLength }} stanno scrivendo",
|
|
71
|
+
"{{ index }} of {{ photoLength }}": "{{ index }} di {{ photoLength }}",
|
|
72
|
+
"{{ replyCount }} Replies": "{{ replyCount }} Risposte",
|
|
73
|
+
"{{ replyCount }} Thread Replies": "",
|
|
74
|
+
"{{ user }} is typing": "{{ user }} sta scrivendo",
|
|
75
75
|
"🏙 Attachment...": ""
|
|
76
76
|
}
|