stream-chat-react 12.4.1 → 12.5.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (181) hide show
  1. package/dist/assets/icons/stream-chat-icons.eot +0 -0
  2. package/dist/assets/icons/stream-chat-icons.svg +4 -0
  3. package/dist/assets/icons/stream-chat-icons.ttf +0 -0
  4. package/dist/assets/icons/stream-chat-icons.woff +0 -0
  5. package/dist/assets/icons/stream-chat-icons.woff2 +0 -0
  6. package/dist/components/Attachment/components/ProgressBar.d.ts +2 -2
  7. package/dist/components/Attachment/components/ProgressBar.js +2 -1
  8. package/dist/components/Channel/Channel.d.ts +1 -1
  9. package/dist/components/Channel/Channel.js +36 -15
  10. package/dist/components/Channel/constants.d.ts +1 -0
  11. package/dist/components/Channel/constants.js +1 -0
  12. package/dist/components/Channel/hooks/useChannelContainerClasses.d.ts +2 -0
  13. package/dist/components/Channel/hooks/useChannelContainerClasses.js +10 -5
  14. package/dist/components/ChannelPreview/utils.js +35 -0
  15. package/dist/components/Chat/hooks/useChat.js +2 -0
  16. package/dist/components/Dialog/DialogAnchor.d.ts +1 -2
  17. package/dist/components/Dialog/DialogMenu.d.ts +3 -0
  18. package/dist/components/Dialog/DialogMenu.js +5 -0
  19. package/dist/components/Dialog/DialogPortal.d.ts +1 -1
  20. package/dist/components/Dialog/DialogPortal.js +4 -12
  21. package/dist/components/Dialog/FormDialog.d.ts +23 -0
  22. package/dist/components/Dialog/FormDialog.js +72 -0
  23. package/dist/components/Dialog/PromptDialog.d.ts +8 -0
  24. package/dist/components/Dialog/PromptDialog.js +7 -0
  25. package/dist/components/DragAndDrop/DragAndDropContainer.d.ts +7 -0
  26. package/dist/components/DragAndDrop/DragAndDropContainer.js +93 -0
  27. package/dist/components/Form/FieldError.d.ts +6 -0
  28. package/dist/components/Form/FieldError.js +3 -0
  29. package/dist/components/Form/SwitchField.d.ts +7 -0
  30. package/dist/components/Form/SwitchField.js +21 -0
  31. package/dist/components/InfiniteScrollPaginator/InfiniteScroll.d.ts +10 -0
  32. package/dist/components/InfiniteScrollPaginator/InfiniteScroll.js +10 -0
  33. package/dist/components/InfiniteScrollPaginator/InfiniteScrollPaginator.d.ts +10 -0
  34. package/dist/components/InfiniteScrollPaginator/InfiniteScrollPaginator.js +68 -0
  35. package/dist/components/InfiniteScrollPaginator/hooks/useCursorPaginator.d.ts +18 -0
  36. package/dist/components/InfiniteScrollPaginator/hooks/useCursorPaginator.js +41 -0
  37. package/dist/components/Message/MessageSimple.js +5 -1
  38. package/dist/components/Message/QuotedMessage.js +8 -4
  39. package/dist/components/Message/hooks/useUserRole.js +3 -2
  40. package/dist/components/Message/index.d.ts +1 -0
  41. package/dist/components/MessageInput/AttachmentSelector.d.ts +25 -0
  42. package/dist/components/MessageInput/AttachmentSelector.js +125 -0
  43. package/dist/components/MessageInput/EditMessageForm.js +1 -1
  44. package/dist/components/MessageInput/MessageInput.d.ts +2 -0
  45. package/dist/components/MessageInput/MessageInput.js +9 -4
  46. package/dist/components/MessageInput/MessageInputFlat.js +4 -10
  47. package/dist/components/MessageInput/QuotedMessagePreview.js +7 -3
  48. package/dist/components/MessageInput/hooks/useCreateMessageInputContext.js +3 -1
  49. package/dist/components/MessageInput/hooks/usePasteHandler.js +5 -8
  50. package/dist/components/MessageInput/hooks/useSubmitHandler.js +4 -1
  51. package/dist/components/MessageInput/index.d.ts +1 -0
  52. package/dist/components/MessageInput/index.js +1 -0
  53. package/dist/components/Modal/ModalHeader.d.ts +8 -0
  54. package/dist/components/Modal/ModalHeader.js +6 -0
  55. package/dist/components/Poll/Poll.d.ts +7 -0
  56. package/dist/components/Poll/Poll.js +8 -0
  57. package/dist/components/Poll/PollActions/AddCommentForm.d.ts +7 -0
  58. package/dist/components/Poll/PollActions/AddCommentForm.js +24 -0
  59. package/dist/components/Poll/PollActions/EndPollDialog.d.ts +6 -0
  60. package/dist/components/Poll/PollActions/EndPollDialog.js +19 -0
  61. package/dist/components/Poll/PollActions/PollAction.d.ts +9 -0
  62. package/dist/components/Poll/PollActions/PollAction.js +5 -0
  63. package/dist/components/Poll/PollActions/PollActions.d.ts +17 -0
  64. package/dist/components/Poll/PollActions/PollActions.js +46 -0
  65. package/dist/components/Poll/PollActions/PollAnswerList.d.ts +7 -0
  66. package/dist/components/Poll/PollActions/PollAnswerList.js +28 -0
  67. package/dist/components/Poll/PollActions/PollOptionsFullList.d.ts +6 -0
  68. package/dist/components/Poll/PollActions/PollOptionsFullList.js +16 -0
  69. package/dist/components/Poll/PollActions/PollResults/PollOptionVotesList.d.ts +7 -0
  70. package/dist/components/Poll/PollActions/PollResults/PollOptionVotesList.js +18 -0
  71. package/dist/components/Poll/PollActions/PollResults/PollOptionWithLatestVotes.d.ts +9 -0
  72. package/dist/components/Poll/PollActions/PollResults/PollOptionWithLatestVotes.js +19 -0
  73. package/dist/components/Poll/PollActions/PollResults/PollOptionWithVotesHeader.d.ts +11 -0
  74. package/dist/components/Poll/PollActions/PollResults/PollOptionWithVotesHeader.js +18 -0
  75. package/dist/components/Poll/PollActions/PollResults/PollResults.d.ts +6 -0
  76. package/dist/components/Poll/PollActions/PollResults/PollResults.js +33 -0
  77. package/dist/components/Poll/PollActions/PollResults/index.d.ts +1 -0
  78. package/dist/components/Poll/PollActions/PollResults/index.js +1 -0
  79. package/dist/components/Poll/PollActions/SuggestPollOptionForm.d.ts +7 -0
  80. package/dist/components/Poll/PollActions/SuggestPollOptionForm.js +37 -0
  81. package/dist/components/Poll/PollActions/index.d.ts +7 -0
  82. package/dist/components/Poll/PollActions/index.js +7 -0
  83. package/dist/components/Poll/PollContent.d.ts +3 -0
  84. package/dist/components/Poll/PollContent.js +18 -0
  85. package/dist/components/Poll/PollCreationDialog/OptionFieldSet.d.ts +9 -0
  86. package/dist/components/Poll/PollCreationDialog/OptionFieldSet.js +70 -0
  87. package/dist/components/Poll/PollCreationDialog/PollCreationDialog.d.ts +5 -0
  88. package/dist/components/Poll/PollCreationDialog/PollCreationDialog.js +87 -0
  89. package/dist/components/Poll/PollCreationDialog/PollCreationDialogControls.d.ts +8 -0
  90. package/dist/components/Poll/PollCreationDialog/PollCreationDialogControls.js +44 -0
  91. package/dist/components/Poll/PollCreationDialog/index.d.ts +1 -0
  92. package/dist/components/Poll/PollCreationDialog/index.js +1 -0
  93. package/dist/components/Poll/PollCreationDialog/types.d.ts +21 -0
  94. package/dist/components/Poll/PollCreationDialog/types.js +1 -0
  95. package/dist/components/Poll/PollHeader.d.ts +3 -0
  96. package/dist/components/Poll/PollHeader.js +31 -0
  97. package/dist/components/Poll/PollOptionList.d.ts +6 -0
  98. package/dist/components/Poll/PollOptionList.js +14 -0
  99. package/dist/components/Poll/PollOptionSelector.d.ts +19 -0
  100. package/dist/components/Poll/PollOptionSelector.js +53 -0
  101. package/dist/components/Poll/PollVote.d.ts +12 -0
  102. package/dist/components/Poll/PollVote.js +31 -0
  103. package/dist/components/Poll/QuotedPoll.d.ts +3 -0
  104. package/dist/components/Poll/QuotedPoll.js +17 -0
  105. package/dist/components/Poll/constants.d.ts +3 -0
  106. package/dist/components/Poll/constants.js +3 -0
  107. package/dist/components/Poll/hooks/index.d.ts +2 -0
  108. package/dist/components/Poll/hooks/index.js +2 -0
  109. package/dist/components/Poll/hooks/useManagePollVotesRealtime.d.ts +4 -0
  110. package/dist/components/Poll/hooks/useManagePollVotesRealtime.js +36 -0
  111. package/dist/components/Poll/hooks/usePollAnswerPagination.d.ts +13 -0
  112. package/dist/components/Poll/hooks/usePollAnswerPagination.js +27 -0
  113. package/dist/components/Poll/hooks/usePollOptionVotesPagination.d.ts +13 -0
  114. package/dist/components/Poll/hooks/usePollOptionVotesPagination.js +27 -0
  115. package/dist/components/Poll/index.d.ts +10 -0
  116. package/dist/components/Poll/index.js +10 -0
  117. package/dist/components/Portal/Portal.d.ts +6 -0
  118. package/dist/components/Portal/Portal.js +14 -0
  119. package/dist/components/ReactFileUtilities/UploadButton.d.ts +11 -1
  120. package/dist/components/ReactFileUtilities/UploadButton.js +22 -4
  121. package/dist/components/Thread/Thread.js +1 -1
  122. package/dist/components/index.d.ts +2 -0
  123. package/dist/components/index.js +1 -0
  124. package/dist/context/AttachmentSelectorContext.d.ts +8 -0
  125. package/dist/context/AttachmentSelectorContext.js +6 -0
  126. package/dist/context/ComponentContext.d.ts +21 -5
  127. package/dist/context/PollContext.d.ts +11 -0
  128. package/dist/context/PollContext.js +7 -0
  129. package/dist/context/index.d.ts +1 -0
  130. package/dist/context/index.js +1 -0
  131. package/dist/css/v2/index.css +2 -2
  132. package/dist/css/v2/index.layout.css +2 -2
  133. package/dist/experimental/index.browser.cjs +129 -117
  134. package/dist/experimental/index.browser.cjs.map +4 -4
  135. package/dist/experimental/index.node.cjs +129 -117
  136. package/dist/experimental/index.node.cjs.map +4 -4
  137. package/dist/i18n/Streami18n.d.ts +45 -0
  138. package/dist/i18n/de.json +70 -25
  139. package/dist/i18n/en.json +46 -1
  140. package/dist/i18n/es.json +74 -25
  141. package/dist/i18n/fr.json +83 -34
  142. package/dist/i18n/hi.json +54 -9
  143. package/dist/i18n/it.json +75 -26
  144. package/dist/i18n/ja.json +46 -5
  145. package/dist/i18n/ko.json +46 -5
  146. package/dist/i18n/nl.json +59 -14
  147. package/dist/i18n/pt.json +66 -17
  148. package/dist/i18n/ru.json +66 -13
  149. package/dist/i18n/tr.json +77 -32
  150. package/dist/index.browser.cjs +4229 -1861
  151. package/dist/index.browser.cjs.map +4 -4
  152. package/dist/index.node.cjs +4169 -1774
  153. package/dist/index.node.cjs.map +4 -4
  154. package/dist/scss/v2/AttachmentPreviewList/AttachmentPreviewList-layout.scss +2 -2
  155. package/dist/scss/v2/AudioRecorder/AudioRecorder-layout.scss +64 -14
  156. package/dist/scss/v2/AudioRecorder/AudioRecorder-theme.scss +11 -1
  157. package/dist/scss/v2/Avatar/Avatar-layout.scss +4 -0
  158. package/dist/scss/v2/ChannelList/ChannelList-layout.scss +15 -0
  159. package/dist/scss/v2/Dialog/Dialog-layout.scss +54 -0
  160. package/dist/scss/v2/Dialog/Dialog-theme.scss +103 -0
  161. package/dist/scss/v2/DragAndDropContainer/DragAmdDropContainer-layout.scss +5 -0
  162. package/dist/scss/v2/DragAndDropContainer/DragAndDropContainer-theme.scss +47 -0
  163. package/dist/scss/v2/Form/Form-layout.scss +9 -0
  164. package/dist/scss/v2/Form/Form-theme.scss +17 -0
  165. package/dist/scss/v2/Icon/Icon-layout.scss +6 -1
  166. package/dist/scss/v2/InfiniteScrollPaginator/InfiniteScrollPaginator-layout.scss +4 -0
  167. package/dist/scss/v2/MessageActionsBox/MessageActionsBox-layout.scss +0 -9
  168. package/dist/scss/v2/MessageInput/MessageInput-layout.scss +29 -4
  169. package/dist/scss/v2/MessageInput/MessageInput-theme.scss +61 -0
  170. package/dist/scss/v2/Modal/Modal-layout.scss +31 -0
  171. package/dist/scss/v2/Modal/Modal-theme.scss +6 -0
  172. package/dist/scss/v2/Notification/MessageNotification-layout.scss +1 -1
  173. package/dist/scss/v2/Poll/Poll-layout.scss +488 -0
  174. package/dist/scss/v2/Poll/Poll-theme.scss +206 -0
  175. package/dist/scss/v2/_base.scss +4 -0
  176. package/dist/scss/v2/_global-theme-variables.scss +1 -1
  177. package/dist/scss/v2/_icons.scss +7 -0
  178. package/dist/scss/v2/index.layout.scss +4 -0
  179. package/dist/scss/v2/index.scss +4 -0
  180. package/dist/types/types.d.ts +6 -0
  181. package/package.json +4 -4
