stream-chat-react-native-core 5.28.0-beta.2 → 5.28.0-beta.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/commonjs/components/Message/MessageSimple/MessageContent.js +4 -1
- package/lib/commonjs/components/Message/MessageSimple/MessageContent.js.map +1 -1
- package/lib/commonjs/components/Message/MessageSimple/MessageFooter.js +8 -2
- package/lib/commonjs/components/Message/MessageSimple/MessageFooter.js.map +1 -1
- package/lib/commonjs/components/Message/MessageSimple/MessagePinnedHeader.js +1 -4
- package/lib/commonjs/components/Message/MessageSimple/MessagePinnedHeader.js.map +1 -1
- package/lib/commonjs/components/Message/MessageSimple/MessageSimple.js +22 -12
- package/lib/commonjs/components/Message/MessageSimple/MessageSimple.js.map +1 -1
- package/lib/commonjs/contexts/themeContext/utils/theme.js +4 -4
- package/lib/commonjs/contexts/themeContext/utils/theme.js.map +1 -1
- package/lib/commonjs/i18n/es.json +31 -31
- package/lib/commonjs/i18n/fr.json +31 -31
- package/lib/commonjs/i18n/he.json +31 -31
- package/lib/commonjs/i18n/hi.json +31 -31
- package/lib/commonjs/i18n/it.json +31 -31
- package/lib/commonjs/i18n/ja.json +31 -31
- package/lib/commonjs/i18n/ko.json +31 -31
- package/lib/commonjs/i18n/nl.json +31 -31
- package/lib/commonjs/i18n/pt-BR.json +28 -28
- package/lib/commonjs/i18n/ru.json +31 -31
- package/lib/commonjs/i18n/tr.json +28 -28
- package/lib/commonjs/version.json +1 -1
- package/lib/module/components/Message/MessageSimple/MessageContent.js +4 -1
- package/lib/module/components/Message/MessageSimple/MessageContent.js.map +1 -1
- package/lib/module/components/Message/MessageSimple/MessageFooter.js +8 -2
- package/lib/module/components/Message/MessageSimple/MessageFooter.js.map +1 -1
- package/lib/module/components/Message/MessageSimple/MessagePinnedHeader.js +1 -4
- package/lib/module/components/Message/MessageSimple/MessagePinnedHeader.js.map +1 -1
- package/lib/module/components/Message/MessageSimple/MessageSimple.js +22 -12
- package/lib/module/components/Message/MessageSimple/MessageSimple.js.map +1 -1
- package/lib/module/contexts/themeContext/utils/theme.js +4 -4
- package/lib/module/contexts/themeContext/utils/theme.js.map +1 -1
- package/lib/module/i18n/es.json +31 -31
- package/lib/module/i18n/fr.json +31 -31
- package/lib/module/i18n/he.json +31 -31
- package/lib/module/i18n/hi.json +31 -31
- package/lib/module/i18n/it.json +31 -31
- package/lib/module/i18n/ja.json +31 -31
- package/lib/module/i18n/ko.json +31 -31
- package/lib/module/i18n/nl.json +31 -31
- package/lib/module/i18n/pt-BR.json +28 -28
- package/lib/module/i18n/ru.json +31 -31
- package/lib/module/i18n/tr.json +28 -28
- package/lib/module/version.json +1 -1
- package/lib/typescript/components/Message/MessageSimple/MessageContent.d.ts +1 -1
- package/lib/typescript/components/Message/MessageSimple/MessageContent.d.ts.map +1 -1
- package/lib/typescript/components/Message/MessageSimple/MessagePinnedHeader.d.ts.map +1 -1
- package/lib/typescript/components/Message/MessageSimple/MessageSimple.d.ts +1 -1
- package/lib/typescript/components/Message/MessageSimple/MessageSimple.d.ts.map +1 -1
- package/lib/typescript/contexts/themeContext/utils/theme.d.ts +3 -0
- package/lib/typescript/contexts/themeContext/utils/theme.d.ts.map +1 -1
- package/lib/typescript/i18n/es.json +31 -31
- package/lib/typescript/i18n/fr.json +31 -31
- package/lib/typescript/i18n/he.json +31 -31
- package/lib/typescript/i18n/hi.json +31 -31
- package/lib/typescript/i18n/it.json +31 -31
- package/lib/typescript/i18n/ja.json +31 -31
- package/lib/typescript/i18n/ko.json +31 -31
- package/lib/typescript/i18n/nl.json +31 -31
- package/lib/typescript/i18n/pt-BR.json +28 -28
- package/lib/typescript/i18n/ru.json +31 -31
- package/lib/typescript/i18n/tr.json +28 -28
- package/package.json +1 -1
- package/src/components/Message/MessageSimple/MessageContent.tsx +5 -0
- package/src/components/Message/MessageSimple/MessageFooter.tsx +10 -3
- package/src/components/Message/MessageSimple/MessagePinnedHeader.tsx +0 -3
- package/src/components/Message/MessageSimple/MessageSimple.tsx +28 -14
- package/src/components/Message/MessageSimple/__tests__/__snapshots__/MessagePinnedHeader.test.js.snap +0 -3
- package/src/components/Thread/__tests__/__snapshots__/Thread.test.js.snap +52 -20
- package/src/contexts/themeContext/utils/theme.ts +7 -4
- package/src/i18n/es.json +31 -31
- package/src/i18n/fr.json +31 -31
- package/src/i18n/he.json +31 -31
- package/src/i18n/hi.json +31 -31
- package/src/i18n/it.json +31 -31
- package/src/i18n/ja.json +31 -31
- package/src/i18n/ko.json +31 -31
- package/src/i18n/nl.json +31 -31
- package/src/i18n/pt-BR.json +28 -28
- package/src/i18n/ru.json +31 -31
- package/src/i18n/tr.json +28 -28
- package/src/version.json +1 -1
|
@@ -18,6 +18,13 @@ const styles = StyleSheet.create({
|
|
|
18
18
|
alignItems: 'flex-end',
|
|
19
19
|
flexDirection: 'row',
|
|
20
20
|
},
|
|
21
|
+
lastMessageContainer: {
|
|
22
|
+
marginBottom: 12,
|
|
23
|
+
},
|
|
24
|
+
messageGroupedSingleOrBottomContainer: {
|
|
25
|
+
marginBottom: 8,
|
|
26
|
+
},
|
|
27
|
+
messageGroupedTopContainer: {},
|
|
21
28
|
});
|
|
22
29
|
|
|
23
30
|
export type MessageSimplePropsWithContext<
|
|
@@ -32,7 +39,6 @@ export type MessageSimplePropsWithContext<
|
|
|
32
39
|
| 'myMessageTheme'
|
|
33
40
|
| 'MessageAvatar'
|
|
34
41
|
| 'MessageContent'
|
|
35
|
-
| 'MessagePinnedHeader'
|
|
36
42
|
| 'ReactionList'
|
|
37
43
|
>;
|
|
38
44
|
|
|
@@ -50,13 +56,17 @@ const MessageSimpleWithContext = <
|
|
|
50
56
|
message,
|
|
51
57
|
MessageAvatar,
|
|
52
58
|
MessageContent,
|
|
53
|
-
MessagePinnedHeader,
|
|
54
59
|
ReactionList,
|
|
55
60
|
} = props;
|
|
56
61
|
|
|
57
62
|
const {
|
|
58
63
|
theme: {
|
|
59
|
-
messageSimple: {
|
|
64
|
+
messageSimple: {
|
|
65
|
+
container,
|
|
66
|
+
lastMessageContainer,
|
|
67
|
+
messageGroupedSingleOrBottomContainer,
|
|
68
|
+
messageGroupedTopContainer,
|
|
69
|
+
},
|
|
60
70
|
},
|
|
61
71
|
} = useTheme();
|
|
62
72
|
|
|
@@ -65,23 +75,30 @@ const MessageSimpleWithContext = <
|
|
|
65
75
|
const isVeryLastMessage =
|
|
66
76
|
channel?.state.messages[channel?.state.messages.length - 1]?.id === message.id;
|
|
67
77
|
|
|
68
|
-
const
|
|
78
|
+
const messageGroupedSingleOrBottom =
|
|
79
|
+
groupStyles.includes('single') || groupStyles.includes('bottom');
|
|
69
80
|
|
|
70
81
|
const showReactions = hasReactions && ReactionList;
|
|
71
82
|
|
|
83
|
+
const lastMessageInMessageListStyles = [styles.lastMessageContainer, lastMessageContainer];
|
|
84
|
+
const messageGroupedSingleOrBottomStyles = [
|
|
85
|
+
styles.messageGroupedSingleOrBottomContainer,
|
|
86
|
+
messageGroupedSingleOrBottomContainer,
|
|
87
|
+
];
|
|
88
|
+
const messageGroupedTopStyles = [styles.messageGroupedTopContainer, messageGroupedTopContainer];
|
|
89
|
+
|
|
72
90
|
return (
|
|
73
91
|
<>
|
|
74
|
-
{message.pinned && <MessagePinnedHeader />}
|
|
75
92
|
<View
|
|
76
93
|
style={[
|
|
77
94
|
styles.container,
|
|
95
|
+
messageGroupedSingleOrBottom
|
|
96
|
+
? isVeryLastMessage && enableMessageGroupingByUser
|
|
97
|
+
? lastMessageInMessageListStyles
|
|
98
|
+
: messageGroupedSingleOrBottomStyles
|
|
99
|
+
: messageGroupedTopStyles,
|
|
78
100
|
{
|
|
79
101
|
justifyContent: alignment === 'left' ? 'flex-start' : 'flex-end',
|
|
80
|
-
marginBottom: hasMarginBottom
|
|
81
|
-
? isVeryLastMessage && enableMessageGroupingByUser
|
|
82
|
-
? 30
|
|
83
|
-
: 8
|
|
84
|
-
: 0,
|
|
85
102
|
marginTop: showReactions ? 2 : 0,
|
|
86
103
|
},
|
|
87
104
|
container,
|
|
@@ -136,8 +153,7 @@ const areEqual = <StreamChatGenerics extends DefaultStreamChatGenerics = Default
|
|
|
136
153
|
isPrevMessageTypeDeleted === isNextMessageTypeDeleted &&
|
|
137
154
|
prevMessage.status === nextMessage.status &&
|
|
138
155
|
prevMessage.type === nextMessage.type &&
|
|
139
|
-
prevMessage.text === nextMessage.text
|
|
140
|
-
prevMessage.pinned === nextMessage.pinned;
|
|
156
|
+
prevMessage.text === nextMessage.text;
|
|
141
157
|
if (!messageEqual) return false;
|
|
142
158
|
|
|
143
159
|
const isPrevQuotedMessageTypeDeleted = prevMessage.quoted_message?.type === 'deleted';
|
|
@@ -208,7 +224,6 @@ export const MessageSimple = <
|
|
|
208
224
|
enableMessageGroupingByUser,
|
|
209
225
|
MessageAvatar,
|
|
210
226
|
MessageContent,
|
|
211
|
-
MessagePinnedHeader,
|
|
212
227
|
myMessageTheme,
|
|
213
228
|
ReactionList,
|
|
214
229
|
} = useMessagesContext<StreamChatGenerics>();
|
|
@@ -225,7 +240,6 @@ export const MessageSimple = <
|
|
|
225
240
|
message,
|
|
226
241
|
MessageAvatar,
|
|
227
242
|
MessageContent,
|
|
228
|
-
MessagePinnedHeader,
|
|
229
243
|
myMessageTheme,
|
|
230
244
|
ReactionList,
|
|
231
245
|
}}
|
|
@@ -277,9 +277,14 @@ exports[`Thread should match thread snapshot 1`] = `
|
|
|
277
277
|
"alignItems": "flex-end",
|
|
278
278
|
"flexDirection": "row",
|
|
279
279
|
},
|
|
280
|
+
[
|
|
281
|
+
{
|
|
282
|
+
"marginBottom": 8,
|
|
283
|
+
},
|
|
284
|
+
{},
|
|
285
|
+
],
|
|
280
286
|
{
|
|
281
287
|
"justifyContent": "flex-start",
|
|
282
|
-
"marginBottom": 8,
|
|
283
288
|
"marginTop": 0,
|
|
284
289
|
},
|
|
285
290
|
{},
|
|
@@ -459,10 +464,13 @@ exports[`Thread should match thread snapshot 1`] = `
|
|
|
459
464
|
</View>
|
|
460
465
|
<View
|
|
461
466
|
style={
|
|
462
|
-
|
|
463
|
-
|
|
464
|
-
|
|
465
|
-
|
|
467
|
+
[
|
|
468
|
+
{
|
|
469
|
+
"flexDirection": "row",
|
|
470
|
+
"marginTop": 4,
|
|
471
|
+
},
|
|
472
|
+
{},
|
|
473
|
+
]
|
|
466
474
|
}
|
|
467
475
|
testID="message-status-time"
|
|
468
476
|
>
|
|
@@ -547,9 +555,14 @@ exports[`Thread should match thread snapshot 1`] = `
|
|
|
547
555
|
"alignItems": "flex-end",
|
|
548
556
|
"flexDirection": "row",
|
|
549
557
|
},
|
|
558
|
+
[
|
|
559
|
+
{
|
|
560
|
+
"marginBottom": 8,
|
|
561
|
+
},
|
|
562
|
+
{},
|
|
563
|
+
],
|
|
550
564
|
{
|
|
551
565
|
"justifyContent": "flex-start",
|
|
552
|
-
"marginBottom": 8,
|
|
553
566
|
"marginTop": 0,
|
|
554
567
|
},
|
|
555
568
|
{},
|
|
@@ -729,10 +742,13 @@ exports[`Thread should match thread snapshot 1`] = `
|
|
|
729
742
|
</View>
|
|
730
743
|
<View
|
|
731
744
|
style={
|
|
732
|
-
|
|
733
|
-
|
|
734
|
-
|
|
735
|
-
|
|
745
|
+
[
|
|
746
|
+
{
|
|
747
|
+
"flexDirection": "row",
|
|
748
|
+
"marginTop": 4,
|
|
749
|
+
},
|
|
750
|
+
{},
|
|
751
|
+
]
|
|
736
752
|
}
|
|
737
753
|
testID="message-status-time"
|
|
738
754
|
>
|
|
@@ -817,9 +833,14 @@ exports[`Thread should match thread snapshot 1`] = `
|
|
|
817
833
|
"alignItems": "flex-end",
|
|
818
834
|
"flexDirection": "row",
|
|
819
835
|
},
|
|
836
|
+
[
|
|
837
|
+
{
|
|
838
|
+
"marginBottom": 8,
|
|
839
|
+
},
|
|
840
|
+
{},
|
|
841
|
+
],
|
|
820
842
|
{
|
|
821
843
|
"justifyContent": "flex-start",
|
|
822
|
-
"marginBottom": 8,
|
|
823
844
|
"marginTop": 0,
|
|
824
845
|
},
|
|
825
846
|
{},
|
|
@@ -999,10 +1020,13 @@ exports[`Thread should match thread snapshot 1`] = `
|
|
|
999
1020
|
</View>
|
|
1000
1021
|
<View
|
|
1001
1022
|
style={
|
|
1002
|
-
|
|
1003
|
-
|
|
1004
|
-
|
|
1005
|
-
|
|
1023
|
+
[
|
|
1024
|
+
{
|
|
1025
|
+
"flexDirection": "row",
|
|
1026
|
+
"marginTop": 4,
|
|
1027
|
+
},
|
|
1028
|
+
{},
|
|
1029
|
+
]
|
|
1006
1030
|
}
|
|
1007
1031
|
testID="message-status-time"
|
|
1008
1032
|
>
|
|
@@ -1127,9 +1151,14 @@ exports[`Thread should match thread snapshot 1`] = `
|
|
|
1127
1151
|
"alignItems": "flex-end",
|
|
1128
1152
|
"flexDirection": "row",
|
|
1129
1153
|
},
|
|
1154
|
+
[
|
|
1155
|
+
{
|
|
1156
|
+
"marginBottom": 12,
|
|
1157
|
+
},
|
|
1158
|
+
{},
|
|
1159
|
+
],
|
|
1130
1160
|
{
|
|
1131
1161
|
"justifyContent": "flex-start",
|
|
1132
|
-
"marginBottom": 30,
|
|
1133
1162
|
"marginTop": 0,
|
|
1134
1163
|
},
|
|
1135
1164
|
{},
|
|
@@ -1309,10 +1338,13 @@ exports[`Thread should match thread snapshot 1`] = `
|
|
|
1309
1338
|
</View>
|
|
1310
1339
|
<View
|
|
1311
1340
|
style={
|
|
1312
|
-
|
|
1313
|
-
|
|
1314
|
-
|
|
1315
|
-
|
|
1341
|
+
[
|
|
1342
|
+
{
|
|
1343
|
+
"flexDirection": "row",
|
|
1344
|
+
"marginTop": 4,
|
|
1345
|
+
},
|
|
1346
|
+
{},
|
|
1347
|
+
]
|
|
1316
1348
|
}
|
|
1317
1349
|
testID="message-status-time"
|
|
1318
1350
|
>
|
|
@@ -470,10 +470,13 @@ export type Theme = {
|
|
|
470
470
|
shuffle: TextStyle;
|
|
471
471
|
title: TextStyle;
|
|
472
472
|
};
|
|
473
|
+
lastMessageContainer: ViewStyle;
|
|
473
474
|
loadingIndicator: {
|
|
474
475
|
container: ViewStyle;
|
|
475
476
|
roundedView: ViewStyle;
|
|
476
477
|
};
|
|
478
|
+
messageGroupedSingleOrBottomContainer: ViewStyle;
|
|
479
|
+
messageGroupedTopContainer: ViewStyle;
|
|
477
480
|
pinnedHeader: {
|
|
478
481
|
container: ViewStyle;
|
|
479
482
|
label: TextStyle;
|
|
@@ -957,10 +960,7 @@ export const defaultTheme: Theme = {
|
|
|
957
960
|
fontWeight: '700',
|
|
958
961
|
paddingRight: 6,
|
|
959
962
|
},
|
|
960
|
-
metaContainer: {
|
|
961
|
-
flexDirection: 'row',
|
|
962
|
-
marginTop: 4,
|
|
963
|
-
},
|
|
963
|
+
metaContainer: {},
|
|
964
964
|
metaText: {
|
|
965
965
|
fontSize: 12,
|
|
966
966
|
},
|
|
@@ -1012,10 +1012,13 @@ export const defaultTheme: Theme = {
|
|
|
1012
1012
|
shuffle: {},
|
|
1013
1013
|
title: {},
|
|
1014
1014
|
},
|
|
1015
|
+
lastMessageContainer: {},
|
|
1015
1016
|
loadingIndicator: {
|
|
1016
1017
|
container: {},
|
|
1017
1018
|
roundedView: {},
|
|
1018
1019
|
},
|
|
1020
|
+
messageGroupedSingleOrBottomContainer: {},
|
|
1021
|
+
messageGroupedTopContainer: {},
|
|
1019
1022
|
pinnedHeader: {
|
|
1020
1023
|
container: {},
|
|
1021
1024
|
label: {},
|
package/src/i18n/es.json
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
{
|
|
2
|
-
"1 Reply": "
|
|
3
|
-
"1 Thread Reply": "
|
|
2
|
+
"1 Reply": "",
|
|
3
|
+
"1 Thread Reply": "",
|
|
4
4
|
"Allow access to your Gallery": "",
|
|
5
5
|
"Allow camera access in device settings": "",
|
|
6
|
-
"Also send to channel": "
|
|
6
|
+
"Also send to channel": "",
|
|
7
7
|
"Are you sure you want to permanently delete this message?": "",
|
|
8
8
|
"Are you sure?": "",
|
|
9
9
|
"Block User": "",
|
|
@@ -18,62 +18,62 @@
|
|
|
18
18
|
"Edit Message": "",
|
|
19
19
|
"Editing Message": "",
|
|
20
20
|
"Emoji matching": "",
|
|
21
|
-
"Empty message...": "
|
|
22
|
-
"Error loading": "
|
|
23
|
-
"Error loading channel list...": "
|
|
24
|
-
"Error loading messages for this channel...": "
|
|
25
|
-
"Error while loading, please reload/refresh": "
|
|
26
|
-
"File type not supported": "",
|
|
21
|
+
"Empty message...": "",
|
|
22
|
+
"Error loading": "",
|
|
23
|
+
"Error loading channel list...": "",
|
|
24
|
+
"Error loading messages for this channel...": "",
|
|
25
|
+
"Error while loading, please reload/refresh": "",
|
|
26
|
+
"File type not supported": "Tipo de archivo no admitido",
|
|
27
27
|
"Flag": "",
|
|
28
28
|
"Flag Message": "",
|
|
29
29
|
"Flag action failed either due to a network issue or the message is already flagged": "",
|
|
30
|
-
"How about sending your first message to a friend?": "
|
|
30
|
+
"How about sending your first message to a friend?": "",
|
|
31
31
|
"Instant Commands": "",
|
|
32
|
-
"Let's start chatting!": "
|
|
33
|
-
"Links are disabled": "
|
|
34
|
-
"Loading channels...": "",
|
|
35
|
-
"Loading messages...": "",
|
|
36
|
-
"Loading...": "",
|
|
37
|
-
"Maximum file size upload limit reached. Please upload a file below {{MAX_FILE_SIZE_TO_UPLOAD_IN_MB}} MB.": "
|
|
32
|
+
"Let's start chatting!": "",
|
|
33
|
+
"Links are disabled": "",
|
|
34
|
+
"Loading channels...": "Cargando canales...",
|
|
35
|
+
"Loading messages...": "Cargando mensajes...",
|
|
36
|
+
"Loading...": "Cargando...",
|
|
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": "",
|
|
43
|
-
"Nothing yet...": "
|
|
42
|
+
"Not supported": "No admitido",
|
|
43
|
+
"Nothing yet...": "",
|
|
44
44
|
"Ok": "",
|
|
45
|
-
"Only visible to you": "
|
|
45
|
+
"Only visible to you": "",
|
|
46
46
|
"Open Settings": "",
|
|
47
47
|
"Photo": "Foto",
|
|
48
48
|
"Photos and Videos": "",
|
|
49
49
|
"Pin to Conversation": "",
|
|
50
|
-
"Pinned by": "
|
|
50
|
+
"Pinned by": "",
|
|
51
51
|
"Please enable access to your photos and videos so you can share them.": "",
|
|
52
52
|
"Please select a channel first": "",
|
|
53
53
|
"Reconnecting...": "Reconectando...",
|
|
54
54
|
"Reply": "",
|
|
55
|
-
"Reply to Message": "
|
|
55
|
+
"Reply to Message": "",
|
|
56
56
|
"Resend": "",
|
|
57
|
-
"Search GIFs": "
|
|
57
|
+
"Search GIFs": "",
|
|
58
58
|
"Select More Photos": "",
|
|
59
59
|
"Send Anyway": "",
|
|
60
|
-
"Send a message": "
|
|
61
|
-
"Sending links is not allowed in this conversation": "
|
|
62
|
-
"Slow mode ON": "
|
|
60
|
+
"Send a message": "",
|
|
61
|
+
"Sending links is not allowed in this conversation": "",
|
|
62
|
+
"Slow mode ON": "",
|
|
63
63
|
"The message has been reported to a moderator.": "",
|
|
64
64
|
"Thread Reply": "",
|
|
65
65
|
"Unblock User": "",
|
|
66
66
|
"Unknown User": "",
|
|
67
67
|
"Unmute User": "",
|
|
68
68
|
"Unpin from Conversation": "",
|
|
69
|
-
"Unread Messages": "
|
|
69
|
+
"Unread Messages": "",
|
|
70
70
|
"Video": "Video",
|
|
71
71
|
"You": "Tú",
|
|
72
72
|
"You can't send messages in this channel": "",
|
|
73
|
-
"{{ firstUser }} and {{ nonSelfUserLength }} more are typing": "
|
|
73
|
+
"{{ firstUser }} and {{ nonSelfUserLength }} more are typing": "",
|
|
74
74
|
"{{ index }} of {{ photoLength }}": "",
|
|
75
|
-
"{{ replyCount }} Replies": "
|
|
76
|
-
"{{ replyCount }} Thread Replies": "
|
|
77
|
-
"{{ user }} is typing": "
|
|
78
|
-
"🏙 Attachment...": "
|
|
75
|
+
"{{ replyCount }} Replies": "",
|
|
76
|
+
"{{ replyCount }} Thread Replies": "",
|
|
77
|
+
"{{ user }} is typing": "",
|
|
78
|
+
"🏙 Attachment...": ""
|
|
79
79
|
}
|
package/src/i18n/fr.json
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
{
|
|
2
|
-
"1 Reply": "
|
|
3
|
-
"1 Thread Reply": "
|
|
2
|
+
"1 Reply": "",
|
|
3
|
+
"1 Thread Reply": "",
|
|
4
4
|
"Allow access to your Gallery": "",
|
|
5
5
|
"Allow camera access in device settings": "",
|
|
6
|
-
"Also send to channel": "
|
|
6
|
+
"Also send to channel": "",
|
|
7
7
|
"Are you sure you want to permanently delete this message?": "",
|
|
8
8
|
"Are you sure?": "",
|
|
9
9
|
"Block User": "",
|
|
@@ -18,62 +18,62 @@
|
|
|
18
18
|
"Edit Message": "",
|
|
19
19
|
"Editing Message": "",
|
|
20
20
|
"Emoji matching": "",
|
|
21
|
-
"Empty message...": "
|
|
22
|
-
"Error loading": "
|
|
23
|
-
"Error loading channel list...": "
|
|
24
|
-
"Error loading messages for this channel...": "
|
|
25
|
-
"Error while loading, please reload/refresh": "
|
|
26
|
-
"File type not supported": "",
|
|
21
|
+
"Empty message...": "",
|
|
22
|
+
"Error loading": "",
|
|
23
|
+
"Error loading channel list...": "",
|
|
24
|
+
"Error loading messages for this channel...": "",
|
|
25
|
+
"Error while loading, please reload/refresh": "",
|
|
26
|
+
"File type not supported": "Le type de fichier n'est pas pris en charge",
|
|
27
27
|
"Flag": "",
|
|
28
28
|
"Flag Message": "",
|
|
29
29
|
"Flag action failed either due to a network issue or the message is already flagged": "",
|
|
30
|
-
"How about sending your first message to a friend?": "
|
|
30
|
+
"How about sending your first message to a friend?": "",
|
|
31
31
|
"Instant Commands": "",
|
|
32
|
-
"Let's start chatting!": "
|
|
33
|
-
"Links are disabled": "
|
|
34
|
-
"Loading channels...": "",
|
|
35
|
-
"Loading messages...": "",
|
|
36
|
-
"Loading...": "",
|
|
37
|
-
"Maximum file size upload limit reached. Please upload a file below {{MAX_FILE_SIZE_TO_UPLOAD_IN_MB}} MB.": "
|
|
32
|
+
"Let's start chatting!": "",
|
|
33
|
+
"Links are disabled": "",
|
|
34
|
+
"Loading channels...": "Chargement des canaux...",
|
|
35
|
+
"Loading messages...": "Chargement des messages...",
|
|
36
|
+
"Loading...": "Chargement...",
|
|
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": "",
|
|
43
|
-
"Nothing yet...": "
|
|
42
|
+
"Not supported": "Non pris en charge",
|
|
43
|
+
"Nothing yet...": "",
|
|
44
44
|
"Ok": "",
|
|
45
|
-
"Only visible to you": "
|
|
45
|
+
"Only visible to you": "",
|
|
46
46
|
"Open Settings": "",
|
|
47
47
|
"Photo": "Photo",
|
|
48
48
|
"Photos and Videos": "",
|
|
49
49
|
"Pin to Conversation": "",
|
|
50
|
-
"Pinned by": "
|
|
50
|
+
"Pinned by": "",
|
|
51
51
|
"Please enable access to your photos and videos so you can share them.": "",
|
|
52
52
|
"Please select a channel first": "",
|
|
53
53
|
"Reconnecting...": "Se Reconnecter...",
|
|
54
54
|
"Reply": "",
|
|
55
|
-
"Reply to Message": "
|
|
55
|
+
"Reply to Message": "",
|
|
56
56
|
"Resend": "",
|
|
57
|
-
"Search GIFs": "
|
|
57
|
+
"Search GIFs": "",
|
|
58
58
|
"Select More Photos": "",
|
|
59
59
|
"Send Anyway": "",
|
|
60
|
-
"Send a message": "
|
|
61
|
-
"Sending links is not allowed in this conversation": "
|
|
62
|
-
"Slow mode ON": "
|
|
60
|
+
"Send a message": "",
|
|
61
|
+
"Sending links is not allowed in this conversation": "",
|
|
62
|
+
"Slow mode ON": "",
|
|
63
63
|
"The message has been reported to a moderator.": "",
|
|
64
64
|
"Thread Reply": "",
|
|
65
65
|
"Unblock User": "",
|
|
66
66
|
"Unknown User": "",
|
|
67
67
|
"Unmute User": "",
|
|
68
68
|
"Unpin from Conversation": "",
|
|
69
|
-
"Unread Messages": "
|
|
69
|
+
"Unread Messages": "",
|
|
70
70
|
"Video": "Vidéo",
|
|
71
71
|
"You": "Toi",
|
|
72
72
|
"You can't send messages in this channel": "",
|
|
73
|
-
"{{ firstUser }} and {{ nonSelfUserLength }} more are typing": "
|
|
73
|
+
"{{ firstUser }} and {{ nonSelfUserLength }} more are typing": "",
|
|
74
74
|
"{{ index }} of {{ photoLength }}": "",
|
|
75
|
-
"{{ replyCount }} Replies": "
|
|
76
|
-
"{{ replyCount }} Thread Replies": "
|
|
77
|
-
"{{ user }} is typing": "
|
|
78
|
-
"🏙 Attachment...": "
|
|
75
|
+
"{{ replyCount }} Replies": "",
|
|
76
|
+
"{{ replyCount }} Thread Replies": "",
|
|
77
|
+
"{{ user }} is typing": "",
|
|
78
|
+
"🏙 Attachment...": ""
|
|
79
79
|
}
|
package/src/i18n/he.json
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
{
|
|
2
|
-
"1 Reply": "
|
|
3
|
-
"1 Thread Reply": "
|
|
2
|
+
"1 Reply": "",
|
|
3
|
+
"1 Thread Reply": "",
|
|
4
4
|
"Allow access to your Gallery": "",
|
|
5
5
|
"Allow camera access in device settings": "",
|
|
6
|
-
"Also send to channel": "
|
|
6
|
+
"Also send to channel": "",
|
|
7
7
|
"Are you sure you want to permanently delete this message?": "",
|
|
8
8
|
"Are you sure?": "",
|
|
9
9
|
"Block User": "",
|
|
@@ -18,62 +18,62 @@
|
|
|
18
18
|
"Edit Message": "",
|
|
19
19
|
"Editing Message": "",
|
|
20
20
|
"Emoji matching": "",
|
|
21
|
-
"Empty message...": "
|
|
22
|
-
"Error loading": "
|
|
23
|
-
"Error loading channel list...": "
|
|
24
|
-
"Error loading messages for this channel...": "
|
|
25
|
-
"Error while loading, please reload/refresh": "
|
|
26
|
-
"File type not supported": "",
|
|
21
|
+
"Empty message...": "",
|
|
22
|
+
"Error loading": "",
|
|
23
|
+
"Error loading channel list...": "",
|
|
24
|
+
"Error loading messages for this channel...": "",
|
|
25
|
+
"Error while loading, please reload/refresh": "",
|
|
26
|
+
"File type not supported": "סוג הקובץ אינו נתמך",
|
|
27
27
|
"Flag": "",
|
|
28
28
|
"Flag Message": "",
|
|
29
29
|
"Flag action failed either due to a network issue or the message is already flagged": "",
|
|
30
|
-
"How about sending your first message to a friend?": "
|
|
30
|
+
"How about sending your first message to a friend?": "",
|
|
31
31
|
"Instant Commands": "",
|
|
32
|
-
"Let's start chatting!": "
|
|
33
|
-
"Links are disabled": "
|
|
34
|
-
"Loading channels...": "",
|
|
35
|
-
"Loading messages...": "",
|
|
36
|
-
"Loading...": "",
|
|
37
|
-
"Maximum file size upload limit reached. Please upload a file below {{MAX_FILE_SIZE_TO_UPLOAD_IN_MB}} MB.": "
|
|
32
|
+
"Let's start chatting!": "",
|
|
33
|
+
"Links are disabled": "",
|
|
34
|
+
"Loading channels...": "השיחות בטעינה...",
|
|
35
|
+
"Loading messages...": "ההודעות בטעינה..",
|
|
36
|
+
"Loading...": "טוען...",
|
|
37
|
+
"Maximum file size upload limit reached. Please upload a file below {{MAX_FILE_SIZE_TO_UPLOAD_IN_MB}} MB.": "",
|
|
38
38
|
"Message Reactions": "",
|
|
39
39
|
"Message deleted": "ההודעה נמחקה",
|
|
40
40
|
"Message flagged": "",
|
|
41
41
|
"Mute User": "",
|
|
42
|
-
"Not supported": "",
|
|
43
|
-
"Nothing yet...": "
|
|
42
|
+
"Not supported": "לא נתמך",
|
|
43
|
+
"Nothing yet...": "",
|
|
44
44
|
"Ok": "",
|
|
45
|
-
"Only visible to you": "
|
|
45
|
+
"Only visible to you": "",
|
|
46
46
|
"Open Settings": "",
|
|
47
47
|
"Photo": "תמונה",
|
|
48
48
|
"Photos and Videos": "",
|
|
49
49
|
"Pin to Conversation": "",
|
|
50
|
-
"Pinned by": "
|
|
50
|
+
"Pinned by": "",
|
|
51
51
|
"Please enable access to your photos and videos so you can share them.": "",
|
|
52
52
|
"Please select a channel first": "",
|
|
53
53
|
"Reconnecting...": "מתחבר מחדש...",
|
|
54
54
|
"Reply": "",
|
|
55
|
-
"Reply to Message": "
|
|
55
|
+
"Reply to Message": "",
|
|
56
56
|
"Resend": "",
|
|
57
|
-
"Search GIFs": "
|
|
57
|
+
"Search GIFs": "",
|
|
58
58
|
"Select More Photos": "",
|
|
59
59
|
"Send Anyway": "",
|
|
60
|
-
"Send a message": "
|
|
61
|
-
"Sending links is not allowed in this conversation": "
|
|
62
|
-
"Slow mode ON": "
|
|
60
|
+
"Send a message": "",
|
|
61
|
+
"Sending links is not allowed in this conversation": "",
|
|
62
|
+
"Slow mode ON": "",
|
|
63
63
|
"The message has been reported to a moderator.": "",
|
|
64
64
|
"Thread Reply": "",
|
|
65
65
|
"Unblock User": "",
|
|
66
66
|
"Unknown User": "",
|
|
67
67
|
"Unmute User": "",
|
|
68
68
|
"Unpin from Conversation": "",
|
|
69
|
-
"Unread Messages": "
|
|
69
|
+
"Unread Messages": "",
|
|
70
70
|
"Video": "וִידֵאוֹ",
|
|
71
71
|
"You": "את/ה",
|
|
72
72
|
"You can't send messages in this channel": "",
|
|
73
|
-
"{{ firstUser }} and {{ nonSelfUserLength }} more are typing": "
|
|
73
|
+
"{{ firstUser }} and {{ nonSelfUserLength }} more are typing": "",
|
|
74
74
|
"{{ index }} of {{ photoLength }}": "",
|
|
75
|
-
"{{ replyCount }} Replies": "
|
|
76
|
-
"{{ replyCount }} Thread Replies": "
|
|
77
|
-
"{{ user }} is typing": "
|
|
78
|
-
"🏙 Attachment...": "
|
|
75
|
+
"{{ replyCount }} Replies": "",
|
|
76
|
+
"{{ replyCount }} Thread Replies": "",
|
|
77
|
+
"{{ user }} is typing": "",
|
|
78
|
+
"🏙 Attachment...": ""
|
|
79
79
|
}
|