stream-chat-react-native-core 5.26.0-beta.6 → 5.26.0
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/i18n/es.json +40 -40
- package/lib/commonjs/i18n/fr.json +40 -40
- package/lib/commonjs/i18n/he.json +40 -40
- package/lib/commonjs/i18n/hi.json +40 -40
- package/lib/commonjs/i18n/it.json +40 -40
- package/lib/commonjs/i18n/ja.json +40 -40
- package/lib/commonjs/i18n/ko.json +40 -40
- package/lib/commonjs/i18n/nl.json +40 -40
- package/lib/commonjs/i18n/pt-BR.json +40 -40
- package/lib/commonjs/i18n/ru.json +40 -40
- package/lib/commonjs/i18n/tr.json +40 -40
- package/lib/commonjs/store/QuickSqliteClient.js +37 -2
- package/lib/commonjs/store/QuickSqliteClient.js.map +1 -1
- package/lib/commonjs/store/apis/addPendingTask.js +16 -4
- package/lib/commonjs/store/apis/addPendingTask.js.map +1 -1
- package/lib/commonjs/store/apis/deleteChannel.js +4 -0
- package/lib/commonjs/store/apis/deleteChannel.js.map +1 -1
- package/lib/commonjs/store/apis/deleteMember.js +5 -0
- package/lib/commonjs/store/apis/deleteMember.js.map +1 -1
- package/lib/commonjs/store/apis/deleteMessage.js +4 -0
- package/lib/commonjs/store/apis/deleteMessage.js.map +1 -1
- package/lib/commonjs/store/apis/deleteMessagesForChannel.js +4 -0
- package/lib/commonjs/store/apis/deleteMessagesForChannel.js.map +1 -1
- package/lib/commonjs/store/apis/deletePendingTask.js +3 -0
- package/lib/commonjs/store/apis/deletePendingTask.js.map +1 -1
- package/lib/commonjs/store/apis/deleteReaction.js +5 -0
- package/lib/commonjs/store/apis/deleteReaction.js.map +1 -1
- package/lib/commonjs/store/apis/deleteReactions.js +5 -3
- package/lib/commonjs/store/apis/deleteReactions.js.map +1 -1
- package/lib/commonjs/store/apis/getAllChannelIds.js +2 -0
- package/lib/commonjs/store/apis/getAllChannelIds.js.map +1 -1
- package/lib/commonjs/store/apis/getAppSettings.js +3 -0
- package/lib/commonjs/store/apis/getAppSettings.js.map +1 -1
- package/lib/commonjs/store/apis/getChannelMessages.js +5 -0
- package/lib/commonjs/store/apis/getChannelMessages.js.map +1 -1
- package/lib/commonjs/store/apis/getChannels.js +5 -0
- package/lib/commonjs/store/apis/getChannels.js.map +1 -1
- package/lib/commonjs/store/apis/getChannelsForFilterSort.js +5 -0
- package/lib/commonjs/store/apis/getChannelsForFilterSort.js.map +1 -1
- package/lib/commonjs/store/apis/getLastSyncedAt.js +3 -0
- package/lib/commonjs/store/apis/getLastSyncedAt.js.map +1 -1
- package/lib/commonjs/store/apis/getMembers.js +4 -0
- package/lib/commonjs/store/apis/getMembers.js.map +1 -1
- package/lib/commonjs/store/apis/getPendingTasks.js +3 -0
- package/lib/commonjs/store/apis/getPendingTasks.js.map +1 -1
- package/lib/commonjs/store/apis/getReads.js +4 -0
- package/lib/commonjs/store/apis/getReads.js.map +1 -1
- package/lib/commonjs/store/apis/insertReaction.js +6 -1
- package/lib/commonjs/store/apis/insertReaction.js.map +1 -1
- package/lib/commonjs/store/apis/queries/selectChannelIdsForFilterSort.js +3 -0
- package/lib/commonjs/store/apis/queries/selectChannelIdsForFilterSort.js.map +1 -1
- package/lib/commonjs/store/apis/queries/selectChannels.js +3 -0
- package/lib/commonjs/store/apis/queries/selectChannels.js.map +1 -1
- package/lib/commonjs/store/apis/queries/selectMembersForChannels.js +3 -0
- package/lib/commonjs/store/apis/queries/selectMembersForChannels.js.map +1 -1
- package/lib/commonjs/store/apis/queries/selectMessagesForChannels.js +3 -0
- package/lib/commonjs/store/apis/queries/selectMessagesForChannels.js.map +1 -1
- package/lib/commonjs/store/apis/queries/selectReactionsForMessages.js +3 -0
- package/lib/commonjs/store/apis/queries/selectReactionsForMessages.js.map +1 -1
- package/lib/commonjs/store/apis/queries/selectReadsForChannels.js +3 -0
- package/lib/commonjs/store/apis/queries/selectReadsForChannels.js.map +1 -1
- package/lib/commonjs/store/apis/updateMessage.js +18 -4
- package/lib/commonjs/store/apis/updateMessage.js.map +1 -1
- package/lib/commonjs/store/apis/updateReaction.js +12 -1
- package/lib/commonjs/store/apis/updateReaction.js.map +1 -1
- package/lib/commonjs/store/apis/upsertAppSettings.js +7 -1
- package/lib/commonjs/store/apis/upsertAppSettings.js.map +1 -1
- package/lib/commonjs/store/apis/upsertChannelData.js +6 -1
- package/lib/commonjs/store/apis/upsertChannelData.js.map +1 -1
- package/lib/commonjs/store/apis/upsertChannels.js +6 -3
- package/lib/commonjs/store/apis/upsertChannels.js.map +1 -1
- package/lib/commonjs/store/apis/upsertCidsForQuery.js +12 -5
- package/lib/commonjs/store/apis/upsertCidsForQuery.js.map +1 -1
- package/lib/commonjs/store/apis/upsertMembers.js +15 -3
- package/lib/commonjs/store/apis/upsertMembers.js.map +1 -1
- package/lib/commonjs/store/apis/upsertMessages.js +20 -8
- package/lib/commonjs/store/apis/upsertMessages.js.map +1 -1
- package/lib/commonjs/store/apis/upsertReads.js +18 -3
- package/lib/commonjs/store/apis/upsertReads.js.map +1 -1
- package/lib/commonjs/store/apis/upsertUserSyncStatus.js +4 -0
- package/lib/commonjs/store/apis/upsertUserSyncStatus.js.map +1 -1
- package/lib/commonjs/version.json +1 -1
- package/lib/module/i18n/es.json +40 -40
- package/lib/module/i18n/fr.json +40 -40
- package/lib/module/i18n/he.json +40 -40
- package/lib/module/i18n/hi.json +40 -40
- package/lib/module/i18n/it.json +40 -40
- package/lib/module/i18n/ja.json +40 -40
- package/lib/module/i18n/ko.json +40 -40
- package/lib/module/i18n/nl.json +40 -40
- package/lib/module/i18n/pt-BR.json +40 -40
- package/lib/module/i18n/ru.json +40 -40
- package/lib/module/i18n/tr.json +40 -40
- package/lib/module/store/QuickSqliteClient.js +37 -2
- package/lib/module/store/QuickSqliteClient.js.map +1 -1
- package/lib/module/store/apis/addPendingTask.js +16 -4
- package/lib/module/store/apis/addPendingTask.js.map +1 -1
- package/lib/module/store/apis/deleteChannel.js +4 -0
- package/lib/module/store/apis/deleteChannel.js.map +1 -1
- package/lib/module/store/apis/deleteMember.js +5 -0
- package/lib/module/store/apis/deleteMember.js.map +1 -1
- package/lib/module/store/apis/deleteMessage.js +4 -0
- package/lib/module/store/apis/deleteMessage.js.map +1 -1
- package/lib/module/store/apis/deleteMessagesForChannel.js +4 -0
- package/lib/module/store/apis/deleteMessagesForChannel.js.map +1 -1
- package/lib/module/store/apis/deletePendingTask.js +3 -0
- package/lib/module/store/apis/deletePendingTask.js.map +1 -1
- package/lib/module/store/apis/deleteReaction.js +5 -0
- package/lib/module/store/apis/deleteReaction.js.map +1 -1
- package/lib/module/store/apis/deleteReactions.js +5 -3
- package/lib/module/store/apis/deleteReactions.js.map +1 -1
- package/lib/module/store/apis/getAllChannelIds.js +2 -0
- package/lib/module/store/apis/getAllChannelIds.js.map +1 -1
- package/lib/module/store/apis/getAppSettings.js +3 -0
- package/lib/module/store/apis/getAppSettings.js.map +1 -1
- package/lib/module/store/apis/getChannelMessages.js +5 -0
- package/lib/module/store/apis/getChannelMessages.js.map +1 -1
- package/lib/module/store/apis/getChannels.js +5 -0
- package/lib/module/store/apis/getChannels.js.map +1 -1
- package/lib/module/store/apis/getChannelsForFilterSort.js +5 -0
- package/lib/module/store/apis/getChannelsForFilterSort.js.map +1 -1
- package/lib/module/store/apis/getLastSyncedAt.js +3 -0
- package/lib/module/store/apis/getLastSyncedAt.js.map +1 -1
- package/lib/module/store/apis/getMembers.js +4 -0
- package/lib/module/store/apis/getMembers.js.map +1 -1
- package/lib/module/store/apis/getPendingTasks.js +3 -0
- package/lib/module/store/apis/getPendingTasks.js.map +1 -1
- package/lib/module/store/apis/getReads.js +4 -0
- package/lib/module/store/apis/getReads.js.map +1 -1
- package/lib/module/store/apis/insertReaction.js +6 -1
- package/lib/module/store/apis/insertReaction.js.map +1 -1
- package/lib/module/store/apis/queries/selectChannelIdsForFilterSort.js +3 -0
- package/lib/module/store/apis/queries/selectChannelIdsForFilterSort.js.map +1 -1
- package/lib/module/store/apis/queries/selectChannels.js +3 -0
- package/lib/module/store/apis/queries/selectChannels.js.map +1 -1
- package/lib/module/store/apis/queries/selectMembersForChannels.js +3 -0
- package/lib/module/store/apis/queries/selectMembersForChannels.js.map +1 -1
- package/lib/module/store/apis/queries/selectMessagesForChannels.js +3 -0
- package/lib/module/store/apis/queries/selectMessagesForChannels.js.map +1 -1
- package/lib/module/store/apis/queries/selectReactionsForMessages.js +3 -0
- package/lib/module/store/apis/queries/selectReactionsForMessages.js.map +1 -1
- package/lib/module/store/apis/queries/selectReadsForChannels.js +3 -0
- package/lib/module/store/apis/queries/selectReadsForChannels.js.map +1 -1
- package/lib/module/store/apis/updateMessage.js +18 -4
- package/lib/module/store/apis/updateMessage.js.map +1 -1
- package/lib/module/store/apis/updateReaction.js +12 -1
- package/lib/module/store/apis/updateReaction.js.map +1 -1
- package/lib/module/store/apis/upsertAppSettings.js +7 -1
- package/lib/module/store/apis/upsertAppSettings.js.map +1 -1
- package/lib/module/store/apis/upsertChannelData.js +6 -1
- package/lib/module/store/apis/upsertChannelData.js.map +1 -1
- package/lib/module/store/apis/upsertChannels.js +6 -3
- package/lib/module/store/apis/upsertChannels.js.map +1 -1
- package/lib/module/store/apis/upsertCidsForQuery.js +12 -5
- package/lib/module/store/apis/upsertCidsForQuery.js.map +1 -1
- package/lib/module/store/apis/upsertMembers.js +15 -3
- package/lib/module/store/apis/upsertMembers.js.map +1 -1
- package/lib/module/store/apis/upsertMessages.js +20 -8
- package/lib/module/store/apis/upsertMessages.js.map +1 -1
- package/lib/module/store/apis/upsertReads.js +18 -3
- package/lib/module/store/apis/upsertReads.js.map +1 -1
- package/lib/module/store/apis/upsertUserSyncStatus.js +4 -0
- package/lib/module/store/apis/upsertUserSyncStatus.js.map +1 -1
- package/lib/module/version.json +1 -1
- package/lib/typescript/components/Message/hooks/useMessageActions.d.ts +1 -1
- package/lib/typescript/i18n/es.json +40 -40
- package/lib/typescript/i18n/fr.json +40 -40
- package/lib/typescript/i18n/he.json +40 -40
- package/lib/typescript/i18n/hi.json +40 -40
- package/lib/typescript/i18n/it.json +40 -40
- package/lib/typescript/i18n/ja.json +40 -40
- package/lib/typescript/i18n/ko.json +40 -40
- package/lib/typescript/i18n/nl.json +40 -40
- package/lib/typescript/i18n/pt-BR.json +40 -40
- package/lib/typescript/i18n/ru.json +40 -40
- package/lib/typescript/i18n/tr.json +40 -40
- package/lib/typescript/store/QuickSqliteClient.d.ts +2 -0
- package/lib/typescript/store/apis/upsertMessages.d.ts +1 -2
- package/package.json +1 -1
- package/src/i18n/es.json +40 -40
- package/src/i18n/fr.json +40 -40
- package/src/i18n/he.json +40 -40
- package/src/i18n/hi.json +40 -40
- package/src/i18n/it.json +40 -40
- package/src/i18n/ja.json +40 -40
- package/src/i18n/ko.json +40 -40
- package/src/i18n/nl.json +40 -40
- package/src/i18n/pt-BR.json +40 -40
- package/src/i18n/ru.json +40 -40
- package/src/i18n/tr.json +40 -40
- package/src/store/QuickSqliteClient.ts +40 -3
- package/src/store/apis/addPendingTask.ts +20 -1
- package/src/store/apis/deleteChannel.ts +5 -0
- package/src/store/apis/deleteMember.ts +6 -0
- package/src/store/apis/deleteMessage.ts +6 -0
- package/src/store/apis/deleteMessagesForChannel.ts +6 -0
- package/src/store/apis/deletePendingTask.ts +4 -0
- package/src/store/apis/deleteReaction.ts +6 -0
- package/src/store/apis/deleteReactions.ts +5 -6
- package/src/store/apis/getAllChannelIds.ts +3 -0
- package/src/store/apis/getAppSettings.ts +3 -0
- package/src/store/apis/getChannelMessages.ts +5 -0
- package/src/store/apis/getChannels.ts +2 -0
- package/src/store/apis/getChannelsForFilterSort.ts +4 -0
- package/src/store/apis/getLastSyncedAt.ts +1 -0
- package/src/store/apis/getMembers.ts +2 -0
- package/src/store/apis/getPendingTasks.ts +1 -0
- package/src/store/apis/getReads.ts +2 -0
- package/src/store/apis/insertReaction.ts +8 -1
- package/src/store/apis/queries/selectChannelIdsForFilterSort.ts +5 -0
- package/src/store/apis/queries/selectChannels.ts +4 -0
- package/src/store/apis/queries/selectMembersForChannels.ts +4 -0
- package/src/store/apis/queries/selectMessagesForChannels.ts +4 -0
- package/src/store/apis/queries/selectReactionsForMessages.ts +4 -0
- package/src/store/apis/queries/selectReadsForChannels.ts +5 -0
- package/src/store/apis/updateMessage.ts +22 -4
- package/src/store/apis/updateReaction.ts +15 -1
- package/src/store/apis/upsertAppSettings.ts +8 -1
- package/src/store/apis/upsertChannelData.ts +6 -1
- package/src/store/apis/upsertChannels.ts +6 -1
- package/src/store/apis/upsertCidsForQuery.ts +10 -2
- package/src/store/apis/upsertMembers.ts +16 -10
- package/src/store/apis/upsertMessages.ts +21 -11
- package/src/store/apis/upsertReads.ts +13 -10
- package/src/store/apis/upsertUserSyncStatus.ts +5 -0
- package/src/version.json +1 -1
package/lib/module/i18n/nl.json
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
{
|
|
2
|
-
"1 Reply": "",
|
|
3
|
-
"1 Thread Reply": "",
|
|
4
|
-
"Allow access to your Gallery": "",
|
|
5
|
-
"Allow camera access in device settings": "",
|
|
2
|
+
"1 Reply": "1 Antwoord",
|
|
3
|
+
"1 Thread Reply": "1 thread antwoord",
|
|
4
|
+
"Allow access to your Gallery": "Geef toegang tot uw galerij",
|
|
5
|
+
"Allow camera access in device settings": "Sta cameratoegang toe in de apparaatinstellingen",
|
|
6
6
|
"Also send to channel": "Stuur ook naar kanaal",
|
|
7
7
|
"Are you sure you want to permanently delete this message?": "Weet u zeker dat u dit bericht definitief wilt verwijderen?",
|
|
8
8
|
"Are you sure?": "Weet je het zeker?",
|
|
@@ -13,67 +13,67 @@
|
|
|
13
13
|
"Copy Message": "Bericht kopiëren",
|
|
14
14
|
"Delete": "Verwijderen",
|
|
15
15
|
"Delete Message": "Verwijder bericht",
|
|
16
|
-
"Device camera is used to take photos or videos.": "",
|
|
16
|
+
"Device camera is used to take photos or videos.": "De camera van het apparaat wordt gebruikt om foto's of video's te maken.",
|
|
17
17
|
"Do you want to send a copy of this message to a moderator for further investigation?": "Wil je een kopie van dit bericht naar een moderator sturen voor verder onderzoek?",
|
|
18
18
|
"Edit Message": "Pas bericht aan",
|
|
19
19
|
"Editing Message": "Bericht aanpassen",
|
|
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": "",
|
|
20
|
+
"Emoji matching": "Emoji-overeenkomsten",
|
|
21
|
+
"Empty message...": "Leeg bericht...",
|
|
22
|
+
"Error loading": "Probleem bij het laden",
|
|
23
|
+
"Error loading channel list...": "Probleem bij het laden van de kanalen...",
|
|
24
|
+
"Error loading messages for this channel...": "Probleem bij het laden van de berichten in dit kanaal...",
|
|
25
|
+
"Error while loading, please reload/refresh": "Probleem bij het laden, probeer opnieuw",
|
|
26
|
+
"File type not supported": "Bestandstype niet ondersteund",
|
|
27
27
|
"Flag": "Markeer",
|
|
28
28
|
"Flag Message": "Markeer bericht",
|
|
29
29
|
"Flag action failed either due to a network issue or the message is already flagged": "Rapporteren mislukt door een netwerk fout of het berich is al gerapporteerd",
|
|
30
|
-
"How about sending your first message to a friend?": "",
|
|
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.": "",
|
|
30
|
+
"How about sending your first message to a friend?": "Wat dacht je ervan om je eerste bericht naar een vriend te sturen?",
|
|
31
|
+
"Instant Commands": "Directe Opdrachten",
|
|
32
|
+
"Let's start chatting!": "Laten we beginnen met chatten!",
|
|
33
|
+
"Links are disabled": "Het versturen van links staat uit",
|
|
34
|
+
"Loading channels...": "Kanalen aan het laden...",
|
|
35
|
+
"Loading messages...": "Berichten aan het laden...",
|
|
36
|
+
"Loading...": "Aan het laden...",
|
|
37
|
+
"Maximum file size upload limit reached. Please upload a file below {{MAX_FILE_SIZE_TO_UPLOAD_IN_MB}} MB.": "Maximale uploadlimiet voor bestandsgrootte bereikt. Upload een bestand van minder dan {{MAX_FILE_SIZE_TO_UPLOAD_IN_MB}} MB.",
|
|
38
38
|
"Message Reactions": "Bericht Reacties",
|
|
39
|
-
"Message deleted": "",
|
|
39
|
+
"Message deleted": "Bericht verwijderd",
|
|
40
40
|
"Message flagged": "Bericht gemarkeerd",
|
|
41
41
|
"Mute User": "Gebruiker dempen",
|
|
42
|
-
"Not supported": "",
|
|
43
|
-
"Nothing yet...": "",
|
|
42
|
+
"Not supported": "niet ondersteund",
|
|
43
|
+
"Nothing yet...": "Nog niets...",
|
|
44
44
|
"Ok": "Oké",
|
|
45
|
-
"Only visible to you": "",
|
|
46
|
-
"Open Settings": "",
|
|
45
|
+
"Only visible to you": "Alleen zichtbaar voor jou",
|
|
46
|
+
"Open Settings": "Open instellingen",
|
|
47
47
|
"Photo": "Foto",
|
|
48
|
-
"Photos and Videos": "",
|
|
48
|
+
"Photos and Videos": "Foto's en video's",
|
|
49
49
|
"Pin to Conversation": "Vastmaken aan gesprek",
|
|
50
|
-
"Pinned by": "",
|
|
51
|
-
"Please enable access to your photos and videos so you can share them.": "",
|
|
52
|
-
"Please select a channel first": "",
|
|
53
|
-
"Reconnecting...": "",
|
|
50
|
+
"Pinned by": "Vastgemaakt door",
|
|
51
|
+
"Please enable access to your photos and videos so you can share them.": "Schakel toegang tot uw foto's en video's in zodat u ze kunt delen.",
|
|
52
|
+
"Please select a channel first": "Selecteer eerst een kanaal",
|
|
53
|
+
"Reconnecting...": "Opnieuw Verbinding Maken...",
|
|
54
54
|
"Reply": "Antwoord",
|
|
55
55
|
"Reply to Message": "Beantwoord bericht",
|
|
56
56
|
"Resend": "Opnieuw versturen",
|
|
57
57
|
"Search GIFs": "Zoek GIF's",
|
|
58
|
-
"Select More Photos": "",
|
|
58
|
+
"Select More Photos": "Selecteer Meer foto's",
|
|
59
59
|
"Send Anyway": "Toch verzenden",
|
|
60
60
|
"Send a message": "Stuur een bericht",
|
|
61
|
-
"Sending links is not allowed in this conversation": "",
|
|
61
|
+
"Sending links is not allowed in this conversation": "In dit gesprek is het niet toegestaan links te versturen",
|
|
62
62
|
"Slow mode ON": "Langzame modus aan",
|
|
63
63
|
"The message has been reported to a moderator.": "Het bericht is gerapporteerd aan een moderator.",
|
|
64
64
|
"Thread Reply": "Discussie beantwoorden",
|
|
65
65
|
"Unblock User": "Deblokkeer gebruiker",
|
|
66
|
-
"Unknown User": "",
|
|
66
|
+
"Unknown User": "Onbekende gebruiker",
|
|
67
67
|
"Unmute User": "Dempen van gebruiker opheffen",
|
|
68
68
|
"Unpin from Conversation": "Losmaken van gesprek",
|
|
69
|
-
"Unread Messages": "",
|
|
69
|
+
"Unread Messages": "Ongelezen Berichten",
|
|
70
70
|
"Video": "Video",
|
|
71
|
-
"You": "",
|
|
72
|
-
"You can't send messages in this channel": "",
|
|
71
|
+
"You": "U",
|
|
72
|
+
"You can't send messages in this channel": "Je kan geen berichten sturen in dit kanaal",
|
|
73
73
|
"{{ firstUser }} and {{ nonSelfUserLength }} more are typing": "{{ firstUser }} en {{ nonSelfUserLength }} anderen zijn aan het typen",
|
|
74
|
-
"{{ index }} of {{ photoLength }}": "",
|
|
75
|
-
"{{ replyCount }} Replies": "",
|
|
76
|
-
"{{ replyCount }} Thread Replies": "",
|
|
74
|
+
"{{ index }} of {{ photoLength }}": "{{ index }} van {{ photoLength }}",
|
|
75
|
+
"{{ replyCount }} Replies": "{{ replyCount }} Antwoorden",
|
|
76
|
+
"{{ replyCount }} Thread Replies": "{{replyCount}} Discussiereacties",
|
|
77
77
|
"{{ user }} is typing": "{{ user }} is aan het typen",
|
|
78
|
-
"🏙 Attachment...": ""
|
|
78
|
+
"🏙 Attachment...": "🏙 Bijlage..."
|
|
79
79
|
}
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
{
|
|
2
|
-
"1 Reply": "",
|
|
3
|
-
"1 Thread Reply": "",
|
|
4
|
-
"Allow access to your Gallery": "",
|
|
5
|
-
"Allow camera access in device settings": "",
|
|
2
|
+
"1 Reply": "1 Resposta",
|
|
3
|
+
"1 Thread Reply": "1 Resposta de Thread",
|
|
4
|
+
"Allow access to your Gallery": "Permitir acesso à sua Galeria",
|
|
5
|
+
"Allow camera access in device settings": "Permitir acesso à câmera nas configurações do dispositivo",
|
|
6
6
|
"Also send to channel": "Também enviar para o canal",
|
|
7
7
|
"Are you sure you want to permanently delete this message?": "Tem certeza de que deseja excluir esta mensagem permanentemente?",
|
|
8
8
|
"Are you sure?": "Tem certeza?",
|
|
@@ -13,67 +13,67 @@
|
|
|
13
13
|
"Copy Message": "Copiar Mensagem",
|
|
14
14
|
"Delete": "Excluir",
|
|
15
15
|
"Delete Message": "Excluir Mensagem",
|
|
16
|
-
"Device camera is used to take photos or videos.": "",
|
|
16
|
+
"Device camera is used to take photos or videos.": "A câmera do dispositivo é usada para tirar fotos ou vídeos.",
|
|
17
17
|
"Do you want to send a copy of this message to a moderator for further investigation?": "Deseja enviar uma cópia desta mensagem para um moderador para investigação adicional?",
|
|
18
18
|
"Edit Message": "Editar Mensagem",
|
|
19
19
|
"Editing Message": "Editando Mensagem",
|
|
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": "",
|
|
20
|
+
"Emoji matching": "Correspondência de Emoji",
|
|
21
|
+
"Empty message...": "Mensagem vazia...",
|
|
22
|
+
"Error loading": "Erro ao carregar",
|
|
23
|
+
"Error loading channel list...": "Erro ao carregar lista de canais...",
|
|
24
|
+
"Error loading messages for this channel...": "Erro ao carregar mensagens para este canal...",
|
|
25
|
+
"Error while loading, please reload/refresh": "Erro ao carregar, por favor recarregue/atualize",
|
|
26
|
+
"File type not supported": "Tipo de arquivo não suportado",
|
|
27
27
|
"Flag": "Reportar",
|
|
28
28
|
"Flag Message": "Reportar Mensagem",
|
|
29
29
|
"Flag action failed either due to a network issue or the message is already flagged": "A ação para reportar a mensagem falhou devido a um problema de rede ou a mensagem já foi reportada.",
|
|
30
|
-
"How about sending your first message to a friend?": "",
|
|
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.": "",
|
|
30
|
+
"How about sending your first message to a friend?": "Que tal enviar sua primeira mensagem para um amigo?",
|
|
31
|
+
"Instant Commands": "Comandos Instantâneos",
|
|
32
|
+
"Let's start chatting!": "Vamos começar a conversar!",
|
|
33
|
+
"Links are disabled": "Links estão desabilitados",
|
|
34
|
+
"Loading channels...": "Carregando canais...",
|
|
35
|
+
"Loading messages...": "Carregando mensagens...",
|
|
36
|
+
"Loading...": "Carregando...",
|
|
37
|
+
"Maximum file size upload limit reached. Please upload a file below {{MAX_FILE_SIZE_TO_UPLOAD_IN_MB}} MB.": "Limite máximo de tamanho de arquivo atingido. Por favor, faça o upload de um arquivo abaixo de {{MAX_FILE_SIZE_TO_UPLOAD_IN_MB}} MB.",
|
|
38
38
|
"Message Reactions": "Reações à Mensagem",
|
|
39
|
-
"Message deleted": "",
|
|
39
|
+
"Message deleted": "Mensagem excluída",
|
|
40
40
|
"Message flagged": "Mensagem sinalizada",
|
|
41
41
|
"Mute User": "Silenciar Usuário",
|
|
42
|
-
"Not supported": "",
|
|
43
|
-
"Nothing yet...": "",
|
|
42
|
+
"Not supported": "Não suportado",
|
|
43
|
+
"Nothing yet...": "Nada ainda...",
|
|
44
44
|
"Ok": "Ok",
|
|
45
|
-
"Only visible to you": "",
|
|
46
|
-
"Open Settings": "",
|
|
45
|
+
"Only visible to you": "Apenas visível para você",
|
|
46
|
+
"Open Settings": "Abrir Configurações",
|
|
47
47
|
"Photo": "Foto",
|
|
48
|
-
"Photos and Videos": "",
|
|
48
|
+
"Photos and Videos": "Fotos e Vídeos",
|
|
49
49
|
"Pin to Conversation": "Fixar na Conversa",
|
|
50
|
-
"Pinned by": "",
|
|
51
|
-
"Please enable access to your photos and videos so you can share them.": "",
|
|
52
|
-
"Please select a channel first": "",
|
|
53
|
-
"Reconnecting...": "",
|
|
50
|
+
"Pinned by": "Fixado por",
|
|
51
|
+
"Please enable access to your photos and videos so you can share them.": "Por favor, habilite o acesso às suas fotos e vídeos para poder compartilhá-los.",
|
|
52
|
+
"Please select a channel first": "Por favor, selecione um canal primeiro",
|
|
53
|
+
"Reconnecting...": "Reconectando...",
|
|
54
54
|
"Reply": "Responder",
|
|
55
55
|
"Reply to Message": "Responder à Mensagem",
|
|
56
56
|
"Resend": "Reenviar",
|
|
57
57
|
"Search GIFs": "Pesquisar GIFs",
|
|
58
|
-
"Select More Photos": "",
|
|
58
|
+
"Select More Photos": "Selecionar Mais Fotos",
|
|
59
59
|
"Send Anyway": "Enviar de qualquer maneira",
|
|
60
60
|
"Send a message": "Enviar uma mensagem",
|
|
61
|
-
"Sending links is not allowed in this conversation": "",
|
|
61
|
+
"Sending links is not allowed in this conversation": "Não é permitido enviar links nesta conversa",
|
|
62
62
|
"Slow mode ON": "Modo Lento ATIVADO",
|
|
63
63
|
"The message has been reported to a moderator.": "A mensagem foi relatada a um moderador.",
|
|
64
64
|
"Thread Reply": "Respostas de Tópico",
|
|
65
65
|
"Unblock User": "Desbloquear Usuário",
|
|
66
|
-
"Unknown User": "",
|
|
66
|
+
"Unknown User": "Usuário Desconhecido",
|
|
67
67
|
"Unmute User": "Remover usuário do modo silencioso",
|
|
68
68
|
"Unpin from Conversation": "Desmarcar como fixado na conversa",
|
|
69
|
-
"Unread Messages": "",
|
|
69
|
+
"Unread Messages": "Mensagens não lidas",
|
|
70
70
|
"Video": "Vídeo",
|
|
71
|
-
"You": "",
|
|
72
|
-
"You can't send messages in this channel": "",
|
|
71
|
+
"You": "Você",
|
|
72
|
+
"You can't send messages in this channel": "Você não pode enviar mensagens neste canal",
|
|
73
73
|
"{{ firstUser }} and {{ nonSelfUserLength }} more are typing": "{{ firstUser }} e mais {{ nonSelfUserLength }} pessoa(s) estão digitando",
|
|
74
|
-
"{{ index }} of {{ photoLength }}": "",
|
|
75
|
-
"{{ replyCount }} Replies": "",
|
|
76
|
-
"{{ replyCount }} Thread Replies": "",
|
|
74
|
+
"{{ index }} of {{ photoLength }}": "{{ index }} de {{ photoLength }}",
|
|
75
|
+
"{{ replyCount }} Replies": "{{ replyCount }} Respostas",
|
|
76
|
+
"{{ replyCount }} Thread Replies": "{{ replyCount }} Respostas de Thread",
|
|
77
77
|
"{{ user }} is typing": "{{ user }} está digitando",
|
|
78
|
-
"🏙 Attachment...": ""
|
|
78
|
+
"🏙 Attachment...": "🏙 Anexo..."
|
|
79
79
|
}
|
package/lib/module/i18n/ru.json
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
{
|
|
2
|
-
"1 Reply": "",
|
|
3
|
-
"1 Thread Reply": "",
|
|
4
|
-
"Allow access to your Gallery": "",
|
|
5
|
-
"Allow camera access in device settings": "",
|
|
2
|
+
"1 Reply": "1 Ответ",
|
|
3
|
+
"1 Thread Reply": "1 тема Ответить",
|
|
4
|
+
"Allow access to your Gallery": "Разрешить доступ к вашей галерее",
|
|
5
|
+
"Allow camera access in device settings": "Разрешите доступ к камере в настройках устройства.",
|
|
6
6
|
"Also send to channel": "Также отправить на канал",
|
|
7
7
|
"Are you sure you want to permanently delete this message?": "Вы действительно хотите удалить это сообщение без возможности восстановления?",
|
|
8
8
|
"Are you sure?": "Вы уверены?",
|
|
@@ -13,67 +13,67 @@
|
|
|
13
13
|
"Copy Message": "Копировать сообщение",
|
|
14
14
|
"Delete": "удалять",
|
|
15
15
|
"Delete Message": "Удалить сообщение",
|
|
16
|
-
"Device camera is used to take photos or videos.": "",
|
|
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
19
|
"Editing Message": "Редактирование сообщения",
|
|
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": "",
|
|
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": "Тип файла не поддерживается",
|
|
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?": "",
|
|
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.": "",
|
|
30
|
+
"How about sending your first message to a friend?": "Как насчет отправки первого сообщения другу?",
|
|
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.": "Достигнут предел максимального размера файла для загрузки. Загрузите файл размером менее {{MAX_FILE_SIZE_TO_UPLOAD_IN_MB}} МБ.",
|
|
38
38
|
"Message Reactions": "Сообщения Реакции",
|
|
39
|
-
"Message deleted": "",
|
|
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": "Oк",
|
|
45
|
-
"Only visible to you": "",
|
|
46
|
-
"Open Settings": "",
|
|
45
|
+
"Only visible to you": "Видно только вам",
|
|
46
|
+
"Open Settings": "Открыть настройки",
|
|
47
47
|
"Photo": "Фото",
|
|
48
|
-
"Photos and Videos": "",
|
|
48
|
+
"Photos and Videos": "Фото и видео",
|
|
49
49
|
"Pin to Conversation": "Закрепить к беседе",
|
|
50
|
-
"Pinned by": "",
|
|
51
|
-
"Please enable access to your photos and videos so you can share them.": "",
|
|
52
|
-
"Please select a channel first": "",
|
|
53
|
-
"Reconnecting...": "",
|
|
50
|
+
"Pinned by": "Закреплено пользователем",
|
|
51
|
+
"Please enable access to your photos and videos so you can share them.": "Разрешите доступ к своим фотографиям и видео, чтобы вы могли ими поделиться.",
|
|
52
|
+
"Please select a channel first": "Пожалуйста, сначала выберите канал",
|
|
53
|
+
"Reconnecting...": "Переподключение...",
|
|
54
54
|
"Reply": "Ответить",
|
|
55
55
|
"Reply to Message": "Ответить на сообщение",
|
|
56
56
|
"Resend": "Отправить",
|
|
57
57
|
"Search GIFs": "Поиск GIF",
|
|
58
|
-
"Select More Photos": "",
|
|
58
|
+
"Select More Photos": "Выбрать больше фотографий",
|
|
59
59
|
"Send Anyway": "Всё равно отправить",
|
|
60
60
|
"Send a message": "Отправить сообщение",
|
|
61
|
-
"Sending links is not allowed in this conversation": "",
|
|
61
|
+
"Sending links is not allowed in this conversation": "Отправка ссылок недоступна в этом чате",
|
|
62
62
|
"Slow mode ON": "Медленный режим включен",
|
|
63
63
|
"The message has been reported to a moderator.": "Сообщение отправлено модератору.",
|
|
64
64
|
"Thread Reply": "Тема Ответить",
|
|
65
65
|
"Unblock User": "Разблокировать пользователя",
|
|
66
|
-
"Unknown User": "",
|
|
66
|
+
"Unknown User": "Неизвестный пользователь",
|
|
67
67
|
"Unmute User": "Включить микрофон",
|
|
68
68
|
"Unpin from Conversation": "Открепить от беседы",
|
|
69
|
-
"Unread Messages": "",
|
|
69
|
+
"Unread Messages": "Непрочитанные Сообщения",
|
|
70
70
|
"Video": "видео",
|
|
71
|
-
"You": "",
|
|
72
|
-
"You can't send messages in this channel": "",
|
|
71
|
+
"You": "Вы",
|
|
72
|
+
"You can't send messages in this channel": "Вы не можете отправлять сообщения в этот канал",
|
|
73
73
|
"{{ firstUser }} and {{ nonSelfUserLength }} more are typing": "{{ firstUser }} и еще {{ nonSelfUserLength }} пишут",
|
|
74
|
-
"{{ index }} of {{ photoLength }}": "",
|
|
75
|
-
"{{ replyCount }} Replies": "",
|
|
76
|
-
"{{ replyCount }} Thread Replies": "",
|
|
74
|
+
"{{ index }} of {{ photoLength }}": "{{ index }} из {{ photoLength }}",
|
|
75
|
+
"{{ replyCount }} Replies": "{{ replyCount }} Ответов",
|
|
76
|
+
"{{ replyCount }} Thread Replies": "{{replyCount}} Ответы в темах",
|
|
77
77
|
"{{ user }} is typing": "{{ user }} пишет",
|
|
78
|
-
"🏙 Attachment...": ""
|
|
78
|
+
"🏙 Attachment...": "🏙 Вложение..."
|
|
79
79
|
}
|
package/lib/module/i18n/tr.json
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
{
|
|
2
|
-
"1 Reply": "",
|
|
3
|
-
"1 Thread Reply": "",
|
|
4
|
-
"Allow access to your Gallery": "",
|
|
5
|
-
"Allow camera access in device settings": "",
|
|
2
|
+
"1 Reply": "1 Cevap",
|
|
3
|
+
"1 Thread Reply": "1 Konu Yanıtı",
|
|
4
|
+
"Allow access to your Gallery": "Galerinize erişime izin verin",
|
|
5
|
+
"Allow camera access in device settings": "Cihaz ayarlarında kamera erişimine izin ver",
|
|
6
6
|
"Also send to channel": "Kanala da gönder",
|
|
7
7
|
"Are you sure you want to permanently delete this message?": "Bu mesajı kalıcı olarak silmek istediğinizden emin misiniz?",
|
|
8
8
|
"Are you sure?": "Emin misiniz?",
|
|
@@ -13,67 +13,67 @@
|
|
|
13
13
|
"Copy Message": "Mesajı Kopyala",
|
|
14
14
|
"Delete": "Sil",
|
|
15
15
|
"Delete Message": "Mesajı Sil",
|
|
16
|
-
"Device camera is used to take photos or videos.": "",
|
|
16
|
+
"Device camera is used to take photos or videos.": "Cihaz kamerası fotoğraf veya video çekmek için kullanılır.",
|
|
17
17
|
"Do you want to send a copy of this message to a moderator for further investigation?": "Detaylı inceleme için bu mesajın kopyasını moderatöre göndermek istiyor musunuz?",
|
|
18
18
|
"Edit Message": "Mesajı Düzenle",
|
|
19
19
|
"Editing Message": "Mesaj Düzenleniyor",
|
|
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": "",
|
|
20
|
+
"Emoji matching": "Emoji eşleştirme",
|
|
21
|
+
"Empty message...": "Boş mesaj...",
|
|
22
|
+
"Error loading": "Yükleme hatası",
|
|
23
|
+
"Error loading channel list...": "Kanal listesi yüklenirken hata oluştu...",
|
|
24
|
+
"Error loading messages for this channel...": "Bu kanal için mesajlar yüklenirken hata oluştu...",
|
|
25
|
+
"Error while loading, please reload/refresh": "Yüklenirken hata oluştu, lütfen tekrar deneyiniz",
|
|
26
|
+
"File type not supported": "Dosya türü desteklenmiyor",
|
|
27
27
|
"Flag": "Raporla",
|
|
28
28
|
"Flag Message": "Mesajı Raporla",
|
|
29
29
|
"Flag action failed either due to a network issue or the message is already flagged": "Mesajın daha önce raporlanmış olması veya bir ağ bağlantısı sorunu nedeniyle raporlama işlemi başarısız oldu.",
|
|
30
|
-
"How about sending your first message to a friend?": "",
|
|
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.": "",
|
|
30
|
+
"How about sending your first message to a friend?": "İlk mesajınızı bir arkadaşınıza göndermeye ne dersiniz?",
|
|
31
|
+
"Instant Commands": "Anlık Komutlar",
|
|
32
|
+
"Let's start chatting!": "Haydi sohbete başlayalım!",
|
|
33
|
+
"Links are disabled": "Bağlantılar devre dışı",
|
|
34
|
+
"Loading channels...": "Kanallar yükleniyor...",
|
|
35
|
+
"Loading messages...": "Mesajlar yükleniyor...",
|
|
36
|
+
"Loading...": "Yükleniyor...",
|
|
37
|
+
"Maximum file size upload limit reached. Please upload a file below {{MAX_FILE_SIZE_TO_UPLOAD_IN_MB}} MB.": "Maksimum dosya boyutu yükleme sınırına ulaşıldı. Lütfen {{MAX_FILE_SIZE_TO_UPLOAD_IN_MB}} MB'ın altında bir dosya yükleyin.",
|
|
38
38
|
"Message Reactions": "Mesaj Tepkileri",
|
|
39
|
-
"Message deleted": "",
|
|
39
|
+
"Message deleted": "Mesaj silindi",
|
|
40
40
|
"Message flagged": "Mesaj işaretlendi",
|
|
41
41
|
"Mute User": "Kullanıcıyı sessize al",
|
|
42
|
-
"Not supported": "",
|
|
43
|
-
"Nothing yet...": "",
|
|
42
|
+
"Not supported": "Desteklenmiyor",
|
|
43
|
+
"Nothing yet...": "Henüz değil...",
|
|
44
44
|
"Ok": "Tamam",
|
|
45
|
-
"Only visible to you": "",
|
|
46
|
-
"Open Settings": "",
|
|
45
|
+
"Only visible to you": "Sadece siz görebilirsiniz",
|
|
46
|
+
"Open Settings": "Ayarları aç",
|
|
47
47
|
"Photo": "Fotoğraf",
|
|
48
|
-
"Photos and Videos": "",
|
|
48
|
+
"Photos and Videos": "Fotoğraflar ve Videolar",
|
|
49
49
|
"Pin to Conversation": "Konuşmaya sabitle",
|
|
50
|
-
"Pinned by": "",
|
|
51
|
-
"Please enable access to your photos and videos so you can share them.": "",
|
|
52
|
-
"Please select a channel first": "",
|
|
53
|
-
"Reconnecting...": "",
|
|
50
|
+
"Pinned by": "Tarafından sabitlendi",
|
|
51
|
+
"Please enable access to your photos and videos so you can share them.": "Paylaşım yapabilmek için lutfen fotoğraflarınıza ve videolarınıza erişimi etkinleştirin.",
|
|
52
|
+
"Please select a channel first": "Lütfen önce bir kanal seçiniz",
|
|
53
|
+
"Reconnecting...": "Yeniden Bağlanılıyor...",
|
|
54
54
|
"Reply": "Yanıtla",
|
|
55
55
|
"Reply to Message": "Mesajı Yanıtla",
|
|
56
56
|
"Resend": "Yeniden gönder",
|
|
57
57
|
"Search GIFs": "GIF Ara",
|
|
58
|
-
"Select More Photos": "",
|
|
58
|
+
"Select More Photos": "Daha Fazla Fotoğraf Seçin",
|
|
59
59
|
"Send Anyway": "Yine de Gönder",
|
|
60
60
|
"Send a message": "Mesaj gönder",
|
|
61
|
-
"Sending links is not allowed in this conversation": "",
|
|
61
|
+
"Sending links is not allowed in this conversation": "Bu konuşmada bağlantı göndermek desteklenmiyor",
|
|
62
62
|
"Slow mode ON": "Yavaş Mod Açık",
|
|
63
63
|
"The message has been reported to a moderator.": "Mesaj moderatöre bildirildi.",
|
|
64
64
|
"Thread Reply": "Konu Yanıtı",
|
|
65
65
|
"Unblock User": "Kullanıcının engelini kaldır",
|
|
66
|
-
"Unknown User": "",
|
|
66
|
+
"Unknown User": "Bilinmeyen kullanıcı",
|
|
67
67
|
"Unmute User": "Kullanıcının sesini aç",
|
|
68
68
|
"Unpin from Conversation": "Sabitlemeyi kaldır",
|
|
69
|
-
"Unread Messages": "",
|
|
69
|
+
"Unread Messages": "Okunmamış Mesajlar",
|
|
70
70
|
"Video": "Video",
|
|
71
|
-
"You": "",
|
|
72
|
-
"You can't send messages in this channel": "",
|
|
71
|
+
"You": "Sen",
|
|
72
|
+
"You can't send messages in this channel": "Bu konuşmaya mesaj gönderemezsiniz",
|
|
73
73
|
"{{ firstUser }} and {{ nonSelfUserLength }} more are typing": "{{ firstUser }} ve {{ nonSelfUserLength }} kişi daha yazıyor",
|
|
74
|
-
"{{ index }} of {{ photoLength }}": "",
|
|
75
|
-
"{{ replyCount }} Replies": "",
|
|
76
|
-
"{{ replyCount }} Thread Replies": "",
|
|
74
|
+
"{{ index }} of {{ photoLength }}": "{{ index }} / {{ photoLength }}",
|
|
75
|
+
"{{ replyCount }} Replies": "{{ replyCount }} Cevap",
|
|
76
|
+
"{{ replyCount }} Thread Replies": "{{responseCount}} Konu Cevapı",
|
|
77
77
|
"{{ user }} is typing": "{{ user }} yazıyor",
|
|
78
|
-
"🏙 Attachment...": ""
|
|
78
|
+
"🏙 Attachment...": "🏙 Ek..."
|
|
79
79
|
}
|
|
@@ -36,6 +36,9 @@ QuickSqliteClient.openDB = function () {
|
|
|
36
36
|
sqlite.open(QuickSqliteClient.dbName, QuickSqliteClient.dbLocation);
|
|
37
37
|
sqlite.execute(QuickSqliteClient.dbName, "PRAGMA foreign_keys = ON", []);
|
|
38
38
|
} catch (e) {
|
|
39
|
+
QuickSqliteClient.logger == null ? void 0 : QuickSqliteClient.logger('error', "Error opening database " + QuickSqliteClient.dbName, {
|
|
40
|
+
error: e
|
|
41
|
+
});
|
|
39
42
|
console.error("Error opening database " + QuickSqliteClient.dbName + ": " + e);
|
|
40
43
|
}
|
|
41
44
|
};
|
|
@@ -43,6 +46,9 @@ QuickSqliteClient.closeDB = function () {
|
|
|
43
46
|
try {
|
|
44
47
|
sqlite.close(QuickSqliteClient.dbName);
|
|
45
48
|
} catch (e) {
|
|
49
|
+
QuickSqliteClient.logger == null ? void 0 : QuickSqliteClient.logger('error', "Error closing database " + QuickSqliteClient.dbName, {
|
|
50
|
+
error: e
|
|
51
|
+
});
|
|
46
52
|
console.error("Error closing database " + QuickSqliteClient.dbName + ": " + e);
|
|
47
53
|
}
|
|
48
54
|
};
|
|
@@ -54,7 +60,11 @@ QuickSqliteClient.executeSqlBatch = function (queries) {
|
|
|
54
60
|
QuickSqliteClient.closeDB();
|
|
55
61
|
} catch (e) {
|
|
56
62
|
QuickSqliteClient.closeDB();
|
|
57
|
-
|
|
63
|
+
QuickSqliteClient.logger == null ? void 0 : QuickSqliteClient.logger('error', "SqlBatch queries failed", {
|
|
64
|
+
error: e,
|
|
65
|
+
queries: queries
|
|
66
|
+
});
|
|
67
|
+
throw new Error("Queries failed: " + e);
|
|
58
68
|
}
|
|
59
69
|
};
|
|
60
70
|
QuickSqliteClient.executeSql = function (query, params) {
|
|
@@ -66,19 +76,35 @@ QuickSqliteClient.executeSql = function (query, params) {
|
|
|
66
76
|
return rows ? rows._array : [];
|
|
67
77
|
} catch (e) {
|
|
68
78
|
QuickSqliteClient.closeDB();
|
|
69
|
-
|
|
79
|
+
QuickSqliteClient.logger == null ? void 0 : QuickSqliteClient.logger('error', "Sql single query failed", {
|
|
80
|
+
error: e,
|
|
81
|
+
query: query
|
|
82
|
+
});
|
|
83
|
+
throw new Error("Query failed: " + e + ": ");
|
|
70
84
|
}
|
|
71
85
|
};
|
|
72
86
|
QuickSqliteClient.dropTables = function () {
|
|
73
87
|
var queries = Object.keys(_schema.tables).map(function (table) {
|
|
74
88
|
return ["DROP TABLE IF EXISTS " + table, []];
|
|
75
89
|
});
|
|
90
|
+
QuickSqliteClient.logger == null ? void 0 : QuickSqliteClient.logger('info', "Dropping tables", {
|
|
91
|
+
tables: Object.keys(_schema.tables)
|
|
92
|
+
});
|
|
76
93
|
QuickSqliteClient.executeSqlBatch(queries);
|
|
77
94
|
};
|
|
78
95
|
QuickSqliteClient.deleteDatabase = function () {
|
|
96
|
+
QuickSqliteClient.logger == null ? void 0 : QuickSqliteClient.logger('info', "deleteDatabase", {
|
|
97
|
+
dbLocation: QuickSqliteClient.dbLocation,
|
|
98
|
+
dbname: QuickSqliteClient.dbName
|
|
99
|
+
});
|
|
79
100
|
try {
|
|
80
101
|
sqlite["delete"](QuickSqliteClient.dbName, QuickSqliteClient.dbLocation);
|
|
81
102
|
} catch (e) {
|
|
103
|
+
QuickSqliteClient.logger == null ? void 0 : QuickSqliteClient.logger('error', "Error deleting DB", {
|
|
104
|
+
dbLocation: QuickSqliteClient.dbLocation,
|
|
105
|
+
dbname: QuickSqliteClient.dbName,
|
|
106
|
+
error: e
|
|
107
|
+
});
|
|
82
108
|
throw new Error("Error deleting DB: " + e);
|
|
83
109
|
}
|
|
84
110
|
return true;
|
|
@@ -89,9 +115,13 @@ QuickSqliteClient.initializeDatabase = function () {
|
|
|
89
115
|
}
|
|
90
116
|
var version = QuickSqliteClient.getUserPragmaVersion();
|
|
91
117
|
if (version !== QuickSqliteClient.dbVersion) {
|
|
118
|
+
QuickSqliteClient.logger == null ? void 0 : QuickSqliteClient.logger('info', "DB version mismatch");
|
|
92
119
|
QuickSqliteClient.dropTables();
|
|
93
120
|
QuickSqliteClient.updateUserPragmaVersion(QuickSqliteClient.dbVersion);
|
|
94
121
|
}
|
|
122
|
+
QuickSqliteClient.logger == null ? void 0 : QuickSqliteClient.logger('info', "create tables if not exists", {
|
|
123
|
+
tables: Object.keys(_schema.tables)
|
|
124
|
+
});
|
|
95
125
|
var q = Object.keys(_schema.tables).reduce(function (queriesSoFar, tableName) {
|
|
96
126
|
queriesSoFar.push.apply(queriesSoFar, (0, _toConsumableArray2["default"])((0, _createCreateTableQuery.createCreateTableQuery)(tableName)));
|
|
97
127
|
return queriesSoFar;
|
|
@@ -99,6 +129,7 @@ QuickSqliteClient.initializeDatabase = function () {
|
|
|
99
129
|
QuickSqliteClient.executeSqlBatch(q);
|
|
100
130
|
};
|
|
101
131
|
QuickSqliteClient.updateUserPragmaVersion = function (version) {
|
|
132
|
+
QuickSqliteClient.logger == null ? void 0 : QuickSqliteClient.logger('info', "updateUserPragmaVersion to " + version);
|
|
102
133
|
QuickSqliteClient.openDB();
|
|
103
134
|
sqlite.execute(_constants.DB_NAME, "PRAGMA user_version = " + version, []);
|
|
104
135
|
QuickSqliteClient.closeDB();
|
|
@@ -109,6 +140,9 @@ QuickSqliteClient.getUserPragmaVersion = function () {
|
|
|
109
140
|
var _sqlite$execute2 = sqlite.execute(_constants.DB_NAME, "PRAGMA user_version", []),
|
|
110
141
|
rows = _sqlite$execute2.rows;
|
|
111
142
|
var result = rows ? rows._array : [];
|
|
143
|
+
QuickSqliteClient.logger == null ? void 0 : QuickSqliteClient.logger('info', "getUserPragmaVersion", {
|
|
144
|
+
result: result
|
|
145
|
+
});
|
|
112
146
|
QuickSqliteClient.closeDB();
|
|
113
147
|
return result[0].user_version;
|
|
114
148
|
} catch (e) {
|
|
@@ -117,6 +151,7 @@ QuickSqliteClient.getUserPragmaVersion = function () {
|
|
|
117
151
|
}
|
|
118
152
|
};
|
|
119
153
|
QuickSqliteClient.resetDB = function () {
|
|
154
|
+
QuickSqliteClient.logger == null ? void 0 : QuickSqliteClient.logger('info', "resetDB");
|
|
120
155
|
QuickSqliteClient.dropTables();
|
|
121
156
|
QuickSqliteClient.initializeDatabase();
|
|
122
157
|
};
|