package/dist/i18n/nl.json CHANGED
@@ -1,8 +1,15 @@
1
1
  {
2
+ "Add a comment": "Voeg een opmerking toe",
3
+ "Add an option": "Voeg een optie toe",
2
4
  "Allow access to camera": "Toegang tot camera toestaan",
3
5
  "Allow access to microphone": "Toegang tot microfoon toestaan",
6
+ "Allow comments": "Sta opmerkingen toe",
7
+ "Allow option suggestion": "Sta optie-suggesties toe",
4
8
  "An error has occurred during recording": "Er is een fout opgetreden tijdens het opnemen",
5
9
  "An error has occurred during the recording processing": "Er is een fout opgetreden tijdens de verwerking van de opname",
10
+ "Anonymous": "Anoniem",
11
+ "Anonymous poll": "Anonieme peiling",
12
+ "Ask a question": "Stel een vraag",
6
13
  "Attach files": "Bijlage toevoegen",
7
14
  "Cancel": "Annuleer",
8
15
  "Cannot seek in the recording": "Kan niet zoeken in de opname",
@@ -10,17 +17,21 @@
10
17
  "Close": "Sluit",
11
18
  "Close emoji picker": "Sluit de emoji-kiezer",
12
19
  "Commands matching": "Bijpassende opdrachten",
13
- "Connection failure, reconnecting now...": "Probleem met de verbinding, opnieuw verbinding maken...",
20
+ "Connection failure, reconnecting now...": "Verbindingsfout, opnieuw verbinden...",
21
+ "Create": "Maak",
22
+ "Create poll": "Maak peiling",
14
23
  "Delete": "Verwijder",
15
24
  "Delivered": "Afgeleverd",
16
25
  "Download attachment {{ name }}": "Bijlage {{ name }} downloaden",
17
26
  "Drag your files here": "Sleep je bestanden hier naartoe",
18
27
  "Drag your files here to add to your post": "Sleep je bestanden hier naartoe om aan je bericht toe te voegen",
19
- "Edit Message": "Pas bericht aan",
28
+ "Edit Message": "Bericht bewerken",
20
29
  "Edit message request failed": "Verzoek om bericht bewerken mislukt",
21
30
  "Edited": "Bewerkt",
22
31
  "Emoji matching": "Emoji-overeenkomsten",
23
32
  "Empty message...": "Leeg bericht...",
33
+ "End": "Einde",
34
+ "End vote": "Einde stem",
24
35
  "Error adding flag": "Fout bij toevoegen van vlag",
25
36
  "Error connecting to chat, refresh the page to try again.": "Fout bij het verbinden, ververs de pagina om nogmaals te proberen",
26
37
  "Error deleting message": "Fout bij verwijderen van bericht",
@@ -35,16 +46,18 @@
35
46
  "Error uploading attachment": "Fout bij het uploaden van de bijlage",
36
47
  "Error uploading file": "Fout bij uploaden bestand",
37
48
  "Error uploading image": "Fout bij uploaden afbeelding",
38
- "Error · Unsent": "Error: · niet verzonden",
39
- "Error: {{ errorMessage }}": "Error: {{ errorMessage }}",
49
+ "Error · Unsent": "Fout · niet verzonden",
50
+ "Error: {{ errorMessage }}": "Fout: {{ errorMessage }}",
40
51
  "Failed to jump to the first unread message": "Niet gelukt om naar het eerste ongelezen bericht te springen",
41
52
  "Failed to mark channel as read": "Kanaal kon niet als gelezen worden gemarkeerd",
42
53
  "Failed to play the recording": "Kan de opname niet afspelen",
54
+ "File": "Bestand",
43
55
  "File is too large: {{ size }}, maximum upload size is {{ limit }}": "Bestand is te groot: {{ size }}, maximale uploadgrootte is {{ limit }}",
44
56
  "Flag": "Markeer",
45
57
  "Latest Messages": "Laatste berichten",
46
58
  "Load more": "Meer laden",
47
59
  "Mark as unread": "Markeren als ongelezen",
60
+ "Maximum number of votes (from 2 to 10)": "Maximaal aantal stemmen (van 2 tot 10)",
48
61
  "Menu": "Menu",
49
62
  "Message Failed · Click to try again": "Bericht mislukt, klik om het nogmaals te proberen",
50
63
  "Message Failed · Unauthorized": "Bericht mislukt, ongeautoriseerd",
@@ -53,44 +66,69 @@
53
66
  "Message pinned": "Bericht vastgezet",
54
67
  "Messages have been marked unread.": "Berichten zijn gemarkeerd als ongelezen.",
55
68
  "Missing permissions to upload the attachment": "Missende toestemmingen om de bijlage te uploaden",
56
- "Mute": "Mute",
69
+ "Multiple answers": "Meerdere antwoorden",
70
+ "Mute": "Dempen",
57
71
  "New": "Nieuwe",
58
72
  "New Messages!": "Nieuwe Berichten!",
59
73
  "No chats here yet…": "Nog geen chats hier...",
60
74
  "No results found": "Geen resultaten gevonden",
75
+ "Nobody will be able to vote in this poll anymore.": "Niemand kan meer stemmen in deze peiling.",
61
76
  "Nothing yet...": "Nog niets ...",
62
77
  "Ok": "Oké",
63
78
  "Open emoji picker": "Open emojipicker",
79
+ "Option already exists": "Optie bestaat al",
80
+ "Options": "Opties",
64
81
  "People matching": "Mensen die matchen",
65
82
  "Pin": "Pin",
66
83
  "Pinned by": "Vastgemaakt door",
67
- "Quote": "Quote",
84
+ "Poll": "Peiling",
85
+ "Poll comments": "Peiling opmerkingen",
86
+ "Poll options": "Peiling opties",
87
+ "Poll results": "Peiling resultaten",
88
+ "Question": "Vraag",
89
+ "Quote": "Citeer",
68
90
  "Recording format is not supported and cannot be reproduced": "Opnameformaat wordt niet ondersteund en kan niet worden gereproduceerd",
69
91
  "Reply": "Antwoord",
70
92
  "Reply to Message": "Antwoord op bericht",
71
93
  "Search": "Zoeken",
72
94
  "Searching...": "Zoeken...",
95
+ "See all options ({{count}})_one": "Bekijk alle opties ({{count}})",
96
+ "See all options ({{count}})_other": "Bekijk alle opties ({{count}})",
97
+ "Select one": "Selecteer er een",
98
+ "Select one or more": "Selecteer een of meer",
99
+ "Select up to {{count}}_one": "Selecteer tot {{count}}",
100
+ "Select up to {{count}}_other": "Selecteer tot {{count}}",
73
101
  "Send": "Verstuur",
74
102
  "Send Anyway": "Toch versturen",
75
103
  "Send message request failed": "Verzoek om bericht te verzenden mislukt",
76
104
  "Sending...": "Aan het verzenden...",
105
+ "Show all": "Toon alles",
77
106
  "Shuffle": "Schudden",
78
107
  "Slow Mode ON": "Langzame modus aan",
79
108
  "Some of the files will not be accepted": "Sommige bestanden zullen niet worden geaccepteerd",
109
+ "Submit": "Versturen",
110
+ "Suggest an option": "Stel een optie voor",
80
111
  "This message did not meet our content guidelines": "Dit bericht voldeed niet aan onze inhoudsrichtlijnen",
81
112
  "This message was deleted...": "Dit bericht was verwijderd",
82
113
  "Thread": "Draadje",
83
114
  "To start recording, allow the camera access in your browser": "Om te beginnen met opnemen, sta toegang tot de camera toe in uw browser",
84
115
  "To start recording, allow the microphone access in your browser": "Om te beginnen met opnemen, sta toegang tot de microfoon toe in uw browser",
116
+ "Type a number from 2 to 10": "Typ een getal van 2 tot 10",
85
117
  "Type your message": "Type je bericht",
86
- "Unmute": "Unmute",
118
+ "Unmute": "Dempen opheffen",
87
119
  "Unpin": "Losmaken",
88
120
  "Unread messages": "Ongelezen berichten",
89
121
  "Unsupported attachment": "Niet-ondersteunde bijlage",
122
+ "Update your comment": "Werk je opmerking bij",
90
123
  "Upload type: \"{{ type }}\" is not allowed": "Uploadtype: \"{{ type }}\" is niet toegestaan",
91
124
  "User uploaded content": "Gebruikersgeüploade inhoud",
92
- "Voice message": "Voicemail",
125
+ "View results": "Bekijk resultaten",
126
+ "View {{count}} comments_one": "Bekijk {{count}} opmerkingen",
127
+ "View {{count}} comments_other": "Bekijk {{count}} opmerkingen",
128
+ "Voice message": "Spraakbericht",
129
+ "Vote ended": "Stemmen beëindigd",
93
130
  "Wait until all attachments have uploaded": "Wacht tot alle bijlagen zijn geüpload",
131
+ "You": "Jij",
94
132
  "You have no channels currently": "Er zijn geen chats beschikbaar",
95
133
  "You've reached the maximum number of files": "Je hebt het maximale aantal bestanden bereikt",
96
134
  "aria/Attachment": "Bijlage",
@@ -107,6 +145,7 @@
107
145
  "aria/Load More Channels": "Meer kanalen laden",
108
146
  "aria/Menu": "Menu",
109
147
  "aria/Message Options": "Berichtopties",
148
+ "aria/Open Attachment Selector": "Open bijlage selector",
110
149
  "aria/Open Message Actions Menu": "Menu voor berichtacties openen",
111
150
  "aria/Open Reaction Selector": "Reactiekiezer openen",
112
151
  "aria/Open Thread": "Draad openen",
@@ -128,6 +167,8 @@
128
167
  "this content could not be displayed": "Deze inhoud kan niet weergegeven worden",
129
168
  "timestamp/DateSeparator": "{{ timestamp | timestampFormatter(calendar: true) }}",
130
169
  "timestamp/MessageTimestamp": "{{ timestamp | timestampFormatter(calendar: true) }}",
170
+ "timestamp/PollVote": "{{ timestamp | timestampFormatter(format: MMM D [at] HH:mm) }}",
171
+ "timestamp/PollVoteTooltip": "{{ timestamp | timestampFormatter(calendar: true) }}",
131
172
  "timestamp/SystemMessage": "{{ timestamp | timestampFormatter(format: dddd L) }}",
132
173
  "unban-command-args": "[@gebruikersnaam]",
133
174
  "unban-command-description": "Een gebruiker debannen",
@@ -140,13 +181,17 @@
140
181
  "{{ firstUser }} and {{ secondUser }}": "{{ firstUser }} en {{ secondUser }}",
141
182
  "{{ imageCount }} more": "+{{ imageCount }}",
142
183
  "{{ memberCount }} members": "{{ memberCount }} deelnemers",
143
- "{{ user }} has been muted": "{{ user }} is muted",
144
- "{{ user }} has been unmuted": "{{ user }} is unmuted",
145
- "{{ user }} is typing...": "{{ user }} is typing...",
146
- "{{ users }} and more are typing...": "{{ users }} and more are typing...",
147
- "{{ users }} and {{ user }} are typing...": "{{ users }} and {{ user }} are typing...",
184
+ "{{ user }} has been muted": "{{ user }} is gedempt",
185
+ "{{ user }} has been unmuted": "{{ user }} is niet meer gedempt",
186
+ "{{ user }} is typing...": "{{ user }} is aan het typen...",
187
+ "{{ users }} and more are typing...": "{{ users }} en meer zijn aan het typen...",
188
+ "{{ users }} and {{ user }} are typing...": "{{ users }} en {{ user }} zijn aan het typen...",
148
189
  "{{ watcherCount }} online": "{{ watcherCount }} online",
149
190
  "{{count}} unread_one": "{{count}} ongelezen",
150
191
  "{{count}} unread_other": "{{count}} ongelezen",
151
- "🏙 Attachment...": "🏙 Bijlage..."
192
+ "{{count}} votes_one": "{{count}} stem",
193
+ "{{count}} votes_other": "{{count}} stemmen",
194
+ "🏙 Attachment...": "🏙 Bijlage...",
195
+ "📊 {{createdBy}} created: {{ pollName}}": "📊 {{createdBy}} heeft gemaakt: {{ pollName}}",
196
+ "📊 {{votedBy}} voted: {{pollOptionText}}": "📊 {{votedBy}} heeft gestemd: {{pollOptionText}}"
152
197
  }
