stream-chat-react-native-core 8.2.0 → 8.3.0-beta.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/commonjs/components/Channel/Channel.js +3 -1
- package/lib/commonjs/components/Channel/Channel.js.map +1 -1
- package/lib/commonjs/components/Channel/hooks/useCreateMessagesContext.js +2 -0
- package/lib/commonjs/components/Channel/hooks/useCreateMessagesContext.js.map +1 -1
- package/lib/commonjs/components/ChannelPreview/hooks/useLatestMessagePreview.js +9 -0
- package/lib/commonjs/components/ChannelPreview/hooks/useLatestMessagePreview.js.map +1 -1
- package/lib/commonjs/components/Message/Message.js +8 -0
- package/lib/commonjs/components/Message/Message.js.map +1 -1
- package/lib/commonjs/components/Message/MessageSimple/MessageContent.js +13 -0
- package/lib/commonjs/components/Message/MessageSimple/MessageContent.js.map +1 -1
- package/lib/commonjs/components/Reply/Reply.js +1 -1
- package/lib/commonjs/components/Reply/Reply.js.map +1 -1
- package/lib/commonjs/contexts/index.js +11 -0
- package/lib/commonjs/contexts/index.js.map +1 -1
- package/lib/commonjs/contexts/liveLocationManagerContext/LiveLocationManagerContext.js +54 -0
- package/lib/commonjs/contexts/liveLocationManagerContext/LiveLocationManagerContext.js.map +1 -0
- package/lib/commonjs/contexts/liveLocationManagerContext/hooks/useHandleLiveLocationEvents.js +50 -0
- package/lib/commonjs/contexts/liveLocationManagerContext/hooks/useHandleLiveLocationEvents.js.map +1 -0
- package/lib/commonjs/contexts/liveLocationManagerContext/index.js +26 -0
- package/lib/commonjs/contexts/liveLocationManagerContext/index.js.map +1 -0
- package/lib/commonjs/contexts/messageInputContext/MessageInputContext.js +0 -3
- package/lib/commonjs/contexts/messageInputContext/MessageInputContext.js.map +1 -1
- package/lib/commonjs/contexts/messagesContext/MessagesContext.js.map +1 -1
- package/lib/commonjs/i18n/en.json +11 -0
- package/lib/commonjs/i18n/es.json +8 -0
- package/lib/commonjs/i18n/fr.json +7 -0
- package/lib/commonjs/i18n/he.json +7 -0
- package/lib/commonjs/i18n/hi.json +12 -0
- package/lib/commonjs/i18n/it.json +7 -0
- package/lib/commonjs/i18n/ja.json +13 -0
- package/lib/commonjs/i18n/ko.json +13 -0
- package/lib/commonjs/i18n/nl.json +12 -0
- package/lib/commonjs/i18n/pt-br.json +7 -0
- package/lib/commonjs/i18n/ru.json +7 -0
- package/lib/commonjs/i18n/tr.json +12 -0
- package/lib/commonjs/store/SqliteClient.js +1 -1
- package/lib/commonjs/store/apis/deleteMessage.js +0 -3
- package/lib/commonjs/store/apis/deleteMessage.js.map +1 -1
- package/lib/commonjs/store/apis/getChannelActiveLocations.js +26 -0
- package/lib/commonjs/store/apis/getChannelActiveLocations.js.map +1 -0
- package/lib/commonjs/store/apis/getChannelMessages.js +12 -0
- package/lib/commonjs/store/apis/getChannelMessages.js.map +1 -1
- package/lib/commonjs/store/apis/getChannels.js +7 -2
- package/lib/commonjs/store/apis/getChannels.js.map +1 -1
- package/lib/commonjs/store/apis/queries/selectActiveLocationsForChannels.js +22 -0
- package/lib/commonjs/store/apis/queries/selectActiveLocationsForChannels.js.map +1 -0
- package/lib/commonjs/store/apis/upsertChannels.js +16 -1
- package/lib/commonjs/store/apis/upsertChannels.js.map +1 -1
- package/lib/commonjs/store/apis/upsertLocation.js +31 -0
- package/lib/commonjs/store/apis/upsertLocation.js.map +1 -0
- package/lib/commonjs/store/apis/upsertMessages.js +8 -0
- package/lib/commonjs/store/apis/upsertMessages.js.map +1 -1
- package/lib/commonjs/store/mappers/mapMessageToStorable.js +3 -1
- package/lib/commonjs/store/mappers/mapMessageToStorable.js.map +1 -1
- package/lib/commonjs/store/mappers/mapSharedLocationToStorable.js +28 -0
- package/lib/commonjs/store/mappers/mapSharedLocationToStorable.js.map +1 -0
- package/lib/commonjs/store/mappers/mapStorableToMessage.js +3 -1
- package/lib/commonjs/store/mappers/mapStorableToMessage.js.map +1 -1
- package/lib/commonjs/store/mappers/mapStorableToSharedLocation.js +27 -0
- package/lib/commonjs/store/mappers/mapStorableToSharedLocation.js.map +1 -0
- package/lib/commonjs/store/schema.js +32 -0
- package/lib/commonjs/store/schema.js.map +1 -1
- package/lib/commonjs/utils/setupCommandUIMiddlewares.js +2 -1
- package/lib/commonjs/utils/setupCommandUIMiddlewares.js.map +1 -1
- package/lib/commonjs/version.json +1 -1
- package/lib/module/components/Channel/Channel.js +3 -1
- package/lib/module/components/Channel/Channel.js.map +1 -1
- package/lib/module/components/Channel/hooks/useCreateMessagesContext.js +2 -0
- package/lib/module/components/Channel/hooks/useCreateMessagesContext.js.map +1 -1
- package/lib/module/components/ChannelPreview/hooks/useLatestMessagePreview.js +9 -0
- package/lib/module/components/ChannelPreview/hooks/useLatestMessagePreview.js.map +1 -1
- package/lib/module/components/Message/Message.js +8 -0
- package/lib/module/components/Message/Message.js.map +1 -1
- package/lib/module/components/Message/MessageSimple/MessageContent.js +13 -0
- package/lib/module/components/Message/MessageSimple/MessageContent.js.map +1 -1
- package/lib/module/components/Reply/Reply.js +1 -1
- package/lib/module/components/Reply/Reply.js.map +1 -1
- package/lib/module/contexts/index.js +11 -0
- package/lib/module/contexts/index.js.map +1 -1
- package/lib/module/contexts/liveLocationManagerContext/LiveLocationManagerContext.js +54 -0
- package/lib/module/contexts/liveLocationManagerContext/LiveLocationManagerContext.js.map +1 -0
- package/lib/module/contexts/liveLocationManagerContext/hooks/useHandleLiveLocationEvents.js +50 -0
- package/lib/module/contexts/liveLocationManagerContext/hooks/useHandleLiveLocationEvents.js.map +1 -0
- package/lib/module/contexts/liveLocationManagerContext/index.js +26 -0
- package/lib/module/contexts/liveLocationManagerContext/index.js.map +1 -0
- package/lib/module/contexts/messageInputContext/MessageInputContext.js +0 -3
- package/lib/module/contexts/messageInputContext/MessageInputContext.js.map +1 -1
- package/lib/module/contexts/messagesContext/MessagesContext.js.map +1 -1
- package/lib/module/i18n/en.json +11 -0
- package/lib/module/i18n/es.json +8 -0
- package/lib/module/i18n/fr.json +7 -0
- package/lib/module/i18n/he.json +7 -0
- package/lib/module/i18n/hi.json +12 -0
- package/lib/module/i18n/it.json +7 -0
- package/lib/module/i18n/ja.json +13 -0
- package/lib/module/i18n/ko.json +13 -0
- package/lib/module/i18n/nl.json +12 -0
- package/lib/module/i18n/pt-br.json +7 -0
- package/lib/module/i18n/ru.json +7 -0
- package/lib/module/i18n/tr.json +12 -0
- package/lib/module/store/SqliteClient.js +1 -1
- package/lib/module/store/apis/deleteMessage.js +0 -3
- package/lib/module/store/apis/deleteMessage.js.map +1 -1
- package/lib/module/store/apis/getChannelActiveLocations.js +26 -0
- package/lib/module/store/apis/getChannelActiveLocations.js.map +1 -0
- package/lib/module/store/apis/getChannelMessages.js +12 -0
- package/lib/module/store/apis/getChannelMessages.js.map +1 -1
- package/lib/module/store/apis/getChannels.js +7 -2
- package/lib/module/store/apis/getChannels.js.map +1 -1
- package/lib/module/store/apis/queries/selectActiveLocationsForChannels.js +22 -0
- package/lib/module/store/apis/queries/selectActiveLocationsForChannels.js.map +1 -0
- package/lib/module/store/apis/upsertChannels.js +16 -1
- package/lib/module/store/apis/upsertChannels.js.map +1 -1
- package/lib/module/store/apis/upsertLocation.js +31 -0
- package/lib/module/store/apis/upsertLocation.js.map +1 -0
- package/lib/module/store/apis/upsertMessages.js +8 -0
- package/lib/module/store/apis/upsertMessages.js.map +1 -1
- package/lib/module/store/mappers/mapMessageToStorable.js +3 -1
- package/lib/module/store/mappers/mapMessageToStorable.js.map +1 -1
- package/lib/module/store/mappers/mapSharedLocationToStorable.js +28 -0
- package/lib/module/store/mappers/mapSharedLocationToStorable.js.map +1 -0
- package/lib/module/store/mappers/mapStorableToMessage.js +3 -1
- package/lib/module/store/mappers/mapStorableToMessage.js.map +1 -1
- package/lib/module/store/mappers/mapStorableToSharedLocation.js +27 -0
- package/lib/module/store/mappers/mapStorableToSharedLocation.js.map +1 -0
- package/lib/module/store/schema.js +32 -0
- package/lib/module/store/schema.js.map +1 -1
- package/lib/module/utils/setupCommandUIMiddlewares.js +2 -1
- package/lib/module/utils/setupCommandUIMiddlewares.js.map +1 -1
- package/lib/module/version.json +1 -1
- package/lib/typescript/components/Channel/Channel.d.ts +1 -1
- package/lib/typescript/components/Channel/Channel.d.ts.map +1 -1
- package/lib/typescript/components/Channel/hooks/useCreateMessagesContext.d.ts +1 -1
- package/lib/typescript/components/Channel/hooks/useCreateMessagesContext.d.ts.map +1 -1
- package/lib/typescript/components/ChannelPreview/hooks/useLatestMessagePreview.d.ts.map +1 -1
- package/lib/typescript/components/Message/Message.d.ts.map +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/Reply/Reply.d.ts.map +1 -1
- package/lib/typescript/contexts/index.d.ts +1 -0
- package/lib/typescript/contexts/index.d.ts.map +1 -1
- package/lib/typescript/contexts/liveLocationManagerContext/LiveLocationManagerContext.d.ts +13 -0
- package/lib/typescript/contexts/liveLocationManagerContext/LiveLocationManagerContext.d.ts.map +1 -0
- package/lib/typescript/contexts/liveLocationManagerContext/hooks/useHandleLiveLocationEvents.d.ts +24 -0
- package/lib/typescript/contexts/liveLocationManagerContext/hooks/useHandleLiveLocationEvents.d.ts.map +1 -0
- package/lib/typescript/contexts/liveLocationManagerContext/index.d.ts +3 -0
- package/lib/typescript/contexts/liveLocationManagerContext/index.d.ts.map +1 -0
- package/lib/typescript/contexts/messageInputContext/MessageInputContext.d.ts.map +1 -1
- package/lib/typescript/contexts/messagesContext/MessagesContext.d.ts +5 -1
- package/lib/typescript/contexts/messagesContext/MessagesContext.d.ts.map +1 -1
- package/lib/typescript/i18n/en.json +11 -0
- package/lib/typescript/i18n/es.json +8 -0
- package/lib/typescript/i18n/fr.json +7 -0
- package/lib/typescript/i18n/he.json +7 -0
- package/lib/typescript/i18n/hi.json +12 -0
- package/lib/typescript/i18n/it.json +7 -0
- package/lib/typescript/i18n/ja.json +13 -0
- package/lib/typescript/i18n/ko.json +13 -0
- package/lib/typescript/i18n/nl.json +12 -0
- package/lib/typescript/i18n/pt-br.json +7 -0
- package/lib/typescript/i18n/ru.json +7 -0
- package/lib/typescript/i18n/tr.json +12 -0
- package/lib/typescript/store/OfflineDB.d.ts.map +1 -1
- package/lib/typescript/store/apis/deleteMessage.d.ts.map +1 -1
- package/lib/typescript/store/apis/getChannelActiveLocations.d.ts +5 -0
- package/lib/typescript/store/apis/getChannelActiveLocations.d.ts.map +1 -0
- package/lib/typescript/store/apis/getChannelMessages.d.ts.map +1 -1
- package/lib/typescript/store/apis/getChannels.d.ts.map +1 -1
- package/lib/typescript/store/apis/queries/selectActiveLocationsForChannels.d.ts +3 -0
- package/lib/typescript/store/apis/queries/selectActiveLocationsForChannels.d.ts.map +1 -0
- package/lib/typescript/store/apis/upsertChannels.d.ts.map +1 -1
- package/lib/typescript/store/apis/upsertLocation.d.ts +7 -0
- package/lib/typescript/store/apis/upsertLocation.d.ts.map +1 -0
- package/lib/typescript/store/apis/upsertMessages.d.ts.map +1 -1
- package/lib/typescript/store/mappers/mapMessageToStorable.d.ts.map +1 -1
- package/lib/typescript/store/mappers/mapSharedLocationToStorable.d.ts +4 -0
- package/lib/typescript/store/mappers/mapSharedLocationToStorable.d.ts.map +1 -0
- package/lib/typescript/store/mappers/mapStorableToMessage.d.ts.map +1 -1
- package/lib/typescript/store/mappers/mapStorableToSharedLocation.d.ts +4 -0
- package/lib/typescript/store/mappers/mapStorableToSharedLocation.d.ts.map +1 -0
- package/lib/typescript/store/schema.d.ts +12 -0
- package/lib/typescript/store/schema.d.ts.map +1 -1
- package/lib/typescript/utils/i18n/Streami18n.d.ts +11 -0
- package/lib/typescript/utils/i18n/Streami18n.d.ts.map +1 -1
- package/lib/typescript/utils/setupCommandUIMiddlewares.d.ts.map +1 -1
- package/package.json +1 -1
- package/src/components/Channel/Channel.tsx +4 -0
- package/src/components/Channel/hooks/useCreateMessagesContext.ts +2 -0
- package/src/components/ChannelPreview/hooks/useLatestMessagePreview.ts +7 -0
- package/src/components/Message/Message.tsx +13 -0
- package/src/components/Message/MessageSimple/MessageContent.tsx +22 -0
- package/src/components/Reply/Reply.tsx +17 -15
- package/src/contexts/index.ts +1 -0
- package/src/contexts/liveLocationManagerContext/LiveLocationManagerContext.tsx +61 -0
- package/src/contexts/liveLocationManagerContext/hooks/useHandleLiveLocationEvents.ts +61 -0
- package/src/contexts/liveLocationManagerContext/index.ts +2 -0
- package/src/contexts/messageInputContext/MessageInputContext.tsx +1 -4
- package/src/contexts/messagesContext/MessagesContext.tsx +7 -1
- package/src/i18n/en.json +11 -0
- package/src/i18n/es.json +8 -0
- package/src/i18n/fr.json +7 -0
- package/src/i18n/he.json +7 -0
- package/src/i18n/hi.json +12 -0
- package/src/i18n/it.json +7 -0
- package/src/i18n/ja.json +13 -0
- package/src/i18n/ko.json +13 -0
- package/src/i18n/nl.json +12 -0
- package/src/i18n/pt-br.json +7 -0
- package/src/i18n/ru.json +7 -0
- package/src/i18n/tr.json +12 -0
- package/src/store/SqliteClient.ts +1 -1
- package/src/store/apis/deleteMessage.ts +0 -6
- package/src/store/apis/getChannelActiveLocations.ts +25 -0
- package/src/store/apis/getChannelMessages.ts +13 -0
- package/src/store/apis/getChannels.ts +14 -10
- package/src/store/apis/queries/selectActiveLocationsForChannels.ts +18 -0
- package/src/store/apis/upsertChannels.ts +13 -1
- package/src/store/apis/upsertLocation.ts +30 -0
- package/src/store/apis/upsertMessages.ts +9 -0
- package/src/store/mappers/mapMessageToStorable.ts +2 -0
- package/src/store/mappers/mapSharedLocationToStorable.ts +33 -0
- package/src/store/mappers/mapStorableToMessage.ts +2 -0
- package/src/store/mappers/mapStorableToSharedLocation.ts +29 -0
- package/src/store/schema.ts +50 -0
- package/src/utils/__tests__/Streami18n.test.js +4 -3
- package/src/utils/setupCommandUIMiddlewares.ts +1 -0
- package/src/version.json +1 -1
|
@@ -26,6 +26,8 @@
|
|
|
26
26
|
"Device camera is used to take photos or videos.": "Device camera is used to take photos or videos.",
|
|
27
27
|
"Device gallery permissions is used to take photos or videos.": "Device gallery permissions is used to take photos or videos.",
|
|
28
28
|
"Do you want to send a copy of this message to a moderator for further investigation?": "Do you want to send a copy of this message to a moderator for further investigation?",
|
|
29
|
+
"Due since {{ dueSince }}": "Due since {{ dueSince }}",
|
|
30
|
+
"Due {{ timeLeft }}": "Due {{ timeLeft }}",
|
|
29
31
|
"Edit Message": "Edit Message",
|
|
30
32
|
"Edited": "Edited",
|
|
31
33
|
"Editing Message": "Editing Message",
|
|
@@ -52,6 +54,7 @@
|
|
|
52
54
|
"Loading messages...": "Loading messages...",
|
|
53
55
|
"Loading threads...": "Loading threads...",
|
|
54
56
|
"Loading...": "Loading...",
|
|
57
|
+
"Location": "Location",
|
|
55
58
|
"Mark as Unread": "Mark as Unread",
|
|
56
59
|
"Maximum number of files reached": "Maximum number of files reached",
|
|
57
60
|
"Maximum votes per person": "Maximum votes per person",
|
|
@@ -87,11 +90,13 @@
|
|
|
87
90
|
"Resend": "Resend",
|
|
88
91
|
"SEND": "SEND",
|
|
89
92
|
"Search": "Search",
|
|
93
|
+
"See all {{count}} options_many": "See all {{count}} options_many",
|
|
90
94
|
"See all {{count}} options_one": "See all {{count}} options",
|
|
91
95
|
"See all {{count}} options_other": "See all {{count}} options",
|
|
92
96
|
"Select More Photos": "Select More Photos",
|
|
93
97
|
"Select one": "Select one",
|
|
94
98
|
"Select one or more": "Select one or more",
|
|
99
|
+
"Select up to {{count}}_many": "Select up to {{count}}",
|
|
95
100
|
"Select up to {{count}}_one": "Select up to {{count}}",
|
|
96
101
|
"Select up to {{count}}_other": "Select up to {{count}}",
|
|
97
102
|
"Send Anyway": "Send Anyway",
|
|
@@ -116,12 +121,16 @@
|
|
|
116
121
|
"Update your comment": "Update your comment",
|
|
117
122
|
"Video": "Video",
|
|
118
123
|
"View Results": "View Results",
|
|
124
|
+
"View {{count}} comments_many": "View {{count}} comments",
|
|
119
125
|
"View {{count}} comments_one": "View {{count}} comment",
|
|
120
126
|
"View {{count}} comments_other": "View {{count}} comments",
|
|
121
127
|
"Voice message": "Voice message",
|
|
122
128
|
"Vote ended": "Vote ended",
|
|
123
129
|
"You": "You",
|
|
124
130
|
"You can't send messages in this channel": "You can't send messages in this channel",
|
|
131
|
+
"duration/Location end at": "{{ milliseconds | durationFormatter(withSuffix: false) }}",
|
|
132
|
+
"duration/Message reminder": "{{ milliseconds | durationFormatter(withSuffix: true) }}",
|
|
133
|
+
"duration/Remind Me": "{{ milliseconds | durationFormatter(withSuffix: true) }}",
|
|
125
134
|
"replied to": "replied to",
|
|
126
135
|
"timestamp/ChannelPreviewStatus": "{{ timestamp | timestampFormatter(calendar: true; calendarFormats: {\"lastDay\":\"[Yesterday]\", \"lastWeek\":\"dddd\", \"nextDay\":\"[Tomorrow]\", \"nextWeek\":\"dddd [at] LT\", \"sameDay\":\"LT\", \"sameElse\":\"L\"}) }}",
|
|
127
136
|
"timestamp/ImageGalleryHeader": "{{ timestamp | timestampFormatter(calendar: true) }}",
|
|
@@ -130,6 +139,7 @@
|
|
|
130
139
|
"timestamp/MessageSystem": "{{ timestamp | timestampFormatter(calendar: true) }}",
|
|
131
140
|
"timestamp/MessageTimestamp": "{{ timestamp | timestampFormatter(format: LT) }}",
|
|
132
141
|
"timestamp/PollVote": "{{ timestamp | timestampFormatter(calendar: true; calendarFormats: {\"lastDay\":\"[Yesterday]\", \"lastWeek\":\"dddd\", \"nextDay\":\"[Tomorrow]\", \"nextWeek\":\"dddd [at] LT\", \"sameDay\":\"LT\", \"sameElse\":\"L\"}) }}",
|
|
142
|
+
"timestamp/ReminderNotification": "{{ timestamp | timestampFormatter(calendar: true) }}",
|
|
133
143
|
"timestamp/StickyHeader": "{{ timestamp | timestampFormatter(calendar: true) }}",
|
|
134
144
|
"timestamp/ThreadListItem": "{{ timestamp | timestampFormatter(calendar: true; calendarFormats: {\"lastDay\":\"[Yesterday]\", \"lastWeek\":\"dddd\", \"nextDay\":\"[Tomorrow]\", \"nextWeek\":\"dddd [at] LT\", \"sameDay\":\"LT\", \"sameElse\":\"L\"}) }}",
|
|
135
145
|
"{{ firstUser }} and {{ nonSelfUserLength }} more are typing": "{{ firstUser }} and {{ nonSelfUserLength }} more are typing",
|
|
@@ -137,6 +147,7 @@
|
|
|
137
147
|
"{{ replyCount }} Replies": "{{ replyCount }} Replies",
|
|
138
148
|
"{{ replyCount }} Thread Replies": "{{ replyCount }} Thread Replies",
|
|
139
149
|
"{{ user }} is typing": "{{ user }} is typing",
|
|
150
|
+
"{{count}} votes_many": "{{count}} votes",
|
|
140
151
|
"{{count}} votes_one": "{{count}} vote",
|
|
141
152
|
"{{count}} votes_other": "{{count}} votes",
|
|
142
153
|
"🏙 Attachment...": "🏙 Attachment..."
|
|
@@ -26,6 +26,8 @@
|
|
|
26
26
|
"Device camera is used to take photos or videos.": "La cámara del dispositivo se utiliza para tomar fotografías o vídeos.",
|
|
27
27
|
"Device gallery permissions is used to take photos or videos.": "Los permisos de la galería del dispositivo se utilizan para tomar fotos o videos.",
|
|
28
28
|
"Do you want to send a copy of this message to a moderator for further investigation?": "¿Deseas enviar una copia de este mensaje a un moderador para una investigación adicional?",
|
|
29
|
+
"Due since {{ dueSince }}": "Debido desde {{ dueSince }}",
|
|
30
|
+
"Due {{ timeLeft }}": "Debido {{ timeLeft }}",
|
|
29
31
|
"Edit Message": "Editar mensaje",
|
|
30
32
|
"Edited": "Editado",
|
|
31
33
|
"Editing Message": "Editando mensaje",
|
|
@@ -52,6 +54,7 @@
|
|
|
52
54
|
"Loading messages...": "Cargando mensajes...",
|
|
53
55
|
"Loading threads...": "Cargando hilos...",
|
|
54
56
|
"Loading...": "Cargando...",
|
|
57
|
+
"Location": "Ubicación",
|
|
55
58
|
"Mark as Unread": "Marcar como no leído",
|
|
56
59
|
"Maximum number of files reached": "Número máximo de archivos alcanzado",
|
|
57
60
|
"Maximum votes per person": "Máximo de votos por persona",
|
|
@@ -125,14 +128,19 @@
|
|
|
125
128
|
"Vote ended": "Votación finalizada",
|
|
126
129
|
"You": "Tú",
|
|
127
130
|
"You can't send messages in this channel": "No puedes enviar mensajes en este canal",
|
|
131
|
+
"duration/Message reminder": "{{ milliseconds | durationFormatter(withSuffix: true) }}",
|
|
132
|
+
"duration/Remind Me": "{{ milliseconds | durationFormatter(withSuffix: true) }}",
|
|
128
133
|
"replied to": "respondió a",
|
|
129
134
|
"timestamp/ChannelPreviewStatus": "{{ timestamp | timestampFormatter(calendar: true; calendarFormats: {\"lastDay\":\"[Ayer]\", \"lastWeek\":\"dddd\", \"nextDay\":\"[Mañana]\", \"nextWeek\":\"dddd [a las] LT\", \"sameDay\":\"LT\", \"sameElse\":\"L\"}) }}",
|
|
130
135
|
"timestamp/ImageGalleryHeader": "{{ timestamp | timestampFormatter(calendar: true) }}",
|
|
131
136
|
"timestamp/InlineDateSeparator": "{{ timestamp | timestampFormatter(calendar: true) }}",
|
|
137
|
+
"timestamp/Location end at": "{{ milliseconds | durationFormatter(withSuffix: false) }}",
|
|
132
138
|
"timestamp/MessageEditedTimestamp": "{{ timestamp | timestampFormatter(calendar: true) }}",
|
|
133
139
|
"timestamp/MessageSystem": "{{ timestamp | timestampFormatter(calendar: true) }}",
|
|
134
140
|
"timestamp/MessageTimestamp": "{{ timestamp | timestampFormatter(format: LT) }}",
|
|
135
141
|
"timestamp/PollVote": "{{ timestamp | timestampFormatter(calendar: true; calendarFormats: {\"lastDay\":\"[Ayer]\", \"lastWeek\":\"dddd\", \"nextDay\":\"[Mañana]\", \"nextWeek\":\"dddd [a las] LT\", \"sameDay\":\"LT\", \"sameElse\":\"L\"}) }}",
|
|
142
|
+
"timestamp/Remind me": "{{ milliseconds | durationFormatter(withSuffix: true) }}",
|
|
143
|
+
"timestamp/ReminderNotification": "{{ timestamp | timestampFormatter(calendar: true) }}",
|
|
136
144
|
"timestamp/StickyHeader": "{{ timestamp | timestampFormatter(calendar: true) }}",
|
|
137
145
|
"timestamp/ThreadListItem": "{{ timestamp | timestampFormatter(calendar: true; calendarFormats: {\"lastDay\":\"[Ayer]\", \"lastWeek\":\"dddd\", \"nextDay\":\"[Mañana]\", \"nextWeek\":\"dddd [a las] LT\", \"sameDay\":\"LT\", \"sameElse\":\"L\"}) }}",
|
|
138
146
|
"{{ firstUser }} and {{ nonSelfUserLength }} more are typing": "{{ firstUser }} y {{ nonSelfUserLength }} más están escribiendo",
|
|
@@ -26,6 +26,8 @@
|
|
|
26
26
|
"Device camera is used to take photos or videos.": "L'appareil photo de l'appareil est utilisé pour prendre des photos ou des vidéos.",
|
|
27
27
|
"Device gallery permissions is used to take photos or videos.": "Les autorisations de la galerie de l'appareil sont utilisées pour prendre des photos ou des vidéos.",
|
|
28
28
|
"Do you want to send a copy of this message to a moderator for further investigation?": "Voulez-vous envoyer une copie de ce message à un modérateur pour une enquête plus approfondie?",
|
|
29
|
+
"Due since {{ dueSince }}": "Échéance depuis {{ dueSince }}",
|
|
30
|
+
"Due {{ timeLeft }}": "Échéance {{ timeLeft }}",
|
|
29
31
|
"Edit Message": "Éditer un message",
|
|
30
32
|
"Edited": "Édité",
|
|
31
33
|
"Editing Message": "Édite un message",
|
|
@@ -52,6 +54,7 @@
|
|
|
52
54
|
"Loading messages...": "Chargement des messages...",
|
|
53
55
|
"Loading threads...": "Chargement des fils...",
|
|
54
56
|
"Loading...": "Chargement...",
|
|
57
|
+
"Location": "Emplacement",
|
|
55
58
|
"Mark as Unread": "Marquer comme non lu",
|
|
56
59
|
"Maximum number of files reached": "Nombre maximal de fichiers atteint",
|
|
57
60
|
"Maximum votes per person": "Maximum de votes par personne",
|
|
@@ -125,6 +128,9 @@
|
|
|
125
128
|
"Vote ended": "Vote terminé",
|
|
126
129
|
"You": "Toi",
|
|
127
130
|
"You can't send messages in this channel": "You can't send messages in this channel",
|
|
131
|
+
"duration/Location end at": "{{ milliseconds | durationFormatter(withSuffix: false) }}",
|
|
132
|
+
"duration/Message reminder": "{{ milliseconds | durationFormatter(withSuffix: true) }}",
|
|
133
|
+
"duration/Remind Me": "{{ milliseconds | durationFormatter(withSuffix: true) }}",
|
|
128
134
|
"replied to": "a répondu à",
|
|
129
135
|
"timestamp/ChannelPreviewStatus": "{{ timestamp | timestampFormatter(calendar: true; calendarFormats: {\"lastDay\":\"[Hier]\", \"lastWeek\":\"dddd\", \"nextDay\":\"[Demain]\", \"nextWeek\":\"dddd [à] LT\", \"sameDay\":\"LT\", \"sameElse\":\"L\"}) }}",
|
|
130
136
|
"timestamp/ImageGalleryHeader": "{{ timestamp | timestampFormatter(calendar: true) }}",
|
|
@@ -133,6 +139,7 @@
|
|
|
133
139
|
"timestamp/MessageSystem": "{{ timestamp | timestampFormatter(calendar: true) }}",
|
|
134
140
|
"timestamp/MessageTimestamp": "{{ timestamp | timestampFormatter(format: LT) }}",
|
|
135
141
|
"timestamp/PollVote": "{{ timestamp | timestampFormatter(calendar: true; calendarFormats: {\"lastDay\":\"[Hier]\", \"lastWeek\":\"dddd\", \"nextDay\":\"[Demain]\", \"nextWeek\":\"dddd [à] LT\", \"sameDay\":\"LT\", \"sameElse\":\"L\"}) }}",
|
|
142
|
+
"timestamp/ReminderNotification": "{{ timestamp | timestampFormatter(calendar: true) }}",
|
|
136
143
|
"timestamp/StickyHeader": "{{ timestamp | timestampFormatter(calendar: true) }}",
|
|
137
144
|
"timestamp/ThreadListItem": "{{ timestamp | timestampFormatter(calendar: true; calendarFormats: {\"lastDay\":\"[Hier]\", \"lastWeek\":\"dddd\", \"nextDay\":\"[Demain]\", \"nextWeek\":\"dddd [à] LT\", \"sameDay\":\"LT\", \"sameElse\":\"L\"}) }}",
|
|
138
145
|
"{{ firstUser }} and {{ nonSelfUserLength }} more are typing": "{{ firstUser }} et {{ nonSelfUserLength }} autres sont en train d'écrire",
|
|
@@ -26,6 +26,8 @@
|
|
|
26
26
|
"Device camera is used to take photos or videos.": "מצלמת המכשיר משמשת לצילום תמונות או סרטונים.",
|
|
27
27
|
"Device gallery permissions is used to take photos or videos.": "הרשאות גלריית המכשיר משמשות לצילום תמונות או סרטונים.",
|
|
28
28
|
"Do you want to send a copy of this message to a moderator for further investigation?": "האם את/ה רוצה לשלוח עותק של הודעה זו למנחה להמשך חקירה?",
|
|
29
|
+
"Due since {{ dueSince }}": "מועד אחרון מאז {{ dueSince }}",
|
|
30
|
+
"Due {{ timeLeft }}": "מועד אחרון {{ timeLeft }}",
|
|
29
31
|
"Edit Message": "ערוך הודעה",
|
|
30
32
|
"Edited": "נערך",
|
|
31
33
|
"Editing Message": "הודעה בעריכה",
|
|
@@ -52,6 +54,7 @@
|
|
|
52
54
|
"Loading messages...": "ההודעות בטעינה..",
|
|
53
55
|
"Loading threads...": "טוען שרשורים...",
|
|
54
56
|
"Loading...": "טוען...",
|
|
57
|
+
"Location": "מיקום",
|
|
55
58
|
"Mark as Unread": "סמן כלא נקרא",
|
|
56
59
|
"Maximum number of files reached": "הגעת למספר המרבי של קבצים",
|
|
57
60
|
"Maximum votes per person": "מקסימום הצבעות לאדם",
|
|
@@ -125,6 +128,9 @@
|
|
|
125
128
|
"Vote ended": "ההצבעה הסתיימה",
|
|
126
129
|
"You": "את/ה",
|
|
127
130
|
"You can't send messages in this channel": "את/ב לא יכול/ה לשלוח הודעות בשיחה זו",
|
|
131
|
+
"duration/Location end at": "{{ milliseconds | durationFormatter(withSuffix: false) }}",
|
|
132
|
+
"duration/Message reminder": "{{ milliseconds | durationFormatter(withSuffix: true) }}",
|
|
133
|
+
"duration/Remind Me": "{{ milliseconds | durationFormatter(withSuffix: true) }}",
|
|
128
134
|
"replied to": "הגיב ל",
|
|
129
135
|
"timestamp/ChannelPreviewStatus": "{{ timestamp | timestampFormatter(calendar: true; calendarFormats: {\"lastDay\":\"[אתמול]\",\"lastWeek\":\"dddd\",\"nextDay\":\"[מחר]\",\"nextWeek\":\"dddd [בשעה] LT\",\"sameDay\":\"LT\",\"sameElse\":\"L\"}) }}",
|
|
130
136
|
"timestamp/ImageGalleryHeader": "{{ timestamp | timestampFormatter(calendar: true) }}",
|
|
@@ -133,6 +139,7 @@
|
|
|
133
139
|
"timestamp/MessageSystem": "{{ timestamp | timestampFormatter(calendar: true) }}",
|
|
134
140
|
"timestamp/MessageTimestamp": "{{ timestamp | timestampFormatter(format: LT) }}",
|
|
135
141
|
"timestamp/PollVote": "{{ timestamp | timestampFormatter(calendar: true; calendarFormats: {\"lastDay\":\"[אתמול]\",\"lastWeek\":\"dddd\",\"nextDay\":\"[מחר]\",\"nextWeek\":\"dddd [בשעה] LT\",\"sameDay\":\"LT\",\"sameElse\":\"L\"}) }}",
|
|
142
|
+
"timestamp/ReminderNotification": "{{ timestamp | timestampFormatter(calendar: true) }}",
|
|
136
143
|
"timestamp/StickyHeader": "{{ timestamp | timestampFormatter(calendar: true) }}",
|
|
137
144
|
"timestamp/ThreadListItem": "{{ timestamp | timestampFormatter(calendar: true; calendarFormats: {\"lastDay\":\"[אתמול]\",\"lastWeek\":\"dddd\",\"nextDay\":\"[מחר]\",\"nextWeek\":\"dddd [בשעה] LT\",\"sameDay\":\"LT\",\"sameElse\":\"L\"}) }}",
|
|
138
145
|
"{{ firstUser }} and {{ nonSelfUserLength }} more are typing": "{{ firstUser }} ו-{{ nonSelfUserLength }} משתמש/ים אחר/ים מקלידים",
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
+
"+{{count}}_many": "+{{count}}",
|
|
2
3
|
"+{{count}}_one": "+{{count}}",
|
|
3
4
|
"+{{count}}_other": "+{{count}}",
|
|
4
5
|
"1 Reply": "1 रिप्लाई",
|
|
@@ -25,6 +26,8 @@
|
|
|
25
26
|
"Device camera is used to take photos or videos.": "डिवाइस कैमरे का उपयोग फ़ोटो या वीडियो लेने के लिए किया जाता है।",
|
|
26
27
|
"Device gallery permissions is used to take photos or videos.": "डिवाइस गैलरी की अनुमतियों का उपयोग फोटो या वीडियो लेने के लिए किया जाता है।",
|
|
27
28
|
"Do you want to send a copy of this message to a moderator for further investigation?": "क्या आप इस संदेश की एक प्रति आगे की जाँच के लिए किसी मॉडरेटर को भेजना चाहते हैं?",
|
|
29
|
+
"Due since {{ dueSince }}": "{{ dueSince }} से देय है",
|
|
30
|
+
"Due {{ timeLeft }}": "{{ timeLeft }} बचा है",
|
|
28
31
|
"Edit Message": "मैसेज में बदलाव करे",
|
|
29
32
|
"Edited": "मैसेज बदला गया है",
|
|
30
33
|
"Editing Message": "मैसेज बदला जा रहा है",
|
|
@@ -51,6 +54,7 @@
|
|
|
51
54
|
"Loading messages...": "मेसेजस लोड हो रहे हैं...",
|
|
52
55
|
"Loading threads...": "थ्रेड्स लोड हो रहे हैं...",
|
|
53
56
|
"Loading...": "लोड हो रहा है...",
|
|
57
|
+
"Location": "स्थान",
|
|
54
58
|
"Mark as Unread": "अपठित मार्क करें",
|
|
55
59
|
"Maximum number of files reached": "फ़ाइलों की अधिकतम संख्या पहुँच गई",
|
|
56
60
|
"Maximum votes per person": "प्रति व्यक्ति अधिकतम वोट",
|
|
@@ -86,11 +90,13 @@
|
|
|
86
90
|
"Resend": "पुन: भेजें",
|
|
87
91
|
"SEND": "भेजें",
|
|
88
92
|
"Search": "खोजें",
|
|
93
|
+
"See all {{count}} options_many": "सभी {{count}} विकल्प देखें",
|
|
89
94
|
"See all {{count}} options_one": "सभी {{count}} विकल्प देखें",
|
|
90
95
|
"See all {{count}} options_other": "सभी {{count}} विकल्प देखें",
|
|
91
96
|
"Select More Photos": "अधिक फ़ोटो चुनें",
|
|
92
97
|
"Select one": "एक चुनें",
|
|
93
98
|
"Select one or more": "एक या अधिक चुनें",
|
|
99
|
+
"Select up to {{count}}_many": "{{count}} तक चुनें",
|
|
94
100
|
"Select up to {{count}}_one": "{{count}} तक चुनें",
|
|
95
101
|
"Select up to {{count}}_other": "{{count}} तक चुनें",
|
|
96
102
|
"Send Anyway": "फिर भी भेजें",
|
|
@@ -115,12 +121,16 @@
|
|
|
115
121
|
"Update your comment": "अपनी टिप्पणी अपडेट करें",
|
|
116
122
|
"Video": "वीडियो",
|
|
117
123
|
"View Results": "परिणाम देखें",
|
|
124
|
+
"View {{count}} comments_many": "सभी {{count}} टिप्पणियाँ देखें",
|
|
118
125
|
"View {{count}} comments_one": "{{count}} टिप्पणी देखें",
|
|
119
126
|
"View {{count}} comments_other": "{{count}} टिप्पणियाँ देखें",
|
|
120
127
|
"Voice message": "वॉइस संदेश",
|
|
121
128
|
"Vote ended": "वोट समाप्त",
|
|
122
129
|
"You": "आप",
|
|
123
130
|
"You can't send messages in this channel": "आप इस चैनल में संदेश नहीं भेज सकते",
|
|
131
|
+
"duration/Location end at": "{{ milliseconds | durationFormatter(withSuffix: false) }}",
|
|
132
|
+
"duration/Message reminder": "{{ milliseconds | durationFormatter(withSuffix: true) }}",
|
|
133
|
+
"duration/Remind Me": "{{ milliseconds | durationFormatter(withSuffix: true) }}",
|
|
124
134
|
"replied to": "को उत्तर दिया",
|
|
125
135
|
"timestamp/ChannelPreviewStatus": "{{ timestamp | timestampFormatter(calendar: true; calendarFormats: {\"lastDay\":\"[कल]\",\"lastWeek\":\"dddd\",\"nextDay\":\"[कल]\",\"nextWeek\":\"dddd [को] LT\",\"sameDay\":\"LT\",\"sameElse\":\"L\"}) }}",
|
|
126
136
|
"timestamp/ImageGalleryHeader": "{{ timestamp | timestampFormatter(calendar: true) }}",
|
|
@@ -129,6 +139,7 @@
|
|
|
129
139
|
"timestamp/MessageSystem": "{{ timestamp | timestampFormatter(calendar: true) }}",
|
|
130
140
|
"timestamp/MessageTimestamp": "{{ timestamp | timestampFormatter(format: LT) }}",
|
|
131
141
|
"timestamp/PollVote": "{{ timestamp | timestampFormatter(calendar: true; calendarFormats: {\"lastDay\":\"[कल]\",\"lastWeek\":\"dddd\",\"nextDay\":\"[कल]\",\"nextWeek\":\"dddd [को] LT\",\"sameDay\":\"LT\",\"sameElse\":\"L\"}) }}",
|
|
142
|
+
"timestamp/ReminderNotification": "{{ timestamp | timestampFormatter(calendar: true) }}",
|
|
132
143
|
"timestamp/StickyHeader": "{{ timestamp | timestampFormatter(calendar: true) }}",
|
|
133
144
|
"timestamp/ThreadListItem": "{{ timestamp | timestampFormatter(calendar: true; calendarFormats: {\"lastDay\":\"[कल]\",\"lastWeek\":\"dddd\",\"nextDay\":\"[कल]\",\"nextWeek\":\"dddd [को] LT\",\"sameDay\":\"LT\",\"sameElse\":\"L\"}) }}",
|
|
134
145
|
"{{ firstUser }} and {{ nonSelfUserLength }} more are typing": "{{ firstUser }} और {{ nonSelfUserLength }} अधिक टाइप कर रहे हैं",
|
|
@@ -136,6 +147,7 @@
|
|
|
136
147
|
"{{ replyCount }} Replies": "{{ replyCount }} रिप्लाई",
|
|
137
148
|
"{{ replyCount }} Thread Replies": "{{ replyCount }}} थ्रेड उत्तर",
|
|
138
149
|
"{{ user }} is typing": "{{ user }} टाइप कर रहा है",
|
|
150
|
+
"{{count}} votes_many": "{{count}} वोट",
|
|
139
151
|
"{{count}} votes_one": "{{count}} वोट",
|
|
140
152
|
"{{count}} votes_other": "{{count}} वोट",
|
|
141
153
|
"🏙 Attachment...": "🏙 अटैचमेंट..."
|
|
@@ -26,6 +26,8 @@
|
|
|
26
26
|
"Device camera is used to take photos or videos.": "La fotocamera del dispositivo viene utilizzata per scattare foto o video.",
|
|
27
27
|
"Device gallery permissions is used to take photos or videos.": "Le autorizzazioni della galleria del dispositivo vengono utilizzate per scattare foto o video.",
|
|
28
28
|
"Do you want to send a copy of this message to a moderator for further investigation?": "Vuoi inviare una copia di questo messaggio a un moderatore per ulteriori indagini?",
|
|
29
|
+
"Due since {{ dueSince }}": "Scadenza dal {{ dueSince }}",
|
|
30
|
+
"Due {{ timeLeft }}": "Scadenza {{ timeLeft }}",
|
|
29
31
|
"Edit Message": "Modifica Messaggio",
|
|
30
32
|
"Edited": "Modificato",
|
|
31
33
|
"Editing Message": "Modificando il Messaggio",
|
|
@@ -52,6 +54,7 @@
|
|
|
52
54
|
"Loading messages...": "Caricamento messaggi...",
|
|
53
55
|
"Loading threads...": "Caricamento dei thread...",
|
|
54
56
|
"Loading...": "Caricamento...",
|
|
57
|
+
"Location": "Posizione",
|
|
55
58
|
"Mark as Unread": "Segna come non letto",
|
|
56
59
|
"Maximum number of files reached": "Numero massimo di file raggiunto",
|
|
57
60
|
"Maximum votes per person": "Massimo voti per persona",
|
|
@@ -125,6 +128,9 @@
|
|
|
125
128
|
"Vote ended": "Votazione terminata",
|
|
126
129
|
"You": "Tu",
|
|
127
130
|
"You can't send messages in this channel": "Non puoi inviare messaggi in questo canale",
|
|
131
|
+
"duration/Location end at": "{{ milliseconds | durationFormatter(withSuffix: false) }}",
|
|
132
|
+
"duration/Message reminder": "{{ milliseconds | durationFormatter(withSuffix: true) }}",
|
|
133
|
+
"duration/Remind Me": "{{ milliseconds | durationFormatter(withSuffix: true) }}",
|
|
128
134
|
"replied to": "ha risposto a",
|
|
129
135
|
"timestamp/ChannelPreviewStatus": "{{ timestamp | timestampFormatter(calendar: true; calendarFormats: {\"lastDay\":\"[Ieri]\",\"lastWeek\":\"dddd\",\"nextDay\":\"[Domani]\",\"nextWeek\":\"dddd [alle] LT\",\"sameDay\":\"LT\",\"sameElse\":\"L\"}) }}",
|
|
130
136
|
"timestamp/ImageGalleryHeader": "{{ timestamp | timestampFormatter(calendar: true) }}",
|
|
@@ -133,6 +139,7 @@
|
|
|
133
139
|
"timestamp/MessageSystem": "{{ timestamp | timestampFormatter(calendar: true) }}",
|
|
134
140
|
"timestamp/MessageTimestamp": "{{ timestamp | timestampFormatter(format: LT) }}",
|
|
135
141
|
"timestamp/PollVote": "{{ timestamp | timestampFormatter(calendar: true; calendarFormats: {\"lastDay\":\"[Ieri]\",\"lastWeek\":\"dddd\",\"nextDay\":\"[Domani]\",\"nextWeek\":\"dddd [alle] LT\",\"sameDay\":\"LT\",\"sameElse\":\"L\"}) }}",
|
|
142
|
+
"timestamp/ReminderNotification": "{{ timestamp | timestampFormatter(calendar: true) }}",
|
|
136
143
|
"timestamp/StickyHeader": "{{ timestamp | timestampFormatter(calendar: true) }}",
|
|
137
144
|
"timestamp/ThreadListItem": "{{ timestamp | timestampFormatter(calendar: true; calendarFormats: {\"lastDay\":\"[Ieri]\",\"lastWeek\":\"dddd\",\"nextDay\":\"[Domani]\",\"nextWeek\":\"dddd [alle] LT\",\"sameDay\":\"LT\",\"sameElse\":\"L\"}) }}",
|
|
138
145
|
"{{ firstUser }} and {{ nonSelfUserLength }} more are typing": "{{ firstUser }} e altri {{ nonSelfUserLength }} stanno scrivendo",
|
|
@@ -1,4 +1,6 @@
|
|
|
1
1
|
{
|
|
2
|
+
"+{{count}}_many": "+{{count}}",
|
|
3
|
+
"+{{count}}_one": "+{{count}}",
|
|
2
4
|
"+{{count}}_other": "+{{count}}",
|
|
3
5
|
"1 Reply": "1件の返信",
|
|
4
6
|
"1 Thread Reply": "1件のスレッド返信",
|
|
@@ -24,6 +26,8 @@
|
|
|
24
26
|
"Device camera is used to take photos or videos.": "デバイスのカメラは写真やビデオの撮影に使用されます。",
|
|
25
27
|
"Device gallery permissions is used to take photos or videos.": "デバイスギャラリーの権限は写真やビデオを撮るために使用されます。",
|
|
26
28
|
"Do you want to send a copy of this message to a moderator for further investigation?": "このメッセージのコピーをモデレーターに送信して、さらに調査しますか?",
|
|
29
|
+
"Due since {{ dueSince }}": "期限は {{ dueSince }} からです",
|
|
30
|
+
"Due {{ timeLeft }}": "期限は {{ timeLeft }} です",
|
|
27
31
|
"Edit Message": "メッセージを編集",
|
|
28
32
|
"Edited": "編集済み",
|
|
29
33
|
"Editing Message": "メッセージを編集中",
|
|
@@ -50,6 +54,7 @@
|
|
|
50
54
|
"Loading messages...": "メッセージを読み込み中。。。",
|
|
51
55
|
"Loading threads...": "スレッドを読み込み中...",
|
|
52
56
|
"Loading...": "読み込み中。。。",
|
|
57
|
+
"Location": "位置情報",
|
|
53
58
|
"Mark as Unread": "未読としてマーク",
|
|
54
59
|
"Maximum number of files reached": "ファイルの最大数に達しました",
|
|
55
60
|
"Maximum votes per person": "1人あたりの最大投票数",
|
|
@@ -85,11 +90,13 @@
|
|
|
85
90
|
"Resend": "再送",
|
|
86
91
|
"SEND": "送信",
|
|
87
92
|
"Search": "検索",
|
|
93
|
+
"See all {{count}} options_many": "すべての{{count}}オプションを表示",
|
|
88
94
|
"See all {{count}} options_one": "{{count}} 個のオプションをすべて表示",
|
|
89
95
|
"See all {{count}} options_other": "{{count}} 個のオプションをすべて表示",
|
|
90
96
|
"Select More Photos": "さらに写真を選択",
|
|
91
97
|
"Select one": "1つ選択",
|
|
92
98
|
"Select one or more": "1つ以上選択",
|
|
99
|
+
"Select up to {{count}}_many": "{{count}} まで選択",
|
|
93
100
|
"Select up to {{count}}_one": "{{count}} まで選択",
|
|
94
101
|
"Select up to {{count}}_other": "{{count}} まで選択",
|
|
95
102
|
"Send Anyway": "とにかく送信",
|
|
@@ -114,12 +121,16 @@
|
|
|
114
121
|
"Update your comment": "コメントを更新",
|
|
115
122
|
"Video": "ビデオ",
|
|
116
123
|
"View Results": "結果を表示",
|
|
124
|
+
"View {{count}} comments_many": "すべての{{count}}コメントを表示",
|
|
117
125
|
"View {{count}} comments_one": "{{count}} 件のコメントを表示",
|
|
118
126
|
"View {{count}} comments_other": "{{count}} 件のコメントを表示",
|
|
119
127
|
"Voice message": "ボイスメッセージ",
|
|
120
128
|
"Vote ended": "投票終了",
|
|
121
129
|
"You": "あなた",
|
|
122
130
|
"You can't send messages in this channel": "このチャンネルではメッセージを送信できません",
|
|
131
|
+
"duration/Location end at": "{{ milliseconds | durationFormatter(withSuffix: false) }}",
|
|
132
|
+
"duration/Message reminder": "{{ milliseconds | durationFormatter(withSuffix: true) }}",
|
|
133
|
+
"duration/Remind Me": "{{ milliseconds | durationFormatter(withSuffix: true) }}",
|
|
123
134
|
"replied to": "に返信しました",
|
|
124
135
|
"timestamp/ChannelPreviewStatus": "{{ timestamp | timestampFormatter(calendar: true; calendarFormats: {\"lastDay\":\"[昨日]\",\"lastWeek\":\"dddd\",\"nextDay\":\"[明日]\",\"nextWeek\":\"dddd [の] LT\",\"sameDay\":\"LT\",\"sameElse\":\"L\"}) }}",
|
|
125
136
|
"timestamp/ImageGalleryHeader": "{{ timestamp | timestampFormatter(calendar: true) }}",
|
|
@@ -128,6 +139,7 @@
|
|
|
128
139
|
"timestamp/MessageSystem": "{{ timestamp | timestampFormatter(calendar: true) }}",
|
|
129
140
|
"timestamp/MessageTimestamp": "{{ timestamp | timestampFormatter(format: LT) }}",
|
|
130
141
|
"timestamp/PollVote": "{{ timestamp | timestampFormatter(calendar: true; calendarFormats: {\"lastDay\":\"[昨日]\",\"lastWeek\":\"dddd\",\"nextDay\":\"[明日]\",\"nextWeek\":\"dddd [の] LT\",\"sameDay\":\"LT\",\"sameElse\":\"L\"}) }}",
|
|
142
|
+
"timestamp/ReminderNotification": "{{ timestamp | timestampFormatter(calendar: true) }}",
|
|
131
143
|
"timestamp/StickyHeader": "{{ timestamp | timestampFormatter(calendar: true) }}",
|
|
132
144
|
"timestamp/ThreadListItem": "{{ timestamp | timestampFormatter(calendar: true; calendarFormats: {\"lastDay\":\"[昨日]\",\"lastWeek\":\"dddd\",\"nextDay\":\"[明日]\",\"nextWeek\":\"dddd [の] LT\",\"sameDay\":\"LT\",\"sameElse\":\"L\"}) }}",
|
|
133
145
|
"{{ firstUser }} and {{ nonSelfUserLength }} more are typing": "{{ firstUser }}と{{ nonSelfUserLength }}人がタイピングしています",
|
|
@@ -135,6 +147,7 @@
|
|
|
135
147
|
"{{ replyCount }} Replies": "{{ replyCount }}件の返信",
|
|
136
148
|
"{{ replyCount }} Thread Replies": "{{ replyCount }}件のスレッド返信",
|
|
137
149
|
"{{ user }} is typing": "{{ user }}はタイピング中",
|
|
150
|
+
"{{count}} votes_many": "{{count}}票",
|
|
138
151
|
"{{count}} votes_one": "{{count}} 票",
|
|
139
152
|
"{{count}} votes_other": "{{count}} 票",
|
|
140
153
|
"🏙 Attachment...": "🏙 アタッチメント..."
|
|
@@ -1,4 +1,6 @@
|
|
|
1
1
|
{
|
|
2
|
+
"+{{count}}_many": "+{{count}}",
|
|
3
|
+
"+{{count}}_one": "+{{count}}",
|
|
2
4
|
"+{{count}}_other": "+{{count}}",
|
|
3
5
|
"1 Reply": "답장 1개",
|
|
4
6
|
"1 Thread Reply": "1개의 스레드\u3000답글",
|
|
@@ -24,6 +26,8 @@
|
|
|
24
26
|
"Device camera is used to take photos or videos.": "기기 카메라는 사진이나 동영상을 촬영하는 데 사용됩니다.",
|
|
25
27
|
"Device gallery permissions is used to take photos or videos.": "장치 갤러리 권한은 사진 또는 비디오를 촬영하는 데 사용됩니다.",
|
|
26
28
|
"Do you want to send a copy of this message to a moderator for further investigation?": "이 메시지의 복사본을 운영자에게 보내 추가 조사를합니까?",
|
|
29
|
+
"Due since {{ dueSince }}": "기한은 {{ dueSince }}부터입니다.",
|
|
30
|
+
"Due {{ timeLeft }}": "기한은 {{ timeLeft }}입니다.",
|
|
27
31
|
"Edit Message": "메시지 수정",
|
|
28
32
|
"Edited": "편집됨",
|
|
29
33
|
"Editing Message": "메시지 편집중",
|
|
@@ -50,6 +54,7 @@
|
|
|
50
54
|
"Loading messages...": "메시지를 로딩 중...",
|
|
51
55
|
"Loading threads...": "스레드 로딩 중...",
|
|
52
56
|
"Loading...": "로딩 중...",
|
|
57
|
+
"Location": "위치",
|
|
53
58
|
"Mark as Unread": "읽지 않음으로 표시",
|
|
54
59
|
"Maximum number of files reached": "최대 파일 수에 도달했습니다",
|
|
55
60
|
"Maximum votes per person": "사람당 최대 투표 수",
|
|
@@ -85,11 +90,13 @@
|
|
|
85
90
|
"Resend": "재전송",
|
|
86
91
|
"SEND": "보내기",
|
|
87
92
|
"Search": "검색",
|
|
93
|
+
"See all {{count}} options_many": "모든 {{count}} 옵션 보기",
|
|
88
94
|
"See all {{count}} options_one": "모든 {{count}} 옵션 보기",
|
|
89
95
|
"See all {{count}} options_other": "모든 {{count}} 옵션 보기",
|
|
90
96
|
"Select More Photos": "추가 사진 선택",
|
|
91
97
|
"Select one": "하나 선택",
|
|
92
98
|
"Select one or more": "하나 이상 선택",
|
|
99
|
+
"Select up to {{count}}_many": "{{count}} 까지 선택",
|
|
93
100
|
"Select up to {{count}}_one": "{{count}}까지 선택",
|
|
94
101
|
"Select up to {{count}}_other": "{{count}}까지 선택",
|
|
95
102
|
"Send Anyway": "그래도 보내기",
|
|
@@ -114,12 +121,16 @@
|
|
|
114
121
|
"Update your comment": "댓글 수정",
|
|
115
122
|
"Video": "동영상",
|
|
116
123
|
"View Results": "결과 보기",
|
|
124
|
+
"View {{count}} comments_many": "모든 {{count}} 댓글 보기",
|
|
117
125
|
"View {{count}} comments_one": "{{count}}개의 댓글 보기",
|
|
118
126
|
"View {{count}} comments_other": "{{count}}개의 댓글 보기",
|
|
119
127
|
"Voice message": "음성 메시지",
|
|
120
128
|
"Vote ended": "투표 종료됨",
|
|
121
129
|
"You": "당신",
|
|
122
130
|
"You can't send messages in this channel": "이 채널에서는 메세지를 전송할 수 없습니다",
|
|
131
|
+
"duration/Location end at": "{{ milliseconds | durationFormatter(withSuffix: false) }}",
|
|
132
|
+
"duration/Message reminder": "{{ milliseconds | durationFormatter(withSuffix: true) }}",
|
|
133
|
+
"duration/Remind Me": "{{ milliseconds | durationFormatter(withSuffix: true) }}",
|
|
123
134
|
"replied to": "에 답장했습니다",
|
|
124
135
|
"timestamp/ChannelPreviewStatus": "{{ timestamp | timestampFormatter(calendar: true; calendarFormats: {\"lastDay\":\"[어제]\",\"lastWeek\":\"dddd\",\"nextDay\":\"[내일]\",\"nextWeek\":\"dddd [LT에]\",\"sameDay\":\"LT\",\"sameElse\":\"L\"}) }}",
|
|
125
136
|
"timestamp/ImageGalleryHeader": "{{ timestamp | timestampFormatter(calendar: true) }}",
|
|
@@ -128,6 +139,7 @@
|
|
|
128
139
|
"timestamp/MessageSystem": "{{ timestamp | timestampFormatter(calendar: true) }}",
|
|
129
140
|
"timestamp/MessageTimestamp": "{{ timestamp | timestampFormatter(format: LT) }}",
|
|
130
141
|
"timestamp/PollVote": "{{ timestamp | timestampFormatter(calendar: true; calendarFormats: {\"lastDay\":\"[어제]\",\"lastWeek\":\"dddd\",\"nextDay\":\"[내일]\",\"nextWeek\":\"dddd [LT에]\",\"sameDay\":\"LT\",\"sameElse\":\"L\"}) }}",
|
|
142
|
+
"timestamp/ReminderNotification": "{{ timestamp | timestampFormatter(calendar: true) }}",
|
|
131
143
|
"timestamp/StickyHeader": "{{ timestamp | timestampFormatter(calendar: true) }}",
|
|
132
144
|
"timestamp/ThreadListItem": "{{ timestamp | timestampFormatter(calendar: true; calendarFormats: {\"lastDay\":\"[어제]\",\"lastWeek\":\"dddd\",\"nextDay\":\"[내일]\",\"nextWeek\":\"dddd [LT에]\",\"sameDay\":\"LT\",\"sameElse\":\"L\"}) }}",
|
|
133
145
|
"{{ firstUser }} and {{ nonSelfUserLength }} more are typing": "{{ firstUser }} 외 {{ nonSelfUserLength }}명이 입력 중입니다",
|
|
@@ -135,6 +147,7 @@
|
|
|
135
147
|
"{{ replyCount }} Replies": "{{ replyCount }} 답글",
|
|
136
148
|
"{{ replyCount }} Thread Replies": "{{ replyCount }}\u3000스레드\u3000답글",
|
|
137
149
|
"{{ user }} is typing": "{{ user }} 타이핑 중",
|
|
150
|
+
"{{count}} votes_many": "{{count}} 표",
|
|
138
151
|
"{{count}} votes_one": "{{count}} 표",
|
|
139
152
|
"{{count}} votes_other": "{{count}} 표",
|
|
140
153
|
"🏙 Attachment...": "🏙 부착..."
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
+
"+{{count}}_many": "+{{count}}",
|
|
2
3
|
"+{{count}}_one": "+{{count}}",
|
|
3
4
|
"+{{count}}_other": "+{{count}}",
|
|
4
5
|
"1 Reply": "1 Antwoord",
|
|
@@ -25,6 +26,8 @@
|
|
|
25
26
|
"Device camera is used to take photos or videos.": "De camera van het apparaat wordt gebruikt om foto's of video's te maken.",
|
|
26
27
|
"Device gallery permissions is used to take photos or videos.": "Apparaatgallerijmachtigingen worden gebruikt om foto’s of video’s te maken.",
|
|
27
28
|
"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?",
|
|
29
|
+
"Due since {{ dueSince }}": "Vervaldatum sinds {{ dueSince }}",
|
|
30
|
+
"Due {{ timeLeft }}": "Vervaldatum {{ timeLeft }}",
|
|
28
31
|
"Edit Message": "Pas bericht aan",
|
|
29
32
|
"Edited": "Bewerkt",
|
|
30
33
|
"Editing Message": "Bericht aanpassen",
|
|
@@ -51,6 +54,7 @@
|
|
|
51
54
|
"Loading messages...": "Berichten aan het laden...",
|
|
52
55
|
"Loading threads...": "Threads laden...",
|
|
53
56
|
"Loading...": "Aan het laden...",
|
|
57
|
+
"Location": "Locatie",
|
|
54
58
|
"Mark as Unread": "Markeer als ongelezen",
|
|
55
59
|
"Maximum number of files reached": "Maximaal aantal bestanden bereikt",
|
|
56
60
|
"Maximum votes per person": "Maximaal aantal stemmen per persoon",
|
|
@@ -86,11 +90,13 @@
|
|
|
86
90
|
"Resend": "Opnieuw versturen",
|
|
87
91
|
"SEND": "VERZENDEN",
|
|
88
92
|
"Search": "Zoeken",
|
|
93
|
+
"See all {{count}} options_many": "Bekijk alle {{count}} opties",
|
|
89
94
|
"See all {{count}} options_one": "Bekijk alle {{count}} opties",
|
|
90
95
|
"See all {{count}} options_other": "Bekijk alle {{count}} opties",
|
|
91
96
|
"Select More Photos": "Selecteer Meer foto's",
|
|
92
97
|
"Select one": "Kies één",
|
|
93
98
|
"Select one or more": "Kies één of meer",
|
|
99
|
+
"Select up to {{count}}_many": "Selecteer tot {{count}}",
|
|
94
100
|
"Select up to {{count}}_one": "Kies tot {{count}}",
|
|
95
101
|
"Select up to {{count}}_other": "Kies tot {{count}}",
|
|
96
102
|
"Send Anyway": "Toch verzenden",
|
|
@@ -115,12 +121,16 @@
|
|
|
115
121
|
"Update your comment": "Werk je reactie bij",
|
|
116
122
|
"Video": "Video",
|
|
117
123
|
"View Results": "Bekijk resultaten",
|
|
124
|
+
"View {{count}} comments_many": "Bekijk {{count}} reacties",
|
|
118
125
|
"View {{count}} comments_one": "Bekijk {{count}} reactie",
|
|
119
126
|
"View {{count}} comments_other": "Bekijk {{count}} reacties",
|
|
120
127
|
"Voice message": "Spraakbericht",
|
|
121
128
|
"Vote ended": "Stemmen beëindigd",
|
|
122
129
|
"You": "U",
|
|
123
130
|
"You can't send messages in this channel": "Je kan geen berichten sturen in dit kanaal",
|
|
131
|
+
"duration/Location end at": "{{ milliseconds | durationFormatter(withSuffix: false) }}",
|
|
132
|
+
"duration/Message reminder": "{{ milliseconds | durationFormatter(withSuffix: true) }}",
|
|
133
|
+
"duration/Remind Me": "{{ milliseconds | durationFormatter(withSuffix: true) }}",
|
|
124
134
|
"replied to": "reageerde op",
|
|
125
135
|
"timestamp/ChannelPreviewStatus": "{{ timestamp | timestampFormatter(calendar: true; calendarFormats: {\"lastDay\":\"[Gisteren]\",\"lastWeek\":\"dddd\",\"nextDay\":\"[Morgen]\",\"nextWeek\":\"dddd [om] LT\",\"sameDay\":\"LT\",\"sameElse\":\"L\"}) }}",
|
|
126
136
|
"timestamp/ImageGalleryHeader": "{{ timestamp | timestampFormatter(calendar: true) }}",
|
|
@@ -129,6 +139,7 @@
|
|
|
129
139
|
"timestamp/MessageSystem": "{{ timestamp | timestampFormatter(calendar: true) }}",
|
|
130
140
|
"timestamp/MessageTimestamp": "{{ timestamp | timestampFormatter(format: LT) }}",
|
|
131
141
|
"timestamp/PollVote": "{{ timestamp | timestampFormatter(calendar: true; calendarFormats: {\"lastDay\":\"[Gisteren]\",\"lastWeek\":\"dddd\",\"nextDay\":\"[Morgen]\",\"nextWeek\":\"dddd [om] LT\",\"sameDay\":\"LT\",\"sameElse\":\"L\"}) }}",
|
|
142
|
+
"timestamp/ReminderNotification": "{{ timestamp | timestampFormatter(calendar: true) }}",
|
|
132
143
|
"timestamp/StickyHeader": "{{ timestamp | timestampFormatter(calendar: true) }}",
|
|
133
144
|
"timestamp/ThreadListItem": "{{ timestamp | timestampFormatter(calendar: true; calendarFormats: {\"lastDay\":\"[Gisteren]\",\"lastWeek\":\"dddd\",\"nextDay\":\"[Morgen]\",\"nextWeek\":\"dddd [om] LT\",\"sameDay\":\"LT\",\"sameElse\":\"L\"}) }}",
|
|
134
145
|
"{{ firstUser }} and {{ nonSelfUserLength }} more are typing": "{{ firstUser }} en {{ nonSelfUserLength }} anderen zijn aan het typen",
|
|
@@ -136,6 +147,7 @@
|
|
|
136
147
|
"{{ replyCount }} Replies": "{{ replyCount }} Antwoorden",
|
|
137
148
|
"{{ replyCount }} Thread Replies": "{{replyCount}} Discussiereacties",
|
|
138
149
|
"{{ user }} is typing": "{{ user }} is aan het typen",
|
|
150
|
+
"{{count}} votes_many": "{{count}} stemmen",
|
|
139
151
|
"{{count}} votes_one": "{{count}} stem",
|
|
140
152
|
"{{count}} votes_other": "{{count}} stemmen",
|
|
141
153
|
"🏙 Attachment...": "🏙 Bijlage..."
|
|
@@ -26,6 +26,8 @@
|
|
|
26
26
|
"Device camera is used to take photos or videos.": "A câmera do dispositivo é usada para tirar fotos ou vídeos.",
|
|
27
27
|
"Device gallery permissions is used to take photos or videos.": "As permissões da galeria do dispositivo são usadas para tirar fotos ou vídeos.",
|
|
28
28
|
"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?",
|
|
29
|
+
"Due since {{ dueSince }}": "Vencido desde {{ dueSince }}",
|
|
30
|
+
"Due {{ timeLeft }}": "Vencido {{ timeLeft }}",
|
|
29
31
|
"Edit Message": "Editar Mensagem",
|
|
30
32
|
"Edited": "Editado",
|
|
31
33
|
"Editing Message": "Editando Mensagem",
|
|
@@ -52,6 +54,7 @@
|
|
|
52
54
|
"Loading messages...": "Carregando mensagens...",
|
|
53
55
|
"Loading threads...": "Carregando tópicos...",
|
|
54
56
|
"Loading...": "Carregando...",
|
|
57
|
+
"Location": "Localização",
|
|
55
58
|
"Mark as Unread": "Marcar como não lido",
|
|
56
59
|
"Maximum number of files reached": "Número máximo de arquivos atingido",
|
|
57
60
|
"Maximum votes per person": "Máximo de votos por pessoa",
|
|
@@ -125,6 +128,9 @@
|
|
|
125
128
|
"Vote ended": "Votação encerrada",
|
|
126
129
|
"You": "Você",
|
|
127
130
|
"You can't send messages in this channel": "Você não pode enviar mensagens neste canal",
|
|
131
|
+
"duration/Location end at": "{{ milliseconds | durationFormatter(withSuffix: false) }}",
|
|
132
|
+
"duration/Message reminder": "{{ milliseconds | durationFormatter(withSuffix: true) }}",
|
|
133
|
+
"duration/Remind Me": "{{ milliseconds | durationFormatter(withSuffix: true) }}",
|
|
128
134
|
"replied to": "respondeu a",
|
|
129
135
|
"timestamp/ChannelPreviewStatus": "{{ timestamp | timestampFormatter(calendar: true; calendarFormats: {\"lastDay\":\"[Ontem]\",\"lastWeek\":\"dddd\",\"nextDay\":\"[Amanhã]\",\"nextWeek\":\"dddd [às] LT\",\"sameDay\":\"LT\",\"sameElse\":\"L\"}) }}",
|
|
130
136
|
"timestamp/ImageGalleryHeader": "{{ timestamp | timestampFormatter(calendar: true) }}",
|
|
@@ -133,6 +139,7 @@
|
|
|
133
139
|
"timestamp/MessageSystem": "{{ timestamp | timestampFormatter(calendar: true) }}",
|
|
134
140
|
"timestamp/MessageTimestamp": "{{ timestamp | timestampFormatter(format: LT) }}",
|
|
135
141
|
"timestamp/PollVote": "{{ timestamp | timestampFormatter(calendar: true; calendarFormats: {\"lastDay\":\"[Ontem]\",\"lastWeek\":\"dddd\",\"nextDay\":\"[Amanhã]\",\"nextWeek\":\"dddd [às] LT\",\"sameDay\":\"LT\",\"sameElse\":\"L\"}) }}",
|
|
142
|
+
"timestamp/ReminderNotification": "{{ timestamp | timestampFormatter(calendar: true) }}",
|
|
136
143
|
"timestamp/StickyHeader": "{{ timestamp | timestampFormatter(calendar: true) }}",
|
|
137
144
|
"timestamp/ThreadListItem": "{{ timestamp | timestampFormatter(calendar: true; calendarFormats: {\"lastDay\":\"[Ontem]\",\"lastWeek\":\"dddd\",\"nextDay\":\"[Amanhã]\",\"nextWeek\":\"dddd [às] LT\",\"sameDay\":\"LT\",\"sameElse\":\"L\"}) }}",
|
|
138
145
|
"{{ firstUser }} and {{ nonSelfUserLength }} more are typing": "{{ firstUser }} e mais {{ nonSelfUserLength }} pessoa(s) estão digitando",
|
|
@@ -27,6 +27,8 @@
|
|
|
27
27
|
"Device camera is used to take photos or videos.": "Камера устройства используется для съемки фотографий или видео.",
|
|
28
28
|
"Device gallery permissions is used to take photos or videos.": "Разрешения галереи устройства используются для съемки фото или видео.",
|
|
29
29
|
"Do you want to send a copy of this message to a moderator for further investigation?": "Вы хотите отправить копию этого сообщения модератору для дальнейшего изучения?",
|
|
30
|
+
"Due since {{ dueSince }}": "Срок с {{ dueSince }}",
|
|
31
|
+
"Due {{ timeLeft }}": "Срок {{ timeLeft }}",
|
|
30
32
|
"Edit Message": "Редактировать сообщение",
|
|
31
33
|
"Edited": "Отредактировано",
|
|
32
34
|
"Editing Message": "Редактирование сообщения",
|
|
@@ -53,6 +55,7 @@
|
|
|
53
55
|
"Loading messages...": "Загружаю сообщения...",
|
|
54
56
|
"Loading threads...": "Загрузка потоков...",
|
|
55
57
|
"Loading...": "Загружаю...",
|
|
58
|
+
"Location": "Местоположение",
|
|
56
59
|
"Mark as Unread": "Отметить как непрочитанное",
|
|
57
60
|
"Maximum number of files reached": "Достигнуто максимальное количество файлов",
|
|
58
61
|
"Maximum votes per person": "Максимальное количество голосов на человека",
|
|
@@ -129,6 +132,9 @@
|
|
|
129
132
|
"Vote ended": "Голосование завершено",
|
|
130
133
|
"You": "Вы",
|
|
131
134
|
"You can't send messages in this channel": "Вы не можете отправлять сообщения в этот канал",
|
|
135
|
+
"duration/Location end at": "{{ milliseconds | durationFormatter(withSuffix: false) }}",
|
|
136
|
+
"duration/Message reminder": "{{ milliseconds | durationFormatter(withSuffix: true) }}",
|
|
137
|
+
"duration/Remind Me": "{{ milliseconds | durationFormatter(withSuffix: true) }}",
|
|
132
138
|
"replied to": "ответил на",
|
|
133
139
|
"timestamp/ChannelPreviewStatus": "{{ timestamp | timestampFormatter(calendar: true; calendarFormats: {\"lastDay\":\"[Вчера]\",\"lastWeek\":\"dddd\",\"nextDay\":\"[Завтра]\",\"nextWeek\":\"dddd [в] LT\",\"sameDay\":\"LT\",\"sameElse\":\"L\"}) }}",
|
|
134
140
|
"timestamp/ImageGalleryHeader": "{{ timestamp | timestampFormatter(calendar: true) }}",
|
|
@@ -137,6 +143,7 @@
|
|
|
137
143
|
"timestamp/MessageSystem": "{{ timestamp | timestampFormatter(calendar: true) }}",
|
|
138
144
|
"timestamp/MessageTimestamp": "{{ timestamp | timestampFormatter(format: LT) }}",
|
|
139
145
|
"timestamp/PollVote": "{{ timestamp | timestampFormatter(calendar: true; calendarFormats: {\"lastDay\":\"[Вчера]\",\"lastWeek\":\"dddd\",\"nextDay\":\"[Завтра]\",\"nextWeek\":\"dddd [в] LT\",\"sameDay\":\"LT\",\"sameElse\":\"L\"}) }}",
|
|
146
|
+
"timestamp/ReminderNotification": "{{ timestamp | timestampFormatter(calendar: true) }}",
|
|
140
147
|
"timestamp/StickyHeader": "{{ timestamp | timestampFormatter(calendar: true) }}",
|
|
141
148
|
"timestamp/ThreadListItem": "{{ timestamp | timestampFormatter(calendar: true; calendarFormats: {\"lastDay\":\"[Вчера]\",\"lastWeek\":\"dddd\",\"nextDay\":\"[Завтра]\",\"nextWeek\":\"dddd [в] LT\",\"sameDay\":\"LT\",\"sameElse\":\"L\"}) }}",
|
|
142
149
|
"{{ firstUser }} and {{ nonSelfUserLength }} more are typing": "{{ firstUser }} и еще {{ nonSelfUserLength }} пишут",
|