stream-chat-react-native-core 5.31.2-beta.3 → 5.32.0-beta.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/commonjs/components/Channel/Channel.js +21 -20
- package/lib/commonjs/components/Channel/Channel.js.map +1 -1
- package/lib/commonjs/components/Chat/hooks/handleEventToSyncDB.js.map +1 -1
- package/lib/commonjs/components/Message/Message.js +9 -19
- package/lib/commonjs/components/Message/Message.js.map +1 -1
- package/lib/commonjs/components/Message/MessageSimple/MessageFooter.js +1 -2
- package/lib/commonjs/components/Message/MessageSimple/MessageFooter.js.map +1 -1
- package/lib/commonjs/components/Message/MessageSimple/ReactionList.js +54 -37
- package/lib/commonjs/components/Message/MessageSimple/ReactionList.js.map +1 -1
- package/lib/commonjs/components/Message/hooks/useCreateMessageContext.js +6 -11
- package/lib/commonjs/components/Message/hooks/useCreateMessageContext.js.map +1 -1
- package/lib/commonjs/components/Message/hooks/useProcessReactions.js +90 -0
- package/lib/commonjs/components/Message/hooks/useProcessReactions.js.map +1 -0
- package/lib/commonjs/components/MessageOverlay/MessageOverlay.js +3 -12
- package/lib/commonjs/components/MessageOverlay/MessageOverlay.js.map +1 -1
- package/lib/commonjs/components/MessageOverlay/OverlayReactions.js +47 -143
- package/lib/commonjs/components/MessageOverlay/OverlayReactions.js.map +1 -1
- package/lib/commonjs/components/MessageOverlay/OverlayReactionsItem.js +166 -0
- package/lib/commonjs/components/MessageOverlay/OverlayReactionsItem.js.map +1 -0
- package/lib/commonjs/components/MessageOverlay/hooks/useFetchReactions.js +144 -0
- package/lib/commonjs/components/MessageOverlay/hooks/useFetchReactions.js.map +1 -0
- package/lib/commonjs/contexts/messageContext/MessageContext.js.map +1 -1
- package/lib/commonjs/contexts/themeContext/utils/theme.js +0 -1
- package/lib/commonjs/contexts/themeContext/utils/theme.js.map +1 -1
- package/lib/commonjs/i18n/en.json +81 -81
- package/lib/commonjs/i18n/es.json +81 -81
- package/lib/commonjs/i18n/fr.json +81 -81
- package/lib/commonjs/i18n/he.json +81 -81
- package/lib/commonjs/i18n/hi.json +81 -81
- package/lib/commonjs/i18n/it.json +81 -81
- package/lib/commonjs/i18n/ja.json +81 -81
- package/lib/commonjs/i18n/ko.json +81 -81
- package/lib/commonjs/i18n/nl.json +81 -81
- package/lib/commonjs/i18n/pt-br.json +83 -0
- package/lib/commonjs/i18n/ru.json +81 -81
- package/lib/commonjs/i18n/tr.json +81 -81
- package/lib/commonjs/mock-builders/generator/message.js +2 -0
- package/lib/commonjs/mock-builders/generator/message.js.map +1 -1
- package/lib/commonjs/store/QuickSqliteClient.js +1 -1
- package/lib/commonjs/store/apis/getReactions.js +17 -0
- package/lib/commonjs/store/apis/getReactions.js.map +1 -0
- package/lib/commonjs/store/apis/getReactionsforFilterSort.js +30 -0
- package/lib/commonjs/store/apis/getReactionsforFilterSort.js.map +1 -0
- package/lib/commonjs/store/apis/insertReaction.js +8 -1
- package/lib/commonjs/store/apis/insertReaction.js.map +1 -1
- package/lib/commonjs/store/apis/queries/selectReactionsForMessages.js +1 -1
- package/lib/commonjs/store/apis/queries/selectReactionsForMessages.js.map +1 -1
- package/lib/commonjs/store/apis/updateReaction.js +6 -6
- package/lib/commonjs/store/apis/updateReaction.js.map +1 -1
- package/lib/commonjs/store/mappers/mapMessageToStorable.js +5 -3
- package/lib/commonjs/store/mappers/mapMessageToStorable.js.map +1 -1
- package/lib/commonjs/store/mappers/mapStorableToMessage.js +5 -3
- package/lib/commonjs/store/mappers/mapStorableToMessage.js.map +1 -1
- package/lib/commonjs/store/schema.js +2 -1
- package/lib/commonjs/store/schema.js.map +1 -1
- package/lib/commonjs/utils/Streami18n.js +2 -2
- package/lib/commonjs/utils/Streami18n.js.map +1 -1
- package/lib/commonjs/utils/addReactionToLocalState.js +25 -13
- package/lib/commonjs/utils/addReactionToLocalState.js.map +1 -1
- package/lib/commonjs/utils/removeReactionFromLocalState.js +11 -3
- package/lib/commonjs/utils/removeReactionFromLocalState.js.map +1 -1
- package/lib/commonjs/utils/removeReservedFields.js +1 -1
- package/lib/commonjs/utils/removeReservedFields.js.map +1 -1
- package/lib/commonjs/utils/utils.js +19 -5
- package/lib/commonjs/utils/utils.js.map +1 -1
- package/lib/commonjs/version.json +1 -1
- package/lib/module/components/Channel/Channel.js +21 -20
- package/lib/module/components/Channel/Channel.js.map +1 -1
- package/lib/module/components/Chat/hooks/handleEventToSyncDB.js.map +1 -1
- package/lib/module/components/Message/Message.js +9 -19
- package/lib/module/components/Message/Message.js.map +1 -1
- package/lib/module/components/Message/MessageSimple/MessageFooter.js +1 -2
- package/lib/module/components/Message/MessageSimple/MessageFooter.js.map +1 -1
- package/lib/module/components/Message/MessageSimple/ReactionList.js +54 -37
- package/lib/module/components/Message/MessageSimple/ReactionList.js.map +1 -1
- package/lib/module/components/Message/hooks/useCreateMessageContext.js +6 -11
- package/lib/module/components/Message/hooks/useCreateMessageContext.js.map +1 -1
- package/lib/module/components/Message/hooks/useProcessReactions.js +90 -0
- package/lib/module/components/Message/hooks/useProcessReactions.js.map +1 -0
- package/lib/module/components/MessageOverlay/MessageOverlay.js +3 -12
- package/lib/module/components/MessageOverlay/MessageOverlay.js.map +1 -1
- package/lib/module/components/MessageOverlay/OverlayReactions.js +47 -143
- package/lib/module/components/MessageOverlay/OverlayReactions.js.map +1 -1
- package/lib/module/components/MessageOverlay/OverlayReactionsItem.js +166 -0
- package/lib/module/components/MessageOverlay/OverlayReactionsItem.js.map +1 -0
- package/lib/module/components/MessageOverlay/hooks/useFetchReactions.js +144 -0
- package/lib/module/components/MessageOverlay/hooks/useFetchReactions.js.map +1 -0
- package/lib/module/contexts/messageContext/MessageContext.js.map +1 -1
- package/lib/module/contexts/themeContext/utils/theme.js +0 -1
- package/lib/module/contexts/themeContext/utils/theme.js.map +1 -1
- package/lib/module/i18n/en.json +81 -81
- package/lib/module/i18n/es.json +81 -81
- package/lib/module/i18n/fr.json +81 -81
- package/lib/module/i18n/he.json +81 -81
- package/lib/module/i18n/hi.json +81 -81
- package/lib/module/i18n/it.json +81 -81
- package/lib/module/i18n/ja.json +81 -81
- package/lib/module/i18n/ko.json +81 -81
- package/lib/module/i18n/nl.json +81 -81
- package/lib/module/i18n/pt-br.json +83 -0
- package/lib/module/i18n/ru.json +81 -81
- package/lib/module/i18n/tr.json +81 -81
- package/lib/module/mock-builders/generator/message.js +2 -0
- package/lib/module/mock-builders/generator/message.js.map +1 -1
- package/lib/module/store/QuickSqliteClient.js +1 -1
- package/lib/module/store/apis/getReactions.js +17 -0
- package/lib/module/store/apis/getReactions.js.map +1 -0
- package/lib/module/store/apis/getReactionsforFilterSort.js +30 -0
- package/lib/module/store/apis/getReactionsforFilterSort.js.map +1 -0
- package/lib/module/store/apis/insertReaction.js +8 -1
- package/lib/module/store/apis/insertReaction.js.map +1 -1
- package/lib/module/store/apis/queries/selectReactionsForMessages.js +1 -1
- package/lib/module/store/apis/queries/selectReactionsForMessages.js.map +1 -1
- package/lib/module/store/apis/updateReaction.js +6 -6
- package/lib/module/store/apis/updateReaction.js.map +1 -1
- package/lib/module/store/mappers/mapMessageToStorable.js +5 -3
- package/lib/module/store/mappers/mapMessageToStorable.js.map +1 -1
- package/lib/module/store/mappers/mapStorableToMessage.js +5 -3
- package/lib/module/store/mappers/mapStorableToMessage.js.map +1 -1
- package/lib/module/store/schema.js +2 -1
- package/lib/module/store/schema.js.map +1 -1
- package/lib/module/utils/Streami18n.js +2 -2
- package/lib/module/utils/Streami18n.js.map +1 -1
- package/lib/module/utils/addReactionToLocalState.js +25 -13
- package/lib/module/utils/addReactionToLocalState.js.map +1 -1
- package/lib/module/utils/removeReactionFromLocalState.js +11 -3
- package/lib/module/utils/removeReactionFromLocalState.js.map +1 -1
- package/lib/module/utils/removeReservedFields.js +1 -1
- package/lib/module/utils/removeReservedFields.js.map +1 -1
- package/lib/module/utils/utils.js +19 -5
- package/lib/module/utils/utils.js.map +1 -1
- package/lib/module/version.json +1 -1
- package/lib/typescript/components/Channel/Channel.d.ts.map +1 -1
- package/lib/typescript/components/Channel/hooks/useCreateInputMessageInputContext.d.ts +2 -2
- package/lib/typescript/components/Chat/hooks/handleEventToSyncDB.d.ts.map +1 -1
- package/lib/typescript/components/Message/Message.d.ts.map +1 -1
- package/lib/typescript/components/Message/MessageSimple/ReactionList.d.ts +11 -3
- package/lib/typescript/components/Message/MessageSimple/ReactionList.d.ts.map +1 -1
- package/lib/typescript/components/Message/hooks/useCreateMessageContext.d.ts.map +1 -1
- package/lib/typescript/components/Message/hooks/useMessageActionHandlers.d.ts +1 -1
- package/lib/typescript/components/Message/hooks/useMessageActions.d.ts +1 -1
- package/lib/typescript/components/Message/hooks/useProcessReactions.d.ts +38 -0
- package/lib/typescript/components/Message/hooks/useProcessReactions.d.ts.map +1 -0
- package/lib/typescript/components/MessageOverlay/MessageOverlay.d.ts.map +1 -1
- package/lib/typescript/components/MessageOverlay/OverlayReactions.d.ts +2 -1
- package/lib/typescript/components/MessageOverlay/OverlayReactions.d.ts.map +1 -1
- package/lib/typescript/components/MessageOverlay/OverlayReactionsItem.d.ts +11 -0
- package/lib/typescript/components/MessageOverlay/OverlayReactionsItem.d.ts.map +1 -0
- package/lib/typescript/components/MessageOverlay/hooks/useFetchReactions.d.ts +14 -0
- package/lib/typescript/components/MessageOverlay/hooks/useFetchReactions.d.ts.map +1 -0
- package/lib/typescript/contexts/messageContext/MessageContext.d.ts +3 -6
- package/lib/typescript/contexts/messageContext/MessageContext.d.ts.map +1 -1
- package/lib/typescript/contexts/messageInputContext/MessageInputContext.d.ts +1 -1
- package/lib/typescript/contexts/themeContext/utils/theme.d.ts +0 -1
- package/lib/typescript/contexts/themeContext/utils/theme.d.ts.map +1 -1
- package/lib/typescript/i18n/en.json +81 -81
- package/lib/typescript/i18n/es.json +81 -81
- package/lib/typescript/i18n/fr.json +81 -81
- package/lib/typescript/i18n/he.json +81 -81
- package/lib/typescript/i18n/hi.json +81 -81
- package/lib/typescript/i18n/it.json +81 -81
- package/lib/typescript/i18n/ja.json +81 -81
- package/lib/typescript/i18n/ko.json +81 -81
- package/lib/typescript/i18n/nl.json +81 -81
- package/lib/typescript/i18n/pt-br.json +83 -0
- package/lib/typescript/i18n/ru.json +81 -81
- package/lib/typescript/i18n/tr.json +81 -81
- package/lib/typescript/store/apis/getReactions.d.ts +7 -0
- package/lib/typescript/store/apis/getReactions.d.ts.map +1 -0
- package/lib/typescript/store/apis/getReactionsforFilterSort.d.ts +14 -0
- package/lib/typescript/store/apis/getReactionsforFilterSort.d.ts.map +1 -0
- package/lib/typescript/store/apis/insertReaction.d.ts +3 -2
- package/lib/typescript/store/apis/insertReaction.d.ts.map +1 -1
- package/lib/typescript/store/apis/queries/selectReactionsForMessages.d.ts +4 -0
- package/lib/typescript/store/apis/queries/selectReactionsForMessages.d.ts.map +1 -1
- package/lib/typescript/store/apis/updateReaction.d.ts.map +1 -1
- package/lib/typescript/store/mappers/mapMessageToStorable.d.ts.map +1 -1
- package/lib/typescript/store/mappers/mapStorableToMessage.d.ts.map +1 -1
- package/lib/typescript/store/schema.d.ts +2 -1
- package/lib/typescript/store/schema.d.ts.map +1 -1
- package/lib/typescript/utils/Streami18n.d.ts +0 -5
- package/lib/typescript/utils/Streami18n.d.ts.map +1 -1
- package/lib/typescript/utils/addReactionToLocalState.d.ts.map +1 -1
- package/lib/typescript/utils/removeReactionFromLocalState.d.ts.map +1 -1
- package/lib/typescript/utils/removeReservedFields.d.ts.map +1 -1
- package/lib/typescript/utils/utils.d.ts +9 -3
- package/lib/typescript/utils/utils.d.ts.map +1 -1
- package/package.json +8 -9
- package/src/components/Channel/Channel.tsx +24 -34
- package/src/components/Chat/hooks/handleEventToSyncDB.ts +1 -2
- package/src/components/Message/Message.tsx +8 -26
- package/src/components/Message/MessageSimple/MessageFooter.tsx +1 -1
- package/src/components/Message/MessageSimple/ReactionList.tsx +72 -47
- package/src/components/Message/MessageSimple/__tests__/MessageContent.test.js +1 -1
- package/src/components/Message/hooks/useCreateMessageContext.ts +5 -10
- package/src/components/Message/hooks/useProcessReactions.ts +116 -0
- package/src/components/MessageOverlay/MessageOverlay.tsx +4 -17
- package/src/components/MessageOverlay/OverlayReactions.tsx +75 -176
- package/src/components/MessageOverlay/OverlayReactionsItem.tsx +188 -0
- package/src/components/MessageOverlay/hooks/useFetchReactions.ts +85 -0
- package/src/components/Thread/__tests__/__snapshots__/Thread.test.js.snap +139 -0
- package/src/contexts/messageContext/MessageContext.tsx +2 -6
- package/src/contexts/themeContext/utils/theme.ts +0 -2
- package/src/i18n/en.json +1 -1
- package/src/i18n/es.json +57 -57
- package/src/i18n/fr.json +57 -57
- package/src/i18n/he.json +57 -57
- package/src/i18n/hi.json +57 -57
- package/src/i18n/it.json +57 -57
- package/src/i18n/ja.json +57 -57
- package/src/i18n/ko.json +59 -59
- package/src/i18n/nl.json +57 -57
- package/src/i18n/pt-br.json +83 -0
- package/src/i18n/ru.json +57 -57
- package/src/i18n/tr.json +57 -57
- package/src/mock-builders/generator/message.js +2 -0
- package/src/store/QuickSqliteClient.ts +1 -1
- package/src/store/apis/getReactions.ts +21 -0
- package/src/store/apis/getReactionsforFilterSort.ts +43 -0
- package/src/store/apis/insertReaction.ts +15 -5
- package/src/store/apis/queries/selectReactionsForMessages.ts +5 -1
- package/src/store/apis/updateReaction.ts +6 -18
- package/src/store/mappers/mapMessageToStorable.ts +4 -2
- package/src/store/mappers/mapStorableToMessage.ts +12 -2
- package/src/store/schema.ts +4 -2
- package/src/utils/Streami18n.ts +1 -1
- package/src/utils/addReactionToLocalState.ts +33 -17
- package/src/utils/removeReactionFromLocalState.ts +22 -2
- package/src/utils/removeReservedFields.ts +2 -0
- package/src/utils/utils.ts +19 -7
- package/src/version.json +1 -1
- package/lib/commonjs/i18n/pt-BR.json +0 -83
- package/lib/module/i18n/pt-BR.json +0 -83
- package/lib/typescript/i18n/pt-BR.json +0 -83
- package/src/i18n/pt-BR.json +0 -83
package/src/i18n/he.json
CHANGED
|
@@ -1,81 +1,81 @@
|
|
|
1
1
|
{
|
|
2
2
|
"1 Reply": "תגובה אחת",
|
|
3
3
|
"1 Thread Reply": "תגובה אחת לשרשור",
|
|
4
|
-
"Allow access to your Gallery": "",
|
|
5
|
-
"Allow camera access in device settings": "",
|
|
4
|
+
"Allow access to your Gallery": "אפשר גישה לגלריה שלך",
|
|
5
|
+
"Allow camera access in device settings": "אפשר גישה למצלמה בהגדרות המכשיר",
|
|
6
6
|
"Also send to channel": "שלח/י הודעה לשיחה",
|
|
7
|
-
"Are you sure you want to permanently delete this message?": "",
|
|
8
|
-
"Are you sure?": "",
|
|
9
|
-
"Block User": "",
|
|
10
|
-
"Cancel": "",
|
|
11
|
-
"Cannot Flag Message": "",
|
|
12
|
-
"Consider how your comment might make others feel and be sure to follow our Community Guidelines": "",
|
|
13
|
-
"Copy Message": "",
|
|
14
|
-
"Delete": "",
|
|
15
|
-
"Delete Message": "",
|
|
16
|
-
"Device camera is used to take photos or videos.": "",
|
|
17
|
-
"Do you want to send a copy of this message to a moderator for further investigation?": "",
|
|
18
|
-
"Edit Message": "",
|
|
19
|
-
"Edited": "",
|
|
7
|
+
"Are you sure you want to permanently delete this message?": "האם את/ה בטוח/ה שאת/ה רוצה למחוק את ההודעה הזו לצמיתות?",
|
|
8
|
+
"Are you sure?": "האם אתה בטוח?",
|
|
9
|
+
"Block User": "חסום משתמש",
|
|
10
|
+
"Cancel": "ביטול",
|
|
11
|
+
"Cannot Flag Message": "סימון הודעה לא אפשרי",
|
|
12
|
+
"Consider how your comment might make others feel and be sure to follow our Community Guidelines": "שקול איך התגובה שלך עשויה להשפיע על אחרים ווודא שאתה עוקב אחר ההנחיות של הקהילה שלנו",
|
|
13
|
+
"Copy Message": "העתק/י הודעה",
|
|
14
|
+
"Delete": "מחק",
|
|
15
|
+
"Delete Message": "מחק/י הודעה",
|
|
16
|
+
"Device camera is used to take photos or videos.": "מצלמת המכשיר משמשת לצילום תמונות או סרטונים.",
|
|
17
|
+
"Do you want to send a copy of this message to a moderator for further investigation?": "האם את/ה רוצה לשלוח עותק של הודעה זו למנחה להמשך חקירה?",
|
|
18
|
+
"Edit Message": "ערוך הודעה",
|
|
19
|
+
"Edited": "נערך",
|
|
20
20
|
"Editing Message": "הודעה בעריכה",
|
|
21
|
-
"Emoji matching": "",
|
|
21
|
+
"Emoji matching": "התאמת אמוג'י",
|
|
22
22
|
"Empty message...": "הודעה ריקה...",
|
|
23
|
-
"Error loading": "",
|
|
24
|
-
"Error loading channel list...": "",
|
|
25
|
-
"Error loading messages for this channel...": "",
|
|
23
|
+
"Error loading": "שגיאה ארעה בעת הטעינה",
|
|
24
|
+
"Error loading channel list...": "שגיאה ארעה בטעינת השיחות...",
|
|
25
|
+
"Error loading messages for this channel...": "שגיאה ארעה בטעינת הודעות עבור שיחה זאת...",
|
|
26
26
|
"Error while loading, please reload/refresh": "שגיאה ארעה בזמן הטעינה, אנא טען מחדש/רענן",
|
|
27
|
-
"File is too large: {{ size }}, maximum upload size is {{ limit }}": "",
|
|
27
|
+
"File is too large: {{ size }}, maximum upload size is {{ limit }}": "הקובץ גדול מדי: {{ size }}, גודל העלאה מקסימלי הוא {{ limit }}",
|
|
28
28
|
"File type not supported": "סוג הקובץ אינו נתמך",
|
|
29
|
-
"Flag": "",
|
|
30
|
-
"Flag Message": "",
|
|
31
|
-
"Flag action failed either due to a network issue or the message is already flagged": "",
|
|
32
|
-
"Hold to start recording.": "",
|
|
33
|
-
"How about sending your first message to a friend?": "",
|
|
34
|
-
"Instant Commands": "",
|
|
35
|
-
"Let's start chatting!": "",
|
|
36
|
-
"Links are disabled": "",
|
|
37
|
-
"Loading channels...": "",
|
|
38
|
-
"Loading messages...": "",
|
|
39
|
-
"Loading...": "",
|
|
40
|
-
"Message Reactions": "",
|
|
29
|
+
"Flag": "סמן",
|
|
30
|
+
"Flag Message": "סמן הודעה",
|
|
31
|
+
"Flag action failed either due to a network issue or the message is already flagged": "פעולת הסימון נכשלה בגלל בעיית רשת או שההודעה כבר סומנה.",
|
|
32
|
+
"Hold to start recording.": "לחץ והחזק כדי להתחיל להקליט.",
|
|
33
|
+
"How about sending your first message to a friend?": "מה דעתך לשלוח את ההודעה הראשונה שלך לחבר?",
|
|
34
|
+
"Instant Commands": "פעולות מיידיות",
|
|
35
|
+
"Let's start chatting!": "בואו נתחיל לשוחח!",
|
|
36
|
+
"Links are disabled": "הקישורים מבוטלים",
|
|
37
|
+
"Loading channels...": "השיחות בטעינה...",
|
|
38
|
+
"Loading messages...": "ההודעות בטעינה..",
|
|
39
|
+
"Loading...": "טוען...",
|
|
40
|
+
"Message Reactions": "תגובות להודעה",
|
|
41
41
|
"Message deleted": "ההודעה נמחקה",
|
|
42
|
-
"Message flagged": "",
|
|
43
|
-
"Mute User": "",
|
|
44
|
-
"No chats here yet…": "",
|
|
42
|
+
"Message flagged": "ההודעה סומנה",
|
|
43
|
+
"Mute User": "השתק/י משתמש",
|
|
44
|
+
"No chats here yet…": "אין צ'אטים כאן עדיין...",
|
|
45
45
|
"Not supported": "לא נתמך",
|
|
46
46
|
"Nothing yet...": "אינפורמציה תתקבל בהמשך...",
|
|
47
|
-
"Ok": "",
|
|
47
|
+
"Ok": "אוקיי",
|
|
48
48
|
"Only visible to you": "גלוי רק לך",
|
|
49
|
-
"Open Settings": "",
|
|
50
|
-
"Photo": "",
|
|
51
|
-
"Photos and Videos": "",
|
|
52
|
-
"Pin to Conversation": "",
|
|
49
|
+
"Open Settings": "פתח את ההגדרות",
|
|
50
|
+
"Photo": "תמונה",
|
|
51
|
+
"Photos and Videos": "תמונות ווידאו",
|
|
52
|
+
"Pin to Conversation": "הצמד/י לשיחה",
|
|
53
53
|
"Pinned by": " - הוצמד לשיחה",
|
|
54
|
-
"Please allow Audio permissions in settings.": "",
|
|
55
|
-
"Please enable access to your photos and videos so you can share them.": "",
|
|
56
|
-
"Please select a channel first": "",
|
|
54
|
+
"Please allow Audio permissions in settings.": "בבקשה, הרשה הרשאות שמע בהגדרות.",
|
|
55
|
+
"Please enable access to your photos and videos so you can share them.": "אפשר/י גישה לתמונות ולסרטונים שלך כדי שתוכל/י לשתף אותם.",
|
|
56
|
+
"Please select a channel first": "אנא בחר/י שיחה תחילה",
|
|
57
57
|
"Reconnecting...": "מתחבר מחדש...",
|
|
58
|
-
"Reply": "",
|
|
58
|
+
"Reply": "השב/י",
|
|
59
59
|
"Reply to Message": "השב/י להודעה",
|
|
60
|
-
"Resend": "",
|
|
60
|
+
"Resend": "שלח/י שוב",
|
|
61
61
|
"Search GIFs": "חפש/י GIFs",
|
|
62
|
-
"Select More Photos": "",
|
|
63
|
-
"Send Anyway": "",
|
|
62
|
+
"Select More Photos": "בחר עוד תמונות",
|
|
63
|
+
"Send Anyway": "שלח בכל זאת",
|
|
64
64
|
"Send a message": "שלח/י הודעה",
|
|
65
|
-
"Sending links is not allowed in this conversation": "",
|
|
65
|
+
"Sending links is not allowed in this conversation": "שליחת קישורים אינה מותרת בשיחה זו",
|
|
66
66
|
"Slow mode ON": "מצב איטי מופעל",
|
|
67
|
-
"The message has been reported to a moderator.": "",
|
|
68
|
-
"Thread Reply": "",
|
|
69
|
-
"Unblock User": "",
|
|
70
|
-
"Unknown User": "",
|
|
71
|
-
"Unmute User": "",
|
|
72
|
-
"Unpin from Conversation": "",
|
|
73
|
-
"Unread Messages": "",
|
|
74
|
-
"Video": "",
|
|
67
|
+
"The message has been reported to a moderator.": "ההודעה דווחה למנהל",
|
|
68
|
+
"Thread Reply": "הגב/י בשרשור",
|
|
69
|
+
"Unblock User": "בטל/י חסימת משתמש",
|
|
70
|
+
"Unknown User": "משתמש לא ידוע",
|
|
71
|
+
"Unmute User": "בטל/י השתקת משתמש",
|
|
72
|
+
"Unpin from Conversation": "בטל/י הצמדה לשיחה",
|
|
73
|
+
"Unread Messages": "הודעות שטרם נקרו",
|
|
74
|
+
"Video": "וִידֵאוֹ",
|
|
75
75
|
"You": "את/ה",
|
|
76
76
|
"You can't send messages in this channel": "את/ב לא יכול/ה לשלוח הודעות בשיחה זו",
|
|
77
77
|
"{{ firstUser }} and {{ nonSelfUserLength }} more are typing": "{{ firstUser }} ו-{{ nonSelfUserLength }} משתמש/ים אחר/ים מקלידים",
|
|
78
|
-
"{{ index }} of {{ photoLength }}": "",
|
|
78
|
+
"{{ index }} of {{ photoLength }}": "{{ index }} מתוך {{ photoLength }}",
|
|
79
79
|
"{{ replyCount }} Replies": "{{ replyCount }} תגובות",
|
|
80
80
|
"{{ replyCount }} Thread Replies": "{{ replyCount }} תגובות שרשור",
|
|
81
81
|
"{{ user }} is typing": "{{ user }} מקליד/ה",
|
package/src/i18n/hi.json
CHANGED
|
@@ -1,81 +1,81 @@
|
|
|
1
1
|
{
|
|
2
2
|
"1 Reply": "1 रिप्लाई",
|
|
3
3
|
"1 Thread Reply": "1 धागा उत्तर",
|
|
4
|
-
"Allow access to your Gallery": "",
|
|
5
|
-
"Allow camera access in device settings": "",
|
|
4
|
+
"Allow access to your Gallery": "अपनी गैलरी तक पहुँचने की अनुमति दें",
|
|
5
|
+
"Allow camera access in device settings": "डिवाइस सेटिंग्स में कैमरा एक्सेस की अनुमति दें",
|
|
6
6
|
"Also send to channel": "चैनल को भी भेजें",
|
|
7
|
-
"Are you sure you want to permanently delete this message?": "",
|
|
8
|
-
"Are you sure?": "",
|
|
9
|
-
"Block User": "",
|
|
10
|
-
"Cancel": "",
|
|
11
|
-
"Cannot Flag Message": "",
|
|
12
|
-
"Consider how your comment might make others feel and be sure to follow our Community Guidelines": "",
|
|
13
|
-
"Copy Message": "",
|
|
14
|
-
"Delete": "",
|
|
15
|
-
"Delete Message": "",
|
|
16
|
-
"Device camera is used to take photos or videos.": "",
|
|
17
|
-
"Do you want to send a copy of this message to a moderator for further investigation?": "",
|
|
18
|
-
"Edit Message": "",
|
|
19
|
-
"Edited": "",
|
|
7
|
+
"Are you sure you want to permanently delete this message?": "क्या आप वाकई इस संदेश को स्थायी रूप से हटाना चाहते हैं?",
|
|
8
|
+
"Are you sure?": "क्या आप सुनिश्चित हैं?",
|
|
9
|
+
"Block User": "उपयोगकर्ता को रोक देना, ब्लॉक यूजर",
|
|
10
|
+
"Cancel": "रद्द करें",
|
|
11
|
+
"Cannot Flag Message": "मैसेज फ्लैग नहीं किया जा सकता है",
|
|
12
|
+
"Consider how your comment might make others feel and be sure to follow our Community Guidelines": "ध्यान दें कि आपका संदेश दूसरों को कैसा लगा सकता है और सुनिश्चित हों कि आप हमारी सामुदायिक अनुशासन का पालन कर रहे हैं",
|
|
13
|
+
"Copy Message": "संदेश की प्रतिलिपि बनाएँ",
|
|
14
|
+
"Delete": "हटाएं",
|
|
15
|
+
"Delete Message": "मैसेज को डिलीट करे",
|
|
16
|
+
"Device camera is used to take photos or videos.": "डिवाइस कैमरे का उपयोग फ़ोटो या वीडियो लेने के लिए किया जाता है।",
|
|
17
|
+
"Do you want to send a copy of this message to a moderator for further investigation?": "क्या आप इस संदेश की एक प्रति आगे की जाँच के लिए किसी मॉडरेटर को भेजना चाहते हैं?",
|
|
18
|
+
"Edit Message": "मैसेज में बदलाव करे",
|
|
19
|
+
"Edited": "मैसेज बदला गया है",
|
|
20
20
|
"Editing Message": "मैसेज बदला जा रहा है",
|
|
21
|
-
"Emoji matching": "",
|
|
21
|
+
"Emoji matching": "इमोजी मिलान",
|
|
22
22
|
"Empty message...": "खाली संदेश...",
|
|
23
|
-
"Error loading": "",
|
|
24
|
-
"Error loading channel list...": "",
|
|
25
|
-
"Error loading messages for this channel...": "",
|
|
23
|
+
"Error loading": "लोड होने मे त्रुटि",
|
|
24
|
+
"Error loading channel list...": "चैनल सूची लोड करने में त्रुटि...",
|
|
25
|
+
"Error loading messages for this channel...": "इस चैनल के लिए मेसेजेस लोड करने में त्रुटि हुई...",
|
|
26
26
|
"Error while loading, please reload/refresh": "एरर, रिफ्रेश करे",
|
|
27
|
-
"File is too large: {{ size }}, maximum upload size is {{ limit }}": "",
|
|
27
|
+
"File is too large: {{ size }}, maximum upload size is {{ limit }}": "फ़ाइल बहुत बड़ी है: {{ size }}, अधिकतम अपलोड साइज़ {{ limit }} है",
|
|
28
28
|
"File type not supported": "फ़ाइल प्रकार समर्थित नहीं है",
|
|
29
|
-
"Flag": "",
|
|
30
|
-
"Flag Message": "",
|
|
31
|
-
"Flag action failed either due to a network issue or the message is already flagged": "",
|
|
32
|
-
"Hold to start recording.": "",
|
|
33
|
-
"How about sending your first message to a friend?": "",
|
|
34
|
-
"Instant Commands": "",
|
|
35
|
-
"Let's start chatting!": "",
|
|
36
|
-
"Links are disabled": "",
|
|
37
|
-
"Loading channels...": "",
|
|
38
|
-
"Loading messages...": "",
|
|
39
|
-
"Loading...": "",
|
|
40
|
-
"Message Reactions": "",
|
|
29
|
+
"Flag": "झंडा",
|
|
30
|
+
"Flag Message": "झंडा संदेश",
|
|
31
|
+
"Flag action failed either due to a network issue or the message is already flagged": "फ़्लैग कार्रवाई या तो नेटवर्क समस्या के कारण विफल हो गई या संदेश पहले से फ़्लैग किया गया है।",
|
|
32
|
+
"Hold to start recording.": "रिकॉर्डिंग शुरू करने के लिए दबाएं।",
|
|
33
|
+
"How about sending your first message to a friend?": "किसी मित्र को अपना पहला संदेश भेजने के बारे में क्या ख़याल है?",
|
|
34
|
+
"Instant Commands": "त्वरित कमांड",
|
|
35
|
+
"Let's start chatting!": "आइए चैट करना शुरू करें!",
|
|
36
|
+
"Links are disabled": "लिंक अक्षम हैं",
|
|
37
|
+
"Loading channels...": "चैनल लोड हो रहे हैं...",
|
|
38
|
+
"Loading messages...": "मेसेजस लोड हो रहे हैं...",
|
|
39
|
+
"Loading...": "लोड हो रहा है...",
|
|
40
|
+
"Message Reactions": "संदेश प्रतिक्रियाएँ",
|
|
41
41
|
"Message deleted": "मैसेज हटा दिया गया",
|
|
42
|
-
"Message flagged": "",
|
|
43
|
-
"Mute User": "",
|
|
44
|
-
"No chats here yet…": "",
|
|
42
|
+
"Message flagged": "संदेश को ध्वजांकित किया गया",
|
|
43
|
+
"Mute User": "उपयोगकर्ता को म्यूट करें",
|
|
44
|
+
"No chats here yet…": "अभी तक यहाँ कोई चैट नहीं है...",
|
|
45
45
|
"Not supported": "समर्थित नहीं",
|
|
46
46
|
"Nothing yet...": "कोई मैसेज नहीं है...",
|
|
47
|
-
"Ok": "",
|
|
47
|
+
"Ok": "ठीक",
|
|
48
48
|
"Only visible to you": "केवल आपको दिखाई दे रहा है",
|
|
49
|
-
"Open Settings": "",
|
|
50
|
-
"Photo": "",
|
|
51
|
-
"Photos and Videos": "",
|
|
52
|
-
"Pin to Conversation": "",
|
|
49
|
+
"Open Settings": "सेटिंग्स खोलें",
|
|
50
|
+
"Photo": "तस्वीर",
|
|
51
|
+
"Photos and Videos": "तस्वीरें और वीडियों",
|
|
52
|
+
"Pin to Conversation": "बातचीत में पिन करें",
|
|
53
53
|
"Pinned by": "द्वारा पिन किया गया",
|
|
54
|
-
"Please allow Audio permissions in settings.": "",
|
|
55
|
-
"Please enable access to your photos and videos so you can share them.": "",
|
|
56
|
-
"Please select a channel first": "",
|
|
54
|
+
"Please allow Audio permissions in settings.": "कृपया सेटिंग्स में ऑडियो की अनुमति दें।",
|
|
55
|
+
"Please enable access to your photos and videos so you can share them.": "कृपया अपनी फ़ोटो और वीडियो तक पहुंच सक्षम करें ताकि आप उन्हें साझा कर सकें।",
|
|
56
|
+
"Please select a channel first": "कृपया पहले एक चैनल चुनें",
|
|
57
57
|
"Reconnecting...": "पुनः कनेक्ट हो...",
|
|
58
|
-
"Reply": "",
|
|
58
|
+
"Reply": "मैसेज को रिप्लाई करे",
|
|
59
59
|
"Reply to Message": "संदेश का जवाब दें",
|
|
60
|
-
"Resend": "",
|
|
60
|
+
"Resend": "पुन: भेजें",
|
|
61
61
|
"Search GIFs": "GIF खोजें",
|
|
62
|
-
"Select More Photos": "",
|
|
63
|
-
"Send Anyway": "",
|
|
62
|
+
"Select More Photos": "अधिक फ़ोटो चुनें",
|
|
63
|
+
"Send Anyway": "फिर भी भेजें",
|
|
64
64
|
"Send a message": "एक संदेश भेजें",
|
|
65
|
-
"Sending links is not allowed in this conversation": "",
|
|
65
|
+
"Sending links is not allowed in this conversation": "इस बातचीत में लिंक भेजने की अनुमति नहीं है",
|
|
66
66
|
"Slow mode ON": "स्लो मोड चालू",
|
|
67
|
-
"The message has been reported to a moderator.": "",
|
|
68
|
-
"Thread Reply": "",
|
|
69
|
-
"Unblock User": "",
|
|
70
|
-
"Unknown User": "",
|
|
71
|
-
"Unmute User": "",
|
|
72
|
-
"Unpin from Conversation": "",
|
|
73
|
-
"Unread Messages": "",
|
|
74
|
-
"Video": "",
|
|
67
|
+
"The message has been reported to a moderator.": "संदेश एक मॉडरेटर को सूचित किया गया है।",
|
|
68
|
+
"Thread Reply": "धागा जवाब",
|
|
69
|
+
"Unblock User": "उपयोगकर्ता को अनब्लॉक करें",
|
|
70
|
+
"Unknown User": "अज्ञात उपयोगकर्ता",
|
|
71
|
+
"Unmute User": "उपयोगकर्ता को अनम्यूट करें",
|
|
72
|
+
"Unpin from Conversation": "बातचीत से अनपिन करें",
|
|
73
|
+
"Unread Messages": "अपठित संदेश",
|
|
74
|
+
"Video": "वीडियो",
|
|
75
75
|
"You": "आप",
|
|
76
76
|
"You can't send messages in this channel": "आप इस चैनल में संदेश नहीं भेज सकते",
|
|
77
77
|
"{{ firstUser }} and {{ nonSelfUserLength }} more are typing": "{{ firstUser }} और {{ nonSelfUserLength }} अधिक टाइप कर रहे हैं",
|
|
78
|
-
"{{ index }} of {{ photoLength }}": "",
|
|
78
|
+
"{{ index }} of {{ photoLength }}": "{{ index }} / {{ photoLength }}",
|
|
79
79
|
"{{ replyCount }} Replies": "{{ replyCount }} रिप्लाई",
|
|
80
80
|
"{{ replyCount }} Thread Replies": "{{ replyCount }}} थ्रेड उत्तर",
|
|
81
81
|
"{{ user }} is typing": "{{ user }} टाइप कर रहा है",
|
package/src/i18n/it.json
CHANGED
|
@@ -1,81 +1,81 @@
|
|
|
1
1
|
{
|
|
2
2
|
"1 Reply": "1 Risposta",
|
|
3
3
|
"1 Thread Reply": "1 Risposta alla Discussione",
|
|
4
|
-
"Allow access to your Gallery": "",
|
|
5
|
-
"Allow camera access in device settings": "",
|
|
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
6
|
"Also send to channel": "Invia anche al canale",
|
|
7
|
-
"Are you sure you want to permanently delete this message?": "",
|
|
8
|
-
"Are you sure?": "",
|
|
9
|
-
"Block User": "",
|
|
10
|
-
"Cancel": "",
|
|
11
|
-
"Cannot Flag Message": "",
|
|
12
|
-
"Consider how your comment might make others feel and be sure to follow our Community Guidelines": "",
|
|
13
|
-
"Copy Message": "",
|
|
14
|
-
"Delete": "",
|
|
15
|
-
"Delete Message": "",
|
|
16
|
-
"Device camera is used to take photos or videos.": "",
|
|
17
|
-
"Do you want to send a copy of this message to a moderator for further investigation?": "",
|
|
18
|
-
"Edit Message": "",
|
|
19
|
-
"Edited": "",
|
|
7
|
+
"Are you sure you want to permanently delete this message?": "Sei sicuro di voler eliminare definitivamente questo messaggio?",
|
|
8
|
+
"Are you sure?": "Sei sicuro?",
|
|
9
|
+
"Block User": "Blocca Utente",
|
|
10
|
+
"Cancel": "Annulla",
|
|
11
|
+
"Cannot Flag Message": "Impossibile Segnalare Messaggio",
|
|
12
|
+
"Consider how your comment might make others feel and be sure to follow our Community Guidelines": "Considera come il tuo commento potrebbe far sentire gli altri e assicurati di seguire le nostre Linee guida della community",
|
|
13
|
+
"Copy Message": "Copia Messaggio",
|
|
14
|
+
"Delete": "Elimina",
|
|
15
|
+
"Delete Message": "Cancella il Messaggio",
|
|
16
|
+
"Device camera is used to take photos or videos.": "La fotocamera del dispositivo viene utilizzata per scattare foto o video.",
|
|
17
|
+
"Do you want to send a copy of this message to a moderator for further investigation?": "Vuoi inviare una copia di questo messaggio a un moderatore per ulteriori indagini?",
|
|
18
|
+
"Edit Message": "Modifica Messaggio",
|
|
19
|
+
"Edited": "Modificato",
|
|
20
20
|
"Editing Message": "Modificando il Messaggio",
|
|
21
|
-
"Emoji matching": "",
|
|
21
|
+
"Emoji matching": "Abbinamento emoji",
|
|
22
22
|
"Empty message...": "Message vuoto...",
|
|
23
|
-
"Error loading": "",
|
|
24
|
-
"Error loading channel list...": "",
|
|
25
|
-
"Error loading messages for this channel...": "",
|
|
23
|
+
"Error loading": "Errore di caricamento",
|
|
24
|
+
"Error loading channel list...": "Errore durante il caricamento della lista dei canali...",
|
|
25
|
+
"Error loading messages for this channel...": "Errore durante il caricamento dei messaggi per questo canale...",
|
|
26
26
|
"Error while loading, please reload/refresh": "Errore durante il caricamento, per favore ricarica la pagina",
|
|
27
|
-
"File is too large: {{ size }}, maximum upload size is {{ limit }}": "",
|
|
27
|
+
"File is too large: {{ size }}, maximum upload size is {{ limit }}": "Il file è troppo grande: {{ size }}, la dimensione massima di caricamento è {{ limit }}",
|
|
28
28
|
"File type not supported": "Tipo di file non supportato",
|
|
29
|
-
"Flag": "",
|
|
30
|
-
"Flag Message": "",
|
|
31
|
-
"Flag action failed either due to a network issue or the message is already flagged": "",
|
|
32
|
-
"Hold to start recording.": "",
|
|
33
|
-
"How about sending your first message to a friend?": "",
|
|
34
|
-
"Instant Commands": "",
|
|
35
|
-
"Let's start chatting!": "",
|
|
36
|
-
"Links are disabled": "",
|
|
37
|
-
"Loading channels...": "",
|
|
38
|
-
"Loading messages...": "",
|
|
39
|
-
"Loading...": "",
|
|
40
|
-
"Message Reactions": "",
|
|
29
|
+
"Flag": "Contrassegna",
|
|
30
|
+
"Flag Message": "Contrassegna Messaggio",
|
|
31
|
+
"Flag action failed either due to a network issue or the message is already flagged": "L'azione di segnalazione non è riuscita a causa di un problema di rete o il messaggio è già segnalato.",
|
|
32
|
+
"Hold to start recording.": "Tieni premuto per avviare la registrazione.",
|
|
33
|
+
"How about sending your first message to a friend?": "Che ne dici di inviare il tuo primo messaggio ad un amico?",
|
|
34
|
+
"Instant Commands": "Comandi Istantanei",
|
|
35
|
+
"Let's start chatting!": "Iniziamo a chattare!",
|
|
36
|
+
"Links are disabled": "I link sono disabilitati",
|
|
37
|
+
"Loading channels...": "Caricamento canali in corso...",
|
|
38
|
+
"Loading messages...": "Caricamento messaggi...",
|
|
39
|
+
"Loading...": "Caricamento...",
|
|
40
|
+
"Message Reactions": "Reazioni ai Messaggi",
|
|
41
41
|
"Message deleted": "Messaggio cancellato",
|
|
42
|
-
"Message flagged": "",
|
|
43
|
-
"Mute User": "",
|
|
44
|
-
"No chats here yet…": "",
|
|
42
|
+
"Message flagged": "Messaggio contrassegnato",
|
|
43
|
+
"Mute User": "Utente Muto",
|
|
44
|
+
"No chats here yet…": "Non ci sono ancora chat qui...",
|
|
45
45
|
"Not supported": "non supportato",
|
|
46
46
|
"Nothing yet...": "Ancora niente...",
|
|
47
|
-
"Ok": "",
|
|
47
|
+
"Ok": "Ok",
|
|
48
48
|
"Only visible to you": "Visibile solo a te",
|
|
49
|
-
"Open Settings": "",
|
|
50
|
-
"Photo": "",
|
|
51
|
-
"Photos and Videos": "",
|
|
52
|
-
"Pin to Conversation": "",
|
|
49
|
+
"Open Settings": "Apri Impostazioni",
|
|
50
|
+
"Photo": "Foto",
|
|
51
|
+
"Photos and Videos": "Foto e Video",
|
|
52
|
+
"Pin to Conversation": "Metti in evidenza",
|
|
53
53
|
"Pinned by": "Fissato da",
|
|
54
|
-
"Please allow Audio permissions in settings.": "",
|
|
55
|
-
"Please enable access to your photos and videos so you can share them.": "",
|
|
56
|
-
"Please select a channel first": "",
|
|
54
|
+
"Please allow Audio permissions in settings.": "Si prega di consentire le autorizzazioni audio nelle impostazioni.",
|
|
55
|
+
"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.",
|
|
56
|
+
"Please select a channel first": "Seleziona un canale",
|
|
57
57
|
"Reconnecting...": "Ricollegarsi...",
|
|
58
|
-
"Reply": "",
|
|
58
|
+
"Reply": "Rispondi",
|
|
59
59
|
"Reply to Message": "Rispondi al messaggio",
|
|
60
|
-
"Resend": "",
|
|
60
|
+
"Resend": "Invia di nuovo",
|
|
61
61
|
"Search GIFs": "Cerca GIF",
|
|
62
|
-
"Select More Photos": "",
|
|
63
|
-
"Send Anyway": "",
|
|
62
|
+
"Select More Photos": "Seleziona Altre foto",
|
|
63
|
+
"Send Anyway": "Invia comunque",
|
|
64
64
|
"Send a message": "Mandare un messaggio",
|
|
65
|
-
"Sending links is not allowed in this conversation": "",
|
|
65
|
+
"Sending links is not allowed in this conversation": "L'invio di link non è consentito in questa conversazione",
|
|
66
66
|
"Slow mode ON": "Slowmode attiva",
|
|
67
|
-
"The message has been reported to a moderator.": "",
|
|
68
|
-
"Thread Reply": "",
|
|
69
|
-
"Unblock User": "",
|
|
70
|
-
"Unknown User": "",
|
|
71
|
-
"Unmute User": "",
|
|
72
|
-
"Unpin from Conversation": "",
|
|
73
|
-
"Unread Messages": "",
|
|
74
|
-
"Video": "",
|
|
67
|
+
"The message has been reported to a moderator.": "Il messaggio è stato segnalato a un moderatore.",
|
|
68
|
+
"Thread Reply": "Rispondi alla Discussione",
|
|
69
|
+
"Unblock User": "Sblocca utente",
|
|
70
|
+
"Unknown User": "Utente sconosciuto",
|
|
71
|
+
"Unmute User": "Riattiva utente",
|
|
72
|
+
"Unpin from Conversation": "Rimuovi dagli elementi in evidenza",
|
|
73
|
+
"Unread Messages": "Messaggi non letti",
|
|
74
|
+
"Video": "Video",
|
|
75
75
|
"You": "Tu",
|
|
76
76
|
"You can't send messages in this channel": "Non puoi inviare messaggi in questo canale",
|
|
77
77
|
"{{ firstUser }} and {{ nonSelfUserLength }} more are typing": "{{ firstUser }} e altri {{ nonSelfUserLength }} stanno scrivendo",
|
|
78
|
-
"{{ index }} of {{ photoLength }}": "",
|
|
78
|
+
"{{ index }} of {{ photoLength }}": "{{ index }} di {{ photoLength }}",
|
|
79
79
|
"{{ replyCount }} Replies": "{{ replyCount }} Risposte",
|
|
80
80
|
"{{ replyCount }} Thread Replies": "{{replyCount}} Risposte alle Conversazione",
|
|
81
81
|
"{{ user }} is typing": "{{ user }} sta scrivendo",
|
package/src/i18n/ja.json
CHANGED
|
@@ -1,81 +1,81 @@
|
|
|
1
1
|
{
|
|
2
2
|
"1 Reply": "1件の返信",
|
|
3
3
|
"1 Thread Reply": "1件のスレッド返信",
|
|
4
|
-
"Allow access to your Gallery": "",
|
|
5
|
-
"Allow camera access in device settings": "",
|
|
4
|
+
"Allow access to your Gallery": "ギャラリーへのアクセスを許可する",
|
|
5
|
+
"Allow camera access in device settings": "デバイス設定でカメラへのアクセスを許可する",
|
|
6
6
|
"Also send to channel": "チャンネルにも送信",
|
|
7
|
-
"Are you sure you want to permanently delete this message?": "",
|
|
8
|
-
"Are you sure?": "",
|
|
9
|
-
"Block User": "",
|
|
10
|
-
"Cancel": "",
|
|
11
|
-
"Cannot Flag Message": "",
|
|
12
|
-
"Consider how your comment might make others feel and be sure to follow our Community Guidelines": "",
|
|
13
|
-
"Copy Message": "",
|
|
14
|
-
"Delete": "",
|
|
15
|
-
"Delete Message": "",
|
|
16
|
-
"Device camera is used to take photos or videos.": "",
|
|
17
|
-
"Do you want to send a copy of this message to a moderator for further investigation?": "",
|
|
18
|
-
"Edit Message": "",
|
|
19
|
-
"Edited": "",
|
|
7
|
+
"Are you sure you want to permanently delete this message?": "このメッセージを完全に削除してもよろしいですか?",
|
|
8
|
+
"Are you sure?": "本当によろしいですか?",
|
|
9
|
+
"Block User": "ユーザをブロックする",
|
|
10
|
+
"Cancel": "キャンセル",
|
|
11
|
+
"Cannot Flag Message": "メッセージをフラグできません",
|
|
12
|
+
"Consider how your comment might make others feel and be sure to follow our Community Guidelines": "あなたのコメントが他の人にどのように影響するか考え、必ずコミュニティガイドラインに従ってください",
|
|
13
|
+
"Copy Message": "メッセージのコピー",
|
|
14
|
+
"Delete": "消去",
|
|
15
|
+
"Delete Message": "メッセージを削除",
|
|
16
|
+
"Device camera is used to take photos or videos.": "デバイスのカメラは写真やビデオの撮影に使用されます。",
|
|
17
|
+
"Do you want to send a copy of this message to a moderator for further investigation?": "このメッセージのコピーをモデレーターに送信して、さらに調査しますか?",
|
|
18
|
+
"Edit Message": "メッセージを編集",
|
|
19
|
+
"Edited": "編集済み",
|
|
20
20
|
"Editing Message": "メッセージを編集中",
|
|
21
|
-
"Emoji matching": "",
|
|
21
|
+
"Emoji matching": "絵文字マッチング",
|
|
22
22
|
"Empty message...": "空のメッセージ...",
|
|
23
|
-
"Error loading": "",
|
|
24
|
-
"Error loading channel list...": "",
|
|
25
|
-
"Error loading messages for this channel...": "",
|
|
23
|
+
"Error loading": "読み込みエラー",
|
|
24
|
+
"Error loading channel list...": "チャネルリストの読み込み中にエラーが発生しました。。。",
|
|
25
|
+
"Error loading messages for this channel...": "このチャネルのメッセージの読み込み中にエラーが発生しました。。。",
|
|
26
26
|
"Error while loading, please reload/refresh": "ロード中にエラーが発生しました。更新してください",
|
|
27
|
-
"File is too large: {{ size }}, maximum upload size is {{ limit }}": "",
|
|
27
|
+
"File is too large: {{ size }}, maximum upload size is {{ limit }}": "ファイルが大きすぎます:{{ size }}、最大アップロードサイズは{{ limit }}です",
|
|
28
28
|
"File type not supported": "サポートされていないファイルです",
|
|
29
|
-
"Flag": "",
|
|
30
|
-
"Flag Message": "",
|
|
31
|
-
"Flag action failed either due to a network issue or the message is already flagged": "",
|
|
32
|
-
"Hold to start recording.": "",
|
|
33
|
-
"How about sending your first message to a friend?": "",
|
|
34
|
-
"Instant Commands": "",
|
|
35
|
-
"Let's start chatting!": "",
|
|
36
|
-
"Links are disabled": "",
|
|
37
|
-
"Loading channels...": "",
|
|
38
|
-
"Loading messages...": "",
|
|
39
|
-
"Loading...": "",
|
|
40
|
-
"Message Reactions": "",
|
|
29
|
+
"Flag": "フラグ",
|
|
30
|
+
"Flag Message": "メッセージをフラグする",
|
|
31
|
+
"Flag action failed either due to a network issue or the message is already flagged": "ネットワーク接続に問題があるか、すでにフラグが設定されているため、フラグが失敗しました。",
|
|
32
|
+
"Hold to start recording.": "録音を開始するには押し続けてください。",
|
|
33
|
+
"How about sending your first message to a friend?": "初めてのメッセージを友達に送ってみてはいかがでしょうか?",
|
|
34
|
+
"Instant Commands": "インスタントコマンド",
|
|
35
|
+
"Let's start chatting!": "チャットを始めましょう!",
|
|
36
|
+
"Links are disabled": "リンク機能が無効になっています",
|
|
37
|
+
"Loading channels...": "チャネルを読み込み中。。。",
|
|
38
|
+
"Loading messages...": "メッセージを読み込み中。。。",
|
|
39
|
+
"Loading...": "読み込み中。。。",
|
|
40
|
+
"Message Reactions": "メッセージのリアクション",
|
|
41
41
|
"Message deleted": "メッセージが削除されました",
|
|
42
|
-
"Message flagged": "",
|
|
43
|
-
"Mute User": "",
|
|
44
|
-
"No chats here yet…": "",
|
|
42
|
+
"Message flagged": "メッセージにフラグが付けられました",
|
|
43
|
+
"Mute User": "ユーザーをミュートする",
|
|
44
|
+
"No chats here yet…": "まだチャットはありません…",
|
|
45
45
|
"Not supported": "サポートしていません",
|
|
46
46
|
"Nothing yet...": "まだ何もありません...",
|
|
47
|
-
"Ok": "",
|
|
47
|
+
"Ok": "確認",
|
|
48
48
|
"Only visible to you": "あなただけに見える",
|
|
49
|
-
"Open Settings": "",
|
|
50
|
-
"Photo": "",
|
|
51
|
-
"Photos and Videos": "",
|
|
52
|
-
"Pin to Conversation": "",
|
|
49
|
+
"Open Settings": "設定を開く",
|
|
50
|
+
"Photo": "写真",
|
|
51
|
+
"Photos and Videos": "写真と動画",
|
|
52
|
+
"Pin to Conversation": "会話にピンする",
|
|
53
53
|
"Pinned by": "ピン留めしたユーザー",
|
|
54
|
-
"Please allow Audio permissions in settings.": "",
|
|
55
|
-
"Please enable access to your photos and videos so you can share them.": "",
|
|
56
|
-
"Please select a channel first": "",
|
|
54
|
+
"Please allow Audio permissions in settings.": "設定でオーディオの権限を許可してください。",
|
|
55
|
+
"Please enable access to your photos and videos so you can share them.": "写真やビデオへのアクセスを有効にして、共有できるようにしてください。",
|
|
56
|
+
"Please select a channel first": "最初にチャンネルを選択してください",
|
|
57
57
|
"Reconnecting...": "再接続中。。。",
|
|
58
|
-
"Reply": "",
|
|
58
|
+
"Reply": "返事",
|
|
59
59
|
"Reply to Message": "メッセージに返信",
|
|
60
|
-
"Resend": "",
|
|
60
|
+
"Resend": "再送",
|
|
61
61
|
"Search GIFs": "GIFの探索",
|
|
62
|
-
"Select More Photos": "",
|
|
63
|
-
"Send Anyway": "",
|
|
62
|
+
"Select More Photos": "さらに写真を選択",
|
|
63
|
+
"Send Anyway": "とにかく送信",
|
|
64
64
|
"Send a message": "メッセージを送る",
|
|
65
|
-
"Sending links is not allowed in this conversation": "",
|
|
65
|
+
"Sending links is not allowed in this conversation": "この会話ではリンク機能を使用できません。",
|
|
66
66
|
"Slow mode ON": "スローモードオン",
|
|
67
|
-
"The message has been reported to a moderator.": "",
|
|
68
|
-
"Thread Reply": "",
|
|
69
|
-
"Unblock User": "",
|
|
70
|
-
"Unknown User": "",
|
|
71
|
-
"Unmute User": "",
|
|
72
|
-
"Unpin from Conversation": "",
|
|
73
|
-
"Unread Messages": "",
|
|
74
|
-
"Video": "",
|
|
67
|
+
"The message has been reported to a moderator.": "メッセージはモデレーターに報告されました。",
|
|
68
|
+
"Thread Reply": "スレッドの返信",
|
|
69
|
+
"Unblock User": "ユーザーのブロックを解除する",
|
|
70
|
+
"Unknown User": "不明なユーザー",
|
|
71
|
+
"Unmute User": "ユーザーのミュートを解除する",
|
|
72
|
+
"Unpin from Conversation": "会話のピンを外す",
|
|
73
|
+
"Unread Messages": "未読メッセージ",
|
|
74
|
+
"Video": "ビデオ",
|
|
75
75
|
"You": "あなた",
|
|
76
76
|
"You can't send messages in this channel": "このチャンネルではメッセージを送信できません",
|
|
77
77
|
"{{ firstUser }} and {{ nonSelfUserLength }} more are typing": "{{ firstUser }}と{{ nonSelfUserLength }}人がタイピングしています",
|
|
78
|
-
"{{ index }} of {{ photoLength }}": "",
|
|
78
|
+
"{{ index }} of {{ photoLength }}": "{{ index }} / {{ photoLength }}",
|
|
79
79
|
"{{ replyCount }} Replies": "{{ replyCount }}件の返信",
|
|
80
80
|
"{{ replyCount }} Thread Replies": "{{ replyCount }}件のスレッド返信",
|
|
81
81
|
"{{ user }} is typing": "{{ user }}はタイピング中",
|