package/dist/i18n/pt.json CHANGED
@@ -1,8 +1,15 @@
1
1
  {
2
+ "Add a comment": "Adicionar um comentário",
3
+ "Add an option": "Adicionar uma opção",
2
4
  "Allow access to camera": "Permitir acesso à câmera",
3
5
  "Allow access to microphone": "Permitir acesso ao microfone",
6
+ "Allow comments": "Permitir comentários",
7
+ "Allow option suggestion": "Permitir sugestão de opção",
4
8
  "An error has occurred during recording": "Ocorreu um erro durante a gravação",
5
9
  "An error has occurred during the recording processing": "Ocorreu um erro durante o processamento da gravação",
10
+ "Anonymous": "Anônimo",
11
+ "Anonymous poll": "Enquete anônima",
12
+ "Ask a question": "Faça uma pergunta",
6
13
  "Attach files": "Anexar arquivos",
7
14
  "Cancel": "Cancelar",
8
15
  "Cannot seek in the recording": "Não é possível buscar na gravação",
@@ -11,6 +18,8 @@
11
18
  "Close emoji picker": "Fechar seletor de emoji",
12
19
  "Commands matching": "Comandos correspondentes",
13
20
  "Connection failure, reconnecting now...": "Falha de conexão, reconectando agora...",
21
+ "Create": "Criar",
22
+ "Create poll": "Criar enquete",
14
23
  "Delete": "Excluir",
15
24
  "Delivered": "Entregue",
16
25
  "Download attachment {{ name }}": "Baixar anexo {{ name }}",
@@ -21,10 +30,12 @@
21
30
  "Edited": "Editada",
22
31
  "Emoji matching": "Emoji correspondente",
23
32
  "Empty message...": "Mensagem vazia...",
33
+ "End": "Fim",
34
+ "End vote": "Encerrar votação",
24
35
  "Error adding flag": "Erro ao reportar",
25
36
  "Error connecting to chat, refresh the page to try again.": "Erro ao conectar ao bate-papo, atualize a página para tentar novamente.",
26
37
  "Error deleting message": "Erro ao deletar mensagem",
27
- "Error fetching reactions": "Erro ao carregar reacções",
38
+ "Error fetching reactions": "Erro ao carregar reações",
28
39
  "Error marking message unread. Cannot mark unread messages older than the newest 100 channel messages.": "Erro ao marcar a mensagem como não lida. Não é possível marcar mensagens não lidas mais antigas do que as 100 mensagens mais recentes do canal.",
29
40
  "Error muting a user ...": "Erro ao silenciar um usuário...",
30
41
  "Error pinning message": "Erro ao fixar mensagem",
@@ -39,12 +50,14 @@
39
50
  "Error: {{ errorMessage }}": "Erro: {{ errorMessage }}",
40
51
  "Failed to jump to the first unread message": "Falha ao pular para a primeira mensagem não lida",
41
52
  "Failed to mark channel as read": "Falha ao marcar o canal como lido",
42
- "Failed to play the recording": "Permissões faltando para carregar o anexo",
53
+ "Failed to play the recording": "Falha ao reproduzir a gravação",
54
+ "File": "Arquivo",
43
55
  "File is too large: {{ size }}, maximum upload size is {{ limit }}": "O arquivo é muito grande: {{ size }}, o tamanho máximo de upload é {{ limit }}",
44
56
  "Flag": "Reportar",
45
57
  "Latest Messages": "Mensagens mais recentes",
46
58
  "Load more": "Carregar mais",
47
59
  "Mark as unread": "Marcar como não lida",
60
+ "Maximum number of votes (from 2 to 10)": "Número máximo de votos (de 2 a 10)",
48
61
  "Menu": "Menu",
49
62
  "Message Failed · Click to try again": "A mensagem falhou · Clique para tentar novamente",
50
63
  "Message Failed · Unauthorized": "A mensagem falhou · não autorizado",
@@ -52,45 +65,73 @@
52
65
  "Message has been successfully flagged": "A mensagem foi reportada com sucesso",
53
66
  "Message pinned": "Mensagem fixada",
54
67
  "Messages have been marked unread.": "Mensagens foram marcadas como não lidas.",
55
- "Missing permissions to upload the attachment": "Missing permissions to upload the attachment",
56
- "Mute": "Mudo",
68
+ "Missing permissions to upload the attachment": "Faltando permissões para enviar o anexo",
69
+ "Multiple answers": "Múltiplas respostas",
70
+ "Mute": "Silenciar",
57
71
  "New": "Novo",
58
- "New Messages!": "Novas mensagens!",
72
+ "New Messages!": "Novas Mensagens!",
59
73
  "No chats here yet…": "Ainda não há conversas aqui...",
60
74
  "No results found": "Nenhum resultado encontrado",
75
+ "Nobody will be able to vote in this poll anymore.": "Ninguém mais poderá votar nesta pesquisa.",
61
76
  "Nothing yet...": "Nada ainda...",
62
77
  "Ok": "Ok",
63
78
  "Open emoji picker": "Abrir seletor de emoji",
79
+ "Option already exists": "Opção já existe",
80
+ "Options": "Opções",
64
81
  "People matching": "Pessoas correspondentes",
65
82
  "Pin": "Fixar",
66
83
  "Pinned by": "Fixado por",
67
- "Quote": "Quote",
84
+ "Poll": "Enquete",
85
+ "Poll comments": "Comentários da pesquisa",
86
+ "Poll options": "Opções da pesquisa",
87
+ "Poll results": "Resultados da pesquisa",
88
+ "Question": "Pergunta",
89
+ "Quote": "Citar",
68
90
  "Recording format is not supported and cannot be reproduced": "Formato de gravação não é suportado e não pode ser reproduzido",
69
91
  "Reply": "Responder",
70
- "Reply to Message": "Responder a mensagem",
71
- "Search": "Procurar",
72
- "Searching...": "Procurando...",
92
+ "Reply to Message": "Responder à mensagem",
93
+ "Search": "Buscar",
94
+ "Searching...": "Buscando...",
95
+ "See all options ({{count}})_many": "Ver todas as opções ({{count}})",
96
+ "See all options ({{count}})_one": "Ver todas as opções ({{count}})",
97
+ "See all options ({{count}})_other": "Ver todas as opções ({{count}})",
98
+ "Select one": "Selecionar um",
99
+ "Select one or more": "Selecionar um ou mais",
100
+ "Select up to {{count}}_many": "Selecionar até {{count}}",
101
+ "Select up to {{count}}_one": "Selecionar até {{count}}",
102
+ "Select up to {{count}}_other": "Selecionar até {{count}}",
73
103
  "Send": "Enviar",
74
104
  "Send Anyway": "Enviar de qualquer forma",
75
- "Send message request failed": "O pedido de envio de mensagem falhou",
105
+ "Send message request failed": "O pedido de envio da mensagem falhou",
76
106
  "Sending...": "Enviando...",
107
+ "Show all": "Mostrar tudo",
77
108
  "Shuffle": "Embaralhar",
78
109
  "Slow Mode ON": "Modo lento LIGADO",
79
- "Some of the files will not be accepted": "Alguns dos arquivos não serão aceitos",
80
- "This message did not meet our content guidelines": "Esta mensagem não corresponde às nossas directrizes de conteúdo",
110
+ "Some of the files will not be accepted": "Alguns arquivos não serão aceitos",
111
+ "Submit": "Enviar",
112
+ "Suggest an option": "Sugerir uma opção",
113
+ "This message did not meet our content guidelines": "Esta mensagem não corresponde às nossas diretrizes de conteúdo",
81
114
  "This message was deleted...": "Esta mensagem foi excluída...",
82
115
  "Thread": "Fio",
83
116
  "To start recording, allow the camera access in your browser": "Para começar a gravar, permita o acesso à câmera no seu navegador",
84
117
  "To start recording, allow the microphone access in your browser": "Para começar a gravar, permita o acesso ao microfone no seu navegador",
118
+ "Type a number from 2 to 10": "Digite um número de 2 a 10",
85
119
  "Type your message": "Digite sua mensagem",
86
120
  "Unmute": "Ativar som",
87
- "Unpin": "Liberar",
121
+ "Unpin": "Desfixar",
88
122
  "Unread messages": "Mensagens não lidas",
89
123
  "Unsupported attachment": "Anexo não suportado",
124
+ "Update your comment": "Atualizar seu comentário",
90
125
  "Upload type: \"{{ type }}\" is not allowed": "Tipo de upload: \"{{ type }}\" não é permitido",
91
126
  "User uploaded content": "Conteúdo enviado pelo usuário",
127
+ "View results": "Ver resultados",
128
+ "View {{count}} comments_many": "Ver {{count}} comentários",
129
+ "View {{count}} comments_one": "Ver {{count}} comentários",
130
+ "View {{count}} comments_other": "Ver {{count}} comentários",
92
131
  "Voice message": "Mensagem de voz",
132
+ "Vote ended": "Votação encerrada",
93
133
  "Wait until all attachments have uploaded": "Espere até que todos os anexos tenham sido carregados",
134
+ "You": "Você",
94
135
  "You have no channels currently": "Você não tem canais atualmente",
95
136
  "You've reached the maximum number of files": "Você atingiu o número máximo de arquivos",
96
137
  "aria/Attachment": "Anexo",
@@ -107,6 +148,7 @@
107
148
  "aria/Load More Channels": "Carregar mais canais",
108
149
  "aria/Menu": "Menu",
109
150
  "aria/Message Options": "Opções de mensagem",
151
+ "aria/Open Attachment Selector": "Abrir seletor de anexos",
110
152
  "aria/Open Message Actions Menu": "Abrir menu de ações de mensagem",
111
153
  "aria/Open Reaction Selector": "Abrir seletor de reações",
112
154
  "aria/Open Thread": "Abrir tópico",
@@ -130,6 +172,8 @@
130
172
  "this content could not be displayed": "este conteúdo não pôde ser exibido",
131
173
  "timestamp/DateSeparator": "{{ timestamp | timestampFormatter(calendar: true) }}",
132
174
  "timestamp/MessageTimestamp": "{{ timestamp | timestampFormatter(calendar: true) }}",
175
+ "timestamp/PollVote": "{{ timestamp | timestampFormatter(format: MMM D [at] HH:mm) }}",
176
+ "timestamp/PollVoteTooltip": "{{ timestamp | timestampFormatter(calendar: true) }}",
133
177
  "timestamp/SystemMessage": "{{ timestamp | timestampFormatter(format: dddd L) }}",
134
178
  "unban-command-args": "[@nomedeusuário]",
135
179
  "unban-command-description": "Desbanir um usuário",
@@ -145,12 +189,17 @@
145
189
  "{{ memberCount }} members": "{{ memberCount }} membros",
146
190
  "{{ user }} has been muted": "{{ user }} foi silenciado",
147
191
  "{{ user }} has been unmuted": "{{ user }} foi reativado",
148
- "{{ user }} is typing...": "{{ user }} is typing...",
149
- "{{ users }} and more are typing...": "{{ users }} and more are typing...",
150
- "{{ users }} and {{ user }} are typing...": "{{ users }} and {{ user }} are typing...",
192
+ "{{ user }} is typing...": "{{ user }} está digitando...",
193
+ "{{ users }} and more are typing...": "{{ users }} e mais estão digitando...",
194
+ "{{ users }} and {{ user }} are typing...": "{{ users }} e {{ user }} estão digitando...",
151
195
  "{{ watcherCount }} online": "{{ watcherCount }} online",
152
196
  "{{count}} unread_many": "{{count}} não lidos",
153
197
  "{{count}} unread_one": "{{count}} não lido",
154
198
  "{{count}} unread_other": "{{count}} não lidos",
155
- "🏙 Attachment...": "🏙 Anexo..."
199
+ "{{count}} votes_many": "{{count}} votos",
200
+ "{{count}} votes_one": "{{count}} voto",
201
+ "{{count}} votes_other": "{{count}} votos",
202
+ "🏙 Attachment...": "🏙 Anexo...",
203
+ "📊 {{createdBy}} created: {{ pollName}}": "📊 {{createdBy}} criou: {{ pollName}}",
204
+ "📊 {{votedBy}} voted: {{pollOptionText}}": "📊 {{votedBy}} votou: {{pollOptionText}}"
156
205
  }
