stream-chat-react-native-core 5.28.0-beta.3 → 5.28.0-beta.4

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.
Files changed (57) hide show
  1. package/lib/commonjs/components/MessageInput/hooks/useCountdown.js.map +1 -1
  2. package/lib/commonjs/components/MessageList/MessageList.js.map +1 -1
  3. package/lib/commonjs/contexts/overlayContext/OverlayProvider.js.map +1 -1
  4. package/lib/commonjs/i18n/es.json +11 -11
  5. package/lib/commonjs/i18n/fr.json +11 -11
  6. package/lib/commonjs/i18n/he.json +11 -11
  7. package/lib/commonjs/i18n/hi.json +11 -11
  8. package/lib/commonjs/i18n/it.json +11 -11
  9. package/lib/commonjs/i18n/ja.json +11 -11
  10. package/lib/commonjs/i18n/ko.json +11 -11
  11. package/lib/commonjs/i18n/nl.json +11 -11
  12. package/lib/commonjs/i18n/pt-BR.json +8 -8
  13. package/lib/commonjs/i18n/ru.json +11 -11
  14. package/lib/commonjs/i18n/tr.json +8 -8
  15. package/lib/commonjs/version.json +1 -1
  16. package/lib/module/components/MessageInput/hooks/useCountdown.js.map +1 -1
  17. package/lib/module/components/MessageList/MessageList.js.map +1 -1
  18. package/lib/module/contexts/overlayContext/OverlayProvider.js.map +1 -1
  19. package/lib/module/i18n/es.json +11 -11
  20. package/lib/module/i18n/fr.json +11 -11
  21. package/lib/module/i18n/he.json +11 -11
  22. package/lib/module/i18n/hi.json +11 -11
  23. package/lib/module/i18n/it.json +11 -11
  24. package/lib/module/i18n/ja.json +11 -11
  25. package/lib/module/i18n/ko.json +11 -11
  26. package/lib/module/i18n/nl.json +11 -11
  27. package/lib/module/i18n/pt-BR.json +8 -8
  28. package/lib/module/i18n/ru.json +11 -11
  29. package/lib/module/i18n/tr.json +8 -8
  30. package/lib/module/version.json +1 -1
  31. package/lib/typescript/i18n/es.json +11 -11
  32. package/lib/typescript/i18n/fr.json +11 -11
  33. package/lib/typescript/i18n/he.json +11 -11
  34. package/lib/typescript/i18n/hi.json +11 -11
  35. package/lib/typescript/i18n/it.json +11 -11
  36. package/lib/typescript/i18n/ja.json +11 -11
  37. package/lib/typescript/i18n/ko.json +11 -11
  38. package/lib/typescript/i18n/nl.json +11 -11
  39. package/lib/typescript/i18n/pt-BR.json +8 -8
  40. package/lib/typescript/i18n/ru.json +11 -11
  41. package/lib/typescript/i18n/tr.json +8 -8
  42. package/package.json +1 -1
  43. package/src/components/MessageInput/hooks/useCountdown.ts +1 -1
  44. package/src/components/MessageList/MessageList.tsx +4 -4
  45. package/src/contexts/overlayContext/OverlayProvider.tsx +1 -1
  46. package/src/i18n/es.json +11 -11
  47. package/src/i18n/fr.json +11 -11
  48. package/src/i18n/he.json +11 -11
  49. package/src/i18n/hi.json +11 -11
  50. package/src/i18n/it.json +11 -11
  51. package/src/i18n/ja.json +11 -11
  52. package/src/i18n/ko.json +11 -11
  53. package/src/i18n/nl.json +11 -11
  54. package/src/i18n/pt-BR.json +8 -8
  55. package/src/i18n/ru.json +11 -11
  56. package/src/i18n/tr.json +8 -8
  57. package/src/version.json +1 -1
@@ -352,17 +352,17 @@ const MessageListWithContext = <
352
352
  /**
353
353
  * The timeout id used to debounce our scrollToIndex calls on messageList updates
354
354
  */
355
- const scrollToDebounceTimeoutRef = useRef<NodeJS.Timeout>();
355
+ const scrollToDebounceTimeoutRef = useRef<ReturnType<typeof setTimeout>>();
356
356
 