package/dist/i18n/ru.json CHANGED
@@ -1,8 +1,15 @@
1
1
  {
2
+ "Add a comment": "Добавить комментарий",
3
+ "Add an option": "Добавить вариант",
2
4
  "Allow access to camera": "Разрешить доступ к камере",
3
- "Allow access to microphone": "Разрешить доступ к микрофон",
5
+ "Allow access to microphone": "Разрешить доступ к микрофону",
6
+ "Allow comments": "Разрешить комментарии",
7
+ "Allow option suggestion": "Разрешить предложение вариантов",
4
8
  "An error has occurred during recording": "Произошла ошибка во время записи",
5
9
  "An error has occurred during the recording processing": "Произошла ошибка во время обработки записи",
10
+ "Anonymous": "Аноним",
11
+ "Anonymous poll": "Анонимный опрос",
12
+ "Ask a question": "Задать вопрос",
6
13
  "Attach files": "Прикрепить файлы",
7
14
  "Cancel": "Отмена",
8
15
  "Cannot seek in the recording": "Невозможно осуществить поиск в записи",
@@ -11,6 +18,8 @@
11
18
  "Close emoji picker": "Закрыть окно выбора смайлов",
12
19
  "Commands matching": "Соответствие команд",
13
20
  "Connection failure, reconnecting now...": "Ошибка соединения, переподключение...",
21
+ "Create": "Создать",
22
+ "Create poll": "Создать опрос",
14
23
  "Delete": "Удалить",
15
24
  "Delivered": "Отправлено",
16
25
  "Download attachment {{ name }}": "Скачать вложение {{ name }}",
@@ -21,6 +30,8 @@
21
30
  "Edited": "Отредактировано",
22
31
  "Emoji matching": "Соответствие эмодзи",
23
32
  "Empty message...": "Пустое сообщение...",
33
+ "End": "Конец",
34
+ "End vote": "Закончить голосование",
24
35
  "Error adding flag": "Ошибка добавления флага",
25
36
  "Error connecting to chat, refresh the page to try again.": "Ошибка подключения к чату, обновите страницу чтобы попробовать снова.",
26
37
  "Error deleting message": "Ошибка при удалении сообщения",
@@ -40,11 +51,13 @@
40
51
  "Failed to jump to the first unread message": "Не удалось перейти к первому непрочитанному сообщению",
41
52
  "Failed to mark channel as read": "Не удалось пометить канал как прочитанный",
42
53
  "Failed to play the recording": "Не удалось воспроизвести запись",
54
+ "File": "Файл",
43
55
  "File is too large: {{ size }}, maximum upload size is {{ limit }}": "Файл слишком большой: {{ size }}, максимальный размер загрузки составляет {{ limit }}",
44
56
  "Flag": "Пожаловаться",
45
57
  "Latest Messages": "Последние сообщения",
46
58
  "Load more": "Загрузить больше",
47
59
  "Mark as unread": "Отметить как непрочитанное",
60
+ "Maximum number of votes (from 2 to 10)": "Максимальное количество голосов (от 2 до 10)",
48
61
  "Menu": "Меню",
49
62
  "Message Failed · Click to try again": "Ошибка отправки сообщения · Нажмите чтобы повторить",
50
63
  "Message Failed · Unauthorized": "Ошибка отправки сообщения · Неавторизованный",
@@ -53,44 +66,75 @@
53
66
  "Message pinned": "Сообщение закреплено",
54
67
  "Messages have been marked unread.": "Сообщения были отмечены как непрочитанные.",
55
68
  "Missing permissions to upload the attachment": "Отсутствуют разрешения для загрузки вложения",
69
+ "Multiple answers": "Несколько ответов",
56
70
  "Mute": "Отключить уведомления",
57
71
  "New": "Новые",
58
72
  "New Messages!": "Новые сообщения!",
59
73
  "No chats here yet…": "Здесь еще нет чатов...",
60
- "No results found": "результаты не найдены",
74
+ "No results found": "Результаты не найдены",
75
+ "Nobody will be able to vote in this poll anymore.": "Никто больше не сможет голосовать в этом опросе.",
61
76
  "Nothing yet...": "Пока ничего нет...",
62
- "Ok": "Ok",
63
- "Open emoji picker": "Выбрать emoji",
64
- "People matching": "Соответствующие люди",
65
- "Pin": "Штырь",
77
+ "Ok": "Ок",
78
+ "Open emoji picker": "Открыть выбор смайлов",
79
+ "Option already exists": "Вариант уже существует",
80
+ "Options": "Варианты",
81
+ "People matching": "Совпадающие люди",
82
+ "Pin": "Закрепить",
66
83
  "Pinned by": "Закреплено",
67
- "Quote": "Quote",
84
+ "Poll": "Опрос",
85
+ "Poll comments": "Комментарии к опросу",
86
+ "Poll options": "Опции опроса",
87
+ "Poll results": "Результаты опроса",
88
+ "Question": "Вопрос",
89
+ "Quote": "Цитировать",
68
90
  "Recording format is not supported and cannot be reproduced": "Формат записи не поддерживается и не может быть воспроизведен",
69
- "Reply": "Отвечать",
91
+ "Reply": "Ответить",
70
92
  "Reply to Message": "Ответить на сообщение",
71
93
  "Search": "Поиск",
72
94
  "Searching...": "Ищем...",
95
+ "See all options ({{count}})_few": "Посмотреть все варианты ({{count}})",
96
+ "See all options ({{count}})_many": "Посмотреть все варианты ({{count}})",
97
+ "See all options ({{count}})_one": "Посмотреть все варианты ({{count}})",
98
+ "See all options ({{count}})_other": "Посмотреть все варианты ({{count}})",
99
+ "Select one": "Выберите один",
100
+ "Select one or more": "Выберите один или несколько",
101
+ "Select up to {{count}}_few": "Выберите до {{count}}",
102
+ "Select up to {{count}}_many": "Выберите до {{count}}",
103
+ "Select up to {{count}}_one": "Выберите до {{count}}",
104
+ "Select up to {{count}}_other": "Выберите до {{count}}",
73
105
  "Send": "Отправить",
74
106
  "Send Anyway": "Мне всё равно, отправить",
75
107
  "Send message request failed": "Не удалось отправить запрос на отправку сообщения",
76
108
  "Sending...": "Отправка...",
109
+ "Show all": "Показать все",
77
110
  "Shuffle": "Перемешать",
78
111
  "Slow Mode ON": "Медленный режим включен",
79
112
  "Some of the files will not be accepted": "Некоторые файлы не будут приняты",
113
+ "Submit": "Отправить",
114
+ "Suggest an option": "Предложить вариант",
80
115
  "This message did not meet our content guidelines": "Сообщение не соответствует правилам",
81
116
  "This message was deleted...": "Сообщение было удалено...",
82
117
  "Thread": "Ветка",
83
118
  "To start recording, allow the camera access in your browser": "Для начала записи разрешите доступ к камере в вашем браузере",
84
119
  "To start recording, allow the microphone access in your browser": "Для начала записи разрешите доступ к микрофону в вашем браузере",
120
+ "Type a number from 2 to 10": "Введите число от 2 до 10",
85
121
  "Type your message": "Ваше сообщение",
86
122
  "Unmute": "Включить уведомления",
87
123
  "Unpin": "Открепить",
88
124
  "Unread messages": "Непрочитанные сообщения",
89
125
  "Unsupported attachment": "Неподдерживаемое вложение",
126
+ "Update your comment": "Обновите ваш комментарий",
90
127
  "Upload type: \"{{ type }}\" is not allowed": "Тип загрузки: \"{{ type }}\" не разрешен",
91
128
  "User uploaded content": "Пользователь загрузил контент",
129
+ "View results": "Посмотреть результаты",
130
+ "View {{count}} comments_few": "Просмотреть {{count}} комментариев",
131
+ "View {{count}} comments_many": "Просмотреть {{count}} комментариев",
132
+ "View {{count}} comments_one": "Просмотреть {{count}} комментарий",
133
+ "View {{count}} comments_other": "Просмотреть {{count}} комментариев",
92
134
  "Voice message": "Голосовое сообщение",
135
+ "Vote ended": "Голосование завершено",
93
136
  "Wait until all attachments have uploaded": "Подождите, пока все вложения загрузятся",
137
+ "You": "Вы",
94
138
  "You have no channels currently": "У вас нет каналов в данный момент",
95
139
  "You've reached the maximum number of files": "Вы достигли максимального количества файлов",
96
140
  "aria/Attachment": "Вложение",
@@ -107,6 +151,7 @@
107
151
  "aria/Load More Channels": "Загрузить больше каналов",
108
152
  "aria/Menu": "Меню",
109
153
  "aria/Message Options": "Параметры сообщения",
154
+ "aria/Open Attachment Selector": "Открыть выбор вложений",
110
155
  "aria/Open Message Actions Menu": "Открыть меню действий с сообщениями",
111
156
  "aria/Open Reaction Selector": "Открыть селектор реакций",
112
157
  "aria/Open Thread": "Открыть тему",
@@ -132,6 +177,8 @@
132
177
  "this content could not be displayed": "Этот контент не может быть отображен в данный момент",
133
178
  "timestamp/DateSeparator": "{{ timestamp | timestampFormatter(calendar: true) }}",
134
179
  "timestamp/MessageTimestamp": "{{ timestamp | timestampFormatter(calendar: true) }}",
180
+ "timestamp/PollVote": "{{ timestamp | timestampFormatter(format: MMM D [at] HH:mm) }}",
181
+ "timestamp/PollVoteTooltip": "{{ timestamp | timestampFormatter(calendar: true) }}",
135
182
  "timestamp/SystemMessage": "{{ timestamp | timestampFormatter(format: dddd L) }}",
136
183
  "unban-command-args": "[@имяпользователя]",
137
184
  "unban-command-description": "Разблокировать пользователя",
@@ -145,16 +192,22 @@
145
192
  "{{ commaSeparatedUsers }}, and {{ lastUser }}": "{{ commaSeparatedUsers }} и {{ lastUser }}",
146
193
  "{{ firstUser }} and {{ secondUser }}": "{{ firstUser }} и {{ secondUser }}",
147
194
  "{{ imageCount }} more": "Ещё {{ imageCount }}",
148
- "{{ memberCount }} members": "{{ memberCount }} члены",
195
+ "{{ memberCount }} members": "{{ memberCount }} участников",
149
196
  "{{ user }} has been muted": "Вы отписались от уведомлений от {{ user }}",
150
197
  "{{ user }} has been unmuted": "Уведомления от {{ user }} были включены",
151
- "{{ user }} is typing...": "{{ user }} is typing...",
152
- "{{ users }} and more are typing...": "{{ users }} and more are typing...",
153
- "{{ users }} and {{ user }} are typing...": "{{ users }} and {{ user }} are typing...",
198
+ "{{ user }} is typing...": "{{ user }} печатает...",
199
+ "{{ users }} and more are typing...": "{{ users }} и другие печатают...",
200
+ "{{ users }} and {{ user }} are typing...": "{{ users }} и {{ user }} печатают...",
154
201
  "{{ watcherCount }} online": "{{ watcherCount }} в сети",
155
202
  "{{count}} unread_few": "{{count}} непрочитанных",
156
203
  "{{count}} unread_many": "{{count}} непрочитанных",
157
204
  "{{count}} unread_one": "{{count}} непрочитанное",
158
205
  "{{count}} unread_other": "{{count}} непрочитанных",
159
- "🏙 Attachment...": "🏙 Вложение..."
206
+ "{{count}} votes_few": "{{count}} голоса",
207
+ "{{count}} votes_many": "{{count}} голосов",
208
+ "{{count}} votes_one": "{{count}} голос",
209
+ "{{count}} votes_other": "{{count}} голосов",
210
+ "🏙 Attachment...": "🏙 Вложение...",
211
+ "📊 {{createdBy}} created: {{ pollName}}": "📊 {{createdBy}} создал(а): {{ pollName}}",
212
+ "📊 {{votedBy}} voted: {{pollOptionText}}": "📊 {{votedBy}} проголосовал(а): {{pollOptionText}}"
160
213
  }