357
357
  /**
358
358
  * The timeout id used to lazier load the initial scroll set flag
359
359
  */
360
- const initialScrollSettingTimeoutRef = useRef<NodeJS.Timeout>();
360
+ const initialScrollSettingTimeoutRef = useRef<ReturnType<typeof setTimeout>>();
361
361
 
362
362
  /**
363
363
  * The timeout id used to temporarily load the initial scroll set flag
364
364
  */
365
- const onScrollEventTimeoutRef = useRef<NodeJS.Timeout>();
365
+ const onScrollEventTimeoutRef = useRef<ReturnType<typeof setTimeout>>();
366
366
 
367
367
  /**
368
368
  * Last messageID that was scrolled to after loading a new message list,
@@ -861,7 +861,7 @@ const MessageListWithContext = <
861
861
  };
862
862
 
863
863
  const scrollToIndexFailedRetryCountRef = useRef<number>(0);
864
- const failScrollTimeoutId = useRef<NodeJS.Timeout>();
864
+ const failScrollTimeoutId = useRef<ReturnType<typeof setTimeout>>();
865
865
  const onScrollToIndexFailedRef = useRef<
866
866
  FlatListProps<MessageType<StreamChatGenerics>>['onScrollToIndexFailed']
867
867
  >((info) => {
@@ -63,7 +63,7 @@ export const OverlayProvider = <
63
63
  >(
64
64
  props: PropsWithChildren<OverlayProviderProps<StreamChatGenerics>>,
65
65
  ) => {
66
- const bottomSheetCloseTimeoutRef = useRef<NodeJS.Timeout>();
66
+ const bottomSheetCloseTimeoutRef = useRef<ReturnType<typeof setTimeout>>();
67
67
  const {
68
68
  AttachmentPickerBottomSheetHandle = DefaultAttachmentPickerBottomSheetHandle,
69
69
  attachmentPickerBottomSheetHandleHeight,
package/src/i18n/es.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "1 Reply": "",
3
- "1 Thread Reply": "",
3
+ "1 Thread Reply": "1 respuesta de hilo",
4
4
  "Allow access to your Gallery": "",
5
5
  "Allow camera access in device settings": "",
6
6
  "Also send to channel": "",
@@ -16,14 +16,14 @@
16
16
  "Device camera is used to take photos or videos.": "",
17
17
  "Do you want to send a copy of this message to a moderator for further investigation?": "",
18
18
  "Edit Message": "",
19
- "Editing Message": "",
19
+ "Editing Message": "Editando mensaje",
20
20
  "Emoji matching": "",
21
21
  "Empty message...": "",
22
22
  "Error loading": "",
23
23
  "Error loading channel list...": "",
24
24
  "Error loading messages for this channel...": "",
25
25
  "Error while loading, please reload/refresh": "",
26
- "File type not supported": "Tipo de archivo no admitido",
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": "",
@@ -31,15 +31,15 @@
31
31
  "Instant Commands": "",
32
32
  "Let's start chatting!": "",
33
33
  "Links are disabled": "",
34
- "Loading channels...": "Cargando canales...",
35
- "Loading messages...": "Cargando mensajes...",
36
- "Loading...": "Cargando...",
34
+ "Loading channels...": "",
35
+ "Loading messages...": "",
36
+ "Loading...": "",
37
37
  "Maximum file size upload limit reached. Please upload a file below {{MAX_FILE_SIZE_TO_UPLOAD_IN_MB}} MB.": "",
38
38
  "Message Reactions": "",
39
39
  "Message deleted": "Mensaje eliminado",
40
40
  "Message flagged": "",
41
41
  "Mute User": "",
42
- "Not supported": "No admitido",
42
+ "Not supported": "",
43
43
  "Nothing yet...": "",
44
44
  "Ok": "",
45
45
  "Only visible to you": "",
@@ -52,7 +52,7 @@
52
52
  "Please select a channel first": "",
53
53
  "Reconnecting...": "Reconectando...",
54
54
  "Reply": "",
55
- "Reply to Message": "",
55
+ "Reply to Message": "Responder al mensaje",
56
56
  "Resend": "",
57
57
  "Search GIFs": "",
58
58
  "Select More Photos": "",
@@ -66,14 +66,14 @@
66
66
  "Unknown User": "",
67
67
  "Unmute User": "",
68
68
  "Unpin from Conversation": "",
69
- "Unread Messages": "",
69
+ "Unread Messages": "Mensajes no leídos",
70
70
  "Video": "Video",
71
- "You": "",
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 }}": "",
75
75
  "{{ replyCount }} Replies": "",
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,6 +1,6 @@
1
1
  {
2
2
  "1 Reply": "",
3
- "1 Thread Reply": "",
3
+ "1 Thread Reply": "Réponse à 1 fil",
4
4
  "Allow access to your Gallery": "",
5
5
  "Allow camera access in device settings": "",
6
6
  "Also send to channel": "",
@@ -16,14 +16,14 @@
16
16
  "Device camera is used to take photos or videos.": "",
17
17
  "Do you want to send a copy of this message to a moderator for further investigation?": "",
18
18
  "Edit Message": "",
19
- "Editing Message": "",
19
+ "Editing Message": "Édite un message",
20
20
  "Emoji matching": "",
21
21
  "Empty message...": "",
22
22
  "Error loading": "",
23
23
  "Error loading channel list...": "",
24
24
  "Error loading messages for this channel...": "",
25
25
  "Error while loading, please reload/refresh": "",
26
- "File type not supported": "Le type de fichier n'est pas pris en charge",
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": "",
@@ -31,15 +31,15 @@
31
31
  "Instant Commands": "",
32
32
  "Let's start chatting!": "",
33
33
  "Links are disabled": "",
34
- "Loading channels...": "Chargement des canaux...",
35
- "Loading messages...": "Chargement des messages...",
36
- "Loading...": "Chargement...",
34
+ "Loading channels...": "",
35
+ "Loading messages...": "",
36
+ "Loading...": "",
37
37
  "Maximum file size upload limit reached. Please upload a file below {{MAX_FILE_SIZE_TO_UPLOAD_IN_MB}} MB.": "",
38
38
  "Message Reactions": "",
39
39
  "Message deleted": "Message supprimé",
40
40
  "Message flagged": "",
41
41
  "Mute User": "",
42
- "Not supported": "Non pris en charge",
42
+ "Not supported": "",
43
43
  "Nothing yet...": "",
44
44
  "Ok": "",
45
45
  "Only visible to you": "",
@@ -52,7 +52,7 @@
52
52
  "Please select a channel first": "",
53
53
  "Reconnecting...": "Se Reconnecter...",
54
54
  "Reply": "",
55
- "Reply to Message": "",
55
+ "Reply to Message": "Répondre au message",
56
56
  "Resend": "",
57
57
  "Search GIFs": "",
58
58
  "Select More Photos": "",
@@ -66,14 +66,14 @@
66
66
  "Unknown User": "",
67
67
  "Unmute User": "",
68
68
  "Unpin from Conversation": "",
69
- "Unread Messages": "",
69
+ "Unread Messages": "Messages non lus",
70
70
  "Video": "Vidéo",
71
- "You": "Toi",
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 }}": "",
75
75
  "{{ replyCount }} Replies": "",
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,6 +1,6 @@
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": "",
@@ -16,14 +16,14 @@
16
16
  "Device camera is used to take photos or videos.": "",
17
17
  "Do you want to send a copy of this message to a moderator for further investigation?": "",
18
18
  "Edit Message": "",
19
- "Editing Message": "",
19
+ "Editing Message": "הודעה בעריכה",
20
20
  "Emoji matching": "",
21
21
  "Empty message...": "",
22
22
  "Error loading": "",
23
23
  "Error loading channel list...": "",
24
24
  "Error loading messages for this channel...": "",
25
25
  "Error while loading, please reload/refresh": "",
26
- "File type not supported": "סוג הקובץ אינו נתמך",
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": "",
@@ -31,15 +31,15 @@
31
31
  "Instant Commands": "",
32
32
  "Let's start chatting!": "",
33
33
  "Links are disabled": "",
34
- "Loading channels...": "השיחות בטעינה...",
35
- "Loading messages...": "ההודעות בטעינה..",
36
- "Loading...": "טוען...",
34
+ "Loading channels...": "",
35
+ "Loading messages...": "",
36
+ "Loading...": "",
37
37
  "Maximum file size upload limit reached. Please upload a file below {{MAX_FILE_SIZE_TO_UPLOAD_IN_MB}} MB.": "",
38
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,7 +52,7 @@
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
57
  "Search GIFs": "",
58
58
  "Select More Photos": "",
@@ -66,14 +66,14 @@
66
66
  "Unknown User": "",
67
67
  "Unmute User": "",
68
68
  "Unpin from Conversation": "",
69
- "Unread Messages": "",
69
+ "Unread Messages": "הודעות שטרם נקרו",
70
70
  "Video": "וִידֵאוֹ",
71
- "You": "את/ה",
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 }}": "",
75
75
  "{{ replyCount }} Replies": "",
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,6 +1,6 @@
1
1
  {
2
2
  "1 Reply": "",
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": "",
@@ -16,14 +16,14 @@
16
16
  "Device camera is used to take photos or videos.": "",
17
17
  "Do you want to send a copy of this message to a moderator for further investigation?": "",
18
18
  "Edit Message": "",
19
- "Editing Message": "",
19
+ "Editing Message": "मैसेज बदला जा रहा है",
20
20
  "Emoji matching": "",
21
21
  "Empty message...": "",
22
22
  "Error loading": "",
23
23
  "Error loading channel list...": "",
24
24
  "Error loading messages for this channel...": "",
25
25
  "Error while loading, please reload/refresh": "",
26
- "File type not supported": "फ़ाइल प्रकार समर्थित नहीं है",
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": "",
@@ -31,15 +31,15 @@
31
31
  "Instant Commands": "",
32
32
  "Let's start chatting!": "",
33
33
  "Links are disabled": "",
34
- "Loading channels...": "चैनल लोड हो रहे हैं...",
35
- "Loading messages...": "मेसेजस लोड हो रहे हैं...",
36
- "Loading...": "लोड हो रहा है...",
34
+ "Loading channels...": "",
35
+ "Loading messages...": "",
36
+ "Loading...": "",
37
37
  "Maximum file size upload limit reached. Please upload a file below {{MAX_FILE_SIZE_TO_UPLOAD_IN_MB}} MB.": "",
38
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,7 +52,7 @@
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
57
  "Search GIFs": "",
58
58
  "Select More Photos": "",
@@ -66,14 +66,14 @@
66
66
  "Unknown User": "",
67
67
  "Unmute User": "",
68
68
  "Unpin from Conversation": "",
69
- "Unread Messages": "",
69
+ "Unread Messages": "अपठित संदेश",
70
70
  "Video": "वीडियो",
71
- "You": "आप",
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 }}": "",
75
75
  "{{ replyCount }} Replies": "",
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,6 +1,6 @@
1
1
  {
2
2
  "1 Reply": "",
3
- "1 Thread Reply": "",
3
+ "1 Thread Reply": "1 Risposta alla Discussione",
4
4
  "Allow access to your Gallery": "",
5
5
  "Allow camera access in device settings": "",
6
6
  "Also send to channel": "",
@@ -16,14 +16,14 @@
16
16
  "Device camera is used to take photos or videos.": "",
17
17
  "Do you want to send a copy of this message to a moderator for further investigation?": "",
18
18
  "Edit Message": "",
19
- "Editing Message": "",
19
+ "Editing Message": "Modificando il Messaggio",
20
20
  "Emoji matching": "",
21
21
  "Empty message...": "",
22
22
  "Error loading": "",
23
23
  "Error loading channel list...": "",
24
24
  "Error loading messages for this channel...": "",
25
25
  "Error while loading, please reload/refresh": "",
26
- "File type not supported": "Tipo di file non supportato",
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": "",
@@ -31,15 +31,15 @@
31
31
  "Instant Commands": "",
32
32
  "Let's start chatting!": "",
33
33
  "Links are disabled": "",
34
- "Loading channels...": "Caricamento canali in corso...",
35
- "Loading messages...": "Caricamento messaggi...",
36
- "Loading...": "Caricamento...",
34
+ "Loading channels...": "",
35
+ "Loading messages...": "",
36
+ "Loading...": "",
37
37
  "Maximum file size upload limit reached. Please upload a file below {{MAX_FILE_SIZE_TO_UPLOAD_IN_MB}} MB.": "",
38
38
  "Message Reactions": "",
39
39
  "Message deleted": "Messaggio cancellato",
40
40
  "Message flagged": "",
41
41
  "Mute User": "",
42
- "Not supported": "non supportato",
42
+ "Not supported": "",
43
43
  "Nothing yet...": "",
44
44
  "Ok": "",
45
45
  "Only visible to you": "",
@@ -52,7 +52,7 @@
52
52
  "Please select a channel first": "",
53
53
  "Reconnecting...": "Ricollegarsi...",
54
54
  "Reply": "",
55
- "Reply to Message": "",
55
+ "Reply to Message": "Rispondi al messaggio",
56
56
  "Resend": "",
57
57
  "Search GIFs": "",
58
58
  "Select More Photos": "",
@@ -66,14 +66,14 @@
66
66
  "Unknown User": "",
67
67
  "Unmute User": "",
68
68
  "Unpin from Conversation": "",
69
- "Unread Messages": "",
69
+ "Unread Messages": "Messaggi non letti",
70
70
  "Video": "Video",
71
- "You": "Tu",
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 }}": "",
75
75
  "{{ replyCount }} Replies": "",
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,6 +1,6 @@
1
1
  {
2
2
  "1 Reply": "",
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": "",
@@ -16,14 +16,14 @@
16
16
  "Device camera is used to take photos or videos.": "",
17
17
  "Do you want to send a copy of this message to a moderator for further investigation?": "",
18
18
  "Edit Message": "",
19
- "Editing Message": "",
19
+ "Editing Message": "メッセージを編集中",
20
20
  "Emoji matching": "",
21
21
  "Empty message...": "",
22
22
  "Error loading": "",
23
23
  "Error loading channel list...": "",
24
24
  "Error loading messages for this channel...": "",
25
25
  "Error while loading, please reload/refresh": "",
26
- "File type not supported": "サポートされていないファイルです",
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": "",
@@ -31,15 +31,15 @@
31
31
  "Instant Commands": "",
32
32
  "Let's start chatting!": "",
33
33
  "Links are disabled": "",
34
- "Loading channels...": "チャネルを読み込み中。。。",
35
- "Loading messages...": "メッセージを読み込み中。。。",
36
- "Loading...": "読み込み中。。。",
34
+ "Loading channels...": "",
35
+ "Loading messages...": "",
36
+ "Loading...": "",
37
37
  "Maximum file size upload limit reached. Please upload a file below {{MAX_FILE_SIZE_TO_UPLOAD_IN_MB}} MB.": "",
38
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,7 +52,7 @@
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
57
  "Search GIFs": "",
58
58
  "Select More Photos": "",
@@ -66,14 +66,14 @@
66
66
  "Unknown User": "",
67
67
  "Unmute User": "",
68
68
  "Unpin from Conversation": "",
69
- "Unread Messages": "",
69
+ "Unread Messages": "未読メッセージ",
70
70
  "Video": "ビデオ",
71
- "You": "あなた",
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 }}": "",
75
75
  "{{ replyCount }} Replies": "",
76
- "{{ replyCount }} Thread Replies": "",
76
+ "{{ replyCount }} Thread Replies": "{{ replyCount }}件のスレッド返信",
77
77
  "{{ user }} is typing": "",
78
78
  "🏙 Attachment...": ""
79
79
  }
package/src/i18n/ko.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "1 Reply": "",
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": "",
@@ -16,14 +16,14 @@
16
16
  "Device camera is used to take photos or videos.": "",
17
17
  "Do you want to send a copy of this message to a moderator for further investigation?": "",
18
18
  "Edit Message": "",
19
- "Editing Message": "",
19
+ "Editing Message": "메시지 편집중",
20
20
  "Emoji matching": "",
21
21
  "Empty message...": "",
22
22
  "Error loading": "",
23
23
  "Error loading channel list...": "",
24
24
  "Error loading messages for this channel...": "",
25
25
  "Error while loading, please reload/refresh": "",
26
- "File type not supported": "지원하지 않는 파일입니다.",
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": "",
@@ -31,15 +31,15 @@
31
31
  "Instant Commands": "",
32
32
  "Let's start chatting!": "",
33
33
  "Links are disabled": "",
34
- "Loading channels...": "채널을 로딩 중...",
35
- "Loading messages...": "메시지를 로딩 중...",
36
- "Loading...": "로딩 중...",
34
+ "Loading channels...": "",
35
+ "Loading messages...": "",
36
+ "Loading...": "",
37
37
  "Maximum file size upload limit reached. Please upload a file below {{MAX_FILE_SIZE_TO_UPLOAD_IN_MB}} MB.": "",
38
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,7 +52,7 @@
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
57
  "Search GIFs": "",
58
58
  "Select More Photos": "",
@@ -66,14 +66,14 @@
66
66
  "Unknown User": "",
67
67
  "Unmute User": "",
68
68
  "Unpin from Conversation": "",
69
- "Unread Messages": "",
69
+ "Unread Messages": "읽지 않은 메시지",
70
70
  "Video": "동영상",
71
- "You": "당신",
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 }}": "",
75
75
  "{{ replyCount }} Replies": "",
76
- "{{ replyCount }} Thread Replies": "",
76
+ "{{ replyCount }} Thread Replies": "{{ replyCount }} 스레드 답글",
77
77
  "{{ user }} is typing": "",
78
78
  "🏙 Attachment...": ""
79
79
  }
package/src/i18n/nl.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "1 Reply": "",
3
- "1 Thread Reply": "",
3
+ "1 Thread Reply": "1 thread antwoord",
4
4
  "Allow access to your Gallery": "",
5
5
  "Allow camera access in device settings": "",
6
6
  "Also send to channel": "",
@@ -16,14 +16,14 @@
16
16
  "Device camera is used to take photos or videos.": "",
17
17
  "Do you want to send a copy of this message to a moderator for further investigation?": "",
18
18
  "Edit Message": "",
19
- "Editing Message": "",
19
+ "Editing Message": "Bericht aanpassen",
20
20
  "Emoji matching": "",
21
21
  "Empty message...": "",
22
22
  "Error loading": "",
23
23
  "Error loading channel list...": "",
24
24
  "Error loading messages for this channel...": "",
25
25
  "Error while loading, please reload/refresh": "",
26
- "File type not supported": "Bestandstype niet ondersteund",
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": "",
@@ -31,15 +31,15 @@
31
31
  "Instant Commands": "",
32
32
  "Let's start chatting!": "",
33
33
  "Links are disabled": "",
34
- "Loading channels...": "Kanalen aan het laden...",
35
- "Loading messages...": "Berichten aan het laden...",
36
- "Loading...": "Aan het laden...",
34
+ "Loading channels...": "",
35
+ "Loading messages...": "",
36
+ "Loading...": "",
37
37
  "Maximum file size upload limit reached. Please upload a file below {{MAX_FILE_SIZE_TO_UPLOAD_IN_MB}} MB.": "",
38
38
  "Message Reactions": "",
39
39
  "Message deleted": "Bericht verwijderd",
40
40
  "Message flagged": "",
41
41
  "Mute User": "",
42
- "Not supported": "niet ondersteund",
42
+ "Not supported": "",
43
43
  "Nothing yet...": "",
44
44
  "Ok": "",
45
45
  "Only visible to you": "",
@@ -52,7 +52,7 @@
52
52
  "Please select a channel first": "",
53
53
  "Reconnecting...": "Opnieuw Verbinding Maken...",
54
54
  "Reply": "",
55
- "Reply to Message": "",
55
+ "Reply to Message": "Beantwoord bericht",
56
56
  "Resend": "",
57
57
  "Search GIFs": "",
58
58
  "Select More Photos": "",
@@ -66,14 +66,14 @@
66
66
  "Unknown User": "",
67
67
  "Unmute User": "",
68
68
  "Unpin from Conversation": "",
69
- "Unread Messages": "",
69
+ "Unread Messages": "Ongelezen Berichten",
70
70
  "Video": "Video",
71
- "You": "U",
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 }}": "",
75
75
  "{{ replyCount }} Replies": "",
76
- "{{ replyCount }} Thread Replies": "",
76
+ "{{ replyCount }} Thread Replies": "{{replyCount}} Discussiereacties",
77
77
  "{{ user }} is typing": "",
78
78
  "🏙 Attachment...": ""
79
79
  }